/* ═══════════════════════════════════════════════════════════
   SeyChizz — V2
   Light ground, big rounded panels, one vivid brand flood.
   Same brand violet as V1, pulled brighter so it can carry a
   full-bleed panel the way the reference's green does.
   Context switching lives in .on-brand: it re-declares ink,
   line and button skin, so every var() below resolves by where
   it sits instead of needing a per-component override.
   ═══════════════════════════════════════════════════════════ */

:root {
  /* Brand — bright golden yellow, and a FILL only.
     Yellow cannot be typography on white: to reach even the 3:1 large-text
     floor it has to drop to ~40% lightness, and yellow at 40% lightness is
     brown. Going yellower makes it worse, not better (hue 48 lands on
     olive). So the yellow never sets type here — it fills panels, chips and
     the hero highlight, where it stays at full brightness with dark text on
     top at 9:1. Type is charcoal; --brand-display is for icons and rules
     only, which need 3:1 rather than 4.5:1. */
  --brand: #FFC53D;
  --brand-deep: #8A6A12;
  /* Large display type only (>=24px bold), where AA's floor is 3:1 rather
     than 4.5:1 — lets the hero stay bright without dropping below it. */
  --brand-display: #C58300;
  --brand-tint: #FFF8E7;

  /* Ink & surfaces */
  --ink: #2E2A25;
  --ink-2: #5F5850;
  --ink-3: #918980;
  --page: #FFFFFF;
  --panel: #F7F4EF;
  --panel-2: #EEE8DF;
  --line: #EAE3D9;

  /* Button skin, swapped inside .on-brand */
  --btn-bg: var(--panel);
  --btn-fg: var(--ink);
  --btn-bg-hover: var(--panel-2);

  --r-band: 44px;
  --r-card: 28px;
  --r-md: 18px;
  --r-sm: 12px;
  --r-pill: 999px;

  --shadow-soft: 0 1px 2px rgba(46, 42, 37, .04), 0 12px 32px rgba(46, 42, 37, .06);
  --shadow-lift: 0 2px 6px rgba(46, 42, 37, .06), 0 22px 48px rgba(46, 42, 37, .12);
  --shadow-photo: 0 8px 28px rgba(46, 42, 37, .16);

  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  /* Bricolage Grotesque carries the display line: variable, with an optical
     size axis that tightens the drawing on its own at hero sizes. */
  --display: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  --wrap: 1296px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--page);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
picture { display: block; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; background: none; border: 0; cursor: pointer; -webkit-tap-highlight-color: transparent; }

:focus-visible { outline: 3px solid var(--brand); outline-offset: 3px; border-radius: 8px; }
.on-brand :focus-visible { outline-color: #2E2A25; }
::selection { background: var(--brand); color: var(--ink); }
a[x-apple-data-detectors] { color: inherit !important; text-decoration: none !important; font-weight: inherit !important; }

.vh {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ───────── Reading context ─────────
   Any violet fill flips the whole set at once. */
.on-brand {
  color: #2E2A25;
  --ink: #2E2A25;
  --ink-2: rgba(46, 42, 37, .82);
  --ink-3: rgba(46, 42, 37, .72);
  --line: rgba(46, 42, 37, .18);
  --btn-bg: rgba(255, 255, 255, .88);
  --btn-fg: #2E2A25;
  --btn-bg-hover: #FFFFFF;
}

/* ───────── Type ───────── */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.015em;
  text-wrap: balance;
}

.h-hero {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(44px, 6.5vw, 94px);
  line-height: .95; letter-spacing: -.035em;
}
.h-hero .mark {
  color: var(--ink);
  background: var(--brand);
  padding: 0 .1em .04em;
  border-radius: .08em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.on-brand .h-hero .mark { color: #FFFFFF; }

/* The reference's signature: a lowercase word with a full stop. */
.sec-title {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(34px, 5.4vw, 60px);
  line-height: 1; letter-spacing: -.03em;
  margin-bottom: 28px;
}
.h-1 { font-size: clamp(30px, 4vw, 46px); font-weight: 800; letter-spacing: -.025em; }
.h-2 { font-size: clamp(23px, 2.6vw, 32px); font-weight: 700; }

.lead {
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--ink-2); line-height: 1.55; text-wrap: pretty;
}
.lead-center { max-width: 620px; margin-inline: auto; }
.center { text-align: center; }

.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-2); margin-bottom: 14px;
}
.on-brand .eyebrow { color: #2E2A25; }

.ico {
  width: 1.15em; height: 1.15em; display: inline-block; vertical-align: -.2em; flex: none;
  fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

/* ───────── Layout ───────── */
.wrap { width: min(100% - clamp(40px, 10vw, 144px), var(--wrap)); margin-inline: auto; }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section-tight { padding: clamp(40px, 5vw, 64px) 0; }
.head { text-align: center; max-width: 700px; margin: 0 auto clamp(40px, 5vw, 60px); }

/* ───────── Buttons ───────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 30px; border-radius: var(--r-pill);
  background-color: var(--btn-bg); color: var(--btn-fg);
  font-weight: 700; font-size: 16px; line-height: 1; white-space: nowrap;
  border: 1px solid transparent;
  transition: background-color .18s, transform .18s, box-shadow .18s, filter .18s;
}
.btn:hover { background-color: var(--btn-bg-hover); transform: translateY(-2px); }
.btn-lg { padding: 18px 38px; font-size: 17px; }
.btn-sm { padding: 11px 20px; font-size: 15px; }
.nav .btn-brand { width: 171px; height: 60px; padding: 0; font-size: 17px; }

/* The black buttons are the only raised surface on the page. The gradient
   alone reads as flat-dark; what actually sells the bevel is the 1px inset
   highlight on the top edge against the shade on the bottom. :active trades
   the outer lift for an inner shadow so the button presses in rather than
   just changing colour. */
.btn-brand, .btn-ink, .on-brand .btn-ink {
  background-color: #2E2A25;
  background-image: linear-gradient(180deg, #4A443C 0%, #332E28 48%, #211D19 100%);
  color: #FFFFFF;
  border-color: rgba(0, 0, 0, .38);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .17),
    inset 0 -1px 0 rgba(0, 0, 0, .42),
    0 2px 4px rgba(46, 42, 37, .28),
    0 8px 18px rgba(46, 42, 37, .20);
}
.btn-brand:hover, .btn-ink:hover, .on-brand .btn-ink:hover {
  filter: brightness(1.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .22),
    inset 0 -1px 0 rgba(0, 0, 0, .42),
    0 4px 9px rgba(46, 42, 37, .30),
    0 14px 28px rgba(46, 42, 37, .24);
}
.btn-brand:active, .btn-ink:active, .on-brand .btn-ink:active {
  transform: translateY(1px);
  filter: none;
  box-shadow:
    inset 0 2px 6px rgba(0, 0, 0, .45),
    inset 0 1px 0 rgba(255, 255, 255, .05),
    0 1px 2px rgba(46, 42, 37, .28);
}
.btn-white { background: #fff; color: var(--ink); }
.btn-white:hover { background: var(--brand-tint); box-shadow: var(--shadow-lift); }
.btn-outline { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-outline:hover { background: var(--panel); }
.on-brand .btn-outline { border-color: rgba(46, 42, 37, .38); color: #2E2A25; }

.btn-text {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 700; color: var(--ink); font-size: 16px;
}
.btn-text:hover { gap: 11px; }
.btn-text { transition: gap .18s; }
.on-brand .btn-text { color: #2E2A25; }

/* ───────── Chips ───────── */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 17px; border-radius: var(--r-pill);
  background: var(--panel); color: #2E2A25;
  font-size: 14px; font-weight: 700; line-height: 1.2;
}
.chip-brand { background: var(--brand); color: #2E2A25; }
.chip-mark { background: var(--brand); color: #2E2A25; }
.on-brand .chip-mark { background: #2E2A25; color: #FFFFFF; }
.chip-ink { background: #2E2A25; color: #fff; }
.chip-white { background: #fff; color: #2E2A25; box-shadow: var(--shadow-soft); }
.chip .ico { width: 16px; height: 16px; }

/* A light card inside a brand panel restores the whole light context. */
.free-cta, .review-card {
  --ink: #2E2A25;
  --ink-2: #5F5850;
  --ink-3: #918980;
  --line: #EAE3D9;
  --btn-bg: var(--panel);
  --btn-fg: #2E2A25;
  --btn-bg-hover: var(--panel-2);
  color: var(--ink);
}

/* ───────── Nav ─────────
   The size is identical at every scroll position — only the SURFACE changes.
   Across the hero the bar is invisible; once it is over content it fades up
   a rounded pill and a shadow. Nothing reflows, so the row never jumps. */
.nav {
  position: sticky; top: 0; z-index: 60;
  padding: 12px 0;
}
.nav-inner {
  position: relative;
  width: min(100% - 44px, 1240px); margin-inline: auto;
  height: 72px; padding-inline: 26px;
  display: flex; align-items: center; gap: 24px;
  border-radius: var(--r-pill);
  background: transparent;
  box-shadow: none;
  transition: background .25s ease, box-shadow .25s ease;
}
.nav.stuck .nav-inner {
  background: rgba(255, 255, 255, .93);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  box-shadow: 0 6px 30px rgba(46, 42, 37, .13);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 800; font-size: 22px; letter-spacing: -.02em; }
.brand img { width: 30px; height: 30px; border-radius: 9px; }

.nav-links {
  list-style: none; display: flex; align-items: center; gap: 0;
  margin-inline: auto;
}
/* Hover and current-page are colour shifts, not filled pills — nothing
   changes size, so the row never jitters as the pointer crosses it. */
.nav-links > li > a {
  display: block; padding: 9px 14px;
  font-size: 15px; font-weight: 500; color: var(--ink-2);
  transition: color .16s;
}
.nav-links > li > a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); font-weight: 600; }

.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-login { font-size: 15px; font-weight: 500; transition: color .16s; }
.nav-login:hover { color: var(--ink); }
.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 13px; background: var(--panel); align-items: center; justify-content: center; }
.nav-toggle .ico { width: 22px; height: 22px; }
.nav-toggle .ico-x { display: none; }
.nav-toggle.open .ico-bars { display: none; }
.nav-toggle.open .ico-x { display: block; }
.nav .btn-brand { width: 142px; height: 46px; padding: 0; font-size: 15px; }

@media (max-width: 980px) {
  .nav { padding: 9px 0; }
  .nav-inner { height: 62px; gap: 10px; padding-inline: 14px; width: min(100% - 22px, 100%); }
  .brand { font-size: 21px; }
  .brand img { width: 28px; height: 28px; }
  /* .nav-links is absolutely positioned here, so its margin-inline:auto no
     longer pushes anything; nav-right has to take the free space itself. */
  .nav-right { gap: 10px; margin-left: auto; }
  .nav .btn-brand { width: auto; height: 40px; padding: 0 15px; font-size: 14px; }
  .nav-links {
    position: absolute; top: calc(100% + 10px); left: 0; right: 0; display: none;
    flex-direction: column; align-items: stretch; gap: 2px;
    padding: 12px; background: #fff; border: 1px solid var(--line);
    border-radius: 22px; box-shadow: var(--shadow-lift);
  }
  .nav-links.open { display: flex; }
  .nav-links > li > a { padding: 13px 14px; font-size: 17px; }
  .nav-toggle { display: flex; }
  .nav-login { display: none; }
}

/* ───────── Hero ───────── */
.hero { position: relative; padding: clamp(48px, 7vw, 100px) 0 0; overflow: hidden; }
.hero .lead {
  margin: clamp(10px, 1.2vw, 17px) auto 0;
  max-width: 760px;
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--ink-3);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: clamp(12px, 2.4vw, 34px); justify-content: center; margin-top: clamp(22px, 2.25vw, 32px); }
.hero-actions .btn { width: 204px; height: 68px; padding: 0; font-size: 20px; }
/* The fixed 204x68 is a desktop measurement; on a phone it forces the pair
   to stack and eats the fold. Sizing to content fits them on one row. */
@media (max-width: 640px) {
  .hero-actions { gap: 10px; }
  .hero-actions .btn { width: auto; height: 50px; padding: 0 20px; font-size: 15.5px; }
}


/* Tilted photo strip. Overlap plus alternating rotation is what makes it
   read as a pile of prints rather than a gallery row. */
.hero-strip {
  display: flex; padding-inline: 12px; justify-content: center; align-items: flex-end;
  gap: 0; margin-top: clamp(40px, 7.1vw, 102px); padding-bottom: 30px;
}
.hero-strip figure {
  position: relative; flex: none;
  width: clamp(120px, 17.4vw, 250px);
  border-radius: 20px; overflow: hidden;
  border: 5px solid #fff; box-shadow: var(--shadow-photo);
  margin-inline: -12px;
  transition: transform .3s;
}
.hero-strip img { aspect-ratio: 6 / 7; object-fit: cover; width: 100%; }
.hero-strip figure:nth-child(1) { rotate: -8deg; z-index: 1; }
.hero-strip figure:nth-child(2) { rotate: 4deg; z-index: 2; margin-bottom: 26px; }
.hero-strip figure:nth-child(3) { rotate: -3deg; z-index: 4; width: clamp(150px, 20.9vw, 300px); }
.hero-strip figure:nth-child(4) { rotate: 6deg; z-index: 3; margin-bottom: 20px; }
.hero-strip figure:nth-child(5) { rotate: -7deg; z-index: 1; }
.hero-strip figure:hover { transform: translateY(-8px) scale(1.03); z-index: 6; }

.hero-strip .found {
  position: absolute; left: 50%; bottom: 12px; translate: -50% 0;
  white-space: nowrap; font-size: 12px; padding: 7px 13px;
}
@media (max-width: 760px) {
  .hero-strip figure:nth-child(1), .hero-strip figure:nth-child(5) { display: none; }
  .hero-strip figure { border-width: 4px; }
}

/* ───────── Marquee ───────── */
.marquee {
  overflow: hidden; border-block: 1px solid var(--line);
  padding: 20px 0; background: var(--page);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track { display: flex; width: max-content; animation: slide 34s linear infinite; }
.marquee-track > div { display: flex; align-items: center; }
.marquee span {
  font-family: var(--display); font-weight: 700; font-size: clamp(19px, 2.2vw, 26px);
  color: var(--ink-3); padding-inline: 22px; white-space: nowrap;
}
.marquee .sep { color: var(--brand); font-size: 15px; padding-inline: 4px; }
@keyframes slide { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ───────── Showcase panel (the big brand flood) ───────── */
.showcase {
  position: relative; border-radius: var(--r-band); background: var(--brand);
  padding: clamp(34px, 4.5vw, 60px);
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: clamp(28px, 4vw, 56px); align-items: center; overflow: hidden;
}
.showcase::after {
  content: ''; position: absolute; inset: auto -80px -140px auto;
  width: 340px; height: 340px; border-radius: 50%;
  background: rgba(46, 42, 37, .06);
}
.showcase-copy { position: relative; z-index: 1; }
.showcase h2 { font-size: clamp(32px, 4.6vw, 54px); font-weight: 800; letter-spacing: -.03em; }
.showcase .lead { margin-top: 18px; }
.showcase-chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 26px; }

.phone {
  position: relative; z-index: 1; justify-self: center;
  align-self: end; margin-bottom: -40px;
  width: min(100%, 270px); padding: 10px;
  border-radius: 44px; background: #2E2A25;
  box-shadow: 0 30px 70px rgba(46, 42, 37, .38);
}
.phone img { border-radius: 34px; aspect-ratio: 746 / 1324; object-fit: cover; }
@media (max-width: 860px) {
  .showcase { grid-template-columns: 1fr; text-align: center; }
  .phone { margin-bottom: 0; align-self: center; }
  .showcase-chips { justify-content: center; }
  .showcase::after { display: none; }
}

/* ───────── Bento ───────── */
.bento { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.bento-card {
  position: relative; grid-column: span 5;
  background: var(--panel); border-radius: var(--r-card);
  padding: clamp(24px, 2.4vw, 32px); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.bento-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.bento-card h3 { font-size: clamp(21px, 2.1vw, 27px); }
.bento-card > p { color: var(--ink-2); font-size: 15.5px; margin-top: 9px; max-width: 44ch; }
.bento-media { margin-top: 22px; flex: 1; display: flex; align-items: flex-end; }
.bento-media img { border-radius: var(--r-md); width: 100%; box-shadow: var(--shadow-soft); }
.bento-card.is-brand { background: var(--brand); }
.bento-chips { display: flex; flex-wrap: wrap; gap: 9px; justify-content: center; }

@media (min-width: 900px) {
  .bento-card.w2 { grid-column: span 2; }
  .bento-card.w3 { grid-column: span 3; }
}

/* Folder tiles inside a bento card — each named the way a gallery is. */
.folder-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; width: 100%; }
.folder-grid figure { position: relative; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-soft); }
.folder-grid img { aspect-ratio: 3 / 4; object-fit: cover; }
.folder-grid figcaption {
  position: absolute; left: 8px; bottom: 8px;
  background: #fff; color: var(--ink); border-radius: var(--r-pill);
  padding: 5px 11px; font-size: 11.5px; font-weight: 700; line-height: 1;
}

/* Face search, shown rather than told: the whole event dimmed out except
   the one frame the selfie matched. */
.face-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; width: 100%; }
.face-grid figure { position: relative; border-radius: 13px; overflow: hidden; }
.face-grid img { aspect-ratio: 3 / 4; object-fit: cover; }
.face-grid .dim img { opacity: .38; filter: grayscale(1); }
.face-grid .hit { outline: 3px solid var(--brand); outline-offset: -3px; }
.face-grid .chip { position: absolute; left: 6px; bottom: 6px; font-size: 11px; padding: 5px 10px; gap: 5px; }
.face-grid .chip .ico { width: 13px; height: 13px; }

/* A photo that would otherwise run tall enough to stretch its whole row. */
.media-wide img { aspect-ratio: 16 / 9; object-fit: cover; }

/* ───────── Feature rows ─────────
   Alternating copy/visual pairs. .flip swaps the order on desktop only;
   below the breakpoint every row stacks copy-first regardless, so the
   reading order never depends on the visual order. */
.feature-row {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px); align-items: center;
  padding: clamp(28px, 4vw, 56px) 0;
}
.feature-row h2 { font-size: clamp(26px, 3.2vw, 38px); font-weight: 800; letter-spacing: -.025em; }
.feature-row > div > p { color: var(--ink-2); margin-top: 14px; font-size: 16.5px; max-width: 46ch; }
.feature-row .btn { margin-top: 24px; }
.feature-visual img, .feature-visual picture { border-radius: var(--r-card); box-shadow: var(--shadow-lift); }
.feature-visual.tone { background: var(--brand); border-radius: var(--r-card); padding: clamp(20px, 3vw, 38px); }
.phone-shot { justify-self: center; width: min(100%, 280px); padding: 10px; border-radius: 42px; background: #2E2A25; box-shadow: 0 26px 60px rgba(46, 42, 37, .30); }
.phone-shot img { border-radius: 33px; aspect-ratio: 746 / 1324; object-fit: cover; }
@media (min-width: 861px) { .feature-row.flip > :first-child { order: 2; } }
@media (max-width: 860px) { .feature-row { grid-template-columns: 1fr; } }

/* ───────── Comparison table ───────── */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare {
  width: 100%; min-width: 560px; border-collapse: collapse;
  background: var(--panel); border-radius: var(--r-card); overflow: hidden;
}
.compare th, .compare td { padding: 17px 22px; text-align: left; font-size: 15.5px; }
.compare thead th { font-family: var(--display); font-weight: 700; font-size: 16px; border-bottom: 2px solid var(--line); }
.compare tbody tr + tr td { border-top: 1px solid var(--line); }
.compare td:first-child { font-weight: 600; }
.compare .us { background: var(--brand-tint); }
.compare thead .us { background: var(--brand); color: #2E2A25; }
.compare .yes { font-weight: 700; color: var(--ink); }
.compare .no { color: var(--ink-3); }

/* ───────── Long-form copy ─────────
   Privacy, terms and the about story: one column, generous measure. */
.prose { max-width: 68ch; }
.prose h2 { font-size: clamp(22px, 2.4vw, 30px); margin: 44px 0 12px; }
.prose h3 { font-size: 19px; margin: 30px 0 8px; }
.prose p, .prose li { color: var(--ink-2); font-size: 16.5px; line-height: 1.7; }
.prose p + p { margin-top: 14px; }
.prose ul, .prose ol { margin: 14px 0 0 20px; display: grid; gap: 8px; }
.prose a { color: var(--ink); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.prose > :first-child { margin-top: 0; }

/* ───────── Feature pill band ───────── */
.pill-band {
  position: relative; border-radius: var(--r-band); background: var(--brand);
  padding: clamp(36px, 5vw, 64px) clamp(24px, 4vw, 56px); text-align: center; overflow: hidden;
}
.pill-band h2 { font-size: clamp(26px, 3.4vw, 40px); font-weight: 800; margin-bottom: 28px; }
.pills { display: flex; flex-wrap: wrap; gap: 11px; justify-content: center; }
.pills .chip { background: #2E2A25; color: #fff; padding: 12px 20px; font-size: 15px; }
.pill-band .and-more {
  margin-top: 26px; font-family: var(--display); font-weight: 800;
  font-size: clamp(20px, 2.4vw, 28px); color: #2E2A25;
}

/* ───────── Promise (the No / No / No block) ───────── */
.promise {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 70px); align-items: center;
}
.promise-stack { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.promise-stack .chip {
  background: var(--brand); color: #2E2A25;
  font-family: var(--display); font-weight: 800; letter-spacing: -.02em;
  font-size: clamp(21px, 2.6vw, 30px); padding: 14px 30px;
}
.promise-stack .chip:nth-child(2) { margin-left: clamp(12px, 4vw, 46px); }
.promise-stack .chip:nth-child(3) { margin-left: clamp(24px, 8vw, 92px); }
.promise-visual { position: relative; }
.promise-visual img { border-radius: var(--r-card); box-shadow: var(--shadow-lift); }
.promise-visual .chip { position: absolute; right: -10px; bottom: 22px; }
@media (max-width: 820px) { .promise { grid-template-columns: 1fr; } .promise-visual .chip { right: 12px; } }

/* ───────── Steps ───────── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; }
.step {
  background: var(--panel); border-radius: var(--r-card);
  padding: clamp(26px, 3vw, 38px); position: relative;
}
.step-num {
  width: 46px; height: 46px; border-radius: 50%;
  background: #2E2A25; color: #FFFFFF;
  display: grid; place-items: center; margin-bottom: 18px;
  font-family: var(--display); font-weight: 800; font-size: 22px;
}
.step h3 { font-size: 24px; }
.step p { color: var(--ink-2); font-size: 15.5px; margin-top: 9px; }

/* ───────── Reviews ───────── */
.review-band {
  border-radius: var(--r-band); background: var(--brand);
  padding: clamp(36px, 5vw, 72px) clamp(24px, 4vw, 56px);
}
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 18px; }
.review-grid .review-card { max-width: none; margin: 0; }
.review-grid .review-card p { font-size: clamp(17px, 1.5vw, 20px); }
.review-card {
  background: #fff; color: var(--ink); border-radius: var(--r-card);
  padding: clamp(28px, 3.4vw, 46px); max-width: 760px; margin-inline: auto;
}
.review-card .stars { display: flex; gap: 3px; color: var(--brand); margin-bottom: 18px; }
.review-card .stars .ico { width: 20px; height: 20px; fill: currentColor; stroke: none; }
.review-card p {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(21px, 2.6vw, 30px); line-height: 1.28; letter-spacing: -.02em;
}
.review-card cite { display: block; margin-top: 20px; font-style: normal; font-weight: 700; font-size: 15px; color: var(--ink-2); }

/* ───────── Stats ───────── */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 18px; }
.stat { background: var(--panel); border-radius: var(--r-card); padding: 30px 26px; text-align: center; }
.stat .num { font-family: var(--display); font-weight: 800; font-size: clamp(38px, 4.6vw, 56px); line-height: 1; color: var(--ink); letter-spacing: -.03em; }
.stat .desc { margin-top: 10px; font-size: 15px; color: var(--ink-2); }

/* ───────── Pricing ───────── */
.free-card {
  border-radius: var(--r-band); background: var(--brand);
  padding: clamp(30px, 4vw, 54px);
  display: grid; grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(26px, 4vw, 52px); align-items: center; margin-bottom: 22px;
}
.free-card h2 { font-size: clamp(28px, 3.6vw, 42px); font-weight: 800; margin-top: 16px; }
.free-card p { color: var(--ink-2); margin-top: 14px; max-width: 52ch; }
.checks { list-style: none; margin-top: 20px; display: grid; gap: 9px; }
.checks li { display: flex; align-items: flex-start; gap: 10px; font-size: 15.5px; font-weight: 600; }
.checks .ico { width: 19px; height: 19px; color: var(--brand-deep); margin-top: 3px; }
.on-brand .checks .ico { color: #2E2A25; }
.free-cta {
  background: #fff; color: var(--ink); border-radius: var(--r-card);
  padding: 32px 34px; text-align: center; min-width: 250px;
}
.free-cta .amt { font-family: var(--display); font-weight: 800; font-size: 56px; line-height: 1; letter-spacing: -.03em; }
.free-cta .sub { font-size: 13px; color: var(--ink-3); font-weight: 600; margin: 6px 0 20px; }
@media (max-width: 860px) { .free-card { grid-template-columns: 1fr; } }

/* Billing period — three radios and sibling selectors. Still no JS: the
   checked radio both lights its own segment and hides the other two price
   blocks, so the control and the prices can never disagree. */
.billing { display: flex; justify-content: center; margin: 34px 0 26px; }
.segmented {
  display: inline-flex; gap: 4px; padding: 5px;
  background: var(--panel); border-radius: var(--r-pill);
}
.segmented label {
  padding: 11px 22px; border-radius: var(--r-pill); white-space: nowrap;
  font-size: 15px; font-weight: 600; color: var(--ink-2); cursor: pointer;
  transition: background .18s, color .18s, box-shadow .18s;
}
.segmented label:hover { color: var(--ink); }

#bill-mo:checked  ~ .billing label[for="bill-mo"],
#bill-6mo:checked ~ .billing label[for="bill-6mo"],
#bill-yr:checked  ~ .billing label[for="bill-yr"] {
  background: #fff; color: var(--ink); box-shadow: var(--shadow-soft);
}
#bill-mo:focus-visible  ~ .billing label[for="bill-mo"],
#bill-6mo:focus-visible ~ .billing label[for="bill-6mo"],
#bill-yr:focus-visible  ~ .billing label[for="bill-yr"] {
  outline: 3px solid var(--brand-deep); outline-offset: 2px;
}

.price-grid .p-mo, .price-grid .p-6mo, .price-grid .p-yr { display: none; }
#bill-mo:checked  ~ .price-grid .p-mo,
#bill-6mo:checked ~ .price-grid .p-6mo,
#bill-yr:checked  ~ .price-grid .p-yr { display: block; }

.save {
  display: inline-block; vertical-align: middle; margin-left: 9px;
  background: var(--brand-tint); border: 1px solid var(--brand);
  color: var(--brand-deep); padding: 5px 11px; border-radius: var(--r-pill);
  font-family: var(--font); font-size: 12.5px; font-weight: 700; letter-spacing: 0;
}

.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; }
.price-card {
  position: relative;
  background: var(--panel); border-radius: var(--r-card);
  padding: clamp(26px, 3vw, 34px); display: flex; flex-direction: column;
  border: 2px solid transparent;
}
.price-card.featured { background: #fff; border-color: var(--brand); box-shadow: var(--shadow-lift); }
.price-card .badge { position: absolute; top: -15px; right: 24px; }
.price-name { font-family: var(--display); font-weight: 800; font-size: 26px; letter-spacing: -.02em; }
.price-card > p { color: var(--ink-2); font-size: 14.5px; margin-top: 4px; }
.price-amt { font-family: var(--display); font-weight: 800; font-size: clamp(34px, 3.6vw, 42px); line-height: 1.1; letter-spacing: -.03em; margin-top: 18px; }
.price-amt small { font-size: 16px; font-weight: 700; color: var(--ink-3); }
.price-fine { font-size: 12.5px; color: var(--ink-3); font-weight: 600; margin-top: 6px; }
.price-list { list-style: none; margin: 22px 0; display: grid; gap: 9px; flex: 1; }
.price-list li { display: flex; align-items: flex-start; gap: 9px; font-size: 15px; }
.price-list .ico { width: 18px; height: 18px; color: var(--brand-deep); margin-top: 3px; }
.price-card .btn { width: 100%; }
.price-card .btn:not(.btn-brand) { background: #fff; border-color: var(--line); }
.price-card .btn:not(.btn-brand):hover { background: var(--brand-tint); }

/* ───────── FAQ ───────── */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-sum {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 4px; cursor: pointer; list-style: none;
  font-family: var(--display); font-weight: 700; font-size: clamp(18px, 1.9vw, 22px); letter-spacing: -.015em;
}
.faq-sum::-webkit-details-marker { display: none; }
.faq-sum .sign {
  flex: none; width: 32px; height: 32px; border-radius: 50%;
  background: var(--panel); display: grid; place-items: center;
  font-size: 21px; font-family: var(--font); font-weight: 400; line-height: 1;
  transition: transform .25s, background .25s, color .25s;
}
.faq-item[open] .faq-sum .sign { transform: rotate(45deg); background: #2E2A25; color: #FFFFFF; }
.faq-body { padding: 0 46px 26px 4px; color: var(--ink-2); font-size: 16px; }

/* Height animation where the browser supports it; a plain snap where not. */
@supports (interpolate-size: allow-keywords) {
  :root { interpolate-size: allow-keywords; }
  .faq-item::details-content {
    block-size: 0; overflow: hidden;
    transition: block-size .3s ease, content-visibility .3s allow-discrete;
  }
  .faq-item[open]::details-content { block-size: auto; }
}

/* ───────── Closing CTA ───────── */
.cta {
  position: relative; border-radius: var(--r-band); background: var(--brand);
  padding: clamp(48px, 7vw, 96px) clamp(24px, 4vw, 56px); text-align: center; overflow: hidden;
}
.cta h2 { font-size: clamp(32px, 4.8vw, 56px); font-weight: 800; letter-spacing: -.03em; }
.cta p { margin: 18px auto 32px; max-width: 500px; color: var(--ink-2); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 13px; justify-content: center; }
.cta::before, .cta::after {
  content: ''; position: absolute; border-radius: 50%; background: rgba(46, 42, 37, .06);
}
.cta::before { width: 260px; height: 260px; top: -110px; left: -80px; }
.cta::after { width: 320px; height: 320px; bottom: -160px; right: -90px; }

/* ───────── Footer ───────── */
.footer { padding: clamp(56px, 7vw, 84px) 0 40px; border-top: 1px solid var(--line); margin-top: clamp(64px, 8vw, 110px); }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 40px 30px; }
.footer-tagline { color: var(--ink-2); font-size: 15px; margin-top: 14px; max-width: 30ch; }
.footer h4 { font-size: 15px; font-weight: 700; margin-bottom: 14px; }
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer ul a { font-size: 15px; color: var(--ink-2); }
.footer ul a:hover { color: var(--ink); }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between;
  margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line);
  font-size: 14px; color: var(--ink-3);
}
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ───────── Reveal ───────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .nav-inner { transition: none; }
  * { scroll-behavior: auto; }
}
