/* myp2p — Sports Streaming Platform
   Premium gold-themed stylesheet
   Palette: Gold #f5c518 | Neon Green #39ff14 | Electric Red #ff2d55 | White #ffffff | Ink #0b0d10 */

:root {
  --gold: #f5c518;
  --gold-deep: #c79b00;
  --neon: #39ff14;
  --red: #ff2d55;
  --white: #ffffff;
  --ink: #0b0d10;
  --ink-2: #14181d;
  --ink-3: #1c2128;
  --line: rgba(245, 197, 24, 0.18);
  --muted: #a3a9b3;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --radius: 14px;
  --container: 1180px;
  --font-display: "Playfair Display", "Georgia", serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: radial-gradient(1200px 600px at 80% -10%, rgba(245, 197, 24, 0.08), transparent 60%),
              radial-gradient(900px 600px at -10% 30%, rgba(57, 255, 20, 0.05), transparent 60%),
              var(--ink);
  color: var(--white);
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--gold); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--neon); }

.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }

/* ===== Header & Nav ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(11, 13, 16, 0.85);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.9rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.45rem;
  letter-spacing: .5px;
  color: var(--white);
}
.brand .dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 14px var(--gold);
}
.brand .accent { color: var(--gold); }

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.05rem;
  flex-wrap: wrap;
}
.nav-links a {
  color: #d8dde5;
  font-weight: 500;
  font-size: .9rem;
  position: relative;
  padding: .35rem 0;
  white-space: nowrap;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--neon));
  transition: width .3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-tools {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.search {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .45rem .8rem;
  width: 170px;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.search:focus-within { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(245,197,24,0.18); }
.search input {
  background: transparent;
  border: 0; outline: 0;
  color: var(--white);
  font-size: .9rem;
  width: 100%;
}
.search svg { width: 16px; height: 16px; color: var(--muted); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1.15rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .92rem;
  border: 0;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #1a1300;
  box-shadow: 0 8px 22px rgba(245,197,24,0.28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(245,197,24,0.4); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-live {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(255,45,85,0.35);
}
.btn-live::before {
  content: "";
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--white);
  animation: pulse 1.4s infinite;
}
.btn-live:hover { background: #e0254a; transform: translateY(-2px); }

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .35; transform: scale(.85); }
}

.hamburger {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  width: 42px; height: 42px;
  border-radius: 10px;
  color: var(--white);
  align-items: center;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  position: relative;
}
.hamburger span::before, .hamburger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--gold);
  transition: transform .3s ease, top .3s ease;
}
.hamburger span::before { top: -7px; }
.hamburger span::after { top: 7px; }
.hamburger.open span { background: transparent; }
.hamburger.open span::before { top: 0; transform: rotate(45deg); }
.hamburger.open span::after { top: 0; transform: rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 4.5rem 0 3.5rem;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(600px 280px at 70% 30%, rgba(245,197,24,0.18), transparent 70%),
    radial-gradient(500px 260px at 20% 80%, rgba(57,255,20,0.12), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .78rem;
  color: var(--gold);
  background: rgba(245,197,24,0.08);
  padding: .4rem .8rem;
  border-radius: 999px;
  border: 1px solid rgba(245,197,24,0.24);
  margin-bottom: 1.2rem;
}
.eyebrow .live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px var(--red);
  animation: pulse 1.4s infinite;
}

h1.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.2vw, 4.2rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -.5px;
  margin-bottom: 1.2rem;
}
.hero-title .accent {
  background: linear-gradient(120deg, var(--gold) 0%, #ffe26a 50%, var(--gold) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.hero-lead {
  color: #cbd1da;
  font-size: 1.1rem;
  max-width: 540px;
  margin-bottom: 1.8rem;
}
.hero-cta { display: flex; gap: .8rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 540px;
}
.stat {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--gold);
}
.stat span { color: var(--muted); font-size: .85rem; }

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 3.2;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(245,197,24,0.16), rgba(57,255,20,0.06) 50%, rgba(255,45,85,0.12)),
    radial-gradient(circle at 70% 30%, #1c2128, #0b0d10);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual::after {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(transparent, transparent 3px, rgba(255,255,255,0.025) 3px, rgba(255,255,255,0.025) 4px);
  mix-blend-mode: overlay;
  pointer-events: none;
}
.play-shell {
  width: 110px; height: 110px;
  border-radius: 50%;
  background: rgba(11,13,16,0.55);
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
  z-index: 2;
}
.play-shell::before {
  content: "";
  position: absolute; inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(245,197,24,0.4);
  animation: ringPulse 2.2s infinite;
}
@keyframes ringPulse {
  0% { transform: scale(.9); opacity: .8; }
  100% { transform: scale(1.4); opacity: 0; }
}
.play-shell:hover { transform: scale(1.06); box-shadow: 0 0 35px rgba(245,197,24,0.45); }
.play-shell svg { width: 36px; height: 36px; fill: var(--gold); margin-left: 5px; }

.score-strip {
  position: absolute;
  bottom: 14px; left: 14px; right: 14px;
  background: rgba(11,13,16,0.78);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .65rem .85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}
.score-strip .team { display: flex; align-items: center; gap: .55rem; font-weight: 600; font-size: .92rem; }
.score-strip .team .badge {
  width: 24px; height: 24px; border-radius: 6px;
  background: linear-gradient(135deg, var(--gold), var(--red));
}
.score-strip .score { font-family: var(--font-display); font-size: 1.15rem; color: var(--gold); }
.score-strip .clock {
  background: var(--red);
  color: var(--white);
  font-size: .72rem;
  padding: .2rem .55rem;
  border-radius: 999px;
  letter-spacing: .5px;
}

/* ===== Sections ===== */
section { padding: 3.8rem 0; position: relative; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.15;
  font-weight: 700;
  max-width: 720px;
}
.section-head h2 .accent { color: var(--gold); }
.section-head p { color: var(--muted); max-width: 480px; }

.kicker {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: .76rem;
  color: var(--neon);
  margin-bottom: .6rem;
  font-weight: 600;
}

/* ===== Cards / Grids ===== */
.grid { display: grid; gap: 1.4rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: linear-gradient(180deg, var(--ink-2), var(--ink-3));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  position: relative;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(245,197,24,0.5);
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}

.card-thumb {
  aspect-ratio: 16/9;
  position: relative;
  background:
    linear-gradient(135deg, rgba(245,197,24,0.18), rgba(57,255,20,0.08) 60%, rgba(255,45,85,0.16)),
    radial-gradient(circle at 30% 40%, #1c2128, #0b0d10);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.card-thumb .play {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(11,13,16,0.6);
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s ease, background .3s ease;
}
.card-thumb .play svg { width: 22px; height: 22px; fill: var(--gold); margin-left: 3px; }
.card:hover .card-thumb .play { transform: scale(1.1); background: var(--gold); }
.card:hover .card-thumb .play svg { fill: var(--ink); }

.card-thumb .pill {
  position: absolute; top: 12px; left: 12px;
  background: var(--red); color: white;
  font-size: .7rem; padding: .25rem .55rem;
  border-radius: 999px;
  letter-spacing: .5px;
  display: inline-flex; align-items: center; gap: .35rem;
  font-weight: 600;
}
.card-thumb .pill.scheduled { background: rgba(11,13,16,.78); border: 1px solid var(--line); color: var(--gold); }
.card-thumb .pill .pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: white; animation: pulse 1.4s infinite;
}
.card-thumb .league {
  position: absolute; top: 12px; right: 12px;
  font-size: .72rem; color: var(--white);
  background: rgba(11,13,16,0.78);
  padding: .25rem .55rem; border-radius: 999px;
  border: 1px solid var(--line);
}

.card-body { padding: 1rem 1.1rem 1.2rem; }
.card-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: .35rem;
  font-weight: 600;
  letter-spacing: .2px;
}
.card-body .meta {
  display: flex; align-items: center; gap: .8rem;
  color: var(--muted); font-size: .85rem;
  margin-top: .4rem;
}
.card-body .meta .dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; }

/* ===== Sports Pillars (icon cards) ===== */
.pillars { display: grid; grid-template-columns: repeat(6, 1fr); gap: .9rem; }
.pillar {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1rem;
  text-align: center;
  transition: transform .25s ease, border-color .25s ease;
  color: var(--white);
}
.pillar:hover { transform: translateY(-3px); border-color: var(--gold); color: var(--gold); }
.pillar .icon {
  width: 44px; height: 44px;
  margin: 0 auto .55rem;
  border-radius: 12px;
  background: rgba(245,197,24,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.pillar h4 { font-size: .95rem; font-weight: 600; }

/* ===== Schedule Table ===== */
.schedule-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.schedule-table th, .schedule-table td {
  padding: 1rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: .94rem;
}
.schedule-table th {
  background: rgba(245,197,24,0.06);
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: .78rem;
}
.schedule-table tbody tr:hover { background: rgba(245,197,24,0.04); }
.schedule-table .live-tag {
  background: var(--red); color: white; padding: .2rem .5rem;
  border-radius: 999px; font-size: .7rem; font-weight: 600;
}
.schedule-table .upcoming-tag {
  background: rgba(57,255,20,0.12); color: var(--neon);
  border: 1px solid rgba(57,255,20,0.3);
  padding: .2rem .5rem; border-radius: 999px; font-size: .7rem; font-weight: 600;
}

/* ===== Article / Long Content ===== */
.prose {
  max-width: 820px;
  margin-inline: auto;
  color: #d8dde5;
}
.prose h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  color: var(--white);
  line-height: 1.15;
}
.prose h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin: 2.2rem 0 .8rem;
  color: var(--gold);
}
.prose h3 {
  font-size: 1.18rem;
  margin: 1.6rem 0 .5rem;
  color: var(--white);
}
.prose p { margin-bottom: 1rem; }
.prose ul, .prose ol { margin: 1rem 0 1.2rem 1.4rem; }
.prose li { margin-bottom: .4rem; }
.prose blockquote {
  border-left: 3px solid var(--gold);
  padding: .6rem 1rem;
  margin: 1.4rem 0;
  background: rgba(245,197,24,0.06);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: #e8ecf2;
}
.prose a { color: var(--neon); border-bottom: 1px dotted rgba(57,255,20,0.4); }
.prose a:hover { color: var(--gold); border-color: var(--gold); }

/* ===== Page Hero (for inner pages) ===== */
.page-hero {
  padding: 3.5rem 0 2.5rem;
  text-align: center;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(800px 300px at 50% 0%, rgba(245,197,24,0.15), transparent 70%);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.page-hero h1 .accent { color: var(--gold); }
.page-hero p { color: var(--muted); max-width: 680px; margin: 0 auto; font-size: 1.05rem; }
.crumbs {
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: .9rem;
  letter-spacing: .5px;
}
.crumbs a { color: var(--gold); }
.crumbs span { margin: 0 .4rem; opacity: .5; }

/* ===== Testimonials ===== */
.testimonials { background: var(--ink-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.testimonial {
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  position: relative;
}
.testimonial::before {
  content: "\201C";
  position: absolute; top: -10px; left: 14px;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
}
.testimonial p { color: #d8dde5; font-size: .98rem; margin-bottom: 1rem; line-height: 1.6; }
.testimonial .who { display: flex; align-items: center; gap: .65rem; }
.testimonial .who .av {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--red));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--ink);
}
.testimonial .who .meta strong { display: block; font-size: .92rem; }
.testimonial .who .meta span { color: var(--muted); font-size: .8rem; }

/* ===== Newsletter / CTA ===== */
.cta-band {
  background: linear-gradient(135deg, rgba(245,197,24,0.14), rgba(255,45,85,0.1));
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 2.6rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: center;
}
.cta-band h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.15;
}
.cta-band h3 .accent { color: var(--gold); }
.cta-band p { color: #cbd1da; margin-top: .6rem; }
.subscribe {
  display: flex; gap: .6rem;
  background: var(--ink);
  padding: .4rem;
  border-radius: 999px;
  border: 1px solid var(--line);
}
.subscribe input {
  flex: 1; background: transparent; border: 0; outline: 0;
  color: var(--white); padding: .6rem 1rem; font-size: .95rem;
}
.subscribe button { border-radius: 999px; }

/* ===== Forms ===== */
form.contact-form {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  display: grid;
  gap: 1rem;
}
.field { display: grid; gap: .35rem; }
.field label { font-size: .85rem; color: var(--muted); }
.field input, .field textarea, .field select {
  background: var(--ink-3);
  border: 1px solid var(--line);
  color: var(--white);
  padding: .8rem 1rem;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: .95rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 0; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245,197,24,0.15);
}
.field textarea { min-height: 140px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ===== Footer ===== */
.site-footer {
  background: #07090b;
  border-top: 1px solid var(--line);
  padding: 3rem 0 1.4rem;
  margin-top: 3rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-grid h5 {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: .9rem;
  letter-spacing: .3px;
}
.footer-grid p { color: var(--muted); font-size: .92rem; max-width: 320px; }
.footer-grid ul { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.footer-grid ul a { color: #c8cdd5; font-size: .92rem; }
.footer-grid ul a:hover { color: var(--gold); }
.socials { display: flex; gap: .55rem; margin-top: 1rem; }
.socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ink-2);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.socials a:hover { background: var(--gold); color: var(--ink); transform: translateY(-2px); }
.socials svg { width: 16px; height: 16px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: var(--muted);
  font-size: .85rem;
  flex-wrap: wrap; gap: .8rem;
}

/* ===== Tags / Filters ===== */
.tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem; }
.tag {
  padding: .45rem .85rem;
  border-radius: 999px;
  background: var(--ink-2);
  border: 1px solid var(--line);
  color: #d8dde5;
  font-size: .85rem;
  cursor: pointer;
  transition: all .2s ease;
}
.tag:hover, .tag.active { background: var(--gold); color: var(--ink); border-color: var(--gold); }

/* ===== Reveal Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .search { width: 140px; }
  .nav-links { gap: .85rem; }
  .nav-links a { font-size: .86rem; }
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; aspect-ratio: 16/11; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-band { grid-template-columns: 1fr; }
  .search { display: none; }
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    top: 64px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--ink-2);
    padding: 1.2rem 1.4rem;
    border-bottom: 1px solid var(--line);
    transform: translateY(-130%);
    transition: transform .35s ease;
    gap: .2rem;
    z-index: 50;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: .8rem .4rem; border-bottom: 1px solid rgba(255,255,255,0.04); }
  .hamburger { display: inline-flex; }
  .search { display: none; }
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .hero { padding: 2.5rem 0; }
  .cta-band { padding: 1.6rem; }
  .schedule-table { display: block; overflow-x: auto; white-space: nowrap; }
}

/* ===== Misc ===== */
::selection { background: var(--gold); color: var(--ink); }

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  margin: 2.4rem 0;
}

.note-banner {
  background: rgba(57,255,20,0.06);
  border: 1px solid rgba(57,255,20,0.25);
  color: #d6ffce;
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  font-size: .92rem;
  margin: 1.5rem 0;
}
.note-banner strong { color: var(--neon); }
