:root {
  color-scheme: dark;
  --bg: #111513;
  --surface: #18201c;
  --surface-2: #202a24;
  --text: #f6f0e5;
  --muted: #b9b4aa;
  --accent: #f3bf62;
  --accent-dark: #352b18;
  --line: rgba(246, 240, 229, 0.12);
  --max: 1120px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 76% 8%, rgba(86, 125, 96, 0.16), transparent 28rem),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header,
footer,
main {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.site-header {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 1.2rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand img {
  display: block;
}

nav {
  display: flex;
  gap: 7px;
}

nav a {
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  text-decoration: none;
}

nav a:hover,
nav a:focus-visible,
nav a[aria-current="page"] {
  background: var(--surface-2);
  color: var(--text);
}

.hero {
  min-height: 670px;
  padding: 82px 5% 92px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.72fr);
  align-items: center;
  gap: clamp(50px, 9vw, 130px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.hero h1 {
  max-width: 690px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 5.7rem);
}

.hero-text {
  max-width: 630px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 0 21px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 750;
  text-decoration: none;
}

.button.primary {
  background: var(--accent);
  color: #211a0d;
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #ffd17d;
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.radio-card {
  width: min(100%, 355px);
  margin-inline: auto;
  padding: 25px;
  border: 1px solid rgba(243, 191, 98, 0.2);
  border-radius: 32px;
  background: linear-gradient(155deg, #26342c, #171d19 70%);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.35);
  transform: rotate(2deg);
}

.radio-card-top {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f28267;
  box-shadow: 0 0 0 5px rgba(242, 130, 103, 0.12);
}

.radio-orbit {
  width: 190px;
  height: 190px;
  margin: 40px auto 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(243, 191, 98, 0.2);
  border-radius: 50%;
  box-shadow:
    0 0 0 19px rgba(243, 191, 98, 0.035),
    0 0 0 43px rgba(243, 191, 98, 0.025);
}

.radio-core {
  width: 128px;
  height: 128px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-dark);
}

.station-line {
  height: 10px;
  margin: 11px auto;
  border-radius: 20px;
  background: rgba(246, 240, 229, 0.17);
}

.station-line.wide {
  width: 66%;
}

.station-line.short {
  width: 42%;
}

.controls {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.controls span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(246, 240, 229, 0.14);
}

.controls .play {
  width: 58px;
  height: 58px;
  background: var(--accent);
}

.features {
  padding: 94px 0 106px;
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 660px;
  margin-bottom: 45px;
}

.section-heading h2,
.privacy-callout h2,
.contact-intro h1,
.document-heading h1 {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.feature-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.feature-grid article,
.contact-grid article {
  min-height: 240px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(24, 32, 28, 0.72);
}

.feature-number {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.feature-grid h3,
.contact-grid h2 {
  margin: 58px 0 12px;
  font-size: 1.45rem;
}

.feature-grid p,
.contact-grid p {
  color: var(--muted);
}

.privacy-callout {
  margin-bottom: 96px;
  padding: clamp(30px, 6vw, 64px);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 35px;
  border-radius: 28px;
  background: var(--accent-dark);
}

.privacy-callout h2 {
  max-width: 690px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.text-link {
  color: var(--accent);
  font-weight: 750;
  text-decoration: none;
}

.text-link span {
  display: inline-block;
  margin-left: 5px;
  transition: transform 150ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.document-shell,
.contact-shell {
  max-width: 900px;
  padding: 78px 0 100px;
}

.document-heading {
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line);
}

.document-heading p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
}

.policy-document {
  max-width: 760px;
  padding-top: 54px;
}

.policy-document section {
  margin-bottom: 40px;
}

.policy-document h2 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.policy-document p,
.contact-intro > p {
  color: var(--muted);
}

.policy-document a,
.contact-note a {
  color: var(--accent);
}

.contact-intro {
  max-width: 720px;
  margin-bottom: 66px;
}

.contact-intro > p {
  max-width: 620px;
  margin: 22px 0 30px;
  font-size: 1.15rem;
}

.contact-grid {
  grid-template-columns: repeat(2, 1fr);
}

.contact-grid article {
  min-height: 310px;
}

.contact-note {
  margin-top: 18px;
  padding: 22px 25px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--muted);
}

.contact-note strong {
  color: var(--text);
}

footer {
  min-height: 120px;
  padding: 28px 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-brand {
  font-size: 1rem;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  text-decoration: none;
}

footer > p {
  margin: 0;
  text-align: right;
}

@media (max-width: 760px) {
  .site-header {
    min-height: 76px;
  }

  .site-header .brand span {
    display: none;
  }

  nav {
    gap: 2px;
  }

  nav a {
    padding-inline: 10px;
  }

  .hero {
    min-height: auto;
    padding: 62px 0 78px;
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 15vw, 4.8rem);
  }

  .radio-card {
    width: min(88%, 350px);
  }

  .feature-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .privacy-callout {
    align-items: start;
    flex-direction: column;
  }

  .contact-note,
  footer {
    align-items: start;
    flex-direction: column;
  }

  footer {
    padding: 35px 0;
    display: flex;
  }

  footer > p {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
  }
}
