.cs-page{
  min-height:100vh; display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center; padding:var(--space-6);
  position:relative; overflow:hidden;
}
.cs-page::before{
  content:''; position:absolute; inset:0; z-index:-1;
  background:radial-gradient(circle at 50% 20%, var(--media-glow), transparent 60%);
}
.cs-page__logo{ height:120px; width:auto; margin-bottom:var(--space-8); }
.cs-page__logo.cs-logo--broadcast{ display:none; }
.cs-page__logo.cs-logo--mark{ display:none; height:64px; }
:root[data-theme="broadcast"] .cs-page__logo.cs-logo--studio{ display:none; }
:root[data-theme="broadcast"] .cs-page__logo.cs-logo--broadcast{ display:block; }

/* The full lockup at 120px is oversized on narrow screens, worse than the
   nav's problem since this one's even bigger, switch to the compact mark. */
@media (max-width:480px){
  .cs-page__logo.cs-logo--studio,
  .cs-page__logo.cs-logo--broadcast{ display:none !important; }
  .cs-page__logo.cs-logo--mark{ display:block !important; }
}

.cs-page__eyebrow{
  display:inline-flex; align-items:center; gap:8px; font-size:13px; font-weight:600;
  letter-spacing:0.06em; text-transform:uppercase; color:var(--accent-interactive); margin-bottom:var(--space-5);
}
.cs-page__eyebrow .dot{ width:6px; height:6px; border-radius:50%; background:var(--accent-interactive); animation:alp-pulse 1.6s ease-in-out infinite; }
.cs-page h1{
  font-family:var(--font-display); font-weight:600; font-size:clamp(32px,6vw,64px); line-height:1.05;
  letter-spacing:-0.02em; margin:0 0 var(--space-5); max-width:800px;
}
.cs-page h1 .accent{ color:var(--accent-interactive); }
.cs-page p.cs-page__desc{ font-size:18px; color:var(--text-secondary); max-width:480px; margin:0 0 var(--space-8); }

.cs-page .alp-countdown{ margin-bottom:var(--space-8); }

.cs-page__meanwhile{
  font-size:13px; font-weight:600; letter-spacing:0.04em; text-transform:uppercase;
  color:var(--text-secondary); margin:0 0 var(--space-4); text-align:left; width:100%; max-width:480px;
}
.cs-page__actions{
  display:flex; flex-direction:column; gap:10px; width:100%; max-width:480px; margin-bottom:var(--space-7);
  text-align:left;
}
.cs-page__action{
  display:flex; align-items:center; gap:14px; padding:14px 18px;
  background:var(--surface-card); border:1px solid var(--border-subtle); border-radius:10px;
  text-decoration:none; color:var(--text-primary); cursor:pointer;
  transition:border-color 150ms ease-out, transform 150ms ease-out;
}
.cs-page__action:hover{ border-color:var(--accent-interactive); transform:translateX(2px); }
.cs-page__action-icon{
  width:36px; height:36px; border-radius:8px; background:var(--accent-subtle);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.cs-page__action-icon svg{ width:18px; height:18px; color:var(--accent-interactive-hover); }
.cs-page__action-text{ flex:1; }
.cs-page__action-text strong{ display:block; font-size:15px; font-weight:600; }
.cs-page__action-text span{ display:block; font-size:13px; color:var(--text-secondary); }
.cs-page__action-arrow{ color:var(--text-secondary); flex-shrink:0; }
.cs-page__action:hover .cs-page__action-arrow{ color:var(--accent-interactive); }

.cs-page__notify{ display:flex; gap:12px; max-width:420px; width:100%; flex-wrap:wrap; justify-content:center; margin-bottom:var(--space-6); }
.cs-page__notify input{
  flex:1; min-width:220px; background:var(--surface-card); border:1px solid var(--border-strong); border-radius:8px;
  padding:12px 16px; color:var(--text-primary); font-family:var(--font-body); font-size:15px;
}
.cs-page__notify input:focus{ outline:none; border-color:var(--accent-interactive); }

.cs-page__social{ display:flex; gap:var(--space-4); margin-top:var(--space-4); }
.cs-page__social a{
  width:38px; height:38px; border-radius:50%; border:1px solid var(--border-strong);
  display:flex; align-items:center; justify-content:center; color:var(--text-secondary);
  transition:all 150ms ease-out;
}
.cs-page__social a:hover{ border-color:var(--accent-interactive); color:var(--accent-interactive); }
.cs-page__social svg{ width:16px; height:16px; }

.cs-page__theme-toggle{
  position:fixed; top:20px; right:20px;
  display:inline-flex; align-items:center; gap:8px;
  background:var(--surface-card); border:1px solid var(--border-strong); border-radius:20px;
  padding:7px 14px; font-size:13px; font-family:var(--font-body); color:var(--text-primary);
  cursor:pointer;
}
