/* ============================================================
   THE PODCAST TOUR
   Neo-brutalist editorial edition
   Display: Archivo Black (Druk Wide substitute) · Body: Archivo
   Accent: Signal Red #FF1500
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Archivo+Black&display=swap');

:root {
  --ink: #0D0D0D;
  --paper: #F2F0E8;
  --surface-dark: #161616;
  --surface-light: #FFFFFF;
  --red: #FF1500;
  --red-deep: #D11100;
  --t-dark: #F0EDE6;     /* text on dark */
  --t-light: #16181D;    /* text on light */
  --muted: #888880;
  --muted-dark: #6E6E66; /* muted on light */
  --line-dark: rgba(240, 237, 230, 0.16);
  --line-light: rgba(22, 24, 29, 0.16);

  --display: 'Archivo Black', 'Arial Black', sans-serif;
  --sans: 'Archivo', system-ui, -apple-system, sans-serif;

  --max: 1100px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--t-dark);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
::selection { background: var(--red); color: var(--ink); }

/* ---------- sections ---------- */
.sec { position: relative; padding: 120px 0; overflow: hidden; }
@media (max-width: 720px) { .sec { padding: 80px 0; } }
.sec.dark { background: var(--ink); color: var(--t-dark); }
.sec.light { background: var(--paper); color: var(--t-light); }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 32px; }
@media (max-width: 600px) { .container { padding: 0 22px; } }

/* bracket annotation label */
.anno {
  font-family: var(--sans); font-weight: 300; font-size: 0.72rem;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted);
  margin: 0 0 32px; display: block;
}
.light .anno { color: var(--muted-dark); }
.anno .r { color: var(--red); }

/* plus cross markers */
.plus { position: absolute; font-family: var(--sans); font-weight: 400; font-size: 18px; line-height: 1; color: var(--red); opacity: 0.85; z-index: 2; pointer-events: none; }
.plus.tl { top: 26px; left: 26px; }
.plus.tr { top: 26px; right: 26px; }
.plus.bl { bottom: 26px; left: 26px; }
.plus.br { bottom: 26px; right: 26px; }
.plus.muted { color: var(--muted); }

/* ---------- type ---------- */
.display {
  font-family: var(--display); font-weight: 400; text-transform: uppercase;
  line-height: 0.92; letter-spacing: -0.02em; margin: 0;
}
h1.display { font-size: clamp(2.6rem, 6.5vw, 6rem); line-height: 0.96; }
h2.display { font-size: clamp(2.1rem, 6vw, 4.4rem); line-height: 0.94; }
h3.display { font-size: clamp(1.3rem, 3vw, 1.8rem); line-height: 1; }
.red { color: var(--red); }
.dark .display { color: var(--t-dark); }
.light .display { color: var(--t-light); }

p { margin: 0 0 1.2em; }
p:last-child { margin-bottom: 0; }
.lede { font-size: 1.25rem; line-height: 1.5; }
.dark strong, .dark .em { font-weight: 700; color: #FFFFFF; }
.light strong, .light .em { font-weight: 700; color: #000000; }
.muted { color: var(--muted); }

/* ---------- buttons ---------- */
.btn {
  appearance: none; cursor: pointer; display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--sans); font-weight: 700; font-size: 0.92rem; letter-spacing: 0.06em;
  text-transform: uppercase; text-decoration: none;
  color: var(--ink); background: var(--red); border: 2px solid var(--red);
  padding: 17px 40px; border-radius: 0; line-height: 1;
  transition: background 0.16s, color 0.16s, transform 0.16s;
}
.btn .ar { display: inline-block; transition: transform 0.2s; }
.btn:hover { background: var(--ink); color: var(--red); }
.btn:hover .ar { transform: translateX(5px); }
.btn:active { transform: translateY(1px); }
.light .btn:hover { background: var(--ink); color: var(--red); }

.cta-wrap { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; margin-top: 40px; }
.cta-wrap.center { align-items: center; text-align: center; }
.trust {
  font-family: var(--sans); font-weight: 300; font-size: 0.78rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted); line-height: 1.5;
}
.light .trust { color: var(--muted-dark); }
.trust .r { color: var(--red); }
@media (max-width: 600px) {
  .btn { width: 100%; justify-content: center; padding: 19px 24px; }
  .cta-wrap { align-items: stretch; }
  .cta-wrap .trust { text-align: center; }
}

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s cubic-bezier(.2,.7,.2,1), transform 0.6s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; } .reveal.d2 { transition-delay: 0.16s; } .reveal.d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; transition: none !important; } html { scroll-behavior: auto; } }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: 0; min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.hero-grid { display: block; width: 100%; }
.hero-left { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 40px 0; position: relative; }
.hero-left .container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.hero-eyebrow { font-family: var(--sans); font-weight: 400; font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--red); margin: 0 auto 22px; line-height: 1.6; max-width: 46em; }
.hero h1 { margin-bottom: 24px; }
.hero .subhead { font-family: var(--sans); font-weight: 500; font-size: clamp(1.1rem, 1.7vw, 1.35rem); color: var(--t-dark); margin: 0 auto; max-width: 30em; letter-spacing: 0.01em; }

@media (max-width: 900px) {
  .hero { min-height: 92vh; }
  .hero-left { padding: 64px 0; }
  .hero-left .container { padding: 0 22px; }
}

/* ============================================================
   DISCOVER checklist  (light)
   ============================================================ */
.checklist { list-style: none; margin: 48px 0 0; padding: 0; border-top: 2px solid var(--ink); }
.checklist li { display: flex; gap: 22px; align-items: baseline; padding: 26px 0; border-bottom: 1px solid var(--line-light); font-size: clamp(1.05rem, 2vw, 1.45rem); line-height: 1.3; }
.checklist .pl { flex: 0 0 auto; font-family: var(--display); color: var(--red); font-size: 1.15em; line-height: 1; transform: translateY(2px); }
.checklist strong { color: #000; }

/* ============================================================
   PROBLEM  (dark)
   ============================================================ */
.beats { margin-top: 44px; }
.beats p { font-family: var(--sans); font-weight: 500; font-size: clamp(1.25rem, 2.6vw, 1.9rem); line-height: 1.32; margin-bottom: 1.4em; max-width: 22ch; }
.beats .big { font-family: var(--display); text-transform: uppercase; font-weight: 400; line-height: 1.02; letter-spacing: -0.01em; font-size: clamp(1.5rem, 3.4vw, 2.5rem); max-width: 18ch; }
.beats .whisper { color: var(--muted); font-size: clamp(1.3rem, 2.4vw, 1.9rem); letter-spacing: 0.04em; text-transform: uppercase; font-weight: 600; }
.beats .end { color: var(--red); }

/* ============================================================
   MECHANISM (light)
   ============================================================ */
.mech-intro { margin-top: 40px; font-size: 1.2rem; max-width: 30em; line-height: 1.5; }
/* two rooms */
.two-rooms { display: grid; grid-template-columns: 1fr 1fr; margin: 56px 0; border: 2px solid var(--ink); }
@media (max-width: 680px) { .two-rooms { grid-template-columns: 1fr; } }
.room { position: relative; min-height: 340px; padding: 24px; display: flex; flex-direction: column; justify-content: flex-end; }
.room .room-label { font-family: var(--sans); font-weight: 300; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; position: relative; z-index: 3; }
.room .room-sub { font-family: var(--sans); font-weight: 500; font-size: 0.96rem; margin-top: 8px; position: relative; z-index: 3; max-width: 26ch; }
.room.noisy { background: #E4E1D6; color: var(--muted-dark); border-right: 2px solid var(--ink); }
@media (max-width: 680px) { .room.noisy { border-right: 0; border-bottom: 2px solid var(--ink); } }
.room.noisy .noise-grid { position: absolute; inset: 0; opacity: 0.9;
  background-image: radial-gradient(circle at center, #B7B3A6 0 30%, transparent 32%);
  background-size: 34px 34px; background-position: 6px 6px;
  -webkit-mask-image: linear-gradient(0deg, transparent, #000 30%); mask-image: linear-gradient(0deg, transparent, #000 30%); }
.room.signal { background: #0D0D0D; color: var(--t-dark); }
.room.signal .spot { position: absolute; top: -10%; left: 50%; transform: translateX(-50%); width: 78%; height: 80%; background: radial-gradient(ellipse at top, rgba(255,21,0,0.16), rgba(255,255,255,0.06) 30%, transparent 62%); }
.room.signal .mic { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-58%); width: 64px; z-index: 2; color: #E8E5DE; }
.room.signal .mic .cap { color: var(--red); }
.room.signal .room-label { color: var(--red); }

/* callout box */
.callout-box { border: 2px solid var(--red); padding: 40px 38px; margin: 56px 0; background: var(--surface-light); }
.light .callout-box { background: #FBFAF5; }
.callout-box .display { font-size: clamp(1.5rem, 3.4vw, 2.6rem); line-height: 1; }
.mech-after { margin-top: 36px; }
.mech-after p { font-size: 1.18rem; line-height: 1.5; max-width: 30em; margin-bottom: 1.3em; }

/* waveform figure */
.wave-fig { margin: 48px 0 0; border: 2px solid var(--ink); background: #FBFAF5; }
.wave-fig img { width: 100%; display: block; }
.wave-cap { font-family: var(--sans); font-weight: 300; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-dark); padding: 14px 18px; border-top: 2px solid var(--ink); display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.wave-cap .r { color: var(--red); }

/* ============================================================
   SHIFT  (dark)  from / to
   ============================================================ */
.shift { margin-top: 52px; border-top: 2px solid var(--t-dark); }
.shift-head { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; padding: 16px 0; }
.shift-head .h { font-family: var(--sans); font-weight: 300; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; }
.shift-head .before { color: var(--muted); }
.shift-head .after { color: var(--red); }
.shift-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; padding: 26px 0; border-top: 1px solid var(--line-dark); align-items: center; }
.shift-row .before { color: var(--muted); font-size: 1.05rem; line-height: 1.4; text-decoration: line-through; text-decoration-color: rgba(136,136,128,0.5); text-decoration-thickness: 1px; }
.shift-row .after { color: #FFFFFF; font-size: clamp(1.05rem, 1.8vw, 1.3rem); font-weight: 500; line-height: 1.35; display: flex; gap: 14px; align-items: baseline; }
.shift-row .after .pl { color: var(--red); font-family: var(--display); flex: 0 0 auto; }
@media (max-width: 680px) {
  .shift-head { display: none; }
  .shift-row { grid-template-columns: 1fr; gap: 8px; padding: 22px 0; }
  .shift-row .before::before { content: "[ before ] "; font-family: var(--sans); text-decoration: none; color: var(--muted); letter-spacing: 0.1em; font-size: 0.7rem; }
}

/* ============================================================
   PROOF  (light)
   ============================================================ */
.video-block { position: relative; border: 2px solid var(--ink); aspect-ratio: 16/9; margin: 48px 0; background: radial-gradient(120% 120% at 50% 30%, #1d1d1d, #0a0a0a); display: grid; place-items: center; overflow: hidden; }
.video-block .vlabel { position: absolute; top: 18px; left: 18px; font-family: var(--sans); font-weight: 300; font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.video-block .vplay { width: 84px; height: 84px; border: 2px solid var(--red); border-radius: 0; display: grid; place-items: center; background: rgba(255,21,0,0.08); transition: background 0.2s; }
.video-block:hover .vplay { background: var(--red); }
.video-block .vplay svg { width: 28px; height: 28px; color: var(--red); margin-left: 4px; transition: color 0.2s; }
.video-block:hover .vplay svg { color: var(--ink); }
.video-block .vcap { position: absolute; bottom: 18px; left: 18px; right: 18px; font-family: var(--sans); font-size: 0.82rem; color: #CFCCC4; line-height: 1.4; }

.founder { display: grid; grid-template-columns: 240px 1fr; gap: 40px; align-items: center; border: 2px solid var(--ink); padding: 0; background: var(--surface-light); }
.founder .f-photo { position: relative; align-self: stretch; min-height: 280px; overflow: hidden; border-right: 2px solid var(--ink); }
.founder .f-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.founder .f-body { padding: 36px 38px 36px 0; }
.founder .f-kicker { font-family: var(--sans); font-weight: 300; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-dark); margin-bottom: 14px; }
.founder .f-name { font-family: var(--display); text-transform: uppercase; font-size: clamp(1.4rem, 3vw, 2rem); line-height: 0.96; color: var(--t-light); margin-bottom: 14px; }
.founder .f-name .red { color: var(--red); }
.founder .f-role { color: var(--muted-dark); font-size: 1.02rem; line-height: 1.5; max-width: 40ch; }
@media (max-width: 680px) {
  .founder { grid-template-columns: 1fr; }
  .founder .f-photo { min-height: 320px; border-right: 0; border-bottom: 2px solid var(--ink); }
  .founder .f-body { padding: 30px 26px; }
}

/* ============================================================
   OFFER  (dark)
   ============================================================ */
.position-line { margin-top: 28px; font-size: 1.2rem; line-height: 1.5; max-width: 30em; }
.offer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin: 56px 0 0; border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
@media (max-width: 720px) { .offer-grid { grid-template-columns: 1fr; } }
.ocard { position: relative; background: var(--surface-dark); border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); padding: 34px 32px 32px; transition: background 0.18s; }
.ocard--wide { grid-column: 1 / -1; }
.ocard:hover { background: #1f1f1d; }
.ocard:hover .onum { color: var(--red); }
.onum { font-family: var(--display); font-size: 1.7rem; color: #2E2E2C; letter-spacing: -0.02em; line-height: 1; margin-bottom: 20px; transition: color 0.18s; }
.onum::after { content: " //"; color: var(--red); font-size: 0.7em; }
.ocard h3 { font-family: var(--sans); font-weight: 700; font-size: 1.18rem; letter-spacing: -0.01em; color: #FFFFFF; margin: 0 0 10px; text-transform: none; }
.ocard p { font-size: 0.99rem; color: #A8A59D; line-height: 1.55; margin: 0; }
.value-line { margin: 48px 0 0; font-size: 1.18rem; line-height: 1.5; max-width: 40em; color: var(--t-dark); }

/* ============================================================
   GUARANTEE (light)  contract box
   ============================================================ */
.guarantee-box { border: 2px solid var(--red); padding: 64px 52px; text-align: center; position: relative; background: var(--surface-light); }
.guarantee-box .glabel { font-family: var(--sans); font-weight: 300; font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted-dark); margin-bottom: 30px; }
.guarantee-box h2 { font-size: clamp(2rem, 5.2vw, 3.8rem); line-height: 0.96; margin-bottom: 34px; }
.guarantee-box .terms { max-width: 30em; margin: 0 auto; }
.guarantee-box .terms p { font-size: 1.1rem; line-height: 1.55; margin-bottom: 1em; color: var(--t-light); }
.guarantee-box .terms p:last-child { margin-bottom: 0; }

/* ============================================================
   CALL  (dark)
   ============================================================ */
.rows { margin-top: 50px; border-top: 2px solid var(--t-dark); }
.crow { display: flex; gap: 24px; align-items: flex-start; padding: 30px 0; border-bottom: 1px solid var(--line-dark); }
.crow .pl { font-family: var(--display); color: var(--red); font-size: 1.6rem; line-height: 1; flex: 0 0 auto; }
.crow .ctext h3 { font-family: var(--sans); font-weight: 700; font-size: 1.2rem; color: #fff; margin: 0 0 8px; text-transform: none; }
.crow .ctext p { margin: 0; color: #A8A59D; font-size: 1.02rem; line-height: 1.5; max-width: 50ch; }
.call-after { margin-top: 36px; font-size: 1.1rem; color: var(--t-dark); }

/* ============================================================
   CLOSE  (dark)
   ============================================================ */
.close-sec { text-align: center; }
.close-sec h2 { font-size: clamp(2.2rem, 6.2vw, 5rem); margin: 0 auto 36px; max-width: 16ch; }
.close-sec .choice { max-width: 40em; margin: 0 auto 1.3em; color: #BFBCB4; font-size: 1.12rem; line-height: 1.5; }
.ps { margin: 60px auto 0; max-width: 44em; border-top: 1px solid var(--line-dark); padding-top: 34px; }
.ps .pslabel { font-family: var(--sans); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); }
.ps p { font-style: italic; font-size: 1.2rem; line-height: 1.55; color: #CFCCC4; margin-top: 14px; }

/* ---------- footer ---------- */
.foot { background: #060606; border-top: 1px solid var(--line-dark); padding: 44px 32px; text-align: center; }
.foot .fbrand { font-family: var(--display); text-transform: uppercase; font-size: 1.3rem; color: var(--t-dark); letter-spacing: -0.01em; }
.foot .fsub { font-family: var(--sans); font-weight: 300; font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-top: 10px; }

/* ============================================================
   APPLICATION OVERLAY (brutalist skin)
   ============================================================ */
.app-overlay { position: fixed; inset: 0; z-index: 1000; background: rgba(6,6,6,0.86); backdrop-filter: blur(4px); display: none; align-items: flex-start; justify-content: center; padding: 40px 20px; overflow-y: auto; }
.app-overlay.open { display: flex; }
.app-overlay.open .app-card { animation: cardIn 0.32s cubic-bezier(.2,.7,.2,1) both; }
@keyframes cardIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .app-overlay.open .app-card { animation: none; } }

.app-card { position: relative; background: var(--surface-dark); width: 100%; max-width: 560px; border: 2px solid var(--red); border-radius: 0; overflow: hidden; }
.app-top { padding: 26px 30px 0; }
.app-topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.app-brand { font-family: var(--sans); font-weight: 300; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--t-dark); display: flex; align-items: center; gap: 10px; }
.app-brand .dot { width: 9px; height: 9px; background: var(--red); }
.app-close { appearance: none; border: 1px solid var(--line-dark); background: transparent; width: 34px; height: 34px; border-radius: 0; cursor: pointer; display: grid; place-items: center; color: var(--muted); transition: border-color 0.15s, color 0.15s; }
.app-close:hover { border-color: var(--red); color: var(--red); }
.app-close svg { width: 16px; height: 16px; }
.app-progress { margin-bottom: 8px; }
.app-step-label { font-family: var(--sans); font-weight: 300; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.app-bar { height: 4px; background: rgba(240,237,230,0.12); border-radius: 0; overflow: hidden; margin-top: 8px; }
.app-bar i { display: block; height: 100%; background: var(--red); width: 16%; transition: width 0.4s cubic-bezier(.2,.7,.2,1); }

.app-body { padding: 30px 30px 8px; min-height: 214px; }
.app-q { font-family: var(--display); text-transform: uppercase; font-size: 1.35rem; line-height: 1.02; letter-spacing: -0.01em; color: #fff; margin-bottom: 8px; }
.app-help { color: var(--muted); font-size: 0.92rem; margin-bottom: 24px; }

.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--sans); font-weight: 400; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 9px; }
.field input, .field select, .field textarea { width: 100%; font-family: var(--sans); font-size: 1.02rem; color: var(--t-dark); background: #0E0E0E; border: 1px solid var(--line-dark); border-radius: 0; padding: 14px 15px; transition: border-color 0.15s; }
.field input::placeholder, .field textarea::placeholder { color: #5C5C56; }
.field textarea { resize: vertical; min-height: 96px; line-height: 1.5; }
.field select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23888880' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.field select option { background: #161616; color: var(--t-dark); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 1px var(--red); }
.field .err { color: var(--red); font-family: var(--sans); font-size: 0.74rem; letter-spacing: 0.04em; margin-top: 8px; display: none; }
.field.invalid input, .field.invalid select { border-color: var(--red); }
.field.invalid .err { display: block; }

.app-foot { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 14px 30px 28px; }
.app-back { appearance: none; border: 0; background: none; cursor: pointer; color: var(--muted); font-family: var(--sans); font-weight: 400; font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 6px; padding: 10px 4px; transition: color 0.15s; }
.app-back:hover { color: var(--t-dark); }
.app-back svg { width: 16px; height: 16px; }
.app-back[hidden] { visibility: hidden; }
.app-next { min-width: 168px; }

.app-success { display: none; padding: 52px 36px 46px; text-align: center; }
.app-success.show { display: block; animation: cardIn 0.32s both; }
.app-success .tick { width: 66px; height: 66px; border: 2px solid var(--red); border-radius: 0; display: grid; place-items: center; margin: 0 auto 24px; }
.app-success .tick svg { width: 32px; height: 32px; color: var(--red); }
.app-success h3 { font-family: var(--display); text-transform: uppercase; font-size: 1.7rem; line-height: 1; margin-bottom: 14px; color: #fff; }
.app-success p { color: var(--muted); max-width: 34em; margin: 0 auto 1em; }
.app-success .nextlist { text-align: left; max-width: 31em; margin: 24px auto 30px; list-style: none; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.app-success .nextlist li { display: flex; gap: 14px; align-items: flex-start; font-size: 0.95rem; color: #CFCCC4; }
.app-success .nextlist .pl { color: var(--red); font-family: var(--display); flex: 0 0 auto; line-height: 1; }

@media (max-width: 600px) {
  .app-overlay { padding: 0; }
  .app-card { max-width: 100%; min-height: 100vh; border: 0; }
  .app-foot .app-next { flex: 1; }
}

.step { display: none; }
.step.active { display: block; animation: stepIn 0.3s cubic-bezier(.2,.7,.2,1) both; }
@keyframes stepIn { from { opacity: 0; transform: translateX(14px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .step.active { animation: none; } }

/* ---------- VSL player ----------
   No native controls: the runtime must never be visible. */
.vsl { width: 100%; max-width: 900px; margin: 40px auto 0; }

.vsl-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 2px solid var(--red);
  overflow: hidden;
}
@supports not (aspect-ratio: 16 / 9) {
  .vsl-frame { height: 0; padding-bottom: 56.25%; }
}

.vsl-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block; object-fit: contain;
  background: #000; cursor: pointer;
}

/* click-to-play cover */
.vsl-cover {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px;
  appearance: none; border: 0; cursor: pointer;
  background: #000;
  font-family: var(--sans);
  transition: opacity 0.3s;
}
.vsl-cover[hidden] { display: none; }

.vsl-play {
  display: flex; align-items: center; justify-content: center;
  width: 84px; height: 84px;
  background: var(--red);
  transition: transform 0.16s;
}
.vsl-tri {
  width: 0; height: 0;
  border-left: 26px solid var(--ink);
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  margin-left: 6px;
}
.vsl-cover:hover .vsl-play { transform: scale(1.07); }

.vsl-cover-label {
  font-weight: 700; font-size: 0.82rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--t-dark);
}
.vsl-cover-sub {
  font-weight: 300; font-size: 0.72rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
}

/* paused badge, shown only while paused mid-play */
.vsl-pause {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: none; align-items: center; justify-content: center;
  width: 76px; height: 76px;
  background: var(--red);
  pointer-events: none;
}
.vsl-frame.is-paused .vsl-pause { display: flex; }

@media (max-width: 600px) {
  .vsl { margin-top: 30px; }
  .vsl-play { width: 64px; height: 64px; }
  .vsl-tri { border-left-width: 20px; border-top-width: 12px; border-bottom-width: 12px; }
  .vsl-cover-label { font-size: 0.72rem; }
}
