/* Impact Edge 360 site styles
   Materials: paper (ground), ink (dark blocks), heat (one orange field).
   Shape rule: panels 28px, sheets and inner objects 10px, buttons pill.
   One family: Archivo, width axis carries the display voice. */

:root {
  color-scheme: light;
  --paper: #f3f3f1;
  --paper-2: #e9e9e6;
  --sheet: #fbfbfa;
  --ink: #282828;
  --ink-2: #333331;
  --ink-soft: #5c5b58;
  --ink-mute: #6f6e6a;
  --line: rgba(40, 40, 40, 0.12);
  --line-strong: rgba(40, 40, 40, 0.28);
  --heat: #bd4a0e;
  --heat-bright: #d05613;
  --heat-deep: #a03f0b;
  --heat-field: #b4480d;
  --heat-tint: #f6dccb;
  --on-ink: #f2f1ed;
  --on-ink-soft: #b9b7b0;
  --on-ink-line: rgba(242, 241, 237, 0.14);
  --on-heat: #fff4ec;
  --r-panel: 28px;
  --r-object: 10px;
  --w: 1200px;
  --gutter: clamp(20px, 4vw, 48px);
  --font: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.55;
  font-variation-settings: "wdth" 100;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
::selection { background: var(--heat); color: var(--on-heat); }
:focus-visible { outline: 3px solid var(--heat); outline-offset: 3px; border-radius: 4px; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
p { margin: 0; }
h1, h2, h3 { margin: 0; font-weight: 700; letter-spacing: -0.03em; text-wrap: balance; }
h1, h2 { font-variation-settings: "wdth" 112; }
h3 { font-variation-settings: "wdth" 105; letter-spacing: -0.02em; }
strong { font-weight: 600; }
.wrap { width: min(var(--w), 100% - 2 * var(--gutter)); margin-inline: auto; }
.lede { font-size: clamp(18px, 1.3vw + 12px, 21px); line-height: 1.5; color: var(--ink-soft); max-width: 34em; text-wrap: pretty; }
.measure { max-width: 62ch; text-wrap: pretty; }
.muted { color: var(--ink-soft); }

/* Buttons: one intent on the whole page, one label */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 26px 16px 28px;
  border-radius: 999px;
  background: var(--heat); color: var(--on-heat);
  font-weight: 600; font-size: 16px; line-height: 1; letter-spacing: -0.005em;
  text-decoration: none; white-space: nowrap;
  border: 0; cursor: pointer;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.25s var(--ease);
  box-shadow: 0 10px 24px -12px rgba(189, 74, 14, 0.55);
}
.btn:hover { background: var(--heat-deep); box-shadow: 0 14px 30px -12px rgba(208, 86, 19, 0.6); }
.btn:active { transform: translateY(1px) scale(0.99); box-shadow: 0 6px 14px -10px rgba(208, 86, 19, 0.5); }
.btn svg { width: 18px; height: 18px; transition: transform 0.25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn--ink { background: var(--ink); color: var(--on-ink); box-shadow: 0 10px 24px -12px rgba(40, 40, 40, 0.5); }
.btn--ink:hover { background: #1c1c1c; box-shadow: 0 14px 30px -12px rgba(40, 40, 40, 0.55); }
.btn--sm { padding: 12px 18px 12px 20px; font-size: 15px; }

/* Header: a floating frosted pill over the page, same recipe as pulsift.com */
.top { position: fixed; top: 14px; left: 0; right: 0; z-index: 50; padding: 0 var(--gutter); display: flex; justify-content: center; pointer-events: none; }
.top__row {
  pointer-events: auto;
  width: min(var(--w), 100%);
  position: relative;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 10px 14px 10px 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.60), rgba(255, 255, 255, 0.22));
  backdrop-filter: blur(24px) saturate(1.9); -webkit-backdrop-filter: blur(24px) saturate(1.9);
  border: 1px solid rgba(255, 255, 255, 0.70); border-radius: 999px;
  box-shadow: 0 10px 34px rgba(31, 31, 31, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.85), inset 0 -1px 0 rgba(255, 255, 255, 0.20);
}
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { height: 38px; width: auto; }
.brand__paper { display: none; }
.top__nav { display: none; gap: 26px; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); }
.top__nav a { font-size: 15px; font-weight: 600; color: var(--ink-soft); text-decoration: none; white-space: nowrap; transition: color 0.2s var(--ease); }
.top__nav a:hover { color: var(--heat); }
.top--dark .top__nav a { color: #e6e3dc; }
.top--dark .top__nav a:hover { color: #fff; }
@media (min-width: 1100px) { .top__nav { display: flex; } }
[id] { scroll-margin-top: 96px; }
.top--dark .brand__ink { display: none; }
.top--dark .brand__paper { display: block; }
.top--dark .top__row { background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08)); border-color: rgba(255, 255, 255, 0.28); box-shadow: 0 10px 34px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.35); }
.top .btn { padding: 11px 16px; font-size: 14px; }
.top .btn svg { display: none; }
@media (min-width: 640px) { .top .btn { padding: 12px 18px 12px 20px; font-size: 15px; } .top .btn svg { display: block; } }

/* Hero: full screen, the sky under it, the words over it */
.hero {
  position: relative; isolation: isolate;
  min-height: 100dvh;
  background: var(--ink);
  color: var(--on-ink);
  display: grid; align-items: center;
  padding: 120px 0 140px;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: url("assets/hero-orbit-blur.jpg") center 45% / cover no-repeat;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(243, 243, 241, 0) 0%, rgba(243, 243, 241, 0) 72%, rgba(243, 243, 241, 0.55) 84%, rgba(243, 243, 241, 0.92) 93%, var(--paper) 100%),
    radial-gradient(64% 74% at 32% 48%, rgba(22, 20, 18, 0.70) 0%, rgba(22, 20, 18, 0.38) 60%, rgba(22, 20, 18, 0.12) 100%),
    linear-gradient(180deg, rgba(22, 20, 18, 0.35) 0%, rgba(22, 20, 18, 0.05) 40%, rgba(22, 20, 18, 0.10) 70%, rgba(22, 20, 18, 0) 100%);
}
.hero__sentinel { position: absolute; left: 0; right: 0; top: 0; height: 74%; pointer-events: none; }
.hero__grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 960px) {
  .hero__grid { grid-template-columns: 7fr 5fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
}
.hero h1 {
  font-size: clamp(36px, 3.3vw + 12px, 60px);
  line-height: 1.04;
  max-width: 10em;
}
.hero .lede { margin-top: 24px; color: #d9d6cf; }
.hero__cta { margin-top: 36px; display: flex; flex-wrap: wrap; align-items: center; gap: 18px 28px; }

/* The sample email, typeset as a letter on a sheet */
.letter {
  background: var(--sheet); color: var(--ink);
  border-radius: var(--r-object);
  padding: 30px 32px 28px;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.6), 0 2px 0 rgba(255, 255, 255, 0.5) inset;
  font-size: 15.5px; line-height: 1.5;
  transform: rotate(-1.2deg);
  max-width: 460px; justify-self: center;
  position: relative;
}
@media (min-width: 960px) { .letter { justify-self: end; transform: rotate(-1.6deg) translateY(6px); } }
.letter__head { display: grid; grid-template-columns: auto 1fr; gap: 6px 14px; font-size: 13px; color: var(--ink-soft); padding-bottom: 14px; border-bottom: 1px solid var(--line); margin-bottom: 18px; }
.letter__head dt { font-weight: 600; color: var(--ink-mute); }
.letter__head dd { margin: 0; color: var(--ink); }
.letter__head dd.subject { font-weight: 600; }
.letter p + p { margin-top: 12px; }
.letter .link { color: var(--heat); font-weight: 600; text-decoration: underline; text-underline-offset: 0.2em; }
.letter__tag {
  position: absolute; top: -14px; right: 18px;
  background: var(--heat); color: var(--on-heat);
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.01em;
  padding: 6px 12px; border-radius: 999px;
  transform: rotate(1.6deg);
}

/* Section rhythm: more above a heading than below */
.section { padding: clamp(72px, 9vw, 128px) 0 0; }
.section h2 { font-size: clamp(30px, 3vw + 8px, 50px); line-height: 1.06; max-width: 16em; }
.section h2 + .lede, .section h2 + .measure { margin-top: 20px; }

/* Fit: two definition columns */
.fit { display: grid; grid-template-columns: 1fr; gap: 40px; margin-top: 48px; }
@media (min-width: 800px) { .fit { grid-template-columns: 1fr 1fr; gap: 56px; } }
.fit h3 { font-size: 22px; padding-bottom: 14px; border-bottom: 2px solid var(--ink); }
.fit--no h3 { border-bottom-color: var(--line-strong); }
.fit ul { list-style: none; margin: 0; padding: 0; }
.fit li { padding: 16px 0 16px 34px; border-bottom: 1px solid var(--line); position: relative; text-wrap: pretty; }
.fit li:last-child { border-bottom: 0; }
.fit li::before {
  content: ""; position: absolute; left: 4px; top: 22px; width: 12px; height: 12px;
  border-right: 2.5px solid var(--heat-bright); border-top: 2.5px solid var(--heat-bright);
  transform: rotate(45deg);
}
.fit--no li::before { border-color: var(--ink-mute); transform: rotate(45deg) scale(0.9); }
.fit__aside { margin-top: 18px; font-size: 15px; color: var(--ink-soft); }

/* Setup: sticky heading left, the sequence right */
.setup { display: grid; grid-template-columns: 1fr; gap: 40px; margin-top: 8px; }
@media (min-width: 960px) { .setup { grid-template-columns: 5fr 7fr; gap: 80px; align-items: start; } .setup__head { position: sticky; top: 96px; } }
.steps { list-style: none; margin: 0; padding: 0; counter-reset: step; border-top: 1px solid var(--line-strong); }
.steps li { counter-increment: step; display: grid; grid-template-columns: 56px 1fr; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.steps li::before { content: counter(step, decimal-leading-zero); font-variation-settings: "wdth" 112; font-weight: 700; font-size: 22px; color: var(--heat-bright); letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.steps h3 { font-size: 20px; }
.steps p { margin-top: 6px; color: var(--ink-soft); font-size: 16px; }
.steps q { quotes: "\201C" "\201D"; font-style: italic; }
.steps__close { display: flex; align-items: center; gap: 18px; padding: 26px 0 0; font-weight: 600; font-size: 18px; }
.steps__close b { font-variation-settings: "wdth" 112; font-size: 34px; font-weight: 700; letter-spacing: -0.03em; color: var(--heat-bright); line-height: 1; }

/* Month: dark block with the week strip */
.month { margin-top: clamp(72px, 9vw, 128px); }
.month__panel {
  background: var(--ink); color: var(--on-ink);
  border-radius: var(--r-panel);
  padding: clamp(44px, 6vw, 88px) clamp(24px, 5vw, 80px);
}
.month h2 { color: var(--on-ink); }
.month .lede { color: var(--on-ink-soft); }
.week { margin-top: 44px; display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 8px; }
.week div { border: 1px solid var(--on-ink-line); border-radius: var(--r-object); padding: 14px 8px 16px; text-align: center; font-size: 13px; color: var(--on-ink-soft); }
.week div b { display: block; font-size: 20px; font-weight: 700; font-variation-settings: "wdth" 112; letter-spacing: -0.02em; color: var(--on-ink); margin-bottom: 8px; }
.week div.send { background: var(--heat); border-color: var(--heat); color: var(--on-heat); }
.week div.send b { color: var(--on-heat); }
.week div.send span { font-weight: 600; }
.week__cap { margin-top: 14px; font-size: 14px; color: var(--on-ink-soft); }
.month__grid { margin-top: 48px; display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1px solid var(--on-ink-line); }
@media (min-width: 800px) { .month__grid { grid-template-columns: 1fr 1fr; column-gap: 56px; } }
.month__grid div { padding: 22px 0; border-bottom: 1px solid var(--on-ink-line); }
.month__grid h3 { font-size: 19px; color: var(--on-ink); }
.month__grid p { margin-top: 6px; color: var(--on-ink-soft); font-size: 15.5px; }
@media (max-width: 480px) { .week { gap: 5px; } .week div { padding: 10px 4px 12px; font-size: 11px; } .week div b { font-size: 16px; } }

/* Case: one story, told plainly */
.case { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 960px) { .case { grid-template-columns: 4fr 8fr; gap: 80px; } }
.case__story { font-size: clamp(18px, 1.1vw + 12px, 22px); line-height: 1.5; text-wrap: pretty; }
.case__story p + p { margin-top: 18px; }
.case__result { margin-top: 32px; padding: 26px 28px; border-radius: var(--r-object); background: var(--paper-2); display: grid; gap: 14px; }
.case__result p { font-size: 17px; }
.case__result b { font-variation-settings: "wdth" 112; font-weight: 700; font-size: 30px; letter-spacing: -0.03em; line-height: 1; color: var(--heat-bright); margin-right: 8px; }
.case__note { font-size: 14.5px; color: var(--ink-soft); margin-top: 18px; }

/* Rules: how we work */
.rules { margin-top: 48px; display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1px solid var(--line-strong); }
@media (min-width: 800px) { .rules { grid-template-columns: 1fr 1fr; column-gap: 56px; } }
.rules div { padding: 24px 0; border-bottom: 1px solid var(--line); }
.rules h3 { font-size: 19px; }
.rules p { margin-top: 6px; color: var(--ink-soft); font-size: 16px; }

/* The call: the orange field. Large text only, so contrast holds. */
.call { margin-top: clamp(72px, 9vw, 128px); }
.call__panel {
  background: radial-gradient(90% 80% at 0% 0%, var(--heat) 0%, var(--heat-field) 65%);
  color: var(--on-heat);
  border-radius: var(--r-panel);
  padding: clamp(44px, 6vw, 88px) clamp(24px, 5vw, 80px);
  display: grid; grid-template-columns: 1fr; gap: 40px;
}
@media (min-width: 960px) { .call__panel { grid-template-columns: 6fr 6fr; gap: 64px; align-items: start; } }
.call h2 { color: var(--on-heat); }
.call__list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 14px; font-size: clamp(19px, 1vw + 12px, 22px); font-weight: 600; line-height: 1.35; }
.call__list li { padding-left: 30px; position: relative; }
.call__list li::before { content: ""; position: absolute; left: 4px; top: 0.55em; width: 11px; height: 11px; border-right: 3px solid var(--on-heat); border-top: 3px solid var(--on-heat); transform: rotate(45deg); }
.call__host { margin-top: 32px; display: flex; align-items: center; gap: 18px; }
.call__host img { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; flex: none; box-shadow: 0 12px 28px -14px rgba(40, 20, 0, 0.6), 0 0 0 3px rgba(255, 244, 236, 0.9); }
.call__meta { font-size: 19px; font-weight: 600; line-height: 1.35; max-width: 22em; }
.call .btn--ink { margin-top: 32px; }
.call :focus-visible { outline-color: var(--on-heat); }
.booking { background: var(--sheet); color: var(--ink); border-radius: var(--r-object); min-height: 420px; overflow: hidden; box-shadow: 0 30px 60px -32px rgba(60, 20, 0, 0.55); }
.booking__fallback { padding: 28px; font-size: 15px; color: var(--ink-soft); }
.booking__fallback a { color: var(--heat); font-weight: 600; }

/* FAQ: native disclosure, themed */
.faq { margin-top: 40px; border-top: 1px solid var(--line-strong); max-width: 820px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 22px 44px 22px 0; font-size: 19px; font-weight: 600; letter-spacing: -0.01em; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; position: absolute; right: 8px; top: 30px; width: 11px; height: 11px; border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink); transform: rotate(45deg); transition: transform 0.25s var(--ease); }
.faq details[open] summary::after { transform: rotate(225deg); top: 36px; }
.faq details p { padding: 0 0 24px; color: var(--ink-soft); max-width: 62ch; text-wrap: pretty; }

/* Footer */
.foot { margin-top: clamp(72px, 9vw, 120px); padding: 36px 0 44px; border-top: 1px solid var(--line-strong); }
.foot__row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px 32px; font-size: 14.5px; color: var(--ink-soft); }
.foot__brand { display: flex; align-items: center; gap: 12px; color: var(--ink); font-weight: 600; }
.foot__brand img { height: 30px; width: auto; }
.foot nav { display: flex; flex-wrap: wrap; gap: 8px 24px; }
.foot a { color: var(--ink-soft); }
.foot a:hover { color: var(--ink); }

/* Legal pages */
.legal { padding: 120px 0 0; max-width: 72ch; }
.legal h1 { font-size: clamp(34px, 4vw, 52px); line-height: 1.05; }
.legal h2 { font-size: 22px; margin-top: 40px; }
.legal p, .legal li { margin-top: 12px; color: var(--ink-soft); text-wrap: pretty; }
.legal .placeholder { background: var(--heat-tint); color: var(--heat-deep); padding: 0 6px; border-radius: 4px; font-weight: 600; }

/* Motion: one authored moment on load, plus a quiet settle on scroll.
   Off entirely when the visitor asks for reduced motion. */
@media (prefers-reduced-motion: no-preference) {
  .js .hero h1, .js .hero .lede, .js .hero__cta { opacity: 0; transform: translateY(14px); animation: rise 0.9s var(--ease) forwards; }
  .js .hero .lede { animation-delay: 0.12s; }
  .js .hero__cta { animation-delay: 0.22s; }
  .js .letter { opacity: 0; transform: rotate(-1.2deg) translateY(28px); animation: settle 1.1s var(--ease) 0.28s forwards; }
  @media (min-width: 960px) { .js .letter { transform: rotate(-1.6deg) translateY(34px); animation-name: settle-wide; } }
  .js .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
  .js .reveal.in { opacity: 1; transform: none; }
  @keyframes rise { to { opacity: 1; transform: none; } }
  @keyframes settle { to { opacity: 1; transform: rotate(-1.2deg); } }
  @keyframes settle-wide { to { opacity: 1; transform: rotate(-1.6deg) translateY(6px); } }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .btn svg, .faq summary::after, .top__nav a { transition: none; }
}

/* Legal page details */
.legal h3 { font-size: 18px; margin-top: 28px; }
.legal ul { margin: 12px 0 0; padding-left: 22px; }
.legal li { margin-top: 8px; }
.legal em { color: var(--ink); }
.legal__meta { font-size: 15px; }
.legal__address { line-height: 1.6; }
.legal a { color: var(--heat); }
