/* ====================================================
   DESIGN TOKENS
   Cool dark canvas, coral + cyan accents. Premium broadcast aesthetic.
   ==================================================== */
:root {
  /* Surfaces — cool blue-tinted dark stack */
  --surface-0: #050810;     /* page bg — cool blue-black */
  --surface-1: #0a0f1a;     /* elevated cards */
  --surface-2: #111827;     /* tinted panels */
  --surface-dark: #030610;  /* deepest dark — used for spotlight sections */
  --surface-dark-2: #080b15;

  /* Ink — cool blue-white text on cool dark surfaces */
  --ink-1: #f0f4ff;         /* primary text — cool blue-white */
  --ink-2: rgba(240,244,255,0.72);  /* secondary text */
  --ink-3: rgba(240,244,255,0.45);  /* muted / labels */
  --ink-on-dark: #f0f4ff;
  --ink-on-dark-2: rgba(240,244,255,0.72);
  --ink-on-dark-3: rgba(240,244,255,0.45);

  /* Lines — blue-tinted */
  --line-1: rgba(136,146,176,0.18);
  --line-2: rgba(136,146,176,0.10);
  --line-on-dark: rgba(136,146,176,0.18);

  /* Accents — coral red + electric cyan, mirroring OpenClaw */
  --signal: #ff4d4d;        /* primary accent — coral red */
  --signal-soft: rgba(255,77,77,0.15);  /* coral tint on dark */
  --beacon: #00e5cc;        /* secondary accent — electric cyan */
  --beacon-dark: #14b8a6;

  /* Effects — deeper shadows for dark canvas */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.4), 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.5), 0 2px 6px rgba(0,0,0,0.35);
  --shadow-lg: 0 24px 60px -12px rgba(0,0,0,0.6), 0 8px 20px -4px rgba(0,0,0,0.4);

  /* Glow effects — for CTAs, halos, accent surfaces */
  --glow-signal: 0 0 40px rgba(255,77,77,0.35), 0 0 80px rgba(255,77,77,0.15);
  --glow-signal-strong: 0 0 60px rgba(255,77,77,0.55), 0 0 120px rgba(255,77,77,0.25);
  --glow-beacon: 0 0 30px rgba(0,229,204,0.25);
}

/* ====================================================
   RESET & BASE
   ==================================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--surface-0);
  color: var(--ink-1);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
}
/* Noise removed — was causing mobile rendering issues with mix-blend-mode */

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 2; }
@media (max-width: 640px) { .container { padding: 0 20px; } }

/* ====================================================
   MOTION — scroll-triggered reveals
   ==================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal][data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal][data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal][data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal][data-reveal-delay="4"] { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ====================================================
   TYPOGRAPHY SYSTEM
   ==================================================== */
.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 600;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.eyebrow.on-dark { color: var(--ink-on-dark-2); }
.eyebrow.accent { color: var(--signal); }

h1, h2, h3, h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ink-1);
}
h1 { font-size: clamp(40px, 7vw, 88px); font-weight: 700; letter-spacing: -0.035em; }
h2 { font-size: clamp(32px, 5vw, 56px); font-weight: 700; letter-spacing: -0.03em; }
h3 { font-size: clamp(20px, 2.5vw, 26px); font-weight: 700; letter-spacing: -0.02em; }
h4 { font-size: 17px; font-weight: 600; }

em.serif-italic {
  font-style: normal;
  font-weight: 600;
  color: var(--signal);
}

.lead {
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 56ch;
}

/* ====================================================
   NAV
   ==================================================== */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(5, 8, 16, 0.72);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--line-1);
  transition: background 0.28s ease, border-color 0.28s ease;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.025em;
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--ink-1);
}
.logo-mark {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--ink-1);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.logo-mark::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--signal);
  border-radius: 50%;
  box-shadow: 0 0 0 0 var(--signal);
  animation: signal-pulse 2s infinite;
}
@keyframes signal-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,77,77,0.7); }
  70% { box-shadow: 0 0 0 8px rgba(255,77,77,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,77,77,0); }
}
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  color: var(--ink-2); text-decoration: none; font-size: 14.5px;
  font-weight: 500; transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: var(--ink-1); }
.nav-cta { display: flex; gap: 10px; align-items: center; }

/* ====================================================
   BUTTONS
   ==================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px; border-radius: 100px;
  font-size: 14.5px; font-weight: 500;
  font-family: 'Inter', sans-serif;
  text-decoration: none; cursor: pointer; border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-ghost { color: var(--ink-1); background: transparent; }
.btn-ghost:hover { background: rgba(240,244,255,0.08); }
.btn-primary {
  background: var(--signal); color: #fff;
}
.btn-primary:hover {
  background: #ff6666;
  transform: translateY(-1px);
  box-shadow: var(--glow-signal);
}
.btn-large { padding: 16px 28px; font-size: 15px; }
.btn-xl { padding: 18px 32px; font-size: 16px; }
.btn-arrow { transition: transform 0.2s; display: inline-block; }
.btn:hover .btn-arrow { transform: translateX(3px); }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
}

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.2s;
  margin-left: 4px;
}
.hamburger:hover { background: var(--surface-2); }
.hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--ink-1);
  border-radius: 2px;
  transition: all 0.25s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 880px) {
  .hamburger { display: flex; }
}

/* ===== NAV DARK (transparent over hero) ===== */
nav.nav-dark {
  background: transparent;
  border-color: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  box-shadow: none;
}
nav.nav-dark .logo         { color: var(--ink-on-dark); }
nav.nav-dark .logo-mark    { background: var(--ink-on-dark); }
nav.nav-dark .nav-links a  { color: rgba(240,244,255,0.75); }
nav.nav-dark .nav-links a:hover { color: var(--ink-on-dark); }
nav.nav-dark .hamburger span { background: var(--ink-on-dark); }
nav.nav-dark .hamburger:hover { background: rgba(240,244,255,0.08); }
nav.nav-dark .btn-ghost    { color: rgba(240,244,255,0.85); border-color: rgba(240,244,255,0.25); }
nav.nav-dark .btn-ghost:hover { background: rgba(240,244,255,0.08); color: var(--ink-on-dark); }
nav.nav-dark .btn-primary  { background: var(--signal); color: #fff; }
nav.nav-dark .btn-primary:hover { background: #ff6666; box-shadow: var(--glow-signal); }

/* Mobile menu drawer */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--surface-0);
  border-bottom: 1px solid var(--line-2);
  padding: 24px 32px 32px;
  z-index: 99;
  box-shadow: 0 8px 32px rgba(12,12,10,0.08);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  font-size: 22px;
  font-weight: 600;
  color: var(--ink-1);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-2);
  letter-spacing: -0.02em;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--signal); }
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu .mobile-cta {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-menu .btn {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 16px;
  font-size: 15px;
  border-radius: 100px;
  border-bottom: none;
}
.mobile-menu .btn-primary {
  color: #fff;
  background: var(--signal);
}
.mobile-menu .btn-primary:hover { background: #ff6666; box-shadow: var(--glow-signal); }

/* ====================================================
   SECTIONS
   ==================================================== */
section { padding: 120px 0; position: relative; background: var(--surface-0); }
@media (max-width: 720px) { section { padding: 72px 0; } }

.section-head { margin-bottom: 72px; max-width: 720px; }
.section-head h2 { margin-bottom: 24px; max-width: 18ch; }
.section-head h2 em { color: var(--ink-3); font-style: normal; font-weight: 600; }
@media (max-width: 720px) {
  .section-head { margin-bottom: 48px; }
  .section-head h2 { font-size: clamp(32px, 9vw, 44px); max-width: 14ch; }
  .section-head .lead { font-size: 16px; }
}

/* ====================================================
   FOOTER
   ==================================================== */
footer {
  background: var(--surface-dark);
  color: var(--ink-on-dark-2);
  padding: 88px 0 40px;
  border-radius: 32px 32px 0 0;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 36px; } .footer-brand { grid-column: span 3; margin-bottom: 16px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } .footer-brand { grid-column: span 2; } }
.footer-brand .logo { color: var(--ink-on-dark); margin-bottom: 20px; }
.footer-brand p {
  font-size: 14.5px;
  max-width: 32ch;
  color: var(--ink-on-dark-2);
  line-height: 1.5;
}
footer h4 {
  color: var(--ink-on-dark);
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  font-weight: 600;
}
footer ul { list-style: none; }
footer li { margin-bottom: 14px; }
footer a {
  color: var(--ink-on-dark-2);
  text-decoration: none;
  font-size: 14.5px;
  transition: color 0.2s;
}
footer a:hover { color: var(--ink-on-dark); }
.footer-bottom {
  padding-top: 36px;
  border-top: 1px solid var(--line-on-dark);
  display: flex; justify-content: space-between;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  flex-wrap: wrap; gap: 16px;
  color: var(--ink-on-dark-3);
}

/* ====================================================
   HERO
   ==================================================== */
.hero {
  background: var(--surface-0);
  color: var(--ink-on-dark);
  margin-top: -73px;
  padding: 169px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 900px 700px at 78%  0%,  rgba(255, 77, 77, 0.42), transparent 60%),
    radial-gradient(ellipse 700px 550px at  8% 50%,  rgba(153, 27, 27, 0.28), transparent 55%),
    radial-gradient(ellipse 500px 400px at 95% 100%, rgba(0, 229, 204, 0.08), transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 1100px 600px at 50% 38%, rgba(255,77,77,0.10), transparent 65%),
    linear-gradient(180deg, transparent 60%, rgba(5,8,16,0.6) 100%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; text-align: center; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px 7px 12px;
  border-radius: 100px;
  background: rgba(240, 244, 255, 0.06);
  border: 1px solid rgba(240, 244, 255, 0.1);
  font-size: 13.5px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: var(--ink-on-dark-2);
  margin-bottom: 36px;
}
.hero-badge .live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--beacon);
  box-shadow: 0 0 12px var(--beacon);
  animation: pulse-dot 1.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero h1 {
  margin-bottom: 28px;
  max-width: 17ch;
  margin-left: auto;
  margin-right: auto;
  color: var(--ink-on-dark);
  font-size: clamp(44px, 9.5vw, 120px);
  letter-spacing: -0.045em;
  line-height: 1.02;
}
.hero h1 em {
  font-style: normal;
  font-weight: 700;
  color: var(--signal);
  text-shadow: 0 0 40px rgba(255,77,77,0.4);
}
.hero-sub {
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.5;
  color: var(--ink-on-dark-2);
  max-width: 58ch;
  margin: 0 auto 44px;
}
.hero-badge { margin-left: auto; margin-right: auto; }
@media (max-width: 720px) {
  .hero { padding: 137px 0 56px; }
  .hero h1 { max-width: 18ch; margin-bottom: 24px; letter-spacing: -0.035em; }
  .hero-sub { margin-bottom: 32px; }
  .hero-ctas { margin-bottom: 56px; }
  .btn-xl { padding: 14px 22px; font-size: 14.5px; width: 100%; justify-content: center; }
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 88px; justify-content: center; }
.btn-hero-primary {
  background: var(--signal); color: #fff;
  box-shadow: var(--glow-signal);
}
.btn-hero-primary:hover {
  background: #ff6666;
  transform: translateY(-1px);
  box-shadow: var(--glow-signal-strong);
}
.player-cue { justify-content: center; }
.player-widget { margin-left: auto; margin-right: auto; }

/* ====================================================
   LIVE PLAYER WIDGET — fixed waveform
   ==================================================== */
.player-widget {
  background: rgba(240, 244, 255, 0.04);
  border: 1px solid rgba(240, 244, 255, 0.1);
  border-radius: 24px;
  padding: 24px;
  max-width: 760px;
  backdrop-filter: blur(20px);
  box-shadow: 0 32px 80px -20px rgba(0,0,0,0.4);
}
.player-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
  gap: 16px;
}
.player-station {
  display: flex; align-items: center; gap: 14px;
  min-width: 0;
}
.station-art {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--signal), #ff7878);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 8px 20px -4px rgba(255,77,77,0.4);
}
.station-info { min-width: 0; }
.station-name {
  font-weight: 600; font-size: 15.5px;
  color: var(--ink-on-dark);
  margin-bottom: 2px;
}
.station-track {
  font-size: 12.5px;
  color: var(--ink-on-dark-2);
  font-family: 'Inter', sans-serif;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.player-meta {
  display: flex; align-items: center; gap: 18px;
  font-size: 12px; font-family: 'Inter', sans-serif;
  color: var(--ink-on-dark-2);
  flex-shrink: 0;
}
.listener-count { display: flex; align-items: center; gap: 6px; }
.listener-count::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--beacon);
  box-shadow: 0 0 6px var(--beacon);
}
@media (max-width: 600px) {
  .player-meta { display: none; }
}

/* WAVEFORM — fixed with proper sizing */
.waveform {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2px;
  height: 88px;
  margin-bottom: 20px;
  padding: 0 4px;
}
.wave-bar {
  flex: 1 1 auto;
  background: linear-gradient(180deg, var(--signal) 0%, rgba(255,77,77,0.35) 100%);
  border-radius: 2px;
  min-height: 8px;
  animation: wave-anim 1.6s ease-in-out infinite;
  transform-origin: center;
}
@keyframes wave-anim {
  0%, 100% { transform: scaleY(0.3); }
  50% { transform: scaleY(1); }
}

.player-controls {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(240,244,255,0.08);
}
.play-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--ink-on-dark);
  color: #050810;
  border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 14px;
  transition: transform 0.2s, background 0.2s;
  padding-left: 3px;
}
.play-btn:hover { transform: scale(1.06); background: var(--beacon); }
.play-btn.playing { background: var(--beacon); padding-left: 0; }
.player-caption {
  font-size: 11.5px;
  color: var(--ink-on-dark-3);
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.02em;
}

.waveform.paused .wave-bar { animation-play-state: paused; }

/* Player cue — invites the user to press play */
.player-cue {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  font-size: 13.5px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  color: var(--ink-on-dark-2);
  transition: opacity 0.3s ease;
}
.player-cue.hidden { opacity: 0; }
.cue-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--beacon);
  box-shadow: 0 0 10px var(--beacon);
  animation: pulse-dot 1.4s ease-in-out infinite;
  flex-shrink: 0;
}
.cue-arrow { color: var(--ink-on-dark-3); }

@keyframes play-cue-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,77,77,0.55); }
  70%  { box-shadow: 0 0 0 13px rgba(255,77,77,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,77,77,0); }
}
.play-btn.cue-pulse { animation: play-cue-pulse 2.4s ease-out infinite; }

/* ====================================================
   MARQUEE / LOGOS
   ==================================================== */
.marquee-section {
  padding: 56px 0;
  background: var(--surface-0);
  border-bottom: 1px solid var(--line-2);
  overflow: hidden;
  position: relative;
}
.marquee-label {
  text-align: center;
  margin-bottom: 32px;
}
.marquee-wrapper {
  position: relative;
  overflow: hidden;
}
/* Fade edges so marquee items don't bleed past container */
.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, var(--surface-0), transparent);
}
.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(270deg, var(--surface-0), transparent);
}
.marquee {
  display: flex;
  gap: 64px;
  animation: scroll 40s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink-2);
  display: flex; align-items: center; gap: 16px;
  white-space: nowrap;
}
.marquee-item::after {
  content: '✦';
  color: var(--signal);
  font-size: 14px;
  margin-left: 8px;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ====================================================
   HOW IT WORKS — clean, Radio.co-inspired
   ==================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
@media (max-width: 880px) {
  .steps { grid-template-columns: repeat(2, 1fr); gap: 48px 32px; }
}
@media (max-width: 520px) {
  .steps { grid-template-columns: 1fr; gap: 56px; }
}
.step {
  /* No borders, no dividers, no editorial tricks. Just content. */
}
.step h3 {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--ink-1);
}
.step p {
  font-size: 15.5px;
  color: var(--ink-2);
  line-height: 1.55;
}
@media (max-width: 520px) {
  .step h3 { font-size: 26px; }
  .step p { font-size: 16px; }
}
.step-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  color: var(--signal);
  margin-bottom: 24px;
}
.step-icon svg { width: 100%; height: 100%; display: block; }
@media (max-width: 520px) {
  .step-icon { width: 52px; height: 52px; margin-bottom: 20px; }
}

/* ====================================================
   FEATURES BENTO GRID
   ==================================================== */
.features-section { background: var(--surface-0); }

.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 16px;
}
@media (max-width: 880px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
}

.bento-card {
  background: var(--surface-1);
  border: 1px solid var(--line-1);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}
.bento-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(240,244,255,0.22);
}
.bento-card h3 {
  margin-bottom: 8px;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink-1);
}
.bento-card p {
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.5;
  max-width: 34ch;
}
.bento-stat {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  display: block;
}

/* Bento sizing */
.bento-card.wide { grid-column: span 4; }
.bento-card.full { grid-column: span 6; }
.bento-card.med { grid-column: span 3; }
.bento-card.small { grid-column: span 2; }
@media (max-width: 880px) {
  .bento-card.wide, .bento-card.med, .bento-card.small, .bento-card.full { grid-column: span 2; }
}

/* Featured bento cards */
.bento-card.dark {
  background: var(--surface-dark);
  color: var(--ink-on-dark);
  border-color: rgba(0,229,204,0.25);
  box-shadow: inset 0 0 80px rgba(0,229,204,0.04);
}
.bento-card.dark p { color: var(--ink-on-dark-2); }
.bento-card.dark .bento-stat { color: var(--ink-on-dark-3); }
.bento-card.dark:hover { border-color: rgba(0,229,204,0.5); }
.bento-card.accent {
  background: var(--signal);
  color: white;
  border-color: var(--signal);
}
.bento-card.accent h3, .bento-card.accent p { color: white; }
.bento-card.accent .bento-stat { color: rgba(255,255,255,0.7); }
.bento-card.beacon {
  background: var(--beacon);
  color: var(--ink-1);
  border-color: var(--beacon);
}
.bento-card.beacon .bento-stat { color: rgba(12,12,10,0.55); }

/* Bento visual elements */
.uptime-display {
  margin-top: auto;
  padding-top: 20px;
}
.uptime-bars {
  display: flex; gap: 3px; height: 32px; margin-bottom: 10px;
}
.uptime-bar {
  flex: 1;
  background: var(--beacon);
  border-radius: 2px;
  opacity: 0.85;
}
.uptime-bar.warn { background: #ffa726; opacity: 0.6; }
.uptime-meta {
  display: flex; justify-content: space-between;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--ink-on-dark-3);
}

.number-display {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(48px, 6vw, 72px);
  letter-spacing: -0.04em;
  line-height: 1;
  margin: auto 0 12px;
}
.number-display em {
  font-style: normal;
  color: rgba(255,255,255,0.5);
  font-size: 0.45em;
  margin-left: 4px;
  font-weight: 500;
}
.bento-card.beacon .number-display em { color: rgba(12,12,10,0.5); }

.mini-chart-wrap {
  margin-top: auto;
}
.mini-chart {
  display: flex; align-items: flex-end; gap: 4px;
  height: 60px;
  margin-bottom: 10px;
}
.mini-bar {
  flex: 1; background: var(--ink-1); border-radius: 2px;
  opacity: 0.9;
}
.mini-bar.peak {
  background: var(--signal);
  opacity: 1;
  box-shadow: 0 0 0 1px rgba(255,77,77,0.2);
}
.chart-meta {
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.peak-callout {
  color: var(--signal);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}

/* ====================================================
   BEGINNER BAND
   ==================================================== */
.beginner-section {
  background: var(--surface-2);
  position: relative;
}
.beginner-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 880px) {
  .beginner-inner { grid-template-columns: 1fr; gap: 48px; }
}
.beginner-inner h2 { margin-bottom: 24px; max-width: 16ch; }
.beginner-inner p {
  font-size: 17px;
  color: var(--ink-2);
  margin-bottom: 32px;
  max-width: 48ch;
  line-height: 1.55;
}

.checklist {
  list-style: none;
  background: var(--surface-1);
  border: 1px solid var(--line-1);
  border-radius: 20px;
  padding: 12px 28px;
  box-shadow: var(--shadow-sm);
}
.checklist li {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-2);
  font-size: 15px;
  line-height: 1.45;
}
.checklist li:last-child { border-bottom: none; }
.checklist .check {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--signal); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  flex-shrink: 0; margin-top: 1px;
}
.checklist strong { font-weight: 600; }
.checklist span { color: var(--ink-2); }

/* ====================================================
   BILLING TOGGLE
   ==================================================== */
.billing-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}
.billing-toggle {
  display: inline-flex;
  background: var(--surface-2);
  border: 1px solid var(--line-1);
  border-radius: 100px;
  padding: 4px;
  position: relative;
}
.billing-toggle button {
  border: none;
  background: transparent;
  padding: 10px 22px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  cursor: pointer;
  border-radius: 100px;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.billing-toggle button.active {
  color: var(--ink-1);
}
.billing-toggle .save-pill {
  background: var(--signal);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.06em;
}
.billing-toggle .toggle-pill {
  position: absolute;
  top: 4px;
  bottom: 4px;
  background: var(--surface-1);
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1), width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

/* Price counter animation */
.price-amount .amount {
  transition: opacity 0.2s ease;
}
.price-amount .amount.changing {
  opacity: 0;
}
.price-savings {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--signal);
  margin-top: -8px;
  margin-bottom: 20px;
  min-height: 1.2em;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.price-card.featured .price-savings { color: var(--beacon); }
.price-savings.hidden { opacity: 0; }

/* ====================================================
   PRICING
   ==================================================== */
.pricing-section {
  background: var(--surface-0);
  border-top: 1px solid var(--line-2);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 880px) { .pricing-grid { grid-template-columns: 1fr; } }

.price-card {
  background: var(--surface-1);
  border: 1px solid var(--line-1);
  border-radius: 24px;
  padding: 36px 32px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  position: relative;
  display: flex; flex-direction: column;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(240,244,255,0.22);
}
.price-card.featured {
  background: var(--surface-1);
  color: var(--ink-on-dark);
  border-color: var(--signal);
  box-shadow: var(--glow-signal);
}
.price-card.featured:hover {
  border-color: var(--signal);
  box-shadow: var(--glow-signal-strong);
}
.price-card.featured::before {
  content: 'Most popular';
  position: absolute; top: -14px; left: 32px;
  background: var(--signal); color: #fff;
  padding: 6px 14px; border-radius: 100px;
  font-size: 11.5px; font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase; letter-spacing: 0.08em;
  box-shadow: var(--glow-signal);
}
.price-name {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  color: var(--ink-3);
}
.price-card.featured .price-name { color: var(--ink-on-dark-3); }
.price-amount {
  font-family: 'Inter', sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.price-amount .currency {
  font-size: 28px;
  font-weight: 600;
  color: var(--ink-3);
  line-height: 1;
  align-self: flex-start;
  margin-top: 8px;
}
.price-card.featured .price-amount .currency { color: var(--ink-on-dark-3); }
.price-amount .period {
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--ink-3);
  margin-left: 4px;
  line-height: 1;
  align-self: flex-end;
  margin-bottom: 8px;
}
.price-card.featured .price-amount .period { color: var(--ink-on-dark-3); }
.price-desc {
  font-size: 15px;
  margin-bottom: 28px;
  color: var(--ink-2);
  line-height: 1.45;
}
.price-card.featured .price-desc { color: var(--ink-on-dark-2); }
.price-features {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}
.price-features li {
  padding: 12px 0;
  font-size: 14.5px;
  display: flex; gap: 12px;
  border-bottom: 1px solid var(--line-2);
  color: var(--ink-1);
}
.price-card.featured .price-features li {
  border-bottom-color: rgba(240,244,255,0.08);
  color: var(--ink-on-dark);
}
.price-features li::before {
  content: '→'; color: var(--signal);
  font-weight: 500;
}
.price-card.featured .price-features li::before { color: var(--beacon); }
.price-cta {
  width: 100%;
  padding: 15px;
  border-radius: 100px;
  background: var(--surface-2); color: var(--ink-1);
  text-align: center; text-decoration: none;
  font-weight: 500; font-size: 14.5px;
  display: block;
  border: 1px solid var(--line-1);
  transition: all 0.2s;
}
.price-cta:hover {
  background: var(--surface-1);
  border-color: rgba(240,244,255,0.3);
  transform: translateY(-1px);
}
.price-card.featured .price-cta {
  background: var(--signal); color: #fff;
  border-color: var(--signal);
}
.price-card.featured .price-cta:hover {
  background: #ff6666;
  box-shadow: var(--glow-signal);
}

/* Pricing footnote — quiet reseller link */
.pricing-footnote {
  margin-top: 40px;
  text-align: center;
}
.reseller-line {
  font-size: 15px;
  color: var(--ink-2);
}
.reseller-line a {
  color: var(--ink-1);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--line-1);
  padding-bottom: 1px;
  transition: border-color 0.2s, color 0.2s;
}
.reseller-line a:hover {
  color: var(--signal);
  border-bottom-color: var(--signal);
}

/* ====================================================
   COMPARISON TABLE
   ==================================================== */
.comparison-section {
  background: var(--surface-2);
  border-top: 1px solid var(--line-1);
  border-bottom: 1px solid var(--line-1);
}
.comparison-table {
  background: var(--surface-1);
  border: 1px solid var(--line-1);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.comparison-cell {
  padding: 20px 24px;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-right: 1px solid var(--line-2);
  min-height: 64px;
  line-height: 1.35;
}
.comparison-cell:last-child { border-right: none; }
.comparison-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--line-2);
  align-items: stretch;
}
.comparison-row:last-child { border-bottom: none; }
.comparison-header {
  background: var(--surface-0);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  font-weight: 600;
}
.comparison-header.us {
  background: var(--ink-1);
  color: var(--surface-0);
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  text-transform: none;
  letter-spacing: -0.01em;
  font-weight: 500;
}
.comparison-label {
  color: var(--ink-2);
  font-weight: 500;
}
.comparison-value.us {
  background: rgba(255,77,77,0.04);
  color: var(--ink-1);
  font-weight: 600;
}
.comparison-value.them {
  color: var(--ink-3);
}
.check-yes { color: var(--signal); font-weight: 700; }
.check-no { color: var(--ink-3); opacity: 0.4; }

.comparison-footnote {
  margin-top: 16px;
  font-size: 12px;
  color: var(--ink-3);
  text-align: right;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.01em;
}

@media (max-width: 720px) {
  .comparison-row {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
  .comparison-cell {
    padding: 14px 12px;
    font-size: 13px;
  }
  .comparison-header { font-size: 10px; padding: 12px 10px; }
  .comparison-header.us { font-size: 14px; }
}

/* ====================================================
   TESTIMONIAL
   ==================================================== */
.testimonial-section {
  background: var(--surface-dark);
  color: var(--ink-on-dark);
  border-radius: 32px 32px 0 0;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}
.testimonial-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 600px 400px at 50% 0%, rgba(0, 229, 204, 0.08), transparent 70%);
  pointer-events: none;
}
.testimonial { max-width: 920px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.testimonial-quote {
  font-family: 'Inter', sans-serif;
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  color: var(--ink-on-dark);
}
.testimonial-translation {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  color: var(--ink-on-dark-3);
  max-width: 64ch;
  margin: 0 auto 48px;
  line-height: 1.5;
}
.testimonial-translation::before { content: ''; }
.testimonial-quote em { color: var(--beacon); font-style: normal; font-weight: 700; }
.testimonial-quote .open-quote {
  color: var(--signal);
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 700;
  margin-right: 4px;
}
.testimonial-author { display: inline-flex; align-items: center; gap: 16px; }
.author-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--signal), var(--beacon));
  border: 2px solid var(--surface-dark);
  box-shadow: 0 0 0 1px rgba(240,244,255,0.15);
}
.author-info { text-align: left; font-size: 14.5px; }
.author-info strong { display: block; color: var(--ink-on-dark); font-weight: 600; }
.author-info span {
  color: var(--ink-on-dark-3);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
}

/* Stats bar inside dark testimonial */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid var(--line-on-dark);
  position: relative;
  z-index: 2;
}
@media (max-width: 720px) { .stats-bar { grid-template-columns: repeat(2, 1fr); } }
.stat {
  text-align: center;
}
.stat-num {
  font-family: 'Inter', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink-on-dark);
  margin-bottom: 8px;
}
.stat-num em { color: var(--signal); font-style: normal; font-weight: 600; }
.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-on-dark-3);
}

/* ====================================================
   FINAL CTA
   ==================================================== */
.final-cta {
  text-align: center;
  padding: 140px 0;
  background: var(--surface-0);
}
.final-cta h2 {
  font-size: clamp(48px, 7vw, 88px);
  margin-bottom: 28px;
  max-width: 16ch;
  margin-left: auto; margin-right: auto;
}
.final-cta h2 em { font-style: normal; font-weight: 700; color: var(--signal); }
.final-cta p {
  font-size: 19px;
  color: var(--ink-2);
  margin-bottom: 44px;
  max-width: 52ch;
  margin-left: auto; margin-right: auto;
}

/* ====================================================
   CONTACT PAGE
   ==================================================== */
.contact-page { padding: 80px 0 120px; }
@media (max-width: 720px) { .contact-page { padding: 56px 0 80px; } }

.page-header { max-width: 720px; margin-bottom: 64px; }
.page-header h1 {
  font-size: clamp(36px, 6vw, 64px);
  margin-bottom: 24px;
  letter-spacing: -0.035em;
  font-weight: 700;
}
.page-header h1 em { font-style: normal; color: var(--signal); font-weight: 700; }
.page-header p {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--ink-2);
  line-height: 1.5;
  max-width: 56ch;
}

/* Two-col layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* Left: contact paths */
.contact-paths { display: flex; flex-direction: column; gap: 16px; }
.path-card {
  background: var(--surface-1);
  border: 1px solid var(--line-1);
  border-radius: 20px;
  padding: 28px;
  text-decoration: none;
  color: var(--ink-1);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  position: relative;
}
.path-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--ink-3);
}
.path-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--surface-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-1);
  flex-shrink: 0;
}
.path-icon svg { display: block; }
.path-title {
  font-family: 'Inter', sans-serif;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.path-meta {
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  margin-bottom: 4px;
}
.path-desc {
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.5;
}
.path-arrow {
  margin-top: 8px;
  font-size: 13px;
  color: var(--ink-3);
  font-family: 'Inter', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.path-arrow-icon { transition: transform 0.2s; display: inline-block; }
.path-card:hover .path-arrow-icon { transform: translateX(3px); }

.hours-card {
  background: transparent;
  border: 1px solid var(--line-2);
  border-radius: 20px;
  padding: 24px 28px;
  margin-top: 8px;
}
.hours-title {
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  margin-bottom: 14px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 6px 0;
  color: var(--ink-2);
}
.hours-row strong { color: var(--ink-1); font-weight: 500; }

/* Right: form */
.form-card {
  background: var(--surface-1);
  border: 1px solid var(--line-1);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 720px) { .form-card { padding: 28px 24px; } }
.form-header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-2);
}
.form-header h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 8px;
}
.form-header p {
  font-size: 15px;
  color: var(--ink-2);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; gap: 20px; }
}
.form-group {
  margin-bottom: 20px;
  position: relative;
}
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-1);
  margin-bottom: 8px;
}
.form-label .required { color: var(--signal); margin-left: 2px; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  background: var(--surface-0);
  border: 1px solid var(--line-1);
  border-radius: 10px;
  color: var(--ink-1);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--ink-3); }
.form-input:hover, .form-select:hover, .form-textarea:hover { border-color: rgba(240,244,255,0.28); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--signal);
  background: var(--surface-2);
  box-shadow: 0 0 0 4px rgba(255,77,77,0.18);
}
.form-textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.5;
}
.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23f0f4ff' stroke-opacity='0.55' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}
.form-select option { background: var(--surface-1); color: var(--ink-1); }

.char-counter {
  position: absolute;
  bottom: 12px;
  right: 16px;
  font-size: 11.5px;
  color: var(--ink-3);
  font-family: 'Inter', sans-serif;
  pointer-events: none;
  background: var(--surface-0);
  padding: 0 4px;
}

.privacy-note {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.5;
  margin: 20px 0 24px;
  padding: 16px;
  background: var(--surface-2);
  border-radius: 10px;
}
.privacy-note a {
  color: var(--ink-1);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--signal);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.form-submit:hover {
  background: #ff6666;
  transform: translateY(-1px);
  box-shadow: var(--glow-signal);
}
.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.form-submit .submit-arrow { transition: transform 0.2s; }
.form-submit:hover .submit-arrow { transform: translateX(3px); }

.form-success {
  display: none;
  text-align: center;
  padding: 24px 0;
}
.form-success.visible { display: block; }
.form-card.submitted .form-fields { display: none; }

.success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--beacon);
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--glow-beacon);
}
.success-icon svg { color: #050810; }
.form-success h3 {
  font-size: 28px;
  margin-bottom: 12px;
}
.form-success p {
  color: var(--ink-2);
  margin-bottom: 24px;
  max-width: 38ch;
  margin-left: auto;
  margin-right: auto;
}
/* ====================================================
   LEGAL PAGES (privacy.html, terms.html)
   ==================================================== */
.legal-page {
  padding: 80px 0 120px;
}
@media (max-width: 720px) { .legal-page { padding: 56px 0 80px; } }

.legal-header {
  margin-bottom: 48px;
}
.legal-header h1 {
  font-size: clamp(36px, 6vw, 56px);
  margin-bottom: 16px;
  letter-spacing: -0.035em;
}
.legal-date {
  font-size: 14px;
  color: var(--ink-3);
}

.legal-page #legal-content {
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.6;
}
.legal-page #legal-content p {
  margin-bottom: 20px;
}
.legal-page #legal-content h2 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink-1);
  margin-top: 48px;
  margin-bottom: 16px;
}
.legal-page #legal-content h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--ink-1);
  margin-top: 32px;
  margin-bottom: 12px;
}
.legal-page #legal-content ul,
.legal-page #legal-content ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
.legal-page #legal-content li {
  margin-bottom: 8px;
}
.legal-page #legal-content a {
  color: var(--signal);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,77,77,0.3);
  padding-bottom: 1px;
  transition: border-color 0.2s;
}
.legal-page #legal-content a:hover {
  border-bottom-color: var(--signal);
}
