﻿:root {
  --green: #aaff00;
  /* Header / pill tabs — matches reference neon capsule */
  --nav-neon: var(--green);
  --nav-neon-soft: rgba(170, 255, 0, 0.5);
  --neon-purple: #b04bff;
  --neon-cyan: #3df4ff;
  --black: #0a0a0a;
  --dark: #111111;
  --darker: #0d0d0d;
  --white: #ffffff;
  --gray: #888888;
  --light-gray: #cccccc;
  --border: #222222;
  --card-bg: #161616;
  --card-border: #2a2a2a;
  /* Matches fixed nav height so page content is not covered (nav cannot pass this to siblings) */
  --nav-row-height: 72px;
  --pad-mobile-l: max(20px, env(safe-area-inset-left, 0px));
  --pad-mobile-r: max(20px, env(safe-area-inset-right, 0px));
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  max-width: 100%;
}

p, h1, h2, h3, h4, li, cite, figcaption {
  overflow-wrap: break-word;
}

/* Screen-reader-only utility — visible to assistive tech but not laid out. */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Keyboard focus visibility (consistent across all interactive elements). */
:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}
nav a:focus-visible,
.nav-pill-links a:focus-visible {
  outline-offset: 4px;
}

body.is-loading {
  overflow: hidden;
}

/* Prevent transient scrollbar flash while tab/page GSAP transition runs. */
body.is-page-transitioning {
  overflow: hidden;
}

body.is-loading .page.active > *:not(footer) {
  opacity: 0;
}

/* Nav stays visible — full-screen loader already covers it; hiding nav here caused
   invisible tabs when scripts failed or GSAP left competing opacity styles. */

/* ===== LOADER ===== */
.site-loader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
}

.site-loader-inner {
  text-align: center;
  padding: 24px;
}

.site-loader-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 6vw, 40px);
  color: var(--white);
  letter-spacing: -0.02em;
}

.site-loader-logo span {
  color: var(--green);
}

.site-loader-tag {
  margin-top: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--green);
}

.site-loader-bar {
  margin: 28px auto 0;
  width: min(280px, 70vw);
  height: 3px;
  background: #222;
  border-radius: 3px;
  overflow: hidden;
}

.site-loader-bar-fill {
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--green), #d4ff4d);
  border-radius: 3px;
  transform: scaleX(0);
  transform-origin: left center;
}

/* ===== NAV (reference: black bar + centered glass pill + neon active tab) ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.92);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 36px;
  height: 72px;
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  nav { background: #000000; }
}

/* ===== PILL ROUTE TAB BAR — only Home…FAQ links; Join stays outside as a button ===== */
.nav-pill-tabbar {
  position: relative;
  flex: 1 1 auto;
  /* Do not shrink to zero — long labels need space or horizontal scroll */
  min-width: 12rem;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.nav-pill-tabbar::-webkit-scrollbar {
  height: 4px;
}

.nav-pill-tabbar::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
}

/* Frosted capsule — sits under labels; sliding pill reads as solid neon like the reference */
.nav-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  padding: 6px;
  border-radius: 999px;
  /* Dark solid track matching reference screenshot */
  background-color: #1c1c1e;
  background-image: none;
  -webkit-backdrop-filter: blur(14px) saturate(165%);
  backdrop-filter: blur(14px) saturate(165%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.04) inset,
    0 8px 32px rgba(0, 0, 0, 0.85),
    0 0 0 1px rgba(0, 0, 0, 0.8) inset;
  isolation: isolate;
}

@supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .nav-pill {
    background-color: rgba(28, 28, 30, 0.95);
  }
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .nav-pill {
    background-color: #1c1c1e;
    background-image: none;
    border-color: rgba(255, 255, 255, 0.12);
  }
}

.nav-tab-indicator {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  border-radius: 999px;
  z-index: 0;
  pointer-events: none;
  background: var(--nav-neon);
  box-shadow:
    0 0 18px rgba(170, 255, 0, 0.55),
    0 0 36px rgba(170, 255, 0, 0.28),
    0 4px 14px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  opacity: 1;
  transition: opacity 0.3s ease;
}

.nav-pill-links {
  position: relative;
  z-index: 1;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.nav-pill-links li {
  display: flex;
}

.nav-pill-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 1;
  padding: 10px 20px;
  border-radius: 999px;
  white-space: nowrap;
  transition: color 0.3s ease, transform 0.25s ease;
}

.nav-pill-links a:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.nav-pill-links a:focus-visible {
  outline: 2px solid var(--nav-neon);
  outline-offset: 2px;
}

.nav-pill-links a.active {
  color: #0a0a0a;
  font-weight: 800;
  text-shadow: none;
}

/* FAQ accent: neon text, no fill until selected (like reference) */
.nav-pill-links a.green-link:not(.active) {
  color: var(--nav-neon);
}

.nav-pill-links a.green-link.active {
  color: #050505;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
}
.nav-logo:hover {
  transform: scale(1.02);
}
.nav-logo:focus-visible {
  outline: 2px solid var(--nav-neon);
  outline-offset: 4px;
}
/* Global logo styling:
   PB = white, (973) = logo green, PLAY THE CODE = logo green */
.nav-logo .pb { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 24px; color: var(--white); letter-spacing: -0.5px; }
.nav-logo .pb span { color: var(--green); }
.nav-logo .tagline { font-size: 9px; font-weight: 800; color: var(--green); letter-spacing: 0.28em; text-transform: uppercase; margin-top: 4px; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* Desktop: full pill bar centered, no horizontal scroll */
@media (min-width: 1280px) {
  .nav-pill-tabbar {
    overflow-x: visible;
    justify-content: center;
  }
}

/* Hamburger: hidden except mobile (rules in @media max-width 767px below) */
.nav-menu-toggle {
  display: none;
}

body.nav-mobile-open {
  overflow: hidden;
}

/* Tablet/desktop: never show mobile menu layer */
@media (min-width: 768px) {
  .mobile-nav-backdrop,
  .mobile-nav-drawer {
    display: none !important;
  }
}

/* ========== Mobile menu — max-width 767px only ========== */
@media (max-width: 767px) {
  .nav-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    order: 0;
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    padding: 0;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
  }

  .nav-menu-toggle:focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 2px;
  }

  .nav-menu-toggle-bars {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 18px;
    position: relative;
  }

  .nav-menu-toggle-line {
    display: block;
    width: 24px;
    height: 2px;
    border-radius: 1px;
    background: #ffffff;
    position: absolute;
    left: 0;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease, top 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .nav-menu-toggle-line:nth-child(1) {
    top: 0;
  }

  .nav-menu-toggle-line:nth-child(2) {
    top: 8px;
  }

  .nav-menu-toggle-line:nth-child(3) {
    top: 16px;
  }

  body.nav-mobile-open .nav-menu-toggle-line:nth-child(1) {
    top: 8px;
    transform: rotate(45deg);
  }

  body.nav-mobile-open .nav-menu-toggle-line:nth-child(2) {
    opacity: 0;
  }

  body.nav-mobile-open .nav-menu-toggle-line:nth-child(3) {
    top: 8px;
    transform: rotate(-45deg);
  }

  .mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1100;
    background: rgba(0, 0, 0, 0.96);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
  }

  .mobile-nav-backdrop.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-nav-drawer {
    position: fixed;
    inset: 0;
    z-index: 1110;
    width: 100%;
    max-width: 100%;
    height: 100%;
    height: 100dvh;
    max-height: 100dvh;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    background: transparent;
    pointer-events: none;
    overflow: hidden;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.34s;
  }

  .mobile-nav-drawer.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-nav-panel {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    min-height: 0;
    background: rgba(0, 0, 0, 0.96);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
  }

  .mobile-nav-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    padding: max(12px, env(safe-area-inset-top, 0px)) 16px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mobile-nav-logo {
    text-decoration: none;
    line-height: 1;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-nav-logo .pb {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 24px;
    color: var(--white);
    letter-spacing: -0.5px;
  }

  .mobile-nav-logo .pb span {
    color: var(--green);
  }

  .mobile-nav-close {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.2s ease, border-color 0.2s ease;
  }

  .mobile-nav-close-x {
    font-size: 22px;
    line-height: 1;
  }

  .mobile-nav-close:focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 2px;
  }

  .mobile-nav-links {
    flex: 1 1 0%;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    margin: 0;
  }

  .mobile-nav-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    box-sizing: border-box;
    width: 100%;
    min-height: 60px;
    padding: 16px 16px 16px 28px;
    margin: 0;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    background: transparent;
    text-decoration: none;
    text-align: left;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
    white-space: normal;
    overflow-wrap: break-word;
    opacity: 1;
    visibility: visible;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.15s ease, color 0.15s ease;
  }

  .mobile-nav-link:active {
    background: rgba(255, 255, 255, 0.08);
  }

  .mobile-nav-link:focus-visible {
    outline: 2px solid var(--green);
    outline-offset: -2px;
  }

  .mobile-nav-link.active {
    color: var(--green);
    background: transparent;
  }

  .mobile-nav-link--faq {
    color: var(--green);
  }

  .mobile-nav-link--faq.active {
    color: var(--green);
  }

  .mobile-nav-spacer {
    flex: 0 0 auto;
    height: 16px;
    min-height: 16px;
  }

  .mobile-nav-drawer-footer {
    flex-shrink: 0;
    padding: 0 24px calc(20px + env(safe-area-inset-bottom, 0px));
    border-top: none;
  }

  .btn-join-mobile-nav {
    appearance: none;
    -webkit-appearance: none;
    font: inherit;
    width: 100%;
    box-sizing: border-box;
    min-height: 52px;
    height: 52px;
    padding: 0 20px;
    margin: 0;
    border: none;
    border-radius: 999px;
    background: var(--green);
    color: #0a0a0a;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
    transition: filter 0.15s ease, transform 0.12s ease;
  }

  .btn-join-mobile-nav:active {
    filter: brightness(0.95);
    transform: scale(0.98);
  }

  .btn-join-mobile-nav:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
  }

  :root {
    --nav-row-height: 72px;
  }

  /* Top bar only — nav.mobile-nav-links is the drawer page list and must grow inside the panel */
  nav:not(.mobile-nav-links) {
    flex-wrap: nowrap;
    height: 72px;
    min-height: 72px;
    padding: 0 max(16px, env(safe-area-inset-right, 0px)) 0 max(16px, env(safe-area-inset-left, 0px));
  }

  nav.mobile-nav-links {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    z-index: auto;
    height: auto;
    min-height: 0;
    flex-wrap: nowrap;
    padding: 0;
    margin: 0;
    border: none;
    box-shadow: none;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    gap: 0;
    justify-content: flex-start;
    align-items: stretch;
  }

  .nav-pill-tabbar {
    display: none !important;
  }

  .nav-actions .btn-join-nav {
    display: none;
  }

  nav .nav-icon {
    display: none;
  }

  .nav-actions {
    margin-left: auto;
    gap: 10px;
  }
}

@media (max-width: 767px) and (prefers-reduced-motion: reduce) {
  .mobile-nav-backdrop,
  .mobile-nav-drawer,
  .nav-menu-toggle-line {
    transition: none;
  }
}

@media (max-width: 1100px) {
  .nav-logo .tagline { display: none; }
  .btn-join { padding: 10px 14px; font-size: 12px; }
}

/* Tablet 768px–1023px: logo + Join (and icons) row 1; pill scrolls on row 2 */
@media (max-width: 1023px) and (min-width: 768px) {
  :root {
    --nav-row-height: 134px;
  }

  nav {
    flex-wrap: wrap;
    height: auto;
    min-height: 72px;
    padding: 10px 40px 12px;
    row-gap: 10px;
    align-content: flex-start;
  }

  .nav-logo {
    order: 1;
    flex: 0 0 auto;
  }

  .nav-actions {
    order: 2;
    flex: 0 0 auto;
    margin-left: auto;
  }

  .nav-pill-tabbar {
    order: 3;
    flex: 1 1 100%;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
  }

  .nav-pill {
    flex-shrink: 0;
  }

  .nav-pill-links {
    flex-wrap: nowrap;
  }
}

@media (max-width: 479px) {
  nav {
    padding-left: max(12px, env(safe-area-inset-left, 0px));
    padding-right: max(12px, env(safe-area-inset-right, 0px));
  }
}

.nav-icon {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.3s ease, background 0.25s ease;
  color: var(--white);
  text-decoration: none;
  font-size: 15px;
}
.nav-icon:hover {
  border-color: var(--nav-neon);
  background: rgba(170, 255, 0, 0.1);
  transform: translateY(-1px);
  box-shadow: 0 0 20px rgba(170, 255, 0, 0.2);
}

.btn-join {
  background: var(--nav-neon);
  color: var(--black);
  border: none;
  padding: 12px 22px;
  font-size: 13px;
  font-weight: 800;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, opacity 0.2s ease;
}
.btn-join:hover {
  opacity: 0.98;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(170, 255, 0, 0.42);
  filter: brightness(1.05);
}
.btn-join:active {
  transform: translateY(0);
}

button.btn-join.btn-join-nav {
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  line-height: 1.2;
}

/* ===== PAGES ===== */
.page {
  display: none;
  padding-top: var(--nav-row-height, 72px);
  min-height: 100vh;
}
.page.active { display: block; }

/* ===== HOME PAGE ===== */
.hero {
  padding: 80px 80px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 40px 40px;
  row-gap: 0;
  align-items: center;
  /* Do not force full viewport height — that hid the glass tab block below the fold */
  min-height: auto;
}

.hero > .glass-tabs-section.hero-glass-tabs {
  grid-column: 1 / -1;
  margin-top: 36px;
  padding: 40px 0 0;
  position: relative;
}

.hero > .glass-tabs-section.hero-glass-tabs::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12) 20%, rgba(255, 255, 255, 0.12) 80%, transparent);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #333;
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 600;
  color: #999;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge span { color: var(--white); }

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 88px;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -2px;
  margin-bottom: 28px;
}
.hero h1 .green { color: var(--green); }

.hero-desc {
  font-size: 15px;
  color: #aaa;
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 40px;
}

.coming-stamp {
  display: inline-block;
  border: 3px solid #cc2222;
  border-radius: 6px;
  padding: 8px 20px;
  transform: rotate(-3deg);
  margin-bottom: 40px;
}
.coming-stamp .line1 { font-weight: 900; font-size: 12px; color: #cc2222; letter-spacing: 1px; text-transform: uppercase; }
.coming-stamp .line2 { font-weight: 900; font-size: 18px; color: #cc2222; letter-spacing: 1px; }

.hero-btns { display: flex; gap: 16px; margin-top: 16px; }
.btn-outline {
  border: 2px solid var(--white);
  background: transparent;
  color: var(--white);
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), background 0.25s ease, color 0.25s ease, box-shadow 0.3s ease;
}
.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 255, 255, 0.12);
}
.btn-solid {
  border: 2px solid transparent;
  background: transparent;
  color: var(--white);
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  border-color: #333;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.25s ease, color 0.25s ease, box-shadow 0.3s ease;
}
.btn-solid:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(170, 255, 0, 0.08);
}

.hero-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  transform: scale(1.02);
  transform-origin: 52% 45%;
  will-change: transform, filter;
}

.hero-media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.06);
  isolation: isolate;
  will-change: transform;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: -20% -50%;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 60%);
  mix-blend-mode: screen;
  opacity: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.35) 100%),
    radial-gradient(circle at 78% 12%, rgba(170, 255, 0, 0.14), rgba(170, 255, 0, 0) 34%);
}

@media (prefers-reduced-motion: no-preference) {
  .hero-media {
    animation: hero-pop-in 720ms cubic-bezier(0.2, 0.8, 0.2, 1) 120ms both, hero-float 8s ease-in-out 1s infinite;
  }

  .hero-img {
    animation: hero-kenburns 14s ease-in-out infinite alternate;
  }

  .hero-media::before {
    animation: hero-light-sweep 6.5s ease-in-out infinite;
  }
}

@keyframes hero-kenburns {
  0% {
    transform: scale(1.03) translate3d(0, 0, 0);
    filter: saturate(1) contrast(1);
  }
  50% {
    transform: scale(1.08) translate3d(-1.2%, -0.8%, 0);
    filter: saturate(1.06) contrast(1.03);
  }
  100% {
    transform: scale(1.05) translate3d(0.8%, 0.6%, 0);
    filter: saturate(1.03) contrast(1.02);
  }
}

@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes hero-pop-in {
  0% {
    opacity: 0;
    transform: translateY(16px) scale(0.97);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes hero-light-sweep {
  0%, 35% {
    transform: translateX(-45%) rotate(8deg);
    opacity: 0;
  }
  45% {
    opacity: 0.26;
  }
  62% {
    transform: translateX(45%) rotate(8deg);
    opacity: 0;
  }
  100% {
    transform: translateX(45%) rotate(8deg);
    opacity: 0;
  }
}

/* Flagship section */
.flagship {
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: var(--dark);
}
.flagship h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 20px;
}
.flagship-desc { font-size: 15px; color: #aaa; line-height: 1.7; margin-bottom: 24px; }
.flagship-tags { display: flex; gap: 10px; flex-wrap: wrap; }
.tag {
  border: 1px solid var(--green);
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}
.flagship-img { width: 100%; height: 380px; object-fit: cover; border-radius: 16px; }

/* ===== HOME: GLASS TAB SECTION ===== */
.glass-tabs-section {
  position: relative;
  padding: 72px 32px 88px;
  overflow: hidden;
}

.hero-glass-tabs.glass-tabs-section {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 8px;
}

.glass-tabs-ambient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(170, 255, 0, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 85% 70%, rgba(100, 180, 255, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, var(--black) 0%, #0d0f0c 50%, var(--black) 100%);
  pointer-events: none;
}

.glass-tabs-ambient::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
  mix-blend-mode: overlay;
}

.glass-tabs-wrap {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.glass-tabs-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 12px;
}

.glass-tabs-heading.section-heading::after {
  margin-top: 18px;
  margin-left: auto;
  margin-right: auto;
  max-width: 200px;
  transform-origin: center center;
}

@media (prefers-reduced-motion: no-preference) {
  .glass-tabs-heading.section-heading::after {
    transform: scaleX(0);
    animation: glass-underline 1.05s cubic-bezier(0.22, 1, 0.36, 1) 0.9s forwards;
  }
}

@keyframes glass-underline {
  to { transform: scaleX(1); }
}

.glass-tabs-sub {
  font-size: 15px;
  color: #9a9a9a;
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto 32px;
}

.club-tab-bar {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  margin: 0 auto 28px;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
  background-color: rgba(18, 20, 22, 0.5);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.club-tab-bar::-webkit-scrollbar { display: none; }

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .club-tab-bar { background: rgba(30, 32, 34, 0.94); }
}

.club-tab-indicator {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  border-radius: 999px;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(165deg, rgba(220, 255, 120, 0.92) 0%, rgba(170, 255, 0, 0.82) 48%, rgba(120, 200, 40, 0.88) 100%);
  box-shadow:
    0 0 36px rgba(170, 255, 0, 0.26),
    0 4px 18px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.club-tab {
  position: relative;
  z-index: 1;
  appearance: none;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.68);
  padding: 11px 18px;
  border-radius: 999px;
  white-space: nowrap;
  background: transparent;
  transition: color 0.35s cubic-bezier(0.22, 1, 0.36, 1), transform 0.25s ease;
}

.club-tab:hover {
  color: var(--white);
  transform: translateY(-1px);
}

.club-tab:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.club-tab.active {
  color: #0a0a0a;
  font-weight: 800;
}

.club-tab-panels {
  text-align: left;
}

.club-panel[hidden] {
  display: none;
}

.club-panel-glass {
  padding: 28px 32px 32px;
  border-radius: 20px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 60%, rgba(0, 0, 0, 0.08) 100%);
  background-color: rgba(24, 26, 28, 0.42);
  -webkit-backdrop-filter: blur(28px) saturate(175%);
  backdrop-filter: blur(28px) saturate(175%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .club-panel-glass { background: rgba(32, 34, 36, 0.92); }
}

.club-panel-icon {
  font-size: 36px;
  line-height: 1;
  margin-bottom: 14px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
}

.club-panel-glass h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.club-panel-glass p {
  font-size: 15px;
  color: #b0b0b0;
  line-height: 1.65;
  margin: 0;
}

/* Feature grid */
.features {
  padding: 0 80px 80px;
  background: var(--dark);
}

.features .stagger-children {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
}
.feature-card img { width: 100%; height: 220px; object-fit: cover; display: block; filter: brightness(0.5); }
.feature-card .feat-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
  background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, transparent 100%);
}
.feature-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 6px; }
.feature-card p { font-size: 12px; color: #aaa; line-height: 1.5; }

/* Mailing section */
.mailing {
  padding: 80px;
  text-align: center;
  background: var(--black);
}
.mailing h2 { font-family: 'Montserrat', sans-serif; font-size: 48px; font-weight: 900; margin-bottom: 12px; }
.mailing p { color: #aaa; font-size: 15px; margin-bottom: 32px; }
.btn-email {
  background: var(--green);
  color: var(--black);
  border: none;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, opacity 0.2s ease;
}
.btn-email:hover {
  opacity: 0.98;
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(170, 255, 0, 0.35);
}

.social-row { display: flex; gap: 12px; justify-content: center; margin-top: 24px; }
.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  transition: opacity 0.2s;
}
.social-btn img {
  width: 22px;
  height: 22px;
  display: block;
  object-fit: contain;
  pointer-events: none;
}

.nav-social-img {
  width: 20px;
  height: 20px;
  display: block;
  object-fit: contain;
  pointer-events: none;
}
.social-btn:hover { opacity: 0.8; }
.fb { background: #1877f2; }
.ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }

/* ===== ABOUT PAGE (REDESIGNED) ===== */

/* Hero Banner */
.about-hero-banner {
  position: relative;
  width: 100%;
  height: 620px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: brightness(0.38);
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.1) 0%,
    rgba(10, 10, 10, 0.35) 40%,
    rgba(10, 10, 10, 0.96) 100%
  );
  pointer-events: none;
  z-index: 1;
}
.about-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px 64px;
  width: 100%;
}
.about-hero-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(48px, 7vw, 86px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -3px;
  margin: 14px 0 20px;
}
.about-hero-heading .green { color: var(--green); }
.about-hero-sub {
  font-size: 17px;
  color: #ccc;
  max-width: 480px;
  line-height: 1.6;
  margin: 0;
}

/* Mission section */
.about-mission {
  padding: 72px 80px 56px;
  text-align: center;
  background: var(--black);
}
.about-mission-inner {
  max-width: 760px;
  margin: 0 auto;
}
.about-lead {
  font-size: 18px;
  color: #ccc;
  line-height: 1.75;
  margin-top: 24px;
}
.about-lead strong { color: var(--white); }

/* Story / Leadership section */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-story-text p {
  font-size: 15px;
  color: #aaa;
  line-height: 1.8;
  margin-top: 20px;
  margin-bottom: 0;
}
.about-leader-card {
  background: linear-gradient(155deg, rgba(170, 255, 0, 0.07) 0%, rgba(255, 255, 255, 0.03) 60%, rgba(0, 0, 0, 0.1) 100%);
  border: 1px solid rgba(170, 255, 0, 0.22);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(170, 255, 0, 0.1);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}
.about-leader-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.5), 0 0 32px rgba(170, 255, 0, 0.1);
}
.about-leader-icon { font-size: 40px; line-height: 1; margin-bottom: 16px; display: block; }
.about-leader-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.about-leader-role {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--nav-neon);
  margin-bottom: 16px;
  display: block;
}
.about-leader-bio {
  font-size: 14px;
  color: #aaa;
  line-height: 1.7;
  margin-bottom: 20px;
  display: block;
}
.about-leader-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.about-partner-bar {
  margin-top: 20px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.about-partner-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #666;
}
.about-partner-name {
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
}

/* Club Pillars section */
.about-pillars-section {
  padding: 80px 80px 88px;
  background: var(--black);
}
.about-pillars-inner { max-width: 1100px; margin: 0 auto; }
.about-pillars-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}
.about-pillars-sub {
  font-size: 15px;
  color: #888;
  line-height: 1.7;
  margin-top: 16px;
}
.about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.about-pillar-card {
  padding: 28px 22px 30px;
  border-radius: 16px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}
.about-pillar-card:hover {
  transform: translateY(-6px);
  border-color: rgba(170, 255, 0, 0.35);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45), 0 0 24px rgba(170, 255, 0, 0.07);
}
.about-pillar-icon { font-size: 36px; line-height: 1; margin-bottom: 18px; display: block; }
.about-pillar-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.about-pillar-card p { font-size: 13px; color: #888; line-height: 1.65; margin: 0; }

/* Vision section */
.about-vision-block {
  text-align: center;
  padding: 32px 0;
}
.about-vision-accent {
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, var(--green), transparent);
  border-radius: 2px;
  margin: 0 auto 32px;
}
.about-vision-text {
  font-size: 18px;
  color: #ccc;
  line-height: 1.85;
  max-width: 760px;
  margin: 0 auto 20px;
}
.about-vision-text strong { color: var(--white); }
.about-vision-location {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--nav-neon);
}

/* Taglines */
.taglines { text-align: center; padding: 40px 80px; }
.taglines p { font-style: italic; font-size: 20px; color: #ccc; margin: 8px 0; }
.taglines .green-line { color: var(--green); font-style: italic; font-size: 22px; font-weight: 700; }
.mission-p { text-align: center; font-size: 15px; color: #aaa; line-height: 1.7; max-width: 600px; margin: 24px auto; }
#page-about .mission-p {
  display: block;
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.play-code-block { text-align: center; padding: 24px 0 60px; }
.play-code-block h3 { font-size: 22px; font-weight: 800; }
.play-code-block p { color: var(--green); font-size: 16px; font-weight: 600; }

/* ===== CONTACT PAGE (REDESIGNED) ===== */
.contact-img { width: calc(100% - 160px); margin: 0 80px 50px; height: 420px; object-fit: cover; border-radius: 16px; }

.contact-hero {
  position: relative;
  width: 100%;
  height: 620px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.contact-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: brightness(0.4);
}
.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.12) 0%,
    rgba(10, 10, 10, 0.42) 45%,
    rgba(10, 10, 10, 0.96) 100%
  );
  pointer-events: none;
  z-index: 1;
}
.contact-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px 64px;
  width: 100%;
}
.contact-hero-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(48px, 7vw, 86px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -3px;
  margin: 14px 0 18px;
}
.contact-hero-heading .green { color: var(--green); }
.contact-hero-sub {
  font-size: 16px;
  color: #c8c8c8;
  max-width: 560px;
  line-height: 1.65;
  margin: 0 0 26px;
}
.contact-quick-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.contact-options-band .content-band-inner {
  max-width: 1000px;
}
.contact-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: stretch;
}
.contact-option-card {
  border-radius: 18px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.06) 0%, rgba(0, 0, 0, 0.18) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  padding: 30px 26px;
}
.contact-option-card .section-heading { margin-bottom: 10px; }
.contact-option-desc {
  font-size: 14px;
  color: #9a9a9a;
  line-height: 1.7;
  margin: 0 0 18px;
  max-width: 520px;
}
.contact-option-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
}

.contact-form-wrap {
  padding: 72px 80px 56px;
  background: var(--black);
}
.contact-form-inner {
  max-width: 760px;
  margin: 0 auto;
}
.contact-form-sub {
  font-size: 15px;
  color: #9a9a9a;
  line-height: 1.7;
  margin: 0 0 26px;
  max-width: 640px;
}

.contact-form { max-width: 760px; margin: 0 auto; padding: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 8px; color: #ccc; }
.form-group label span { color: #cc4444; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--white);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select option { background: #1a1a1a; }
.form-address-label { font-size: 15px; font-weight: 700; text-align: center; margin: 16px 0 12px; }

.btn-submit {
  width: 100%;
  background: var(--green);
  color: var(--black);
  border: none;
  padding: 14px;
  font-size: 15px;
  font-weight: 800;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, opacity 0.2s ease;
}
.btn-submit:hover {
  opacity: 0.95;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(170, 255, 0, 0.25);
}

.contact-email-line { text-align: center; margin-top: 24px; font-size: 14px; color: #888; }
.contact-email-line a { color: #888; text-decoration: none; }

/* ===== JUNIOR PROGRAM ===== */
.junior-coming {
  text-align: center;
  padding: 40px 80px;
}
.badge-coming {
  display: inline-block;
  background: #1a2a0a;
  border: 1px solid var(--green);
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.junior-coming h2 { font-size: 28px; font-weight: 800; }

.junior-logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 40px 80px 60px;
}
.junior-logo-block { text-align: center; }
.dinkin-logo-img { max-width: 200px; height: auto; }
.comp-edge-logo {
  background: var(--white);
  border-radius: 50px;
  padding: 20px 40px;
  max-width: 340px;
}
.comp-edge-logo img { max-width: 260px; height: auto; }

.dinkin-text1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #7ab840;
  margin: 12px 0 4px;
}
.dinkin-text2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #5a9020;
  line-height: 1.1;
}

/* ===== MEMBERSHIP PAGE ===== */
.membership-hero-img { width: calc(100% - 320px); margin: 0 auto 40px; display: block; height: 280px; object-fit: cover; border-radius: 16px; }

/* Redesigned hero */
.membership-hero {
  position: relative;
  width: 100%;
  height: 620px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.membership-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: brightness(0.4);
}
.membership-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.12) 0%,
    rgba(10, 10, 10, 0.42) 45%,
    rgba(10, 10, 10, 0.96) 100%
  );
  pointer-events: none;
  z-index: 1;
}
.membership-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px 64px;
  width: 100%;
}
.membership-hero-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(48px, 7vw, 86px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -3px;
  margin: 14px 0 18px;
}
.membership-hero-heading .green { color: var(--green); }
.membership-hero-sub {
  font-size: 16px;
  color: #c8c8c8;
  max-width: 600px;
  line-height: 1.65;
  margin: 0 0 26px;
}
.membership-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.membership-hero-note {
  margin-top: 18px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(170, 255, 0, 0.72);
}

@media (max-width: 1023px) and (min-width: 768px) {
  .membership-hero-img {
    width: calc(100% - 80px);
    margin: 0 auto 32px;
    height: min(300px, 40vw);
  }
}

@media (max-width: 767px) {
  .membership-hero-img {
    width: calc(100% - 32px);
    margin: 0 auto 24px;
    height: min(220px, 48vw);
    border-radius: 14px;
    object-position: center;
  }
}

/* Membership hero mobile */
@media (max-width: 768px) {
  .membership-hero { height: 480px; }
  .membership-hero-content { padding-left: var(--pad-mobile-l); padding-right: var(--pad-mobile-r); padding-bottom: 48px; }
  .membership-hero-heading { font-size: clamp(36px, 10vw, 56px); letter-spacing: -1.5px; }
  .membership-hero-sub { font-size: 14px; }
  .membership-hero-actions { flex-direction: column; align-items: stretch; }
  .membership-hero-actions .btn-email,
  .membership-hero-actions .btn-outline { width: 100%; min-height: 48px; }
}

@media (max-width: 479px) {
  .membership-hero { height: 420px; }
  .membership-hero-heading { letter-spacing: -1px; }
}

.founders-banner {
  background: #1a2a0a;
  border: 1px solid #3a5a10;
  border-radius: 16px;
  padding: 36px;
  text-align: center;
  margin: 0 80px 60px;
}
.founders-banner .star { font-size: 28px; color: var(--green); margin-bottom: 12px; }
.founders-banner h2 { font-size: 26px; font-weight: 800; }
.founders-sub {
  margin-top: 12px;
  font-size: 14px;
  color: #cfcfcf;
  line-height: 1.7;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.founders-actions {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.founders-actions .btn-solid,
.founders-actions .btn-ghost {
  min-height: 44px;
}

.membership-intro {
  color: #aaa;
  font-size: 15px;
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.membership-section { padding: 0 80px 60px; }
.membership-section h2 { font-family: 'Montserrat', sans-serif; font-size: 40px; font-weight: 900; margin-bottom: 32px; }

.plans-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 48px; }
.plan-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 28px 24px;
  position: relative;
  overflow-wrap: break-word;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.3s ease;
}
.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  border-color: #3a3a3a;
}
.plan-card.featured { border-color: var(--green); }
.plan-card .founders-badge {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--black);
  font-size: 10px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 0 0 8px 8px;
  letter-spacing: 1px;
  white-space: nowrap;
}
.plan-name { font-size: 17px; font-weight: 800; color: var(--green); margin-bottom: 6px; }
.plan-subtitle { font-size: 12px; color: #888; font-style: italic; margin-bottom: 16px; line-height: 1.4; }
.plan-price { font-family: 'Montserrat', sans-serif; font-size: 56px; font-weight: 900; color: var(--green); line-height: 1; margin-bottom: 6px; }
.plan-price.free-price { font-size: 44px; }
.plan-price-note { font-size: 12px; color: #666; margin-bottom: 6px; }
.plan-price-sub { font-size: 12px; color: #888; margin-bottom: 20px; font-style: italic; }
.plan-sold { display: inline-block; background: transparent; border: 2px solid #cc2222; color: #cc2222; font-size: 11px; font-weight: 800; padding: 3px 10px; border-radius: 4px; transform: rotate(-8deg); margin: 4px 0 12px; }
.plan-price.struck { text-decoration: line-through; color: #666; font-size: 32px; }
.plan-price-new { font-family: 'Montserrat', sans-serif; font-size: 56px; font-weight: 900; color: var(--green); line-height: 1; margin-bottom: 4px; }

.plan-includes-title { font-size: 10px; font-weight: 700; letter-spacing: 2px; color: #666; text-transform: uppercase; margin-bottom: 12px; }
.plan-includes li {
  list-style: none;
  font-size: 12px;
  color: #ccc;
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
  line-height: 1.4;
}
.plan-includes li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* Monthly plans grid */
.monthly-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* Punch card */
.punch-card-section { padding: 0 80px 60px; }
.punch-card-section h2 { font-family: 'Montserrat', sans-serif; font-size: 40px; font-weight: 900; margin-bottom: 24px; }
.punch-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 28px 24px;
  max-width: 380px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}
.punch-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.32);
}
.punch-card .pc-title { font-size: 17px; font-weight: 800; color: var(--green); margin-bottom: 4px; }
.punch-card .pc-avail { font-size: 12px; color: #888; font-style: italic; margin-bottom: 12px; }
.punch-card .pc-price { font-family: 'Montserrat', sans-serif; font-size: 56px; font-weight: 900; color: var(--green); line-height: 1; margin-bottom: 4px; }
.punch-card .pc-note { font-size: 12px; color: #666; margin-bottom: 16px; }
.punch-card li { list-style: none; font-size: 13px; color: #ccc; padding: 4px 0 4px 20px; position: relative; }
.punch-card li::before { content: '\2713'; position: absolute; left: 0; color: var(--green); font-weight: 700; }

.membership-cta { text-align: center; padding: 20px 80px 60px; }

/* ===== FAQ V2 — Premium Redesign ===== */

/* Hero */
.faq-hero {
  position: relative;
  overflow: hidden;
  padding: 80px 40px 64px;
  text-align: center;
  background: linear-gradient(180deg, #0d0d0d 0%, #0a0a0a 100%);
  border-bottom: 1px solid #1a1a1a;
}

.faq-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.faq-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
}
.faq-hero-orb--1 {
  width: 500px; height: 500px;
  background: var(--green);
  top: -160px; left: -100px;
  animation: faqOrbFloat 9s ease-in-out infinite;
}
.faq-hero-orb--2 {
  width: 400px; height: 400px;
  background: #00d4ff;
  bottom: -120px; right: -80px;
  animation: faqOrbFloat 12s ease-in-out infinite reverse;
}

@keyframes faqOrbFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(24px, -18px); }
}

.faq-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.faq-hero-kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}

.faq-hero-title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 18px;
}

.faq-hero-accent {
  color: var(--green);
  position: relative;
  display: inline-block;
}

.faq-hero-sub {
  font-size: 15px;
  color: #888;
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto 36px;
}

/* Search */
.faq-search-wrap {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.faq-search-icon {
  position: absolute;
  left: 18px;
  color: #555;
  display: flex;
  align-items: center;
  pointer-events: none;
  z-index: 1;
}

.faq-search-input {
  width: 100%;
  background: #161618;
  border: 1.5px solid #2a2a2a;
  border-radius: 50px;
  padding: 14px 48px 14px 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-search-input::placeholder {
  color: #444;
}

.faq-search-input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(170, 255, 0, 0.12);
}

.faq-search-clear {
  position: absolute;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: #555;
  display: flex;
  align-items: center;
  padding: 4px;
  border-radius: 50%;
  transition: color 0.2s ease, background 0.2s ease;
}
.faq-search-clear:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

/* Category Pills */
.faq-cats-wrap {
  padding: 28px 40px 0;
  display: flex;
  justify-content: center;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  border-bottom: 1px solid #161616;
  background: #0a0a0a;
}
.faq-cats-wrap::-webkit-scrollbar { display: none; }

.faq-cats {
  display: flex;
  gap: 8px;
  padding-bottom: 20px;
  flex-shrink: 0;
}

.faq-cat {
  appearance: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 9px 20px;
  border-radius: 50px;
  border: 1.5px solid #2a2a2a;
  background: transparent;
  color: #777;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.faq-cat:hover {
  border-color: #444;
  color: var(--white);
}
.faq-cat.active {
  background: var(--green);
  border-color: var(--green);
  color: #0a0a0a;
}

/* Accordion Section */
.faq-v2-section {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 24px 24px;
}

.faq-v2-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-v2-item {
  border-bottom: 1px solid #1c1c1c;
  overflow: hidden;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.faq-v2-item:first-child {
  border-top: 1px solid #1c1c1c;
}

.faq-v2-item.faq-filtered-out {
  display: none;
}

.faq-v2-trigger {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  transition: background 0.18s ease;
}

.faq-v2-trigger:hover .faq-v2-q {
  color: var(--white);
}

.faq-v2-trigger:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: -2px;
  border-radius: 6px;
}

.faq-v2-q {
  font-size: 15px;
  font-weight: 700;
  color: #ccc;
  line-height: 1.5;
  flex: 1;
  transition: color 0.2s ease;
}

.faq-v2-item.is-open .faq-v2-q {
  color: var(--white);
}

.faq-v2-chevron {
  flex-shrink: 0;
  color: #444;
  display: flex;
  align-items: center;
  margin-top: 2px;
  transition: color 0.2s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-v2-item.is-open .faq-v2-chevron {
  transform: rotate(180deg);
  color: var(--green);
}

.faq-v2-body {
  overflow: hidden;
}

.faq-v2-content {
  padding: 0 0 24px;
}

.faq-v2-content p {
  font-size: 14px;
  color: #888;
  line-height: 1.8;
  margin-bottom: 12px;
}
.faq-v2-content p:last-child { margin-bottom: 0; }

.faq-v2-content strong {
  color: #ccc;
  font-weight: 700;
}

.faq-v2-list-inner {
  list-style: none;
  padding: 0;
  margin: 10px 0 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-v2-list-inner li {
  font-size: 14px;
  color: #888;
  line-height: 1.65;
  padding-left: 20px;
  position: relative;
}
.faq-v2-list-inner li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  opacity: 0.8;
}

.faq-v2-pricing {
  border: 1px solid #222;
  border-radius: 10px;
  overflow: hidden;
  margin: 14px 0;
}

.faq-v2-pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  border-bottom: 1px solid #1a1a1a;
  font-size: 13px;
}
.faq-v2-pricing-row:last-child { border-bottom: none; }
.faq-v2-pricing-row span:first-child { color: #999; }
.faq-v2-pricing-row span:last-child {
  color: var(--green);
  font-weight: 700;
  white-space: nowrap;
}
.faq-v2-pricing-row em {
  font-style: normal;
  color: #666;
  font-weight: 500;
}

.faq-v2-link {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s ease;
}
.faq-v2-link:hover { opacity: 0.8; }

/* No Results */
.faq-no-results {
  text-align: center;
  padding: 64px 24px;
}
.faq-no-results-icon {
  font-size: 40px;
  margin-bottom: 16px;
  opacity: 0.5;
}
.faq-no-results-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.faq-no-results-sub {
  font-size: 14px;
  color: #666;
}

/* Still Curious CTA */
.faq-still-curious {
  background: linear-gradient(135deg, #111 0%, #141410 100%);
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  padding: 80px 40px;
}

.faq-still-curious-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.faq-still-kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}

.faq-still-heading {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 16px;
}

.faq-still-sub {
  font-size: 15px;
  color: #777;
  line-height: 1.75;
  margin-bottom: 32px;
}

.faq-still-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Mobile */
@media (max-width: 767px) {
  .faq-hero {
    padding: 60px 20px 48px;
  }
  .faq-cats-wrap {
    padding: 20px 16px 0;
    justify-content: flex-start;
  }
  .faq-v2-section {
    padding: 28px 16px 16px;
  }
  .faq-v2-trigger {
    padding: 20px 0;
  }
  .faq-v2-q {
    font-size: 14px;
  }
  .faq-still-curious {
    padding: 56px 20px;
  }
  .faq-v2-pricing-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

/* Highlight search matches */
.faq-v2-q mark {
  background: rgba(170, 255, 0, 0.25);
  color: inherit;
  border-radius: 3px;
  padding: 0 2px;
}


/* ===== PRESS PAGE ===== */
.press-grid { padding: 20px 80px 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.press-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  color: var(--black);
  cursor: pointer;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}
.press-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}
.press-card-inner { padding: 20px; }
.press-outlet { font-weight: 800; font-size: 18px; margin-bottom: 12px; }
.press-card img { width: 100%; height: 200px; object-fit: cover; }
.press-headline { font-size: 15px; font-weight: 700; margin: 12px 0 6px; color: var(--black); }
.press-meta { font-size: 12px; color: #666; margin-bottom: 8px; }
.press-body { font-size: 12px; color: #444; line-height: 1.6; }
.press-card-re { background: var(--white); }
.press-card-re .re-header { padding: 16px 20px; background: var(--white); }
.re-logo-text { color: #cc2222; font-weight: 900; font-size: 20px; }
.re-logo-text span { color: var(--black); }
.re-tagline { font-size: 10px; color: #666; letter-spacing: 1px; }
.re-headline { padding: 0 20px 16px; font-size: 16px; font-weight: 700; color: var(--black); }
.re-img { width: 100%; height: 180px; object-fit: cover; }
.re-sub { font-size: 13px; color: #cc2222; font-weight: 600; padding: 12px 20px 4px; }
.re-sub2 { font-size: 15px; font-weight: 700; color: var(--black); padding: 0 20px 16px; }

/* ===== PRESS PAGE (REDESIGNED) ===== */
.press-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 40px 68px;
  text-align: center;
  background: linear-gradient(180deg, #0d0d0d 0%, #0a0a0a 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.press-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.press-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.18;
}
.press-hero-orb--1 {
  width: 520px; height: 520px;
  background: var(--green);
  top: -200px; left: -140px;
  animation: pressOrbFloat 10s ease-in-out infinite;
}
.press-hero-orb--2 {
  width: 420px; height: 420px;
  background: #00d4ff;
  bottom: -170px; right: -130px;
  animation: pressOrbFloat 13s ease-in-out infinite reverse;
}
@keyframes pressOrbFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(26px, -18px); }
}
.press-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}
.press-hero-kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(170, 255, 0, 0.9);
  margin-bottom: 12px;
}
.press-hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(40px, 6.5vw, 78px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}
.press-hero-accent { color: var(--green); }
.press-hero-sub {
  font-size: 15px;
  color: #9a9a9a;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 28px;
}
.press-hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.press-section {
  padding: 64px 80px 72px;
  background: var(--black);
}
.press-section-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: start;
}
.press-feature {
  border-radius: 20px;
  padding: 30px 28px;
  background: linear-gradient(155deg, rgba(170, 255, 0, 0.08) 0%, rgba(255, 255, 255, 0.03) 60%, rgba(0, 0, 0, 0.1) 100%);
  border: 1px solid rgba(170, 255, 0, 0.2);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
}
.press-feature .section-heading { margin-bottom: 10px; }
.press-feature-meta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(170, 255, 0, 0.75);
  margin-bottom: 14px;
}
.press-feature-desc {
  font-size: 14px;
  color: #bdbdbd;
  line-height: 1.75;
  margin: 0 0 18px;
}
.press-read-btn { min-height: 46px; }

.press-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.press-card-new {
  display: block;
  text-decoration: none;
  border-radius: 18px;
  padding: 22px 20px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease, box-shadow 0.3s ease;
  color: var(--white);
}
.press-card-new:hover {
  transform: translateY(-5px);
  border-color: rgba(170, 255, 0, 0.35);
  box-shadow: 0 22px 56px rgba(0,0,0,0.45), 0 0 24px rgba(170, 255, 0, 0.08);
}
.press-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}
.press-outlet-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
}
.press-outlet-pill--njbiz { color: #9fc3ff; border-color: rgba(100, 160, 255, 0.3); }
.press-outlet-pill--renj { color: rgba(170, 255, 0, 0.9); border-color: rgba(170, 255, 0, 0.25); }
.press-card-icon { font-size: 22px; line-height: 1; opacity: 0.9; }
.press-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin-bottom: 10px;
}
.press-card-meta {
  font-size: 12px;
  color: #9a9a9a;
  line-height: 1.45;
  margin-bottom: 14px;
}
.press-card-cta {
  font-size: 12px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 1023px) and (min-width: 768px) {
  .press-section {
    padding: 56px 40px 64px;
  }
  .press-section-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .press-hero {
    padding: 64px var(--pad-mobile-l) 54px;
  }
  .press-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .press-hero-actions .btn-email,
  .press-hero-actions .btn-outline { width: 100%; min-height: 48px; }

  .press-section {
    padding: 44px var(--pad-mobile-l) 56px;
  }
  .press-section-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .press-feature { padding: 24px 18px; border-radius: 16px; }
  .press-card-new { padding: 20px 16px; border-radius: 16px; }
}

/* ===== FOOTER ===== */
footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 48px 80px 32px;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}
.footer-logo .pb { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 22px; color: var(--white); }
.footer-logo .pb span { color: var(--green); }
.footer-logo .tagline { font-size: 9px; font-weight: 700; color: var(--green); letter-spacing: 2px; text-transform: uppercase; margin-top: 2px; }
.footer-addr { font-size: 12px; color: #666; margin-top: 12px; line-height: 1.6; }

.footer-contact { justify-self: end; text-align: right; max-width: 420px; }
.footer-contact p { font-size: 13px; color: #888; line-height: 1.8; }
.footer-contact a { color: #888; text-decoration: none; }
.footer-bottom { grid-column: 1 / -1; border-top: 1px solid var(--border); padding-top: 20px; text-align: center; font-size: 11px; color: #777; margin-top: 16px; }
.footer-social-links { display: inline-flex; align-items: center; gap: 10px; }
.footer-social-links span { color: #888; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; font-size: 10px; }
.footer-social-links a { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); transition: opacity 0.25s ease, transform 0.25s ease; }
.footer-social-links a:hover { opacity: 0.85; transform: translateY(-1px); }
.footer-social-links img { width: 18px; height: 18px; filter: invert(1); opacity: 0.85; }

/* Like/Follow bar */
.social-follow {
  text-align: center;
  padding: 32px 80px;
  border-top: 1px solid var(--border);
}
.social-follow p { font-size: 14px; color: #888; margin-bottom: 16px; }

/* ===== RESPONSIVE ===== */
/* Laptop: 1024px–1279px — tighter gutters, moderate type scale, single-row nav */
@media (max-width: 1279px) and (min-width: 1024px) {
  nav {
    padding: 0 28px;
  }

  .hero {
    padding: 64px 56px 40px;
    gap: 32px 32px;
  }

  .hero h1 {
    font-size: 76px;
    letter-spacing: -1.75px;
  }

  .flagship {
    padding: 56px;
    gap: 48px;
  }

  .flagship h2 {
    font-size: 46px;
  }

  .features {
    padding: 0 56px 56px;
  }

  .mailing {
    padding: 56px;
  }

  .mailing h2 {
    font-size: 42px;
  }

  .page-header {
    padding: 48px 56px 32px;
  }

  .page-header h1 {
    font-size: 52px;
  }

  .about-hero-img {
    width: calc(100% - 112px);
    margin: 0 56px 48px;
  }

  .about-body {
    padding: 0 56px 48px;
  }

  .taglines {
    padding: 36px 56px;
  }

  .contact-img {
    width: calc(100% - 112px);
    margin: 0 56px 40px;
  }

  .contact-form {
    padding: 0 56px 48px;
  }

  .junior-coming {
    padding: 36px 56px;
  }

  .junior-logos {
    padding: 40px 56px 56px;
  }

  .founders-banner {
    margin: 0 56px 48px;
  }

  .membership-section {
    padding: 0 56px 48px;
  }

  .punch-card-section {
    padding: 0 56px 48px;
  }

  .membership-cta {
    padding: 20px 56px 48px;
  }

  .faq-list {
    padding: 20px 56px 48px;
  }

  .press-grid {
    padding: 20px 56px 48px;
  }

  footer {
    padding: 44px 56px 28px;
  }

  .social-follow {
    padding: 28px 56px;
  }

  .page-close {
    padding: 64px 56px 48px;
  }

  .content-band {
    padding: 48px 56px;
  }

  .glass-tabs-section {
    padding: 56px 24px 72px;
  }
}

/* Tablet: 768px–1023px — stacked hero, 2-col grids where specified, ~40px gutters */
@media (max-width: 1023px) and (min-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 44px 40px 36px;
    gap: 28px;
  }

  .hero > .glass-tabs-section.hero-glass-tabs {
    margin-top: 28px;
    padding-top: 28px;
  }

  .hero h1 {
    font-size: 48px;
    letter-spacing: -1.5px;
  }

  .hero-img {
    max-height: 380px;
    height: min(380px, 52vw);
  }

  .flagship {
    grid-template-columns: 1fr;
    padding: 44px 40px;
    gap: 36px;
  }

  .flagship h2 {
    font-size: 40px;
  }

  .features {
    padding: 0 40px 44px;
  }

  .features .stagger-children {
    grid-template-columns: repeat(2, 1fr);
  }

  .mailing {
    padding: 44px 40px;
  }

  .mailing h2 {
    font-size: 38px;
  }

  .page-header {
    padding: 40px 40px 28px;
  }

  .page-header h1 {
    font-size: 44px;
  }

  .about-hero-img,
  .contact-img {
    margin: 0 40px 40px;
    width: calc(100% - 80px);
  }

  .about-body {
    padding: 0 40px 48px;
  }

  .taglines {
    padding: 36px 40px;
  }

  .play-code-block {
    padding: 24px 40px 44px;
  }

  .contact-form {
    padding: 0 40px 48px;
  }

  .junior-coming {
    padding: 36px 40px;
  }

  .junior-logos {
    padding: 40px 40px 52px;
  }

  .founders-banner {
    margin: 0 40px 44px;
  }

  .membership-section {
    padding: 0 40px 48px;
  }

  #page-membership .page-header + .img-placeholder {
    width: calc(100% - 80px) !important;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
  }

  .plans-grid,
  .monthly-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .punch-card-section {
    padding: 0 40px 48px;
  }

  .punch-card {
    max-width: 100%;
  }

  .membership-cta {
    padding: 20px 40px 48px;
  }

  .faq-list {
    padding: 20px 40px 48px;
  }

  .press-grid {
    padding: 20px 40px 48px;
    grid-template-columns: repeat(2, 1fr);
  }

  footer {
    grid-template-columns: 1fr;
    padding: 40px 40px 28px;
  }

  .footer-contact {
    justify-self: start;
    max-width: none;
    text-align: left;
  }

  .social-follow {
    padding: 28px 40px;
  }

  .glass-tabs-section {
    padding: 44px 40px 52px;
  }

  .glass-tabs-sub {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .club-tab {
    font-size: 11px;
    padding: 10px 14px;
  }

  .club-tab-bar {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    max-width: 100%;
    mask-image: linear-gradient(90deg, #000 85%, transparent 100%);
  }

  .club-panel-glass {
    padding: 22px 20px 26px;
    border-radius: 16px;
  }

  .club-panel-glass h3 {
    font-size: 19px;
  }

  .page-close {
    padding: 48px 40px 44px;
  }

  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .two-col-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .content-band {
    padding: 40px 40px;
  }

  .quote-block {
    padding: 28px 32px;
    font-size: 16px;
  }

  .footer-cta-strip {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .footer-cta-actions {
    justify-content: center;
  }
}

/* Mobile: max 767px — single column, hero headline 32px, full-width CTAs, touch targets */
@media (max-width: 767px) {
  .comp-edge-logo {
    max-width: min(340px, 100%);
    box-sizing: border-box;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 36px max(16px, env(safe-area-inset-left, 0px)) 28px max(16px, env(safe-area-inset-right, 0px));
  }

  .hero > .glass-tabs-section.hero-glass-tabs {
    margin-top: 24px;
    padding-top: 24px;
  }

  .hero-parallax-layer {
    display: none;
  }

  .hero h1 {
    font-size: 32px;
    letter-spacing: -0.75px;
    line-height: 0.95;
  }

  .hero-img {
    height: min(320px, 58vw);
    min-height: 200px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero-btns .btn-outline,
  .hero-btns .btn-solid {
    width: 100%;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
  }

  .flagship {
    grid-template-columns: 1fr;
    padding: 36px 16px;
    gap: 28px;
  }

  .flagship h2 {
    font-size: clamp(28px, 9vw, 40px);
  }

  .features {
    padding: 0 16px 36px;
  }

  .features .stagger-children {
    grid-template-columns: 1fr;
  }

  .mailing {
    padding: 36px 16px;
  }

  .mailing h2 {
    font-size: clamp(28px, 8vw, 40px);
  }

  .btn-email {
    min-height: 48px;
    justify-content: center;
    width: 100%;
    max-width: 320px;
    box-sizing: border-box;
  }

  .page-header {
    padding: 32px 16px 20px;
  }

  .page-header h1 {
    font-size: clamp(28px, 8vw, 40px);
  }

  .about-hero-img,
  .contact-img {
    margin: 0 16px 32px;
    width: calc(100% - 32px);
    height: min(380px, 52vw);
    min-height: 200px;
  }

  .about-body {
    padding: 0 16px 40px;
  }

  .taglines {
    padding: 32px 16px;
  }

  .taglines p {
    font-size: 18px;
  }

  .taglines .green-line {
    font-size: 20px;
  }

  .play-code-block {
    padding: 24px 16px 36px;
  }

  .contact-form {
    padding: 0 16px 40px;
    max-width: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-group input,
  .form-group select {
    min-height: 48px;
    box-sizing: border-box;
  }

  .btn-submit {
    min-height: 48px;
  }

  .junior-coming {
    padding: 32px 16px;
  }

  .junior-logos {
    padding: 36px 16px 48px;
  }

  .dinkin-text1 {
    font-size: clamp(24px, 7vw, 36px);
  }

  .dinkin-text2 {
    font-size: clamp(20px, 6vw, 28px);
  }

  .founders-banner {
    margin: 0 16px 32px;
    padding: 28px 20px;
  }

  .membership-section {
    padding: 0 16px 40px;
  }

  .membership-section h2 {
    font-size: clamp(28px, 8vw, 36px);
  }

  #page-membership .page-header + .img-placeholder {
    width: calc(100% - 32px) !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
  }

  .plans-grid,
  .monthly-grid {
    grid-template-columns: 1fr;
  }

  .plan-card {
    min-width: 0;
  }

  .punch-card-section {
    padding: 0 16px 40px;
  }

  .punch-card {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .membership-cta {
    padding: 20px 16px 40px;
  }

  .faq-list {
    padding: 16px 16px 40px;
  }

  .faq-item:not(.faq-chat-exchange) .faq-q {
    min-height: 48px;
    box-sizing: border-box;
  }

  .press-grid {
    padding: 16px 16px 40px;
    grid-template-columns: 1fr;
  }

  footer {
    grid-template-columns: 1fr;
    padding: 36px 16px 24px;
  }

  .footer-contact {
    justify-self: start;
    max-width: none;
    text-align: left;
  }

  .social-follow {
    padding: 28px 16px;
  }

  .glass-tabs-section {
    padding: 40px 16px 48px;
  }

  .glass-tabs-heading {
    font-size: clamp(24px, 6vw, 34px);
  }

  .glass-tabs-sub {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .club-tab {
    font-size: 11px;
    padding: 10px 14px;
    min-height: 48px;
    box-sizing: border-box;
  }

  .club-tab-bar {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    max-width: 100%;
    mask-image: linear-gradient(90deg, #000 82%, transparent 100%);
  }

  .club-panel-glass {
    padding: 20px 18px 22px;
  }

  .page-close {
    padding: 40px 16px 36px;
  }

  .stat-grid {
    grid-template-columns: 1fr;
  }

  .two-col-features {
    grid-template-columns: 1fr;
  }

  .content-band {
    padding: 36px 16px;
  }

  .mini-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .mini-cta-row .btn-outline,
  .mini-cta-row .btn-solid,
  .mini-cta-row .btn-ghost {
    width: 100%;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
  }

  .footer-cta-strip {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 24px 18px;
  }

  .footer-cta-actions {
    justify-content: stretch;
    flex-direction: column;
  }

  .footer-cta-actions .btn-outline,
  .footer-cta-actions .btn-solid {
    width: 100%;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
  }

  .quote-block {
    padding: 22px 18px;
    font-size: 15px;
  }

  .page {
    padding-bottom: max(24px, env(safe-area-inset-bottom, 0px));
  }
}

/* Mobile small: max 479px — tighter side gutters */
@media (max-width: 479px) {
  .hero {
    padding-left: 12px;
    padding-right: 12px;
  }

  .flagship {
    padding-left: 12px;
    padding-right: 12px;
  }

  .features {
    padding-left: 12px;
    padding-right: 12px;
  }

  .mailing {
    padding-left: 12px;
    padding-right: 12px;
  }

  .page-header {
    padding-left: 12px;
    padding-right: 12px;
  }

  .about-body {
    padding-left: 12px;
    padding-right: 12px;
  }

  .about-hero-img,
  .contact-img {
    margin-left: 12px;
    margin-right: 12px;
    width: calc(100% - 24px);
  }

  .taglines {
    padding-left: 12px;
    padding-right: 12px;
  }

  .play-code-block {
    padding-left: 12px;
    padding-right: 12px;
  }

  .contact-form {
    padding-left: 12px;
    padding-right: 12px;
  }

  .junior-coming {
    padding-left: 12px;
    padding-right: 12px;
  }

  .junior-logos {
    padding-left: 12px;
    padding-right: 12px;
  }

  .founders-banner {
    margin-left: 12px;
    margin-right: 12px;
  }

  .membership-section {
    padding-left: 12px;
    padding-right: 12px;
  }

  #page-membership .page-header + .img-placeholder {
    width: calc(100% - 24px) !important;
  }

  .punch-card-section {
    padding-left: 12px;
    padding-right: 12px;
  }

  .membership-cta {
    padding-left: 12px;
    padding-right: 12px;
  }

  .faq-list {
    padding-left: 12px;
    padding-right: 12px;
  }

  .press-grid {
    padding-left: 12px;
    padding-right: 12px;
  }

  footer {
    padding-left: 12px;
    padding-right: 12px;
  }

  .social-follow {
    padding-left: 12px;
    padding-right: 12px;
  }

  .glass-tabs-section {
    padding-left: 12px;
    padding-right: 12px;
  }

  .page-close {
    padding-left: 12px;
    padding-right: 12px;
  }

  .content-band {
    padding-left: 12px;
    padding-right: 12px;
  }
}

/* Placeholder for images that can't load */
.img-placeholder {
  background: #1a1a1a;
  border: 2px dashed #333;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  padding: 20px;
}

/* ===== AMBIENT BACKGROUND & GLOBAL TEXTURE ===== */
.ambient-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
  background: var(--black);
}

.ambient-bg::after {
  content: '';
  position: absolute;
  inset: -40%;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  opacity: 0.55;
  mix-blend-mode: overlay;
  animation: noise-drift 28s linear infinite;
}

@keyframes noise-drift {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(-4%, -3%) rotate(0.5deg); }
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: orb-float 22s ease-in-out infinite;
}

.ambient-orb--1 {
  width: min(55vw, 520px);
  height: min(55vw, 520px);
  background: radial-gradient(circle, rgba(170, 255, 0, 0.45) 0%, transparent 70%);
  top: -8%;
  left: -12%;
  animation-delay: 0s;
}

.ambient-orb--2 {
  width: min(45vw, 420px);
  height: min(45vw, 420px);
  background: radial-gradient(circle, rgba(120, 200, 80, 0.22) 0%, transparent 72%);
  bottom: 10%;
  right: -8%;
  animation-delay: -7s;
  animation-duration: 26s;
}

.ambient-orb--3 {
  width: min(35vw, 340px);
  height: min(35vw, 340px);
  background: radial-gradient(circle, rgba(170, 255, 0, 0.18) 0%, transparent 68%);
  top: 42%;
  left: 35%;
  animation-delay: -12s;
  animation-duration: 31s;
}

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(4%, 6%) scale(1.06); }
  66% { transform: translate(-3%, 4%) scale(0.96); }
}

.ambient-motifs {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.motif {
  position: absolute;
  display: block;
  opacity: 0.13;
  filter: drop-shadow(0 0 12px rgba(170, 255, 0, 0.12));
  will-change: transform, opacity;
  animation: motif-drift 16s linear infinite;
}

.motif--ball {
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(170, 255, 0, 0.34), rgba(170, 255, 0, 0.04) 70%);
}

.motif--square {
  border-radius: 6px;
  border: 1px solid rgba(170, 255, 0, 0.32);
  background: rgba(170, 255, 0, 0.03);
}

.motif--ring {
  border-radius: 50%;
  border: 2px solid rgba(170, 255, 0, 0.24);
}

.motif--diamond {
  width: 16px;
  height: 16px;
  background: rgba(170, 255, 0, 0.2);
  transform: rotate(45deg);
}

.motif--star {
  width: 22px;
  height: 22px;
  background: rgba(170, 255, 0, 0.18);
  clip-path: polygon(50% 0%, 62% 36%, 100% 50%, 62% 64%, 50% 100%, 38% 64%, 0% 50%, 38% 36%);
}

.motif--1 { width: 18px; height: 18px; top: 12%; left: 6%; animation-duration: 12s; }
.motif--2 { width: 26px; height: 26px; top: 68%; left: 82%; animation-duration: 15s; animation-delay: -3s; }
.motif--3 { width: 14px; height: 14px; top: 28%; left: 78%; animation-duration: 13s; animation-delay: -6s; }
.motif--4 { width: 20px; height: 20px; top: 76%; left: 18%; animation-duration: 17s; animation-delay: -9s; }
.motif--5 { width: 34px; height: 34px; top: 20%; left: 52%; animation-duration: 14s; animation-delay: -2s; }
.motif--6 { width: 22px; height: 22px; top: 58%; left: 42%; animation-duration: 18s; animation-delay: -5s; }
.motif--7 { top: 40%; left: 10%; animation-duration: 11s; animation-delay: -4s; }
.motif--8 { top: 16%; left: 90%; animation-duration: 9s; animation-delay: -1s; }

@keyframes motif-drift {
  0% { transform: translate3d(0, 0, 0) rotate(0deg); opacity: 0.1; }
  50% { transform: translate3d(16px, -22px, 0) rotate(18deg); opacity: 0.2; }
  100% { transform: translate3d(-10px, -44px, 0) rotate(42deg); opacity: 0.08; }
}

/* ===== CUSTOM CURSOR ===== */
.cursor-dot,
.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 10000;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.35s ease;
}

body.has-custom-cursor {
  cursor: none;
}

body.has-custom-cursor a,
body.has-custom-cursor button,
body.has-custom-cursor .club-tab,
body.has-custom-cursor input,
body.has-custom-cursor select,
body.has-custom-cursor textarea,
body.has-custom-cursor .faq-q {
  cursor: none;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  margin: -3px 0 0 -3px;
  background: var(--nav-neon);
  box-shadow: 0 0 12px rgba(170, 255, 0, 0.9);
}

.cursor-glow {
  width: 36px;
  height: 36px;
  margin: -18px 0 0 -18px;
  border: 1px solid rgba(170, 255, 0, 0.35);
  background: radial-gradient(circle, rgba(170, 255, 0, 0.12) 0%, transparent 70%);
  transition: opacity 0.35s ease, width 0.2s ease, height 0.2s ease, margin 0.2s ease, border-color 0.2s ease;
}

.cursor-glow.is-hover {
  width: 48px;
  height: 48px;
  margin: -24px 0 0 -24px;
  border-color: rgba(170, 255, 0, 0.55);
}

body.is-cursor-ready .cursor-dot,
body.is-cursor-ready .cursor-glow {
  opacity: 1;
}

/* Custom cursor is desktop-only — hide on tablet/phone so real taps never fight a fake dot */
@media (max-width: 1023px) {
  .cursor-dot,
  .cursor-glow {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }

  body.has-custom-cursor,
  body.has-custom-cursor a,
  body.has-custom-cursor button,
  body.has-custom-cursor .club-tab,
  body.has-custom-cursor input,
  body.has-custom-cursor select,
  body.has-custom-cursor textarea,
  body.has-custom-cursor .faq-q {
    cursor: auto;
  }
}

/* ===== HERO PARALLAX & HERO MOTION ===== */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-parallax-layer {
  position: absolute;
  inset: -12% -8% -8%;
  z-index: 0;
  pointer-events: none;
}

.hero-bg-gallery {
  position: absolute;
  top: 8%;
  right: 4%;
  width: 52%;
  height: 58%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: 18px;
  -webkit-mask-image: radial-gradient(120% 95% at 52% 50%, rgba(0, 0, 0, 1) 52%, rgba(0, 0, 0, 0) 100%);
  mask-image: radial-gradient(120% 95% at 52% 50%, rgba(0, 0, 0, 1) 52%, rgba(0, 0, 0, 0) 100%);
}

.hero-bg-photo {
  position: absolute;
  width: clamp(140px, 18vw, 280px);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  opacity: 0.12;
  filter: saturate(0.85) blur(0.4px);
  mix-blend-mode: screen;
  will-change: transform, opacity;
}

.hero-bg-photo--1 { top: 3%; left: 4%; animation: hero-bg-rush-a 5.6s linear infinite; }
.hero-bg-photo--2 { top: 2%; right: 8%; animation: hero-bg-rush-b 5.2s linear infinite; animation-delay: -2.2s; }
.hero-bg-photo--3 { top: 38%; left: -2%; animation: hero-bg-rush-c 4.8s linear infinite; animation-delay: -1.6s; }
.hero-bg-photo--4 { top: 38%; right: -4%; animation: hero-bg-rush-a 5s linear infinite reverse; animation-delay: -3.1s; }
.hero-bg-photo--5 { bottom: 1%; left: 14%; animation: hero-bg-rush-b 5.4s linear infinite reverse; animation-delay: -2.7s; }
.hero-bg-photo--6 { bottom: 6%; right: 10%; animation: hero-bg-rush-c 4.9s linear infinite; animation-delay: -0.8s; }

@media (max-width: 1023px) and (min-width: 768px) {
  .hero-bg-gallery {
    top: 40%;
    right: 6%;
    width: 84%;
    height: 42%;
  }
}

@media (max-width: 767px) {
  /* Mobile perf: reduce heavy fixed noise + big blurs */
  .ambient-bg::after {
    animation: none;
    opacity: 0.25;
  }

  .ambient-orb {
    filter: blur(56px);
    opacity: 0.22;
    animation-duration: 34s;
  }

  .motif {
    opacity: 0.09;
    animation-duration: 22s;
    filter: none;
  }

  /* Mobile perf: hide fast-moving photo gallery behind hero */
  .hero-bg-gallery {
    display: none;
  }

  .hero-bg-gallery {
    top: 48%;
    right: 6%;
    width: 88%;
    height: 34%;
  }

  .hero-bg-photo {
    width: clamp(130px, 30vw, 220px);
    opacity: 0.085;
  }

  .hero-bg-photo--5,
  .hero-bg-photo--6 {
    display: none;
  }
}

.hero-parallax-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  will-change: transform;
}

.hero-parallax-orb--1 {
  width: 55%;
  height: 70%;
  background: radial-gradient(circle, rgba(170, 255, 0, 0.2) 0%, transparent 68%);
  top: 5%;
  right: 5%;
}

.hero-parallax-orb--2 {
  width: 40%;
  height: 50%;
  background: radial-gradient(circle, rgba(80, 120, 60, 0.15) 0%, transparent 70%);
  bottom: 15%;
  left: 0;
}

.hero > div:not(.hero-parallax-layer):not(.hero-bg-gallery):not(.hero-glass-tabs) {
  position: relative;
  z-index: 1;
}

.hero > .hero-glass-tabs {
  position: relative;
  z-index: 2;
}

@keyframes hero-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.015); }
}

@keyframes neon-glow-pulse {
  0%, 100% {
    text-shadow:
      0 0 12px rgba(170, 255, 0, 0.35),
      0 0 28px rgba(170, 255, 0, 0.18);
  }
  50% {
    text-shadow:
      0 0 20px rgba(170, 255, 0, 0.55),
      0 0 48px rgba(170, 255, 0, 0.28);
  }
}

@keyframes hero-bg-rush-a {
  0% { transform: translate3d(-22px, 10px, 0) scale(1); opacity: 0.08; }
  50% { transform: translate3d(26px, -8px, 0) scale(1.07); opacity: 0.17; }
  100% { transform: translate3d(58px, 10px, 0) scale(1.12); opacity: 0.07; }
}

@keyframes hero-bg-rush-b {
  0% { transform: translate3d(18px, -12px, 0) scale(1.01); opacity: 0.07; }
  50% { transform: translate3d(-28px, 16px, 0) scale(1.08); opacity: 0.15; }
  100% { transform: translate3d(-56px, -8px, 0) scale(1.14); opacity: 0.06; }
}

@keyframes hero-bg-rush-c {
  0% { transform: translate3d(-14px, -14px, 0) scale(1.02); opacity: 0.07; }
  50% { transform: translate3d(22px, 20px, 0) scale(1.09); opacity: 0.16; }
  100% { transform: translate3d(46px, -10px, 0) scale(1.15); opacity: 0.06; }
}

.hero h1 {
  animation: none;
}

.hero h1 .green {
  animation: none;
  text-shadow: 0 0 14px rgba(170, 255, 0, 0.22);
}

/* ===== SECTION HEADINGS & PAGE CLOSE BANDS ===== */
.section-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  display: inline-block;
  position: relative;
}

.section-heading::after {
  content: '';
  display: block;
  height: 3px;
  margin-top: 14px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--nav-neon), rgba(170, 255, 0, 0.15));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.section-heading.is-underline-revealed::after {
  transform: scaleX(1);
}

.section-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--nav-neon);
  margin-bottom: 8px;
}

.page-close {
  position: relative;
  padding: 72px 80px 56px;
  background: linear-gradient(180deg, var(--black) 0%, #0c0e0a 45%, var(--dark) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.page-close::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(170, 255, 0, 0.35), transparent);
  opacity: 0.85;
}

.page-close-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.texture-band {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(170, 255, 0, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 10% 80%, rgba(100, 140, 80, 0.05) 0%, transparent 50%);
}

.page-close .texture-band {
  opacity: 1;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 36px 0 40px;
}

.stat-card {
  text-align: center;
  padding: 28px 20px;
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06) 0%, rgba(0, 0, 0, 0.2) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.stat-card .stat-value {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(36px, 6vw, 52px);
  font-weight: 900;
  line-height: 1;
  color: var(--nav-neon);
  letter-spacing: -0.03em;
}

.stat-card .stat-label {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 600;
  color: #9a9a9a;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.quote-block {
  margin: 0 0 36px;
  padding: 32px 36px;
  border-left: 3px solid var(--nav-neon);
  background: rgba(20, 24, 18, 0.65);
  border-radius: 0 14px 14px 0;
  font-size: 17px;
  font-style: italic;
  line-height: 1.65;
  color: #d8d8d8;
}

.quote-block cite {
  display: block;
  margin-top: 16px;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nav-neon);
}

.mini-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  padding: 12px 26px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.25s ease, box-shadow 0.3s ease, background 0.25s ease;
}

.btn-ghost:hover {
  border-color: var(--nav-neon);
  box-shadow: 0 0 24px rgba(170, 255, 0, 0.15);
  transform: translateY(-2px);
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
}

.feature-pill {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(170, 255, 0, 0.35);
  color: #c8c8c8;
  background: rgba(170, 255, 0, 0.06);
}

/* Inner page content bands */
.content-band {
  padding: 56px 80px;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.content-band--alt {
  background: var(--dark);
}

.content-band-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.two-col-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
  text-align: left;
}

.highlight-card {
  padding: 24px 26px;
  border-radius: 14px;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}

.highlight-card:hover {
  transform: translateY(-4px);
  border-color: rgba(170, 255, 0, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.highlight-card h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--white);
}

.highlight-card p {
  font-size: 14px;
  color: #9a9a9a;
  line-height: 1.6;
  margin: 0;
}

.junior-showcase {
  max-width: 720px;
  margin: 0 auto;
}

.img-placeholder.junior-ph {
  min-height: 220px;
  margin-top: 24px;
}

/* ===== ENHANCED FOOTER ===== */
footer {
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 32px 48px;
  row-gap: 28px;
  padding-top: 56px;
  padding-bottom: 28px;
}

.footer-cta-strip {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 32px;
  margin-bottom: 8px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(170, 255, 0, 0.1) 0%, rgba(20, 22, 18, 0.95) 50%, rgba(10, 12, 10, 0.98) 100%);
  border: 1px solid rgba(170, 255, 0, 0.22);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.footer-cta-strip p {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  max-width: 420px;
  line-height: 1.45;
  margin: 0;
}

.footer-logo {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
}

.footer-logo .pb {
  letter-spacing: -0.02em;
}

.footer-logo .tagline {
  letter-spacing: 0.32em;
}

.footer-addr {
  color: rgba(255, 255, 255, 0.52);
  margin-top: 14px;
}

.footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-cta-actions .btn-outline,
.footer-cta-actions .btn-solid {
  padding: 10px 22px;
  font-size: 13px;
}

.footer-contact {
  justify-self: end;
  text-align: right;
  display: grid;
  gap: 8px;
}

.footer-contact p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.66);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: rgba(170, 255, 0, 0.95);
  border-bottom-color: rgba(170, 255, 0, 0.45);
}

/* footer-bottom is an empty divider node in markup */
.footer-bottom {
  display: none;
}

@media (max-width: 1023px) {
  footer {
    padding-top: 44px;
  }

  .footer-cta-strip p {
    max-width: 560px;
  }
}

@media (max-width: 767px) {
  footer {
    padding-top: 34px;
    gap: 18px;
    row-gap: 16px;
  }

  .footer-logo .pb {
    font-size: 20px;
  }

  .footer-addr {
    margin-top: 10px;
    font-size: 12px;
  }

  .footer-contact {
    justify-self: start;
    text-align: left;
    gap: 6px;
  }

  .footer-contact p,
  .footer-contact a {
    font-size: 13px;
    line-height: 1.6;
  }
}

/* ===== SCROLL REVEAL (fallback visible without JS) ===== */
@media (prefers-reduced-motion: reduce) {
  .ambient-orb,
  .motif,
  .ambient-bg::after,
  .hero h1,
  .hero h1 .green,
  .hero-bg-photo,
  .hero-media,
  .hero-media::before,
  .hero-media::after,
  .hero-img {
    animation: none !important;
  }

  .hero-media,
  .hero-img {
    transform: none !important;
    filter: none !important;
  }

  .hero-bg-photo {
    opacity: 0.035 !important;
    transform: none !important;
  }

  .reveal-section {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .reveal-section .stagger-children > * {
    opacity: 1 !important;
    transform: none !important;
  }

  .section-heading::after {
    transform: scaleX(1) !important;
  }
}

/* Micro-interaction polish */
.btn-outline:active,
.btn-solid:active,
.btn-email:active,
.btn-ghost:active,
.btn-join:active {
  transform: scale(0.97);
}

.club-tab:active {
  transform: scale(0.98);
}

.faq-q.faq-chat-bubble--user:active {
  transform: scale(0.99);
}

.faq-item:not(.faq-chat-exchange) .faq-q:active .faq-icon {
  transform: scale(1.15);
}

.nav-icon:active {
  transform: scale(0.94);
}

.social-btn {
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, opacity 0.2s ease;
}

.social-btn:hover {
  opacity: 1;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.plan-card {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
  border-color: rgba(170, 255, 0, 0.25);
}

/* Home "The standard" section hard override for phones */
@media (max-width: 768px) {
  #page-home .page-close {
    padding-left: var(--pad-mobile-l) !important;
    padding-right: var(--pad-mobile-r) !important;
  }

  #page-home #home-close-heading.section-heading {
    display: block;
    width: 100%;
    max-width: 100%;
    font-size: clamp(24px, 7.2vw, 34px);
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
  }

  #page-home .page-close .section-kicker {
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  #page-home .page-close .stat-grid {
    grid-template-columns: 1fr !important;
    gap: 14px;
    margin: 22px 0 28px;
    width: 100%;
  }

  #page-home .page-close .stat-card {
    padding: 20px 14px;
    border-radius: 12px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  #page-home .page-close .stat-card .stat-value {
    font-size: clamp(30px, 12vw, 44px);
    line-height: 1;
  }

  #page-home .page-close .stat-card .stat-label {
    margin-top: 8px;
    font-size: 11px;
    line-height: 1.35;
    letter-spacing: 0.04em;
    overflow-wrap: break-word;
  }
}

@media (max-width: 479px) {
  #page-home .page-close {
    padding-left: var(--pad-mobile-l) !important;
    padding-right: var(--pad-mobile-r) !important;
  }

  #page-home #home-close-heading.section-heading {
    font-size: clamp(22px, 8.2vw, 30px);
  }

  #page-home .page-close .stat-card {
    padding: 18px 12px;
  }
}

/* About page mobile hardening */
@media (max-width: 1100px) {
  .about-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .about-story-grid {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .about-hero-banner { height: 480px; }
  .about-hero-content { padding-left: var(--pad-mobile-l); padding-right: var(--pad-mobile-r); padding-bottom: 48px; }
  .about-hero-heading { font-size: clamp(36px, 10vw, 56px); letter-spacing: -1.5px; }
  .about-hero-sub { font-size: 15px; max-width: 100%; }

  .about-mission {
    padding-left: var(--pad-mobile-l);
    padding-right: var(--pad-mobile-r);
    padding-top: 48px;
    padding-bottom: 40px;
  }
  .about-lead { font-size: 16px; }

  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-pillars-section {
    padding-left: var(--pad-mobile-l);
    padding-right: var(--pad-mobile-r);
    padding-top: 56px;
    padding-bottom: 64px;
  }
  .about-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .about-pillars-header { margin-bottom: 36px; }
  .about-pillar-card { padding: 22px 18px 24px; }
  .about-pillar-icon { font-size: 30px; margin-bottom: 14px; }
  .about-pillar-card h3 { font-size: 15px; }
  .about-pillar-card p { font-size: 12px; }

  .about-vision-text { font-size: 16px; }

  #page-about .content-band {
    padding-left: var(--pad-mobile-l) !important;
    padding-right: var(--pad-mobile-r) !important;
  }
  #page-about .content-band .section-heading {
    display: block;
    width: 100%;
    max-width: 100%;
    font-size: clamp(23px, 7vw, 32px);
    line-height: 1.15;
  }
  #page-about .taglines p {
    font-size: clamp(16px, 5.1vw, 18px);
    line-height: 1.45;
  }
  #page-about .taglines .green-line { font-size: clamp(17px, 5.3vw, 20px); }
  #page-about .mission-p { margin-top: 18px; font-size: 14px; line-height: 1.65; }
  #page-about .page-close {
    padding-left: var(--pad-mobile-l) !important;
    padding-right: var(--pad-mobile-r) !important;
  }
  #page-about #about-close-heading.section-heading {
    display: block;
    width: 100%;
    max-width: 100%;
    font-size: clamp(23px, 7vw, 32px);
    line-height: 1.15;
  }
  #page-about .page-close .stat-grid {
    grid-template-columns: 1fr !important;
    gap: 14px;
    margin: 22px 0 28px;
    width: 100%;
  }
  #page-about .page-close .stat-card {
    padding: 20px 14px;
    border-radius: 12px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  #page-about .page-close .stat-card .stat-value {
    font-size: clamp(30px, 12vw, 44px);
    line-height: 1;
  }
  #page-about .page-close .stat-card .stat-label {
    margin-top: 8px;
    font-size: 11px;
    line-height: 1.35;
    letter-spacing: 0.04em;
    overflow-wrap: break-word;
  }
  #page-about .page-close .quote-block {
    padding: 20px 14px;
    font-size: 14px;
    line-height: 1.6;
  }
  #page-about .page-close .quote-block cite {
    font-size: 11px;
    letter-spacing: 0.1em;
  }
}

@media (max-width: 479px) {
  .about-hero-banner { height: 420px; }
  .about-hero-heading { letter-spacing: -1px; }

  .about-pillars-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .about-pillar-card { padding: 20px 16px; }

  #page-about .content-band,
  #page-about .page-close {
    padding-left: var(--pad-mobile-l) !important;
    padding-right: var(--pad-mobile-r) !important;
  }
  #page-about #about-close-heading.section-heading,
  #page-about .content-band .section-heading {
    font-size: clamp(21px, 8vw, 28px);
  }
  #page-about .page-close .stat-card { padding: 18px 12px; }
}

/* Contact page mobile hardening */
@media (max-width: 768px) {
  .contact-hero { height: 480px; }
  .contact-hero-content { padding-left: var(--pad-mobile-l); padding-right: var(--pad-mobile-r); padding-bottom: 48px; }
  .contact-hero-heading { font-size: clamp(36px, 10vw, 56px); letter-spacing: -1.5px; }
  .contact-hero-sub { font-size: 14px; }
  .contact-quick-actions { flex-direction: column; align-items: stretch; }
  .contact-quick-actions .btn-email,
  .contact-quick-actions .btn-outline { width: 100%; min-height: 48px; }

  .contact-options-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding-left: var(--pad-mobile-l) !important; padding-right: var(--pad-mobile-r) !important; }

  #page-contact .page-close {
    padding-left: var(--pad-mobile-l) !important;
    padding-right: var(--pad-mobile-r) !important;
  }

  #page-contact #contact-close-heading.section-heading {
    display: block;
    width: 100%;
    max-width: 100%;
    font-size: clamp(23px, 7vw, 32px);
    line-height: 1.15;
  }

  #page-contact .page-close .section-kicker {
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  #page-contact .page-close .stat-grid {
    grid-template-columns: 1fr !important;
    gap: 14px;
    margin: 22px 0 28px;
    width: 100%;
  }

  #page-contact .page-close .stat-card {
    padding: 20px 14px;
    border-radius: 12px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  #page-contact .page-close .stat-card .stat-value {
    font-size: clamp(30px, 12vw, 44px);
    line-height: 1;
  }

  #page-contact .page-close .stat-card .stat-label {
    margin-top: 8px;
    font-size: 11px;
    line-height: 1.35;
    letter-spacing: 0.04em;
    overflow-wrap: break-word;
  }

  #page-contact .page-close .quote-block {
    padding: 20px 14px;
    font-size: 14px;
    line-height: 1.6;
  }

  #page-contact .page-close .quote-block cite {
    font-size: 11px;
    letter-spacing: 0.1em;
  }
}

@media (max-width: 479px) {
  .contact-hero { height: 420px; }
  .contact-hero-heading { letter-spacing: -1px; }

  #page-contact .page-close {
    padding-left: var(--pad-mobile-l) !important;
    padding-right: var(--pad-mobile-r) !important;
  }

  #page-contact #contact-close-heading.section-heading {
    font-size: clamp(21px, 8vw, 28px);
  }

  #page-contact .page-close .stat-card {
    padding: 18px 12px;
  }
}

/* Junior, Membership, Press, FAQ mobile hardening */
@media (max-width: 768px) {
  #page-junior .content-band,
  #page-junior .junior-showcase.content-band {
    padding-left: var(--pad-mobile-l) !important;
    padding-right: var(--pad-mobile-r) !important;
  }

  #page-junior .content-band .section-heading {
    display: block;
    width: 100%;
    max-width: 100%;
    font-size: clamp(22px, 6.8vw, 31px);
    line-height: 1.15;
  }

  #page-junior .junior-showcase .img-placeholder {
    min-height: 180px;
    padding: 16px 12px;
    box-sizing: border-box;
  }

  #page-junior .junior-showcase .two-col-features {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 18px !important;
  }

  #page-junior .junior-showcase .highlight-card {
    padding: 18px 14px;
    border-radius: 12px;
  }

  #page-membership .page-close,
  #page-press .page-close,
  #page-faq .page-close {
    padding-left: var(--pad-mobile-l) !important;
    padding-right: var(--pad-mobile-r) !important;
  }

  #page-membership #membership-close-heading.section-heading,
  #page-press #press-close-heading.section-heading,
  #page-faq #faq-close-heading.section-heading {
    display: block;
    width: 100%;
    max-width: 100%;
    font-size: clamp(23px, 7vw, 32px);
    line-height: 1.15;
  }

  #page-membership .page-close .stat-grid,
  #page-press .page-close .stat-grid,
  #page-faq .page-close .stat-grid {
    grid-template-columns: 1fr !important;
    gap: 14px;
    margin: 22px 0 28px;
    width: 100%;
  }

  #page-membership .page-close .stat-card,
  #page-press .page-close .stat-card,
  #page-faq .page-close .stat-card {
    padding: 20px 14px;
    border-radius: 12px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  #page-membership .page-close .stat-card .stat-value,
  #page-press .page-close .stat-card .stat-value,
  #page-faq .page-close .stat-card .stat-value {
    font-size: clamp(30px, 12vw, 44px);
    line-height: 1;
  }

  #page-membership .page-close .stat-card .stat-label,
  #page-press .page-close .stat-card .stat-label,
  #page-faq .page-close .stat-card .stat-label {
    margin-top: 8px;
    font-size: 11px;
    line-height: 1.35;
    letter-spacing: 0.04em;
    overflow-wrap: break-word;
  }

  #page-membership .page-close .quote-block,
  #page-press .page-close .quote-block,
  #page-faq .page-close .quote-block {
    padding: 20px 14px;
    font-size: 14px;
    line-height: 1.6;
  }

  #page-membership .page-close .quote-block cite,
  #page-press .page-close .quote-block cite,
  #page-faq .page-close .quote-block cite {
    font-size: 11px;
    letter-spacing: 0.1em;
  }
}

@media (max-width: 479px) {
  #page-junior .content-band,
  #page-junior .junior-showcase.content-band,
  #page-membership .page-close,
  #page-press .page-close,
  #page-faq .page-close {
    padding-left: var(--pad-mobile-l) !important;
    padding-right: var(--pad-mobile-r) !important;
  }

  #page-membership #membership-close-heading.section-heading,
  #page-press #press-close-heading.section-heading,
  #page-faq #faq-close-heading.section-heading,
  #page-junior .content-band .section-heading {
    font-size: clamp(21px, 8vw, 28px);
  }

  #page-membership .page-close .stat-card,
  #page-press .page-close .stat-card,
  #page-faq .page-close .stat-card,
  #page-junior .junior-showcase .highlight-card {
    padding: 18px 12px;
  }
  
} 

/* ========== Junior Programs (junior.html) ========== */
/* ===== JUNIOR PAGE ENHANCED STYLES ===== */

/* Program Selector Hero */
.junior-hero {
  position: relative;
  text-align: center;
  padding: 60px 80px 0;
  overflow: hidden;
}

.junior-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 15% 30%, rgba(170,255,0,0.10) 0%, transparent 55%),
    radial-gradient(ellipse 60% 45% at 85% 70%, rgba(223,255,0,0.06) 0%, transparent 50%);
}

.junior-hero-kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}

.junior-hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(34px, 5.5vw, 62px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 16px;
}

.junior-hero-sub {
  font-size: 15px;
  color: #999;
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto 40px;
}

/* Program Switch Tabs */
.program-tabs {
  display: inline-flex;
  gap: 0;
  background: #161616;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 6px;
  margin-bottom: 0;
}

.program-tab-btn {
  appearance: none;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  border-radius: 10px;
  background: transparent;
  color: #666;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.program-tab-btn .tab-emoji {
  font-size: 18px;
  line-height: 1;
}

.program-tab-btn.active {
  background: var(--green);
  color: #0a0a0a;
}

.program-tab-btn:not(.active):hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

/* Program Panels */
.program-panel {
  display: none;
}
.program-panel.active {
  display: block;
}

/* ============================================
   DINKIN DINOS PROGRAM
   ============================================ */

.dd-hero {
  position: relative;
  padding: 48px 80px 56px;
  overflow: hidden;
  background: linear-gradient(160deg, #0d1a04 0%, #0a0a0a 55%, #0d120a 100%);
  border-bottom: 1px solid #1a2a0a;
}

.dd-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at -5% 50%, rgba(170,255,0,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 105% 20%, rgba(100,180,40,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.dd-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.dd-logo-badge {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.dd-logo-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f5e000, #ffd000);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 0 32px rgba(245,224,0,0.35), 0 8px 24px rgba(0,0,0,0.4);
  animation: dd-glow-pulse 3s ease-in-out infinite;
}

.dd-logo-circle.dd-logo-circle--img {
  background: rgba(255,255,255,0.94);
  border-radius: 16px;
  animation: none;
  box-shadow: 0 10px 28px rgba(0,0,0,0.35);
}

.dd-logo-circle img {
  width: 72px;
  height: 72px;
  display: block;
  object-fit: contain;
}

@keyframes dd-glow-pulse {
  0%, 100% { box-shadow: 0 0 32px rgba(245,224,0,0.35), 0 8px 24px rgba(0,0,0,0.4); }
  50% { box-shadow: 0 0 52px rgba(245,224,0,0.55), 0 8px 24px rgba(0,0,0,0.4); }
}

.dd-logo-circle .dd-initials {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: #1a5a00;
  line-height: 1;
}

.dd-logo-circle .dd-dino {
  position: absolute;
  bottom: -4px;
  right: -6px;
  font-size: 20px;
}

.dd-logo-text-block {}
.dd-logo-text-block .dd-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: #f5e000;
  letter-spacing: 2px;
  line-height: 1;
  text-shadow: 0 0 24px rgba(245,224,0,0.3);
}
.dd-logo-text-block .dd-sub {
  font-size: 11px;
  font-weight: 700;
  color: #3a7a10;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 4px;
}

.dd-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--white);
}

.dd-tagline em {
  font-style: italic;
  color: #a0e040;
}

.dd-hero-desc {
  font-size: 15px;
  color: #aaa;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 480px;
}

.dd-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.dd-pill {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(170,255,0,0.3);
  color: #b0e050;
  background: rgba(170,255,0,0.07);
}

.dd-cost-box {
  background: rgba(170,255,0,0.08);
  border: 1px solid rgba(170,255,0,0.25);
  border-radius: 14px;
  padding: 20px 24px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
}

.dd-cost-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}

.dd-cost-detail {
  font-size: 13px;
  color: #888;
  line-height: 1.5;
}

.dd-cost-detail strong {
  display: block;
  color: #ccc;
  font-weight: 700;
  font-size: 14px;
}

/* Dino character cards (right side of hero) */
.dd-char-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.dd-char-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 16px 14px;
  transition: transform 0.35s ease, border-color 0.3s ease, background 0.3s ease;
  cursor: default;
}

.dd-char-card:hover {
  transform: translateY(-4px);
  border-color: rgba(170,255,0,0.3);
  background: rgba(170,255,0,0.05);
}

.dd-char-emoji {
  font-size: 28px;
  margin-bottom: 8px;
  line-height: 1;
}

.dd-char-name {
  font-size: 12px;
  font-weight: 800;
  color: #a0d840;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.dd-char-role {
  font-size: 10px;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.dd-char-desc {
  font-size: 11px;
  color: #777;
  line-height: 1.5;
}

/* Dino Levels Section */
.dd-levels-section {
  padding: 64px 80px;
  background: #0a0a0a;
}

.dd-levels-section .section-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #a0d840;
  margin-bottom: 12px;
  display: block;
}

.dd-levels-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.dd-levels-section .sub {
  font-size: 14px;
  color: #888;
  line-height: 1.65;
  max-width: 580px;
  margin-bottom: 40px;
}

.dino-levels-track {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.dino-levels-track::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(170,255,0,0.6) 0%, rgba(170,255,0,0.1) 100%);
}

.dino-level-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid #141414;
  position: relative;
  transition: background 0.2s ease;
}

.dino-level-row:last-child {
  border-bottom: none;
}

.dino-level-row:hover {
  background: rgba(170,255,0,0.03);
  border-radius: 12px;
}

.level-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  margin-left: 16px;
  box-shadow: 0 0 16px rgba(0,0,0,0.5);
}

.level-dot.white  { background: #f0f0f0; color: #222; }
.level-dot.green  { background: #2ecc40; color: #fff; }
.level-dot.blue   { background: #0074d9; color: #fff; }
.level-dot.gold   { background: linear-gradient(135deg, #ffd700, #ffaa00); color: #222; }

.dino-level-info {}
.dino-level-name {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 4px;
}
.dino-level-name.white { color: #eee; }
.dino-level-name.green { color: #2ecc40; }
.dino-level-name.blue  { color: #4da6ff; }
.dino-level-name.gold  { color: #ffd700; }

.dino-level-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 8px;
}

.dino-level-desc {
  font-size: 13px;
  color: #999;
  line-height: 1.6;
}

.dino-stripes {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dino-stripe-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: #777;
}

.stripe-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* What a Session Looks Like */
.dd-session-section {
  padding: 64px 80px;
  background: #0d0d0d;
  border-top: 1px solid #181818;
}

.dd-session-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.session-feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.session-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid #1e1e1e;
  background: #131313;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.session-feature:hover {
  border-color: rgba(170,255,0,0.2);
  transform: translateX(4px);
}

.session-feature-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.session-feature-body {}
.session-feature-title {
  font-size: 13px;
  font-weight: 800;
  color: #ddd;
  margin-bottom: 3px;
}

.session-feature-desc {
  font-size: 12px;
  color: #777;
  line-height: 1.55;
}

/* Schedule + Cost card */
.dd-schedule-card {
  background: linear-gradient(160deg, rgba(170,255,0,0.09) 0%, rgba(20,26,14,0.95) 60%);
  border: 1px solid rgba(170,255,0,0.22);
  border-radius: 20px;
  padding: 32px 28px;
  position: sticky;
  top: 96px;
}

.dd-schedule-card h3 {
  font-size: 18px;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.schedule-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  gap: 12px;
}

.schedule-row:last-of-type {
  border-bottom: none;
}

.schedule-day {
  font-size: 13px;
  font-weight: 700;
  color: #ccc;
}

.schedule-time {
  font-size: 12px;
  color: #888;
}

.dd-cost-highlight {
  margin: 20px 0;
  padding: 18px;
  background: rgba(0,0,0,0.35);
  border-radius: 12px;
  text-align: center;
}

.dd-cost-highlight .price {
  font-family: 'Montserrat', sans-serif;
  font-size: 44px;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}

.dd-cost-highlight .price-note {
  font-size: 12px;
  color: #888;
  margin-top: 4px;
}

.dd-register-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--green);
  color: #0a0a0a;
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.3s ease, opacity 0.2s ease;
  margin-top: 20px;
}

.dd-register-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(170,255,0,0.35);
  opacity: 0.95;
}

/* Badges & Rewards */
.dd-badges-section {
  padding: 64px 80px;
  background: #0a0a0a;
  border-top: 1px solid #181818;
}

.badge-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.badge-card {
  padding: 28px 22px;
  border-radius: 16px;
  border: 1px solid #1e1e1e;
  background: #121212;
  transition: transform 0.35s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.badge-card:hover {
  transform: translateY(-6px);
  border-color: rgba(170,255,0,0.25);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4);
}

.badge-card-icon {
  font-size: 36px;
  margin-bottom: 12px;
  line-height: 1;
}

.badge-card-title {
  font-size: 14px;
  font-weight: 800;
  color: #ddd;
  margin-bottom: 8px;
}

.badge-card-desc {
  font-size: 12px;
  color: #777;
  line-height: 1.6;
}

/* ============================================
   COMPETITIVE EDGE PROGRAM
   ============================================ */

.ce-hero {
  position: relative;
  padding: 48px 80px 56px;
  overflow: hidden;
  background: linear-gradient(160deg, #050c14 0%, #0a0a0a 55%, #080c10 100%);
  border-bottom: 1px solid #0a1a28;
}

.ce-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at -5% 50%, rgba(170,221,0,0.10) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 105% 20%, rgba(100,160,0,0.07) 0%, transparent 50%);
  pointer-events: none;
}

.ce-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.ce-logo-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.ce-logo-mark {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid #aadd00;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 0 28px rgba(170,221,0,0.25);
}

.ce-logo-img {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 10px 26px rgba(0,0,0,0.32);
}

.ce-logo-mark .ce-inner-dot {
  width: 24px;
  height: 24px;
  background: #aadd00;
  border-radius: 50%;
}

.ce-logo-text {}
.ce-logo-text .ce-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #ddd;
  letter-spacing: 1px;
  line-height: 1;
}

.ce-logo-text .ce-name strong {
  color: #aadd00;
}

.ce-logo-text .ce-sub {
  font-size: 10px;
  font-weight: 700;
  color: #555;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 3px;
}

.ce-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.ce-tagline .accent {
  color: #aadd00;
}

.ce-hero-desc {
  font-size: 15px;
  color: #aaa;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 480px;
}

.ce-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.ce-pill {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(170,221,0,0.3);
  color: #aadd00;
  background: rgba(170,221,0,0.07);
}

/* CE Visual: silhouette grid */
.ce-visual-card {
  background: rgba(170,221,0,0.06);
  border: 1px solid rgba(170,221,0,0.18);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
}

.ce-stat-row {
  display: flex;
  justify-content: space-around;
  margin-bottom: 24px;
}

.ce-stat {
  text-align: center;
}

.ce-stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: #aadd00;
  line-height: 1;
}

.ce-stat-lbl {
  font-size: 10px;
  font-weight: 700;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.ce-quote {
  font-size: 16px;
  font-weight: 800;
  font-style: italic;
  color: #ccc;
  line-height: 1.45;
  padding: 16px 0 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}

/* CE Levels */
.ce-levels-section {
  padding: 64px 80px;
  background: #0a0a0a;
}

.ce-levels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.ce-level-card {
  border-radius: 16px;
  border: 1px solid #1e1e1e;
  background: #121212;
  padding: 24px 20px;
  transition: transform 0.35s ease, border-color 0.3s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}

.ce-level-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-color, var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.ce-level-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4);
}

.ce-level-card:hover::before {
  transform: scaleX(1);
}

.ce-level-card.ce1 { --accent-color: #aadd00; }
.ce-level-card.ce2 { --accent-color: #66bb00; }
.ce-level-card.ce3 { --accent-color: #44aa00; }
.ce-level-card.hp  { --accent-color: #ff6b35; }

.ce-level-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--accent-color, var(--green));
  opacity: 0.9;
}

.ce-level-title {
  font-size: 14px;
  font-weight: 800;
  color: #ddd;
  margin-bottom: 10px;
}

.ce-level-desc {
  font-size: 12px;
  color: #777;
  line-height: 1.65;
}

.ce-level-focus {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #1e1e1e;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-color, var(--green));
}

/* CE Philosophy */
.ce-philosophy-section {
  padding: 64px 80px;
  background: #0d0d0d;
  border-top: 1px solid #181818;
}

.ce-philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.ce-differentiator-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.ce-diff-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid #1e1e1e;
  background: #131313;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.ce-diff-item:hover {
  border-color: rgba(170,221,0,0.25);
  transform: translateX(4px);
}

.ce-diff-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

.ce-diff-body {}
.ce-diff-title {
  font-size: 13px;
  font-weight: 800;
  color: #ddd;
  margin-bottom: 3px;
}

.ce-diff-desc {
  font-size: 12px;
  color: #777;
  line-height: 1.55;
}

/* CE Register Card */
.ce-register-card {
  background: linear-gradient(160deg, rgba(170,221,0,0.08) 0%, rgba(14,20,12,0.95) 60%);
  border: 1px solid rgba(170,221,0,0.2);
  border-radius: 20px;
  padding: 32px 28px;
  position: sticky;
  top: 96px;
}

.ce-register-card h3 {
  font-size: 18px;
  font-weight: 900;
  color: #aadd00;
  margin-bottom: 18px;
}

.ce-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.ce-info-item:last-of-type {
  border-bottom: none;
}

.ce-info-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.ce-info-text {
  font-size: 13px;
  color: #ccc;
  line-height: 1.45;
}

.ce-info-text strong {
  display: block;
  color: #fff;
  font-weight: 700;
}

.ce-register-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: #aadd00;
  color: #0a0a0a;
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.3s ease, opacity 0.2s ease;
  margin-top: 20px;
}

.ce-register-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(170,221,0,0.3);
  opacity: 0.95;
}

/* Both programs shared: page close */
.junior-page-close {
  position: relative;
  padding: 72px 80px 56px;
  background: linear-gradient(180deg, var(--black) 0%, #0c0e0a 45%, var(--dark) 100%);
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

.junior-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 760px;
  margin: 40px auto 0;
}

.junior-cta-card {
  border-radius: 18px;
  padding: 32px 28px;
  text-align: left;
  cursor: pointer;
  text-decoration: none;
  display: block;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  font: inherit;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  border: none;
}

.junior-cta-card:hover {
  transform: translateY(-6px);
}

.junior-cta-card.dd-card {
  background: linear-gradient(145deg, rgba(245,224,0,0.10) 0%, rgba(10,10,10,0.95) 100%);
  border: 1px solid rgba(245,224,0,0.25);
}

.junior-cta-card.dd-card:hover {
  box-shadow: 0 20px 48px rgba(245,224,0,0.12);
}

.junior-cta-card.ce-card {
  background: linear-gradient(145deg, rgba(170,221,0,0.08) 0%, rgba(10,10,10,0.95) 100%);
  border: 1px solid rgba(170,221,0,0.2);
}

.junior-cta-card.ce-card:hover {
  box-shadow: 0 20px 48px rgba(170,221,0,0.10);
}

.cta-card-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.cta-card-label.dd { color: #f5e000; }
.cta-card-label.ce { color: #aadd00; }

.cta-card-title {
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.cta-card-desc {
  font-size: 13px;
  color: #888;
  line-height: 1.55;
  margin-bottom: 16px;
}

.cta-card-action {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cta-card-action.dd { color: #f5e000; }
.cta-card-action.ce { color: #aadd00; }

/* Animated underline accent on active tab */
.program-tab-btn.active .tab-emoji {
  animation: tab-bounce 0.5s ease;
}

@keyframes tab-bounce {
  0%, 100% { transform: translateY(0); }
  40% { transform: translateY(-5px); }
  70% { transform: translateY(-2px); }
}

/* Responsive */
@media (max-width: 1023px) and (min-width: 768px) {
  .junior-hero { padding: 44px 40px 0; }
  .dd-hero, .ce-hero { padding: 40px 40px 48px; }
  .dd-hero-inner, .ce-hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .dd-char-grid { grid-template-columns: repeat(3, 1fr); }
  .ce-levels-grid { grid-template-columns: repeat(2, 1fr); }
  .dd-levels-section, .dd-session-section, .dd-badges-section,
  .ce-levels-section, .ce-philosophy-section, .junior-page-close { padding: 44px 40px; }
  .dd-session-grid, .ce-philosophy-grid { grid-template-columns: 1fr; }
  .dd-schedule-card, .ce-register-card { position: static; }
  .badge-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .junior-cta-grid { grid-template-columns: 1fr; max-width: 480px; }
}

@media (max-width: 767px) {
  .junior-hero { padding: 36px 16px 0; }
  .program-tabs { flex-direction: column; width: calc(100% - 32px); }
  .program-tab-btn { justify-content: center; }
  .dd-hero, .ce-hero { padding: 32px 16px 40px; }
  .dd-hero-inner, .ce-hero-inner { grid-template-columns: 1fr; gap: 28px; }
  .dd-logo-badge, .ce-logo-badge { flex-wrap: wrap; }
  .dd-char-grid { grid-template-columns: 1fr 1fr; }
  .ce-levels-grid { grid-template-columns: 1fr 1fr; }
  .dd-levels-section, .dd-session-section, .dd-badges-section,
  .ce-levels-section, .ce-philosophy-section, .junior-page-close { padding: 40px 16px; }
  .dino-levels-track::before { left: 24px; }
  .level-dot { margin-left: 8px; }
  .dd-session-grid, .ce-philosophy-grid { grid-template-columns: 1fr; }
  .dd-schedule-card, .ce-register-card { position: static; }
  .badge-cards-grid { grid-template-columns: 1fr 1fr; }
  .junior-cta-grid { grid-template-columns: 1fr; }
  .ce-levels-grid { grid-template-columns: 1fr; }
}

@media (max-width: 479px) {
  .dd-char-grid { grid-template-columns: 1fr; }
  .badge-cards-grid { grid-template-columns: 1fr; }
}

/* ===== Course Enrollment (modal checkout) ===== */
.enroll-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2200;
  display: grid;
  place-items: center;
  background:
    radial-gradient(920px 560px at 18% 12%, rgba(170, 255, 0, 0.14), transparent 58%),
    radial-gradient(860px 520px at 82% 18%, rgba(170, 255, 0, 0.10), transparent 62%),
    rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
  padding: 18px;
}
.enroll-modal-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.enroll-modal {
  width: min(720px, 96vw);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.10) 0%, rgba(10, 10, 10, 0.64) 62%, rgba(10, 10, 10, 0.82) 100%);
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.68),
    0 0 0 1px rgba(170, 255, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);
  overflow: hidden;
  transform: translateY(10px) scale(0.985);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}
.enroll-modal-backdrop.is-open .enroll-modal {
  transform: translateY(0) scale(1);
}

.enroll-modal-top {
  position: relative;
  padding: 18px 18px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.enroll-modal-top::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 240px at 12% 0%, rgba(170, 255, 0, 0.14), transparent 62%),
    radial-gradient(900px 240px at 92% 0%, rgba(170, 255, 0, 0.10), transparent 64%);
  pointer-events:none;
  opacity:0.9;
}
.enroll-modal-top > * { position: relative; z-index: 1; }
.enroll-modal-kicker {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(170, 255, 0, 0.75);
}
.enroll-modal-title {
  margin-top: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: clamp(18px, 2.5vw, 24px);
  line-height: 1.15;
}
.enroll-modal-title span {
  background: linear-gradient(90deg, rgba(255,255,255,0.92), var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.enroll-modal-sub{
  margin-top: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
  max-width: 60ch;
}
.enroll-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.enroll-modal-close:hover {
  transform: translateY(-1px);
  border-color: rgba(170, 255, 0, 0.26);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35), 0 0 22px rgba(170, 255, 0, 0.10);
}

.enroll-modal-body {
  padding: 16px 18px 18px;
}
.enroll-layout{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 14px;
  align-items: start;
}
.enroll-summary{
  border-radius: 18px;
  padding: 16px 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background:
    linear-gradient(155deg, rgba(170, 255, 0, 0.10) 0%, rgba(255, 255, 255, 0.06) 45%, rgba(0, 0, 0, 0.10) 100%);
  box-shadow: 0 18px 46px rgba(0,0,0,0.45);
}
.enroll-summary-chip{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(170, 255, 0, 0.92);
  border: 1px solid rgba(170, 255, 0, 0.22);
  background: rgba(170, 255, 0, 0.06);
}
.enroll-summary-title{
  margin-top: 12px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 16px;
  line-height: 1.2;
}
.enroll-summary-pills{
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.enroll-pill{
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  color: rgba(255,255,255,0.78);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
}
.enroll-summary-lines{
  margin-top: 14px;
  display: grid;
  gap: 10px;
}
.enroll-summary-line{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.18);
}
.enroll-summary-line .k{
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
}
.enroll-summary-line .v{
  font-size: 12px;
  font-weight: 800;
  color: rgba(255,255,255,0.88);
}
.enroll-summary-note{
  margin-top: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.64);
  line-height: 1.55;
}
.enroll-form{
  border-radius: 18px;
  padding: 14px 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
}
.enroll-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.enroll-grid .enroll-field--full {
  grid-column: 1 / -1;
}
.enroll-field label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 8px;
}
.enroll-input, .enroll-textarea, .enroll-select {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 8, 8, 0.45);
  color: var(--white);
  padding: 12px 12px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}
.enroll-textarea { min-height: 98px; resize: vertical; }
.enroll-input:focus, .enroll-textarea:focus, .enroll-select:focus {
  border-color: rgba(170, 255, 0, 0.55);
  box-shadow:
    0 0 0 4px rgba(170, 255, 0, 0.12),
    0 0 0 1px rgba(170, 255, 0, 0.16) inset;
}
.enroll-input.is-error, .enroll-textarea.is-error, .enroll-select.is-error {
  border-color: rgba(255, 80, 120, 0.65);
  box-shadow: 0 0 0 4px rgba(255, 80, 120, 0.12);
}
.enroll-helper {
  margin-top: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.5;
}
.enroll-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
}
.enroll-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  border: 2px solid transparent;
  background: var(--green);
  color: var(--black);
  font-weight: 900;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}
.enroll-cta-arrow{
  display:inline-block;
  transform: translateX(0);
  transition: transform 180ms ease;
}
.enroll-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.55), 0 0 32px rgba(170, 255, 0, 0.20);
  filter: saturate(1.02);
}
.enroll-cta:hover .enroll-cta-arrow{
  transform: translateX(3px);
}
.enroll-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
  border-radius: 14px;
  min-height: 48px;
  padding: 0 16px;
  cursor: pointer;
}
.enroll-secondary:hover {
  border-color: rgba(170, 255, 0, 0.24);
}

.course-card-cta {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(170, 255, 0, 0.22);
  background: rgba(170, 255, 0, 0.06);
  color: rgba(170, 255, 0, 0.92);
}

@media (max-width: 767px) {
  .enroll-modal-backdrop {
    /* Keep the modal reachable even with browser UI (address bar) */
    place-items: start center;
    padding: 12px;
  }

  .enroll-modal {
    width: 100%;
    max-width: 560px;
    /* Don't trap the close button off-screen */
    max-height: calc(100dvh - 24px);
    overflow: hidden;
  }

  .enroll-modal-top {
    position: sticky;
    top: 0;
    z-index: 3;
    background: rgba(10, 10, 10, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .enroll-modal-body {
    /* Allow scrolling content inside the modal */
    max-height: calc(100dvh - 24px - 92px);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  .enroll-modal-close {
    width: 44px;
    height: 44px;
    top: 10px;
    right: 10px;
  }

  .enroll-layout{ grid-template-columns: 1fr; }
  .enroll-grid { grid-template-columns: 1fr; }
  .enroll-actions { flex-direction: column; align-items: stretch; }
  .enroll-secondary { width: 100%; }
  .enroll-cta { width: 100%; }
}
