@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Unbounded:wght@400;500;600;700&display=swap');

:root {
  --bg: #000814;
  --bg-deep: #00050a;
  --bg-raised: rgba(0, 18, 32, 0.88);
  --bg-card: rgba(0, 12, 24, 0.9);
  --bg-glass: rgba(0, 10, 22, 0.82);
  --line: rgba(0, 242, 255, 0.14);
  --line-strong: rgba(0, 242, 255, 0.32);
  --text: #f8fbff;
  --text-muted: #b4c8de;
  --gold: #ffc857;
  --gold-soft: rgba(255, 200, 87, 0.12);
  --cyan: #00f2ff;
  --teal: var(--cyan);
  --cyan-soft: rgba(0, 242, 255, 0.12);
  --blue: #4db8ff;
  --blue-soft: rgba(77, 184, 255, 0.1);
  --glow: 0 0 24px rgba(0, 242, 255, 0.35);
  --radius-s: 8px;
  --radius-m: 16px;
  --display: 'Unbounded', 'Segoe UI', sans-serif;
  --sans: 'Manrope', 'Segoe UI', sans-serif;
  --max-w: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg-deep);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

#dna-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.88;
  filter: blur(0.15px) brightness(0.92) saturate(1.18) contrast(1.04);
}

#dna-overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 58% 48% at 50% 42%, rgba(0, 3, 8, 0.92) 0%, rgba(0, 5, 12, 0.55) 48%, transparent 72%),
    radial-gradient(ellipse 38% 55% at 8% 50%, rgba(0, 242, 255, 0.06), transparent 62%),
    radial-gradient(ellipse 38% 55% at 92% 45%, rgba(77, 184, 255, 0.05), transparent 62%),
    radial-gradient(ellipse 90% 70% at 50% 50%, transparent 35%, rgba(0, 2, 6, 0.72) 100%),
    linear-gradient(180deg, rgba(0, 4, 10, 0.55) 0%, rgba(0, 6, 14, 0.35) 40%, rgba(0, 5, 12, 0.75) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 0%, rgba(0, 242, 255, 0.04), transparent 55%),
    radial-gradient(ellipse 55% 40% at 100% 30%, rgba(77, 184, 255, 0.03), transparent 50%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.08;
  margin: 0 0 .5em;
  letter-spacing: -0.02em;
  color: var(--text);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55), 0 0 1px rgba(0, 0, 0, 0.8);
}
h1 { font-size: clamp(2.2rem, 5.5vw, 4.5rem); text-transform: uppercase; }
h2 { font-size: clamp(1.6rem, 3vw, 2.6rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; color: var(--text-muted); max-width: 62ch; }

.glass-card,
.card,
.track-panel,
.role-card,
.auth-card,
.stat,
.hero-dates .item {
  background: var(--bg-glass);
  backdrop-filter: blur(20px) saturate(1.15);
  -webkit-backdrop-filter: blur(20px) saturate(1.15);
}
a { color: inherit; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; position: relative; z-index: 1; }

main { position: relative; z-index: 1; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(0, 6, 14, 0.88);
  backdrop-filter: blur(20px) saturate(1.1);
  -webkit-backdrop-filter: blur(20px) saturate(1.1);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}
.site-header .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.brand { display: flex; align-items: baseline; gap: 10px; text-decoration: none; }
.brand .mark {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.brand .mark span { color: var(--cyan); text-shadow: var(--glow); }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color .15s, text-shadow .15s;
}
.nav-links a:hover { color: var(--cyan); text-shadow: 0 0 12px rgba(0, 242, 255, 0.4); }
.nav-cta { display: flex; gap: 10px; align-items: center; }

.menu-toggle { display: none; background: none; border: 1px solid var(--line); color: var(--text); border-radius: var(--radius-s); padding: 6px 10px; font-size: 1.2rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform .12s, box-shadow .15s, opacity .12s;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #001018;
  box-shadow: 0 0 20px rgba(0, 242, 255, 0.25);
}
.btn-primary:hover { box-shadow: 0 0 32px rgba(0, 242, 255, 0.45); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #ffb347);
  color: #1a1000;
  box-shadow: 0 0 18px rgba(255, 200, 87, 0.25);
}
.btn-ghost {
  background: rgba(0, 242, 255, 0.04);
  border-color: var(--line-strong);
  color: var(--text);
}
.btn-ghost:hover {
  border-color: var(--cyan);
  box-shadow: inset 0 0 20px rgba(0, 242, 255, 0.08);
}
.btn-sm { padding: 8px 16px; font-size: 0.82rem; }
.btn-block { width: 100%; justify-content: center; }
.btn[disabled] { opacity: .4; cursor: not-allowed; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 80px;
  border-bottom: 1px solid var(--line);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 45%, rgba(0, 4, 10, 0.72) 0%, rgba(0, 6, 14, 0.35) 55%, transparent 80%),
    radial-gradient(circle at 85% 20%, rgba(0, 242, 255, 0.05), transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.hero > .container {
  position: relative;
  z-index: 1;
}
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; max-width: 820px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding: 6px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--cyan-soft);
}
.hero-eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
.hero h1 {
  max-width: 14ch;
  text-shadow:
    0 2px 24px rgba(0, 0, 0, 0.7),
    0 0 48px rgba(0, 242, 255, 0.12);
}
.hero .lede {
  font-size: 1.12rem;
  color: #c8d8ea;
  max-width: 48ch;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}
.hero-actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero-dates { margin-top: 44px; display: flex; gap: 28px; flex-wrap: wrap; }
.hero-dates .item {
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  min-width: 140px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}
.hero-dates .item .num {
  font-family: var(--display);
  font-size: 1.35rem;
  color: var(--text);
  letter-spacing: 0.02em;
}
.hero-dates .item .lbl { font-size: .78rem; color: var(--text-muted); margin-top: 4px; }

/* ---------- sections ---------- */
section {
  padding: 88px 0;
  position: relative;
  z-index: 1;
}
section > .container {
  position: relative;
  z-index: 1;
}
section:not(.hero)::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 75% 55% at 50% 50%, rgba(0, 4, 10, 0.45) 0%, transparent 70%);
  opacity: 0.85;
}
.section-head { max-width: 680px; margin-bottom: 48px; }
.section-head .kicker {
  color: var(--cyan);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.tracks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.track-panel {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 36px 32px;
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.3);
  transition: border-color .2s, box-shadow .2s, transform .2s, opacity .2s;
  font: inherit;
  text-align: left;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.track-panel:hover { border-color: var(--line-strong); }
.track-panel:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}
.track-panel.teal {
  border-top: 2px solid var(--cyan);
  box-shadow: inset 0 1px 0 rgba(0, 242, 255, 0.2);
}
.track-panel.teal:hover,
.track-panel.teal:focus-visible {
  transform: scale(1.02);
  border-color: rgba(0, 242, 255, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(0, 242, 255, 0.3),
    0 0 24px rgba(0, 242, 255, 0.15);
}
.track-panel.gold {
  border-top: 2px solid var(--gold);
  box-shadow: inset 0 1px 0 rgba(255, 200, 87, 0.2);
}
.track-panel.gold:hover,
.track-panel.gold:focus-visible {
  transform: scale(1.02);
  border-color: rgba(255, 200, 87, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 200, 87, 0.3),
    0 0 24px rgba(255, 200, 87, 0.15);
}
.track-panel h3 { font-size: 1.4rem; }
.track-panel .track-sub { color: var(--text-muted); font-size: .9rem; margin-bottom: 22px; }
.track-panel ul { list-style: none; padding: 0; margin: 0 0 22px; }
.track-panel li {
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: .94rem;
}
.track-panel li:first-child { border-top: none; }
.track-meta {
  display: flex;
  gap: 22px;
  margin-top: 20px;
  font-size: .82rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.track-meta b {
  color: var(--text);
  display: block;
  font-family: var(--display);
  font-size: .95rem;
}

/* ---------- track fly-out transition ---------- */
.tracks.is-transitioning .track-panel:not(.is-launching) {
  opacity: 0.35;
  transform: scale(0.98);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.track-panel.is-launching {
  opacity: 0;
  transform: scale(0.94);
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.track-fly-clone {
  position: fixed;
  z-index: 120;
  margin: 0;
  pointer-events: none;
  transform-origin: center center;
  transition:
    transform 0.52s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.52s ease,
    filter 0.52s ease,
    box-shadow 0.52s ease;
}

.track-fly-clone.teal.is-flying {
  transform: scale(1.28) translateY(-10vh);
  opacity: 0;
  filter: blur(3px);
  box-shadow:
    inset 0 1px 0 rgba(0, 242, 255, 0.35),
    0 0 80px rgba(0, 242, 255, 0.45),
    0 24px 60px rgba(0, 0, 0, 0.5);
}

.track-fly-clone.gold.is-flying {
  transform: scale(1.28) translateY(-10vh);
  opacity: 0;
  filter: blur(3px);
  box-shadow:
    inset 0 1px 0 rgba(255, 200, 87, 0.35),
    0 0 80px rgba(255, 200, 87, 0.4),
    0 24px 60px rgba(0, 0, 0, 0.5);
}

.participate-section {
  scroll-margin-top: 96px;
}

.participate-track-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
  border: 1px solid transparent;
}

.participate-track-badge .badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.participate-track-badge.teal {
  color: var(--cyan);
  background: rgba(0, 242, 255, 0.1);
  border-color: rgba(0, 242, 255, 0.35);
}

.participate-track-badge.teal .badge-dot {
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(0, 242, 255, 0.7);
}

.participate-track-badge.gold {
  color: var(--gold);
  background: rgba(255, 200, 87, 0.1);
  border-color: rgba(255, 200, 87, 0.35);
}

.participate-track-badge.gold .badge-dot {
  background: var(--gold);
  box-shadow: 0 0 10px rgba(255, 200, 87, 0.7);
}

.cta-panel.is-track-selected.teal {
  border-color: rgba(0, 242, 255, 0.45);
  box-shadow:
    0 12px 48px rgba(0, 0, 0, 0.4),
    0 0 48px rgba(0, 242, 255, 0.14);
}

.cta-panel.is-track-selected.gold {
  border-color: rgba(255, 200, 87, 0.45);
  box-shadow:
    0 12px 48px rgba(0, 0, 0, 0.4),
    0 0 48px rgba(255, 200, 87, 0.14);
}

.cta-panel.is-revealing {
  animation: participateReveal 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes participateReveal {
  from {
    opacity: 0.72;
    transform: scale(0.985);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.role-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 24px 20px;
  backdrop-filter: blur(8px);
}
.role-card .role-name { font-family: var(--display); font-size: 1rem; margin-bottom: 8px; color: var(--cyan); }
.role-card p { font-size: .86rem; margin: 0; }

.timeline {
  position: relative;
  margin-left: 8px;
  padding-left: 32px;
  border-left: 1px solid var(--line-strong);
}
.tl-item { position: relative; padding-bottom: 38px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: "";
  position: absolute;
  left: -37px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bg-deep);
  border: 2px solid var(--cyan);
  box-shadow: 0 0 12px rgba(0, 242, 255, 0.5);
}
.tl-item .tl-date {
  font-size: .78rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}
.tl-item h4 { margin: 0 0 6px; font-size: 1.05rem; font-family: var(--display); font-weight: 500; }

.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary {
  cursor: pointer;
  padding: 20px 4px;
  font-family: var(--display);
  font-size: .95rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.4rem; color: var(--cyan); }
.faq-item[open] summary::after { content: "–"; }
.faq-item .faq-a { padding: 0 4px 22px; }

.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 28px;
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
}
.card:hover { border-color: var(--line-strong); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 860px) { .grid-2, .grid-3, .tracks { grid-template-columns: 1fr; } }

.form-field { margin-bottom: 18px; }
label { display: block; font-size: .82rem; color: var(--text-muted); margin-bottom: 6px; font-weight: 600; }
input[type=text], input[type=email], input[type=password], input[type=tel], input[type=datetime-local], input[type=url], input[type=file], select, textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(0, 8, 20, 0.8);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  color: var(--text);
  font-family: var(--sans);
  font-size: .94rem;
}
textarea { min-height: 110px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 242, 255, 0.12);
}
.checkbox-field { display: flex; gap: 10px; align-items: flex-start; font-size: .88rem; color: var(--text-muted); }
.checkbox-field input { margin-top: 4px; }
fieldset {
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 18px 20px;
  margin: 0 0 18px;
  background: rgba(0, 8, 20, 0.4);
}
legend { padding: 0 8px; color: var(--gold); font-size: .82rem; font-weight: 700; }
.radio-row { display: flex; gap: 20px; margin-bottom: 8px; flex-wrap: wrap; }
.radio-row label { display: flex; gap: 8px; align-items: center; color: var(--text); font-size: .9rem; }

.auth-wrap { max-width: 460px; margin: 60px auto; padding: 0 20px; }
.auth-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 36px;
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.flashes { max-width: var(--max-w); margin: 18px auto 0; padding: 0 28px; display: flex; flex-direction: column; gap: 8px; position: relative; z-index: 2; }
.flash { padding: 12px 16px; border-radius: var(--radius-s); font-size: .9rem; border: 1px solid; backdrop-filter: blur(8px); }
.flash.success { background: var(--cyan-soft); border-color: var(--cyan); }
.flash.error { background: rgba(255, 80, 80, 0.12); border-color: #ff5050; }

.dash-grid { display: grid; grid-template-columns: 320px 1fr; gap: 28px; align-items: start; }
@media (max-width: 900px) { .dash-grid { grid-template-columns: 1fr; } }
.stat-row { display: flex; gap: 18px; flex-wrap: wrap; margin: 18px 0 30px; }
.stat {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 18px 22px;
  min-width: 140px;
  backdrop-filter: blur(8px);
}
.stat .num { font-family: var(--display); font-size: 1.5rem; }
.stat .lbl { color: var(--text-muted); font-size: .78rem; }
.badge { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: .72rem; border: 1px solid var(--line); font-weight: 700; }
.badge.confirmed { border-color: var(--cyan); color: var(--cyan); }
.badge.finalist, .badge.winner { border-color: var(--gold); color: var(--gold); }
.badge.eliminated { border-color: #ff5050; color: #ff5050; }
.badge.registered { color: var(--text-muted); }

table { width: 100%; border-collapse: collapse; font-size: .9rem; }
th, td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); }
th { color: var(--text-muted); font-weight: 600; font-size: .78rem; text-transform: uppercase; letter-spacing: 0.06em; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-m); background: var(--bg-card); backdrop-filter: blur(16px); box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28); }

.deadline-tag { font-size: .8rem; color: var(--gold); font-weight: 600; }
.subnav {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.subnav a {
  padding: 10px 2px;
  text-decoration: none;
  color: var(--text-muted);
  font-size: .88rem;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.subnav a.active, .subnav a:hover { color: var(--cyan); border-color: var(--cyan); }

.cta-panel {
  padding: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border: 1px solid var(--line-strong);
  background: rgba(0, 10, 22, 0.92);
  backdrop-filter: blur(22px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 242, 255, 0.06);
}

.admin-section { margin-bottom: 40px; padding-bottom: 32px; border-bottom: 1px solid var(--line); }
.admin-section:last-child { border-bottom: none; }
.admin-section h3 { margin-bottom: 18px; color: var(--cyan); font-size: 1rem; }
.admin-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 720px) { .admin-grid-2 { grid-template-columns: 1fr; } }

footer {
  border-top: 1px solid var(--line);
  padding: 52px 0 36px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
  background: rgba(0, 4, 10, 0.88);
  backdrop-filter: blur(16px);
}
.footer-grid { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.footer-grid h4 { font-size: .88rem; font-family: var(--display); color: var(--cyan); text-transform: uppercase; letter-spacing: 0.06em; }
.footer-grid p, .footer-grid a { font-size: .86rem; color: var(--text-muted); text-decoration: none; }
.footer-links { display: flex; gap: 16px; margin-top: 8px; flex-wrap: wrap; }
.footer-links a:hover { color: var(--cyan); }

@media (max-width: 720px) {
  .nav-links { display: none; }
  .menu-toggle { display: inline-block; }
  .hero { padding: 64px 0 48px; }
}

.faq-item summary { color: var(--text); text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4); }
.section-head h2 { color: var(--text); }
.section-head p { color: #c0d0e2; }
.nav-links a:hover { color: #e8f4ff; }

@media (prefers-reduced-motion: reduce) {
  #dna-bg { filter: none; opacity: 0.65; }
  .hero-eyebrow .dot { animation: none; }
  .track-panel.teal:hover,
  .track-panel.teal:focus-visible,
  .track-panel.gold:hover,
  .track-panel.gold:focus-visible { transform: none; }
  .track-fly-clone { display: none; }
  .cta-panel.is-revealing { animation: none; }
}
