/* ── METADOCK REDESIGN PREVIEW ── matches Metaplexus pattern, MetaDock blue primary ── */
:root {
  --bg: #020610;
  --bg-section: #0A0E16;
  --text: #F0F2FA;
  --text-muted: #BCC6D8;

  /* Ecosystem palette — locked 2026-05-21. One hue family (H210), stepped by lightness. */
  --accent: #42A1FF;            /* MetaDock — H210 L63 */
  --accent-mid: #2E86D9;
  --accent-rgb: 66,161,255;

  --metaos-accent: #61B0FF;     /* MetaOS — H210 L69 */
  --metaos-rgb: 97,176,255;
  --metaplexus-accent: #70B8FF; /* Metaplexus — H210 L72 */
  --metaplexus-rgb: 112,184,255;

  --border: #08101A;
  --border-light: #111C28;

  --mono: 'DM Mono', monospace;
  --sans: 'Space Grotesk', sans-serif;
  --display: 'Manrope', sans-serif;
  --brand: 'Michroma', sans-serif;
}

/* Per-page hero image; the MetaOS page also carries the MetaOS hue */
body.page-home      { --hero-img: url('hero-home.png'); }
body.page-community { --hero-img: url('hero-community.png'); }
body.page-partner   { --hero-img: url('hero-partner.png'); }
body.page-metaos    { --hero-img: url('hero-metaos.png'); --accent: var(--metaos-accent); --accent-rgb: var(--metaos-rgb); }

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--accent); color: var(--bg); }

/* page at 900px (sections + hero). nav wider at 1140px. hero paragraphs match section paragraphs — no extra constraint. */
.container { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1140px; margin: 0 auto; padding: 0 40px; }
.nav .container { max-width: 1140px; padding: 0 40px; }
section { padding: 88px 0; position: relative; overflow: visible; }
.sec-alt { background: var(--bg-section); }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(2,6,16,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(var(--accent-rgb),0.28);
  box-shadow: 0 2px 48px rgba(var(--accent-rgb),0.10);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav-logo {
  font-family: var(--brand); font-weight: 400;
  font-size: 1.05rem; letter-spacing: 0.1em;
  text-decoration: none; line-height: 1;
}
.logo-meta { color: var(--accent); }
.logo-dock { color: #fff; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-link {
  font-family: var(--mono); font-size: 0.7rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-muted); text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--text); }
.nav-link.active { color: var(--accent); }
.btn-nav {
  font-family: var(--mono); font-size: 0.68rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--bg); background: var(--accent);
  padding: 10px 20px; text-decoration: none;
  box-shadow: 0 0 18px rgba(var(--accent-rgb),0.28);
  transition: background 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn-nav:hover { box-shadow: 0 0 40px rgba(var(--accent-rgb),0.55); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  font-family: var(--mono); font-size: 0.78rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--bg); background: var(--accent);
  padding: 14px 32px; text-decoration: none;
  box-shadow: 0 0 28px rgba(var(--accent-rgb),0.35);
  transition: box-shadow 0.2s;
}
.btn-primary { animation: btnPulse 3.5s ease-in-out infinite alternate; }
.btn-primary:hover { box-shadow: 0 0 55px rgba(var(--accent-rgb),0.70), 0 0 110px rgba(var(--accent-rgb),0.25); animation: none; }
@keyframes btnPulse {
  0% { box-shadow: 0 0 24px rgba(var(--accent-rgb),0.32); }
  100% { box-shadow: 0 0 42px rgba(var(--accent-rgb),0.55); }
}
.btn-ghost {
  display: inline-block;
  font-family: var(--mono); font-size: 0.75rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text); text-decoration: none;
  background: rgba(2,6,16,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.16);
  padding: 13px 28px;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { color: var(--accent); border-color: var(--accent-mid); background: rgba(2,6,16,0.75); }

/* ── HERO ── (atmospheric layered — bridge to future tech, with GPT bg image base + text-zone gradient overlay) */
.hero {
  min-height: 100vh; display: flex; align-items: center; padding: 24px 0 72px;
  position: relative; overflow: hidden; isolation: isolate;
  /* dim across full width — text reads cleanly, HUD still vivid at reduced brightness */
  background-image:
    linear-gradient(to right, rgba(2,6,16,0.92) 0%, rgba(2,6,16,0.84) 40%, rgba(2,6,16,0.74) 70%, rgba(2,6,16,0.64) 100%),
    var(--hero-img, url('hero-home.png'));
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}
@media (max-width: 720px) {
  .hero {
    background-image:
      linear-gradient(to bottom, rgba(2,6,16,0.94) 0%, rgba(2,6,16,0.87) 40%, rgba(2,6,16,0.78) 70%, rgba(2,6,16,0.68) 100%),
      var(--hero-img, url('hero-home.png'));
  }
}

/* Soft dark halo behind each hero text element — text sits on its own dark pocket so it pops against bright HUD glow */
.hero-eyebrow, .hero-headline, .hero-sub { position: relative; }
.hero-eyebrow::before, .hero-headline::before, .hero-sub::before {
  content: '';
  position: absolute;
  inset: -14px -32px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.20) 80%, transparent 100%);
  filter: blur(10px);
  z-index: -1;
  pointer-events: none;
}
.hero-headline::before { inset: -18px -40px; }
.hero-sub::before { inset: -10px -32px; }

/* Layer 1: central radial bloom, oscillating */
.hero::before {
  content: '';
  position: absolute; top: 48%; left: 50%;
  transform: translate(-50%, -50%);
  width: 1200px; height: 850px;
  background: radial-gradient(ellipse at center, rgba(var(--accent-rgb),0.18) 0%, rgba(var(--accent-rgb),0.06) 40%, transparent 80%);
  pointer-events: none; z-index: 0;
  animation: heroBloomBreathe 12s ease-in-out infinite;
  mask-image: linear-gradient(180deg, #000 0%, #000 60%, transparent 95%);
}

/* Layer 2: secondary drifting bloom */
.hero::after {
  content: '';
  position: absolute; top: 28%; left: 70%;
  width: 600px; height: 600px;
  background: radial-gradient(circle at center, rgba(var(--accent-rgb),0.13) 0%, rgba(var(--accent-rgb),0.04) 35%, transparent 70%);
  pointer-events: none; z-index: 0;
  animation: heroBloomDrift 18s ease-in-out infinite;
  mask-image: linear-gradient(180deg, #000 0%, #000 50%, transparent 90%);
}

/* Layer 3: ambient particles — denser + brighter than Metaplexus */
.hero-fx {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
  overflow: hidden;
  mask-image: linear-gradient(180deg, #000 0%, #000 55%, transparent 90%);
}
.hero-fx .dot {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.55;
  box-shadow: 0 0 12px rgba(var(--accent-rgb),0.9);
  animation: dotDrift 16s linear infinite;
}
.hero-fx .dot:nth-child(1)  { top: 16%; left: 10%; animation-duration: 20s; animation-delay: -1s; }
.hero-fx .dot:nth-child(2)  { top: 26%; left: 80%; animation-duration: 24s; animation-delay: -7s; }
.hero-fx .dot:nth-child(3)  { top: 42%; left: 20%; animation-duration: 28s; animation-delay: -13s; opacity: 0.35; }
.hero-fx .dot:nth-child(4)  { top: 52%; left: 88%; animation-duration: 18s; animation-delay: -3s; }
.hero-fx .dot:nth-child(5)  { top: 14%; left: 58%; animation-duration: 26s; animation-delay: -10s; opacity: 0.40; }
.hero-fx .dot:nth-child(6)  { top: 36%; left: 48%; animation-duration: 30s; animation-delay: -16s; opacity: 0.25; }
.hero-fx .dot:nth-child(7)  { top: 20%; left: 33%; animation-duration: 22s; animation-delay: -5s; opacity: 0.45; }
.hero-fx .dot:nth-child(8)  { top: 8%; left: 92%; animation-duration: 24s; animation-delay: -18s; }
.hero-fx .dot:nth-child(9)  { top: 32%; left: 65%; animation-duration: 26s; animation-delay: -9s; opacity: 0.35; }
.hero-fx .dot:nth-child(10) { top: 48%; left: 42%; animation-duration: 20s; animation-delay: -12s; opacity: 0.30; }

/* Layer 4: scan stripe (faster than Metaplexus) */
.hero-scan {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 49%, rgba(var(--accent-rgb),0.12) 50%, transparent 51%, transparent 100%);
  background-size: 100% 400%;
  animation: scanSweep 10s linear infinite;
  mask-image: linear-gradient(180deg, #000 0%, #000 65%, transparent 95%);
}

.hero .container { position: relative; z-index: 1; }

@keyframes heroBloomBreathe {
  0%, 100% { opacity: 0.88; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}
@keyframes heroBloomDrift {
  0%, 100% { transform: translate(0, 0); opacity: 0.7; }
  25% { transform: translate(-50px, 20px); opacity: 0.95; }
  50% { transform: translate(-80px, -10px); opacity: 0.6; }
  75% { transform: translate(-30px, 30px); opacity: 0.9; }
}
@keyframes dotDrift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(22px, -18px); }
  50% { transform: translate(-12px, 28px); }
  75% { transform: translate(18px, 12px); }
  100% { transform: translate(0, 0); }
}
@keyframes scanSweep {
  0% { background-position: 0 -100%; }
  100% { background-position: 0 200%; }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before, .hero::after, .hero-fx .dot, .hero-scan { animation: none; }
}
.hero-eyebrow {
  font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 32px;
  text-shadow: 0 0 3px rgba(0,0,0,0.95), 0 0 7px rgba(0,0,0,0.85), 0 0 14px rgba(0,0,0,0.6);
}
.hero-headline {
  font-family: var(--display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  line-height: 1.05; font-weight: 700;
  letter-spacing: -0.02em; margin-bottom: 28px;
  /* tight dark halo around every letter so white text reads on bright blue areas */
  text-shadow:
    0 0 4px rgba(0,0,0,0.95),
    0 0 9px rgba(0,0,0,0.85),
    0 0 16px rgba(0,0,0,0.7),
    0 2px 22px rgba(0,0,0,0.55);
}
.hero-headline em {
  font-style: italic; color: var(--accent);
  /* blue glow + tight white core (helps pop on blue-glow backgrounds) + dark halo */
  text-shadow:
    0 0 1px rgba(255,255,255,0.55),
    0 0 16px rgba(var(--accent-rgb),0.95),
    0 0 48px rgba(var(--accent-rgb),0.55),
    0 0 5px rgba(0,0,0,0.95),
    0 0 12px rgba(0,0,0,0.85),
    0 2px 24px rgba(0,0,0,0.85);
}
.hero-sub {
  font-size: 1.08rem; color: var(--text); line-height: 1.85; margin-bottom: 36px;
  /* dense dark halo so each letter sits on darkness regardless of background */
  text-shadow:
    0 0 4px rgba(0,0,0,0.95),
    0 0 9px rgba(0,0,0,0.92),
    0 0 16px rgba(0,0,0,0.8),
    0 0 24px rgba(0,0,0,0.55);
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── SECTIONS ── (section break sweep + label glow, stronger than Metaplexus) */
section + section::before {
  content: '';
  display: block;
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(var(--accent-rgb),0.10) 20%, rgba(var(--accent-rgb),0.65) 50%, rgba(var(--accent-rgb),0.10) 80%, transparent 100%);
  background-size: 200% 1px;
  animation: sectionSweep 5s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes sectionSweep {
  0% { background-position: 0% 0; }
  100% { background-position: 100% 0; }
}

.section-label {
  font-size: 0.62rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
  text-shadow: 0 0 14px rgba(var(--accent-rgb),0.65);
  animation: labelGlow 4s ease-in-out infinite alternate;
}
@keyframes labelGlow {
  0% { text-shadow: 0 0 8px rgba(var(--accent-rgb),0.45); opacity: 0.85; }
  100% { text-shadow: 0 0 22px rgba(var(--accent-rgb),0.80), 0 0 38px rgba(var(--accent-rgb),0.25); opacity: 1; }
}
.section-headline {
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.5vw, 2.1rem);
  font-weight: 600; line-height: 1.08;
  letter-spacing: -0.01em; margin-bottom: 24px;
}
.section-headline em { font-style: italic; color: var(--accent); text-shadow: 0 0 24px rgba(var(--accent-rgb),0.5); }
.section-body { font-size: 1.1rem; color: var(--text-muted); line-height: 1.85; }
.section-body + .section-body { margin-top: 16px; }

/* ── CARDS ── */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; margin-top: 36px; }
/* Prevent orphan card on second row: 4-card grids force 2x2, 5-card grids force 3+2 alignment, etc. */
.card-grid:has(> .card:nth-child(4):last-child) { grid-template-columns: 1fr 1fr; }
.card-grid:has(> .card:nth-child(2):last-child) { grid-template-columns: 1fr 1fr; }
.card {
  background: rgba(var(--accent-rgb),0.04);
  border: 1px solid rgba(var(--accent-rgb),0.18);
  border-top: 2px solid var(--accent);
  padding: 28px;
  transition: box-shadow 0.25s, transform 0.2s, border-color 0.25s;
  box-shadow: 0 0 18px rgba(var(--accent-rgb),0.08);
}
.card:hover {
  box-shadow: 0 0 42px rgba(var(--accent-rgb),0.30), 0 0 80px rgba(var(--accent-rgb),0.14);
  border-color: rgba(var(--accent-rgb),0.40);
  transform: translateY(-3px);
}
.card-label { font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; opacity: 0.85; }
.card-title { font-family: var(--display); font-weight: 600; font-size: 1.15rem; margin-bottom: 14px; line-height: 1.3; }
.card-body { font-size: 0.98rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 18px; }
.card-link { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); text-decoration: none; }
.card-link:hover { text-decoration: underline; }

/* ── UTILITY ── */
.util-header { padding: 110px 0 32px; border-bottom: 1px solid var(--border-light); }
.util-header h1 { font-family: var(--display); font-weight: 700; font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 12px; letter-spacing: -0.01em; }
.util-header p { color: var(--text-muted); max-width: 720px; }

.filter-bar {
  padding: 22px 0; border-bottom: 1px solid var(--border-light);
  background: var(--bg-section);
}
.filter-bar .container-wide { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.filter-chip {
  font-family: var(--mono); font-size: 0.62rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 8px 16px; border: 1px solid var(--border-light);
  background: transparent; color: var(--text-muted);
  cursor: pointer; transition: all 0.2s;
}
.filter-chip:hover, .filter-chip.active { border-color: var(--accent); color: var(--accent); }
.filter-search {
  flex: 1; min-width: 200px;
  padding: 10px 16px; background: transparent;
  border: 1px solid var(--border-light); color: var(--text);
  font-family: var(--sans); font-size: 0.9rem;
}
.filter-search:focus { outline: none; border-color: var(--accent); }

.util-grid {
  padding: 40px 32px;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px; max-width: 1200px; margin: 0 auto;
}

/* Mentor page: 3-column vertical cards (matches Workshops/Courses width) */
.util-grid.mentor-list { grid-template-columns: repeat(3, 1fr) !important; gap: 22px; max-width: 1200px; }
@media (max-width: 900px) {
  .util-grid.mentor-list { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 600px) {
  .util-grid.mentor-list { grid-template-columns: 1fr !important; }
}

/* How It Works — 3-box strip at top of utility pages */
.how-it-works-strip {
  padding: 22px 0 8px;
  border-bottom: 1px solid var(--border-light);
}
.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.how-step {
  padding: 14px 18px;
  background: rgba(var(--accent-rgb),0.04);
  border: 1px solid rgba(var(--accent-rgb),0.18);
  border-top: 2px solid var(--accent);
}
.how-step-eyebrow {
  font-family: var(--mono); font-size: 0.68rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 8px; opacity: 0.95;
}
.how-step-body {
  font-size: 0.88rem; color: var(--text-muted); line-height: 1.55;
}
@media (max-width: 720px) {
  .how-it-works-grid { grid-template-columns: 1fr; gap: 12px; }
}
.util-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.25s;
  position: relative;
  text-decoration: none; color: inherit;
}
.util-card:hover { border-color: rgba(var(--accent-rgb),0.4); box-shadow: 0 0 22px rgba(var(--accent-rgb),0.15); }
.util-card-thumb {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, rgba(var(--accent-rgb),0.20), rgba(var(--accent-rgb),0.05));
  background-size: cover; background-position: center; background-repeat: no-repeat;
  display: flex; align-items: flex-end; justify-content: flex-start;
  padding: 0 0 10px 14px;
  font-family: var(--mono); font-size: 0.6rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent);
  position: relative;
}
.util-card-thumb::after {
  content: '';
  position: absolute; inset: auto 0 0 0;
  height: 50%;
  background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
  z-index: 0;
}
.util-card-thumb > * { position: relative; z-index: 1; }
.util-card-thumb.thumb-health { background-image: url('cat-health.png'); }
.util-card-thumb.thumb-wealth { background-image: url('cat-wealth.png'); }
.util-card-thumb.thumb-integration { background-image: url('cat-integration.png'); }
.util-card-thumb.thumb-protection { background-image: url('cat-protection.png'); }
.util-card-body { padding: 18px 22px; }
.util-card-cat { font-family: var(--mono); font-size: 0.56rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.util-card-title { font-family: var(--display); font-weight: 600; font-size: 1rem; margin-bottom: 10px; line-height: 1.35; }
.util-card-meta { font-family: var(--mono); font-size: 0.65rem; color: var(--text-muted); display: flex; gap: 12px; }
.util-card-locked::after {
  content: 'MEMBER UNLOCK';
  position: absolute; top: 12px; right: 12px;
  font-family: var(--mono); font-size: 0.52rem;
  letter-spacing: 0.16em;
  padding: 4px 8px;
  background: rgba(0,0,0,0.7);
  color: var(--accent);
  border: 1px solid rgba(var(--accent-rgb),0.4);
}

/* ── FORMS ── */
.form-card {
  max-width: 480px; margin: 120px auto 80px;
  background: var(--bg-section);
  border: 1px solid var(--border-light);
  border-top: 2px solid var(--accent);
  padding: 40px;
}
.form-card h1 { font-family: var(--display); font-weight: 700; font-size: 1.5rem; margin-bottom: 12px; letter-spacing: -0.01em; }
.form-card .lede { color: var(--text-muted); margin-bottom: 28px; }
.form-card ul { padding-left: 20px; color: var(--text-muted); margin-bottom: 28px; }
.form-card ul li { margin-bottom: 8px; }
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-family: var(--mono); font-size: 0.6rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 8px;
}
.form-field label .optional-marker {
  text-transform: none; letter-spacing: 0.04em;
  color: var(--text-muted); opacity: 0.7;
  margin-left: 6px; font-size: 0.95em;
}
.form-field input,
.form-field select {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--border-light);
  color: var(--text);
  font-family: var(--sans); font-size: 0.95rem;
  -webkit-appearance: none; -moz-appearance: none; appearance: none;
}
.form-field select {
  background-image: linear-gradient(45deg, transparent 50%, var(--accent) 50%), linear-gradient(135deg, var(--accent) 50%, transparent 50%);
  background-position: calc(100% - 18px) center, calc(100% - 12px) center;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 36px;
  cursor: pointer;
}
.form-field input:focus,
.form-field select:focus { outline: none; border-color: var(--accent); }
.form-submit {
  width: 100%;
  font-family: var(--mono); font-size: 0.72rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--accent); color: var(--bg);
  padding: 14px; border: none; font-weight: 500;
  cursor: pointer;
  box-shadow: 0 0 22px rgba(var(--accent-rgb),0.45);
  transition: box-shadow 0.25s;
}
.form-submit:hover { box-shadow: 0 0 32px rgba(var(--accent-rgb),0.65); }
.form-foot { margin-top: 22px; text-align: center; font-size: 0.88rem; color: var(--text-muted); }
.form-foot a { color: var(--accent); text-decoration: none; }

/* Two-option chooser on /join */
.join-options { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 28px; }
.join-option {
  border: 1px solid var(--border-light);
  padding: 18px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.join-option.active { border-color: var(--accent); background: rgba(var(--accent-rgb),0.06); }
.join-option-label { font-family: var(--mono); font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
.join-option-title { font-family: var(--display); font-weight: 600; font-size: 0.95rem; margin-bottom: 6px; }
.join-option-body { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; }
.join-option-body a { color: var(--accent); text-decoration: none; }
.join-option-body a:hover { text-decoration: underline; }

/* ── MENTOR ── (3-column vertical cards: photo top, meta below) */
.mentor-card { display: flex; flex-direction: column; gap: 14px; padding: 22px; align-items: stretch; }
.mentor-photo {
  width: 100%; height: 160px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(var(--accent-rgb),0.28), rgba(var(--accent-rgb),0.05));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 700; font-size: 1.5rem; color: var(--accent);
}
.mentor-meta { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.mentor-name { font-family: var(--display); font-weight: 600; font-size: 1.1rem; margin-bottom: 8px; }
.mentor-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.mentor-tag { font-family: var(--mono); font-size: 0.55rem; letter-spacing: 0.16em; text-transform: uppercase; padding: 3px 8px; background: rgba(var(--accent-rgb),0.10); color: var(--accent); }
.mentor-bio { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 14px; line-height: 1.55; flex: 1; }
.mentor-cta { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: auto; }
.mentor-price { font-family: var(--mono); font-size: 0.72rem; color: var(--accent); letter-spacing: 0.04em; }
.mentor-book { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text); text-decoration: none; border: 1px solid var(--accent); padding: 7px 14px; transition: background 0.2s, color 0.2s; }
.mentor-book:hover { background: var(--accent); color: var(--bg); }

/* ── ACCOUNT PAGE ── */
.account-shell { padding: 90px 0 60px; }
.account-header { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--border-light); margin-bottom: 36px; }
.account-greeting { font-family: var(--display); font-weight: 600; font-size: 1.2rem; }
.account-status { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); }

.account-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.account-tile {
  background: rgba(var(--accent-rgb),0.04);
  border: 1px solid rgba(var(--accent-rgb),0.18);
  padding: 24px;
  position: relative;
}
.account-tile.locked {
  background: rgba(255,255,255,0.015);
  border-color: var(--border-light);
}
.account-tile.locked::after {
  content: 'UPGRADE TO UNLOCK';
  position: absolute; top: 18px; right: 18px;
  font-family: var(--mono); font-size: 0.52rem;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  border: 1px solid var(--border-light);
  padding: 4px 8px;
}
.account-tile-label { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; opacity: 0.9; }
.account-tile.locked .account-tile-label { color: var(--text-muted); }
.account-tile-title { font-family: var(--display); font-weight: 600; font-size: 1.1rem; margin-bottom: 10px; }
.account-tile-body { font-size: 0.92rem; color: var(--text-muted); }
.account-tile-cta { display: inline-block; margin-top: 14px; font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); text-decoration: none; }
.account-tile-cta:hover { text-decoration: underline; }

.account-upgrade {
  margin-top: 40px;
  background: rgba(var(--accent-rgb),0.06);
  border: 1px solid var(--accent);
  padding: 32px;
  display: flex; justify-content: space-between; align-items: center; gap: 22px; flex-wrap: wrap;
}
.account-upgrade-left { flex: 1; }
.account-upgrade h3 { font-family: var(--display); font-weight: 700; font-size: 1.35rem; margin-bottom: 8px; }
.account-upgrade p { color: var(--text-muted); font-size: 0.95rem; }

@media (max-width: 720px) {
  .account-grid { grid-template-columns: 1fr; }
  .join-options { grid-template-columns: 1fr; }
}

/* ── FOOTER ── */
footer { padding: 64px 0 48px; border-top: 1px solid var(--border-light); background: var(--bg); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; }
.footer-tagline { font-size: 0.92rem; color: var(--text-muted); max-width: 520px; line-height: 1.7; }
.footer-meta { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); }
.footer-partner-link { color: var(--accent); text-decoration: none; }

@media (max-width: 720px) {
  .nav-links .nav-link { display: none; }
  .nav-links .btn-nav { display: inline-block; }
  .hero { padding: 80px 0 64px; min-height: auto; }
  section { padding: 64px 0; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .util-grid { grid-template-columns: 1fr; }
}

/* ── FIND HUB — wide "View on Map" CTA above the 3 lane cards ── */
.find-map-cta {
  display: block; padding: 26px 32px;
  margin: 0 0 24px;
  border: 1px solid rgba(var(--accent-rgb), 0.30);
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.10) 0%, rgba(var(--accent-rgb), 0.03) 100%);
  text-decoration: none; color: var(--text);
  transition: all 0.2s;
}
.find-map-cta:hover {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.18) 0%, rgba(var(--accent-rgb), 0.06) 100%);
  box-shadow: 0 0 32px rgba(var(--accent-rgb), 0.18);
}
.find-map-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.find-map-cta-text { flex: 1; min-width: 220px; }
.find-map-cta-label { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
.find-map-cta-title { font-family: var(--display); font-weight: 600; font-size: 1.18rem; line-height: 1.4; }
.find-map-cta-title em { color: var(--accent); font-style: italic; }
.find-map-cta-arrow { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); white-space: nowrap; }

/* ── CARD: whole-card click target ── */
a.card.clickable { display: block; text-decoration: none; color: var(--text); cursor: pointer; }

/* ── SIDEBAR LAYOUT — left-edge category rail + 3-col content ── */
.with-sidebar {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  padding: 32px 0 48px;
  align-items: start;
}
.find-main {
  max-width: 1240px; width: 100%;
  margin: 0 auto; padding: 0 32px;
}

/* Category rail — a clean contained box, sticky on scroll */
.cat-sidebar {
  position: sticky; top: 24px;
  margin-left: 32px;
  background: linear-gradient(165deg, rgba(var(--accent-rgb),0.07) 0%, rgba(255,255,255,0.022) 100%);
  border: 1px solid rgba(var(--accent-rgb), 0.30);
  box-shadow: 0 0 30px rgba(var(--accent-rgb), 0.07);
}
.cat-sidebar-label {
  font-family: var(--mono); font-size: 0.68rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text); margin: 0;
  padding: 16px 18px 13px;
  border-bottom: 1px solid rgba(var(--accent-rgb), 0.22);
}

/* Accordion macro groups */
.cat-group { border-bottom: 1px solid var(--border-light); }
.cat-group:last-child { border-bottom: none; }
.cat-group[data-for] { display: none; }
.cat-group[data-for].show { display: block; }
.cat-group-head {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; user-select: none;
  font-family: var(--mono); font-size: 0.67rem;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--text); margin: 0;
  padding: 13px 18px;
  transition: color 0.15s, background 0.15s;
}
.cat-group-head::after {
  content: '+'; font-size: 1.05rem; line-height: 1;
  color: var(--accent); font-family: var(--sans);
}
.cat-group-head:hover { color: var(--accent); background: rgba(var(--accent-rgb),0.05); }
.cat-group.open .cat-group-head { color: var(--accent); }
.cat-group.open .cat-group-head::after { content: '\2212'; }
.cat-group-items { display: none; padding: 2px 0 10px; }
.cat-group.open .cat-group-items { display: block; }
.cat-link {
  display: block; padding: 8px 18px 8px 30px;
  font-family: var(--sans); font-size: 0.9rem;
  color: var(--text-muted); text-decoration: none;
  border-left: 2px solid transparent;
  transition: all 0.15s; cursor: pointer;
}
.cat-link:hover { color: var(--text); border-left-color: rgba(var(--accent-rgb), 0.5); }
.cat-link.active { color: var(--accent); border-left-color: var(--accent); }

/* Mobile category toggle button — hidden on desktop */
.cat-mobile-toggle { display: none; }

/* ── TOOLBAR ROW — Map button (left) + brighter search (right) ── */
.toolbar-row {
  display: flex; gap: 14px; align-items: center;
  margin-bottom: 24px; flex-wrap: wrap;
}
.btn-map-view {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px;
  font-family: var(--mono); font-size: 0.66rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  background: rgba(var(--accent-rgb), 0.08); color: var(--accent);
  border: 1px solid var(--accent);
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-map-view:hover {
  background: rgba(var(--accent-rgb), 0.18);
  box-shadow: 0 0 18px rgba(var(--accent-rgb), 0.30);
}
.toolbar-row .filter-search {
  flex: 1; min-width: 240px;
  padding: 11px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(var(--accent-rgb), 0.30);
  color: var(--text);
  font-family: var(--sans); font-size: 0.95rem;
}
.toolbar-row .filter-search::placeholder { color: rgba(240, 242, 250, 0.55); }
.toolbar-row .filter-search:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(var(--accent-rgb), 0.07);
  box-shadow: 0 0 20px rgba(var(--accent-rgb), 0.25);
}

/* 3-column card grid — sidebar lives in the left margin, steals no real estate */
.find-main .util-grid.mentor-list {
  padding: 0; max-width: 100%;
  grid-template-columns: repeat(3, 1fr) !important;
}

/* Mobile: sidebar collapses behind a toggle, stacks above content */
@media (max-width: 1000px) {
  .with-sidebar { grid-template-columns: 1fr; padding: 0 0 32px; }
  .cat-mobile-toggle {
    display: flex; align-items: center; justify-content: space-between;
    width: calc(100% - 48px); margin: 16px 24px 0;
    padding: 13px 16px;
    font-family: var(--mono); font-size: 0.66rem;
    letter-spacing: 0.16em; text-transform: uppercase;
    background: rgba(var(--accent-rgb),0.08); color: var(--accent);
    border: 1px solid var(--accent); cursor: pointer;
  }
  .cat-mobile-toggle::after { content: '+'; font-size: 1.05rem; }
  .cat-mobile-toggle.open::after { content: '\2212'; }
  .cat-sidebar { position: static; margin: 10px 24px 0; display: none; }
  .cat-sidebar.mobile-open { display: block; }
  .find-main { padding: 16px 24px 0; }
  .find-main .util-grid.mentor-list { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 640px) {
  .find-main .util-grid.mentor-list { grid-template-columns: 1fr !important; }
}

/* ── CATEGORY CHIPS ROW (top-level filters: All / Mentors / Services / Local) ── */
.cat-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.cat-chip {
  font-family: var(--mono); font-size: 0.64rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 9px 16px; border: 1px solid var(--border-light);
  background: transparent; color: var(--text-muted);
  cursor: pointer; transition: all 0.15s;
}
.cat-chip:hover { border-color: rgba(var(--accent-rgb), 0.55); color: var(--text); }
.cat-chip.active { border-color: var(--accent); background: rgba(var(--accent-rgb), 0.10); color: var(--accent); }

/* ── VIEW MODE TOGGLE (List / Map segmented) ── */
.view-toggle { display: inline-flex; border: 1px solid rgba(var(--accent-rgb), 0.30); }
.view-toggle button {
  font-family: var(--mono); font-size: 0.62rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 9px 14px;
  background: transparent; color: var(--text-muted);
  border: none; cursor: pointer; transition: all 0.15s;
}
.view-toggle button + button { border-left: 1px solid rgba(var(--accent-rgb), 0.30); }
.view-toggle button:hover { color: var(--text); background: rgba(var(--accent-rgb), 0.06); }
.view-toggle button.active { background: var(--accent); color: var(--bg); }

/* ── LIBRARY TOOLBAR (chips + view toggle + search on a 2-row layout) ── */
.library-toolbar { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.library-toolbar-row { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.library-toolbar-row .filter-search {
  flex: 1; min-width: 240px;
  padding: 11px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(var(--accent-rgb), 0.30);
  color: var(--text);
  font-family: var(--sans); font-size: 0.95rem;
}
.library-toolbar-row .filter-search::placeholder { color: rgba(240, 242, 250, 0.55); }
.library-toolbar-row .filter-search:focus {
  outline: none; border-color: var(--accent);
  background: rgba(var(--accent-rgb), 0.07);
  box-shadow: 0 0 20px rgba(var(--accent-rgb), 0.25);
}

/* ── VIEW PANES (List and Map swap inside the library) ── */
.view-pane[hidden] { display: none; }

/* ── MAP FRAME (the visual stub for the map view) ── */
.map-frame {
  width: 100%; height: 580px;
  background: linear-gradient(135deg, #0B0F18 0%, #050810 100%);
  border: 1px solid var(--border-light);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.map-frame::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(var(--accent-rgb), 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--accent-rgb), 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
}
.map-stub-label {
  position: relative; z-index: 1;
  font-family: var(--mono); font-size: 0.72rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text-muted); text-align: center; line-height: 2;
}
.map-stub-label strong { color: var(--accent); font-weight: 500; }
.map-pin {
  position: absolute; width: 14px; height: 14px;
  background: var(--accent); border-radius: 50%;
  box-shadow: 0 0 16px rgba(var(--accent-rgb), 0.7);
  z-index: 1;
}
.map-pin.p1 { top: 22%; left: 18%; }
.map-pin.p2 { top: 38%; left: 44%; }
.map-pin.p3 { top: 28%; left: 72%; }
.map-pin.p4 { top: 62%; left: 30%; }
.map-pin.p5 { top: 70%; left: 60%; }
.map-pin.p6 { top: 50%; left: 82%; }

/* Hide sidebar sub-cat groups that don't match the current active top-level category */
.cat-group[data-for] { display: none; }
.cat-group[data-for].show { display: block; }

/* Sidebar — section dividers + reset link for the role-type accordion */
.cat-section-head {
  font-family: var(--mono); font-size: 0.56rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent);
  padding: 15px 18px 7px; margin: 0;
  border-top: 1px solid var(--border-light);
}
.cat-clear { padding-left: 18px !important; margin: 6px 0 2px; font-size: 0.9rem; color: var(--text); }
.cat-link-all { color: var(--text); font-weight: 500; }

/* ZIP code field in the toolbar */
.cat-zip {
  width: 118px; flex: 0 0 auto;
  padding: 11px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(var(--accent-rgb),0.30);
  color: var(--text);
  font-family: var(--mono); font-size: 0.9rem; letter-spacing: 0.12em;
}
.cat-zip::placeholder { color: rgba(240,242,250,0.5); letter-spacing: 0.16em; }
.cat-zip:focus { outline: none; border-color: var(--accent); background: rgba(var(--accent-rgb),0.07); box-shadow: 0 0 16px rgba(var(--accent-rgb),0.22); }
.cat-zip.zip-needed { border-color: var(--accent); box-shadow: 0 0 0 2px rgba(var(--accent-rgb),0.30); }

/* ── MACRO BAR — primary role-type selector across the top ── */
.macro-bar {
  display: flex; flex-wrap: wrap; gap: 10px;
  padding: 26px 32px 22px;
  border-bottom: 1px solid var(--border-light);
}
.macro-btn {
  font-family: var(--mono); font-size: 0.7rem;
  letter-spacing: 0.13em; text-transform: uppercase;
  padding: 11px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  cursor: pointer; transition: all 0.15s;
}
.macro-btn:hover { border-color: rgba(var(--accent-rgb),0.55); color: var(--text); }
.macro-btn.active { border-color: var(--accent); background: rgba(var(--accent-rgb),0.12); color: var(--accent); }
@media (max-width: 1000px) {
  .macro-bar { padding: 16px 24px; gap: 8px; }
  .macro-btn { padding: 10px 15px; font-size: 0.64rem; }
}

.cards-empty {
  text-align: center; padding: 64px 20px;
  font-family: var(--mono); font-size: 0.78rem;
  letter-spacing: 0.1em; color: var(--text-muted);
}

.for-list { list-style: none; padding: 0; margin: 28px 0 0; }
.for-list li {
  padding: 14px 0 14px 22px;
  border-left: 2px solid rgba(var(--accent-rgb),0.3);
  color: var(--text-muted);
  font-size: 1.02rem;
  transition: border-color 0.2s, color 0.2s;
}
.for-list li:hover { border-left-color: var(--accent); color: var(--text); }

/* preview banner */
.preview-banner {
  background: rgba(var(--accent-rgb),0.10);
  border-bottom: 1px solid rgba(var(--accent-rgb),0.3);
  padding: 6px 16px; text-align: center;
  font-family: var(--mono); font-size: 0.58rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent);
}

/* ════════════════════════════════════════════════════════════
   PRELAUNCH ONE-PAGER  ·  added 2026-05-21
   life through section variety + atmospheric depth + focal forms
   ════════════════════════════════════════════════════════════ */

/* microline under the hero CTAs */
.hero-note {
  margin-top: 20px;
  font-family: var(--mono); font-size: 0.66rem;
  letter-spacing: 0.05em; color: var(--text-muted);
  text-shadow: 0 0 6px rgba(0,0,0,0.95), 0 0 12px rgba(0,0,0,0.85);
}

/* soft section glow — extends the hero's bloom vocabulary into the page
   so body sections read with depth instead of flat black */
.glow-section { position: relative; overflow: hidden; }
.glow-section::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 960px; height: 540px;
  background: radial-gradient(ellipse at center, rgba(var(--accent-rgb),0.11) 0%, rgba(var(--accent-rgb),0.035) 45%, transparent 78%);
  pointer-events: none; z-index: 0;
}
.glow-section > .container { position: relative; z-index: 1; }

/* WHY — a calm, centered statement block, distinct from headline+body sections */
.why-block { text-align: center; max-width: 768px; margin: 0 auto; }
.why-statement {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(1.22rem, 2.2vw, 1.6rem);
  line-height: 1.55; letter-spacing: -0.01em;
  color: var(--text);
}
.why-statement em {
  font-style: normal; color: var(--accent);
  text-shadow: 0 0 22px rgba(var(--accent-rgb),0.45);
}

/* pillar cards — number eyebrow + opening-soon tag */
.pillar-num {
  font-family: var(--mono); font-size: 0.72rem;
  letter-spacing: 0.2em; color: var(--accent);
  opacity: 0.5; margin-bottom: 10px;
}
.coming-tag {
  display: inline-block; margin-top: 16px;
  font-family: var(--mono); font-size: 0.54rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border-light); padding: 5px 10px;
}

/* PARTNER — framed callout block */
.callout {
  border: 1px solid rgba(var(--accent-rgb),0.32);
  background: linear-gradient(150deg, rgba(var(--accent-rgb),0.10) 0%, rgba(var(--accent-rgb),0.025) 100%);
  padding: 44px;
  box-shadow: 0 0 44px rgba(var(--accent-rgb),0.08);
}
.callout .section-headline { margin-bottom: 18px; }
.callout .section-body { color: var(--text); }
.callout .hero-cta { margin-top: 28px; }
@media (max-width: 720px) { .callout { padding: 30px 24px; } }

/* FOUNDER — quiet, signed block */
.founder-block {
  max-width: 680px; margin-top: 8px;
  padding-left: 26px;
  border-left: 2px solid rgba(var(--accent-rgb),0.45);
}
.founder-name {
  font-family: var(--mono); font-size: 0.66rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); margin-top: 18px;
}

/* SIGNUP — embedded form card (free community + waitlist) — lifted off the dark page */
.signup-card {
  max-width: 520px; margin: 34px auto 0;
  text-align: left;
  background: linear-gradient(165deg, #141B2A 0%, #0C111C 100%);
  border: 1px solid rgba(var(--accent-rgb),0.34);
  border-top: 2px solid var(--accent);
  padding: 32px;
  box-shadow: 0 0 66px rgba(var(--accent-rgb),0.18), inset 0 1px 0 rgba(255,255,255,0.05);
}
/* brighter entry fields — they were dark and blending into the page */
.signup-card .form-field label { color: var(--text); }
.signup-card .form-field input {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(var(--accent-rgb),0.34);
  box-shadow: inset 0 1px 8px rgba(0,0,0,0.45);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.signup-card .form-field input::placeholder { color: rgba(240,242,250,0.42); }
.signup-card .form-field input:focus {
  border-color: var(--accent);
  background: rgba(var(--accent-rgb),0.10);
  box-shadow: 0 0 22px rgba(var(--accent-rgb),0.32), inset 0 1px 8px rgba(0,0,0,0.32);
}
/* honeypot — visually removed, catches bots */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
/* post-submit success state — sits in the same slot as the form */
.signup-success { text-align: center; }
.signup-success-mark {
  font-family: var(--display); font-weight: 700; font-size: 1.4rem;
  color: var(--accent); margin-bottom: 10px;
  text-shadow: 0 0 26px rgba(var(--accent-rgb),0.5);
}
.signup-success-body { color: var(--text-muted); font-size: 0.96rem; line-height: 1.7; }
.signup-row { display: flex; gap: 14px; }
.signup-row .form-field { flex: 1; }
@media (max-width: 520px) { .signup-row { display: block; } }
.signup-note {
  margin-top: 16px; text-align: center;
  font-family: var(--mono); font-size: 0.62rem;
  letter-spacing: 0.04em; color: var(--text-muted);
}
.signup-link { color: var(--accent); text-decoration: none; }
.signup-link:hover { text-decoration: underline; }

/* centered-section helper */
.sec-centered { text-align: center; }
.sec-centered .section-body { margin-left: auto; margin-right: auto; max-width: 642px; }

/* a <button> carrying .btn-primary needs the native chrome reset */
button.btn-primary { border: none; cursor: pointer; }

/* ── FOOTER (rebuilt 2026-05-21) — brand + tagline left, menu right, copyright centered ── */
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 40px; flex-wrap: wrap;
}
.footer-logo {
  font-family: var(--brand); font-weight: 400;
  font-size: 1.05rem; letter-spacing: 0.1em;
  text-decoration: none; line-height: 1; display: inline-block;
}
.footer-tag {
  font-size: 0.92rem; color: var(--text-muted);
  margin-top: 14px; max-width: 320px; line-height: 1.6;
}
.footer-menu { display: flex; flex-direction: column; gap: 11px; align-items: flex-end; }
.footer-menu a {
  font-family: var(--mono); font-size: 0.68rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-muted); text-decoration: none;
  transition: color 0.2s;
}
.footer-menu a:hover { color: var(--accent); }
.footer-copy {
  text-align: center; margin-top: 44px;
  padding-top: 24px; border-top: 1px solid var(--border-light);
  font-family: var(--mono); font-size: 0.62rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted);
}
@media (max-width: 620px) {
  .footer-top { flex-direction: column; gap: 26px; }
  .footer-menu { align-items: flex-start; }
}

/* ── FOUNDER — photo + text, two columns (human grounding) ── */
.founder-row { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.founder-row .founder-block { border-left: none; padding-left: 0; max-width: none; margin-top: 0; }
.founder-photo {
  width: 100%; aspect-ratio: 4 / 3;
  border: 1px solid rgba(var(--accent-rgb),0.35);
  border-top: 2px solid var(--accent);
  background-color: #0C111C;
  background-image: url('founder-adam.jpg');
  background-size: cover; background-position: center 20%;
  box-shadow: 0 0 44px rgba(var(--accent-rgb),0.14);
}
.founder-photo-ph {
  font-family: var(--mono); font-size: 0.58rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); opacity: 0.6; text-align: center;
  padding: 0 14px; line-height: 1.7;
}
@media (max-width: 640px) {
  .founder-row { grid-template-columns: 1fr; gap: 24px; justify-items: start; }
}

/* ── PREVIEW LOCK — academy / services shown as blurred "opening soon" previews ── */
.preview-lock {
  position: fixed; left: 0; right: 0; top: 64px; bottom: 0;
  z-index: 50;
  display: flex; align-items: center; justify-content: center;
  padding: 32px;
  background: rgba(2,6,16,0.60);
  -webkit-backdrop-filter: blur(11px); backdrop-filter: blur(11px);
}
.preview-lock-card {
  max-width: 540px; text-align: center;
  background: linear-gradient(165deg, #141B2A 0%, #0C111C 100%);
  border: 1px solid rgba(var(--accent-rgb),0.34);
  border-top: 2px solid var(--accent);
  padding: 46px 40px;
  box-shadow: 0 0 80px rgba(var(--accent-rgb),0.22);
}
.preview-lock-card .section-body { margin: 14px auto 0; max-width: 440px; }
.preview-lock-card .hero-cta { margin-top: 28px; }

/* ── MEDIA ROW — text beside a real photo (human grounding) ── */
.media-row { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.media-photo img {
  width: 100%; display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover; object-position: center 35%;
  border: 1px solid rgba(var(--accent-rgb),0.30);
  box-shadow: 0 0 50px rgba(var(--accent-rgb),0.13);
}
@media (max-width: 760px) {
  .media-row { grid-template-columns: 1fr; gap: 30px; }
}
