/* ReviewCrew — landing styles */

:root {
  --ink: #0A0F1C;
  --ink-2: #0F1627;
  --ink-3: #182238;
  --ink-line: rgba(255, 255, 255, 0.09);
  --paper: #FBFAF6;
  --cream: #F3EFE6;
  --line: #E4DFD3;
  --text: #0A0F1C;
  --muted: #5A6272;
  --on-ink: #F5F3EE;
  --on-ink-muted: rgba(245, 243, 238, 0.66);
  --gold: #FFB020;
  --gold-hi: #FFD66B;
  --gold-deep: #E08600;
  --green: #12B981;
  --red: #EF4444;
  --radius: 18px;
  --radius-sm: 12px;
  --display: "Bricolage Grotesque", "Inter", system-ui, sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
  --body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img, svg { display: block; }
a { color: inherit; }
button, input, select { font: inherit; }
ul, ol { list-style: none; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.skip {
  position: absolute; left: 16px; top: -60px; z-index: 100;
  background: var(--gold); color: var(--ink); padding: 10px 16px; border-radius: 8px; font-weight: 600;
}
.skip:focus { top: 12px; }

.wrap { width: min(1200px, 100% - 40px); margin-inline: auto; }
.center { text-align: center; }
.serif { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: -0.01em; }
.ico { width: 1.1em; height: 1.1em; flex: none; }

/* ---------- Buttons ---------- */
.btn {
  --pad: 14px 22px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: var(--pad); border-radius: 999px; border: 1.5px solid transparent;
  font-weight: 600; font-size: 1rem; text-decoration: none; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn .ico { transition: transform .25s var(--ease); }
.btn:hover .ico { transform: translateX(3px); }
.btn:focus-visible { outline: 3px solid var(--gold-hi); outline-offset: 3px; }
.btn--sm { --pad: 9px 16px; font-size: .9rem; }
.btn--lg { --pad: 17px 28px; font-size: 1.05rem; }
.btn--block { width: 100%; }
.btn--gold {
  background: linear-gradient(135deg, var(--gold-hi), var(--gold) 45%, var(--gold-deep));
  color: var(--ink);
  box-shadow: 0 10px 30px -8px rgba(255, 176, 32, .55), inset 0 1px 0 rgba(255,255,255,.5);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -10px rgba(255, 176, 32, .7), inset 0 1px 0 rgba(255,255,255,.5); }
.btn--ghost { color: var(--on-ink); border-color: rgba(255,255,255,.22); }
.btn--ghost:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.4); }
.btn--outline { color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--on-ink); }

/* ---------- Type ---------- */
.kicker {
  font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 16px;
}
.kicker--gold { color: var(--gold); }
.kicker--center { text-align: center; }
.h2 {
  font-family: var(--display); font-weight: 750;
  font-size: clamp(2.1rem, 4.6vw, 3.6rem); line-height: 1.04; letter-spacing: -0.035em;
  margin-bottom: 20px; text-wrap: balance;
}
.h2 .serif { font-size: 1.08em; }
.h2--center { text-align: center; margin-inline: auto; max-width: 16ch; }
.h2--light { color: var(--on-ink); }
.muted { color: var(--muted); font-size: 1.08rem; max-width: 52ch; }
.muted.center { margin-inline: auto; }
.fine { font-size: .8rem; color: var(--muted); margin-top: 14px; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 60;
  transition: transform .45s var(--ease), background .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.nav.is-solid { background: rgba(10, 15, 28, .78); backdrop-filter: blur(14px) saturate(140%); -webkit-backdrop-filter: blur(14px) saturate(140%); border-color: var(--ink-line); }
.nav.is-hidden { transform: translateY(-100%); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 72px; }
.nav__links { display: flex; gap: 32px; }
.nav__links a { color: var(--on-ink-muted); text-decoration: none; font-size: .95rem; font-weight: 500; transition: color .2s; }
.nav__links a:hover { color: var(--on-ink); }

.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--on-ink); }
.brand__mark { width: 30px; height: 30px; filter: drop-shadow(0 4px 12px rgba(255, 176, 32, .35)); }
.brand__word { font-family: var(--display); font-weight: 800; font-size: 1.3rem; letter-spacing: -0.03em; }
.brand__word em { font-style: normal; color: var(--gold); }

.progress { position: fixed; inset: 0 0 auto; height: 2px; z-index: 70; transform-origin: 0 50%; transform: scaleX(0); background: linear-gradient(90deg, var(--gold-hi), var(--gold-deep)); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; color: var(--on-ink);
  min-height: 100svh; padding: 132px 0 96px; display: flex; align-items: center;
  background: radial-gradient(120% 80% at 80% 0%, #17223A 0%, var(--ink) 55%);
}
.hero__glow {
  position: absolute; width: 900px; height: 900px; right: -220px; top: -300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 176, 32, .20), rgba(255, 176, 32, 0) 62%);
  pointer-events: none;
}
.hero__grid-bg {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: linear-gradient(var(--ink-line) 1px, transparent 1px), linear-gradient(90deg, var(--ink-line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
}
.hero__inner { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: 64px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .82rem; font-weight: 600; color: var(--on-ink-muted);
  padding: 8px 14px; border: 1px solid var(--ink-line); border-radius: 999px; background: rgba(255,255,255,.03);
}
.pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(18,185,129,.6); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(18,185,129,0); } 100% { box-shadow: 0 0 0 0 rgba(18,185,129,0); } }
.hero__title {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(3rem, 7.4vw, 6.2rem); line-height: .96; letter-spacing: -0.045em;
  margin: 28px 0 26px;
}
.hero__title .serif { font-size: 1.1em; letter-spacing: -0.02em; color: var(--gold); text-shadow: 0 10px 50px rgba(255, 176, 32, .35); }
.js:not(.rc-fallback) .hero__title,
.js:not(.rc-fallback) [data-hero-in],
.js:not(.rc-fallback) [data-hero-device] { visibility: hidden; }
.hero__lead { font-size: 1.14rem; color: var(--on-ink-muted); max-width: 56ch; margin-bottom: 34px; }
.hero__lead strong { color: var(--on-ink); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 10px 26px; font-size: .9rem; color: var(--on-ink-muted); }
.hero__trust li { display: inline-flex; align-items: center; gap: 8px; }
.hero__trust .ico { color: var(--green); }

.hero__device { position: relative; justify-self: center; width: min(360px, 100%); }
.hero__note { text-align: center; font-size: .75rem; color: rgba(245,243,238,.4); margin-top: 18px; }
.phone {
  position: relative; border-radius: 44px; padding: 12px;
  background: linear-gradient(160deg, #2A3550, #0E1424 60%);
  box-shadow: 0 50px 100px -30px rgba(0,0,0,.8), 0 0 0 1px rgba(255,255,255,.08), inset 0 1px 0 rgba(255,255,255,.12);
}
.phone__notch { position: absolute; top: 20px; left: 50%; translate: -50% 0; width: 90px; height: 24px; border-radius: 20px; background: #05080F; z-index: 3; }
.phone__screen { border-radius: 34px; overflow: hidden; background: #fff; color: #1F2937; padding: 54px 0 14px; }
.search {
  display: flex; align-items: center; gap: 10px; margin: 0 14px 12px;
  padding: 11px 16px; border-radius: 999px; background: #F1F3F6; font-size: .9rem; color: #374151;
}
.search__ico { width: 16px; height: 16px; color: #6B7280; }
.map { position: relative; height: 120px; margin-bottom: 8px; }
.map__svg { width: 100%; height: 100%; }
.map__pin {
  position: absolute; left: var(--x); top: var(--y); width: 14px; height: 14px; translate: -50% -100%;
  border-radius: 50% 50% 50% 0; rotate: -45deg; background: #EA4335; box-shadow: 0 2px 4px rgba(0,0,0,.25);
}
.map__pin--you { width: 34px; height: 34px; rotate: 0deg; border-radius: 0; background: none; box-shadow: none; filter: drop-shadow(0 6px 10px rgba(224,134,0,.5)); }
.map__pin--you svg { width: 100%; height: 100%; }
.pack { --rowh: 66px; position: relative; height: calc(var(--rowh) * 4); margin: 0 10px; }
.pack__item {
  --r: 0;
  position: absolute; left: 0; right: 0; top: calc(var(--r) * var(--rowh)); height: calc(var(--rowh) - 6px);
  padding: 9px 12px; border-radius: 12px; background: #fff;
  display: grid; align-content: center; gap: 1px; font-size: .78rem; line-height: 1.3;
}
.pack__item[data-rank="0"] { --r: 0; }
.pack__item[data-rank="1"] { --r: 1; }
.pack__item[data-rank="2"] { --r: 2; }
.pack__item[data-rank="3"] { --r: 3; }
.pack__item b { font-size: .88rem; color: #111827; display: flex; align-items: center; gap: 6px; }
.pack__meta { color: #4B5563; }
.pack__meta .s { color: #F4B400; letter-spacing: 1px; }
.pack__sub { color: #6B7280; }
.pack__item--you { background: #FFF8E8; box-shadow: 0 0 0 1.5px var(--gold), 0 10px 24px -8px rgba(224,134,0,.45); z-index: 2; }
.you-tag { font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; background: var(--ink); color: var(--gold); padding: 2px 6px; border-radius: 5px; }

.toast {
  position: absolute; display: flex; align-items: center; gap: 10px; z-index: 4;
  padding: 10px 14px 10px 10px; border-radius: 14px; min-width: 200px;
  background: rgba(20, 28, 46, .86); border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 20px 40px -12px rgba(0,0,0,.6); color: var(--on-ink);
}
.toast b { display: block; font-size: .85rem; }
.toast small { display: block; font-size: .74rem; color: var(--on-ink-muted); }
.toast--a { left: -70px; top: 28%; }
.toast--b { right: -60px; bottom: 16%; }
.toast__ico { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; flex: none; }
.toast__ico svg { width: 18px; height: 18px; }
.toast__ico--gold { background: rgba(255,176,32,.16); fill: var(--gold); }
.toast__ico--green { background: rgba(18,185,129,.16); color: var(--green); }

.scroll-cue { position: absolute; left: 50%; bottom: 26px; translate: -50% 0; width: 24px; height: 38px; border: 1.5px solid rgba(255,255,255,.25); border-radius: 14px; }
.scroll-cue span { position: absolute; left: 50%; top: 8px; width: 3px; height: 8px; margin-left: -1.5px; border-radius: 2px; background: var(--gold); animation: cue 1.8s var(--ease) infinite; }
@keyframes cue { 0% { opacity: 0; transform: translateY(0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }

/* ---------- Marquee ---------- */
.marquee { background: var(--gold); color: var(--ink); overflow: hidden; padding: 18px 0; border-block: 1px solid var(--gold-deep); }
.marquee__track { display: flex; align-items: center; gap: 28px; width: max-content; animation: marquee 32s linear infinite; }
.marquee span { font-family: var(--display); font-weight: 800; font-size: 1.5rem; letter-spacing: -0.02em; text-transform: uppercase; }
.marquee i { font-style: normal; font-size: 1.1rem; opacity: .6; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Ledger ---------- */
.ledger { background: var(--paper); padding: 140px 0 110px; }
.ledger__inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; align-items: start; }
.ledger__side { position: sticky; top: 120px; }
.meter {
  margin-top: 36px; padding: 26px 28px; border-radius: var(--radius);
  background: var(--ink); color: var(--on-ink);
  display: grid; gap: 4px; box-shadow: 0 30px 60px -30px rgba(10,15,28,.55);
}
.meter__label { font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: var(--on-ink-muted); }
.meter__value { font-family: var(--display); font-weight: 800; font-size: clamp(3rem, 6vw, 4.6rem); line-height: 1; letter-spacing: -0.04em; color: #FF8A7A; font-variant-numeric: tabular-nums; }
.meter__jobs { font-size: .95rem; color: var(--on-ink-muted); }
.meter__jobs span { color: var(--green); font-weight: 700; }
.ledger__rows { display: grid; gap: 14px; padding-top: 40px; }
.row {
  display: grid; grid-template-columns: 56px 1fr auto auto; align-items: center; gap: 18px;
  padding: 22px 24px; border-radius: var(--radius-sm); background: #fff; border: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(10,15,28,.03);
}
.row__day { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.row__what { font-weight: 550; }
.row__cost { font-family: var(--display); font-weight: 700; font-size: 1.2rem; font-variant-numeric: tabular-nums; }
.row__tag { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: 5px 10px; border-radius: 999px; }
.row__tag--bad { background: #FDECEC; color: #C62828; }
.row__tag--good { background: #E3F8EF; color: #0B7A55; }
.row:not(.row--good) .row__what { text-decoration: line-through; text-decoration-color: rgba(198,40,40,.55); text-decoration-thickness: 2px; }
.row--good { border-color: rgba(18,185,129,.45); box-shadow: 0 10px 30px -18px rgba(18,185,129,.7); }
.ledger__punch {
  font-family: var(--display); font-weight: 750; font-size: clamp(1.8rem, 3.6vw, 2.9rem);
  letter-spacing: -0.03em; line-height: 1.1; margin-top: 96px; max-width: 22ch;
}
.ledger__punch b { color: var(--red); }

/* ---------- Silent customers ---------- */
.silent { background: var(--ink); color: var(--on-ink); padding: 140px 0; }
.silent__stars { display: flex; justify-content: center; gap: 10px; margin-bottom: 36px; }
.silent__stars svg { width: 44px; height: 44px; fill: #2A3450; }
.cards3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 64px; }
.pcard {
  position: relative; padding: 34px 30px 36px; border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
  border: 1px solid var(--ink-line); overflow: hidden;
}
.pcard::after { content: ""; position: absolute; inset: 0 0 auto; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,176,32,.6), transparent); }
.pcard__num { font-family: var(--display); font-weight: 800; font-size: .9rem; color: var(--gold); }
.pcard h3 { font-family: var(--display); font-size: 1.45rem; letter-spacing: -0.02em; line-height: 1.15; margin: 18px 0 12px; }
.pcard p { color: var(--on-ink-muted); font-size: 1rem; }

/* ---------- Compound ---------- */
.compound { background: var(--cream); padding: 140px 0; }
.compound__inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: center; }
.compound em { font-style: italic; color: var(--text); }
.legend { display: grid; gap: 10px; margin-top: 28px; font-weight: 550; }
.legend li { display: flex; align-items: center; gap: 12px; }
.legend__sw { width: 28px; height: 4px; border-radius: 4px; }
.legend__sw--red { background: #E0625A; }
.legend__sw--gold { background: var(--gold-deep); }
.chart { background: #fff; border-radius: var(--radius); border: 1px solid var(--line); padding: 24px 20px 16px; box-shadow: 0 30px 60px -40px rgba(10,15,28,.4); }
.chart svg { width: 100%; height: auto; overflow: visible; }
.chart__grid line { stroke: #EEE9DE; stroke-width: 1; }
.chart__saw { fill: none; stroke: #E0625A; stroke-width: 2.5; stroke-linejoin: round; opacity: .85; }
.chart__curve { fill: none; stroke: var(--gold-deep); stroke-width: 5; stroke-linecap: round; }
.chart__dot { fill: var(--gold); stroke: #fff; stroke-width: 3; }
.chart__labels text { font-size: 12px; fill: var(--muted); font-family: var(--body); }
.chart figcaption { font-size: .78rem; color: var(--muted); margin-top: 6px; text-align: right; }

/* ---------- How (horizontal) ---------- */
.how { background: var(--ink); color: var(--on-ink); }
.how__pin { padding: 120px 0 110px; overflow: hidden; }
.how__head { margin-bottom: 56px; }
.how__progress { height: 3px; border-radius: 3px; background: var(--ink-line); max-width: 360px; overflow: hidden; }
.how__progress span { display: block; height: 100%; width: 100%; background: var(--gold); transform-origin: 0 50%; transform: scaleX(0); }
.how__track {
  display: flex; gap: 24px; width: max-content;
  padding-left: max(20px, calc((100vw - 1200px) / 2));
  padding-right: 20px;
}
.slide {
  position: relative; width: min(420px, 82vw); flex: none; min-height: 470px;
  padding: 34px 32px; border-radius: 24px; display: flex; flex-direction: column;
  background: linear-gradient(170deg, var(--ink-3), var(--ink-2));
  border: 1px solid var(--ink-line);
}
.slide__n { font-family: var(--display); font-weight: 800; font-size: 4.4rem; line-height: 1; letter-spacing: -0.05em; color: transparent; -webkit-text-stroke: 1.5px rgba(255,176,32,.55); }
.slide h3 { font-family: var(--display); font-size: 1.6rem; letter-spacing: -0.025em; margin: 18px 0 10px; }
.slide p { color: var(--on-ink-muted); font-size: 1rem; }
.slide--gold { background: linear-gradient(160deg, #FFC24A, var(--gold) 50%, var(--gold-deep)); color: var(--ink); border-color: transparent; }
.slide--gold .slide__n { -webkit-text-stroke-color: rgba(10,15,28,.5); }
.slide--gold p { color: rgba(10,15,28,.75); }

.mock { margin-top: auto; padding: 16px 18px; border-radius: 14px; background: #fff; color: #1F2937; font-size: .85rem; display: grid; gap: 8px; box-shadow: 0 20px 40px -20px rgba(0,0,0,.6); }
.mock__row { display: flex; align-items: center; gap: 10px; }
.mock__row small { margin-left: auto; color: #9CA3AF; font-size: .75rem; }
.mock__line { color: #374151; line-height: 1.45; }
.mock__line--dim { color: #9CA3AF; }
.mock__btn { justify-self: start; background: var(--ink); color: #fff; font-weight: 600; font-size: .8rem; padding: 8px 14px; border-radius: 999px; }
.mock__btn--ghost { background: #F1F3F6; color: #374151; }
.mock__actions { display: flex; gap: 8px; justify-content: flex-end; }
.dot { width: 9px; height: 9px; border-radius: 50%; }
.dot--green { background: var(--green); }
.avatar { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; font-size: .8rem; background: #DBEAFE; color: #1E40AF; flex: none; }
.avatar svg { width: 18px; height: 18px; }
.avatar--gold { background: var(--ink); }
.avatar--red { background: #FEE2E2; color: #B91C1C; }
.stars5 { color: #F4B400; letter-spacing: 1px; margin-left: auto; }
.rankbar { display: grid; grid-template-columns: 76px 1fr 28px; align-items: center; gap: 10px; font-weight: 600; }
.rankbar i { height: 8px; border-radius: 8px; background: var(--gold); width: var(--w); }
.rankbar b { text-align: right; }
.rankbar--dim { color: #9CA3AF; }
.rankbar--dim i { background: #E5E7EB; }

/* ---------- Demo ---------- */
.demo { background: var(--paper); padding: 140px 0; }
.demo__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.ticks { display: grid; gap: 12px; margin-top: 28px; font-weight: 550; }
.ticks li { display: flex; align-items: center; gap: 12px; }
.ticks .ico { color: var(--green); }
.convo {
  padding: 30px; border-radius: 28px; display: grid; gap: 14px;
  background: var(--ink); box-shadow: 0 50px 80px -40px rgba(10,15,28,.6);
  background-image: radial-gradient(80% 60% at 100% 0%, rgba(255,176,32,.12), transparent 60%);
}
.bubble { padding: 18px 20px; border-radius: 18px; background: #fff; font-size: .95rem; }
.bubble__head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-size: .9rem; }
.bubble__head small { margin-left: auto; color: #9CA3AF; font-size: .75rem; }
.stars1 { color: #F4B400; letter-spacing: 1px; }
.stars1 i { font-style: normal; color: #D1D5DB; }
.bubble--reply { background: #FFF8E8; border: 1.5px solid rgba(255,176,32,.6); }
.bubble--reply p { color: #1F2937; }
.caret { display: inline-block; width: 2px; height: 1.05em; margin-left: 2px; background: var(--gold-deep); vertical-align: -3px; animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.flag { display: inline-flex; align-items: center; gap: 10px; justify-self: start; padding: 8px 14px; border-radius: 999px; font-size: .8rem; font-weight: 600; color: #FCA5A5; background: rgba(239,68,68,.12); border: 1px solid rgba(239,68,68,.35); }
.flag__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); animation: pulse-red 1.6s infinite; }
@keyframes pulse-red { 0% { box-shadow: 0 0 0 0 rgba(239,68,68,.6); } 70%, 100% { box-shadow: 0 0 0 8px rgba(239,68,68,0); } }
.approve { display: flex; gap: 10px; justify-content: flex-end; }
.approve__btn, .approve__alt { padding: 11px 18px; border-radius: 999px; font-weight: 650; font-size: .9rem; }
.approve__btn { background: var(--gold); color: var(--ink); box-shadow: 0 0 0 0 rgba(255,176,32,.6); animation: pulse-gold 2s infinite; }
.approve__alt { color: var(--on-ink-muted); border: 1px solid var(--ink-line); }
@keyframes pulse-gold { 0% { box-shadow: 0 0 0 0 rgba(255,176,32,.55); } 70%, 100% { box-shadow: 0 0 0 12px rgba(255,176,32,0); } }

/* ---------- Versus ---------- */
.versus { background: var(--cream); padding: 140px 0; }
.versus__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 56px; }
.vcol { padding: 40px 38px; border-radius: 24px; }
.vcol h3 { font-family: var(--display); font-size: 1.6rem; letter-spacing: -0.025em; margin-bottom: 22px; }
.vcol li { position: relative; padding: 14px 0 14px 34px; border-top: 1px solid; font-size: 1.02rem; }
.vcol li::before { position: absolute; left: 0; top: 13px; font-weight: 800; }
.vcol--rent { background: #fff; border: 1px solid var(--line); }
.vcol--rent li { border-color: var(--line); color: var(--muted); }
.vcol--rent li::before { content: "✕"; color: #E0625A; }
.vcol--own { background: var(--ink); color: var(--on-ink); }
.vcol--own h3 { color: var(--gold); }
.vcol--own li { border-color: var(--ink-line); }
.vcol--own li::before { content: "✓"; color: var(--green); }

/* ---------- Pricing ---------- */
.pricing { background: var(--paper); padding: 140px 0; }
.plans { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 940px; margin: 56px auto 0; align-items: stretch; }
.plan { position: relative; padding: 42px 38px; border-radius: 26px; background: #fff; border: 1px solid var(--line); display: flex; flex-direction: column; }
.plan h3 { font-family: var(--display); font-size: 1.7rem; letter-spacing: -0.025em; }
.plan__for { color: var(--muted); margin: 6px 0 22px; font-size: .98rem; }
.plan__price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 26px; }
.plan__price b { font-family: var(--display); font-size: 3.6rem; line-height: 1; letter-spacing: -0.045em; }
.plan__price span { color: var(--muted); font-weight: 500; }
.plan__list { display: grid; gap: 12px; margin-bottom: 34px; }
.plan__list li { display: flex; gap: 12px; align-items: flex-start; font-size: .98rem; }
.plan__list .ico { color: var(--green); margin-top: 4px; }
.plan .btn { margin-top: auto; }
.plan--pro { background: var(--ink); color: var(--on-ink); border-color: transparent; box-shadow: 0 50px 90px -40px rgba(224,134,0,.55), 0 0 0 1.5px rgba(255,176,32,.5); }
.plan--pro .plan__for, .plan--pro .plan__price span { color: var(--on-ink-muted); }
.plan__badge { position: absolute; top: -14px; left: 38px; background: var(--gold); color: var(--ink); font-size: .74rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; padding: 6px 12px; border-radius: 999px; }
.plans__note { text-align: center; color: var(--muted); font-size: .92rem; margin: 32px auto 0; max-width: 64ch; }

/* ---------- Pledge ---------- */
.pledge { background: var(--gold); color: var(--ink); padding: 130px 0; text-align: center; position: relative; overflow: hidden; }
.pledge::before { content: "★"; position: absolute; font-size: 60vw; line-height: 1; left: 50%; top: 50%; translate: -50% -52%; color: rgba(255,255,255,.14); pointer-events: none; }
.pledge__inner { position: relative; max-width: 860px; }
.pledge__mark { width: 76px; height: 76px; padding: 16px; margin: 0 auto 30px; border-radius: 50%; background: var(--ink); box-shadow: 0 20px 40px -16px rgba(10,15,28,.6); }
.pledge__title { font-family: var(--display); font-weight: 800; font-size: clamp(2.4rem, 6vw, 4.8rem); letter-spacing: -0.045em; line-height: 1; margin-bottom: 26px; }
.pledge p { font-size: 1.15rem; max-width: 60ch; margin-inline: auto; color: rgba(10,15,28,.8); }

/* ---------- FAQ ---------- */
.faq { background: var(--paper); padding: 140px 0; }
.faq__inner { display: grid; grid-template-columns: .8fr 1.2fr; gap: 64px; align-items: start; }
.faq__list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 24px 44px 24px 0; position: relative;
  font-family: var(--display); font-weight: 650; font-size: 1.2rem; letter-spacing: -0.015em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 6px; top: 50%; width: 14px; height: 14px; translate: 0 -50%;
  background: linear-gradient(currentColor, currentColor) center/100% 2px no-repeat, linear-gradient(currentColor, currentColor) center/2px 100% no-repeat;
  transition: transform .3s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 4px; border-radius: 4px; }
.faq details p { padding: 0 44px 26px 0; color: var(--muted); }

/* ---------- Audit form ---------- */
.audit { position: relative; overflow: hidden; background: var(--ink); color: var(--on-ink); padding: 140px 0; }
.audit__glow { position: absolute; left: -200px; bottom: -400px; width: 900px; height: 900px; border-radius: 50%; background: radial-gradient(circle, rgba(255,176,32,.16), transparent 62%); pointer-events: none; }
.audit__inner { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.audit__lead { color: var(--on-ink-muted); font-size: 1.1rem; max-width: 48ch; }
.score { margin-top: 40px; border-radius: var(--radius); border: 1px solid var(--ink-line); background: rgba(255,255,255,.03); overflow: hidden; }
.score__head, .score__row { display: grid; grid-template-columns: 1fr 70px 70px; gap: 12px; padding: 14px 22px; align-items: center; }
.score__head { grid-template-columns: 1fr auto; font-size: .74rem; text-transform: uppercase; letter-spacing: .12em; color: var(--on-ink-muted); border-bottom: 1px solid var(--ink-line); }
.score__row + .score__row { border-top: 1px solid var(--ink-line); }
.score__row span { color: var(--on-ink-muted); }
.score__row b { font-family: var(--display); font-size: 1.2rem; text-align: right; font-variant-numeric: tabular-nums; }
.score__row b.bad { color: #FF8A7A; }

.formcard { background: #fff; color: var(--text); border-radius: 26px; padding: 40px 36px; box-shadow: 0 60px 100px -40px rgba(0,0,0,.8); }
.formcard h3 { font-family: var(--display); font-size: 1.6rem; letter-spacing: -0.025em; }
.formcard__sub { color: var(--muted); margin: 4px 0 26px; font-size: .95rem; }
.fgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 22px; }
.field--full { grid-column: 1 / -1; }
.field label { display: block; font-size: .8rem; font-weight: 650; margin-bottom: 7px; color: #334155; }
.field input, .field select {
  width: 100%; padding: 13px 14px; border-radius: 12px; border: 1.5px solid var(--line); background: var(--paper);
  font-size: 1rem; color: var(--text); transition: border-color .2s, box-shadow .2s, background .2s;
  appearance: none; -webkit-appearance: none;
}
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6' fill='none' stroke='%235A6272' stroke-width='2'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 18px; padding-right: 40px; }
.field input:focus, .field select:focus { outline: none; border-color: var(--gold-deep); background: #fff; box-shadow: 0 0 0 4px rgba(255,176,32,.2); }
.field input[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: var(--red); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.formcard__err { color: #C62828; font-size: .9rem; margin-top: 12px; min-height: 1.2em; }
.formcard__fine { font-size: .78rem; color: var(--muted); text-align: center; margin-top: 6px; }
.formcard__fine a { color: var(--text); }
.btn[disabled] { opacity: .7; cursor: progress; }
.formcard__done { text-align: center; padding: 30px 6px; }
.formcard__done p { color: var(--muted); margin-top: 10px; }
.done__ico { width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 20px; background: #E3F8EF; color: var(--green); }
.done__ico svg { width: 30px; height: 30px; }

/* ---------- Footer ---------- */
.foot { background: #060A13; color: var(--on-ink-muted); padding: 56px 0; font-size: .9rem; border-top: 1px solid var(--ink-line); }
.foot__inner { display: grid; grid-template-columns: auto 1fr auto; gap: 16px 40px; align-items: center; }
.foot nav { display: flex; gap: 24px; }
.foot nav a { text-decoration: none; }
.foot nav a:hover { color: var(--on-ink); }
.foot__copy { grid-column: 1 / -1; font-size: .8rem; opacity: .7; }

@media (min-width: 901px) {
  .how__pin { height: 100vh; min-height: 640px; display: flex; flex-direction: column; justify-content: center; padding: 0; }
  .how__head { margin-bottom: clamp(28px, 5vh, 56px); }
  .slide { min-height: clamp(400px, 56vh, 480px); }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .toast--a { left: -20px; }
  .toast--b { right: -20px; }
}
@media (max-width: 900px) {
  body { font-size: 16px; }
  .nav__links { display: none; }
  .nav__inner { height: 64px; }
  .hero { padding: 104px 0 80px; min-height: auto; }
  .hero__inner, .ledger__inner, .compound__inner, .demo__inner, .faq__inner, .audit__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__device { width: min(330px, 88%); }
  .toast--a { left: -16px; top: 18%; }
  .toast--b { right: -16px; }
  .scroll-cue { display: none; }
  .ledger, .silent, .compound, .demo, .versus, .pricing, .faq, .audit { padding: 96px 0; }
  .ledger__side { position: static; }
  .ledger__rows { padding-top: 0; }
  .row { grid-template-columns: 1fr auto; gap: 6px 14px; padding: 18px; }
  .row__day { grid-column: 1 / -1; }
  .row__tag { grid-column: 2; grid-row: 3; justify-self: end; }
  .row__cost { grid-column: 2; grid-row: 2; }
  .ledger__punch { margin-top: 64px; }
  .cards3, .versus__grid, .plans { grid-template-columns: 1fr; }
  .how__pin { padding: 96px 0; }
  .how__track {
    width: auto; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 12px;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
  }
  .how__track::-webkit-scrollbar { display: none; }
  .slide { scroll-snap-align: center; min-height: 440px; }
  .foot__inner { grid-template-columns: 1fr; }
  .foot nav { flex-wrap: wrap; }
}
@media (max-width: 560px) {
  .hero__cta .btn { width: 100%; }
  .fgrid { grid-template-columns: 1fr; }
  .formcard { padding: 30px 22px; }
  .convo { padding: 18px; border-radius: 22px; }
  .vcol, .plan { padding: 32px 24px; }
  .plan__badge { left: 24px; }
  .marquee span { font-size: 1.2rem; }
  .silent__stars svg { width: 34px; height: 34px; }
}

/* ---------- Motion safety ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .marquee__track { animation: none; }
}
