/* ============================================================
   TEC LEIMERT — Redesign
   Design language: AO Awards build
   Fonts: Marcellus (display caps) · Cormorant Garamond (serif
   headlines) · Outfit (body / labels)
   ============================================================ */

/* ------------------------------------------------------------
   THEMES
   Two palettes, one codebase. Every accent in the stylesheet
   resolves through these tokens — nothing downstream hardcodes
   a colour, so swapping the block below reskins the whole site.
     default        = chrome / ice   (?theme=chrome)
     [data-theme=gold] = TEC brand gold (?theme=gold)
   --accent-rgb is the raw triplet used by every rgba() so opacity
   variants theme correctly too.
   ------------------------------------------------------------ */
:root {
  --ink: #080c11;
  --ink-2: #0a0f15;
  --ink-3: #121924;
  --navy: #101c33;
  --navy-deep: #0a1122;
  --gold: #6ec3f0;
  --gold-pale: #d8f1ff;
  --gold-muted: #7f9cb5;
  --gold-deep: #2a6d9e;
  --accent-rgb: 110, 195, 240;
  --on-accent: #06202f;          /* text that sits on a filled accent */
  --ink-rgb: 8, 12, 17;
  --ink2-rgb: 10, 15, 21;
  --pale-rgb: 216, 241, 255;
  /* ambient glows behind hero + section washes */
  --glow-1: #1b2a4a; --glow-2: #121b33; --glow-3: #0b1020;
  /* the captain orb's core gradient */
  --orb-1: #28425f; --orb-2: #152538; --orb-3: #0b1522; --orb-4: #060a10;
  /* card + panel surfaces */
  --panel: #10161d; --panel-2: #101821; --panel-warm: #16222e;
  --card-1: #171f33; --card-2: #10141f; --card-3: #0d0f16;
  --cream: #eef4f9;
  --cream-2: #d4dde6;
  --body: #c6d0da;
  --body-dim: #97a5b4;
  --body-faint: #8494a4;
  --rule: rgba(var(--accent-rgb), 0.28);
  --serif-display: 'Cormorant Garamond', serif;
  --serif-caps: 'Marcellus', serif;
  --sans: 'Outfit', sans-serif;
}

/* TEC brand gold — sampled from their own assets (#f4bb35 collar, #f5b007 hero) */
[data-theme="gold"] {
  --ink: #0a0908;
  --ink-2: #100e0b;
  --ink-3: #1c1813;
  --navy: #241d12;
  --navy-deep: #15100a;
  --gold: #f2b233;
  --gold-pale: #ffe6ad;
  --gold-muted: #b39a6b;
  --gold-deep: #a8730c;
  --accent-rgb: 242, 178, 51;
  --on-accent: #1a1204;
  --cream: #fdf8ef;
  --cream-2: #ece0cc;
  --body: #d8cdba;
  --body-dim: #a89b84;
  --body-faint: #8d8069;
  --on-accent: #1a1204;
  --ink-rgb: 10, 9, 8;
  --ink2-rgb: 16, 14, 11;
  --pale-rgb: 255, 230, 173;
  --glow-1: #3d2d0f; --glow-2: #251b0b; --glow-3: #140f07;
  --orb-1: #6b4d13; --orb-2: #3a2a0c; --orb-3: #1d1508; --orb-4: #0b0804;
  --panel: #171310; --panel-2: #1a150e; --panel-warm: #221a10;
  --card-1: #2b2113; --card-2: #1a140d; --card-3: #100c07;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--body);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--gold-pale); text-decoration: none; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.wrap-narrow { max-width: 860px; margin: 0 auto; padding: 0 32px; }

/* ---------- Type ---------- */
.eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-muted);
}

h1, .h1 {
  font-family: var(--serif-display);
  font-weight: 600;
  font-size: clamp(44px, 6.5vw, 84px);
  line-height: 1.05;
  color: var(--cream);
  letter-spacing: 0.01em;
}

h2, .h2 {
  font-family: var(--serif-caps);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.15;
  color: var(--cream);
  letter-spacing: 0.04em;
}

h3, .h3 {
  font-family: var(--serif-caps);
  font-size: 22px;
  font-weight: 400;
  color: var(--gold-pale);
  letter-spacing: 0.05em;
}

.gold-italic {
  font-family: var(--serif-display);
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}

.lede { font-size: 19px; color: var(--body); }
.dim { color: var(--body-dim); }

.rule {
  width: 64px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border: 0; margin: 28px auto;
}
.rule.left { margin: 28px 0; background: linear-gradient(90deg, var(--gold), transparent); }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: linear-gradient(180deg, rgba(var(--ink-rgb), 0.94), rgba(var(--ink-rgb), 0.82));
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(var(--accent-rgb), 0.14);
}
.nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 12px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand {
  font-family: var(--serif-caps);
  font-size: 20px; letter-spacing: 0.18em;
  color: var(--cream);
  white-space: nowrap;
}
.brand span { color: var(--gold); }
.brand-logo { height: 44px; width: auto; display: block; }
.foot-logo { height: 56px; width: auto; margin-bottom: 8px; }
.brand-chrome, .foot-chrome {
  border-radius: 10px;
  border: 1px solid rgba(var(--accent-rgb), 0.3);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.45), 0 0 24px rgba(var(--accent-rgb), 0.16);
}
.brand-logo.brand-chrome { height: 58px; }
.foot-chrome { height: 110px; border-radius: 14px; }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a {
  font-family: var(--sans); font-weight: 400;
  font-size: 12px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--body-dim);
  transition: color 0.25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-pale); }
.nav-cta {
  border: 1px solid var(--gold);
  padding: 9px 22px; border-radius: 999px;
  color: var(--gold-pale) !important;
  transition: background 0.25s, color 0.25s;
}
.nav-cta:hover { background: var(--gold); color: var(--ink) !important; }
.nav-cta-login {
  background: var(--gold);
  color: var(--on-accent) !important;
  border: 1px solid var(--gold);
}
.nav-cta-login:hover { filter: brightness(1.08); color: var(--on-accent) !important; }
.nav-toggle { display: none; background: none; border: 0; color: var(--gold-pale); font-size: 26px; cursor: pointer; }

/* Programs dropdown */
.has-drop { position: relative; }
.has-drop > a::after { content: ' ▾'; font-size: 9px; }
.dropdown {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%);
  min-width: 220px; list-style: none;
  background: rgba(var(--ink2-rgb), 0.98);
  border: 1px solid rgba(var(--accent-rgb), 0.25);
  border-radius: 12px; padding: 14px 0;
  opacity: 0; visibility: hidden; transition: opacity 0.2s;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}
.has-drop:hover .dropdown, .has-drop:focus-within .dropdown { opacity: 1; visibility: visible; }
.dropdown::before { content: ''; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.dropdown li { margin: 0; }
.dropdown a { display: block; padding: 10px 24px; letter-spacing: 0.2em; font-size: 11px; }
.dropdown a:hover { background: rgba(var(--accent-rgb), 0.08); }

/* Video embed */
.video-frame {
  position: relative; aspect-ratio: 16 / 9; border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(var(--accent-rgb), 0.3);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6), 0 0 60px rgba(var(--accent-rgb), 0.08);
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Media / blog cards */
.post-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.post {
  display: flex; flex-direction: column;
  background: linear-gradient(165deg, var(--panel) 0%, var(--ink-2) 100%);
  border: 1px solid rgba(var(--accent-rgb), 0.14);
  border-radius: 14px; overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}
.post:hover { transform: translateY(-5px); border-color: rgba(var(--accent-rgb), 0.5); }
.post img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.post .p-body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.post .p-date {
  font-size: 10.5px; font-weight: 500; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold-muted);
}
.post .p-title {
  margin-top: 12px; font-family: var(--serif-caps);
  font-size: 21px; line-height: 1.3; color: var(--cream); flex: 1;
}
.post .p-more {
  margin-top: 20px; font-size: 11px; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans); font-weight: 500;
  font-size: 13px; letter-spacing: 0.28em; text-transform: uppercase;
  padding: 16px 38px; border-radius: 999px;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s, color 0.25s;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-pale), var(--gold) 55%, var(--gold-deep));
  color: var(--on-accent);
  box-shadow: 0 8px 30px rgba(var(--accent-rgb), 0.25);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(var(--accent-rgb), 0.4); }
.btn-line { border: 1px solid var(--rule); color: var(--gold-pale); }
.btn-line:hover { border-color: var(--gold); background: rgba(var(--accent-rgb), 0.08); }

.badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-pale), var(--gold));
  color: var(--on-accent);
  font-family: var(--sans); font-weight: 600;
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  padding: 7px 18px; border-radius: 999px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  min-height: 92vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background:
    radial-gradient(1100px 700px at 50% -10%, var(--glow-1) 0%, var(--glow-2) 34%, var(--glow-3) 58%, var(--ink) 100%);
  padding: 140px 24px 100px;
}
.hero.hero-sub { min-height: 62vh; padding-top: 160px; }
/* About: intro + story combined side by side */
.about-hero { min-height: 0; padding: 170px 24px 110px; text-align: left; }
.about-hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center;
}
.about-hero .hero-content { max-width: none; }
.about-hero .eyebrow { display: block; margin-bottom: 20px; }
.about-hero h1 { font-size: clamp(38px, 5vw, 64px); }
.about-hero .imgbox {
  border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}
.about-hero .imgbox img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) {
  .about-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-hero { padding-top: 140px; }
}
.hero-eclipse {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -58%);
  width: 560px; height: 560px; border-radius: 50%;
  background: #000;
  box-shadow:
    0 0 60px 18px rgba(var(--accent-rgb), 0.4),
    0 0 160px 60px rgba(var(--accent-rgb), 0.22),
    0 0 320px 140px rgba(var(--accent-rgb), 0.1);
  opacity: 0.85;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 900px; }
.hero .eyebrow { display: block; margin-bottom: 26px; color: var(--gold-muted); }
.hero-logo-img {
  width: min(640px, 82vw);
  margin: 18px auto 0;
  filter: drop-shadow(0 0 24px rgba(var(--accent-rgb), 0.35)) drop-shadow(0 0 70px rgba(var(--accent-rgb), 0.18));
}
.section-logo-img {
  width: min(380px, 90%);
  margin-top: 22px;
  filter: drop-shadow(0 0 18px rgba(var(--accent-rgb), 0.3));
}
.hero p.sub {
  max-width: 620px; margin: 30px auto 0;
  color: var(--body); font-size: 18px;
}
.hero-ctas { margin-top: 44px; display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* Full-width video banner (text sits below, not on top) */
.hero-banner {
  position: relative; overflow: hidden;
  margin-top: 83px;
  height: 68vh; min-height: 400px;
  /* poster sits underneath: if the video can't autoplay the hero still reads */
  background: #000 url('assets/hero-poster.jpg') center/cover no-repeat;
}
/* tap-to-play, only once we know autoplay was refused */
.hero-fallback {
  position: absolute; inset: 0; z-index: 4;
  display: none; align-items: center; justify-content: center;
  background: rgba(0, 0, 0, 0.28);
  border: 0; cursor: pointer; width: 100%;
}
.hero-banner.needs-tap .hero-fallback { display: flex; }
.hero-banner.playing .hero-fallback { display: none; }
.hero-fallback .hf-play {
  display: flex; align-items: center; justify-content: center;
  width: 74px; height: 74px; border-radius: 50%;
  background: rgba(var(--ink-rgb), 0.55);
  border: 1px solid rgba(var(--accent-rgb), 0.55);
  color: var(--gold-pale);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(var(--accent-rgb), 0.25);
  padding-left: 4px;
}
.hero-banner iframe {
  position: absolute; top: 50%; left: 50%;
  width: 100vw; height: 56.25vw;
  min-height: 100%; min-width: 177.78vh;
  transform: translate(-50%, -50%);
  border: 0; pointer-events: none;
}
/* Portrait phones: cover-cropping a 16:9 film into a tall box throws away most
   of the frame, so show it at its native ratio instead. */
@media (max-width: 760px) {
  .hero-banner {
    height: auto; min-height: 0;
    aspect-ratio: 16 / 9;
    margin-top: 68px;
  }
  .hero-banner iframe {
    top: 0; left: 0; transform: none;
    width: 100%; height: 100%;
    min-width: 0; min-height: 0;
  }
}
.hero-banner .slide {
  position: absolute; inset: 0;
  opacity: 1; transition: opacity 0.8s ease;
}
.hero-banner .slide.hidden { opacity: 0; pointer-events: none; }
.hero-banner .slide video {
  width: 100%; height: 100%;
  object-fit: contain;      /* show the full logo animation, no cropping */
  background: #000;
}
.slide-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(var(--ink-rgb), 0.55);
  border: 1px solid rgba(var(--accent-rgb), 0.4);
  color: var(--gold-pale);
  font-size: 26px; line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 0.25s, border-color 0.25s;
}
.slide-arrow:hover { background: rgba(var(--accent-rgb), 0.25); border-color: var(--gold); }
.slide-arrow.prev { left: 22px; }
.slide-arrow.next { right: 22px; }
.slide-dots {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  z-index: 5; display: flex; gap: 10px;
}
.slide-dots .dot {
  width: 10px; height: 10px; border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent; cursor: pointer; padding: 0;
  transition: background 0.25s;
}
.slide-dots .dot.active { background: var(--gold); }
.hero-banner::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(var(--ink-rgb), 0.35) 0%, transparent 22%, transparent 78%, var(--ink) 100%);
}
/* sound toggle — glass pill matching the nav/CTA language */
.sound-btn {
  position: absolute; bottom: 28px; right: 28px; z-index: 6;
  display: flex; align-items: center; gap: 11px;
  background: linear-gradient(180deg, rgba(var(--ink-rgb), 0.72), rgba(var(--ink-rgb), 0.55));
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(var(--accent-rgb), 0.35);
  border-radius: 999px;
  padding: 11px 20px;
  color: var(--body-dim);
  font-family: var(--sans); font-weight: 500;
  font-size: 10.5px; letter-spacing: 0.3em; text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.45);
  transition: color 0.3s, border-color 0.3s, background 0.3s, transform 0.3s, box-shadow 0.3s;
}
.sound-btn:hover {
  color: var(--gold-pale);
  border-color: rgba(var(--accent-rgb), 0.7);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5), 0 0 24px rgba(var(--accent-rgb), 0.18);
}
.sound-btn svg { display: block; flex: none; }
.sound-btn .ico-on { display: none; }
.sound-btn .lbl { line-height: 1; }
/* equalizer bars, only while sound is on */
.sound-btn .eq { display: none; align-items: flex-end; gap: 2.5px; height: 13px; }
.sound-btn .eq i {
  width: 2.5px; border-radius: 2px; background: var(--gold);
  animation: eqbar 0.9s ease-in-out infinite;
}
.sound-btn .eq i:nth-child(1) { height: 40%; animation-delay: 0s; }
.sound-btn .eq i:nth-child(2) { height: 90%; animation-delay: 0.18s; }
.sound-btn .eq i:nth-child(3) { height: 60%; animation-delay: 0.36s; }
.sound-btn .eq i:nth-child(4) { height: 80%; animation-delay: 0.12s; }
@keyframes eqbar { 0%, 100% { transform: scaleY(0.4); } 50% { transform: scaleY(1); } }
/* active state */
.sound-btn.on {
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-pale), var(--gold) 60%, var(--gold-deep));
  border-color: transparent;
  box-shadow: 0 10px 30px rgba(var(--accent-rgb), 0.4);
}
.sound-btn.on .ico-muted { display: none; }
.sound-btn.on .ico-on { display: block; }
.sound-btn.on .eq { display: flex; }
.sound-btn.on .eq i { background: var(--ink); }
@media (max-width: 600px) {
  .sound-btn .lbl, .sound-btn .eq { display: none !important; }
  .sound-btn { padding: 13px 15px; bottom: 18px; right: 18px; }
}
.hero-under {
  position: relative;            /* not hidden — the orb's rings/glow extend past the box */
  text-align: center;
  padding: 150px 24px 120px;
  background: radial-gradient(900px 520px at 50% -20%, var(--glow-1) 0%, var(--glow-2) 30%, var(--glow-3) 55%, var(--ink) 100%);
}
.hero-under-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 54px; align-items: center;
  text-align: left;
}
/* artwork sits to the LEFT of the headline */
.hero-under-grid .hero-art { order: 1; }
.hero-under-grid .hero-content { order: 2; }
.hero-under .hero-content { position: relative; z-index: 2; max-width: none; margin: 0; }
.hero-under .eyebrow { display: block; margin-bottom: 26px; }
.hero-under p.sub { max-width: 520px; margin: 30px 0 0; color: var(--body); font-size: 18px; }
.hero-under .hero-ctas { justify-content: flex-start; }
.hero-art img {
  width: 100%; height: auto;
  filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.55));
}
@media (max-width: 900px) {
  .hero-under-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-under p.sub { margin-left: auto; margin-right: auto; }
  .hero-under .hero-ctas { justify-content: center; }
}

.stars { position: absolute; inset: 0; pointer-events: none; }
.stars i {
  position: absolute; width: 2px; height: 2px; border-radius: 50%;
  background: var(--gold-pale); opacity: 0.35;
  animation: twinkle 4s ease-in-out infinite;
}
@keyframes twinkle { 0%, 100% { opacity: 0.12; } 50% { opacity: 0.55; } }

/* ---------- Sections ---------- */
.section { padding: 110px 0; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 70px; }
.section-head .eyebrow { display: block; margin-bottom: 18px; }
.section-tint { background: linear-gradient(180deg, var(--ink) 0%, var(--glow-3) 50%, var(--ink) 100%); }
.section-navy { background: linear-gradient(180deg, var(--ink) 0%, var(--navy-deep) 50%, var(--ink) 100%); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.split .imgbox {
  border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}
.split .imgbox img, .split .imgbox video { width: 100%; height: 100%; object-fit: cover; display: block; }
/* transparent artwork — no frame, sits directly on the dark background */
.split .imgbox.art {
  border: 0; box-shadow: none; background: transparent; border-radius: 0;
}
.split .imgbox.art img {
  height: auto; object-fit: contain;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
}

/* ---------- Quote ---------- */
.quote-block { text-align: center; padding: 90px 24px; }
.quote-block blockquote {
  font-family: var(--serif-display); font-style: italic; font-weight: 500;
  font-size: clamp(26px, 3.6vw, 44px); line-height: 1.3;
  color: var(--gold-pale); max-width: 820px; margin: 0 auto;
}
.quote-block cite {
  display: block; margin-top: 26px;
  font-family: var(--sans); font-style: normal; font-weight: 500;
  font-size: 12px; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--gold-muted);
}

/* ---------- Program cards (AO tier style) ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 26px; }
.card {
  position: relative;
  border-radius: 16px;
  padding: 46px 34px 42px;
  background: linear-gradient(165deg, var(--card-1) 0%, var(--card-2) 60%, var(--card-3) 100%);
  border: 1px solid rgba(var(--accent-rgb), 0.18);
  display: flex; flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--accent-rgb), 0.5);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(var(--accent-rgb), 0.08);
}
.card.card-warm { background: linear-gradient(165deg, var(--panel-warm) 0%, var(--panel-2) 60%, var(--ink-2) 100%); }
.card .badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); }
.card .prog-name {
  font-family: var(--serif-caps); font-size: 26px; letter-spacing: 0.06em;
  color: var(--cream); text-align: center;
}
.card .prog-tag {
  text-align: center; margin-top: 8px;
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold-muted); font-weight: 500;
}
.card .card-rule {
  width: 44px; height: 1px; margin: 24px auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.card p { font-size: 15px; color: var(--body-dim); text-align: center; flex: 1; }
.card .card-meta {
  margin-top: 26px; text-align: center;
  font-family: var(--serif-display); font-weight: 600;
  font-size: 30px; color: var(--gold-pale);
}
.card .card-meta small {
  display: block;
  font-family: var(--sans); font-weight: 500; font-size: 11px;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--body-faint); margin-top: 6px;
}
.card .btn { margin: 30px auto 0; padding: 12px 30px; font-size: 11px; }

/* ---------- Logo row ---------- */
.logo-row {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 56px; padding: 20px 0;
}
.logo-row img {
  height: 34px; width: auto; object-fit: contain;
  filter: grayscale(1) brightness(2.4) opacity(0.55);
  transition: filter 0.3s;
}
.logo-row img:hover { filter: grayscale(0) brightness(1) opacity(1); }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 26px; }
.member {
  background: linear-gradient(165deg, var(--panel) 0%, var(--ink-2) 100%);
  border: 1px solid rgba(var(--accent-rgb), 0.14);
  border-radius: 14px; overflow: hidden; text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}
.member { position: relative; display: block; color: inherit; }
.member:hover { transform: translateY(-4px); border-color: rgba(var(--accent-rgb), 0.45); }
/* LinkedIn badge */
.li-badge {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(var(--ink-rgb), 0.72);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(var(--accent-rgb), 0.4);
  color: var(--gold-pale);
  opacity: 0; transform: translateY(-6px);
  transition: opacity 0.3s, transform 0.3s, background 0.3s, color 0.3s;
}
.member:hover .li-badge { opacity: 1; transform: translateY(0); }
.member:hover .li-badge:hover { background: var(--gold); color: var(--ink); }

/* ---------- Scroll reveal ---------- */
.reveal-grid > * {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(.2,.7,.3,1), transform 0.7s cubic-bezier(.2,.7,.3,1);
}
.reveal-grid > *.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal-grid > * { opacity: 1; transform: none; transition: none; }
}
/* Circular portraits — every headshot is pre-cropped to the same square, so the
   circle mask lands identically on all 23 and no source background shows. */
.member img {
  display: block;
  width: 160px;
  height: 160px;          /* must be explicit: the img height attribute is a
                             presentational hint and would otherwise win */
  margin: 32px auto 0;   /* no max-width: a % cap could shrink width and re-oval it */
  object-fit: cover;
  border-radius: 50%;
  background: var(--ink-2);
  box-shadow:
    0 0 0 1px rgba(var(--accent-rgb), 0.28),
    0 10px 26px rgba(0, 0, 0, 0.45);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}
.member:hover img {
  transform: scale(1.03);
  box-shadow:
    0 0 0 1px rgba(var(--accent-rgb), 0.6),
    0 14px 32px rgba(0, 0, 0, 0.55);
}
@media (max-width: 520px) { .member img { width: 140px; height: 140px; } }
@media (prefers-reduced-motion: reduce) { .member:hover img { transform: none; } }
.member .m-body { padding: 22px 20px 26px; }
.member .m-name { font-family: var(--serif-caps); font-size: 19px; color: var(--cream); letter-spacing: 0.04em; }
.member .m-role {
  margin-top: 6px; font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-muted);
}
.member .m-quote {
  margin-top: 14px;
  font-family: var(--sans); font-style: normal; font-weight: 300;
  font-size: 14px; line-height: 1.65;
  color: var(--cream-2);
}

/* ---------- Detail list (program pages) ---------- */
.detail-list { list-style: none; margin-top: 34px; }
.detail-list li {
  padding: 20px 0; border-bottom: 1px solid rgba(var(--accent-rgb), 0.12);
  display: flex; gap: 22px; align-items: baseline;
}
.detail-list .num {
  font-family: var(--serif-display); font-weight: 600;
  font-size: 26px; color: var(--gold); min-width: 40px;
}
.detail-list strong { color: var(--cream); font-weight: 500; display: block; margin-bottom: 4px; letter-spacing: 0.02em; }
.detail-list p { font-size: 15px; color: var(--body-dim); }

.meta-strip {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px; background: rgba(var(--accent-rgb), 0.16);
  border: 1px solid rgba(var(--accent-rgb), 0.16); border-radius: 14px; overflow: hidden;
  margin: 60px 0;
}
.meta-strip > div { background: var(--ink-2); padding: 28px 24px; text-align: center; }
.meta-strip .k {
  font-size: 10.5px; font-weight: 500; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold-muted);
}
.meta-strip .v {
  margin-top: 8px; font-family: var(--serif-caps);
  font-size: 19px; color: var(--cream);
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden; text-align: center;
  padding: 120px 24px;
  background: radial-gradient(800px 420px at 50% 120%, rgba(var(--accent-rgb), 0.16), transparent 65%),
    linear-gradient(180deg, var(--ink) 0%, var(--panel-2) 100%);
  border-top: 1px solid rgba(var(--accent-rgb), 0.14);
}
.cta-band .h2 { max-width: 700px; margin: 18px auto 0; }
.cta-band p { max-width: 640px; margin: 26px auto 0; color: var(--body-dim); }

/* ---------- Contact form ---------- */
/* lit glass frame around the animation, with space from the form */
.contact-section .split { gap: 96px; align-items: center; }
.contact-section .imgbox {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(var(--accent-rgb), 0.45);
  background: #080c11;
  box-shadow:
    0 0 0 1px rgba(var(--accent-rgb), 0.12),
    0 0 34px rgba(var(--accent-rgb), 0.28),
    0 0 90px rgba(var(--accent-rgb), 0.14),
    0 30px 70px rgba(0, 0, 0, 0.6);
  animation: contactGlow 4.5s ease-in-out infinite;
}
@keyframes contactGlow {
  0%, 100% { box-shadow: 0 0 0 1px rgba(var(--accent-rgb),.12), 0 0 34px rgba(var(--accent-rgb),.28), 0 0 90px rgba(var(--accent-rgb),.14), 0 30px 70px rgba(0,0,0,.6); }
  50%      { box-shadow: 0 0 0 1px rgba(var(--accent-rgb),.22), 0 0 48px rgba(var(--accent-rgb),.45), 0 0 120px rgba(var(--accent-rgb),.22), 0 30px 70px rgba(0,0,0,.6); }
}
.contact-section .imgbox video { border-radius: 21px; }
@media (max-width: 900px) { .contact-section .split { gap: 56px; } }
@media (prefers-reduced-motion: reduce) { .contact-section .imgbox { animation: none; } }
.contact-form { margin-top: 36px; }
.contact-form .field { margin-bottom: 22px; }
.contact-form label {
  display: block; margin-bottom: 8px;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-muted);
}
.contact-form input, .contact-form textarea {
  width: 100%;
  background: rgba(var(--accent-rgb), 0.05);
  border: 1px solid rgba(var(--accent-rgb), 0.22);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--cream);
  font-family: var(--sans); font-weight: 300; font-size: 16px;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.contact-form input:focus, .contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.12);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.form-note { margin-top: 20px; font-size: 14px; color: var(--gold-pale); display: none; }
.form-note.show { display: block; }

/* ---------- Scrolling ticker ---------- */
.ticker {
  overflow: hidden;
  border-top: 1px solid rgba(var(--accent-rgb), 0.14);
  background: var(--ink-2);
  padding: 26px 0;
}
.ticker-track {
  display: flex; align-items: center; gap: 64px;
  width: max-content; white-space: nowrap;
  animation: ticker-scroll 28s linear infinite;
}
.ticker-track span {
  font-family: var(--serif-caps);
  font-size: 15px; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--cream-2);
}
.ticker-track i {
  font-style: normal; color: var(--gold); font-size: 12px;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid rgba(var(--accent-rgb), 0.14);
  padding: 80px 0 40px;
  background: var(--ink-2);
}
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.foot-brand { font-family: var(--serif-caps); font-size: 22px; letter-spacing: 0.16em; color: var(--cream); }
.foot-brand span { color: var(--gold); }
.foot-tag { margin-top: 16px; font-size: 14px; color: var(--body-faint); max-width: 300px; }
footer h4 {
  font-family: var(--sans); font-weight: 500; font-size: 11px;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold-muted);
  margin-bottom: 20px;
}
footer ul { list-style: none; }
footer li { margin-bottom: 12px; }
footer li a { font-size: 14px; color: var(--body-dim); transition: color 0.25s; }
footer li a:hover { color: var(--gold-pale); }
.foot-base {
  margin-top: 64px; padding-top: 28px;
  border-top: 1px solid rgba(var(--accent-rgb), 0.1);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12.5px; color: var(--body-faint);
  letter-spacing: 0.08em;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 44px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: flex-start;
    background: rgba(var(--ink-rgb), 0.98);
    padding: 28px 32px; gap: 22px;
    border-bottom: 1px solid rgba(var(--accent-rgb), 0.2);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .hero-eclipse { width: 380px; height: 380px; }
}

/* ---------- Palette switcher (review aid) ---------- */
.theme-switch {
  position: fixed; left: 18px; bottom: 18px; z-index: 200;
  display: flex; align-items: center; gap: 6px;
  padding: 7px 9px 7px 13px; border-radius: 999px;
  background: rgba(var(--ink-rgb), 0.82);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(var(--accent-rgb), 0.28);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.theme-switch .ts-label {
  font-family: var(--sans); font-size: 9px; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--body-faint); margin-right: 4px;
}
.theme-switch button {
  font-family: var(--sans); font-size: 10px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 6px 13px; border-radius: 999px; cursor: pointer;
  background: transparent; color: var(--body-dim);
  border: 1px solid transparent; transition: all 0.25s;
}
.theme-switch button:hover { color: var(--gold-pale); }
.theme-switch button.on {
  background: var(--gold); color: var(--on-accent);
  border-color: var(--gold);
}
@media (max-width: 640px) { .theme-switch { left: 12px; bottom: 12px; transform: scale(0.9); transform-origin: left bottom; } }

/* ---------- Ember sparks (AO Awards schema) ----------
   Fixed to the viewport so they rise continuously from the footer edge up
   past the header on every screen, at every scroll position. Coloured from
   --pale-rgb / --accent-rgb, so they read as gold embers in the gold palette
   and cool sparks in chrome. */
.ember-layer {
  position: fixed; inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.ember {
  position: absolute;
  bottom: -12px;
  border-radius: 50%;
  will-change: transform, opacity;
}
@keyframes floatEmber {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  12%  { opacity: 1; }
  100% { transform: translateY(-106vh) translateX(20px); opacity: 0; }
}
/* nav, footer chrome and the captain all sit above the spark field */
.nav, footer, .cap-fab, .cap-panel, .theme-switch { z-index: 100; }
@media (prefers-reduced-motion: reduce) { .ember-layer { display: none; } }

/* ---------- Team groups: staff · board · advisors ---------- */
.team-group { margin: 0 0 26px; }
.team-group-sep {
  margin-top: 74px; padding-top: 46px;
  border-top: 1px solid rgba(var(--accent-rgb), 0.16);
}
.tg-label {
  display: block;
  font-family: var(--sans); font-weight: 500;
  font-size: 12px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold);
}
.tg-sub { margin-top: 8px; font-size: 14.5px; color: var(--body-dim); }

/* ---------- Footer motto — the TASHA acronym ----------
   Letter-spaced with the initials picked out in the accent, so the
   acronym reads without having to spell it out. */
.foot-motto {
  margin-top: 18px;
  font-family: var(--serif-caps);
  font-size: 14.5px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: var(--cream-2);
  max-width: 320px;
}
.foot-motto span { white-space: nowrap; }
.foot-motto b {
  font-family: var(--serif-caps);
  font-weight: 400;
  color: var(--gold);
}

/* ---------- Programs grid: six cards ----------
   The default auto-fit grid lands 4+2 on a wide screen, which reads as two
   leftovers rather than a set. Pinning three columns gives a balanced 3x2,
   and the auto-fit behaviour still takes over below the breakpoint. */
@media (min-width: 1000px) {
  .cards.cards-3 { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- 2025 Impact Report ----------
   A lit panel rather than a bare button: the report is a credibility
   asset, so it gets the weight of a section without stealing the page
   from the team below it. */
.report-card {
  text-align: center;
  padding: 54px 40px 48px;
  border-radius: 18px;
  background: linear-gradient(165deg, var(--card-1) 0%, var(--card-2) 62%, var(--card-3) 100%);
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45),
              0 0 60px rgba(var(--accent-rgb), 0.07);
}
.report-card .rule { margin-left: auto; margin-right: auto; }
.report-card .dim { max-width: 520px; margin: 16px auto 0; }
.report-actions {
  margin-top: 36px; display: flex; gap: 14px;
  justify-content: center; flex-wrap: wrap;
}




/* ============================================================
   IMPACT REPORT — full-bleed reader
   The report is the screen. No card, no border, no container:
   the only furniture is a thin bar and floating controls.
   ============================================================ */
.report-body { overflow: hidden; }

.rdr {
  position: relative; height: 100vh; overflow: hidden;
  background:
    radial-gradient(900px 620px at 50% -10%, var(--glow-1), transparent 62%),
    radial-gradient(700px 520px at 50% 110%, var(--glow-3), transparent 60%),
    var(--ink);
}

/* --- thin bar --- */
.rdr-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  height: 60px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 22px; gap: 16px;
  background: rgba(var(--ink-rgb), 0.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(var(--accent-rgb), 0.14);
}
.rdr-back, .rdr-back { color: var(--gold-muted); transition: color 0.2s; }
.rdr-back:hover { color: var(--gold-pale); }
.rdr-title {
  font-family: var(--serif-caps); font-size: 14px; letter-spacing: 0.08em;
  color: var(--cream-2); white-space: nowrap;
}

/* --- loading --- */
.rdr-status {
  position: absolute; inset: 0; display: flex; gap: 12px;
  align-items: center; justify-content: center;
  font-size: 13.5px; letter-spacing: 0.06em; color: var(--gold-muted);
}
.rdr-spin {
  width: 15px; height: 15px; border-radius: 50%;
  border: 2px solid rgba(var(--accent-rgb), 0.25);
  border-top-color: var(--gold); animation: rdrSpin 0.8s linear infinite;
}
@keyframes rdrSpin { to { transform: rotate(360deg); } }

/* --- deck: one page, filling the screen --- */
.rdr-deck {
  display: flex; align-items: center; justify-content: center;
  /* fixed height + border-box: the deck is exactly one screen, never
     one screen plus a stray scrollbar */
  height: 100vh; box-sizing: border-box; padding: 70px 88px 74px;
}
.rdr-slide .pg { animation: slideIn 0.3s ease; }
@keyframes slideIn { from { opacity: 0; transform: translateY(8px) scale(0.995); } to { opacity: 1; transform: none; } }
.rdr-slide canvas {
  display: block; max-width: 100%; height: auto; border-radius: 4px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(var(--accent-rgb), 0.14);
}

.rdr-arrow {
  position: fixed; top: 50%; transform: translateY(-50%); z-index: 55;
  width: 52px; height: 52px; border-radius: 50%; cursor: pointer;
  font-size: 26px; line-height: 1; display: flex; align-items: center; justify-content: center;
  background: rgba(var(--ink-rgb), 0.55); color: var(--gold-pale);
  border: 1px solid rgba(var(--accent-rgb), 0.28);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.rdr-arrow:hover { background: rgba(var(--accent-rgb), 0.2); border-color: var(--gold); }
.rdr-arrow.prev { left: 20px; } .rdr-arrow.next { right: 20px; }

/* --- floating footer --- */
.rdr-foot {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
  display: flex; align-items: center; justify-content: center; gap: 18px;
  padding: 14px 20px;
  background: linear-gradient(to top, rgba(var(--ink-rgb), 0.9), transparent);
}
.rdr-dots { display: flex; gap: 7px; flex-wrap: wrap; justify-content: center; max-width: 60vw; }
.rdr-dot {
  width: 7px; height: 7px; padding: 0; border-radius: 50%; cursor: pointer;
  background: rgba(var(--accent-rgb), 0.28); border: 0; transition: all 0.2s;
}
.rdr-dot:hover { background: rgba(var(--accent-rgb), 0.6); }
.rdr-dot.on { background: var(--gold); transform: scale(1.5); }
.rdr-count { font: 600 11px/1 var(--sans); letter-spacing: 0.16em; color: var(--gold-muted); }
.rdr-count b { color: var(--gold-pale); font-weight: 600; }

@media (max-width: 760px) {
  .rdr-bar { height: 54px; padding: 0 12px; gap: 8px; }
  .rdr-title { display: none; }
  .rdr-back { font-size: 9px; letter-spacing: 0.14em; }
    .rdr-deck { padding: 62px 52px 66px; }
  .rdr-arrow { width: 42px; height: 42px; font-size: 21px; }
  .rdr-arrow.prev { left: 8px; } .rdr-arrow.next { right: 8px; }
  .rdr-dots { display: none; }
}

.rdr-side { width: 90px; }   /* balances the back link so the title stays centred */

/* ============================================================
   WAVE 2 — status chips, eligibility strip, interest forms
   ============================================================ */
.status-chip {
  display: inline-flex; align-items: center; margin-left: 12px;
  padding: 8px 14px; border-radius: 999px;
  font: 600 9.5px/1 var(--sans); letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-muted); background: rgba(var(--accent-rgb), 0.08);
  border: 1px solid rgba(var(--accent-rgb), 0.24);
}

/* Same four facts, same order, on every program page. */
.elig-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(var(--accent-rgb), 0.16); border-radius: 14px;
  overflow: hidden; margin-bottom: 62px;
  background: rgba(var(--ink-rgb), 0.4);
}
.elig-strip > div { padding: 26px 22px; border-right: 1px solid rgba(var(--accent-rgb), 0.12); }
.elig-strip > div:last-child { border-right: 0; }
.elig-strip .k {
  font: 600 9.5px/1 var(--sans); letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-muted); margin-bottom: 10px;
}
.elig-strip .v { font-family: var(--serif-caps); font-size: 15px; color: var(--cream-2); line-height: 1.4; }

/* ---- interest form ---- */
.form-card {
  padding: 52px 46px 46px; border-radius: 18px; text-align: center;
  background: linear-gradient(165deg, var(--card-1) 0%, var(--card-2) 62%, var(--card-3) 100%);
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}
.form-card .rule { margin-left: auto; margin-right: auto; }
.form-card .dim { max-width: 520px; margin: 16px auto 0; }
.tec-form { margin-top: 34px; text-align: left; max-width: 560px; margin-left: auto; margin-right: auto; }
.tec-form label {
  display: block; margin-bottom: 18px;
  font: 600 10px/1 var(--sans); letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-muted);
}
.tec-form .opt { text-transform: none; letter-spacing: 0.04em; color: var(--body-faint); font-weight: 400; }
.tec-form input, .tec-form textarea {
  display: block; width: 100%; margin-top: 9px; padding: 13px 15px;
  font: 300 15px/1.5 var(--sans); color: var(--cream);
  background: rgba(var(--ink-rgb), 0.66); border-radius: 9px;
  border: 1px solid rgba(var(--accent-rgb), 0.22);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.tec-form input:focus, .tec-form textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.16);
}
.tec-form textarea { resize: vertical; }
.ff-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.tec-form .btn { margin-top: 8px; width: 100%; justify-content: center; }
.ff-note { margin-top: 14px; font-size: 12px; color: var(--body-faint); text-align: center; }
/* honeypot: real people never see it, bots fill it in */
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

@media (max-width: 760px) {
  .elig-strip { grid-template-columns: 1fr 1fr; }
  .elig-strip > div:nth-child(2) { border-right: 0; }
  .elig-strip > div:nth-child(-n+2) { border-bottom: 1px solid rgba(var(--accent-rgb), 0.12); }
  .form-card { padding: 38px 20px 34px; }
  .ff-row { grid-template-columns: 1fr; gap: 0; }
  .status-chip { margin: 14px 0 0; }
}

/* Members without a headshot yet: monogram in the same circle, so the
   grid stays even instead of collapsing around a missing image. */
.member-np { display: block; text-align: center; text-decoration: none; }
.np-mark {
  display: flex; align-items: center; justify-content: center;
  width: 160px; height: 160px; margin: 32px auto 0; border-radius: 50%;
  font-family: var(--serif-caps); font-size: 40px; letter-spacing: 0.04em;
  color: var(--gold-pale);
  background: radial-gradient(circle at 34% 26%, var(--orb-1), var(--orb-3) 72%, var(--orb-4));
  border: 1px solid rgba(var(--accent-rgb), 0.28);
  box-shadow: inset 0 0 40px rgba(var(--accent-rgb), 0.14);
}
.tg-label-sm { font-size: 10.5px; opacity: 0.85; }
