/* ============================================================
   DLM Media — 501(c)(3) / Nonprofit Program
   Design system: "Civic Broadcast"
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Brand palette */
  --teal: #0577a1;
  --teal-dark: #045f83;
  --navy: #011b25;
  --navy-2: #042a38;
  --cyan: #4dc1ee;
  --gold: #f5a623;
  --gold-dark: #e0911a;
  --slate: #446084;
  --charcoal: #424242;
  --white: #ffffff;

  /* Considered neutrals — warm slate-tinted, biased toward the navy/teal ground */
  --paper: #f4f6f8;
  --paper-2: #eef2f5;
  --ink: #16242b;          /* near-black with teal bias for headings on light */
  --line: #dbe3e8;
  --muted-light: #5c6b73;  /* body on light, slightly cool */
  --muted-dark: #9fc2d2;   /* body on dark */

  /* Type */
  --display: Georgia, "Times New Roman", serif;
  --sans: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Fluid scale */
  --fs-hero: clamp(2.4rem, 1.4rem + 4.2vw, 3.5rem);
  --fs-h2: clamp(1.7rem, 1.1rem + 2.4vw, 2.7rem);
  --fs-h3: clamp(1.15rem, 1rem + 0.6vw, 1.4rem);
  --fs-lede: clamp(1.02rem, 0.96rem + 0.4vw, 1.2rem);
  --fs-body: 1rem;
  --fs-sm: 0.875rem;
  --fs-xs: 0.78rem;

  /* 8pt rhythm */
  --s1: 8px;  --s2: 16px; --s3: 24px; --s4: 32px;
  --s5: 48px; --s6: 64px; --s7: 96px; --s8: 128px;

  --maxw: 1180px;
  --radius: 16px;
  --radius-sm: 10px;

  /* Layered shadows */
  --sh-1: 0 1px 2px rgba(1, 27, 37, .06), 0 2px 8px rgba(1, 27, 37, .05);
  --sh-2: 0 4px 12px rgba(1, 27, 37, .08), 0 12px 32px rgba(1, 27, 37, .10);
  --sh-3: 0 8px 24px rgba(1, 27, 37, .14), 0 30px 60px rgba(1, 27, 37, .20);
  --sh-gold: 0 8px 24px rgba(245, 166, 35, .28);

  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3 { margin: 0; color: var(--ink); line-height: 1.12; text-wrap: balance; }
p { margin: 0; }

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: 50%; top: -60px; transform: translateX(-50%);
  background: var(--gold); color: var(--navy); padding: 10px 20px;
  border-radius: 0 0 10px 10px; font-weight: 600; z-index: 2000;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; }

/* ---------- Layout primitives ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--s3); }
.section { padding-block: clamp(var(--s6), 9vw, var(--s8)); }
.section--paper { background: var(--paper); }
.section--dark {
  background:
    radial-gradient(120% 120% at 80% -10%, var(--navy-2) 0%, var(--navy) 55%) ;
  color: var(--white);
}

/* ---------- Shared headings ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: var(--fs-xs); font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--teal); margin-bottom: var(--s2);
}
.eyebrow--light { color: var(--cyan); }
.eyebrow__dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(77, 193, 238, .2);
  position: relative;
}
.eyebrow__dot::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 1px solid var(--cyan); opacity: .55;
  animation: pulse 2.6s var(--ease) infinite;
}
@keyframes pulse { 0% { transform: scale(.8); opacity: .6 } 70% { transform: scale(2); opacity: 0 } 100% { opacity: 0 } }
@media (prefers-reduced-motion: reduce) { .eyebrow__dot::after { animation: none; } }

.section__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--fs-h2);
  letter-spacing: -.01em;
}
.section--dark .section__title { color: var(--white); }
.section__lede {
  font-size: var(--fs-lede); color: var(--muted-light);
  max-width: 60ch; margin-top: var(--s2); line-height: 1.6;
}
.section__lede--light { color: var(--muted-dark); }

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 13px; --pad-x: 22px;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: var(--pad-y) var(--pad-x);
  font-weight: 600; font-size: var(--fs-sm); letter-spacing: .01em;
  border: 1.5px solid transparent; border-radius: 999px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  white-space: nowrap; text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--gold { background: var(--gold); color: var(--navy); box-shadow: var(--sh-gold); }
.btn--gold:hover { background: var(--gold-dark); box-shadow: 0 12px 30px rgba(245,166,35,.4); }

.btn--ghost { background: rgba(255,255,255,.06); color: var(--white); border-color: rgba(255,255,255,.45); backdrop-filter: blur(4px); }
.btn--ghost:hover { background: rgba(255,255,255,.14); border-color: var(--white); }

.btn--outline { background: transparent; color: var(--teal); border-color: var(--teal); }
.section--dark .btn--outline { color: var(--white); border-color: rgba(255,255,255,.5); }
.btn--outline:hover { background: var(--teal); color: var(--white); border-color: var(--teal); }
.section--dark .btn--outline:hover { background: var(--white); color: var(--navy); border-color: var(--white); }

.btn--lg { --pad-y: 16px; --pad-x: 30px; font-size: 1rem; }
.btn--sm { --pad-y: 10px; --pad-x: 18px; font-size: var(--fs-xs); }
.btn--block { width: 100%; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), backdrop-filter .35s var(--ease);
}
.nav__inner {
  max-width: var(--maxw); margin-inline: auto;
  padding: 18px var(--s3);
  display: flex; align-items: center; gap: var(--s3);
  transition: padding .35s var(--ease);
}
.nav[data-state="scrolled"] {
  background: rgba(1, 27, 37, .9);
  backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 1px 0 rgba(255,255,255,.06), 0 8px 30px rgba(1,27,37,.4);
}
.nav[data-state="scrolled"] .nav__inner { padding-block: 12px; }

/* Brand */
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 38px; height: 38px; border-radius: 11px; flex: none;
  display: grid; place-items: center;
  background: linear-gradient(150deg, var(--teal), var(--navy));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12), var(--sh-1);
  position: relative; overflow: hidden;
}
.brand__signal {
  width: 16px; height: 16px; border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, var(--cyan) 0 22%, transparent 24%),
              repeating-radial-gradient(circle at 50% 50%, transparent 0 4px, rgba(77,193,238,.85) 4px 5px, transparent 5px 8px);
  -webkit-mask: radial-gradient(circle at 50% 50%, #000 60%, transparent 60%);
}
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-weight: 700; font-size: 1.06rem; color: var(--white); letter-spacing: .01em; }
.brand__sub { font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; color: var(--cyan); }
.nav[data-state="top"] .brand__name { color: var(--white); }

/* Logo image (Sports Direct | DLM Media). The nav (both states) and footer are
   dark navy, so the dark logo art is rendered reversed (white) for contrast. */
.brand__logo {
  height: 34px; width: auto; display: block;
  filter: brightness(0) invert(1);
}
.nav[data-state="scrolled"] .brand__logo { height: 30px; }
.brand__logo--footer { height: 40px; }
@media (max-width: 640px) { .brand__logo { height: 30px; } }

/* Nav links */
.nav__links { display: flex; gap: var(--s3); margin-inline: auto; }
.nav__links a {
  color: rgba(255,255,255,.85); font-size: var(--fs-sm); font-weight: 500;
  position: relative; padding: 6px 2px;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--cyan); transition: width .28s var(--ease);
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: var(--s2); }
.nav__phone { display: inline-flex; align-items: center; gap: 9px; color: var(--white); }
.nav__phone-ico {
  width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(77,193,238,.16); color: var(--cyan); font-size: 1rem;
}
.nav__phone-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav__phone-label { font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; color: var(--cyan); }
.nav__phone-num { font-weight: 600; font-size: .92rem; }

.nav__toggle { display: none; background: none; border: 0; padding: 8px; flex-direction: column; gap: 5px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: flex; flex-direction: column; gap: 4px;
  padding: var(--s2) var(--s3) var(--s4);
  background: rgba(1, 27, 37, .98); backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255,255,255,.08);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a { color: rgba(255,255,255,.9); padding: 12px 4px; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,.06); }
.mobile-menu__phone { color: var(--cyan) !important; font-weight: 600 !important; }
.mobile-menu .btn { margin-top: var(--s2); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding-block: clamp(120px, 16vh, 180px) var(--s6);
  overflow: hidden; isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__video { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(1,27,37,.62) 0%, rgba(1,27,37,.5) 35%, rgba(1,27,37,.86) 100%),
    linear-gradient(105deg, rgba(1,27,37,.92) 0%, rgba(1,27,37,.55) 48%, rgba(4,42,56,.4) 100%);
}
.hero__grain {
  position: absolute; inset: 0; z-index: -1; opacity: .5; mix-blend-mode: overlay; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 3px 3px;
}

.hero__inner {
  width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--s3);
  display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(var(--s4), 5vw, var(--s7));
  align-items: center;
}

.hero__copy { color: var(--white); max-width: 38ch; }
.hero__title {
  font-family: var(--display); font-weight: 700;
  font-size: var(--fs-hero); color: var(--white);
  letter-spacing: -.015em; line-height: 1.06; margin-bottom: var(--s3);
}
.hero__title em { font-style: italic; color: var(--gold); }
.hero__sub {
  color: rgba(255,255,255,.9); font-size: var(--fs-lede); max-width: 46ch;
  line-height: 1.62; margin-bottom: var(--s4);
}
.hero__sub strong { color: var(--white); font-weight: 600; }

.hero__cta-row { display: flex; flex-wrap: wrap; gap: var(--s2); margin-bottom: var(--s4); }

.hero__trust {
  list-style: none; margin: 0; padding: var(--s2) 0 0;
  display: flex; flex-wrap: wrap; gap: var(--s3) var(--s4);
  border-top: 1px solid rgba(255,255,255,.16);
}
.hero__trust li { font-size: var(--fs-sm); color: rgba(255,255,255,.82); }
.hero__trust strong { display: block; font-size: 1.5rem; font-weight: 700; color: var(--cyan); font-family: var(--display); line-height: 1; }

/* Hero quote card */
.quote-card {
  background: rgba(255,255,255,.97); border-radius: var(--radius);
  box-shadow: var(--sh-3); border: 1px solid rgba(255,255,255,.5);
  overflow: hidden;
}
.quote-card__head {
  padding: var(--s3) var(--s3) var(--s2);
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--white);
}
.quote-card__badge {
  display: inline-block; font-size: var(--fs-xs); font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--navy);
  background: var(--gold); padding: 4px 12px; border-radius: 999px; margin-bottom: 12px;
}
.quote-card__title { font-family: var(--display); color: var(--white); font-size: 1.5rem; }
.quote-card__lede { color: var(--muted-dark); font-size: var(--fs-sm); margin-top: 6px; }
.quote-card .form { padding: var(--s3); }

.hero__scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 1;
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.5); border-radius: 14px;
  display: grid; place-items: start center; padding-top: 8px;
}
.hero__scroll-line { width: 3px; height: 8px; border-radius: 3px; background: var(--cyan); animation: scrolldot 1.8s var(--ease) infinite; }
@keyframes scrolldot { 0% { transform: translateY(0); opacity: 1 } 70% { transform: translateY(14px); opacity: 0 } 100% { opacity: 0 } }
@media (prefers-reduced-motion: reduce) { .hero__scroll-line { animation: none; } }

/* ============================================================
   FORMS
   ============================================================ */
.form { display: flex; flex-direction: column; gap: var(--s2); }
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s2); }
.form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field label { font-size: var(--fs-xs); font-weight: 600; letter-spacing: .04em; color: var(--ink); text-transform: uppercase; }
.field__opt { text-transform: none; font-weight: 400; color: var(--muted-light); letter-spacing: 0; }

.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: var(--fs-sm); color: var(--ink);
  padding: 12px 14px; background: var(--white);
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 84px; }
.field input::placeholder, .field textarea::placeholder { color: #aab6bd; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(5, 119, 161, .14);
}
.field select { appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23446084' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px;
}
.field--invalid input, .field--invalid select, .field--invalid textarea { border-color: #d64545; }
.field--invalid input:focus, .field--invalid select:focus, .field--invalid textarea:focus { box-shadow: 0 0 0 4px rgba(214,69,69,.16); }
.field__error { font-size: var(--fs-xs); color: #d64545; font-weight: 500; min-height: 0; }

.form__fine { font-size: var(--fs-xs); color: var(--muted-light); line-height: 1.5; }
.form__status { font-size: var(--fs-sm); font-weight: 600; min-height: 1.2em; margin-top: -4px; }
.form__status[data-state="error"] { color: #d64545; }
.form__status[data-state="success"] { color: #1f8a5c; }
.form__status[data-state="loading"] { color: var(--teal); }

/* Glass form (on dark) */
.form--glass {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: var(--s4); backdrop-filter: blur(10px);
  box-shadow: var(--sh-2);
}
.form--glass .field label { color: rgba(255,255,255,.86); }
.form--glass .field input, .form--glass .field select, .form--glass .field textarea {
  background: rgba(255,255,255,.95); border-color: rgba(255,255,255,.2);
}
.form--card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: var(--s4); box-shadow: var(--sh-2);
}

/* ============================================================
   TRUST TICKER
   ============================================================ */
.ticker {
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy-2) 50%, var(--navy) 100%);
  border-block: 1px solid rgba(77,193,238,.18);
  position: relative;
}
.ticker::before, .ticker::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 2px;
}
.ticker__track {
  max-width: var(--maxw); margin-inline: auto; padding: var(--s4) var(--s3);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s3);
}
.stat { text-align: center; padding: 8px; position: relative; }
.stat:not(:last-child)::after {
  content: ""; position: absolute; right: calc(var(--s3) / -2); top: 18%; bottom: 18%;
  width: 1px; background: rgba(255,255,255,.12);
}
.stat__num {
  display: block; font-family: var(--display); font-weight: 700;
  font-size: clamp(2rem, 1.2rem + 3vw, 3.1rem); color: var(--cyan);
  line-height: 1; letter-spacing: -.02em; font-variant-numeric: tabular-nums;
}
.stat__label { display: block; margin-top: 10px; font-size: var(--fs-xs); color: var(--muted-dark); line-height: 1.4; }

/* ============================================================
   VALUE
   ============================================================ */
.value__head { max-width: 760px; margin-bottom: var(--s5); }
.value__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s3); }
.vcard {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: var(--s4) var(--s3); box-shadow: var(--sh-1);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.vcard:hover { transform: translateY(-6px); box-shadow: var(--sh-2); border-color: rgba(5,119,161,.35); }
.vcard__ico {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(150deg, rgba(5,119,161,.12), rgba(77,193,238,.12));
  color: var(--teal); margin-bottom: var(--s2);
}
.vcard__ico svg { width: 26px; height: 26px; }
.vcard h3 { font-size: var(--fs-h3); margin-bottom: 8px; }
.vcard p { font-size: var(--fs-sm); color: var(--muted-light); line-height: 1.6; }

/* ============================================================
   PROGRAM
   ============================================================ */
.program__head { max-width: 800px; margin-bottom: var(--s5); }
.program__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s2); max-width: 860px; margin-inline: auto; }
.pcard {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: var(--s3);
  display: flex; flex-direction: column; gap: var(--s2);
  transition: transform .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
}
.pcard:hover { transform: translateY(-6px); background: rgba(255,255,255,.07); border-color: rgba(77,193,238,.4); }
.pcard--feature {
  background: linear-gradient(165deg, rgba(245,166,35,.14), rgba(255,255,255,.03));
  border-color: rgba(245,166,35,.4);
  box-shadow: 0 20px 50px rgba(0,0,0,.3);
}
.pcard__tag {
  align-self: flex-start; font-size: var(--fs-xs); font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--cyan);
  background: rgba(77,193,238,.14); padding: 4px 11px; border-radius: 999px;
}
.pcard__tag--gold { color: var(--navy); background: var(--gold); }
.pcard__title { font-family: var(--display); color: var(--white); font-size: 1.22rem; margin-top: 4px; }
.pcard__elig { font-size: var(--fs-xs); color: var(--muted-dark); line-height: 1.5; }
.pcard__elig strong { color: var(--white); }
.pcard__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.pcard__list li { position: relative; padding-left: 24px; font-size: var(--fs-sm); color: rgba(255,255,255,.86); line-height: 1.45; }
.pcard__list li::before {
  content: ""; position: absolute; left: 0; top: 7px; width: 13px; height: 8px;
  border-left: 2px solid var(--cyan); border-bottom: 2px solid var(--cyan);
  transform: rotate(-45deg);
}
.pcard__list em { color: var(--gold); font-style: normal; font-weight: 600; }
.pcard__pledge { font-family: var(--display); font-style: italic; color: var(--gold); font-size: .96rem; line-height: 1.4; }
.pcard .btn { margin-top: auto; }
.program__disc { margin-top: var(--s4); font-size: var(--fs-xs); color: var(--muted-dark); max-width: 80ch; line-height: 1.6; }

/* ============================================================
   WHAT MEMBERS GET
   ============================================================ */
.get__head { max-width: 720px; margin-bottom: var(--s5); }
.get__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s3); }
.gcard {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--sh-1);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.gcard:hover { transform: translateY(-6px); box-shadow: var(--sh-2); }
.gcard__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.gcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gcard:hover .gcard__media img { transform: scale(1.06); }
.gcard__chip {
  position: absolute; left: 14px; bottom: 14px;
  font-size: var(--fs-xs); font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--white); background: rgba(1,27,37,.78); backdrop-filter: blur(4px);
  padding: 5px 12px; border-radius: 999px; border: 1px solid rgba(255,255,255,.18);
}
.gcard__body { padding: var(--s3); }
.gcard__body h3 { font-size: var(--fs-h3); margin-bottom: 8px; }
.gcard__body p { font-size: var(--fs-sm); color: var(--muted-light); line-height: 1.6; }
.get__disc { margin-top: var(--s4); font-size: var(--fs-xs); color: var(--muted-light); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how__head { text-align: center; margin-inline: auto; margin-bottom: var(--s5); max-width: 640px; }
.how__head .eyebrow { justify-content: center; }
.how__steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s3);
  counter-reset: step; position: relative;
}
.step {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: var(--s4) var(--s3); box-shadow: var(--sh-1);
}
.step__num {
  display: inline-grid; place-items: center; width: 52px; height: 52px;
  font-family: var(--display); font-weight: 700; font-size: 1.4rem;
  color: var(--teal); background: var(--paper-2);
  border: 1.5px solid var(--line); border-radius: 14px; margin-bottom: var(--s2);
  font-variant-numeric: tabular-nums;
}
.step h3 { font-size: var(--fs-h3); margin-bottom: 8px; }
.step p { font-size: var(--fs-sm); color: var(--muted-light); line-height: 1.6; margin-bottom: var(--s2); }
.step__link { font-size: var(--fs-sm); font-weight: 600; color: var(--teal); }
.step__link:hover { color: var(--teal-dark); }

/* ============================================================
   ELIGIBILITY
   ============================================================ */
.elig__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(var(--s4), 5vw, var(--s7)); align-items: center; }
.elig__bullets { list-style: none; margin: var(--s3) 0 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.elig__bullets li { position: relative; padding-left: 30px; color: rgba(255,255,255,.88); font-size: var(--fs-sm); }
.elig__bullets li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 18px; height: 18px;
  border-radius: 50%; background: rgba(77,193,238,.18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%234dc1ee' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}

/* ============================================================
   WHO WE SERVE
   ============================================================ */
.serve__head { max-width: 680px; margin-bottom: var(--s5); }
.serve__grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s2);
}
.vtile {
  display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center;
  padding: var(--s4) var(--s2); background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); font-weight: 600; font-size: var(--fs-sm); color: var(--ink);
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease);
}
.vtile:hover {
  transform: translateY(-5px);
  background: linear-gradient(160deg, var(--teal), var(--navy)); color: var(--white);
  box-shadow: var(--sh-2);
}
.vtile__ico { font-size: 1.9rem; line-height: 1; filter: grayscale(.1); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi__head { text-align: center; margin-inline: auto; max-width: 640px; margin-bottom: var(--s5); }
.testi__head .eyebrow { justify-content: center; }
.testi__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s3); }
.quote {
  margin: 0; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: var(--s4) var(--s3); box-shadow: var(--sh-1);
  position: relative;
}
.quote::before {
  content: "\201C"; font-family: var(--display); font-size: 4.5rem; line-height: 1;
  color: rgba(5,119,161,.16); position: absolute; top: 8px; left: 18px;
}
.quote blockquote { margin: 0 0 var(--s3); font-family: var(--display); font-size: 1.08rem; line-height: 1.5; color: var(--ink); position: relative; }
.quote figcaption { display: flex; flex-direction: column; gap: 2px; border-top: 1px solid var(--line); padding-top: 14px; }
.quote__name { font-weight: 700; color: var(--ink); }
.quote__org { font-size: var(--fs-sm); color: var(--teal); }

/* ============================================================
   GIVE-BACK BAND
   ============================================================ */
.giveback { position: relative; padding-block: clamp(var(--s7), 12vw, var(--s8)); overflow: hidden; isolation: isolate; }
.giveback__media { position: absolute; inset: 0; z-index: -2; }
.giveback__media img { width: 100%; height: 100%; object-fit: cover; }
.giveback__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(1,27,37,.95) 0%, rgba(1,27,37,.78) 50%, rgba(4,42,56,.55) 100%);
}
.giveback__copy { max-width: 640px; }
.giveback__title {
  font-family: var(--display); font-weight: 700; color: var(--white);
  font-size: var(--fs-h2); letter-spacing: -.01em; margin-bottom: var(--s2);
}
.giveback__lede { color: rgba(255,255,255,.9); font-size: var(--fs-lede); line-height: 1.6; margin-bottom: var(--s4); }

/* ============================================================
   NOMINATE
   ============================================================ */
.nominate__inner { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(var(--s4), 5vw, var(--s6)); align-items: start; }
.nominate__copy { position: sticky; top: 110px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq__inner { max-width: 860px; }
.faq__head { text-align: center; margin-bottom: var(--s5); }
.faq__head .eyebrow { justify-content: center; }
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm);
  overflow: hidden; transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.faq__item[open] { border-color: rgba(5,119,161,.4); box-shadow: var(--sh-1); }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 18px 56px 18px 22px;
  font-weight: 600; color: var(--ink); position: relative; font-size: 1.02rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: ""; position: absolute; right: 22px; top: 50%; width: 12px; height: 12px;
  border-right: 2px solid var(--teal); border-bottom: 2px solid var(--teal);
  transform: translateY(-65%) rotate(45deg); transition: transform .3s var(--ease);
}
.faq__item[open] summary::after { transform: translateY(-35%) rotate(-135deg); }
.faq__answer { padding: 0 22px 20px; }
.faq__answer p { font-size: var(--fs-sm); color: var(--muted-light); line-height: 1.65; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta { position: relative; padding-block: clamp(var(--s7), 11vw, var(--s8)); overflow: hidden; isolation: isolate; }
.cta__glow {
  position: absolute; z-index: -1; width: 60vw; height: 60vw; max-width: 720px; max-height: 720px;
  top: -25%; right: -12%; border-radius: 50%;
  background: radial-gradient(circle, rgba(77,193,238,.22), transparent 62%);
  filter: blur(20px);
}
.cta__inner { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(var(--s4), 5vw, var(--s7)); align-items: start; }
.cta__title { font-family: var(--display); font-weight: 700; color: var(--white); font-size: var(--fs-h2); margin-bottom: var(--s2); }
.cta__lede { color: rgba(255,255,255,.9); font-size: var(--fs-lede); line-height: 1.6; margin-bottom: var(--s3); }
.cta__points { list-style: none; margin: 0 0 var(--s4); padding: 0; display: flex; flex-direction: column; gap: 10px; }
.cta__points li { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.9); font-size: var(--fs-sm); }
.cta__points span { color: var(--navy); background: var(--cyan); width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; font-size: .8rem; font-weight: 700; flex: none; }
.cta__phones { display: flex; flex-direction: column; gap: 8px; }
.cta__phones a { color: var(--cyan); font-weight: 600; font-size: var(--fs-sm); }
.cta__phones a:hover { color: var(--white); }
.cta__formtitle { font-family: var(--display); color: var(--white); font-size: 1.4rem; margin-bottom: 4px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy); color: rgba(255,255,255,.8); padding-top: var(--s6); }
.footer__top {
  display: grid; grid-template-columns: 1.6fr 1fr 1.2fr; gap: var(--s5);
  padding-bottom: var(--s5); border-bottom: 1px solid rgba(255,255,255,.1);
}
.brand--footer .brand__name { color: var(--white); }
.brand--footer .brand__sub { color: var(--muted-dark); }
.footer__about { margin-top: var(--s2); font-size: var(--fs-sm); color: var(--muted-dark); line-height: 1.65; max-width: 42ch; }
.footer__h { font-size: var(--fs-xs); letter-spacing: .14em; text-transform: uppercase; color: var(--cyan); margin-bottom: var(--s2); }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col a { color: rgba(255,255,255,.8); font-size: var(--fs-sm); transition: color .2s var(--ease); }
.footer__col a:hover { color: var(--white); }
.footer__contacts a { display: flex; flex-direction: column; line-height: 1.2; gap: 2px; }
.footer__plabel { font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-dark); }

.footer__legal { padding-block: var(--s4); display: flex; flex-direction: column; gap: 12px; }
.footer__disc { font-size: var(--fs-xs); color: rgba(159,194,210,.7); line-height: 1.6; max-width: 95ch; }
.footer__disc--privacy strong { color: var(--cyan); }
.footer__copy { font-size: var(--fs-xs); color: rgba(159,194,210,.6); margin-top: 8px; }

/* ============================================================
   STICKY MOBILE CALL BAR
   ============================================================ */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 900;
  display: none; align-items: center; justify-content: center; gap: 10px;
  padding: 14px; background: var(--gold); color: var(--navy);
  font-weight: 700; box-shadow: 0 -6px 24px rgba(1,27,37,.3);
}
.callbar__ico { font-size: 1.1rem; }
.callbar__num { font-variant-numeric: tabular-nums; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .btn:hover, .vcard:hover, .pcard:hover, .gcard:hover, .vtile:hover, .quote:hover { transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav__phone { display: none; }
  .nav__actions .btn--sm { display: none; }

  .hero__inner { grid-template-columns: 1fr; gap: var(--s5); }
  .hero__copy { max-width: 56ch; }

  .value__grid { grid-template-columns: repeat(2, 1fr); }
  .program__grid { grid-template-columns: repeat(2, 1fr); }
  .get__grid { grid-template-columns: 1fr; max-width: 520px; }
  .how__steps { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .serve__grid { grid-template-columns: repeat(3, 1fr); }
  .testi__grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .elig__inner, .nominate__inner, .cta__inner { grid-template-columns: 1fr; }
  .nominate__copy { position: static; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  :root { --s7: 72px; --s8: 88px; }
  .ticker__track { grid-template-columns: repeat(2, 1fr); gap: var(--s4) var(--s2); }
  .stat:not(:last-child)::after { display: none; }
  .stat:nth-child(odd)::after { content: ""; display: block; position: absolute; right: calc(var(--s2) / -2); top: 18%; bottom: 18%; width: 1px; background: rgba(255,255,255,.12); }
  .value__grid, .program__grid, .serve__grid { grid-template-columns: 1fr; }
  .form__grid { grid-template-columns: 1fr; }
  .hero__cta-row .btn { width: 100%; }
  .hero { padding-bottom: var(--s7); }
  .callbar { display: flex; }
  body { padding-bottom: 58px; }
  .footer__top { grid-template-columns: 1fr; gap: var(--s4); }
  .serve__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 380px) {
  .serve__grid { grid-template-columns: 1fr; }
}
