/* ==========================================================================
   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;
}

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

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: hidden;
}

/* 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 ===== */
.card {
  background: var(--glass);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.card:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}
.card-static {
  background: var(--glass);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
}
.card-coral {
  border-color: rgba(224,120,86,0.18);
  background: linear-gradient(180deg, rgba(224,120,86,0.04) 0%, var(--glass) 55%);
}
.card-coral:hover {
  border-color: rgba(224,120,86,0.3);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35), 0 0 30px rgba(224,120,86,0.06);
}

/* ===== Nav ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(9,9,14,0.7);
  backdrop-filter: saturate(170%) blur(16px);
  -webkit-backdrop-filter: saturate(170%) blur(16px);
  border-bottom: 1px solid var(--border);
}
.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); }
.nav-links a:hover { color: var(--text); }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: -4px; height: 1.5px; width: 0; background: var(--coral); transition: width .3s var(--ease); }
.nav-links a:hover::after { width: 100%; }

/* ===== 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: var(--coral); color: var(--coral-ink);
  box-shadow: 0 8px 28px var(--coral-glow), inset 0 -2px 0 rgba(0,0,0,0.1);
}
.btn-primary:hover { background: var(--coral-deep); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(224,120,86,0.3); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  background: var(--glass); backdrop-filter: blur(8px);
  border-color: var(--glass-border-hover); color: var(--text);
}
.btn-ghost:hover { border-color: var(--text-dim); background: var(--glass-hover); transform: translateY(-1px); }
.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.09), transparent 60%),
    radial-gradient(500px 400px at 0% 20%, rgba(100,110,200,0.04), transparent 60%);
}
.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: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  border-radius: 999px; font-size: 13px; color: var(--text-dim);
  margin-bottom: 28px;
}
.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; }
.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); }
.strip-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--text-mute); text-align: center; margin-bottom: 16px; font-family: 'Inter', sans-serif; }
.strip-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; font-size: 15px; color: var(--text-dim); }
.strip-row span:nth-child(even) { color: var(--text-mute); }

/* ===== Sections ===== */
.section { padding: 120px 0; }
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.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;
}

/* ===== 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; }
.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; }
.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); }
.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: var(--coral); color: var(--coral-ink); border-radius: 9px; font-size: 14px; box-shadow: 0 0 16px var(--coral-glow); }

/* ===== 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: var(--surface-2); border: 1px solid var(--glass-border); border-radius: 11px; font-size: 19px; color: var(--coral); margin-bottom: 18px; }
.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; }

/* ===== 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(180deg, rgba(224,120,86,0.05), var(--glass) 50%) !important; box-shadow: 0 0 50px rgba(224,120,86,0.04); }
.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); }
.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); }
.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; }
.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.06), transparent 60%); pointer-events: none; }
.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: 10px; color: var(--text-dim); font-size: 15px; margin-bottom: 30px; font-family: 'Inter', sans-serif; }
.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: 800px; 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: '+'; color: var(--coral); font-size: 22px; font-weight: 400; transition: transform .3s var(--ease); flex-shrink: 0; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--coral); }
.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.06), transparent 60%); pointer-events: none; }
.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; }
.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: 12px; max-width: 38ch; 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.16em; color: var(--text-mute); margin-bottom: 14px; font-weight: 600; font-family: 'Inter', sans-serif; }
.footer-cols a { display: block; color: var(--text-dim); font-size: 14px; margin-bottom: 10px; transition: color .2s var(--ease); font-family: 'Inter', sans-serif; }
.footer-cols a:hover { color: var(--text); }
.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%); }
.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: 16px; margin-top: 28px; }
.about-stat { padding: 22px 20px; flex: 1; text-align: center; }
.about-stat-val { display: block; font-family: 'JetBrains Mono', monospace; font-size: 28px; color: var(--coral); font-weight: 600; margin-bottom: 4px; }
.about-stat-label { font-size: 12px; color: var(--text-dim); font-family: 'Inter', sans-serif; }

/* ===== 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); }
.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: var(--coral); color: var(--coral-ink); border-radius: 50%; font-size: 26px; font-weight: 700; margin-bottom: 22px; box-shadow: 0 0 30px var(--coral-glow); }
.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; }
}
