/* ==========================================================================
   RadyoM — design tokens
   Palette pulled straight from the app mark: deep broadcast navy background,
   sunrise orange dial, signal gold, and VU-meter red.
   ========================================================================== */

:root{
  --navy-950: #0d1042;
  --navy-900: #12154f;
  --navy-800: #1b1f6b;
  --navy-700: #262b8a;
  --orange-500: #ff8a1e;
  --orange-400: #ffab47;
  --orange-300: #ffc978;
  --gold-400: #f5b942;
  --red-500: #e63329;
  --red-400: #ff5b4f;
  --cream-100: #fff7ea;
  --ink: #eef0ff;
  --ink-dim: #b7bbe8;
  --ink-faint: #7c81b8;

  --font-display: "Baloo 2", "Fredoka", ui-rounded, "Segoe UI", sans-serif;
  --font-body: "Manrope", "Inter", "Segoe UI", sans-serif;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --container: 1120px;
}

*, *::before, *::after{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  margin: 0;
  background: radial-gradient(120% 90% at 50% -10%, #1a1f6f 0%, var(--navy-950) 55%, #090a2e 100%);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img{ max-width: 100%; display: block; }

a{ color: inherit; text-decoration: none; }

.wrap{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3{
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  margin: 0;
}

p{ margin: 0; }

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-400);
}
.eyebrow::before{
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red-500);
  box-shadow: 0 0 0 4px rgba(230,51,41,.25);
}

/* ---------- header ---------- */

.site-header{
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(13, 16, 66, .72);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.site-header .wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand{
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand img{ height: 40px; width: auto; }
.brand .brand-name{ display:none; }

.site-nav{ display: flex; align-items: center; gap: 28px; }
.site-nav a{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-dim);
  transition: color .2s ease;
}
.site-nav a:hover, .site-nav a:focus-visible{ color: var(--gold-400); }

.nav-cta{
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--orange-500), var(--red-500));
  color: #fff !important;
  font-weight: 700 !important;
  box-shadow: 0 8px 20px -8px rgba(230,51,41,.7);
}

/* ---------- hero ---------- */

.hero{
  position: relative;
  padding: 88px 0 60px;
  overflow: hidden;
}

.signal-field{
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 620px;
  pointer-events: none;
  z-index: 0;
}
.signal-ring{
  position: absolute;
  left: 50%;
  top: 46%;
  border: 2px solid var(--gold-400);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%,-50%) scale(.5);
  animation: pulse-ring 4.5s ease-out infinite;
}
.signal-ring.r1{ width: 260px; height: 260px; animation-delay: 0s; }
.signal-ring.r2{ width: 260px; height: 260px; animation-delay: 1.1s; }
.signal-ring.r3{ width: 260px; height: 260px; animation-delay: 2.2s; }
.signal-ring.r4{ width: 260px; height: 260px; animation-delay: 3.3s; }

@keyframes pulse-ring{
  0%   { opacity: .55; transform: translate(-50%,-50%) scale(.35); border-color: var(--gold-400); }
  60%  { opacity: .18; border-color: var(--orange-400); }
  100% { opacity: 0;   transform: translate(-50%,-50%) scale(2.6); border-color: var(--red-400); }
}

.hero-inner{
  position: relative;
  z-index: 1;
  display: grid;
  gap: 40px;
  justify-items: center;
  text-align: center;
}

.hero-logo{
  width: 220px;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,.45));
}

.hero h1{
  font-size: clamp(34px, 5.4vw, 58px);
  max-width: 16ch;
  color: #fff;
}
.hero h1 .accent{ color: var(--orange-400); }

.hero .lede{
  max-width: 46ch;
  font-size: 18px;
  color: var(--ink-dim);
  margin-top: 18px;
}

.store-row{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 8px;
}

.store-btn{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  border-radius: var(--radius-md);
  background: #05061e;
  border: 1px solid rgba(255,255,255,.14);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.store-btn:hover, .store-btn:focus-visible{
  transform: translateY(-3px);
  border-color: var(--gold-400);
  background: #0a0c30;
}
.store-btn svg{ width: 26px; height: 26px; flex-shrink: 0; }
.store-btn .store-text{ text-align: left; line-height: 1.15; }
.store-btn .store-text small{ display:block; font-size: 11px; color: var(--ink-faint); text-transform: uppercase; letter-spacing: .06em; }
.store-btn .store-text strong{ font-family: var(--font-display); font-size: 17px; color: #fff; }

.hero-note{
  font-size: 13px;
  color: var(--ink-faint);
}

/* ---------- band / stats ---------- */

.band{
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
}
.band .wrap{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 32px 24px;
}
.band .stat{ text-align: center; }
.band .stat strong{
  display: block;
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--gold-400);
}
.band .stat span{ font-size: 13px; color: var(--ink-dim); }

/* ---------- sections ---------- */

section{ padding: 96px 0; }

.section-head{
  max-width: 640px;
  margin: 0 auto 52px;
  text-align: center;
  display: grid;
  gap: 14px;
}
.section-head h2{
  font-size: clamp(28px, 3.6vw, 40px);
  color: #fff;
}
.section-head p{ color: var(--ink-dim); font-size: 16.5px; }

.features-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.feature-card{
  padding: 30px 26px;
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
  border: 1px solid rgba(255,255,255,.08);
  display: grid;
  gap: 16px;
  transition: transform .2s ease, border-color .2s ease;
}
.feature-card:hover{ transform: translateY(-4px); border-color: rgba(245,185,66,.4); }

.feature-icon{
  width: 52px; height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--orange-500), var(--red-500));
}
.feature-icon svg{ width: 26px; height: 26px; stroke: #fff; }

.feature-card h3{ font-size: 19px; color: #fff; }
.feature-card p{ color: var(--ink-dim); font-size: 15px; }

/* ---------- how it works ---------- */

.steps{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step{
  position: relative;
  padding: 28px 24px 24px;
  border-radius: var(--radius-lg);
  background: var(--navy-900);
  border: 1px solid rgba(255,255,255,.08);
}
.step .step-num{
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-950);
  background: var(--gold-400);
  width: 30px; height: 30px;
  border-radius: 50%;
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.step h3{ font-size: 17px; color: #fff; margin-bottom: 8px; }
.step p{ color: var(--ink-dim); font-size: 14.5px; }

/* ---------- cta ---------- */

.cta{
  border-radius: var(--radius-lg);
  padding: 64px 40px;
  text-align: center;
  background:
    radial-gradient(120% 160% at 50% 0%, rgba(255,138,30,.35), transparent 60%),
    linear-gradient(150deg, var(--navy-800), var(--navy-950));
  border: 1px solid rgba(245,185,66,.25);
  display: grid;
  gap: 22px;
  justify-items: center;
}
.cta h2{ color: #fff; font-size: clamp(26px, 3.4vw, 36px); max-width: 20ch; }
.cta p{ color: var(--ink-dim); max-width: 44ch; }

/* ---------- footer ---------- */

.site-footer{
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 48px 0 32px;
}
.footer-grid{
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 28px;
}
.footer-brand{ display: flex; align-items: center; gap: 10px; }
.footer-brand img{ height: 30px; }
.footer-brand span{ font-family: var(--font-display); font-weight: 700; color: #fff; }

.footer-links{ display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a{ font-size: 14px; color: var(--ink-dim); }
.footer-links a:hover{ color: var(--gold-400); }

.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 20px;
  font-size: 13px;
  color: var(--ink-faint);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}

/* ---------- privacy page ---------- */

.legal-hero{
  padding: 70px 0 40px;
  text-align: center;
  display: grid;
  gap: 14px;
  justify-items: center;
}
.legal-hero h1{ color: #fff; font-size: clamp(30px, 4.4vw, 44px); }
.legal-hero p{ color: var(--ink-dim); max-width: 50ch; }

.legal-body{
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px 100px;
  display: grid;
  gap: 40px;
}
.legal-toc{
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  display: grid;
  gap: 8px;
}
.legal-toc strong{ font-family: var(--font-display); color: var(--gold-400); font-size: 13px; letter-spacing: .05em; text-transform: uppercase; }
.legal-toc ol{ margin: 6px 0 0; padding-left: 20px; columns: 2; gap: 20px; }
.legal-toc li{ font-size: 14px; margin-bottom: 6px; }
.legal-toc a{ color: var(--ink-dim); }
.legal-toc a:hover{ color: var(--gold-400); }

.legal-section{ display: grid; gap: 12px; scroll-margin-top: 100px; }
.legal-section h2{
  font-size: 22px;
  color: #fff;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.legal-section h2 .num{ color: var(--gold-400); font-size: 16px; }
.legal-section p, .legal-section li{ color: var(--ink-dim); font-size: 15.5px; }
.legal-section ul{ padding-left: 20px; display: grid; gap: 8px; }
.legal-section strong{ color: var(--ink); }

.legal-meta{
  font-size: 13px;
  color: var(--ink-faint);
  border-top: 1px dashed rgba(255,255,255,.12);
  padding-top: 18px;
}

.contact-card{
  border: 1px solid rgba(245,185,66,.3);
  background: rgba(245,185,66,.06);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  display: grid;
  gap: 6px;
}
.contact-card strong{ color: var(--gold-400); font-family: var(--font-display); }
.contact-card a{ color: #fff; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- responsive ---------- */

@media (max-width: 760px){
  .site-nav{ gap: 16px; }
  .site-nav .nav-links{ display: none; }
  .band .wrap{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .legal-toc ol{ columns: 1; }
}

@media (prefers-reduced-motion: reduce){
  .signal-ring{ animation: none; opacity: 0; }
  html{ scroll-behavior: auto; }
  .feature-card, .store-btn{ transition: none; }
}
