/* ==========================================================================
   Shorts Music Network — v3
   Dark SaaS, coral accent, grain texture, Inter + JetBrains Mono,
   glass cards, 3D hero, scroll animations.
   ========================================================================== */

:root {
  --bg: #09090E;
  --bg-alt: #0D0D14;
  --bg-warm: #100F14;

  --glass: rgba(255,255,255,0.035);
  --glass-hover: rgba(255,255,255,0.06);
  --glass-border: rgba(255,255,255,0.07);
  --glass-border-hover: rgba(255,255,255,0.13);
  --surface-2: rgba(255,255,255,0.055);
  --border: rgba(255,255,255,0.06);

  --text: #EDECE8;
  --text-dim: #9E9C96;
  --text-mute: #5C5A54;

  --coral: #E07856;
  --coral-deep: #C45E3E;
  --coral-soft: #F09A7C;
  --coral-wash: rgba(224,120,86,0.12);
  --coral-glow: rgba(224,120,86,0.2);
  --coral-ink: #0E0804;

  --danger: #E87060;

  --r: 14px;
  --r-lg: 22px;
  --r-xl: 30px;
  --ease: cubic-bezier(.16,1,.3,1);
  --ease-out: cubic-bezier(.0,0,.2,1);
  --maxw: 1180px;

  /* ----- Legacy aliases (for portal/admin pages) ----- */
  --ink: var(--text);
  --ink-2: var(--text-dim);
  --muted: var(--text-dim);
  --muted-2: var(--text-mute);
  --card: rgba(255,255,255,0.04);
  --card-2: rgba(255,255,255,0.06);
  --bg-2: rgba(255,255,255,0.02);
  --border-strong: rgba(255,255,255,0.12);
  --ember: var(--coral);
  --ember-soft: rgba(224,120,86,0.30);
  --ember-wash: var(--coral-wash);
  --ember-ink: var(--coral-ink);
  --warn: #E4B468;
  --shadow-1: 0 4px 16px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.05);
  --shadow-2: 0 12px 40px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.06);
  --shadow-3: 0 24px 70px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.07);
}

/* Scroll offset for sticky nav so anchor links never land under the header */
html { scroll-padding-top: 86px; }

/* Accessibility — visible keyboard focus everywhere */
:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--coral-wash), 0 0 0 1px var(--coral);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* Selection */
::selection { background: var(--coral-wash); color: var(--text); }

/* Mobile performance — strip the most expensive paint work below 900px.
   The grain SVG, card noise textures, ambient animated blobs, and saturated
   backdrop-filters cause noticeable jank during scroll on phones. */
@media (max-width: 900px) {
  body::before { display: none; }
  .card::after, .card-static::after { display: none; }
  .card { backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
  .nav { backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
  .hero::before, .hero::after { animation: none; }
  /* The blurred radial glow sits directly behind the auto-scrolling marquee.
     A large blur(60px) layer intersecting a continuously animating layer forces
     iOS Safari to re-rasterize every frame, which makes the thumbnails flicker.
     It's purely decorative, so drop it on phones. */
  .showcase::before { display: none; }
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  position: relative;
}

/* Film grain */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
  opacity: 0.18;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.9  0 0 0 0 0.88  0 0 0 0 0.82  0 0 0 0.45 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: screen;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.06;
}
h1 em, h2 em { font-style: normal; color: var(--coral); }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

/* ===== Scroll Animations ===== */
.anim {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
  will-change: opacity, transform;
}
.anim.visible { opacity: 1; transform: translateY(0); }
.anim-delay-1 { transition-delay: 0.08s; }
.anim-delay-2 { transition-delay: 0.16s; }
.anim-delay-3 { transition-delay: 0.24s; }
.anim-delay-4 { transition-delay: 0.32s; }

/* ===== Card — Liquid Glass ===== */
.card {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.02) 40%, rgba(255,255,255,0.05) 100%),
    linear-gradient(180deg, rgba(20,18,26,0.4), rgba(9,9,14,0.6));
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    inset 0 -1px 0 rgba(255,255,255,0.03),
    0 8px 32px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
/* specular highlight */
.card::before {
  content: '';
  position: absolute;
  top: -40%; left: -20%;
  width: 70%; height: 70%;
  background: radial-gradient(ellipse at 30% 30%, rgba(255,255,255,0.12) 0%, transparent 60%);
  pointer-events: none;
  transform: rotate(-12deg);
  mix-blend-mode: screen;
  z-index: 1;
  transition: opacity 0.4s var(--ease);
}
/* noise texture */
.card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  pointer-events: none;
  opacity: 0.03;
  mix-blend-mode: overlay;
  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'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.6'/></svg>");
  z-index: 2;
}
.card > * { position: relative; z-index: 3; }
.card:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-3px) scale(1.005);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    inset 0 -1px 0 rgba(255,255,255,0.04),
    0 20px 60px rgba(0,0,0,0.4),
    0 0 1px rgba(255,255,255,0.1);
}
.card:hover::before { opacity: 1; }

.card-static {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.015) 40%, rgba(255,255,255,0.04) 100%),
    linear-gradient(180deg, rgba(20,18,26,0.35), rgba(9,9,14,0.55));
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    inset 0 -1px 0 rgba(255,255,255,0.02);
  position: relative;
  overflow: hidden;
}
.card-static::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  pointer-events: none;
  opacity: 0.025;
  mix-blend-mode: overlay;
  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'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.6'/></svg>");
}
.card-coral {
  border-color: rgba(224,120,86,0.18);
  background:
    linear-gradient(135deg, rgba(224,120,86,0.08) 0%, rgba(255,255,255,0.02) 40%, rgba(224,120,86,0.04) 100%),
    linear-gradient(180deg, rgba(20,18,26,0.4), rgba(9,9,14,0.6));
}
.card-coral::before {
  background: radial-gradient(ellipse at 30% 30%, rgba(224,120,86,0.15) 0%, transparent 60%);
}
.card-coral:hover {
  border-color: rgba(224,120,86,0.3);
  box-shadow:
    inset 0 1px 0 rgba(224,120,86,0.15),
    inset 0 -1px 0 rgba(255,255,255,0.03),
    0 20px 60px rgba(0,0,0,0.4),
    0 0 40px rgba(224,120,86,0.08);
}

/* ===== Nav ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(9,9,14,0.6);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04), 0 4px 24px rgba(0,0,0,0.3);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 66px; gap: 24px; }
.logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: 16px; letter-spacing: -0.01em; color: var(--text); }
.logo-mark { color: var(--coral); font-size: 18px; line-height: 1; }
.logo-word { font-family: 'Inter', sans-serif; }
.logo-img { height: 28px; width: auto; }
.nav-links { display: flex; gap: 30px; font-size: 14px; color: var(--text-dim); font-weight: 500; }
.nav-links a { position: relative; transition: color .25s var(--ease); padding: 4px 0; }
.nav-links a:hover { color: var(--text); }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0; background: linear-gradient(90deg, var(--coral), transparent); transition: width .3s var(--ease); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--text); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px; border-radius: 999px;
  font-size: 14px; font-weight: 600; font-family: 'Inter', sans-serif;
  letter-spacing: -0.005em;
  border: 1px solid transparent; cursor: pointer;
  transition: all .2s var(--ease); white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--coral-soft) 0%, var(--coral) 50%, var(--coral-deep) 100%);
  color: var(--coral-ink);
  box-shadow:
    0 8px 28px var(--coral-glow),
    inset 0 1px 0 rgba(255,255,255,0.25),
    inset 0 -2px 0 rgba(0,0,0,0.15);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-deep) 100%);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(224,120,86,0.35), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  backdrop-filter: blur(12px);
  border-color: var(--glass-border-hover);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.btn-ghost:hover {
  border-color: var(--text-dim);
  background: linear-gradient(135deg, rgba(255,255,255,0.09), rgba(255,255,255,0.03));
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 8px 24px rgba(0,0,0,0.2);
}
.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn-lg { padding: 16px 28px; font-size: 15px; }
.btn-block { width: 100%; }

/* ===== Hero ===== */
.hero {
  padding: 96px 0 80px;
  position: relative; overflow: hidden;
  background:
    radial-gradient(700px 500px at 70% -10%, rgba(224,120,86,0.10), transparent 60%),
    radial-gradient(500px 400px at 0% 20%, rgba(100,110,200,0.05), transparent 60%),
    radial-gradient(400px 400px at 85% 80%, rgba(90,58,168,0.04), transparent 60%);
}
/* ambient floating glow blobs */
.hero::before {
  content: '';
  position: absolute;
  width: 350px; height: 350px;
  top: 10%; left: 5%;
  background: radial-gradient(circle, rgba(224,120,86,0.08) 0%, transparent 65%);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: ambientDrift 12s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  bottom: 5%; right: 10%;
  background: radial-gradient(circle, rgba(90,58,168,0.06) 0%, transparent 65%);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: ambientDrift 12s ease-in-out infinite reverse;
}
@keyframes ambientDrift {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(15px, -10px); }
  66% { transform: translate(-10px, 12px); }
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.trust-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  border-radius: 999px; font-size: 13px; color: var(--text-dim);
  margin-bottom: 28px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 4px 16px rgba(0,0,0,0.15);
}
.trust-pill strong { color: var(--text); font-weight: 600; }
.pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--coral); animation: pulse 2s infinite; }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(224,120,86,0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(224,120,86,0); }
  100% { box-shadow: 0 0 0 0 rgba(224,120,86,0); }
}
.hero-title {
  font-size: clamp(40px, 5.2vw, 62px);
  line-height: 1.04; letter-spacing: -0.03em;
  margin-bottom: 22px;
}
.hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--text-dim); max-width: 46ch;
  line-height: 1.7; margin-bottom: 32px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.hero-meta {
  display: inline-flex; align-items: center; padding: 18px 24px; gap: 24px; flex-wrap: wrap;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 12px 40px rgba(0,0,0,0.25);
}
.meta-item { display: flex; flex-direction: column; gap: 2px; }
.meta-num { font-family: 'JetBrains Mono', monospace; font-size: 18px; color: var(--coral); font-weight: 600; }
.meta-label { font-size: 12px; color: var(--text-dim); font-family: 'Inter', sans-serif; }
.meta-divider { width: 1px; height: 28px; background: var(--glass-border); }

/* Hero — liquid glass badge (iframe) */
.lg-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 420px;
}
.lg-iframe {
  width: 100%;
  max-width: 560px;
  height: 460px;
  border: none;
  background: transparent;
  overflow: visible;
  display: block;
}
@media (max-width: 1180px) {
  .hero-grid { gap: 32px; }
  .lg-iframe { height: 430px; }
}

/* ===== Strip ===== */
.strip {
  padding: 42px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}
.strip::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 600px; height: 100px;
  background: radial-gradient(ellipse, rgba(224,120,86,0.04), transparent 70%);
  pointer-events: none;
  filter: blur(40px);
}
.strip-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--text-mute); text-align: center; margin-bottom: 18px; font-family: 'JetBrains Mono', monospace; font-weight: 500; }
.strip-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px 18px; font-size: 15px; color: var(--text-dim); }
.strip-row span:nth-child(even) { color: var(--text-mute); }

/* ===== Showcase (video thumbnail marquee) ===== */
.showcase {
  padding: 64px 0 56px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}
.showcase::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 900px; height: 200px;
  background: radial-gradient(ellipse, rgba(224,120,86,0.05), transparent 70%);
  pointer-events: none;
  filter: blur(60px);
}
.showcase-head {
  text-align: center;
  margin-bottom: 34px;
  position: relative; z-index: 1;
}
.showcase-eyebrow {
  display: inline-block;
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.2em; color: var(--coral);
  font-weight: 600; font-family: 'JetBrains Mono', monospace;
  text-shadow: 0 0 20px rgba(224,120,86,0.3);
  margin-bottom: 10px;
}
.showcase-title {
  font-size: clamp(22px, 2.8vw, 28px);
  letter-spacing: -0.02em; font-weight: 700;
  color: var(--text);
}
.showcase-title em { font-style: normal; color: var(--coral); }
.showcase-sub {
  margin-top: 6px;
  font-size: 14px; color: var(--text-dim);
  font-family: 'Inter', sans-serif;
}

/* Scroller — uses a CSS marquee with mask fade on both edges */
.showcase-row {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.showcase-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: showcase-scroll 60s linear infinite;
  /* One composite layer for the whole marquee — never per-card.
     Per-card layers exhaust iOS Safari's compositing budget, which
     is what causes thumbnails and the view-badge to flicker. */
  will-change: transform;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.showcase-row:hover .showcase-track { animation-play-state: paused; }
@keyframes showcase-scroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

.showcase-card {
  flex: 0 0 220px;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.015));
  border: 1px solid var(--glass-border);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 8px 24px rgba(0,0,0,0.3);
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
  color: inherit;
  text-decoration: none;
}
.showcase-card:hover {
  transform: translateY(-4px);
  border-color: rgba(224,120,86,0.4);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 22px 44px rgba(0,0,0,0.45),
    0 0 32px rgba(224,120,86,0.10);
}
.showcase-thumb-wrap {
  position: relative;
  width: 100%;
  /* Explicit desktop height — guarantees a tall vertical card no matter what
     the browser does with aspect-ratio. Mobile overrides this back to a
     ratio in the media query below. */
  height: 390px;
  background: var(--bg);
  overflow: hidden;
}
.showcase-thumb {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease);
}
.showcase-card:hover .showcase-thumb { transform: scale(1.04); }

/* Bottom shadow on the thumb so the floating view-count badge stays readable */
.showcase-thumb-wrap::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0; height: 60%;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}

.showcase-views-badge {
  position: absolute;
  bottom: 10px; left: 10px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
  z-index: 2;
  box-shadow: 0 4px 14px rgba(0,0,0,0.35);
  /* Pin the badge into the parent track's composite layer so it can't
     vanish when iOS Safari re-rasterizes the thumb underneath. */
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}
.showcase-views-badge::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 8px var(--coral-glow);
}

.showcase-meta {
  padding: 12px 14px 14px;
  flex: 1;
  display: flex; align-items: center;
}
.showcase-title-line {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
  letter-spacing: -0.005em;
  /* 2-line clamp */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 640px) {
  .showcase { padding: 36px 0 30px; }
  .showcase-head { margin-bottom: 22px; padding: 0 16px; }
  /* Mobile: ditch the explicit pixel height, use the 9:16 ratio of the card width */
  .showcase-thumb-wrap { height: auto; aspect-ratio: 9/16; }

  /* Edge vignette stays off on mobile (was causing iOS compositing issues
     with masked + transformed children). The row scrolls natively on mobile —
     JS drives scrollLeft (see index.html) instead of a transform animation. */
  .showcase-row {
    -webkit-mask-image: none;
            mask-image: none;
    overflow: hidden;   /* JS drives scrollLeft programmatically (works on overflow:hidden) */
  }

  /* No transform animation or GPU layer promotion on mobile. A large, promoted,
     continuously transform-animated layer is what iOS Safari can't keep
     rasterized — it evicts and redraws the thumbnails as they move, which is the
     flicker. Native scrolling (driven by JS) has no such layer. */
  .showcase-track {
    animation: none !important;
    will-change: auto;
    transform: none;
    -webkit-transform: none;
    gap: 10px;
  }

  .showcase-card {
    flex: 0 0 175px;
  }
  /* Disable hover-scale on touch — no real hover state */
  .showcase-card:hover { transform: none; }
  .showcase-card:hover .showcase-thumb { transform: none; }

  /* Solid badge background on mobile (backdrop-filter on a moving element
     is a major GPU cost on phones — looks identical, performs cleanly). */
  .showcase-views-badge {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(0,0,0,0.7);
    font-size: 11px;
    padding: 4px 9px;
    bottom: 8px; left: 8px;
  }

  .showcase-title-line { font-size: 12.5px; }
  .showcase-meta { padding: 10px 12px 12px; }
}
@media (prefers-reduced-motion: reduce) {
  .showcase-track { animation: none; }
  .showcase-card:hover .showcase-thumb { transform: none; }
}

/* ===== Sections ===== */
.section { padding: 120px 0; position: relative; }
.section-alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}
/* subtle ambient glow on alt sections */
.section-alt::before {
  content: '';
  position: absolute;
  width: 500px; height: 300px;
  top: -100px; right: -100px;
  background: radial-gradient(ellipse, rgba(224,120,86,0.03) 0%, transparent 60%);
  pointer-events: none;
  filter: blur(60px);
}
.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(34px, 4.2vw, 52px); margin-bottom: 18px; }
.section-sub { color: var(--text-dim); font-size: 16.5px; line-height: 1.7; font-family: 'Inter', sans-serif; }
.eyebrow {
  display: inline-block; font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.2em; color: var(--coral); font-weight: 600;
  margin-bottom: 18px; font-family: 'JetBrains Mono', monospace;
  text-shadow: 0 0 20px rgba(224,120,86,0.3);
}

/* ===== Steps ===== */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.step { padding: 36px 30px; }
.step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--coral);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.step-num::after {
  content: '';
  width: 24px; height: 1px;
  background: linear-gradient(90deg, var(--coral), transparent);
}
.step h3 { font-size: 24px; margin-bottom: 12px; }
.step p { color: var(--text-dim); font-size: 15px; line-height: 1.65; font-family: 'Inter', sans-serif; }

/* ===== Pools ===== */
.pools { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 20px; }
.pool { padding: 34px 30px; }
.pool-header { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.pool-tag { display: inline-block; padding: 4px 10px; background: var(--surface-2); border: 1px solid var(--glass-border); border-radius: 999px; font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--text-dim); }
.pool h3 { font-size: 26px; }
.pool-desc { color: var(--text-dim); font-size: 15px; margin-bottom: 22px; line-height: 1.65; font-family: 'Inter', sans-serif; }
.pool-bar { height: 8px; background: var(--surface-2); border-radius: 999px; overflow: hidden; margin-bottom: 14px; box-shadow: inset 0 1px 2px rgba(0,0,0,0.3); }
.pool-fill { height: 100%; border-radius: 999px; }
.pool-fill-creator { width: 100%; background: var(--text-mute); }
.pool-fill-music {
  width: 100%;
  background: linear-gradient(90deg, var(--coral), var(--coral-soft));
  box-shadow: 0 0 16px var(--coral-glow), 0 0 4px rgba(224,120,86,0.4);
  position: relative;
}
.pool-fill-music::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 20%, rgba(255,255,255,0.25) 50%, transparent 80%);
  animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}
.pool-foot { display: flex; justify-content: space-between; font-size: 13px; color: var(--text-dim); font-family: 'Inter', sans-serif; }
.pool-status { color: var(--text-mute); }
.pool-status-good { color: var(--coral); font-weight: 500; }

.logic-note { display: flex; gap: 16px; align-items: flex-start; padding: 26px; color: var(--text-dim); font-size: 15px; line-height: 1.65; font-family: 'Inter', sans-serif; }
.logic-note strong { color: var(--text); font-weight: 600; }
.logic-note-icon {
  flex-shrink: 0; width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--coral-soft), var(--coral-deep));
  color: var(--coral-ink); border-radius: 9px; font-size: 14px;
  box-shadow: 0 0 20px var(--coral-glow), inset 0 1px 0 rgba(255,255,255,0.25);
}

/* ===== Benefits ===== */
.benefits { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.benefit { padding: 30px 26px; }
.benefit-icon {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(224,120,86,0.12), rgba(224,120,86,0.04));
  border: 1px solid rgba(224,120,86,0.15);
  border-radius: 11px;
  font-size: 19px;
  color: var(--coral);
  margin-bottom: 18px;
  box-shadow: 0 0 20px rgba(224,120,86,0.06), inset 0 1px 0 rgba(255,255,255,0.08);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.benefit:hover .benefit-icon {
  box-shadow: 0 0 28px rgba(224,120,86,0.12), inset 0 1px 0 rgba(255,255,255,0.12);
  transform: scale(1.05);
}
.benefit h3 { font-size: 20px; margin-bottom: 10px; }
.benefit p { color: var(--text-dim); font-size: 14.5px; line-height: 1.65; font-family: 'Inter', sans-serif; }

/* ===== "More reasons" collapsible (hides the benefits grid behind a click) ===== */
.more-reasons {
  max-width: var(--maxw);
  margin: 0 auto;
}
.more-reasons summary {
  list-style: none;
  cursor: pointer;
  text-align: center;
  padding: 32px 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.015));
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--r-lg);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 6px 22px rgba(0,0,0,0.18);
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.more-reasons summary::-webkit-details-marker { display: none; }
.more-reasons summary:hover {
  border-color: rgba(224,120,86,0.30);
  transform: translateY(-2px);
}
.more-reasons summary > .eyebrow {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--coral);
  font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
  text-shadow: 0 0 20px rgba(224,120,86,0.3);
}
.more-reasons-title {
  display: block;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-top: 10px;
}
.more-reasons-title em { font-style: normal; color: var(--coral); }
.more-reasons summary::after {
  content: '';
  display: block;
  margin: 18px auto 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background-color: transparent;
  background-image:
    linear-gradient(var(--coral), var(--coral)),
    linear-gradient(var(--coral), var(--coral));
  background-size: 14px 1.5px, 1.5px 14px;
  background-position: center center, center center;
  background-repeat: no-repeat, no-repeat;
  transition: transform .35s var(--ease), border-color .25s var(--ease);
}
.more-reasons[open] summary::after {
  transform: rotate(45deg);
  border-color: rgba(224,120,86,0.4);
}

/* ===== Tiers ===== */
.tiers { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.tier { padding: 34px 30px; }
.tier-featured {
  border-color: rgba(224,120,86,0.25) !important;
  background:
    linear-gradient(135deg, rgba(224,120,86,0.09) 0%, rgba(255,255,255,0.02) 40%, rgba(224,120,86,0.04) 100%),
    linear-gradient(180deg, rgba(20,18,26,0.4), rgba(9,9,14,0.6)) !important;
  box-shadow:
    inset 0 1px 0 rgba(224,120,86,0.2),
    0 0 60px rgba(224,120,86,0.06),
    0 20px 60px rgba(0,0,0,0.3);
}
.tier-featured::before {
  background: radial-gradient(ellipse at 30% 20%, rgba(224,120,86,0.18) 0%, transparent 55%) !important;
}
.tier-badge { display: inline-block; padding: 5px 12px; background: var(--surface-2); border: 1px solid var(--glass-border); border-radius: 999px; font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 22px; }
.tier-featured .tier-badge { background: var(--coral); color: var(--coral-ink); border-color: var(--coral); }
.tier-split { font-size: 72px; letter-spacing: -0.045em; font-weight: 400; line-height: 1; margin-bottom: 6px; }
.tier-featured .tier-split { color: var(--coral); text-shadow: 0 0 30px rgba(224,120,86,0.3); }
.tier-split-small { font-size: 32px; color: var(--text-mute); }
.tier-label { font-size: 13px; color: var(--text-dim); margin-bottom: 24px; font-family: 'Inter', sans-serif; }
.tier-list { display: flex; flex-direction: column; gap: 11px; font-size: 14.5px; color: var(--text-dim); font-family: 'Inter', sans-serif; }
.tier-list li { padding-left: 22px; position: relative; }
.tier-list li::before { content: ''; position: absolute; left: 0; top: 8px; width: 10px; height: 6px; border-left: 1.5px solid var(--coral); border-bottom: 1.5px solid var(--coral); transform: rotate(-45deg); }
.tiers-fine { text-align: center; margin-top: 26px; color: var(--text-mute); font-size: 13px; font-family: 'Inter', sans-serif; }

/* ===== Channel Cards ===== */
.proof-tag { display: inline-block; padding: 4px 10px; background: var(--surface-2); border: 1px solid var(--glass-border); border-radius: 999px; font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--text-dim); }
.channel-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 14px; }
.channel-card { padding: 34px 30px; display: flex; flex-direction: column; }
.channel-top { margin-bottom: 14px; }
.channel-card h3 { font-size: 28px; margin-bottom: 4px; }
.channel-niche { font-size: 13px; color: var(--text-mute); margin-bottom: 18px; font-family: 'Inter', sans-serif; }
.channel-stats { display: flex; gap: 26px; margin-bottom: 18px; padding: 16px 0; border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); }
.channel-stat-val { display: block; font-family: 'JetBrains Mono', monospace; font-size: 22px; font-weight: 600; color: var(--coral); text-shadow: 0 0 16px rgba(224,120,86,0.2); }
.channel-stat-label { font-size: 12px; color: var(--text-mute); font-family: 'Inter', sans-serif; }
.channel-desc { color: var(--text-dim); font-size: 14.5px; line-height: 1.65; margin-top: auto; font-family: 'Inter', sans-serif; }

.network-more { margin-top: 24px; padding: 34px; text-align: center; }
.network-more p { color: var(--text-dim); font-size: 15px; max-width: 62ch; margin: 0 auto 18px; line-height: 1.65; font-family: 'Inter', sans-serif; }
.network-more-avatars { display: flex; justify-content: center; margin-bottom: 18px; }
.avatar-dot { width: 38px; height: 38px; border-radius: 50%; border: 2.5px solid var(--bg); margin-left: -8px; box-shadow: 0 0 12px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.3); }
.avatar-dot:first-child { margin-left: 0; }
.avatar-dot:nth-child(1) { background: linear-gradient(135deg, #6366F1, #818CF8); }
.avatar-dot:nth-child(2) { background: linear-gradient(135deg, #F43F5E, #FB7185); }
.avatar-dot:nth-child(3) { background: linear-gradient(135deg, #10B981, #34D399); }
.avatar-dot:nth-child(4) { background: linear-gradient(135deg, #F59E0B, #FBBF24); }
.avatar-dot:nth-child(5) { background: linear-gradient(135deg, var(--coral-deep), var(--coral)); }

/* ===== Compare screenshots ===== */
.compare-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 14px; align-items: start; margin-bottom: 24px; }
.compare-card { padding: 30px; }
.compare-label { margin-bottom: 20px; }
.compare-tag { display: inline-block; padding: 5px 12px; border-radius: 999px; font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; margin-bottom: 6px; }
.compare-tag-default { background: var(--surface-2); border: 1px solid var(--glass-border); color: var(--text-dim); }
.compare-tag-coral { background: var(--coral-wash); color: var(--coral); border: 1px solid rgba(224,120,86,0.2); }
.compare-sub { display: block; font-size: 13px; color: var(--text-mute); margin-top: 4px; font-family: 'Inter', sans-serif; }
.compare-screenshot { border-radius: 12px; overflow: hidden; border: 1px solid var(--glass-border); margin-bottom: 20px; background: var(--bg); height: 360px; max-width: 320px; margin-left: auto; margin-right: auto; }
.compare-screenshot img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center top; }
.compare-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; padding: 24px; background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.005)); }
.compare-placeholder .placeholder-tag { font-family: 'JetBrains Mono', monospace; font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-mute); padding: 5px 10px; border: 1px solid var(--glass-border); border-radius: 999px; }
.compare-placeholder .placeholder-num { font-family: 'JetBrains Mono', monospace; font-size: 44px; font-weight: 600; color: var(--text); letter-spacing: -0.03em; line-height: 1; margin-top: 8px; }
.compare-placeholder .placeholder-num-coral { color: var(--coral); text-shadow: 0 0 24px var(--coral-glow); }
.compare-placeholder .placeholder-sub { font-size: 12px; color: var(--text-mute); font-family: 'Inter', sans-serif; }
.compare-placeholder-coral { background: linear-gradient(180deg, rgba(224,120,86,0.08), rgba(224,120,86,0.015)); }
.compare-stat-row { display: flex; gap: 22px; padding: 16px 0; border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); margin-bottom: 16px; }
.compare-val { display: block; font-family: 'JetBrains Mono', monospace; font-size: 24px; font-weight: 600; color: var(--text); letter-spacing: -0.03em; line-height: 1; margin-bottom: 4px; }
.compare-val-coral { color: var(--coral); }
.compare-val-label { font-size: 11.5px; color: var(--text-mute); font-family: 'Inter', sans-serif; }
.compare-note { color: var(--text-dim); font-size: 13.5px; line-height: 1.6; font-family: 'Inter', sans-serif; }
.compare-plus { align-self: center; font-family: 'JetBrains Mono', monospace; font-size: 34px; font-weight: 700; color: var(--coral); padding: 0 6px; margin-top: 190px; text-shadow: 0 0 24px var(--coral-glow); }

.results-disclaimer { display: flex; gap: 16px; align-items: flex-start; padding: 22px 26px; color: var(--text-dim); font-size: 13.5px; line-height: 1.6; font-family: 'Inter', sans-serif; }
.results-disclaimer strong { color: var(--text); font-weight: 600; }
.disclaimer-icon { flex-shrink: 0; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; background: var(--surface-2); border: 1px solid var(--glass-border); border-radius: 8px; font-size: 14px; color: var(--text-dim); }

/* ===== CTA section ===== */
.section-cta { position: relative; overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-cta::before { content: ''; position: absolute; top: -80px; right: -80px; width: 450px; height: 450px; background: radial-gradient(circle, rgba(224,120,86,0.07), transparent 60%); pointer-events: none; filter: blur(40px); }
.section-cta::after { content: ''; position: absolute; bottom: -100px; left: -60px; width: 350px; height: 350px; background: radial-gradient(circle, rgba(90,58,168,0.04), transparent 60%); pointer-events: none; filter: blur(60px); }
.cta-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: center; position: relative; z-index: 1; }
.section-cta h2 { font-size: clamp(28px, 3.4vw, 44px); margin-bottom: 16px; }
.section-cta p { color: var(--text-dim); margin-bottom: 22px; max-width: 54ch; line-height: 1.65; font-family: 'Inter', sans-serif; }
.cta-list { display: flex; flex-direction: column; gap: 12px; color: var(--text-dim); font-size: 15px; margin-bottom: 30px; font-family: 'Inter', sans-serif; line-height: 1.55; }
.cta-list li { padding-left: 4px; }
.cta-card { padding: 8px 26px; }
.cta-card-row { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--glass-border); font-size: 14.5px; color: var(--text-dim); font-family: 'Inter', sans-serif; }
.cta-card-row strong { color: var(--text); font-weight: 600; }
.cta-card-row-last { border-bottom: none; }

/* ===== FAQ ===== */
.faq { max-width: 820px; display: flex; flex-direction: column; gap: 10px; }
.faq-item { overflow: hidden; }
.faq-item summary { list-style: none; padding: 22px 26px; cursor: pointer; font-weight: 600; font-size: 16px; font-family: 'Inter', sans-serif; display: flex; align-items: center; justify-content: space-between; gap: 20px; transition: color .2s var(--ease); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  width: 26px; height: 26px; flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background-color: transparent;
  background-image:
    linear-gradient(var(--coral), var(--coral)),
    linear-gradient(var(--coral), var(--coral));
  background-size: 12px 1.5px, 1.5px 12px;
  background-position: center center, center center;
  background-repeat: no-repeat, no-repeat;
  transition: transform .35s var(--ease), border-color .25s var(--ease);
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
  border-color: rgba(224,120,86,0.4);
}
.faq-item summary:hover { color: var(--coral); }
.faq-item summary:hover::after { border-color: rgba(224,120,86,0.5); }
.faq-body { padding: 0 26px 22px; color: var(--text-dim); font-size: 15px; line-height: 1.7; font-family: 'Inter', sans-serif; }

/* ===== Final CTA ===== */
.section-final { padding: 120px 0; text-align: center; position: relative; overflow: hidden; }
.section-final::before { content: ''; position: absolute; bottom: -180px; left: 50%; transform: translateX(-50%); width: 700px; height: 350px; background: radial-gradient(ellipse, rgba(224,120,86,0.08), transparent 60%); pointer-events: none; filter: blur(40px); }
.section-final::after { content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%); width: 500px; height: 250px; background: radial-gradient(ellipse, rgba(90,58,168,0.04), transparent 60%); pointer-events: none; filter: blur(60px); }
.final-inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }
.section-final h2 { font-size: clamp(30px, 4vw, 50px); margin-bottom: 18px; }
.section-final p { color: var(--text-dim); font-size: 17px; margin-bottom: 34px; line-height: 1.7; font-family: 'Inter', sans-serif; }

/* ===== Footer ===== */
.footer {
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
  padding-top: 60px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 200px;
  background: radial-gradient(ellipse, rgba(224,120,86,0.03), transparent 60%);
  pointer-events: none;
  filter: blur(60px);
}
.footer-inner { display: grid; grid-template-columns: 1.3fr 2fr; gap: 48px; padding-bottom: 48px; }
.footer-brand p { color: var(--text-dim); font-size: 14px; margin-top: 14px; max-width: 38ch; line-height: 1.6; font-family: 'Inter', sans-serif; }
.footer-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.footer-cols h4 { font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--text-mute); margin-bottom: 16px; font-weight: 600; font-family: 'JetBrains Mono', monospace; }
.footer-cols a { display: block; color: var(--text-dim); font-size: 14px; margin-bottom: 10px; transition: color .2s var(--ease), transform .2s var(--ease); font-family: 'Inter', sans-serif; }
.footer-cols a:hover { color: var(--text); transform: translateX(2px); }
.footer-bottom { display: flex; justify-content: space-between; padding: 22px 32px; border-top: 1px solid var(--border); font-size: 13px; color: var(--text-mute); font-family: 'Inter', sans-serif; }

/* ===== About Page ===== */
.about-hero {
  padding: 100px 0 60px; text-align: center;
  background: radial-gradient(600px 400px at 50% -10%, rgba(224,120,86,0.08), transparent 60%);
  position: relative; overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  top: 20%; left: 10%;
  background: radial-gradient(circle, rgba(90,58,168,0.05), transparent 65%);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.about-hero h1 { font-size: clamp(42px, 5.5vw, 64px); margin-bottom: 16px; }
.about-hero p { color: var(--text-dim); font-size: 18px; max-width: 54ch; margin: 0 auto; line-height: 1.7; font-family: 'Inter', sans-serif; }
.about-section { padding: 80px 0; }
.about-section h2 { font-size: clamp(30px, 3.5vw, 42px); margin-bottom: 18px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-text { color: var(--text-dim); font-size: 16px; line-height: 1.75; font-family: 'Inter', sans-serif; }
.about-text p + p { margin-top: 18px; }
.about-stat-row { display: flex; gap: 14px; margin-top: 28px; }
.about-stat { padding: 24px 20px; flex: 1; text-align: center; transition: transform .3s var(--ease), border-color .3s var(--ease); }
.about-stat:hover { transform: translateY(-2px); }
.about-stat-val { display: block; font-family: 'JetBrains Mono', monospace; font-size: 28px; color: var(--coral); font-weight: 600; margin-bottom: 6px; text-shadow: 0 0 16px rgba(224,120,86,0.25); letter-spacing: -0.01em; }
.about-stat-label { font-size: 12px; color: var(--text-dim); font-family: 'Inter', sans-serif; letter-spacing: 0.02em; }

/* ===== Apply Page ===== */
.apply-main { padding: 80px 0 120px; min-height: calc(100vh - 66px); position: relative; overflow: hidden; }
.apply-main::before { content: ''; position: absolute; top: -80px; right: -80px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(224,120,86,0.06), transparent 60%); pointer-events: none; }
.apply-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 72px; align-items: flex-start; position: relative; z-index: 1; }
.apply-aside { position: sticky; top: 100px; }
.apply-aside h1 { font-size: clamp(36px, 4.5vw, 54px); margin-bottom: 16px; }
.apply-lede { color: var(--text-dim); font-size: 16.5px; margin-bottom: 34px; max-width: 40ch; line-height: 1.65; font-family: 'Inter', sans-serif; }
.apply-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 22px; }
.apply-stat { padding: 18px 14px; }
.apply-stat-num { display: block; font-family: 'JetBrains Mono', monospace; color: var(--coral); font-size: 15px; margin-bottom: 4px; }
.apply-stat-label { font-size: 12px; color: var(--text-dim); font-family: 'Inter', sans-serif; }
.apply-checklist { padding: 22px; margin-bottom: 14px; }
.apply-checklist h3 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--text-mute); margin-bottom: 14px; font-weight: 600; font-family: 'Inter', sans-serif; }
.apply-checklist ul { display: flex; flex-direction: column; gap: 11px; color: var(--text-dim); font-size: 14.5px; font-family: 'Inter', sans-serif; }
.apply-checklist li { padding-left: 22px; position: relative; }
.apply-checklist li::before { content: ''; position: absolute; left: 0; top: 8px; width: 10px; height: 6px; border-left: 1.5px solid var(--coral); border-bottom: 1.5px solid var(--coral); transform: rotate(-45deg); }
.apply-note { padding: 18px 20px; border: 1px solid var(--glass-border); border-left: 3px solid var(--coral); border-radius: var(--r); background: var(--glass); color: var(--text-dim); font-size: 14px; line-height: 1.6; font-family: 'Inter', sans-serif; }
.apply-note strong { color: var(--text); }

.apply-form-wrap {
  padding: 42px;
  box-shadow: 0 20px 70px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.06);
}
.apply-form { display: flex; flex-direction: column; gap: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 13.5px; font-weight: 600; color: var(--text); font-family: 'Inter', sans-serif; }
.req { color: var(--coral); font-weight: 400; }
.opt { color: var(--text-mute); font-weight: 400; font-size: 12px; }
.form-group input[type="text"], .form-group input[type="email"], .form-group input[type="url"], .form-group select {
  width: 100%; padding: 13px 15px; background: var(--bg); border: 1px solid var(--glass-border); border-radius: 11px; color: var(--text); font-size: 14.5px; font-family: 'Inter', sans-serif; transition: border-color .2s var(--ease), box-shadow .2s var(--ease); appearance: none;
}
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239E9C96' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
.form-group input:focus, .form-group select:focus { outline: none; border-color: var(--coral); box-shadow: 0 0 0 3px var(--coral-wash); }
.form-group input::placeholder { color: var(--text-mute); }
.form-hint { color: var(--text-mute); font-size: 12.5px; margin-top: 2px; font-family: 'Inter', sans-serif; }
.form-divider { display: flex; align-items: center; gap: 14px; font-family: 'JetBrains Mono', monospace; font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--text-mute); margin: 10px 0 0; }
.form-divider::before, .form-divider::after { content: ''; flex: 1; height: 1px; background: var(--glass-border); }
.radio-row { display: flex; flex-wrap: wrap; gap: 10px; }
.radio, .checkbox { display: inline-flex; align-items: center; gap: 10px; cursor: pointer; font-size: 14.5px; color: var(--text-dim); font-weight: 500; font-family: 'Inter', sans-serif; }
.radio { padding: 11px 16px; background: var(--bg); border: 1px solid var(--glass-border); border-radius: 999px; transition: border-color .15s var(--ease); }
.radio:hover { border-color: var(--glass-border-hover); }
.radio input, .checkbox input { accent-color: var(--coral); }
.radio input:checked + span { color: var(--text); }
.consent-group .checkbox { align-items: flex-start; }
.consent-group .checkbox span { font-size: 14px; line-height: 1.5; }
.consent-group input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; }
.form-legal { color: var(--text-mute); font-size: 12.5px; text-align: center; margin-top: 4px; font-family: 'Inter', sans-serif; }
.field-error { color: var(--danger) !important; font-size: 12.5px; margin-top: -2px; }
.has-error input, .has-error select { border-color: var(--danger) !important; }
.hp-field { position: absolute; left: -9999px; height: 0; overflow: hidden; }

.apply-success { padding: 56px 40px; text-align: center; }
.success-mark {
  width: 60px; height: 60px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--coral-soft), var(--coral-deep));
  color: var(--coral-ink); border-radius: 50%; font-size: 26px; font-weight: 700;
  margin-bottom: 22px;
  box-shadow: 0 0 30px var(--coral-glow), 0 0 60px rgba(224,120,86,0.15), inset 0 1px 0 rgba(255,255,255,0.3);
}
.apply-success h2 { font-size: 30px; margin-bottom: 12px; }
.apply-success p { color: var(--text-dim); margin-bottom: 22px; font-family: 'Inter', sans-serif; }

/* ===== Responsive ===== */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .lg-wrap { min-height: 380px; order: 2; }
  .lg-iframe { height: 420px; max-width: 500px; }
}
@media (max-width: 960px) {
  .nav-links { display: none; }
  .lg-wrap { min-height: 340px; }
  .lg-iframe { height: 380px; max-width: 460px; }
  .steps, .benefits, .tiers, .channel-grid { grid-template-columns: 1fr; }
  .pools { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .compare-plus { margin-top: 0; padding: 8px 0; }
  .cta-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .apply-grid { grid-template-columns: 1fr; gap: 40px; }
  .apply-aside { position: static; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 80px 0; }
  .hero { padding: 60px 0 48px; }
  .hero-meta { padding: 16px 20px; gap: 16px; }
  .meta-divider { display: none; }
  .apply-form-wrap { padding: 26px 22px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-stat-row { flex-wrap: wrap; }
}
@media (max-width: 520px) {
  .apply-stats { grid-template-columns: 1fr 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .container { padding: 0 18px; }
}

/* ============================================================================
   v4 — PREMIUM ELEVATION (selective port from /new)
   Display font switch (Space Grotesk), mono eyebrows, social-proof band with
   animated count-ups, upgraded hero pill. Deliberately excluded: serif italic
   accents, floating chips, aurora, duplicate split section.
   ============================================================================ */

:root {
  --font-display: 'Space Grotesk', 'Inter', system-ui, -apple-system, sans-serif;
}

/* ---- Reveal model: base state is VISIBLE. JS arms below-the-fold elements
   with .will-reveal (hidden) and adds .visible to play the entrance. This
   guarantees content is never trapped behind a stalled animation. ---- */
.anim { opacity: 1; transform: none; transition: none; }
@media (prefers-reduced-motion: no-preference) {
  .anim.will-reveal {
    opacity: 0; transform: translateY(28px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
    will-change: opacity, transform;
  }
  .anim.will-reveal.visible { opacity: 1; transform: none; }
}

/* ---- Type system: bolder display headings, mono eyebrows ---- */
h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: -0.035em; font-weight: 700; }
.eyebrow, .showcase-eyebrow, .strip-label,
.footer-cols h4, .pool-tag, .tier-badge, .proof-tag {
  font-family: 'JetBrains Mono', monospace;
}

/* Section eyebrow — upgrade to a bordered chip */
.eyebrow {
  position: relative;
  padding: 6px 13px 6px 11px;
  border: 1px solid rgba(224,120,86,0.22);
  border-radius: 999px;
  background: var(--coral-wash);
  letter-spacing: 0.16em;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  margin-right: 7px;
  margin-bottom: 1px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 8px var(--coral);
  vertical-align: middle;
}
.section-head h2 { font-size: clamp(36px, 4.6vw, 58px); line-height: 1.0; }

/* ---- Hero: bigger title, trust pill with avatar stack ---- */
.hero-title {
  font-size: clamp(44px, 5.6vw, 78px);
  line-height: 0.99;
  letter-spacing: -0.045em;
  margin-bottom: 22px;
  text-wrap: balance;
}
.hero-sub { max-width: 50ch; font-size: clamp(15.5px, 1.5vw, 18px); }
.hero-sub strong { color: var(--text); font-weight: 600; }

.hero-pill {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 7px 16px 7px 8px;
  background: linear-gradient(135deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  border-radius: 999px; font-size: 13px; color: var(--text-dim);
  margin-bottom: 26px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 4px 16px rgba(0,0,0,0.15);
}
.hero-pill strong { color: var(--text); font-weight: 600; }
.pill-avatars { display: inline-flex; }
.pill-avatars .avatar-dot {
  width: 24px; height: 24px; border: 2px solid var(--bg); margin-left: -9px;
}
.pill-avatars .avatar-dot:first-child { margin-left: 0; }

/* ============================ PROOF BAND ============================ */
.proofband {
  padding: 84px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(800px 300px at 50% 0%, rgba(224,120,86,0.06), transparent 70%),
    var(--bg-alt);
  position: relative; overflow: hidden;
}
.proofband-head { text-align: center; margin-bottom: 48px; }
.proofband-head h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  margin-top: 16px; line-height: 1.04;
}
.proofband-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.proofstat {
  text-align: center; padding: 12px 24px;
  border-right: 1px solid var(--glass-border);
  position: relative;
}
.proofstat:last-child { border-right: none; }
.proofstat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(54px, 7vw, 92px);
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  background: linear-gradient(180deg, #FFFFFF 0%, #C9C7C1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.proofstat-num.coral {
  background: linear-gradient(180deg, var(--coral-soft) 0%, var(--coral-deep) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 60px rgba(224,120,86,0.25);
}
.proofstat-label {
  display: block; margin-top: 14px;
  font-size: 13.5px; color: var(--text-dim);
  font-family: 'Inter', sans-serif; line-height: 1.4;
  max-width: 22ch; margin-left: auto; margin-right: auto;
}
.proofband-foot {
  text-align: center; margin-top: 44px;
  font-size: 13px; color: var(--text-mute);
  font-family: 'JetBrains Mono', monospace; letter-spacing: 0.04em;
}
@media (max-width: 760px) {
  .proofband-grid { grid-template-columns: 1fr; gap: 36px; }
  .proofstat { border-right: none; }
  .proofstat:not(:last-child) { border-bottom: 1px solid var(--glass-border); padding-bottom: 36px; }
}

/* ---- Strip (niches) polish ---- */
.strip-row { font-family: 'JetBrains Mono', monospace; font-size: 14px; letter-spacing: 0.01em; }

/* ---- Guaranteed-payouts trust badge (final CTA) ---- */
.guarantee-badge {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 26px; padding: 10px 18px 10px 13px;
  border: 1px solid rgba(224,120,86,0.28);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--coral-wash), rgba(255,255,255,0.02));
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 6px 20px rgba(0,0,0,0.18);
}
.guarantee-badge .gb-icon {
  width: 26px; height: 26px; flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--coral-soft), var(--coral-deep));
  color: var(--coral-ink); font-size: 14px; font-weight: 700;
  box-shadow: 0 0 12px var(--coral-glow);
}
.guarantee-badge .gb-text {
  font-size: 13.5px; color: var(--text); text-align: left; line-height: 1.3;
  font-family: 'Inter', sans-serif;
}
.guarantee-badge .gb-text strong { font-weight: 600; }
.guarantee-badge .gb-text span { display: block; color: var(--text-dim); font-size: 12px; }
