/* Section layouts. Mobile first: every grid is one column until there is room for more. */

/* ── Hook ─────────────────────────────────────────────────────────────────── */
.hero { padding: 108px 0 0; overflow: hidden; isolation: isolate; }
/* The plate only fills the lower part of the hero, so the horizon sits low and the words get open sky */
.hero-plate { position: absolute; left: 0; right: 0; bottom: 0; top: 24%; z-index: -2; }
.hero-plate img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 100%; }
/* sky melts into the page colour at the top, a vignette keeps the words readable, the road fades out at the bottom */
.hero::before { content: ''; position: absolute; inset: 0; z-index: -1; background:
  linear-gradient(180deg, var(--night) 0%, var(--night) 24%, rgba(10, 6, 19, 0.7) 40%, rgba(10, 6, 19, 0.1) 66%, rgba(10, 6, 19, 0.35) 88%, var(--night) 100%),
  radial-gradient(70% 60% at 0% 55%, rgba(10, 6, 19, 0.85), transparent 70%); }

.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); }
.hero-title { font-size: clamp(2.5rem, 9.6vw, 4.25rem); }
.hero-title .lit { text-shadow: 0 0 60px rgba(245, 184, 41, 0.35); }
.hero-copy .lede { color: var(--ink-night); opacity: 0.9; }
.hero-copy .lede strong { color: var(--gold); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 1.5rem; }
.hero-stage { position: relative; padding-top: 24px; }
.hero-stage .remote { margin: -36px 0 0; position: relative; z-index: 5; padding: 0 0 clamp(3rem, 7vw, 5rem); }
.hero-stage .bb-posts { height: clamp(60px, 11vw, 120px); }

@media (max-width: 560px) {
  .actions .btn { flex: 1 1 100%; }
  .hero-stage { margin-inline: -8px; }
}
@media (min-width: 900px) {
  .hero { padding-top: 128px; }
  .hero-grid { grid-template-columns: minmax(0, 5fr) minmax(0, 8fr); align-items: start; column-gap: clamp(2rem, 4vw, 4rem); }
  /* sized so "CHANGE IT FOREVER." always fits on one line: two lines total, billboard stays in the first screen */
  .hero-title { grid-column: 1 / -1; font-size: min(5.3vw, 4.25rem); }
  .hero-title .lit { white-space: nowrap; }
  .hero-copy { padding-top: 1rem; }
  .hero-stage { margin-right: clamp(-80px, -5vw, 0px); }
  .hero-stage .remote { margin-top: -80px; padding-left: 6%; padding-right: 6%; }
  .note-flip { position: absolute; left: -150px; top: 4px; margin: 0; }
  .hero-stage .bb-posts { height: clamp(120px, 12vw, 170px); }
}

/* ── Problem ──────────────────────────────────────────────────────────────── */
.dead { padding-top: var(--pad-standard); }
/* a hazard stripe where the night road meets the daylight section */
.dead::before { content: ''; position: absolute; left: 0; right: 0; top: 0; height: 14px; background: repeating-linear-gradient(135deg, var(--gold) 0 22px, var(--ink) 22px 44px); }
.dead-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: clamp(2.5rem, 5vw, 4rem); align-items: center; }
.dead-copy h2 { margin: 1.1rem 0 1.4rem; font-size: clamp(1.8rem, 3.5vw, 2.75rem); }
.road-list { margin-top: 1.6rem; display: grid; gap: 12px; }
.road-list li { position: relative; padding: 16px 16px 16px 48px; background: var(--paper-card); border: 2px solid var(--ink); border-radius: 4px; box-shadow: 5px 5px 0 var(--ink); color: var(--muted-ink); }
.road-list li::before { content: ''; position: absolute; left: 16px; top: 20px; width: 16px; height: 16px; background: var(--gold); border: 2px solid var(--ink); transform: rotate(45deg); }
.mail-dead { border: 2px solid var(--ink); box-shadow: 8px 8px 0 var(--ink); max-width: 520px; justify-self: center; width: 100%; }
.dead-banner { aspect-ratio: 3 / 1; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 12px; padding: 0 5% 0 7%; border-radius: 3px; overflow: hidden;
  background: linear-gradient(120deg, #5d5568, #3f384a); color: #e9e4f0; filter: saturate(0.4); }
.dead-words { display: grid; gap: 4px; }
.dead-kicker { font-family: var(--sign); font-weight: 800; font-size: 0.6875rem; letter-spacing: 0.16em; opacity: 0.8; }
.dead-line { font-family: var(--display); font-weight: 800; font-size: clamp(0.875rem, 2.4vw, 1.125rem); letter-spacing: -0.02em; line-height: 1.12; }
.dead-stamp { transform: rotate(-8deg); font-family: var(--sign); font-weight: 800; font-size: clamp(0.8125rem, 2.6vw, 1.0625rem); letter-spacing: 0.1em; text-transform: uppercase; color: #fff; border: 3px solid #fff; border-radius: 6px; padding: 8px 12px 3px; background: rgba(240, 57, 139, 0.85); }
@media (min-width: 900px) { .dead-grid { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); } }

/* ── Solution ─────────────────────────────────────────────────────────────── */
.everywhere { padding-block: var(--pad-pivotal); background:
  radial-gradient(90% 50% at 50% 0%, rgba(90, 58, 62, 0.35), transparent 70%), var(--night); }
.surfaces { display: grid; grid-template-columns: minmax(0, 1fr); gap: clamp(2.2rem, 4vw, 2.75rem) clamp(1.25rem, 2.5vw, 2rem); }
.aside { margin-top: clamp(2.5rem, 5vw, 4rem); font-family: var(--display); font-weight: 800; font-size: clamp(1.25rem, 2.8vw, 2rem); letter-spacing: -0.02em; line-height: 1.2; text-align: center; color: var(--muted-night); }
.aside strong { color: var(--gold); }
.surface-col { display: grid; grid-template-columns: minmax(0, 1fr); gap: clamp(2.2rem, 4vw, 2.75rem); align-content: start; }
@media (min-width: 760px) {
  .surfaces { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); align-items: start; }
  .surface-col + .surface-col { margin-top: 4rem; }
  .surfaces .post { margin-left: 12%; }
  .surfaces .slide { margin-right: 14%; }
}

/* ── How it works ─────────────────────────────────────────────────────────── */
.mile-list { display: grid; grid-template-columns: minmax(0, 1fr); gap: clamp(3rem, 6vw, 5rem); counter-reset: mile; }
.mile { display: grid; grid-template-columns: minmax(0, 1fr); gap: 20px; align-items: start; }
.mile h3 { margin-bottom: 12px; font-size: clamp(1.5rem, 3.2vw, 2.25rem); text-transform: uppercase; letter-spacing: -0.03em; }
.capture { border: 2px solid var(--ink); border-radius: 4px; overflow: hidden; box-shadow: 8px 8px 0 var(--ink); background: var(--night); }
.capture img { width: 100%; }
@media (min-width: 900px) {
  .mile { grid-template-columns: 68px minmax(0, 5fr) minmax(0, 6fr); column-gap: clamp(1.5rem, 3vw, 3rem); }
  .mile:nth-child(even) .mile-copy { order: 3; }
  .mile:nth-child(even) { grid-template-columns: 68px minmax(0, 6fr) minmax(0, 5fr); }
  .mile .capture { max-height: 420px; }
  .mile .capture img { object-fit: cover; object-position: top; height: 100%; }
}

/* ── What is inside ───────────────────────────────────────────────────────── */
.exits { padding-block: var(--pad-pivotal); }
.bento { display: grid; grid-template-columns: minmax(0, 1fr); gap: 16px; }
.tile { position: relative; display: flex; flex-direction: column; padding: clamp(24px, 2.6vw, 32px); background: linear-gradient(180deg, #181226, #120d1d); border: 1px solid var(--hairline); border-radius: 4px; overflow: hidden; }
.tile h3 { margin-bottom: 12px; }
.tile p { color: var(--muted-night); font-size: 1rem; }
.tile-visual { margin-top: auto; padding-top: 20px; }
.tile-visual img { width: 100%; border-radius: 3px; }
.tile-visual figcaption, .ab-note { margin-top: 12px; font-size: 0.8125rem; color: var(--dim-night); }
.tile-visual img.framed { border: 1px solid var(--hairline); }
.capture-crop { max-height: 340px; overflow: hidden; -webkit-mask-image: linear-gradient(180deg, #fff 70%, transparent); mask-image: linear-gradient(180deg, #fff 70%, transparent); }
.ab { margin-top: auto; padding-top: 24px; display: grid; gap: 12px; }
.ab-row { display: grid; grid-template-columns: 5.2em 1fr 3.2em; align-items: center; gap: 12px; font-family: var(--sign); font-weight: 800; font-size: 0.875rem; color: var(--muted-night); }
.ab-row i { display: block; height: 14px; border-radius: 3px; background: #3a2d52; width: var(--w); transform-origin: left center; }
.ab-win { color: var(--ink-night); }
.ab-win i { background: var(--gold); }
.ab-row b { text-align: right; }
@media (min-width: 760px) {
  .bento { grid-template-columns: repeat(6, minmax(0, 1fr)); grid-auto-flow: dense; }
  .tile { grid-column: span 3; }
  .tile-wide { grid-column: span 4; }
  .tile-half { grid-column: span 3; }
  .tile-full { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(0, 1fr) auto; column-gap: 40px; align-items: center; }
  .tile-full h3, .tile-full p { grid-column: 1; max-width: 44rem; }
  .tile-full .warn-diamond { grid-column: 2; grid-row: 1 / span 2; margin: 8px 24px; }
  .tile:not(.tile-wide):not(.tile-half):not(.tile-full) { grid-column: span 2; }
  .tile-tall .capture-crop { max-height: 520px; }
  .tile-split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); column-gap: 28px; align-items: start; }
  .tile-split > .tile-visual { margin-top: 0; padding-top: 0; max-height: 430px; }
}

/* ── Proof ────────────────────────────────────────────────────────────────── */
.proof-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: clamp(2.5rem, 5vw, 4rem); align-items: start; }
.proof-copy h2 { margin: 1rem 0 1.25rem; }
.counts { display: grid; gap: 0; margin: 2rem 0 1.25rem; border-top: 1px solid var(--hairline); }
.counts div { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--hairline); }
.counts dt { color: var(--muted-night); }
.counts dd { font-family: var(--display); font-weight: 800; font-size: clamp(1.75rem, 4vw, 2.75rem); letter-spacing: -0.03em; color: var(--gold); font-variant-numeric: tabular-nums; line-height: 1; }
.letter { background: var(--paper); color: var(--ink); padding: clamp(24px, 3.4vw, 40px); border-radius: 4px; transform: rotate(0.6deg); box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.9); }
.letter p { color: #3a3345; }
.letter-head { font-family: var(--sign); font-weight: 800; font-size: 0.8125rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--amber-text) !important; }
.letter footer { margin-top: 1.4rem; display: grid; }
.sig { font-family: var(--hand); font-weight: 700; font-size: 2.125rem; line-height: 1; color: var(--ink); }
.sig-role { font-size: 0.8125rem; color: var(--muted-ink); margin-top: 8px; }
@media (min-width: 900px) { .proof-grid { grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); } }

/* ── Offer ────────────────────────────────────────────────────────────────── */
.offer { padding-block: var(--pad-pivotal); }
.offer h2 { margin-block: 1rem 1.25rem; }
.founder-card { display: grid; grid-template-columns: minmax(0, 1fr); gap: 28px; background: var(--gold-ink); color: var(--ink-night); padding: clamp(28px, 4vw, 48px); border-radius: 6px; box-shadow: 12px 12px 0 rgba(23, 14, 48, 0.28); }
.founder-tag { display: inline-block; font-family: var(--sign); font-weight: 800; font-size: 0.8125rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-ink); background: var(--gold); padding: 8px 12px 4px; border-radius: 6px; margin-bottom: 16px; }
.founder-card h3 { font-size: clamp(1.5rem, 3.4vw, 2.375rem); letter-spacing: -0.03em; text-transform: uppercase; line-height: 1.05; margin-bottom: 1.25rem; }
.ticks { display: grid; gap: 12px; }
.ticks li { position: relative; padding-left: 32px; color: var(--muted-night); }
.ticks li::before { content: ''; position: absolute; left: 2px; top: 0.42em; width: 14px; height: 8px; border-left: 3px solid var(--gold); border-bottom: 3px solid var(--gold); transform: rotate(-45deg); }
.ticks li span { color: var(--ink-night); font-weight: 700; }
.founder-buy { display: grid; gap: 16px; align-content: center; justify-items: start; }
.price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 12px; margin: 0; }
.price .was { font-family: var(--display); font-weight: 800; font-size: 1.375rem; color: var(--dim-night); text-decoration: line-through; }
.price .now { font-family: var(--display); font-weight: 800; font-size: clamp(3.5rem, 9vw, 5.5rem); letter-spacing: -0.05em; line-height: 0.9; color: var(--gold); }
.price .now sup { font-size: 0.4em; vertical-align: 0.9em; margin-right: 2px; }
.price .per { color: var(--muted-night); }
.founder-buy .btn { width: 100%; }
.plans { margin-top: clamp(2.5rem, 5vw, 4rem); }
.plans-title { font-family: var(--sign); font-weight: 800; font-size: 0.8125rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 16px; }
/* The regular plans read as a price list (rows with rules), not three matching cards */
.plan-row { display: grid; grid-template-columns: minmax(0, 1fr); margin-bottom: 20px; border-top: 2px solid var(--gold-ink); }
.plan { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 4px 16px; align-items: center; padding: 20px 0; border-bottom: 2px solid var(--gold-ink); }
.plan-name { font-family: var(--display); font-weight: 800; font-size: 1.25rem; text-transform: uppercase; letter-spacing: -0.02em; }
.plan-limits { font-size: 0.9375rem; grid-column: 1; }
.plan-price { grid-row: 1 / span 2; grid-column: 2; text-align: right; font-family: var(--display); font-weight: 800; font-size: 1.5rem; letter-spacing: -0.03em; line-height: 1; }
.plan-price small { display: block; font-family: var(--body); font-weight: 400; font-size: 0.8125rem; letter-spacing: 0; margin-top: 4px; }
.plan .btn { grid-column: 1 / -1; margin-top: 12px; background: var(--gold-ink); color: var(--gold); min-height: 48px; box-shadow: none; }
.plan .btn[aria-disabled="true"] { background: transparent; color: var(--gold-ink); border: 2px dashed rgba(23, 14, 48, 0.55); }
.founder-card .btn[aria-disabled="true"] { background: transparent; color: var(--muted-night); border: 2px dashed var(--hairline); }
@media (min-width: 760px) {
  .plan { grid-template-columns: minmax(0, 3fr) minmax(0, 4fr) auto minmax(180px, auto); gap: 0 24px; }
  .plan-limits { grid-column: 2; }
  .plan-price { grid-row: 1; grid-column: 3; }
  .plan .btn { grid-column: 4; grid-row: 1; margin-top: 0; }
}
@media (min-width: 900px) {
  .founder-card { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); column-gap: clamp(2rem, 5vw, 4rem); }
}

/* ── Guarantee ────────────────────────────────────────────────────────────── */
.guarantee { padding-block: var(--pad-standard); background: radial-gradient(60% 80% at 20% 50%, rgba(245, 184, 41, 0.1), transparent 70%), var(--night); }
.guarantee-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 28px; align-items: center; }
.guarantee h2 { margin-bottom: 1.1rem; font-size: clamp(1.75rem, 4.4vw, 3.25rem); }
@media (min-width: 760px) { .guarantee-grid { grid-template-columns: auto minmax(0, 1fr); column-gap: clamp(2rem, 5vw, 4rem); } }

/* ── FAQ ──────────────────────────────────────────────────────────────────── */
.faq-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: clamp(1.5rem, 4vw, 3rem); }
.faq .section-head { margin-bottom: 0; }
.faq .section-head h2 { font-size: clamp(1.75rem, 3.1vw, 2.5rem); overflow-wrap: anywhere; }
.faq-list { display: grid; grid-template-columns: minmax(0, 1fr); gap: 12px; align-content: start; }
.faq details { background: var(--paper-card); border: 2px solid var(--ink); border-radius: 4px; box-shadow: 5px 5px 0 var(--ink); }
.faq summary { list-style: none; cursor: pointer; padding: 20px 52px 20px 20px; position: relative; font-family: var(--display); font-weight: 800; font-size: 1.0625rem; letter-spacing: -0.015em; line-height: 1.25; color: var(--ink); min-height: 56px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ''; position: absolute; right: 22px; top: 24px; width: 10px; height: 10px; border-right: 3px solid var(--ink); border-bottom: 3px solid var(--ink); transform: rotate(45deg); transition: transform 200ms var(--ease-out); }
.faq details[open] summary::after { transform: rotate(-135deg); top: 28px; }
.faq details p { padding: 0 20px 20px; margin: 0; color: var(--muted-ink); }
@media (min-width: 980px) { .faq-grid { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); } .faq .section-head { position: sticky; top: 110px; } }

/* ── Close + footer ───────────────────────────────────────────────────────── */
.close { padding-block: var(--pad-pivotal); text-align: center; background: radial-gradient(70% 60% at 50% 100%, rgba(90, 58, 62, 0.5), transparent 70%), var(--night); }
.close-inner { display: grid; justify-items: center; gap: 1.5rem; }
.close h2 { max-width: 16em; }
.close .lede { text-align: center; }
.foot { padding: clamp(3rem, 7vw, 5rem) 0 calc(96px + env(safe-area-inset-bottom)); border-top: 1px solid var(--hairline); }
.foot-line { font-family: var(--display); font-weight: 800; font-size: clamp(2rem, 8vw, 5.5rem); letter-spacing: -0.04em; line-height: 0.95; text-transform: uppercase; color: #2a2038; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.foot-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px 28px; }
.foot-row nav { display: flex; flex-wrap: wrap; gap: 8px 24px; }
.foot-row nav a { color: var(--muted-night); font-size: 0.9375rem; padding: 12px 0; }
.foot-legal { margin-top: 1.5rem; font-size: 0.8125rem; color: var(--dim-night); max-width: 60em; }

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

