/* rizzher.com
   Velvet on the web: warm near-black, one crimson light source, film grain,
   Manrope. Editorial and asymmetric on purpose — split hero, zig-zag rows,
   hairlines instead of boxes. Motion is CSS-only and stays on transform and
   opacity. */

@font-face { font-family:Manrope; font-weight:500; font-display:swap; src:url(/assets/fonts/manrope-500Medium.ttf) format('truetype'); }
@font-face { font-family:Manrope; font-weight:700; font-display:swap; src:url(/assets/fonts/manrope-700Bold.ttf) format('truetype'); }
@font-face { font-family:Manrope; font-weight:800; font-display:swap; src:url(/assets/fonts/manrope-800ExtraBold.ttf) format('truetype'); }

:root {
  --night:#09080A; --ink:#0D0B0E; --surface:#141215;
  --crimson:#C1121F; --lit-a:#D8243A; --lit-b:#9D0C1B; --rose:#FFB3BF;
  --ivory:#FBEFF1; --muted:rgba(251,220,226,.60); --faint:rgba(251,220,226,.38);
  --line:rgba(251,220,226,.11); --line-soft:rgba(251,220,226,.07);
  --glass:rgba(255,255,255,.04);
  --mono:ui-monospace, SFMono-Regular, "SF Mono", Menlo, monospace;
  --gutter:22px; --maxw:1240px; --measure:68ch;
  --ease:cubic-bezier(.16,1,.3,1);
}

* { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body {
  background:var(--night); color:var(--ivory); font-family:Manrope, system-ui, sans-serif;
  font-weight:500; line-height:1.62; -webkit-font-smoothing:antialiased; overflow-x:hidden;
}
::selection { background:rgba(193,18,31,.4); color:var(--ivory); }

/* one light source, top-left of the hero, plus grain over everything */
.grain { position:fixed; inset:0; z-index:-1; pointer-events:none; opacity:.055;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>"); }

.wrap { width:100%; max-width:var(--maxw); margin:0 auto; padding:0 var(--gutter); }

/* ---------- type ---------- */
.display { font-weight:800; letter-spacing:-.042em; line-height:1;
  font-size:clamp(38px, 5.6vw, 72px); }
h2 { font-weight:800; letter-spacing:-.035em; line-height:1.03; font-size:clamp(28px, 4.4vw, 46px); }
h3 { font-weight:700; letter-spacing:-.02em; font-size:clamp(19px, 2.2vw, 23px); line-height:1.25; }
p { font-size:16.5px; }
.lead { color:var(--muted); font-size:clamp(16.5px, 1.5vw, 19px); line-height:1.6; }
.eyebrow { font-family:var(--mono); font-size:11px; letter-spacing:.2em; text-transform:uppercase;
  color:var(--rose); display:inline-flex; align-items:center; gap:10px; }
.eyebrow::before { content:''; width:26px; height:1px; background:currentColor; opacity:.55; }
.idx { font-family:var(--mono); font-size:11px; letter-spacing:.18em; color:var(--faint); }
.muted { color:var(--muted); } .faint { color:var(--faint); }
.hl { color:var(--rose); }

/* ---------- nav ---------- */
.nav { position:sticky; top:0; z-index:20; background:rgba(9,8,10,.72); backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line-soft); }
.nav .row { display:flex; align-items:center; justify-content:space-between; height:66px; gap:20px; }
.brand { display:inline-flex; align-items:center; gap:11px; text-decoration:none; color:var(--ivory); }
.brand img { width:28px; height:28px; border-radius:7px; }
.brand b { font-weight:800; font-size:16.5px; letter-spacing:-.02em; }
.nav-links { display:flex; align-items:center; gap:18px; }
@media (max-width:420px) { .nav .tag { display:none; } }
.nav-links a { color:var(--muted); text-decoration:none; font-size:14px; transition:color .2s var(--ease); }
.nav-links a:hover { color:var(--ivory); }
.nav .tag { font-family:var(--mono); font-size:10.5px; letter-spacing:.16em; text-transform:uppercase;
  color:var(--faint); border:1px solid var(--line); border-radius:999px; padding:6px 11px; white-space:nowrap; }

/* ---------- hero: split, text left, device bleeding right ---------- */
.hero { position:relative; overflow:hidden; padding:clamp(40px, 7vw, 86px) 0 clamp(26px, 3vw, 44px); }
.hero .grid { display:grid; grid-template-columns:1fr; gap:44px; align-items:center; }
.hero h1 { margin-top:22px; max-width:15ch; }
.hero .lead { margin-top:22px; max-width:46ch; }
.hero-cta { margin-top:34px; display:flex; align-items:center; gap:18px; flex-wrap:wrap; }
.pill { display:inline-flex; align-items:center; gap:10px; padding:15px 24px; border-radius:14px; white-space:nowrap;
  background:linear-gradient(140deg, var(--lit-a), var(--lit-b)); color:#fff; font-weight:700; font-size:15.5px;
  letter-spacing:-.01em; text-decoration:none; border:1px solid rgba(255,255,255,.12);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.18), 0 16px 34px -18px rgba(193,18,31,.9);
  transition:transform .18s var(--ease), box-shadow .18s var(--ease); }
.pill:hover { transform:translateY(-1px); box-shadow:inset 0 1px 0 rgba(255,255,255,.22), 0 22px 40px -18px rgba(193,18,31,1); }
.pill:active { transform:translateY(1px) scale(.99); }
button.pill { font-family:inherit; cursor:pointer; }   /* buttons don't inherit the page font */
.pill svg { width:18px; height:18px; flex:none; }
.hero-note { font-size:13.5px; color:var(--faint); }

.stage { position:relative; justify-self:center; width:min(320px, 78vw); }
.stage img { width:100%; height:auto; display:block; border-radius:32px; border:1px solid var(--line);
  box-shadow:0 50px 90px -40px rgba(0,0,0,.9), 0 0 0 1px rgba(255,255,255,.02);
  animation:float 11s ease-in-out infinite; }
@keyframes float { 0%,100% { transform:translateY(0) } 50% { transform:translateY(-12px) } }
/* a real coaching pill, lifted out of the app and overlapped on the device */
.chip { position:absolute; left:-22px; bottom:104px; display:inline-flex; align-items:center; gap:7px;
  padding:9px 13px; border-radius:999px; font-size:13px; font-weight:700; letter-spacing:-.01em;
  background:rgba(20,18,21,.92); border:1px solid rgba(255,179,191,.3); color:var(--rose);
  box-shadow:0 18px 30px -18px rgba(0,0,0,.9); backdrop-filter:blur(8px); }
.chip.ok { border-color:rgba(134,204,160,.32); color:rgba(134,204,160,.92); left:-30px; bottom:232px; }
.chip svg { width:13px; height:13px; }

/* ---------- section scaffolding ---------- */
section { padding:clamp(64px, 9vw, 116px) 0 0; }
.sec-head { display:grid; gap:16px; max-width:var(--measure); }
.rule { height:1px; background:var(--line-soft); margin-top:clamp(40px, 6vw, 72px); }

/* zig-zag rows — no three-card row anywhere */
.row2 { display:grid; grid-template-columns:1fr; gap:30px; align-items:start;
  padding:clamp(38px, 5vw, 64px) 0; }
.row2 + .row2 { border-top:1px solid var(--line-soft); }   /* rules between rows only */
.row2 .copy { max-width:42ch; padding-top:clamp(0px, 2vw, 26px); }
.row2 .copy p { color:var(--muted); margin-top:14px; }
.row2 h3 { margin-top:12px; }
/* the phone is cropped to a fixed window and faded out at the bottom, so every
   row is the same height and no screen ends in dead space */
.row2 figure { justify-self:center; width:min(268px, 70vw); height:clamp(330px, 52vw, 440px);
  overflow:hidden; border-radius:30px; border:1px solid var(--line); position:relative;
  box-shadow:0 44px 80px -46px rgba(0,0,0,.95);
  -webkit-mask-image:linear-gradient(180deg, #000 74%, transparent 99%);
  mask-image:linear-gradient(180deg, #000 74%, transparent 99%); }
.row2 figure img { width:100%; height:auto; display:block; transform:translateY(var(--shift, 0px)); }

/* ---------- the truth block ---------- */
.truth { border-left:2px solid rgba(193,18,31,.55); padding-left:clamp(18px, 3vw, 34px); margin-top:34px;
  max-width:50ch; }
.truth .said { font-size:clamp(20px, 2.6vw, 27px); font-weight:700; letter-spacing:-.02em; line-height:1.3; }
.truth .verdict { display:flex; align-items:center; gap:10px; margin-top:18px; color:var(--rose); font-size:14px; }
.truth .verdict span { color:var(--muted); }
.truth .after { margin-top:20px; color:var(--muted); }

/* ---------- plans: hairlines, not cards ---------- */
.plans { margin-top:34px; border-top:1px solid var(--line); }
.plan { display:grid; grid-template-columns:1fr auto; gap:8px 24px; align-items:baseline;
  padding:22px 0; border-bottom:1px solid var(--line-soft); }
.plan .name { font-weight:700; font-size:17.5px; letter-spacing:-.02em; }
.plan .price { font-family:var(--mono); font-size:15px; color:var(--ivory); white-space:nowrap; }
.plan .what { grid-column:1 / -1; color:var(--muted); font-size:15px; max-width:52ch; }
.plan.best .name::after { content:'best value'; font-family:var(--mono); font-size:10px; letter-spacing:.16em;
  text-transform:uppercase; color:var(--rose); border:1px solid rgba(255,179,191,.3); border-radius:999px;
  padding:3px 8px; margin-left:11px; vertical-align:middle; }

/* ---------- closer ---------- */
.closer { padding:clamp(80px, 11vw, 150px) 0 clamp(40px, 6vw, 80px); }
.closer .display { max-width:16ch; }
.closer p { color:var(--muted); margin-top:20px; max-width:42ch; }

/* ---------- footer ---------- */
footer { border-top:1px solid var(--line-soft); padding:40px 0 56px; margin-top:20px; }
footer .cols { display:grid; grid-template-columns:1fr; gap:26px; }
footer .links { display:flex; flex-wrap:wrap; gap:14px 24px; }
footer a, footer button.linkish { color:var(--muted); text-decoration:none; font-size:14px; background:none;
  border:0; font-family:inherit; cursor:pointer; padding:0; transition:color .2s var(--ease); }
footer a:hover, footer button.linkish:hover { color:var(--ivory); }
footer .copy { color:var(--faint); font-size:13px; }
footer .mark { display:flex; align-items:center; gap:10px; }
footer .mark img { width:24px; height:24px; border-radius:6px; opacity:.9; }

/* ---------- legal + support ---------- */
.doc { display:grid; grid-template-columns:1fr; gap:34px; padding:clamp(34px, 5vw, 62px) 0 0; }
.doc aside { display:none; }
.doc .body { max-width:var(--measure); }
.doc h1 { font-weight:800; letter-spacing:-.035em; line-height:1.04; font-size:clamp(30px, 4.6vw, 48px); }
.doc .updated { font-family:var(--mono); font-size:11.5px; letter-spacing:.14em; text-transform:uppercase;
  color:var(--faint); margin-top:16px; }
.doc h2 { font-size:clamp(19px, 2.2vw, 23px); letter-spacing:-.02em; margin:44px 0 12px; }
.doc h3 { font-size:16.5px; margin:26px 0 8px; }
.doc p, .doc li { color:var(--muted); font-size:16px; }
.doc p + p { margin-top:13px; }
.doc ul, .doc ol { margin:12px 0 0 20px; }
.doc li { margin-bottom:9px; }
.doc a { color:var(--rose); text-underline-offset:3px; }
.doc strong { color:var(--ivory); font-weight:700; }
.doc table { width:100%; border-collapse:collapse; margin-top:18px; font-size:15px;
  display:block; overflow-x:auto; white-space:normal; }
.doc table tr { display:table; width:100%; table-layout:fixed; }
.doc th, .doc td { text-align:left; padding:13px 14px 13px 0; border-bottom:1px solid var(--line-soft);
  color:var(--muted); vertical-align:top; }
.doc th { color:var(--ivory); font-weight:700; font-size:13px; letter-spacing:.02em; }
.doc code { font-family:var(--mono); font-size:13.5px; color:var(--rose); }
.doc .callout { border-left:2px solid rgba(193,18,31,.55); padding:4px 0 4px 20px; margin:26px 0; }
.doc .callout p { color:var(--ivory); }

.faq { margin-top:26px; border-top:1px solid var(--line-soft); }
.faq details { border-bottom:1px solid var(--line-soft); }
.faq summary { cursor:pointer; font-weight:700; font-size:17px; letter-spacing:-.02em; list-style:none;
  display:flex; justify-content:space-between; gap:18px; padding:20px 0;
  transition:color .2s var(--ease); }
.faq summary:hover { color:var(--rose); }
.faq summary::-webkit-details-marker { display:none; }
.faq summary::after { content:''; width:11px; height:11px; flex:none; margin-top:7px;
  background:currentColor; opacity:.5;
  clip-path:polygon(46% 0, 54% 0, 54% 46%, 100% 46%, 100% 54%, 54% 54%, 54% 100%, 46% 100%, 46% 54%, 0 54%, 0 46%, 46% 46%); }
.faq details[open] summary::after { clip-path:polygon(0 46%, 100% 46%, 100% 54%, 0 54%); }
.faq details > *:not(summary) { margin-bottom:20px; color:var(--muted); font-size:15.5px; }
.faq ol { margin-left:20px; }

/* ---------- cookie banner ---------- */
.consent { position:fixed; left:0; right:0; bottom:0; z-index:40;
  padding:18px var(--gutter) calc(18px + env(safe-area-inset-bottom));
  background:rgba(13,11,14,.94); border-top:1px solid var(--line); backdrop-filter:blur(16px);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.05); }
.consent[hidden] { display:none; }
.consent .inner { max-width:var(--maxw); margin:0 auto; display:flex; gap:20px; align-items:center; flex-wrap:wrap; }
.consent p { font-size:14.5px; color:var(--muted); flex:1 1 340px; }
.consent a { color:var(--rose); }
.consent .btns { display:flex; gap:10px; }
.consent button { font-family:inherit; font-weight:700; font-size:14px; padding:12px 20px; border-radius:11px;
  cursor:pointer; border:1px solid var(--line); background:var(--glass); color:var(--ivory); min-width:116px;
  transition:transform .16s var(--ease), border-color .16s var(--ease), background .16s var(--ease); }
.consent button:hover { border-color:rgba(251,220,226,.24); }
.consent button:active { transform:scale(.98); }
.consent button.accept { background:linear-gradient(140deg, var(--lit-a), var(--lit-b)); border-color:transparent;
  color:#fff; box-shadow:inset 0 1px 0 rgba(255,255,255,.18); }

/* ---------- entrance, once, on scroll ---------- */
.reveal { opacity:0; transform:translateY(16px); transition:opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay:var(--d, 0ms); }
.reveal.in { opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity:1; transform:none; transition:none; }
  .stage img { animation:none; }
  html { scroll-behavior:auto; }
}

/* ---------- wider screens ---------- */
@media (min-width:860px) {
  .hero .grid { grid-template-columns:1.08fr .92fr; gap:clamp(30px, 4vw, 70px); }
  .stage { justify-self:end; width:min(348px, 38vw); margin-right:clamp(-34px, -2vw, 0px); }
  .row2 { grid-template-columns:1fr 1fr; gap:clamp(36px, 6vw, 90px); }
  .row2:nth-child(even) figure { order:-1; }
  .row2 figure { width:min(276px, 28vw); height:440px; }
  /* Each row is its own grid, so an auto first column sized itself to that
     row's name and the descriptions started at three different places. A
     fixed name column lines them up. */
  .plan { grid-template-columns:240px 1fr auto; align-items:center; }
  .plan .what { grid-column:2; text-align:left; }
  footer .cols { grid-template-columns:1fr auto; align-items:center; }
  .doc { grid-template-columns:200px 1fr; gap:60px; }
  .doc aside { display:block; }
  .doc aside .sticky { position:sticky; top:96px; display:grid; gap:11px; }
  .doc aside a { color:var(--faint); font-size:13.5px; text-decoration:none; line-height:1.4;
    transition:color .2s var(--ease); }
  .doc aside a:hover { color:var(--ivory); }
  .doc aside .label { font-family:var(--mono); font-size:10.5px; letter-spacing:.18em; text-transform:uppercase;
    color:var(--faint); margin-bottom:4px; }
}

/* ==========================================================================
   Full-bleed sections: photography carries the atmosphere, type sits on top
   ========================================================================== */
.hero-full { position:relative; min-height:min(92dvh, 820px); display:flex; align-items:flex-end;
  padding:120px 0 clamp(48px, 7vw, 92px); overflow:hidden; isolation:isolate; }
.hero-bg, .closer-bg, .band-bg { position:absolute; inset:0; z-index:-2; }
.hero-bg img, .closer-bg img, .band-bg img { width:100%; height:100%; object-fit:cover; display:block; }
.hero-bg img { object-position:72% 50%; }
.hero-scrim { position:absolute; inset:0; z-index:-1;
  background:linear-gradient(100deg, rgba(9,8,10,.95) 0%, rgba(9,8,10,.84) 30%, rgba(9,8,10,.34) 58%, rgba(9,8,10,.6) 100%),
             linear-gradient(180deg, rgba(9,8,10,.9) 0%, transparent 28%, rgba(9,8,10,.88) 100%); }
.hero-inner { display:grid; grid-template-columns:1fr; gap:40px; align-items:end; width:100%; }
/* Sized so both halves of the two-line headline survive the copy column;
   at the shared .display size the second line drops a word onto a third. */
.hero-copy h1 { margin-top:20px; font-size:clamp(38px, 5vw, 64px); text-wrap:balance; }
/* Below this the forced break can't hold either half on one line, so it goes
   and the browser balances the whole sentence instead of leaving one orphan. */
@media (max-width:420px) { .hero-copy h1 br.hb { display:none; } }
.hero-copy .lead { margin-top:20px; max-width:44ch; }

/* Conversation fragments floating over the photograph. The column is wider
   than any single bubble on purpose: hers pinned left and yours pinned right
   is the only thing that makes it read as two people rather than one. */
.frags { display:flex; flex-direction:column; gap:12px; align-items:stretch;
  width:100%; max-width:440px; }
.frag { display:inline-flex; align-items:center; gap:8px; width:fit-content; max-width:min(300px, 80%);
  padding:12px 16px; border-radius:18px; font-size:14.5px; line-height:1.45;
  backdrop-filter:blur(10px); box-shadow:0 20px 40px -26px rgba(0,0,0,.95);
  animation:driftin .9s var(--ease) both; animation-delay:var(--d, 0ms); }
.frag.her { align-self:flex-start; margin-right:auto;
  background:rgba(24,21,25,.78); border:1px solid rgba(255,255,255,.08); border-bottom-left-radius:6px; }
.frag.me { align-self:flex-end; margin-left:auto;
  background:linear-gradient(140deg, rgba(216,36,58,.94), rgba(157,12,27,.94));
  border:1px solid rgba(255,255,255,.12); border-bottom-right-radius:6px; }
/* the verdict belongs to the message above it, so it sits tight under yours */
.frag.verdict { align-self:flex-end; margin:-4px 0 0 auto; background:rgba(16,14,17,.82);
  border:1px solid rgba(134,204,160,.34);
  color:rgba(134,204,160,.95); font-weight:700; font-size:13px; padding:9px 14px; border-radius:999px; }
.frag.verdict svg { width:13px; height:13px; }
@keyframes driftin { from { opacity:0; transform:translateY(14px) } to { opacity:1; transform:none } }

/* nav sits over the photograph until you scroll */
.nav.over { background:transparent; border-bottom-color:transparent; }
.nav.over.stuck { background:rgba(9,8,10,.78); border-bottom-color:var(--line-soft); }

/* ==========================================================================
   The loop: tabs and a rebuilt conversation
   ========================================================================== */
.tabs { display:flex; gap:4px; margin:34px 0 0; padding:5px; border-radius:999px; width:max-content;
  max-width:100%; background:rgba(255,255,255,.04); border:1px solid var(--line-soft); overflow-x:auto;
  scrollbar-width:none; }
.tabs::-webkit-scrollbar { display:none; }
.tabs button { font-family:inherit; font-size:14.5px; font-weight:700; letter-spacing:-.01em; color:var(--muted);
  background:none; border:0; padding:11px 20px; border-radius:999px; cursor:pointer; white-space:nowrap;
  transition:color .2s var(--ease), background .2s var(--ease); }
.tabs button:hover { color:var(--ivory); }
.tabs button.on { background:rgba(251,220,226,.1); color:var(--ivory); box-shadow:inset 0 1px 0 rgba(255,255,255,.08); }

.tabpanel { display:none; grid-template-columns:1fr; gap:clamp(26px, 4vw, 56px); padding-top:34px; }
.tabpanel.on { display:grid; animation:fadein .45s var(--ease) both; }
@keyframes fadein { from { opacity:0; transform:translateY(8px) } to { opacity:1; transform:none } }
.convo { display:flex; flex-direction:column; gap:9px; padding:clamp(20px, 3vw, 30px);
  background:linear-gradient(180deg, rgba(20,18,21,.9), rgba(13,11,14,.9));
  border:1px solid var(--line-soft); border-radius:26px;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.05), 0 40px 70px -50px rgba(0,0,0,.9); }
.convo .bub { max-width:82%; padding:11px 15px; font-size:15px; line-height:1.45; border-radius:20px; }
.convo .bub.me { align-self:flex-end; background:linear-gradient(140deg, var(--lit-a), var(--lit-b));
  border-bottom-right-radius:7px; }
.convo .bub.me.tight { margin-top:-4px; }
.convo .bub.her { align-self:flex-start; background:rgba(255,255,255,.055); border:1px solid var(--line-soft);
  border-bottom-left-radius:7px; }
.convo .verdict { align-self:flex-end; display:inline-flex; align-items:center; gap:7px; font-size:13px;
  font-weight:700; padding:7px 13px; border-radius:999px; margin:2px 0 6px; }
.convo .verdict svg { width:13px; height:13px; flex:none; }
.convo .verdict span { font-weight:500; color:var(--muted); }
.convo .verdict.bad { color:var(--rose); border:1px solid rgba(255,179,191,.3); }
.convo .verdict.good { color:rgba(134,204,160,.92); border:1px solid rgba(134,204,160,.3); }
.convo .gap { align-self:center; font-family:var(--mono); font-size:11px; letter-spacing:.16em;
  text-transform:uppercase; color:var(--faint); margin:10px 0; }
.tab-copy { align-self:center; max-width:40ch; }
.tab-copy p { color:var(--muted); margin-top:14px; }

/* ==========================================================================
   Story panels
   ========================================================================== */
.panels { display:grid; grid-template-columns:1fr; gap:16px; margin-top:34px; }
.panel { position:relative; overflow:hidden; border-radius:28px; padding:clamp(24px, 3vw, 34px);
  display:flex; flex-direction:column;
  border:1px solid rgba(255,255,255,.07); box-shadow:inset 0 1px 0 rgba(255,255,255,.06); }
.panel.crimson { background:linear-gradient(165deg, #3E0A11, #170608); }
.panel.plum { background:linear-gradient(165deg, #2A1030, #130814); }
.panel.charcoal { background:linear-gradient(165deg, #1B1A1E, #0E0D10); }
.panel .ic { width:30px; height:30px; color:var(--rose); opacity:.9; }
.panel h3 { margin:18px 0 10px; }
.panel p { color:var(--muted); font-size:15.5px; max-width:34ch; }
/* The scene is the one piece of UI each panel is about, sitting straight on
   the panel's colour. It's pinned to the bottom with a shared height so the
   three panels line up however long their copy runs. */
.scene { margin-top:auto; padding-top:30px; min-height:236px; display:flex; flex-direction:column;
  justify-content:flex-end; gap:8px; }
.scene .bub { max-width:88%; width:fit-content; padding:10px 14px; font-size:14px; line-height:1.4;
  border-radius:18px; }
.scene .bub.me { align-self:flex-end; background:linear-gradient(140deg, var(--lit-a), var(--lit-b));
  border-bottom-right-radius:6px; }
.scene .bub.her { align-self:flex-start; background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.07);
  border-bottom-left-radius:6px; }
.scene .bub.tight { margin-top:-4px; }
.scene .verdict { align-self:flex-end; display:inline-flex; align-items:center; gap:6px; font-size:12.5px;
  font-weight:700; padding:6px 12px; border-radius:999px; color:var(--rose);
  border:1px solid rgba(255,179,191,.3); }
.scene .verdict svg { width:12px; height:12px; }
.panel .scene .why { align-self:flex-end; text-align:right; font-size:12.5px; line-height:1.45;
  color:var(--faint); max-width:30ch; margin:-2px 0 6px; }

/* her, with the glow the app gives her portrait */
.scene .who { display:flex; align-items:center; gap:14px; margin-bottom:10px; }
.scene .who img { width:52px; height:52px; border-radius:50%; object-fit:cover;
  border:1.5px solid rgba(216,36,58,.85); box-shadow:0 0 0 5px rgba(193,18,31,.16), 0 0 34px 6px rgba(193,18,31,.4); }
.scene .who b { display:flex; align-items:center; gap:7px; font-size:16px; letter-spacing:-.01em; }
.scene .who span { display:block; font-size:13px; color:var(--faint); }
.scene .who .on { width:7px; height:7px; border-radius:50%; background:#34C759; }

/* the Coach tab's cards */
.scene .stat { border-radius:18px; padding:14px 16px; background:rgba(255,255,255,.035);
  border:1px solid rgba(255,255,255,.07); box-shadow:inset 0 1px 0 rgba(255,255,255,.05); }
.scene .stat-top { display:flex; align-items:baseline; justify-content:space-between; }
.scene .stat-top b { color:var(--rose); font-size:15px; }
.scene .stat-top span { font-size:22px; font-weight:800; letter-spacing:-.02em; }
.scene .dots { display:flex; align-items:center; gap:5px; margin-top:10px; }
.scene .dots i { width:7px; height:7px; border-radius:50%; }
.scene .dots i.y { background:#34C759; }
.scene .dots i.n { background:#E5484D; }
.scene .dots em { font-style:normal; font-size:12px; color:var(--faint); margin-left:8px; }
.scene .rows { display:grid; gap:9px; font-size:13.5px; }
.scene .rows div { display:flex; justify-content:space-between; }
.scene .rows b { color:var(--rose); font-weight:700; }

/* ==========================================================================
   Velvet band and closer
   ========================================================================== */
.band { position:relative; overflow:hidden; margin-top:clamp(70px, 9vw, 120px);
  padding:clamp(72px, 10vw, 132px) 0; isolation:isolate; }
.band::after { content:''; position:absolute; inset:0; z-index:-1;
  background:linear-gradient(180deg, rgba(9,8,10,.92), rgba(9,8,10,.62) 45%, rgba(9,8,10,.95)); }
.band-inner { max-width:var(--maxw); margin-inline:auto; }
.band-inner h2 { max-width:17ch; }
.band-inner p { color:rgba(251,220,226,.78); margin-top:20px; max-width:46ch; font-size:17.5px; }

.closer-full { position:relative; overflow:hidden; isolation:isolate; margin-top:clamp(70px, 9vw, 120px); scroll-margin-top:80px;
  min-height:min(78dvh, 680px); display:flex; align-items:center; padding:clamp(70px, 9vw, 110px) 0; }
.closer-scrim { position:absolute; inset:0; z-index:-1;
  background:linear-gradient(95deg, rgba(9,8,10,.95) 0%, rgba(9,8,10,.82) 45%, rgba(9,8,10,.5) 100%); }
.closer-inner { max-width:var(--maxw); margin-inline:auto; }
.closer-inner h2 { max-width:16ch; }
.closer-inner p { color:rgba(251,220,226,.76); margin-top:20px; max-width:46ch; }
.pill.ghost { background:rgba(255,255,255,.05); border:1px solid var(--line); box-shadow:none; color:var(--ivory); }
.hero-note.link { color:var(--rose); text-decoration:none; }

/* ==========================================================================
   Footer
   ========================================================================== */
footer { border-top:1px solid var(--line-soft); margin-top:0; padding:clamp(44px, 6vw, 72px) 0 40px; }
.foot { display:grid; grid-template-columns:1fr; gap:32px; }
.foot-brand p { margin-top:14px; font-size:14px; max-width:30ch; }
.foot-col { display:grid; gap:11px; align-content:start; justify-items:start; }
.foot-h { font-family:var(--mono); font-size:10.5px; letter-spacing:.18em; text-transform:uppercase;
  color:var(--faint); margin-bottom:2px; }
.foot-base { display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap;
  margin-top:clamp(34px, 5vw, 56px); padding-top:22px; border-top:1px solid var(--line-soft); }

@media (min-width:860px) {
  .hero-full { min-height:min(94dvh, 900px); }
  .hero-inner { grid-template-columns:1.15fr .85fr; gap:clamp(40px, 6vw, 90px); }
  /* the whole column moves right, the bubbles keep their own sides inside it */
  .frags { margin-left:auto; padding-bottom:16px; }
  .tabpanel.on { grid-template-columns:1.05fr .95fr; }
  .panels { grid-template-columns:repeat(3, 1fr); gap:18px; }
  .foot { grid-template-columns:1.6fr 1fr 1fr 1fr; gap:40px; }
}
