:root {
  --bg-0: #04081a;
  --bg-1: #0a1430;
  --bg-2: #0c2150;
  --ink: #ecf3ff;
  --ink-dim: rgba(236, 243, 255, 0.66);
  --ink-faint: rgba(236, 243, 255, 0.4);
  --ink-ghost: rgba(236, 243, 255, 0.22);

  --accent: #7dd3fc;
  --accent-2: #c4b5fd;
  --accent-3: #f0abfc;
  --accent-4: #86efac;

  /* glass — the liquid */
  --glass-tint: rgba(255, 255, 255, 0.06);
  --glass-tint-strong: rgba(255, 255, 255, 0.085);
  --glass-edge: rgba(255, 255, 255, 0.22);
  --glass-edge-bright: rgba(255, 255, 255, 0.55);
  --glass-edge-dim: rgba(255, 255, 255, 0.06);
  --glass-blur: saturate(180%) blur(22px);
  --glass-blur-strong: saturate(200%) blur(34px);

  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --radius-pill: 999px;

  --shadow-deep: 0 40px 100px -32px rgba(0, 6, 30, 0.85);
  --shadow-mid:  0 24px 60px -24px rgba(0, 6, 30, 0.6);

  --font-display: "Unbounded", system-ui, sans-serif;
  --font-serif:   "Instrument Serif", "Times New Roman", serif;
  --font-prose:   "Fraunces", "Georgia", serif;
  --font-sans:    "Space Grotesk", system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { color-scheme: dark; scroll-behavior: smooth; }

body {
  min-height: 100vh;
  font-family: var(--font-sans);
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%,  rgba(125,211,252,0.16), transparent 60%),
    radial-gradient(ellipse 70% 60% at 80% 30%, rgba(196,181,253,0.18), transparent 60%),
    radial-gradient(ellipse 90% 80% at 50% 100%, rgba(14,33,80,0.9), transparent 70%),
    linear-gradient(180deg, var(--bg-1) 0%, var(--bg-0) 100%);
  background-attachment: fixed;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  letter-spacing: 0.005em;
}

/* SVG defs container — invisible */
.svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

/* ===================================================================
   AURORA — the things behind the glass that get refracted
=================================================================== */
.aurora {
  position: fixed; inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}
.blob {
  position: absolute;
  width: 65vmax; height: 65vmax;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  mix-blend-mode: screen;
  will-change: transform;
}
.blob--a { background: #1e90ff; top: -25%; left: -15%;  animation: drift 14s ease-in-out infinite; }
.blob--b { background: #8b5cf6; top: 20%;  right: -30%; animation: drift 18s ease-in-out infinite reverse; }
.blob--c { background: #06b6d4; bottom: -35%; left: 10%; animation: drift 22s ease-in-out infinite; }
.blob--d { background: #ec4899; top: 55%;  left: 40%; width: 45vmax; height: 45vmax; opacity: 0.34; animation: drift 16s ease-in-out infinite reverse; }
.blob--e { background: #22d3ee; top: 5%;   left: 50%; width: 35vmax; height: 35vmax; opacity: 0.30; animation: drift 12s ease-in-out infinite; }

@keyframes drift {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  25%      { transform: translate3d(14vw,-10vh,0) scale(1.25); }
  50%      { transform: translate3d(-6vw, 14vh,0) scale(0.85); }
  75%      { transform: translate3d(-12vw,-8vh,0) scale(1.18); }
}

.caustics {
  position: absolute; inset: -10%;
  background:
    radial-gradient(circle at 18% 28%, rgba(125, 211, 252, 0.22), transparent 32%),
    radial-gradient(circle at 78% 68%, rgba(196, 181, 253, 0.20), transparent 38%),
    radial-gradient(circle at 50% 92%, rgba(240, 171, 252, 0.16), transparent 48%);
  animation: shimmer 22s ease-in-out infinite alternate;
}
@keyframes shimmer {
  from { transform: translate3d(0,0,0); }
  to   { transform: translate3d(-3%, 2%, 0); }
}

.grain {
  position: absolute; inset: 0;
  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='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.4'/></svg>");
  opacity: 0.07;
  mix-blend-mode: overlay;
}

.vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, transparent 50%, rgba(2,6,18,0.55) 100%);
}

/* slow diagonal light beams that sweep across the bg */
.lightbeams {
  position: absolute; inset: -20%;
  background: repeating-linear-gradient(
    115deg,
    transparent 0px,
    transparent 180px,
    rgba(255,255,255,0.025) 180px,
    rgba(255,255,255,0.045) 220px,
    transparent 230px,
    transparent 380px
  );
  mix-blend-mode: screen;
  animation: beams 28s linear infinite;
  opacity: 0.7;
}
@keyframes beams {
  0%   { transform: translate3d(-15%, -10%, 0) rotate(0deg); }
  100% { transform: translate3d(15%, 10%, 0) rotate(0deg); }
}

/* huge slow rotating conic gradient — barely visible, gives the bg color "motion" */
.conic-sweep {
  position: absolute;
  inset: -50%;
  background: conic-gradient(
    from 0deg at 50% 50%,
    transparent 0deg,
    rgba(125, 211, 252, 0.08) 60deg,
    transparent 120deg,
    rgba(240, 171, 252, 0.08) 200deg,
    transparent 280deg,
    rgba(196, 181, 253, 0.08) 340deg,
    transparent 360deg
  );
  animation: spin 80s linear infinite;
  filter: blur(60px);
  mix-blend-mode: screen;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===================================================================
   GLASS — the liquid surface
   Layers, from back to front:
     1. backdrop-filter blur + refraction (real)
     2. translucent tint
     3. ::before — moving cursor spotlight (specular)
     4. ::after  — rotating conic rim light (edge wrap)
     5. inset highlights from box-shadow (rim + bottom shadow)
=================================================================== */
.glass {
  --mx: 50%;
  --my: 0%;
  --spot: 280px;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --float-d: 0s;

  position: relative;
  background: var(--glass-tint);
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow:
    var(--shadow-deep),
    inset 0 1px 0 rgba(255,255,255,0.30),
    inset 0 -1px 0 rgba(255,255,255,0.04),
    inset 1px 0 0 rgba(255,255,255,0.08),
    inset -1px 0 0 rgba(255,255,255,0.08);
  isolation: isolate;
  overflow: hidden;
  transform:
    perspective(1200px)
    translateY(var(--float-y, 0px))
    rotateX(var(--tilt-y))
    rotateY(var(--tilt-x));
  transition: transform .4s cubic-bezier(0.2, 0.8, 0.2, 1);
  animation: glassFloat 9s ease-in-out infinite;
  animation-delay: var(--float-d);
}
@keyframes glassFloat {
  0%, 100% { --float-y: 0px; }
  50%      { --float-y: -6px; }
}
@property --float-y {
  syntax: "<length>";
  inherits: false;
  initial-value: 0px;
}
.nav.glass, .foot.glass { animation: none; }
.glass[data-glass="strong"] {
  background: var(--glass-tint-strong);
  backdrop-filter: var(--glass-blur-strong);
  -webkit-backdrop-filter: var(--glass-blur-strong);
}

/* Cursor spotlight — the specular highlight that follows the pointer.
   Includes a continuously moving sheen so the surface is alive
   even when the cursor isn't over it. */
.glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(
      var(--spot) var(--spot) at var(--mx) var(--my),
      rgba(255,255,255,0.32),
      rgba(255,255,255,0.12) 30%,
      transparent 70%
    ),
    linear-gradient(
      var(--sheen-angle, 110deg),
      transparent 35%,
      rgba(255,255,255,0.10) 49%,
      rgba(255,255,255,0.22) 50%,
      rgba(255,255,255,0.10) 51%,
      transparent 65%
    ),
    linear-gradient(135deg,
      rgba(255,255,255,0.20) 0%,
      rgba(255,255,255,0)   45%,
      rgba(255,255,255,0)   55%,
      rgba(255,255,255,0.10) 100%);
  background-size: 100% 100%, 240% 240%, 100% 100%;
  background-position: 0 0, var(--sheen-x, -120%) 0, 0 0;
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: 1;
  opacity: 0.95;
  transition: opacity .4s ease;
  animation: glassSheen 7s ease-in-out infinite;
  animation-delay: var(--float-d);
}
@keyframes glassSheen {
  0%   { --sheen-x: -120%; }
  60%  { --sheen-x: 120%; }
  100% { --sheen-x: 120%; }
}
@property --sheen-x {
  syntax: "<percentage>";
  inherits: false;
  initial-value: -120%;
}

/* Rotating conic rim — bright light wrapping around the edge.
   Two highlights chase each other, faster, brighter. */
.glass::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(
    from var(--rim-angle, 140deg) at 50% 50%,
    rgba(125,211,252,0.0)  0deg,
    rgba(255,255,255,0.85) 50deg,
    rgba(196,181,253,0.4)  90deg,
    rgba(255,255,255,0.0)  130deg,
    rgba(255,255,255,0.0)  200deg,
    rgba(240,171,252,0.5)  240deg,
    rgba(255,255,255,0.75) 270deg,
    rgba(255,255,255,0.0)  330deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
  animation: rim 8s linear infinite;
  filter: blur(0.5px);
}
@keyframes rim {
  to { --rim-angle: 500deg; }
}
@property --rim-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 140deg;
}

/* Content above all the effects */
.glass > * { position: relative; z-index: 3; }

/* True refraction: SVG displacement on the backdrop where supported.
   Falls back invisibly to plain blur. */
@supports (backdrop-filter: url(#liquid)) or (-webkit-backdrop-filter: url(#liquid)) {
  .glass {
    backdrop-filter: url(#liquid) saturate(180%) blur(18px);
    -webkit-backdrop-filter: url(#liquid) saturate(180%) blur(18px);
  }
  .glass[data-glass="strong"] {
    backdrop-filter: url(#liquid-strong) saturate(200%) blur(28px);
    -webkit-backdrop-filter: url(#liquid-strong) saturate(200%) blur(28px);
  }
}

/* ===================================================================
   NAV
=================================================================== */
.nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 10px 14px 10px 22px;
  border-radius: var(--radius-pill);
  width: min(960px, calc(100% - 32px));
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--ink);
  text-decoration: none;
}
.brand__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.015em;
}
.brand__dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}
.brand__sub {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--ink-faint);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.nav__links {
  margin-left: auto;
  display: flex; gap: 22px;
  font-size: 14px;
  color: var(--ink-dim);
}
.nav__links a {
  color: inherit;
  text-decoration: none;
  transition: color .2s ease;
  position: relative;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity .25s ease;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { opacity: 1; }

.nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 13.5px;
  text-decoration: none;
  color: var(--ink);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.nav__cta:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.32);
  transform: translateY(-1px);
}

@media (max-width: 760px) {
  .nav__links { display: none; }
  .nav { gap: 14px; padding-left: 18px; }
  .brand__sub { display: none; }
}

/* ===================================================================
   LAYOUT
=================================================================== */
main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 160px 24px 80px;
  display: flex;
  flex-direction: column;
  gap: 96px;
}
.section-head { margin-bottom: 32px; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.26em;
  color: var(--ink-faint);
  text-transform: uppercase;
  margin: 0 0 18px;
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow__bullet {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: blink 2.4s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.35; }
}

.prose-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0;
  max-width: 22ch;
}
.prose-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--accent), var(--accent-2) 60%, var(--accent-3));
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}

/* ===================================================================
   HERO
=================================================================== */
.hero { text-align: center; padding: 12px 8px 0; }

/* coming-soon — hero-scale block */
.soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin: 0 auto 40px;
  position: relative;
}
.soon__chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04),
    0 12px 30px -14px rgba(0, 8, 30, 0.6);
  position: relative;
  overflow: hidden;
}
.soon__chip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    transparent 30%,
    rgba(255, 255, 255, 0.22) 50%,
    transparent 70%);
  transform: translateX(-100%);
  animation: soonShine 4.4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes soonShine {
  0%, 30%   { transform: translateX(-100%); }
  60%, 100% { transform: translateX(100%); }
}
.soon__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent), 0 0 22px rgba(125, 211, 252, 0.5);
  animation: blink 2.4s ease-in-out infinite;
}
.soon__chip__text {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
}

.soon__head {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(72px, 14vw, 200px);
  line-height: 0.86;
  letter-spacing: -0.04em;
  margin: 4px 0 0;
  text-align: center;
}
.soon__head__line { display: block; }
.soon__head__line--big {
  font-weight: 800;
  background: linear-gradient(
    135deg,
    #7dd3fc 0%,
    #c4b5fd 20%,
    #f0abfc 40%,
    #fb7185 60%,
    #c4b5fd 80%,
    #7dd3fc 100%
  );
  background-size: 400% 400%;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  filter: drop-shadow(0 30px 60px rgba(125, 211, 252, 0.3));
  animation: hueFlow 7s ease-in-out infinite, soonBreathe 5s ease-in-out infinite;
  position: relative;
}
@keyframes soonBreathe {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 30px 60px rgba(125, 211, 252, 0.3));
  }
  50% {
    transform: scale(1.015);
    filter: drop-shadow(0 50px 100px rgba(240, 171, 252, 0.5));
  }
}

/* chromatic split echo behind the big "soon." */
.soon__head__line--big::before,
.soon__head__line--big::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  background: inherit;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.5;
}
.soon__head__line--big::before {
  animation: chroma-r 3.6s ease-in-out infinite;
  filter: drop-shadow(0 0 0 #ff4d6d);
}
.soon__head__line--big::after {
  animation: chroma-b 3.6s ease-in-out infinite;
  filter: drop-shadow(0 0 0 #7dd3fc);
}
@keyframes chroma-r {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(3px, -1px); }
}
@keyframes chroma-b {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(-3px, 1px); }
}

/* per-character float + entrance for "soon." */
.soon__char {
  display: inline-block;
  opacity: 0;
  transform: translateY(60px) rotate(-6deg);
  transition: opacity .9s cubic-bezier(0.2, 0.8, 0.2, 1), transform .9s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: calc(var(--ci, 0) * 90ms + 200ms);
  animation: charFloat 5s ease-in-out infinite;
  animation-delay: calc(var(--ci, 0) * 0.18s);
  will-change: transform;
}
.soon__head__line--big.is-revealed .soon__char {
  opacity: 1;
  transform: translateY(0) rotate(0);
}
@keyframes charFloat {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -8px; }
}

.soon__hint {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--ink-dim);
  margin: 4px 0 0;
  max-width: 42ch;
  text-align: center;
}

.title {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(56px, 11vw, 156px);
  line-height: 0.9;
  letter-spacing: -0.035em;
  margin: 0;
}
.title__line { display: block; }
.title__line--italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink-dim);
}
.title__line--big {
  font-weight: 800;
  background: linear-gradient(
    135deg,
    #7dd3fc 0%,
    #c4b5fd 25%,
    #f0abfc 50%,
    #c4b5fd 75%,
    #7dd3fc 100%
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  filter: drop-shadow(0 30px 60px rgba(125,211,252,0.25));
  animation: hueFlow 9s ease-in-out infinite, titleBreathe 6s ease-in-out infinite;
}
@keyframes hueFlow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes titleBreathe {
  0%, 100% { letter-spacing: -0.035em; filter: drop-shadow(0 30px 60px rgba(125,211,252,0.25)); }
  50%      { letter-spacing: -0.028em; filter: drop-shadow(0 40px 80px rgba(196,181,253,0.4)); }
}

.lede {
  font-family: var(--font-prose);
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.55;
  max-width: 620px;
  margin: 36px auto 0;
  color: var(--ink-dim);
  font-weight: 300;
}

.hero__cta {
  display: inline-flex;
  gap: 12px;
  margin-top: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
  border: 1px solid transparent;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  position: relative;
  overflow: hidden;
}
.btn:hover { transform: translateY(-2px); }
.btn__icon {
  display: grid; place-items: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
}
.btn--primary {
  background: linear-gradient(135deg, rgba(125,211,252,0.95), rgba(196,181,253,0.95));
  color: #0a1a2f;
  box-shadow:
    0 18px 44px -16px rgba(125,211,252,0.55),
    inset 0 1px 0 rgba(255,255,255,0.5),
    inset 0 -1px 0 rgba(0,0,0,0.06);
}
.btn--primary:hover { box-shadow: 0 26px 60px -16px rgba(125,211,252,0.7), inset 0 1px 0 rgba(255,255,255,0.6); }
.btn--primary .btn__icon { background: rgba(10,26,47,0.18); color: #0a1a2f; }
.btn--ghost {
  background: rgba(255,255,255,0.06);
  color: var(--ink);
  border-color: rgba(255,255,255,0.18);
}
.btn--ghost:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.32); }

.hero__strip {
  list-style: none;
  margin: 56px auto 0;
  padding: 18px 22px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  font-size: 13px;
}
.hero__strip li {
  display: inline-flex; gap: 8px; align-items: baseline;
}
.hero__strip__k {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.hero__strip__v {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* ===================================================================
   PLAYER
=================================================================== */
.player { padding: 24px 26px; border-radius: var(--radius-xl); }
.player__top {
  display: flex; align-items: center; gap: 28px;
}
.player__left {
  display: flex; align-items: center; gap: 22px;
  flex: 1; min-width: 0;
}
.player__meta { min-width: 0; }
.player__label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.28em;
  color: var(--ink-faint);
  text-transform: uppercase;
  margin: 0 0 6px;
}
.player__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  margin: 0;
  letter-spacing: -0.015em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.player__artist {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ink-dim);
  margin: 4px 0 0;
  font-size: 16px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.visualizer {
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  height: 44px;
  padding: 0 4px;
}
.visualizer span {
  width: 3px;
  height: 18%;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  border-radius: 2px;
  opacity: 0.7;
  transform-origin: bottom;
  animation: bars 1.4s ease-in-out infinite;
}
.visualizer span:nth-child(odd)  { animation-duration: 1.2s; }
.visualizer span:nth-child(3n)   { animation-duration: 1.6s; }
.visualizer span:nth-child(5n)   { animation-duration: 0.9s; }
.player.is-playing .visualizer span { animation-duration: 1.1s; }
.player.is-playing .visualizer span:nth-child(1)  { animation-delay: -0.10s; }
.player.is-playing .visualizer span:nth-child(2)  { animation-delay: -0.20s; }
.player.is-playing .visualizer span:nth-child(3)  { animation-delay: -0.30s; }
.player.is-playing .visualizer span:nth-child(4)  { animation-delay: -0.40s; }
.player.is-playing .visualizer span:nth-child(5)  { animation-delay: -0.50s; }
.player.is-playing .visualizer span:nth-child(6)  { animation-delay: -0.60s; }
.player.is-playing .visualizer span:nth-child(7)  { animation-delay: -0.70s; }
.player.is-playing .visualizer span:nth-child(8)  { animation-delay: -0.80s; }
.player.is-playing .visualizer span:nth-child(9)  { animation-delay: -0.15s; }
.player.is-playing .visualizer span:nth-child(10) { animation-delay: -0.25s; }
.player.is-playing .visualizer span:nth-child(11) { animation-delay: -0.35s; }
.player.is-playing .visualizer span:nth-child(12) { animation-delay: -0.45s; }
.player.is-playing .visualizer span:nth-child(13) { animation-delay: -0.55s; }
.player.is-playing .visualizer span:nth-child(14) { animation-delay: -0.65s; }
.player.is-playing .visualizer span:nth-child(15) { animation-delay: -0.75s; }
.player.is-playing .visualizer span:nth-child(16) { animation-delay: -0.05s; }
.player.is-playing .visualizer span:nth-child(17) { animation-delay: -0.18s; }
.player.is-playing .visualizer span:nth-child(18) { animation-delay: -0.42s; }
@keyframes bars {
  0%, 100% { transform: scaleY(0.3); opacity: 0.5; }
  50%      { transform: scaleY(1);   opacity: 1;   }
}

.player__controls { display: flex; align-items: center; gap: 16px; }
.play {
  width: 60px; height: 60px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  background: linear-gradient(135deg, rgba(125,211,252,0.95), rgba(196,181,253,0.95));
  color: #0a1a2f;
  display: grid; place-items: center;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
  box-shadow:
    0 16px 40px -16px rgba(125,211,252,0.55),
    inset 0 1px 0 rgba(255,255,255,0.5),
    inset 0 -2px 0 rgba(0,0,0,0.08);
}
.play:hover:not(:disabled) { transform: scale(1.06); }
.play:disabled { opacity: 0.4; cursor: not-allowed; }
.play__icon--pause { display: none; }
.player.is-playing .play__icon--play  { display: none; }
.player.is-playing .play__icon--pause { display: block; }

.volume { display: flex; align-items: center; gap: 10px; color: var(--ink-dim); }
.volume input[type="range"] {
  -webkit-appearance: none; appearance: none;
  width: 130px; height: 4px;
  background: rgba(255,255,255,0.16);
  border-radius: 99px;
  outline: none;
}
.volume input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--ink); cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.volume input[type="range"]::-moz-range-thumb {
  width: 14px; height: 14px; border: none; border-radius: 50%;
  background: var(--ink); cursor: pointer;
}

.player__history {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; gap: 24px; align-items: flex-start;
}
.player__history__label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.28em;
  color: var(--ink-faint);
  text-transform: uppercase;
  padding-top: 2px;
  min-width: 60px;
}
.player__history ol {
  margin: 0; padding: 0; list-style: none;
  display: flex; flex-direction: column; gap: 6px;
  font-size: 14px;
  color: var(--ink-dim);
  flex: 1;
}
.player__history ol li span {
  font-family: var(--font-mono);
  color: var(--ink-faint);
  margin-right: 12px;
  font-size: 12px;
}
.player__history em { font-family: var(--font-serif); font-style: italic; color: var(--ink); font-size: 15.5px; }

@media (max-width: 720px) {
  .player__top { flex-direction: column; align-items: stretch; gap: 18px; }
  .player__controls { justify-content: space-between; }
  .volume input[type="range"] { width: 100%; }
  .volume { flex: 1; }
  .player__history { flex-direction: column; gap: 10px; }
}

/* ===================================================================
   MANIFESTO
=================================================================== */
.manifesto {
  max-width: 820px;
  margin: 0 auto;
}
.prose {
  font-family: var(--font-prose);
  font-weight: 300;
  font-size: clamp(17px, 1.4vw, 19.5px);
  line-height: 1.65;
  color: var(--ink-dim);
  margin-top: 28px;
  display: flex; flex-direction: column; gap: 18px;
}
.prose p { margin: 0; }
.prose p:first-child::first-letter {
  font-family: var(--font-prose);
  font-weight: 500;
  font-size: 3em;
  float: left;
  line-height: 0.9;
  padding: 6px 12px 0 0;
  color: var(--ink);
}

/* ===================================================================
   CARDS
=================================================================== */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card { padding: 30px 26px; border-radius: var(--radius-lg); }
.card__num {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 18px;
}
.card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
}
.card p {
  font-family: var(--font-prose);
  font-weight: 300;
  font-size: 16.5px;
  line-height: 1.55;
  color: var(--ink-dim);
  margin: 0;
}
.card__foot {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-faint);
  text-transform: uppercase;
}
@media (max-width: 880px) {
  .cards { grid-template-columns: 1fr; }
}

/* ===================================================================
   VOICES
=================================================================== */
.voices__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.voice { padding: 26px; border-radius: var(--radius-lg); }
.voice__head {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 16px;
}
.voice__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--g1, #7dd3fc), var(--g2, #c4b5fd));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.5),
    inset 0 -2px 6px rgba(0,0,0,0.2),
    0 6px 18px -6px rgba(0,0,0,0.4);
  flex-shrink: 0;
}
.voice__head h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.voice__head p {
  margin: 2px 0 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.voice__bio {
  font-family: var(--font-prose);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-dim);
  margin: 0 0 16px;
}
.voice__show {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14.5px;
  color: var(--ink-dim);
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.voice__show span {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-right: 10px;
}
@media (max-width: 760px) {
  .voices__grid { grid-template-columns: 1fr; }
}

/* ===================================================================
   SCHEDULE
=================================================================== */
.schedule { padding: 40px; border-radius: var(--radius-xl); }
.schedule__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column;
}
.schedule__list li {
  display: grid;
  grid-template-columns: 70px 80px 1fr auto;
  align-items: baseline;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  transition: padding-left .35s ease, background .35s ease;
  border-radius: 8px;
}
.schedule__list li:first-child { border-top: 0; }
.schedule__list li:hover {
  padding-left: 12px;
  background: linear-gradient(90deg, rgba(255,255,255,0.04), transparent 60%);
}
.schedule__day {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.26em;
  color: var(--accent);
}
.schedule__time {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-dim);
}
.schedule__show {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.01em;
}
.schedule__host {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ink-dim);
  font-size: 15px;
}
@media (max-width: 720px) {
  .schedule__list li {
    grid-template-columns: 50px 1fr;
    row-gap: 4px;
  }
  .schedule__time { grid-column: 2; }
  .schedule__show { grid-column: 1 / -1; }
  .schedule__host { grid-column: 1 / -1; }
}

/* ===================================================================
   ARCHIVE
=================================================================== */
.archive__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.archive__row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 22px 26px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: transform .3s ease;
}
.archive__row:hover { transform: translateY(-2px); }
.archive__date {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--accent);
}
.archive__body h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.archive__body p {
  margin: 4px 0 0;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ink-dim);
  font-size: 15px;
  line-height: 1.45;
}
.archive__len {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-faint);
  letter-spacing: 0.14em;
}
@media (max-width: 640px) {
  .archive__row { grid-template-columns: 1fr; gap: 8px; padding: 20px; }
  .archive__date { font-size: 11px; }
  .archive__len  { justify-self: start; }
}

/* ===================================================================
   STATS
=================================================================== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.stat {
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  text-align: left;
}
.stat__num {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0;
  background: linear-gradient(135deg, #ffffff 0%, #c4b5fd 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.stat__num span {
  font-family: var(--font-mono);
  font-size: 14px;
  margin-left: 4px;
  color: var(--ink-faint);
  -webkit-text-fill-color: var(--ink-faint);
}
.stat__k {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 14px 0 0;
}
@media (max-width: 900px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ===================================================================
   QUOTE
=================================================================== */
.quote {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding: 0 24px;
}
.quote__mark {
  font-family: var(--font-prose);
  font-size: 180px;
  line-height: 0.7;
  margin: 0 0 -20px;
  color: var(--ink-ghost);
  font-weight: 300;
}
.quote blockquote {
  margin: 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.4;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.quote__attr {
  margin: 28px 0 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ===================================================================
   SIGNAL / NEWSLETTER
=================================================================== */
.signal {
  padding: 44px;
  border-radius: var(--radius-xl);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  align-items: center;
}
.signal__body {
  font-family: var(--font-prose);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-dim);
  margin: 20px 0 0;
  max-width: 38ch;
}
.signal__form {
  display: flex;
  gap: 10px;
  padding: 6px;
  border-radius: var(--radius-pill);
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.1);
}
.signal__form input {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 14px 18px;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 14.5px;
  outline: none;
}
.signal__form input::placeholder { color: var(--ink-faint); }
.signal__form button {
  border: 0;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, rgba(125,211,252,0.95), rgba(196,181,253,0.95));
  color: #0a1a2f;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.4);
  transition: transform .2s ease;
}
.signal__form button:hover { transform: translateY(-1px); }
@media (max-width: 820px) {
  .signal { grid-template-columns: 1fr; padding: 32px; }
}

/* ===================================================================
   FOOTER
=================================================================== */
.foot {
  margin: 60px 24px 32px;
  padding: 40px 36px 30px;
  border-radius: var(--radius-xl);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  align-items: start;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}
.foot__brand {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.015em;
  margin: 0;
}
.foot__tag {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14.5px;
  color: var(--ink-dim);
  margin: 6px 0 0;
  max-width: 36ch;
}
.foot__col { display: flex; flex-direction: column; gap: 6px; }
.foot__h {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0 0 6px;
}
.foot__col a {
  font-size: 14px;
  color: var(--ink-dim);
  text-decoration: none;
  transition: color .2s ease;
}
.foot__col a:hover { color: var(--ink); }
.foot__legal {
  grid-column: 1 / -1;
  margin: 24px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
@media (max-width: 820px) {
  .foot { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 520px) {
  .foot { grid-template-columns: 1fr; }
}

/* ===================================================================
   SCROLL REVEAL
=================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s ease, transform .9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .blob, .caustics, .eyebrow__bullet, .visualizer span,
  .glass::after { animation: none !important; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .glass { transition: none; }
}
