/* theoutreach marketing site — ledger palette (matches the portal), premium professional-services register. */

/* ───────────────────────── SELF-HOSTED FONTS (no Google Fonts dependency) ───────────────────────── */
@font-face {
  font-family: "Bricolage Grotesque";
  src: url("fonts/bricolage-grotesque-latin-standard-normal.woff2") format("woff2-variations");
  font-weight: 200 800;
  font-stretch: 75% 100%;
  font-display: swap;
}
@font-face { font-family: "Geist"; src: url("fonts/geist-sans-latin-400-normal.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Geist"; src: url("fonts/geist-sans-latin-500-normal.woff2") format("woff2"); font-weight: 500; font-display: swap; }
@font-face { font-family: "Geist"; src: url("fonts/geist-sans-latin-600-normal.woff2") format("woff2"); font-weight: 600; font-display: swap; }
@font-face { font-family: "Geist"; src: url("fonts/geist-sans-latin-700-normal.woff2") format("woff2"); font-weight: 700; font-display: swap; }
@font-face { font-family: "Geist Mono"; src: url("fonts/geist-mono-latin-400-normal.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Geist Mono"; src: url("fonts/geist-mono-latin-500-normal.woff2") format("woff2"); font-weight: 500; font-display: swap; }

/* ───────────────────────── TOKENS ───────────────────────── */
:root {
  --paper: #F3EFE6;
  --surface: #FFFFFF;
  --ink: #1A1B1D;
  --muted: #6B6E73;
  --faint: #9A9CA1;
  --hair: #E7E5DF;
  --hair2: #EFEDE7;
  --accent: #1E6B4F;
  --accent-ink: #134231;
  --accent-soft: #E8F0EB;
  --amber: #9A6B12;
  --amber-soft: #F5EEDD;

  --sans: "Geist", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --display: "Bricolage Grotesque", "Geist", ui-sans-serif, system-ui, sans-serif;

  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);

  --wrap: 1120px;
  --gutter: clamp(20px, 5vw, 48px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }
/* Decorative elements (hero wash, laptop base) intentionally bleed past the
   viewport edge; clip so they can't widen the page into sideways scroll. */
html, body { overflow-x: clip; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  letter-spacing: -0.011em;
  line-height: 1.6;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--accent-soft); }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }

a { color: inherit; text-decoration: none; }

.eyebrow, .label, .step__no, .stack__k, .pill,
.lead-card__meta, .guarantee__badge {
  font-family: var(--mono);
}

/* Display face carries the big voice; everything else stays quiet. */
.hero__h1, .section h2, .final h2 {
  font-family: var(--display);
  letter-spacing: -0.02em;
}

/* ───────────────────────── BUTTONS ───────────────────────── */
.btn {
  --bg: var(--accent); --fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--bg); color: var(--fg);
  font-family: var(--sans); font-weight: 500; font-size: 0.94rem;
  letter-spacing: -0.01em;
  padding: 11px 20px; border-radius: 10px; border: 1px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: transform 160ms var(--ease-out), background-color 160ms var(--ease-out),
              border-color 160ms var(--ease-out), color 160ms var(--ease-out);
}
.btn:hover { background: var(--accent-ink); }
.btn:active { transform: scale(0.97); }
.btn--lg { padding: 15px 26px; font-size: 1rem; border-radius: 12px; }
.btn--sm { padding: 8px 15px; font-size: 0.86rem; }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--hair); }
.btn--ghost:hover { background: transparent; border-color: var(--ink); color: var(--ink); }

.btn--light { --bg: var(--paper); --fg: var(--ink); }
.btn--light:hover { background: #fff; color: var(--accent-ink); }
.btn--ghost-light { color: var(--paper); border-color: rgba(250, 249, 246, 0.28); }
.btn--ghost-light:hover { color: #fff; border-color: rgba(250, 249, 246, 0.7); background: transparent; }

/* ───────────────────────── NAV ───────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--paper) 97%, transparent);
  backdrop-filter: saturate(1.3) blur(6px);
  isolation: isolate; /* own stacking context — avoids paint bleed from content scrolling under */
  border-bottom: 1px solid transparent;
  transition: border-color 200ms var(--ease-out), background-color 200ms var(--ease-out);
}
@supports not (backdrop-filter: blur(1px)) {
  .nav { background: var(--paper); }
}
.nav[data-stuck="true"] { border-bottom-color: var(--hair); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; height: 68px; }
.nav__end { display: flex; align-items: center; gap: 20px; }

.brand { display: inline-flex; align-items: baseline; white-space: nowrap; font-weight: 600; font-size: 1.12rem; letter-spacing: -0.03em; }
.brand__mark { color: var(--accent); font-family: var(--mono); font-weight: 500; }
.brand__word { color: var(--ink); }

.nav__links { display: flex; gap: 30px; }
.nav__links a { color: var(--muted); font-size: 0.92rem; transition: color 140ms var(--ease-out); }
.nav__links a:hover { color: var(--ink); }
.nav__signin { position: relative; white-space: nowrap; color: var(--muted); font-size: 0.92rem; transition: color 140ms var(--ease-out); }
.nav__signin:hover { color: var(--ink); }
/* Hairline between the quiet link and the loud button so they read as two
   different kinds of action rather than one crowded pair. */
.nav__signin::after {
  content: ""; position: absolute; right: -10px; top: 50%; transform: translateY(-50%);
  width: 1px; height: 16px; background: var(--hair);
}
.nav__cta { }

.nav__burger { display: none; background: none; border: 0; width: 40px; height: 40px; cursor: pointer; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav__burger span { display: block; width: 20px; height: 1.5px; background: var(--ink); transition: transform 200ms var(--ease-out), opacity 200ms var(--ease-out); }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(3.25px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.25px) rotate(-45deg); }

.nav__mobile { display: none; flex-direction: column; gap: 4px; padding: 12px var(--gutter) 22px; border-bottom: 1px solid var(--hair); background: var(--paper); }
.nav__mobile a { padding: 11px 0; color: var(--muted); border-bottom: 1px solid var(--hair2); }
.nav__mobile a.btn { color: var(--paper); border: 0; margin-top: 10px; justify-content: center; }

/* ───────────────────────── HERO ───────────────────────── */
/* Full-bleed green wash behind the fold so the page opens in colour, not white */
.hero-band {
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent-soft) 85%, var(--paper)), var(--paper));
  border-bottom: 1px solid var(--hair2);
}
.hero {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 6vw, 72px);
  align-items: center;
  padding-top: clamp(48px, 8vw, 96px); padding-bottom: clamp(56px, 9vw, 104px);
}
.eyebrow {
  font-size: 0.78rem; letter-spacing: 0.02em; text-transform: uppercase;
  color: var(--accent); font-weight: 500; margin-bottom: 20px;
}
.hero__h1 {
  font-size: clamp(2.05rem, 4.6vw, 3.1rem); line-height: 1.07;
  font-weight: 600; text-wrap: balance;
}
/* Soft green highlighter on the load-bearing phrase */
.mark {
  background: linear-gradient(transparent 58%, var(--accent-soft) 58%);
  padding-inline: 2px; margin-inline: -2px; border-radius: 3px;
}
.hero__sub {
  margin-top: 22px; font-size: clamp(1.02rem, 1.6vw, 1.18rem); color: var(--muted);
  max-width: 38ch; line-height: 1.55;
}
.hero__cta { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.hero__trust { list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.tick { color: var(--accent); font-weight: 600; }

/* Guarantee + fit read as a balanced pair: same card, distinguished by colour and icon */
.hero__proof {
  display: flex; align-items: flex-start; gap: 12px;
  border: 1px solid var(--hair); background: var(--surface);
  border-radius: 12px; padding: 14px 16px;
}
.hero__proof--guarantee {
  background: color-mix(in srgb, var(--accent-soft) 60%, transparent);
  border-color: color-mix(in srgb, var(--accent) 18%, transparent);
}
.hero__proof-badge {
  flex: none; width: 22px; height: 22px; margin-top: 1px;
  display: grid; place-items: center; border-radius: 50%;
  font-size: 0.72rem; font-weight: 700;
}
.hero__proof--guarantee .hero__proof-badge { background: var(--accent); color: #fff; }
.hero__proof--fit .hero__proof-badge { background: var(--hair2); color: var(--muted); }
.hero__proof--fit .hero__proof-badge svg { width: 14px; height: 14px; }
.hero__proof-body { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.hero__proof-body strong { color: var(--ink); font-weight: 600; font-size: 0.98rem; letter-spacing: -0.01em; text-wrap: balance; }
.hero__proof-sub { color: var(--muted); font-size: 0.9rem; line-height: 1.45; }

/* Lead card — the "what lands in your inbox" artifact */
.lead-card {
  background: var(--surface); border: 1px solid var(--hair); border-radius: 16px;
  padding: 22px; box-shadow: 0 1px 0 var(--hair2), 0 24px 48px -32px rgba(26, 27, 29, 0.28);
}
.lead-card__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.label { font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--faint); }
.pill { font-size: 0.7rem; padding: 4px 10px; border-radius: 999px; border: 1px solid var(--hair); letter-spacing: 0.01em; }
.pill--warm { color: var(--accent-ink); background: var(--accent-soft); border-color: transparent; }

.lead-card__firm { display: flex; align-items: center; gap: 12px; padding-bottom: 16px; border-bottom: 1px solid var(--hair2); }
.lead-card__logo { width: 40px; height: 40px; border-radius: 9px; background: var(--ink); color: var(--paper); display: grid; place-items: center; font-family: var(--mono); font-weight: 500; }
.lead-card__name { font-weight: 600; font-size: 1.02rem; }
.redact { display: inline-block; color: var(--hair); letter-spacing: -2px; transform: translateY(1px); filter: blur(0.4px); }
.lead-card__meta { font-size: 0.8rem; color: var(--faint); }

.lead-card__rows { display: flex; flex-direction: column; gap: 0; padding: 14px 0; border-bottom: 1px solid var(--hair2); }
.lead-card__rows > div { display: grid; grid-template-columns: 76px 1fr; gap: 12px; padding: 6px 0; align-items: baseline; }
.lead-card__rows dt { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--faint); }
.lead-card__rows dd { font-size: 0.9rem; color: var(--ink); }

.lead-card__reply { padding: 16px 0 4px; }
.lead-card__reply-label { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
.lead-card__reply-body { font-size: 0.94rem; color: var(--ink); font-style: italic; line-height: 1.5; }

.lead-card__prep { margin-top: 16px; background: var(--accent-soft); border-radius: 11px; padding: 14px 16px; }
.lead-card__prep .label { color: var(--accent-ink); opacity: 0.75; }
.lead-card__prep p { margin-top: 6px; font-size: 0.9rem; color: var(--accent-ink); line-height: 1.5; }

/* ───────────────────────── STRIP ───────────────────────── */
.strip { padding: 30px var(--gutter); border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair);
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.strip p { color: var(--muted); font-size: 0.98rem; }
.strip strong { color: var(--ink); font-weight: 600; }
.strip__niches { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; font-family: var(--mono); font-size: 0.8rem; color: var(--muted); letter-spacing: -0.01em; }
.strip__niches .dot { color: var(--hair); }

/* ───────────────────────── SECTION SCAFFOLD ───────────────────────── */
.section { padding-block: clamp(64px, 10vw, 120px); }
.section__head { max-width: 46ch; margin-bottom: clamp(36px, 5vw, 56px); }
.section h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); line-height: 1.1; font-weight: 600; text-wrap: balance; }
.section__lead { margin-top: 16px; color: var(--muted); font-size: 1.08rem; }

/* PROBLEM — three dead emails, stamped with how they died */
.section--flag {
  background: linear-gradient(180deg, color-mix(in srgb, var(--flag-soft) 40%, var(--paper)), var(--paper));
  border-block: 1px solid var(--hair2);
}
.pains { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(20px, 3vw, 36px); }
/* min-width:0 lets the grid track shrink below the vignettes' nowrap content
   instead of blowing the column past the viewport (which overflow-x:clip then crops). */
.pain { min-width: 0; }
.pain h3 { font-size: 1.12rem; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 10px; }
.pain p { color: var(--muted); font-size: 0.96rem; }

.vmail {
  position: relative; background: #fff; border: 1px solid var(--hair);
  border-radius: 12px; margin-bottom: 20px; overflow: hidden;
  box-shadow: 0 1px 0 var(--hair2), 0 14px 28px -24px rgba(26, 27, 29, 0.3);
}
.vmail__head { display: flex; gap: 10px; align-items: center; margin-bottom: 10px; }
.vmail__av {
  width: 30px; height: 30px; border-radius: 50%; flex: none;
  background: var(--hair2); color: var(--faint);
  display: grid; place-items: center; font-family: var(--mono); font-size: 0.72rem;
}
.vmail__meta { min-width: 0; }
.vmail__from { font-family: var(--mono); font-size: 0.68rem; color: var(--faint); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.vmail__subj { font-size: 0.86rem; font-weight: 600; color: var(--ink); margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.vmail__body { font-size: 0.8rem; color: var(--muted); line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.vmail__stamp {
  position: absolute; top: 8px; right: 10px; transform: rotate(5deg); z-index: 1;
  font-family: var(--mono); font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--flag); background: var(--paper);
  border: 2px double color-mix(in srgb, var(--flag) 55%, transparent);
  border-radius: 5px; padding: 4px 9px;
}

/* Gmail-flavoured read view: subject first, sender row, star, reply pills */
.vmail--gmail { padding: 16px; padding-top: 19px; }
.vmail--gmail::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #4285F4 0 25%, #EA4335 25% 50%, #FBBC04 50% 75%, #34A853 75% 100%);
}
.vmail__gsubj {
  font-family: var(--sans); font-size: 0.95rem; font-weight: 500; color: var(--ink);
  margin-bottom: 12px; padding-right: 78px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.vmail__glabel {
  font-size: 0.6rem; font-weight: 400; color: #5f6368; background: #f1f3f4;
  border-radius: 4px; padding: 2px 6px; margin-left: 6px; vertical-align: 2px;
}
.vmail__av--gmail { background: #EA4335; color: #fff; font-family: var(--sans); font-weight: 600; }
.vmail__gfrom { font-family: var(--sans); font-size: 0.76rem; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.vmail__gfrom b { font-weight: 600; }
.vmail__hint { font-family: var(--sans); font-size: 0.68rem; color: var(--faint); letter-spacing: 0; margin-top: 1px; }
.vmail__star { margin-left: auto; color: var(--faint); font-size: 1rem; font-weight: 400; flex: none; }
.vmail__gactions { display: flex; gap: 8px; margin-top: 14px; }
.vmail__gactions span {
  font-family: var(--sans); font-size: 0.72rem; color: #444746;
  border: 1px solid #dadce0; border-radius: 999px; padding: 5px 14px;
}

/* Outlook-flavoured list view: blue bar with search, Focused/Other pivot, unread row */
.vmail__obar {
  display: flex; align-items: center; gap: 12px;
  background: #0F6CBD; color: #fff; padding: 7px 12px;
  font-size: 0.72rem; font-weight: 600; font-family: var(--sans);
}
.vmail__osearch {
  flex: 1; background: rgba(255, 255, 255, 0.22); color: rgba(255, 255, 255, 0.8);
  font-weight: 400; font-size: 0.64rem; border-radius: 4px; padding: 3px 8px; max-width: 120px;
}
.vmail__opivot {
  display: flex; align-items: center; gap: 14px; padding: 8px 14px 0;
  font-family: var(--sans); font-size: 0.72rem; color: var(--faint);
}
.vmail__opivot b {
  color: #0F6CBD; font-weight: 600; position: relative; padding-bottom: 6px;
  border-bottom: 2.5px solid #0F6CBD;
}
.vmail__ocount {
  font-style: normal; font-size: 0.58rem; background: #0F6CBD; color: #fff;
  border-radius: 999px; padding: 1px 6px; margin-left: -6px;
}
.vmail__inner { padding: 12px 14px 14px; }
.vmail__odot { width: 8px; height: 8px; border-radius: 50%; background: #0F6CBD; flex: none; margin-top: 5px; align-self: flex-start; }
.vmail__osubj { font-family: var(--sans); font-size: 0.84rem; font-weight: 700; color: #0F6CBD; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.vmail--outlook .vmail__from { font-family: var(--sans); }
.vmail--outlook .vmail__body { padding-left: 18px; }

/* LinkedIn-flavoured DM: Messaging header, presence dot, degree badge, timed bubble */
.vmail__lihead {
  font-family: var(--sans); font-size: 0.74rem; font-weight: 600; color: var(--muted);
  padding: 9px 16px; border-bottom: 1px solid var(--hair2);
}
.vmail__libody { padding: 13px 16px 16px; }
.vmail__av--li { position: relative; background: #0A66C2; color: #fff; font-family: var(--sans); font-weight: 600; font-size: 0.66rem; border-radius: 50%; }
.vmail__lion {
  position: absolute; right: -1px; bottom: -1px; width: 9px; height: 9px;
  border-radius: 50%; background: #057642; border: 2px solid #fff;
}
.vmail--li .vmail__subj { font-family: var(--sans); }
.vmail--li .vmail__from { font-family: var(--sans); }
.vmail__deg { color: var(--faint); font-weight: 400; font-size: 0.78rem; }
.vmail__bubble {
  background: #F2F4F7; border-radius: 2px 12px 12px 12px;
  padding: 10px 12px; font-size: 0.8rem; color: var(--ink); line-height: 1.5;
  font-family: var(--sans);
}
.vmail__btime { display: block; margin-top: 6px; font-size: 0.62rem; color: var(--faint); text-align: right; }

/* STEPS */
.steps { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--hair); border: 1px solid var(--hair); border-radius: 16px; overflow: hidden; }
.step { background: var(--paper); padding: clamp(24px, 3vw, 36px); }
.step__no { display: block; color: var(--accent); font-size: 0.82rem; letter-spacing: 0.08em; margin-bottom: 18px; }
.step h3 { font-size: 1.24rem; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 0.98rem; max-width: 42ch; }

/* STACK — what you get */
.stack { list-style: none; border-top: 1px solid var(--hair); }
.stack li { display: grid; grid-template-columns: 190px 1fr; gap: clamp(16px, 3vw, 40px); align-items: baseline;
  padding: 22px 4px; border-bottom: 1px solid var(--hair); transition: background-color 180ms var(--ease-out); }
.stack li:hover { background: color-mix(in srgb, var(--accent-soft) 40%, transparent); }
.stack__k { font-size: 0.74rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent); }
.stack__v { font-size: 1.06rem; color: var(--ink); letter-spacing: -0.015em; }

/* ───────────────────────── OFFER ───────────────────────── */
/* Deep brand green, not black — the page's dark anchor stays on-palette */
.offer { background: linear-gradient(165deg, #10281D, #1B5038); color: var(--paper); }
.offer__inner { padding-block: clamp(64px, 10vw, 120px); }
/* Two columns once there's room: the pitch and guarantee on the left, the
   list-versus-conversation contrast on the right. Below 1000px it stacks. */
@media (min-width: 1000px) {
  .offer__inner { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr); column-gap: clamp(48px, 6vw, 88px); align-items: start; }
}
.offer__main { min-width: 0; }

.swap { min-width: 0; margin-top: 44px; display: flex; flex-direction: column; align-items: stretch; }
/* The left column runs much taller, so centre this against it rather than
   top-aligning and leaving a hole under the cards. */
@media (min-width: 1000px) { .swap { margin-top: 0; align-self: center; } }

.swap__card { border: 1px solid rgba(250, 249, 246, 0.14); border-radius: 16px; padding: clamp(20px, 2.4vw, 28px); }
.swap__card ul { display: flex; flex-direction: column; gap: 9px; }
.swap__card li { font-size: 0.97rem; line-height: 1.45; position: relative; padding-left: 20px; }
.swap__card li::before { position: absolute; left: 0; top: 0; }

.swap__tag { display: block; margin-bottom: 14px; font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.11em; text-transform: uppercase; }

.swap__card--cold { background: rgba(250, 249, 246, 0.03); }
.swap__card--cold .swap__tag { color: rgba(250, 249, 246, 0.42); }
.swap__card--cold li { color: rgba(250, 249, 246, 0.5); }
.swap__card--cold li::before { content: "×"; color: rgba(250, 249, 246, 0.32); }

.swap__card--warm { background: linear-gradient(180deg, rgba(30, 107, 79, 0.3), rgba(30, 107, 79, 0.08)); border-color: color-mix(in srgb, var(--accent) 38%, transparent); }
.swap__card--warm .swap__tag { color: color-mix(in srgb, var(--accent) 55%, #fff); }
.swap__card--warm li { color: #fff; }
.swap__card--warm li::before { content: "✓"; color: color-mix(in srgb, var(--accent) 60%, #fff); }

/* The line that turns two cards into one pipeline. */
.swap__link { display: block; width: 1px; height: 34px; margin: 0 auto; background: linear-gradient(180deg, rgba(250, 249, 246, 0.1), color-mix(in srgb, var(--accent) 50%, transparent)); }
.offer .section__head h2 { font-size: clamp(2rem, 4.6vw, 3.1rem); }
.offer__pitch { font-size: clamp(1.15rem, 2vw, 1.5rem); line-height: 1.45; letter-spacing: -0.02em; max-width: 28ch; color: #fff; text-wrap: balance; }
.offer__pitch em { color: color-mix(in srgb, var(--accent) 55%, #fff); font-style: normal; }

.guarantee { position: relative; margin-top: 44px; border: 1px solid rgba(250, 249, 246, 0.16); border-radius: 16px; padding: clamp(24px, 3vw, 34px); max-width: 640px;
  background: linear-gradient(180deg, rgba(30, 107, 79, 0.16), rgba(30, 107, 79, 0.04)); }

/* Rubber-stamp seal on the guarantee — dossier physicality, no fake textures */
.stamp {
  position: absolute; top: 18px; right: 20px; transform: rotate(-7deg);
  font-family: var(--mono); font-size: 0.66rem; font-weight: 500; line-height: 1.35;
  letter-spacing: 0.14em; text-transform: uppercase; text-align: center;
  color: color-mix(in srgb, var(--accent) 42%, #fff);
  border: 2px double color-mix(in srgb, var(--accent) 46%, rgba(250, 249, 246, 0.5));
  border-radius: 6px; padding: 7px 12px;
}
.guarantee__badge { display: inline-block; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: color-mix(in srgb, var(--accent) 50%, #fff); margin-bottom: 14px; }
.guarantee__line { font-size: clamp(1.2rem, 2.2vw, 1.55rem); font-weight: 600; letter-spacing: -0.02em; line-height: 1.3; }
.guarantee__sub { margin-top: 10px; color: rgba(250, 249, 246, 0.62); font-size: 0.98rem; }

.offer__foot { margin-top: 40px; max-width: 620px; }
.offer__roi { font-size: 1.12rem; letter-spacing: -0.015em; }
.offer__roi strong { color: #fff; }
.offer__price { margin-top: 12px; color: rgba(250, 249, 246, 0.6); font-size: 1rem; }
.offer__cta { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }

/* ───────────────────────── FIT ───────────────────────── */
.fit { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 4vw, 48px); }
.fit__col { padding: clamp(24px, 3vw, 34px); border-radius: 16px; border: 1px solid var(--hair); background: var(--surface); }
.fit__col h3 { font-size: 0.78rem; font-family: var(--mono); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 18px; }
.fit__col--yes h3 { color: var(--accent); }
.fit__col--no h3 { color: var(--amber); }
.fit__col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.fit__col li { position: relative; padding-left: 26px; color: var(--ink); font-size: 1rem; }
.fit__col li::before { position: absolute; left: 0; top: 0; font-family: var(--mono); }
.fit__col--yes li::before { content: "✓"; color: var(--accent); }
.fit__col--no li::before { content: "✕"; color: var(--amber); }

/* ───────────────────────── TWO-BLOCK ───────────────────────── */
.two { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); }
.two__block h3 { font-size: 1.4rem; font-weight: 600; letter-spacing: -0.025em; margin-bottom: 14px; }
.two__block p { color: var(--muted); font-size: 1.02rem; max-width: 46ch; }

/* Founder — the human behind the guarantee */
.founder { background: var(--surface); border: 1px solid var(--hair); border-radius: 16px; padding: clamp(24px, 3vw, 34px); }
.founder__row { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.founder__photo {
  width: 56px; height: 56px; border-radius: 14px; flex: none; object-fit: cover;
  background: var(--accent); color: var(--paper);
  display: grid; place-items: center; font-family: var(--mono); font-weight: 500; font-size: 1.05rem;
}
.founder__name { font-weight: 600; font-size: 1.06rem; letter-spacing: -0.015em; }
.founder__role { font-family: var(--mono); font-size: 0.74rem; color: var(--faint); letter-spacing: 0.06em; text-transform: uppercase; margin-top: 2px; }
.founder__bio { font-size: 0.98rem; }
.founder__link { display: inline-block; margin-top: 16px; font-size: 0.92rem; font-weight: 500; color: var(--accent-ink); border-bottom: 1px solid var(--accent-soft); transition: border-color 140ms var(--ease-out); }
.founder__link:hover { border-color: var(--accent); }

/* ───────────────────────── FAQ ───────────────────────── */
.faq { border-top: 1px solid var(--hair); max-width: 760px; }
.faq__item { border-bottom: 1px solid var(--hair); }
.faq__item summary { display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 4px; cursor: pointer; font-size: 1.06rem; font-weight: 500; letter-spacing: -0.015em; color: var(--ink); list-style: none; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__plus { position: relative; width: 14px; height: 14px; flex: none; }
.faq__plus::before, .faq__plus::after { content: ""; position: absolute; background: var(--faint); transition: transform 200ms var(--ease-out); }
.faq__plus::before { top: 6px; left: 0; width: 14px; height: 1.5px; }
.faq__plus::after { left: 6px; top: 0; width: 1.5px; height: 14px; }
.faq__item[open] .faq__plus::after { transform: scaleY(0); }
.faq__item p { padding: 0 4px 24px; color: var(--muted); font-size: 0.99rem; max-width: 62ch; }

/* ───────────────────────── FINAL CTA ───────────────────────── */
.final { background: var(--accent); color: var(--paper); }
.final__inner { padding-block: clamp(64px, 10vw, 120px); text-align: center; display: flex; flex-direction: column; align-items: center; }
.final h2 { font-size: clamp(2rem, 4.8vw, 3.2rem); line-height: 1.08; font-weight: 600; color: #fff; text-wrap: balance; }
.final p { margin-top: 18px; max-width: 48ch; color: rgba(250, 249, 246, 0.8); font-size: 1.1rem; }
.final__cta { display: flex; gap: 12px; margin-top: 34px; flex-wrap: wrap; justify-content: center; }
.final .btn--light:hover { color: var(--accent-ink); }

/* ───────────────────────── FOOTER ───────────────────────── */
.footer { border-top: 1px solid var(--hair); padding-block: 40px; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.brand--footer { font-size: 1rem; }
.footer__meta { color: var(--muted); font-size: 0.88rem; }
.footer__copy { color: var(--faint); font-size: 0.84rem; font-family: var(--mono); }

/* ───────────────────────── HERO ARRIVAL (the one orchestrated moment) ─────────────────────────
   On load, the warm reply "arrives": unread badge pops, the row slides in,
   the reading pane fills, the warm pill lands. No other motion on the page. */
@keyframes arrive-slide { from { opacity: 0; transform: translateX(-14px); } to { opacity: 1; transform: none; } }
@keyframes arrive-fade  { from { opacity: 0; } to { opacity: 1; } }
@keyframes arrive-pop   { from { opacity: 0; transform: scale(0.55); } to { opacity: 1; transform: scale(1); } }
.olk .omi--on            { animation: arrive-slide 480ms var(--ease-out) 650ms backwards; }
.olk__f--on b            { animation: arrive-pop 340ms var(--ease-out) 900ms backwards; }
.olk__read               { animation: arrive-fade 560ms var(--ease-out) 1100ms backwards; }
.olk__read .pill--warm   { animation: arrive-pop 380ms var(--ease-out) 1550ms backwards; }

/* Tinted section band */
.section--tint {
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent-soft) 80%, var(--paper)), var(--paper));
  border-block: 1px solid var(--hair2);
}

/* Negative-state flag colour for the dead-email vignettes */
:root { --flag: #B4453A; --flag-soft: #F6E7E4; }


/* ═════════════════════════ LAPTOP + MAIL MOCKUP (added) ═════════════════════════ */
.laptop-wrap { width: 100%; }
.laptop { width: 100%; max-width: 560px; margin-inline: auto; }
.laptop__lid {
  background: #0c0e0f; border-radius: 16px; padding: 10px;
  box-shadow: 0 2px 0 rgba(255,255,255,0.04) inset, 0 30px 60px -34px rgba(26,27,29,0.55);
}
.screen {
  background: var(--surface); border-radius: 8px; overflow: hidden;
  aspect-ratio: 16 / 10.4; display: flex; border: 1px solid #000;
}
/* Outlook-flavored mail client (blue chrome, Focused/Other pivot, folder rail).
   No Microsoft mark or "Outlook" wordmark — recognisable, not infringing. */
:root { --olk-blue: #0f6cbd; --olk-blue-soft: #e1effb; --olk-grey: #f3f2f1; }
.olk { display: flex; flex-direction: column; width: 100%; min-width: 0; background: var(--surface); }

.olk__bar { display: flex; align-items: center; gap: 8px; padding: 7px 12px; background: var(--olk-blue); color: #fff; flex: none; }
.olk__brand { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: 0.74rem; letter-spacing: -0.01em; }
.olk__logo { width: 15px; height: 15px; fill: none; stroke: #fff; stroke-width: 1.6; }
.olk__search { flex: 1; max-width: 168px; margin-left: 4px; background: rgba(255,255,255,0.2); border-radius: 5px; font-size: 0.62rem; padding: 3px 9px; color: rgba(255,255,255,0.85); }
.olk__win { margin-left: auto; display: flex; align-items: center; gap: 9px; }
.olk__win i { display: block; }
.olk__win-min { width: 8px; height: 1px; background: rgba(255,255,255,0.85); }
.olk__win-max { width: 8px; height: 8px; border: 1px solid rgba(255,255,255,0.85); border-radius: 1px; }
.olk__win-x { width: 9px; height: 9px; position: relative; }
.olk__win-x::before, .olk__win-x::after { content: ""; position: absolute; top: 4px; left: 0; width: 9px; height: 1px; background: rgba(255,255,255,0.85); }
.olk__win-x::before { transform: rotate(45deg); }
.olk__win-x::after { transform: rotate(-45deg); }

.olk__body { display: grid; grid-template-columns: 46px 40% 1fr; flex: 1; min-height: 0; }
.olk__rail { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 8px 0; background: var(--olk-grey); border-right: 1px solid var(--hair2); }
.olk__f { position: relative; width: 32px; height: 32px; border-radius: 6px; display: grid; place-items: center; color: #605e5c; }
.olk__f svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linejoin: round; }
.olk__f--on { background: var(--olk-blue-soft); color: var(--olk-blue); }
.olk__f b { position: absolute; top: -2px; right: -3px; background: var(--olk-blue); color: #fff; font-family: var(--mono); font-size: 0.5rem; line-height: 1; padding: 2px 4px; border-radius: 7px; }

.olk__list { display: flex; flex-direction: column; min-width: 0; overflow: hidden; border-right: 1px solid var(--hair2); background: #faf9f8; }
.olk__pivot { display: flex; gap: 16px; padding: 9px 12px 7px; font-size: 0.66rem; color: var(--muted); border-bottom: 1px solid var(--hair2); flex: none; }
.olk__pivot-on { position: relative; color: var(--olk-blue); font-weight: 600; }
.olk__pivot-on::after { content: ""; position: absolute; left: 0; right: 0; bottom: -7px; height: 2px; background: var(--olk-blue); }
.olk__list ul { list-style: none; overflow: hidden; }
.omi { position: relative; display: grid; grid-template-columns: auto 1fr auto; column-gap: 8px; row-gap: 2px; padding: 8px 10px 8px 15px; border-bottom: 1px solid var(--hair2); }
.omi--on { background: var(--olk-blue-soft); }
.omi__bar { position: absolute; left: 5px; top: 8px; bottom: 8px; width: 3px; border-radius: 2px; background: var(--olk-blue); }
.omi__av { grid-row: 1 / 3; align-self: start; width: 26px; height: 26px; border-radius: 50%; background: var(--c, var(--olk-blue)); color: #fff; font-family: var(--mono); font-size: 0.56rem; display: grid; place-items: center; }
.omi__from { font-size: 0.72rem; font-weight: 600; color: var(--ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.omi__time { font-size: 0.6rem; color: var(--faint); justify-self: end; }
.omi__subj { grid-column: 2 / 4; font-size: 0.66rem; font-weight: 500; color: var(--ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.omi__prev { grid-column: 2 / 4; font-size: 0.62rem; color: var(--faint); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.olk__read { padding: 14px 16px; overflow: hidden; min-width: 0; background: var(--surface); }
.olk__read-head { display: flex; align-items: center; gap: 10px; }
.omi__av--lg { width: 34px; height: 34px; font-size: 0.66rem; }
.olk__read-who { min-width: 0; }
.olk__read-from { font-size: 0.82rem; font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.olk__read-to { font-size: 0.64rem; color: var(--faint); margin-top: 1px; }
.olk__read-head .pill--warm { margin-left: auto; flex: none; }
.olk__read-subj { margin-top: 13px; font-size: 0.86rem; font-weight: 600; color: var(--ink); }
.olk__read-body { margin-top: 8px; font-size: 0.82rem; font-style: italic; color: var(--ink); line-height: 1.5; }
.olk__actions { display: flex; gap: 8px; margin-top: 13px; }
.olk__btn { font-size: 0.66rem; padding: 4px 13px; border-radius: 5px; border: 1px solid var(--hair); color: var(--ink); }
.olk__btn--primary { background: var(--olk-blue); color: #fff; border-color: var(--olk-blue); }

.read__brief { margin-top: 14px; background: var(--accent-soft); border-radius: 9px; padding: 11px 12px; }
.read__brief .label { color: var(--accent-ink); opacity: 0.75; }
.read__brief p { margin-top: 5px; font-size: 0.78rem; color: var(--accent-ink); line-height: 1.45; }

.laptop__base {
  position: relative; height: 12px; margin: 0 auto; width: 108%; max-width: 604px; transform: translateX(-3.6%);
  background: linear-gradient(180deg, #d7d5cf, #b9b7b0);
  border-radius: 0 0 12px 12px; box-shadow: 0 10px 20px -12px rgba(26,27,29,0.4);
}
.laptop__notch { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 88px; height: 6px; background: #a9a7a0; border-radius: 0 0 7px 7px; }

/* ═════════════════════════ RHYTHM TIMELINE (added) ═════════════════════════ */
.rhythm { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 3vw, 32px); position: relative; }
.rhythm::before {
  content: ""; position: absolute; top: 19px; left: 6%; right: 6%; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--amber)); opacity: 0.4; z-index: 0;
}
.rhythm__step { position: relative; }
.rhythm__node {
  position: relative; z-index: 1; width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent); color: #fff; font-family: var(--mono); font-size: 0.82rem; font-weight: 500;
  display: grid; place-items: center; margin-bottom: 18px; box-shadow: 0 0 0 6px var(--paper);
}
.rhythm__step:nth-child(4) .rhythm__node { background: var(--amber); }
.rhythm__step h3 { font-size: 1.14rem; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 8px; }
.rhythm__step p { color: var(--muted); font-size: 0.95rem; max-width: 34ch; }

/* Funnel — our own measured numbers, drawn as an actual funnel */
.funnel { margin-top: clamp(48px, 6vw, 76px); max-width: 560px; margin-inline: auto; }
.funnel__cap {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent-ink); margin-bottom: 18px; text-align: center;
}
.funnel__steps { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.fstep {
  width: var(--fw); min-width: 150px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 14px) 100%, 14px 100%);
  background: linear-gradient(90deg, var(--accent), color-mix(in srgb, var(--accent) 72%, var(--amber)));
  color: #fff; text-align: center;
  font-size: 0.86rem; padding: 11px 20px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.fstep b { font-family: var(--mono); font-weight: 500; font-size: 0.95rem; margin-right: 4px; }
.fstep:nth-child(2) { background: linear-gradient(90deg, color-mix(in srgb, var(--accent) 85%, var(--amber)), color-mix(in srgb, var(--accent) 55%, var(--amber))); }
.fstep:nth-child(3) { background: linear-gradient(90deg, color-mix(in srgb, var(--accent) 60%, var(--amber)), var(--amber)); }
.fstep--last { background: var(--amber); border-radius: 0 0 10px 10px; clip-path: none; font-weight: 600; }
.funnel__note { margin-top: 14px; font-size: 0.8rem; color: var(--muted); text-align: center; }

/* Laptop caption — keeps the illustration honest */
.laptop__cap {
  margin-top: 14px; text-align: center;
  font-family: var(--mono); font-size: 0.74rem; color: var(--faint); letter-spacing: 0.01em;
}

/* ═════════════ PORTAL PREVIEW (skeleton until the real screenshot exists) ═════════════ */
.portal-frame { margin-top: clamp(36px, 5vw, 56px); }
.portal-frame__bar {
  display: flex; align-items: center; gap: 14px;
  background: var(--ink); border-radius: 14px 14px 0 0; padding: 10px 16px;
}
.portal-frame__dots { display: inline-flex; gap: 6px; }
.portal-frame__dots i { width: 9px; height: 9px; border-radius: 50%; background: rgba(250, 249, 246, 0.28); }
.portal-frame__url { font-family: var(--mono); font-size: 0.74rem; color: rgba(250, 249, 246, 0.6); }
.portal-frame__body {
  display: grid; grid-template-columns: 160px 1fr; gap: 24px;
  border: 1px solid var(--hair); border-top: 0; border-radius: 0 0 14px 14px;
  background: var(--surface); padding: clamp(20px, 3vw, 32px);
}
.portal-frame__rail { display: flex; flex-direction: column; gap: 12px; padding-right: 20px; border-right: 1px solid var(--hair2); }
.pf-bar { display: block; height: 12px; border-radius: 4px; background: var(--hair2); width: var(--pw, 100%); }
.pf-bar--rail { height: 10px; }
.pf-bar--rail:nth-child(1) { width: 70%; background: var(--accent-soft); }
.pf-bar--rail:nth-child(2) { width: 85%; }
.pf-bar--rail:nth-child(3) { width: 55%; }
.portal-frame__main { display: flex; flex-direction: column; gap: 16px; }
.pf-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--hair2); }
.pf-row:last-child { border-bottom: 0; padding-bottom: 0; }
.pf-chip { width: 52px; height: 16px; border-radius: 999px; background: var(--hair2); flex: none; }
.pf-chip--warm { background: var(--accent-soft); }
.portal-frame__cap { margin-top: 14px; font-size: 0.95rem; line-height: 1.5; color: var(--muted); max-width: 64ch; }
.portal-frame__cap b { color: var(--ink); font-weight: 600; }

/* Full width, stacked. Side by side halved each screenshot and made the app's
   13px UI text illegible, which turns proof back into decoration. */
.shots { margin-top: clamp(36px, 5vw, 56px); display: flex; flex-direction: column; gap: clamp(40px, 5vw, 64px); }
.shots .portal-frame { margin-top: 0; min-width: 0; }

/* The screenshot itself replaces the old grey skeleton. */
.portal-frame__shot {
  display: block; width: 100%; height: auto;
  border: 1px solid var(--hair); border-top: 0; border-radius: 0 0 14px 14px;
  background: var(--surface);
  box-shadow: 0 18px 40px -28px rgba(20, 30, 25, 0.35);
}

/* Says "sample data" on the image itself, so a cropped or re-shared screenshot
   still carries the label. */
.portal-frame__flag {
  margin-left: auto; font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.09em;
  text-transform: uppercase; color: rgba(250, 249, 246, 0.72);
  border: 1px solid rgba(250, 249, 246, 0.28); border-radius: 999px; padding: 3px 9px;
}

/* Reads as a footnote to both shots, not as a third caption floating alone. */
.shots__note {
  margin-top: clamp(24px, 3vw, 34px); padding-top: 16px; border-top: 1px solid var(--hair2);
  font-size: 0.82rem; line-height: 1.5; color: var(--faint, var(--muted)); max-width: 78ch;
}

/* ═════════════════════════ WHAT-YOU-GET BUCKETS (added) ═════════════════════════ */
.buckets { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.4vw, 24px); }
.bucket {
  background: var(--surface); border: 1px solid var(--hair); border-radius: 16px;
  padding: clamp(22px, 2.6vw, 30px); display: flex; flex-direction: column;
}
.bucket__tag {
  align-self: flex-start; font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 5px 12px; border-radius: 999px; margin-bottom: 20px;
}
.bucket__tag--find { color: var(--amber); background: var(--amber-soft); }
.bucket__tag--warm { color: var(--accent-ink); background: var(--accent-soft); }
.bucket__tag--close { color: var(--paper); background: var(--ink); }
.bucket ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.bucket li { position: relative; padding-left: 22px; font-size: 1rem; color: var(--ink); line-height: 1.45; letter-spacing: -0.01em; }
.bucket li::before { content: ""; position: absolute; left: 0; top: 9px; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.bucket--find li::before { background: var(--amber); }

/* Request a niche link (final CTA) */
.final__niche { margin-top: 28px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center; font-size: 0.98rem; color: rgba(250, 249, 246, 0.82); }
.niche-link { color: #fff; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,0.5); padding-bottom: 1px; transition: border-color 160ms var(--ease-out); }
.niche-link:hover { border-bottom-color: #fff; }

/* ───────────────────────── RESPONSIVE ───────────────────────── */
@media (max-width: 900px) {
  .rhythm { grid-template-columns: 1fr 1fr; }
  .rhythm::before { display: none; }
  .buckets { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .rhythm { grid-template-columns: 1fr; }
  .olk__body { grid-template-columns: 1fr; }
  .olk__rail, .olk__list { display: none; }
  .laptop { max-width: 440px; }
  .portal-frame__body { grid-template-columns: 1fr; }
  .portal-frame__rail { flex-direction: row; padding-right: 0; padding-bottom: 16px; border-right: 0; border-bottom: 1px solid var(--hair2); }
  .pf-bar--rail { width: 30% !important; }
  .stamp { position: static; display: inline-block; margin-bottom: 14px; }
  /* Funnel: gentler taper on mobile so lower steps fit their labels; wrap as a
     safety net so a label never truncates. (!important beats the inline --fw.) */
  .fstep { white-space: normal; min-width: 0; line-height: 1.3; }
  .fstep:nth-child(2) { width: 88% !important; }
  .fstep:nth-child(3) { width: 76% !important; }
  .fstep--last { width: 64% !important; }
}
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__signin { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__mobile.is-open { display: flex; }
  .hero { grid-template-columns: 1fr; padding-top: 40px; }
  .lead-card { order: 2; max-width: 460px; }
  .pains { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .stack li { grid-template-columns: 1fr; gap: 6px; }
  .fit, .two { grid-template-columns: 1fr; }
  .strip { flex-direction: column; align-items: flex-start; gap: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-delay: 0ms !important; transition-duration: 0.01ms !important; }
}
