/* teaser.css — pre-launch splash. Builds on tokens.css + site.css. */

.teaser-body {
  min-height: 100vh;
  display: flex; flex-direction: column;
  position: relative; overflow-x: hidden;
}

/* soft tricolore glow wash */
.teaser-bg {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 620px 420px at 82% 12%, var(--red-soft), transparent 62%),
    radial-gradient(ellipse 560px 420px at 12% 88%, var(--green-soft), transparent 62%),
    radial-gradient(ellipse 460px 360px at 92% 92%, var(--orange-soft), transparent 64%);
  opacity: 0.7;
}

/* ── top bar ── */
.teaser-top {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 40px;
}
.teaser-top .wordmark { font-size: 24px; }
.teaser-status {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3);
}
.teaser-status .pulse {
  width: 8px; height: 8px; border-radius: 999px; background: var(--accent);
  box-shadow: 0 0 0 0 var(--accent);
  animation: teaser-pulse 2s ease-out infinite;
}
@keyframes teaser-pulse {
  0%, 100% { box-shadow: 0 0 0 0 color-mix(in oklab, var(--accent) 55%, transparent); }
  50% { box-shadow: 0 0 0 7px transparent; }
}

/* ── main ── */
.teaser-main {
  position: relative; z-index: 2;
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  padding: 32px 40px 56px;
}
.teaser-inner { max-width: 680px; width: 100%; text-align: center; }

.teaser-kicker {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3);
  margin: 0 0 22px;
}

.teaser-h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(48px, 9vw, 92px); line-height: 0.98;
  letter-spacing: -0.025em; color: var(--ink); margin: 0;
  font-variation-settings: "opsz" 72; text-wrap: balance;
}
.teaser-h1 em { font-style: italic; color: var(--accent); }

/* waveform motif */
.teaser-wave {
  display: flex; align-items: center; justify-content: center;
  gap: 5px; height: 56px; margin: 36px 0 32px;
}
.teaser-wave .bar {
  width: 4px; border-radius: 999px; background: var(--ink-5);
  height: 18%;
  animation: teaser-bar 2.4s var(--ease-standard) infinite;
}
.teaser-wave .bar:nth-child(3n+1) { background: var(--accent); opacity: 0.85; }
.teaser-wave .bar:nth-child(5n+2) { background: var(--green); opacity: 0.7; }
.teaser-wave .bar:nth-child(7n+4) { background: var(--orange); opacity: 0.75; }
/* staggered delays + target heights */
.teaser-wave .bar:nth-child(1){animation-delay:-.20s}
.teaser-wave .bar:nth-child(2){animation-delay:-.80s}
.teaser-wave .bar:nth-child(3){animation-delay:-.45s}
.teaser-wave .bar:nth-child(4){animation-delay:-1.1s}
.teaser-wave .bar:nth-child(5){animation-delay:-.65s}
.teaser-wave .bar:nth-child(6){animation-delay:-1.4s}
.teaser-wave .bar:nth-child(7){animation-delay:-.30s}
.teaser-wave .bar:nth-child(8){animation-delay:-.95s}
.teaser-wave .bar:nth-child(9){animation-delay:-.55s}
.teaser-wave .bar:nth-child(10){animation-delay:-1.25s}
.teaser-wave .bar:nth-child(11){animation-delay:-.40s}
.teaser-wave .bar:nth-child(12){animation-delay:-.85s}
.teaser-wave .bar:nth-child(13){animation-delay:-1.5s}
.teaser-wave .bar:nth-child(14){animation-delay:-.25s}
.teaser-wave .bar:nth-child(15){animation-delay:-1.0s}
.teaser-wave .bar:nth-child(16){animation-delay:-.60s}
.teaser-wave .bar:nth-child(17){animation-delay:-1.35s}
.teaser-wave .bar:nth-child(18){animation-delay:-.50s}
.teaser-wave .bar:nth-child(19){animation-delay:-.90s}
.teaser-wave .bar:nth-child(20){animation-delay:-1.15s}
.teaser-wave .bar:nth-child(21){animation-delay:-.35s}
.teaser-wave .bar:nth-child(22){animation-delay:-1.45s}
.teaser-wave .bar:nth-child(23){animation-delay:-.70s}
.teaser-wave .bar:nth-child(24){animation-delay:-1.05s}
.teaser-wave .bar:nth-child(25){animation-delay:-.42s}
.teaser-wave .bar:nth-child(26){animation-delay:-.88s}
.teaser-wave .bar:nth-child(27){animation-delay:-1.3s}
.teaser-wave .bar:nth-child(28){animation-delay:-.28s}
.teaser-wave .bar:nth-child(29){animation-delay:-.98s}
.teaser-wave .bar:nth-child(30){animation-delay:-.62s}
@keyframes teaser-bar {
  0%, 100% { height: 16%; }
  20% { height: 70%; }
  45% { height: 32%; }
  70% { height: 92%; }
}
@media (prefers-reduced-motion: reduce) {
  .teaser-wave .bar { animation: none; height: 44%; }
}

.teaser-lede {
  font-size: 18px; line-height: 1.55; color: var(--ink-2);
  margin: 0 auto; max-width: 46ch; text-wrap: pretty;
}

/* three key items */
.teaser-keys {
  list-style: none; padding: 0; margin: 28px 0 0;
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
}
.teaser-keys li {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 16px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--edge);
  font-size: 13.5px; font-weight: 500; color: var(--ink);
  box-shadow: var(--shadow-1);
  white-space: nowrap;
}
.k-dot { width: 8px; height: 8px; border-radius: 999px; flex-shrink: 0; }
.k-red { background: var(--red); }
.k-green { background: var(--green); }
.k-orange { background: var(--orange); }

/* story, briefly */
.teaser-story {
  margin: 40px auto 0; max-width: 54ch;
  padding-top: 32px; border-top: 1px solid var(--edge);
}
.story-tag {
  display: inline-block; margin-bottom: 12px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent);
}
.teaser-story p {
  margin: 0;
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(19px, 2.4vw, 24px); line-height: 1.4;
  letter-spacing: -0.01em; color: var(--ink-2);
  font-variation-settings: "opsz" 24; text-wrap: pretty;
}
.teaser-story em { font-style: italic; color: var(--ink); }

.teaser-close {
  margin: 28px auto 0; max-width: 48ch;
  font-size: 15.5px; line-height: 1.55; color: var(--ink-2);
}
.teaser-close strong { color: var(--ink); font-weight: 600; }

/* notify */
.teaser-notify {
  display: flex; gap: 10px; justify-content: center;
  margin: 40px auto 0; max-width: 440px; position: relative;
}
.teaser-notify input {
  flex: 1; min-width: 0;
  font-family: var(--font-ui); font-size: 15px; color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--edge-strong); border-radius: 999px;
  padding: 0 20px; height: 48px;
  transition: border-color 200ms, box-shadow 200ms;
}
.teaser-notify input:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 14%, transparent);
}
.teaser-notify .btn { flex-shrink: 0; height: 48px; }
.notify-done {
  position: absolute; inset: 0;
  display: none; align-items: center; justify-content: center;
  background: var(--surface); border: 1px solid var(--edge); border-radius: 999px;
  margin: 0; font-size: 14.5px; font-weight: 500; color: var(--ok);
}
.teaser-notify.is-sent .notify-done { display: flex; }
.teaser-notify.is-sent input,
.teaser-notify.is-sent .btn { visibility: hidden; }

.teaser-fineprint {
  font-size: 12px; color: var(--ink-4); margin: 14px 0 0;
  font-family: var(--font-mono); letter-spacing: 0.04em;
}

/* store badges (teased) */
.teaser-stores {
  display: flex; gap: 12px; justify-content: center;
  margin-top: 36px; flex-wrap: wrap;
}
.store-badge.is-soon {
  cursor: default; opacity: 0.92;
}
.store-badge.is-soon .top { color: var(--ink-3); }
.teaser-stores .store-badge .top { white-space: nowrap; }

/* footer */
.teaser-foot {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 40px 28px;
  font-family: var(--font-mono); font-size: 11px;
  color: var(--ink-4); letter-spacing: 0.04em;
}
.teaser-foot a { color: var(--ink-3); }
.teaser-foot a:hover { color: var(--accent); }
.teaser-foot .heart { color: var(--accent); }

@media (max-width: 600px) {
  .teaser-top, .teaser-foot { padding-left: 22px; padding-right: 22px; }
  .teaser-foot-mid { display: none; }
  .teaser-notify { flex-direction: column; }
  .teaser-notify .btn { width: 100%; }
  .teaser-keys li { font-size: 12.5px; padding: 8px 13px; }
}
