:root {
  --navy: #061527;
  --navy-2: #0b2138;
  --blue: #00b8ff;
  --aqua: #6af7ff;
  --gold: #ffc857;
  --orange: #ff8a3d;
  --white: #f8fbff;
  --muted: #b9c7d8;
  --line: rgba(255,255,255,.14);
  --shadow: 0 24px 80px rgba(0,0,0,.35);
  --radius: 24px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: radial-gradient(circle at top left, rgba(0,184,255,.16), transparent 28%),
              radial-gradient(circle at top right, rgba(255,200,87,.11), transparent 30%),
              var(--navy);
  color: var(--white);
  line-height: 1.6;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  background: var(--gold);
  color: #111;
  padding: .7rem 1rem;
  z-index: 999;
  border-radius: 999px;
}
.skip-link:focus { left: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6, 21, 39, .78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .8rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  color: #07111f;
  font-weight: 900;
  background: linear-gradient(135deg, var(--aqua), var(--gold));
  box-shadow: 0 12px 34px rgba(0,184,255,.26);
}

.brand strong { display: block; line-height: 1.1; }
.brand small { display: block; color: var(--muted); font-size: .76rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: .4rem;
}
.nav-links a {
  text-decoration: none;
  color: var(--muted);
  padding: .65rem .8rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .92rem;
}
.nav-links a:hover, .nav-links a:focus {
  background: rgba(255,255,255,.08);
  color: var(--white);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.08);
  color: var(--white);
  border-radius: 999px;
  padding: .65rem .9rem;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  display: grid;
  place-items: center;
  padding: 6rem 1rem 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,21,39,.98), rgba(6,21,39,.78), rgba(6,21,39,.92)),
    radial-gradient(circle at 78% 36%, rgba(0,184,255,.28), transparent 22%),
    radial-gradient(circle at 60% 65%, rgba(255,138,61,.25), transparent 20%),
    linear-gradient(135deg, #061527, #0e3556 42%, #081625);
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .28;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}
.hero-bg::after {
  content: "ANGUILLA AI FM";
  position: absolute;
  right: -3vw;
  bottom: 6vh;
  font-size: clamp(4rem, 12vw, 12rem);
  font-weight: 950;
  letter-spacing: -.08em;
  color: rgba(255,255,255,.04);
  white-space: nowrap;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  font-weight: 900;
  margin: 0 0 .7rem;
}

h1, h2, h3 { line-height: 1.05; margin: 0; }
h1 {
  max-width: 980px;
  font-size: clamp(3.4rem, 10vw, 8.3rem);
  letter-spacing: -.08em;
}
h2 {
  font-size: clamp(2.1rem, 5vw, 4rem);
  letter-spacing: -.05em;
}
h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  letter-spacing: -.03em;
}

.hero-copy {
  max-width: 760px;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  color: var(--muted);
  margin: 1.2rem 0 0;
}

.hero-actions, .section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 2rem;
}

.btn {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .92rem 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
}
.btn.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #111;
}
.btn.secondary {
  border-color: rgba(106,247,255,.42);
  background: rgba(0,184,255,.13);
  color: var(--white);
}
.btn.ghost {
  background: rgba(255,255,255,.06);
}

.status-card {
  width: min(650px, 100%);
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(255,255,255,.08);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1rem;
  box-shadow: var(--shadow);
}
.status-card p { color: var(--muted); margin: .2rem 0 0; }
.pulse {
  width: 14px;
  height: 14px;
  background: #32ff9d;
  border-radius: 999px;
  margin-top: .35rem;
  box-shadow: 0 0 0 0 rgba(50,255,157,.7);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 16px rgba(50,255,157,0); }
  100% { box-shadow: 0 0 0 0 rgba(50,255,157,0); }
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 5rem 0;
}
.section-heading {
  max-width: 790px;
  margin-bottom: 2rem;
}
.section-heading p, .split p, .contact-strip p {
  color: var(--muted);
}

.live-panel {
  margin-top: -2rem;
}

.player-shell {
  display: grid;
  grid-template-columns: minmax(220px, 360px) 1fr;
  gap: 2rem;
  background: linear-gradient(135deg, rgba(255,255,255,.11), rgba(255,255,255,.04));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.player-art {
  min-height: 280px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at top right, rgba(255,200,87,.55), transparent 28%),
    radial-gradient(circle at bottom left, rgba(0,184,255,.6), transparent 35%),
    linear-gradient(135deg, #081625, #133e61);
  overflow: hidden;
}
.player-art span {
  font-size: clamp(3rem, 9vw, 6rem);
  font-weight: 950;
  letter-spacing: -.08em;
}

.player-meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem;
}
.player-meta p:not(.eyebrow) {
  color: var(--muted);
}

.cards {
  display: grid;
  gap: 1rem;
}
.cards.three {
  grid-template-columns: repeat(3, 1fr);
}
.card, .form-card {
  background: rgba(255,255,255,.07);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
}
.card p { color: var(--muted); }
.card-icon { font-size: 2rem; display: inline-block; margin-bottom: 1rem; }

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}
.split.alt {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.check-list {
  padding-left: 1.2rem;
  color: var(--muted);
}
.check-list li + li { margin-top: .45rem; }

.form-card {
  display: grid;
  gap: .9rem;
}
.form-card h3 { margin-bottom: .2rem; }
label {
  display: grid;
  gap: .35rem;
  color: var(--muted);
  font-weight: 800;
}
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.22);
  color: var(--white);
  border-radius: 14px;
  padding: .9rem;
  font: inherit;
}
textarea { resize: vertical; }

.hidden {
  display: none;
}

.mini-grid {
  display: grid;
  gap: .8rem;
  margin-top: 1.5rem;
}
.mini-grid div {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  border-radius: 18px;
  padding: 1rem;
}
.mini-grid strong { display: block; }
.mini-grid span { color: var(--muted); }

.contact-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  background: linear-gradient(135deg, rgba(0,184,255,.14), rgba(255,200,87,.08));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 4rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 1rem;
  text-align: center;
  color: var(--muted);
}
.site-footer p { margin: .25rem 0; }
.small { font-size: .9rem; }

@media (max-width: 840px) {
  .menu-toggle { display: inline-flex; }
  .nav { flex-wrap: wrap; padding: .75rem 0; }
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-bottom: .75rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a { border: 1px solid var(--line); }
  .hero { min-height: 620px; padding-top: 4rem; }
  .player-shell, .split { grid-template-columns: 1fr; }
  .cards.three { grid-template-columns: 1fr; }
  .contact-strip { flex-direction: column; align-items: flex-start; }
}


.cards.four {
  grid-template-columns: repeat(4, 1fr);
}

.email-directory {
  padding-top: 1rem;
}

.email-card a {
  display: inline-flex;
  margin-top: .75rem;
  color: var(--aqua);
  font-weight: 900;
  overflow-wrap: anywhere;
}

@media (max-width: 1020px) {
  .cards.four { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .cards.four { grid-template-columns: 1fr; }
}
