/* Creator page, story version: layout and the stage. Colors, type and the
   character of each version come from creator-volt.css / creator-daybreak.css,
   which only set the tokens below and a few signature rules. */

*,
*::before,
*::after { box-sizing: border-box; }

:root {
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --wrap: 1200px;
  --gutter: 20px;
  --ch-ig: linear-gradient(135deg, #FCAF45, #E4405F 55%, #833AB4);
  --ch-fb: #1877F2;
  --ch-wa: #25D366;
  --ch-tt: #111111;
}

html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, p { margin: 0; }
ol, ul { margin: 0; padding: 0; list-style: none; }
svg { width: 1em; height: 1em; }

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

.skip { position: absolute; left: -9999px; }
.skip:focus { left: 16px; top: 16px; z-index: 100; background: var(--paper); padding: 8px 14px; border-radius: 8px; }

:focus-visible { outline: 3px solid var(--focus, var(--accent)); outline-offset: 3px; border-radius: 6px; }

.kicker {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--kicker, var(--accent-strong));
  margin-bottom: 18px;
}
.h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5.2vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  max-width: 18ch;
}
.lead { font-size: clamp(17px, 1.6vw, 20px); color: var(--muted); max-width: 60ch; margin-top: 20px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 0 26px;
  border: 0; border-radius: var(--r-btn);
  font: 700 16px/1 var(--font-body);
  text-decoration: none; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.98); }
.btn-primary { background: var(--btn-bg); color: var(--btn-ink); box-shadow: var(--btn-shadow, none); }
.btn-ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 2px var(--ink); }
.btn-dark { background: var(--dark-ink); color: var(--dark); }
.btn-sm { min-height: 40px; padding: 0 16px; font-size: 14px; }
.btn-wide { width: 100%; }
.btn[disabled] { opacity: .6; cursor: wait; }

/* Nav */
.nav { position: fixed; top: 12px; left: 0; right: 0; z-index: 50; padding: 0 12px; }
.nav-pill {
  max-width: var(--wrap); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 8px 8px 8px 20px;
  border-radius: 999px;
  background: var(--nav-bg); color: var(--nav-ink);
  box-shadow: var(--nav-shadow, none);
}
.logo { font-weight: 800; text-decoration: none; white-space: nowrap; font-size: 16px; }
.logo em { font-style: normal; font-weight: 500; opacity: .7; }
.nav-links { display: none; gap: 26px; font-size: 15px; font-weight: 600; }
.nav-links a { text-decoration: none; opacity: .85; }
.nav-links a:hover { opacity: 1; }
.nav-end { display: flex; align-items: center; gap: 8px; }
.lang { display: flex; gap: 2px; }
.lang-btn {
  border: 0; background: transparent; color: inherit; cursor: pointer;
  font: 700 12px/1 var(--font-body); padding: 8px 7px; border-radius: 999px; opacity: .55;
}
.lang-btn.active { opacity: 1; box-shadow: inset 0 0 0 1.5px currentColor; }
.nav-toggle { width: 40px; height: 40px; border: 0; border-radius: 999px; background: transparent; color: inherit; cursor: pointer; position: relative; }
.nav-toggle i, .nav-toggle i::before, .nav-toggle i::after {
  position: absolute; left: 11px; width: 18px; height: 2px; background: currentColor; content: ""; transition: transform .3s var(--ease);
}
.nav-toggle i { top: 19px; }
.nav-toggle i::before { left: 0; top: -6px; }
.nav-toggle i::after { left: 0; top: 6px; }
.nav .btn-sm { display: none; }
body.menu-open .nav-links {
  display: flex; flex-direction: column; gap: 4px;
  position: absolute; top: 64px; left: 12px; right: 12px;
  padding: 12px; border-radius: 24px;
  background: var(--nav-bg); color: var(--nav-ink);
}
body.menu-open .nav-links a { padding: 12px 14px; }
@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav .btn-sm { display: inline-flex; }
  .nav-toggle { display: none; }
}

/* Hero */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; padding: 120px 0 80px; }
.hero-bg { position: absolute; inset: 0; }
.hero-inner { position: relative; z-index: 2; width: 100%; }
.seat-line { display: inline-flex; gap: 8px; align-items: baseline; font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 14px; }
.fc-gated { display: none !important; }
.hero-h1 { font-family: var(--font-display); margin: 0 0 28px; }
.hl { display: block; overflow: hidden; padding: .14em 0 .06em; margin-top: -.14em; }
.hl > span { display: inline-block; vertical-align: top; }
.hero-p { font-size: clamp(18px, 1.8vw, 22px); max-width: 44ch; color: var(--hero-muted, var(--muted)); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 10px 28px; margin-top: 40px; }
.hero-facts li { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 15px; }
.hero-facts b { font-family: var(--font-display); font-size: 30px; line-height: 1; }

.orbit { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.orbit-chip {
  position: absolute; display: grid; place-items: center;
  width: 58px; height: 58px; border-radius: 18px;
  background: var(--paper); color: var(--ink);
  box-shadow: 0 10px 30px rgba(30, 20, 40, .12);
}
.orbit-chip svg { width: 30px; height: 30px; }
.oc-1 { left: 6%; top: 18%; }
.oc-2 { right: 7%; top: 24%; }
.oc-3 { left: 9%; bottom: 14%; }
.oc-4 { right: 11%; bottom: 12%; }
.oc-5 { right: 30%; top: 11%; }
@media (max-width: 899px) {
  .orbit-chip { width: 42px; height: 42px; border-radius: 13px; }
  .orbit-chip svg { width: 22px; height: 22px; }
  .oc-1, .oc-2, .oc-5 { display: none; }
  .oc-3, .oc-4 { bottom: 22px; top: auto; }
  .oc-3 { left: auto; right: 74px; }
  .oc-4 { right: 18px; }
}

/* Sections */
section { position: relative; }
/* Start offsets of the scroll reveals must not widen the page. */
.plate, .win, .trial, .pricing, .channels { overflow-x: clip; }
.plate, .channels, .win, .trial, .pricing, .faq, .claim { padding: clamp(88px, 12vw, 160px) 0; }

/* Plate */
.plate-grid { display: grid; gap: 40px; }
.plate-list { counter-reset: plate; }
.plate-row {
  display: grid; grid-template-columns: 1fr; gap: 6px 24px; align-items: center;
  padding: 22px 0; border-top: 1px solid var(--line);
}
.plate-row:last-child { border-bottom: 1px solid var(--line); }
/* The chore is struck with text-decoration, not with a bar: a bar drawn at
   52% of the block lands between the lines as soon as the text wraps, and
   reads as an underline. */
.before {
  color: var(--muted); font-size: 16px; justify-self: start; opacity: .5;
  text-decoration: line-through;
  text-decoration-color: var(--strike, var(--accent));
  text-decoration-thickness: 2px;
}
.arrow { display: none; color: var(--accent-strong); font-size: 22px; }
.after { font-weight: 700; font-size: clamp(18px, 1.8vw, 22px); line-height: 1.3; }
@media (min-width: 900px) {
  .plate-grid { grid-template-columns: 5fr 6fr; gap: 64px; align-items: start; }
  .plate-row { grid-template-columns: 1fr 32px 1.15fr; }
  .arrow { display: block; }
}

/* The everyday loop beside the list: the same three questions arrive, get
   answered in your words and leave, and the one that needs a person stays.
   It runs on its own and is paused while it is off screen. Without motion
   (or without JS) the CSS below is the whole picture, answered and all. */
.day { position: relative; margin-top: 36px; max-width: 400px; }
.day-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 14px;
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted);
}
.day-n { font-size: 14px; color: var(--accent-strong); }
.day-stack { position: relative; height: 328px; }
.day .note { box-shadow: 0 6px 20px rgba(30, 20, 40, .09); }
.day .note:nth-child(2) { transform: translateY(80px); }
.day .note:nth-child(3) { transform: translateY(160px); }
.day .note:nth-child(4) { transform: translateY(240px); }
.note-st { margin-left: 8px; font-style: normal; font-size: 10px; font-weight: 800; color: #178a4a; }
.note-deal {
  margin-left: 8px; font-style: normal; font-size: 10px; font-weight: 800;
  padding: 3px 8px; border-radius: 999px; background: var(--accent); color: var(--accent-ink); white-space: nowrap;
}
.day-keep {
  position: absolute; left: 2px; right: 0; top: 92px;
  opacity: 0; visibility: hidden;
  font-size: 15px; font-weight: 700; line-height: 1.3; color: var(--ink);
}
.day-reply {
  position: absolute; left: 30px; right: 0; top: 248px;
  opacity: 0; visibility: hidden;
  padding: 12px 14px; border-radius: 16px 16px 5px 16px;
  background: var(--bubble-out); color: var(--bubble-out-ink);
  font-size: 13px; line-height: 1.35;
  box-shadow: 0 6px 18px rgba(30, 20, 40, .10);
}
.day-reply em { display: block; margin-top: 6px; font-style: normal; font-size: 10px; font-weight: 700; opacity: .65; }
/* Without `story-armed` the loop never runs, so the answer and the note on the
   kept deal would stay hidden for good: both are laid out below the four
   cards instead, as the hour's end state. */
html:not(.story-armed) .day-stack { height: auto; padding-top: 318px; }
html:not(.story-armed) .day-keep,
html:not(.story-armed) .day-reply { position: static; opacity: 1; visibility: visible; margin-top: 12px; }
html:not(.story-armed) .day-reply { margin-left: 30px; }
.day-note { margin-top: 14px; font-size: 11px; color: var(--muted); opacity: .75; }

/* ---------------------------------------------------------------
   Story
   --------------------------------------------------------------- */
.story { background: var(--story-bg, var(--canvas)); }
.story-pin {
  height: 100vh; height: 100svh;
  display: grid; grid-template-rows: minmax(0, 60fr) minmax(0, 40fr);
  padding-top: 68px;
  overflow: hidden;
}
.stage { position: relative; grid-row: 1; min-height: 0; }
.story-copy { grid-row: 2; padding: 8px var(--gutter) 20px; display: flex; flex-direction: column; min-height: 0; }
.story-copy .kicker { margin-bottom: 8px; }
.steps { position: relative; flex: 1; min-height: 0; }
.step { position: absolute; inset: 0 0 auto 0; }
.step + .step { visibility: hidden; opacity: 0; }
.step-n { display: none; }
.step h3 { font-family: var(--font-display); font-size: clamp(24px, 6vw, 30px); line-height: 1.05; letter-spacing: -0.01em; margin-bottom: 8px; }
.step p { font-size: 15px; color: var(--muted); max-width: 46ch; }
.sp { display: flex; gap: 6px; margin: 10px 0 6px; }
.sp i { flex: 1; height: 3px; border-radius: 3px; background: var(--accent); transform-origin: left center; box-shadow: 0 0 0 0 transparent; position: relative; }
.sp { background: linear-gradient(var(--line), var(--line)) center / 100% 3px no-repeat; }
.stage-note { font-size: 11px; color: var(--muted); }

@media (min-width: 900px) {
  .story-pin { grid-template-rows: 1fr; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); max-width: 1320px; margin: 0 auto; padding-top: 72px; }
  .stage { grid-row: 1; grid-column: 2; }
  .story-copy { grid-row: 1; grid-column: 1; justify-content: center; padding: 0 20px 0 48px; }
  .steps { flex: 0 0 auto; height: 300px; }
  .step-n { display: block; font-family: var(--font-display); font-size: 15px; color: var(--accent-strong); margin-bottom: 12px; }
  .step h3 { font-size: clamp(36px, 3.8vw, 56px); margin-bottom: 18px; }
  .step p { font-size: 18px; }
  .sp { margin: 20px 0 14px; max-width: 420px; }
}

/* The static story: every step below the other, nothing hidden, no pinned
   stage. The script switches it on for reduced motion, and it is also what a
   visitor gets whose script never ran -- without `story-armed` on <html> the
   six steps would sit on top of each other with five of them invisible, and
   the section would read as one step. Set in the head of creator.html. */
.story.is-static .story-pin,
html:not(.story-armed) .story .story-pin { height: auto; display: block; padding: 100px 0; }
.story.is-static .stage, .story.is-static .sp,
html:not(.story-armed) .story .stage, html:not(.story-armed) .story .sp { display: none; }
.story.is-static .story-copy,
html:not(.story-armed) .story .story-copy { padding: 0 var(--gutter); max-width: var(--wrap); margin: 0 auto; }
.story.is-static .steps,
html:not(.story-armed) .story .steps { height: auto; }
.story.is-static .step,
html:not(.story-armed) .story .step { position: static; visibility: visible; opacity: 1; margin-bottom: 40px; }
.story.is-static .step-n,
html:not(.story-armed) .story .step-n { display: block; }

/* The stage is drawn at 520 x 680 and scaled from its center. */
.stage-fit {
  position: absolute; left: 50%; top: 50%;
  width: 520px; height: 680px;
  transform: translate(-50%, -50%) scale(var(--fit, 1));
}
.fly {
  position: absolute; width: 56px; height: 56px; border-radius: 18px;
  display: grid; place-items: center; background: var(--paper); color: var(--ink);
  box-shadow: 0 12px 30px rgba(30, 20, 40, .14); z-index: 3;
}
.fly svg { width: 30px; height: 30px; }
.f-ig { left: 22px; top: 120px; }
.f-fb { left: 440px; top: 84px; }
.f-wa { left: 30px; top: 470px; }
.f-web { left: 434px; top: 440px; }

.phone {
  position: absolute; left: 116px; top: 40px; z-index: 2;
  width: 288px; height: 600px; padding: 8px;
  border-radius: 46px; background: var(--phone-bezel);
  box-shadow: 0 40px 80px -20px rgba(30, 15, 35, .35);
}
.screen {
  position: relative; width: 272px; height: 584px; overflow: hidden;
  border-radius: 38px; background: var(--screen);
  font-family: var(--font-body); color: #1a1719;
}
.l-chaos, .l-inbox, .l-compose, .l-posts, .l-page { position: absolute; inset: 0; }
.l-posts { z-index: 3; }
.week { z-index: 2; }

.unread {
  position: absolute; top: 16px; right: 16px; z-index: 6;
  padding: 5px 11px; border-radius: 999px;
  background: var(--accent); color: var(--accent-ink);
  font-size: 12px; font-weight: 700;
}

/* The pile of notifications. Cards drop in at the top of .note-stack and push
   the stack down, so the newest sits under the unread badge and the oldest
   slides out of the bottom, where the mask dissolves it. */
.l-chaos { -webkit-mask-image: linear-gradient(#000 60%, transparent 94%); mask-image: linear-gradient(#000 60%, transparent 94%); }
.note-stack { position: absolute; left: 10px; right: 10px; top: 88px; }
.note {
  position: absolute; left: 0; right: 0; top: 0;
  padding: 9px 12px 10px 15px; border-radius: 16px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 6px 18px rgba(30, 20, 40, .10);
  overflow: hidden;
}
.note::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; }
.note-hd { display: flex; align-items: center; gap: 6px; }
.note-ico { width: 16px; height: 16px; flex: none; }
.note-app { font-size: 10px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: #8d858c; }
.note-t { margin-left: auto; font-style: normal; font-size: 10px; font-weight: 600; color: #a49ca3; }
.note-who { display: block; margin-top: 4px; font-size: 13px; font-weight: 800; line-height: 1.2; }
.note-q { display: block; font-size: 13px; font-weight: 500; color: #453f44; line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.av { flex: none; }
.note.ch-ig::before { background: var(--ch-ig); }
.note.ch-fb::before { background: var(--ch-fb); }
.note.ch-wa::before { background: var(--ch-wa); }
.note.ch-web::before { background: var(--accent); }

.row {
  position: absolute; left: 10px; right: 10px; height: 50px;
  display: flex; align-items: center; gap: 10px; padding: 0 10px;
  background: #fff; border-radius: 14px; box-shadow: 0 4px 12px rgba(30, 20, 40, .06);
}
.row:nth-child(1) { top: 58px; }
.row:nth-child(2) { top: 116px; }
.row:nth-child(3) { top: 174px; }
.row:nth-child(4) { top: 232px; }
.av { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: #f4eef1; color: #1a1719; }
.av svg { width: 17px; height: 17px; }
.rt { flex: 1; min-width: 0; display: flex; flex-direction: column; font-size: 12px; line-height: 1.25; }
.rt b { font-size: 12.5px; }
.rt span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: #6f6770; }
.row-status { font-size: 10px; font-weight: 700; color: #178a4a; opacity: 0; visibility: hidden; }
.deal-tag { font-size: 10px; font-weight: 800; padding: 4px 8px; border-radius: 999px; background: var(--accent); color: var(--accent-ink); white-space: nowrap; }
.reply {
  position: absolute; left: 34px; right: 10px; top: 302px;
  padding: 11px 13px; border-radius: 16px 16px 5px 16px;
  background: var(--bubble-out); color: var(--bubble-out-ink);
  font-size: 12.5px; line-height: 1.4;
}
.reply span { display: block; margin-top: 6px; font-size: 10px; font-weight: 700; opacity: .75; }

.c-photo { position: absolute; left: 16px; top: 56px; width: 240px; height: 240px; object-fit: cover; border-radius: 18px; }
.c-line, .c-caption, .c-tags { position: absolute; left: 16px; right: 16px; }
.c-line { top: 308px; padding: 8px 10px; border: 1.5px dashed #cbbfc6; border-radius: 10px; font-size: 12px; color: #6f6770; }
.c-caption { top: 356px; font-size: 14px; font-weight: 700; line-height: 1.38; }
.c-tags { top: 428px; font-size: 12px; font-weight: 700; color: var(--accent-strong); }
.c-btn { position: absolute; left: 16px; top: 470px; padding: 11px 20px; border-radius: var(--r-btn); background: #1a1719; color: #fff; font-size: 13px; font-weight: 700; }

.post {
  position: absolute; left: 86px; top: 145px; width: 100px; height: 150px;
  padding: 6px; border-radius: 14px; background: #fff; box-shadow: 0 10px 24px rgba(30, 20, 40, .16);
}
.post img { width: 88px; height: 88px; object-fit: cover; border-radius: 9px; }
.pb { position: absolute; top: -12px; right: -12px; width: 32px; height: 32px; border-radius: 50%; background: #fff; display: grid; place-items: center; box-shadow: 0 4px 12px rgba(30, 20, 40, .18); }
.pb svg { width: 18px; height: 18px; }
.pl { display: block; height: 7px; border-radius: 4px; background: #ece6ea; margin-top: 9px; }
.pl.s { width: 60%; margin-top: 6px; }

.week { position: absolute; left: 10px; right: 10px; top: 392px; padding: 12px 8px; border-radius: 18px; background: #fff; box-shadow: 0 6px 18px rgba(30, 20, 40, .08); }
.week-days, .week-slots { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.week-days span { text-align: center; font-size: 9.5px; font-weight: 700; color: #7c7479; }
.week-slots { margin-top: 6px; }
.slot { position: relative; height: 82px; border-radius: 9px; background: #f5f0f3; }
.slot-time { position: absolute; left: 1px; right: 1px; bottom: 4px; text-align: center; font-size: 8.5px; font-weight: 800; font-style: normal; color: var(--accent-strong); }

.bio { position: absolute; left: 20px; right: 20px; top: 150px; padding: 22px 16px; border-radius: 22px; background: #fff; display: flex; flex-direction: column; align-items: center; gap: 10px; box-shadow: 0 10px 24px rgba(30, 20, 40, .10); }
.bio-handle { display: inline-flex; align-items: center; gap: 6px; font-weight: 800; font-size: 14px; }
.bio-handle svg { width: 16px; height: 16px; }

/* On a phone the stage shrinks to about .7, and a brand glyph may not end up
   under 16 px on screen (kb/design/brandkit). --ico undoes the shrink for the
   glyphs and their circles only; at --fit 1 and above nothing changes. */
.stage-fit { --ico: max(1, 1 / var(--fit, 1)); }
.stage-fit .bio-handle svg { width: calc(16px * var(--ico)); height: calc(16px * var(--ico)); }
/* 16.7 = 16 / .96, the scale the note stack gives a card it pushes away. */
.stage-fit .note-ico { width: calc(16.7px * var(--ico)); height: calc(16.7px * var(--ico)); }
.stage-fit .av svg { width: max(17px, calc(16px * var(--ico))); height: max(17px, calc(16px * var(--ico))); }
.stage-fit .av { width: max(30px, calc(16px * var(--ico) + 13px)); height: max(30px, calc(16px * var(--ico) + 13px)); }
.stage-fit .pb svg { width: max(18px, calc(16px * var(--ico))); height: max(18px, calc(16px * var(--ico))); }
.stage-fit .pb { width: max(32px, calc(16px * var(--ico) + 14px)); height: max(32px, calc(16px * var(--ico) + 14px)); }
.stage-fit .fly svg { width: max(30px, calc(16px * var(--ico))); height: max(30px, calc(16px * var(--ico))); }
.bio-link { padding: 9px 18px; border-radius: 999px; background: #1a1719; color: #fff; font-size: 13px; font-weight: 700; }
.bio-cap { font-size: 11px; color: #7c7479; }

.l-page { z-index: 5; padding: 20px 14px; background: var(--page-bg); }
.pg-head { display: flex; align-items: center; gap: 10px; padding-right: 80px; }
.pg-av { width: 40px; height: 40px; border-radius: 50%; background: url(/pics/creator-story/alley.webp) center / cover; flex: none; }
.pg-name { display: flex; flex-direction: column; font-size: 11px; color: #6f6770; line-height: 1.3; }
.pg-name b { font-size: 13.5px; color: #1a1719; }
.offers { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 16px; }
.offer { padding: 6px; border-radius: 13px; background: #fff; font-size: 11px; font-weight: 700; line-height: 1.25; box-shadow: 0 4px 12px rgba(30, 20, 40, .07); }
.offer img, .o-art { width: 100%; height: 78px; border-radius: 9px; margin-bottom: 6px; }
.offer img { object-fit: cover; }
.o-art { display: grid; place-items: center; }
.o-session .o-art { background: var(--tile-a); color: var(--tile-a-ink); font: 800 28px/1 var(--font-display); }
.o-merch .o-art { background: var(--tile-b); color: var(--tile-b-ink); }
.o-merch svg { width: 64px; height: 44px; }
.ask, .ans { position: absolute; max-width: 200px; padding: 9px 12px; font-size: 12px; line-height: 1.35; }
.ask { left: 14px; top: 318px; background: #fff; border-radius: 16px 16px 16px 5px; font-weight: 600; box-shadow: 0 4px 12px rgba(30, 20, 40, .08); }
.ans { right: 14px; top: 372px; background: var(--bubble-out); color: var(--bubble-out-ink); border-radius: 16px 16px 5px 16px; }

.win-lines { position: absolute; left: 0; top: 0; width: 520px; height: 680px; z-index: 1; overflow: visible; }
.wl { fill: none; stroke: var(--accent-strong); stroke-width: 2.5; stroke-dasharray: 400; stroke-dashoffset: 400; stroke-linecap: round; }
.win-n {
  position: absolute; z-index: 3; width: 150px; height: 150px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 4px; padding: 16px;
  background: var(--node-bg); color: var(--node-ink);
  opacity: 0; visibility: hidden;
}
.win-n b { font-family: var(--font-display); font-size: 17px; line-height: 1.05; }
.win-n span { font-size: 12.5px; line-height: 1.25; }
.n-fans { left: 330px; top: 90px; }
.n-y { left: 185px; top: 430px; background: var(--node-y-bg); color: var(--node-y-ink); }
.n-you { left: 62px; top: 326px; width: 140px; height: auto; border-radius: 0; background: none; color: var(--ink); padding: 0; }

/* Channels */
.ch-grid { display: grid; gap: 56px; margin-top: 12px; }
.ch-block .h2 { display: flex; align-items: baseline; gap: 18px; font-size: clamp(30px, 3.6vw, 46px); max-width: none; }
.ch-block .big { font-size: clamp(88px, 11vw, 150px); line-height: .8; color: var(--big, var(--accent-strong)); }
.ch-list { margin-top: 28px; display: grid; gap: 2px; }
.ch-list li { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 19px; font-weight: 700; }
.ch-list svg { width: 28px; height: 28px; flex: none; }
.ch-note { margin-top: 18px; color: var(--muted); font-size: 15px; max-width: 48ch; }
@media (min-width: 900px) { .ch-grid { grid-template-columns: 1fr 1fr; gap: 80px; } }

/* Win */
.win .h2 { max-width: 22ch; }
.win-loop { position: relative; display: grid; gap: 36px; margin-top: 56px; }
.win-svg { display: none; }
.win-node h3 { font-family: var(--font-display); font-size: clamp(26px, 2.6vw, 34px); margin: 10px 0 10px; }
.win-node p { color: var(--win-muted, var(--muted)); max-width: 36ch; }
.wn-k { font-family: var(--font-display); font-size: 14px; color: var(--accent-strong); }
.ref { margin-top: 64px; padding: clamp(28px, 4vw, 48px); border-radius: var(--r-panel); background: var(--dark); color: var(--dark-ink); display: grid; gap: 28px; align-items: center; }
.ref h3 { font-family: var(--font-display); font-size: clamp(26px, 3vw, 40px); line-height: 1.05; margin-bottom: 14px; }
.ref p { opacity: .85; max-width: 56ch; }
@media (min-width: 900px) {
  .win-loop { grid-template-columns: repeat(3, 1fr); gap: 48px; padding-top: 70px; }
  .win-svg { display: block; position: absolute; left: 0; right: 0; top: 0; width: 100%; height: 70px; }
  .win-path { fill: none; stroke: var(--accent-strong); stroke-width: 2; stroke-dasharray: 400; stroke-dashoffset: 0; vector-effect: non-scaling-stroke; }
  .ref { grid-template-columns: 1fr auto; }
}

/* Trial */
.trial-steps { display: grid; gap: 40px; margin-top: 56px; }
.ts-n { display: block; font-family: var(--font-display); font-size: 64px; line-height: 1; color: var(--accent-strong); margin-bottom: 12px; }
.trial-steps h3 { font-size: 22px; margin-bottom: 8px; }
.trial-steps p { color: var(--muted); }
@media (min-width: 900px) { .trial-steps { grid-template-columns: repeat(3, 1fr); gap: 48px; } }

/* Price */
.tiers { display: grid; gap: 20px; margin-top: 48px; }
.tier { padding: 32px; border-radius: var(--r-panel); background: var(--paper); box-shadow: inset 0 0 0 1px var(--line); display: flex; flex-direction: column; gap: 16px; }
.tier-on { box-shadow: inset 0 0 0 2px var(--ink); }
.tier-top { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.tier-name { font-weight: 800; font-size: 18px; }
.tier-status { font-size: 12px; font-weight: 700; padding: 6px 11px; border-radius: 999px; background: var(--canvas); box-shadow: inset 0 0 0 1px var(--line); }
.tier-status.open { background: var(--tag-bg); color: var(--tag-ink); box-shadow: none; }
.tier-amount b { font-family: var(--font-display); font-size: 64px; line-height: 1; }
.tier-amount span { color: var(--muted); white-space: nowrap; }
.tier-qty { margin-top: -6px; font-weight: 700; }
.tier-qty em { display: block; margin-top: 2px; font-style: normal; font-weight: 600; font-size: 14px; color: var(--muted); }
.tier-what { color: var(--muted); flex: 1; }
.tier .btn { align-self: flex-start; }
.tier-info { margin-top: 24px; color: var(--muted); font-size: 15px; }
.tier-info + .tier-info { margin-top: 8px; }
.tier-more { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
@media (min-width: 900px) { .tiers { grid-template-columns: 1.2fr 1fr; } }

/* FAQ */
.faq-grid { display: grid; gap: 40px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item summary { list-style: none; cursor: pointer; padding: 22px 40px 22px 0; position: relative; font-weight: 700; font-size: 19px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-size: 26px; font-weight: 400; transition: transform .3s var(--ease); }
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p { padding: 0 0 24px; color: var(--muted); max-width: 62ch; }
@media (min-width: 900px) { .faq-grid { grid-template-columns: 4fr 7fr; gap: 64px; } }

/* Claim */
.claim-grid { display: grid; gap: 40px; align-items: start; }
.form-card { padding: clamp(22px, 3vw, 36px); border-radius: var(--r-panel); background: var(--paper); box-shadow: 0 30px 60px -30px rgba(30, 20, 40, .25), inset 0 0 0 1px var(--line); }
.form-q { font-family: var(--font-display); font-size: 24px; margin-bottom: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; font-size: 14px; font-weight: 700; }
.field input, .field select {
  font: 500 16px/1.2 var(--font-body); color: var(--ink);
  min-height: 50px; padding: 0 14px; border-radius: var(--r-input);
  background: var(--input-bg); border: 1.5px solid var(--input-border);
}
.field input:focus, .field select:focus { outline: 3px solid var(--focus, var(--accent)); outline-offset: 1px; }
.terms { display: block; font-size: 14px; margin: 6px 0 14px; color: var(--muted); }
.terms input { width: 18px; height: 18px; vertical-align: -3px; margin-right: 6px; accent-color: var(--ink); }
.terms a { font-weight: 700; }
.cf-turnstile { margin-bottom: 14px; min-height: 65px; }
.form-error { min-height: 22px; margin-top: 10px; color: #b3261e; font-weight: 700; font-size: 14px; }
.ok-mark { font-size: 44px; line-height: 1; margin-bottom: 10px; }
#wz-step-1 h3 { font-family: var(--font-display); font-size: 28px; margin-bottom: 10px; }
@media (min-width: 900px) { .claim-grid { grid-template-columns: 5fr 6fr; gap: 64px; } .claim-copy { position: sticky; top: 120px; } }

/* Footer */
.foot { padding: 48px 0 64px; border-top: 1px solid var(--line); font-size: 14px; color: var(--muted); }
.foot-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 24px; }
.foot .logo { color: var(--ink); display: block; margin-bottom: 6px; }
.foot-links { display: flex; flex-wrap: wrap; gap: 18px; }
.foot-links a { text-decoration: none; }
.foot-links a:hover { color: var(--ink); }

@media (prefers-reduced-motion: reduce) {
  .btn, .faq-item summary::after { transition: none; }
}
