/* ============================================
   FLYTE GOLF — Premium Golf Simulator Website
   Black / White / TrackMan Orange
   ============================================ */

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

:root {
  /* Brand Colors */
  --c-bg:          #080808;
  --c-surface-1:   #0f0f0f;
  --c-surface-2:   #181818;
  --c-surface-3:   #222222;
  --c-border:      rgba(255,255,255,0.07);
  --c-border-hover:rgba(255,255,255,0.16);
  --c-white:       #FFFFFF;
  --c-text:        #FFFFFF;
  --c-text-muted:  #CCCCCC;
  --c-text-subtle: #A0A0A0;

  /* TrackMan Orange — the signature accent */
  --c-orange:      #FF6600;
  --c-orange-light:#FF8533;
  --c-orange-dim:  rgba(255,102,0,0.12);
  --c-orange-glow: rgba(255,102,0,0.25);

  /* Typography */
  --font-heading:  'Manrope', system-ui, sans-serif;
  --font-body:     'Inter', system-ui, sans-serif;
  --font-mono:     'Space Mono', monospace;

  /* Spacing */
  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  48px;
  --space-xl:  80px;
  --space-2xl: 120px;
  --space-3xl: 160px;

  /* Layout */
  --max-w:   1280px;
  --nav-h:   100px;

  /* Easing */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast:   0.2s;
  --t-med:    0.4s;
  --t-slow:   0.7s;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
}

img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* Skip-to-content link */
.skip-link {
  position: absolute; top: -100%; left: 0;
  padding: 8px 16px;
  background: var(--c-orange); color: var(--c-white);
  font-size: 0.875rem; font-weight: 600;
  z-index: 9999; border-radius: 0 0 6px 0;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor {
  width: 10px; height: 10px;
  background: var(--c-orange);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out);
  will-change: transform;
}
.cursor.hovering {
  width: 36px; height: 36px;
  background: transparent;
  border: 1.5px solid var(--c-orange);
}
@media (pointer: coarse) { .cursor { display: none; } }

/* ============================================
   LOADER
   ============================================ */
#loader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--c-bg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 20px;
}
.loader-logo {
  height: clamp(240px, 40vw, 400px);
  width: auto;
}
.loader-bar {
  width: 160px; height: 2px;
  background: var(--c-surface-2); border-radius: 2px; overflow: hidden;
}
.loader-bar-fill {
  height: 100%; width: 0%;
  background: var(--c-orange); border-radius: 2px;
}

/* ============================================
   NAVIGATION
   ============================================ */
#nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; height: var(--nav-h);
  border-bottom: 1px solid transparent;
  transition: background var(--t-med) var(--ease-out),
              border-color var(--t-med) var(--ease-out),
              backdrop-filter var(--t-med) var(--ease-out);
}
#nav.scrolled {
  background: rgba(8,8,8,0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-color: var(--c-border);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 var(--space-md); height: 100%;
  display: flex; align-items: center;
  justify-content: space-between; gap: var(--space-md);
}
.nav-logo {
  flex-shrink: 0; display: flex; align-items: center;
}
.nav-logo-img {
  height: 130px; width: auto; display: block;
}
.nav-links {
  display: flex; align-items: center; gap: 0;
}
.nav-links a {
  font-family: var(--font-heading); font-size: 0.875rem; font-weight: 500;
  color: var(--c-white); padding: 8px 14px; border-radius: 6px;
  transition: color var(--t-fast), background var(--t-fast);
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--c-white); background: rgba(255,255,255,0.05); }

/* Dropdown */
.nav-dropdown { position: relative; }
/* Invisible bridge fills the gap between button and menu so hover isn't broken */
.nav-dropdown::after {
  content: '';
  position: absolute; top: 100%; left: 0; right: 0;
  height: 16px;
}
.nav-dropdown-toggle {
  background: none; border: none; cursor: pointer;
  font-family: var(--font-heading); font-size: 0.875rem; font-weight: 500;
  color: var(--c-white); padding: 8px 14px; border-radius: 6px;
  display: flex; align-items: center; gap: 5px;
  transition: color var(--t-fast), background var(--t-fast);
  letter-spacing: 0.01em;
}
.nav-dropdown-toggle:hover { color: var(--c-white); background: rgba(255,255,255,0.05); }
.nav-dropdown-arrow { font-size: 0.55rem; transition: transform var(--t-fast); display: inline-block; }
.nav-dropdown:hover .nav-dropdown-arrow,
.nav-dropdown-toggle[aria-expanded="true"] .nav-dropdown-arrow { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(10,10,10,0.97); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--c-border); border-radius: 12px;
  padding: 6px; min-width: 200px; z-index: 200;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block; padding: 10px 14px; border-radius: 8px;
  font-family: var(--font-heading); font-size: 0.82rem; font-weight: 500;
  color: var(--c-white);
  transition: color var(--t-fast), background var(--t-fast);
}
.nav-dropdown-menu a:hover { color: var(--c-white); background: rgba(255,255,255,0.06); }

/* Orange CTA button */
.nav-cta {
  font-family: var(--font-heading); font-size: 0.875rem; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--c-white) !important;
  background: var(--c-orange);
  padding: 10px 22px; border-radius: 6px; flex-shrink: 0;
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  position: relative; overflow: hidden;
}
.nav-cta::after {
  content: '';
  position: absolute; top: -50%; left: -60%;
  width: 40%; height: 200%;
  background: rgba(255,255,255,0.25);
  transform: skewX(-20deg);
  transition: left 0.5s var(--ease-out);
}
.nav-cta:hover { background: var(--c-orange-light); box-shadow: 0 0 28px var(--c-orange-glow); }
.nav-cta:hover::after { left: 160%; }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--c-white); border-radius: 2px;
  transition: transform 0.25s var(--ease-out), opacity 0.2s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
#mobile-menu {
  position: fixed; inset: 0; z-index: 1001;
  background: var(--c-bg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: var(--space-md);
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  padding: 80px var(--space-md) var(--space-xl);
  opacity: 0; pointer-events: none;
  transition: opacity var(--t-med) var(--ease-out);
}
#mobile-menu.open { opacity: 1; pointer-events: all; }
#mobile-menu a {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 4.5vw, 1.9rem); font-weight: 700;
  color: var(--c-white); letter-spacing: -0.02em;
  transition: color var(--t-fast);
}
#mobile-menu a:hover { color: var(--c-orange); }
#mobile-menu .mobile-cta {
  margin-top: var(--space-sm); font-size: 1rem;
  color: var(--c-white); background: var(--c-orange);
  padding: 14px 36px; border-radius: 6px;
}
#mobile-menu .mobile-cta:hover { background: var(--c-orange-light); }
.mobile-section-label { display: none; }
#mobile-menu .mobile-sub-links {
  display: contents;
}
#mobile-menu .mobile-sub-links a {
  font-size: clamp(1.3rem, 4.5vw, 1.9rem);
  font-weight: 700; color: var(--c-text-muted);
}
.mobile-close {
  position: absolute; top: 20px; right: 20px;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; background: none; border: none;
  color: var(--c-white); transition: color var(--t-fast);
}
.mobile-close::before,
.mobile-close::after {
  content: '';
  position: absolute;
  width: 22px; height: 2px;
  background: currentColor; border-radius: 2px;
}
.mobile-close::before { transform: rotate(45deg); }
.mobile-close::after  { transform: rotate(-45deg); }
.mobile-close:hover { color: var(--c-orange); }
.mobile-close span { display: none; }

/* ============================================
   ENQUIRY MODAL
   ============================================ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: var(--space-md);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--c-surface-1);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 20px;
  padding: var(--space-xl);
  width: 100%; max-width: 540px;
  max-height: 90vh; overflow-y: auto;
  position: relative;
  transform: scale(0.94) translateY(16px);
  transition: transform 0.35s cubic-bezier(0.34,1.4,0.64,1);
}
.modal-overlay.open .modal-box { transform: scale(1) translateY(0); }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer;
  color: var(--c-text-muted); transition: color var(--t-fast);
}
.modal-close::before, .modal-close::after {
  content: ''; position: absolute;
  width: 18px; height: 2px;
  background: currentColor; border-radius: 2px;
}
.modal-close::before { transform: rotate(45deg); }
.modal-close::after  { transform: rotate(-45deg); }
.modal-close:hover { color: var(--c-white); }
.modal-eyebrow {
  font-family: var(--font-mono); font-size: 0.6rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--c-orange); margin-bottom: 8px;
}
.modal-title {
  font-family: var(--font-heading); font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800; letter-spacing: -0.02em; color: var(--c-white);
  margin-bottom: 6px;
}
.modal-sub { font-size: 0.85rem; color: var(--c-text-muted); margin-bottom: var(--space-lg); }
.modal-form { display: flex; flex-direction: column; gap: 10px; }
.modal-row { display: flex; gap: 10px; }
.modal-field { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.modal-input {
  width: 100%; padding: 12px 16px;
  background: var(--c-surface-2); border: 1px solid var(--c-border);
  border-radius: 8px; color: var(--c-white);
  font-family: var(--font-body); font-size: 0.9rem;
  transition: border-color var(--t-fast);
  -webkit-appearance: none; appearance: none;
}
.modal-input:focus { outline: 2px solid var(--c-orange); outline-offset: 1px; border-color: var(--c-orange); }
.modal-input::placeholder { color: var(--c-text-subtle); }
.modal-select { cursor: pointer; color: var(--c-text-subtle); }
.modal-select.has-value { color: var(--c-white); }
.modal-textarea { resize: vertical; min-height: 90px; }
.modal-input.invalid { border-color: #ef4444; }
.modal-field-error { display: none; font-size: 0.72rem; color: #ef4444; margin-top: 4px; padding-left: 2px; }
.modal-field-error.visible { display: block; }
.modal-submit {
  width: 100%; padding: 14px;
  background: var(--c-orange); color: var(--c-white);
  font-family: var(--font-heading); font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: none; border-radius: 8px; cursor: pointer; margin-top: 4px;
  transition: background var(--t-fast), transform var(--t-fast);
}
.modal-submit:hover { background: var(--c-orange-light); transform: translateY(-1px); }
.modal-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.modal-disclaimer { font-size: 0.72rem; color: var(--c-text-subtle); text-align: center; margin-top: 4px; }
.modal-success { display: none; text-align: center; padding: var(--space-xl) 0; flex-direction: column; align-items: center; gap: var(--space-sm); }
.modal-success:not([hidden]) { display: flex; }
.modal-success-icon {
  width: 56px; height: 56px;
  background: rgba(255,102,0,0.12); border: 2px solid var(--c-orange);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--c-orange);
}
.modal-success-title {
  font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800;
  color: var(--c-white);
}
.modal-success-sub { font-size: 0.88rem; color: var(--c-text-muted); max-width: 320px; }

@media (max-width: 640px) {
  .modal-overlay { align-items: flex-end; padding: 0; }
  .modal-box {
    border-radius: 20px 20px 0 0; max-height: 92vh;
    padding: var(--space-lg) var(--space-md) var(--space-xl);
    transform: translateY(40px);
  }
  .modal-overlay.open .modal-box { transform: translateY(0); }
  .modal-row { flex-direction: column; }
}

/* ============================================
   SHARED UTILITIES
   ============================================ */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--space-md); }
.section { padding: var(--space-2xl) 0; }

.section-label {
  font-family: var(--font-mono); font-size: 0.68rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--c-orange); margin-bottom: var(--space-sm);
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.08; color: var(--c-white);
}
.section-title em { font-style: normal; color: var(--c-orange); }
.section-body {
  font-size: 1.1rem; color: var(--c-text-muted);
  line-height: 1.8; max-width: 540px;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-heading); font-size: 0.875rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 14px 28px; border-radius: 6px; cursor: pointer;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  position: relative; overflow: hidden; border: none;
}
.btn::after {
  content: '';
  position: absolute; top: -50%; left: -60%;
  width: 40%; height: 200%;
  background: rgba(255,255,255,0.22);
  transform: skewX(-20deg);
  transition: left 0.5s var(--ease-out);
}
.btn:hover { transform: translateY(-2px); }
.btn:hover::after { left: 160%; }
.btn-orange { background: var(--c-orange); color: var(--c-white); }
.btn-orange:hover { background: var(--c-orange-light); box-shadow: 0 8px 32px var(--c-orange-glow); }
.btn-outline {
  background: transparent; color: var(--c-white);
  border: 1px solid var(--c-border);
}
.btn-outline:hover { border-color: var(--c-border-hover); background: rgba(255,255,255,0.04); }
.btn-arrow .arrow { transition: transform var(--t-fast); }
.btn-arrow:hover .arrow { transform: translateX(4px); }
.btn-arrow::after { display: none; }

/* Reveal classes for GSAP */
.reveal       { opacity: 0; transform: translateY(50px); }
.reveal-left  { opacity: 0; transform: translateX(-50px); }
.reveal-right { opacity: 0; transform: translateX(50px); }
.reveal-scale { opacity: 0; transform: scale(0.92); }

/* ============================================
   HERO
   ============================================ */
#hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute; inset: 0;
  background: var(--c-bg);
  z-index: 0;
}

/* Orange radial glow — the signature effect */
.hero-glow {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(ellipse 70% 55% at 50% 55%,
    rgba(255,102,0,0.14) 0%,
    rgba(255,102,0,0.05) 40%,
    transparent 70%
  );
}

/* NANO BANANA ASSET HERE
   Dimensions: 1920 × 1080px | Format: WebM (alpha) or MP4
   Replace .hero-asset-wrap content with <video> tag
   Z-index: 2 (above glow, below overlay)
*/
.hero-asset-wrap {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-asset-img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.35;
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 3;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0.45) 0%,
    rgba(8,8,8,0.05) 35%,
    rgba(8,8,8,0.45) 75%,
    rgba(8,8,8,1) 100%
  );
}
.hero-content {
  position: relative; z-index: 4;
  max-width: 880px; padding: 0 var(--space-md);
}
.hero-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-orange);
  background: var(--c-orange-dim);
  border: 1px solid rgba(255,102,0,0.25);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: var(--space-lg);
}
.hero-h1 {
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 7vw, 5rem); font-weight: 800;
  letter-spacing: -0.035em; line-height: 1.12;
  color: var(--c-white); margin-bottom: var(--space-lg);
}
.hero-h1 em { font-style: normal; color: var(--c-orange); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--c-text-muted); line-height: 1.7;
  margin-bottom: var(--space-lg);
  max-width: 580px; margin-left: auto; margin-right: auto;
}
.hero-actions {
  display: flex; align-items: center;
  justify-content: center; gap: var(--space-sm); flex-wrap: wrap;
}
.hero-actions .btn {
  font-size: 1rem; padding: 18px 36px; border-radius: 8px;
}

/* Waitlist counter bar */
.hero-waitlist {
  margin-top: var(--space-lg);
  display: inline-flex; flex-direction: column;
  align-items: center; gap: 10px;
}
.waitlist-label {
  font-family: var(--font-mono); font-size: 0.62rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--c-text-muted);
}
.waitlist-bar {
  width: min(280px, calc(100% - 32px)); height: 3px;
  background: var(--c-surface-2); border-radius: 3px; overflow: hidden;
}
.waitlist-fill {
  height: 100%; width: 68%; /* 68/100 founding spots */
  background: var(--c-orange); border-radius: 3px;
}
.waitlist-count {
  font-family: var(--font-head); font-size: 0.78rem;
  color: var(--c-white);
}
.waitlist-count span { color: var(--c-orange); font-weight: 700; }

.hero-scroll {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%); z-index: 4;
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  color: var(--c-text-subtle);
  font-family: var(--font-mono); font-size: 0.62rem;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--c-orange), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.3; }
  50%     { opacity: 1; }
}

/* ============================================
   TRUST BAR
   ============================================ */
#trust-bar {
  padding: var(--space-lg) 0;
  background: var(--c-surface-1);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.trust-bar-inner {
  display: flex; align-items: center;
  justify-content: center; flex-wrap: wrap;
}
.trust-item {
  display: flex; flex-direction: column;
  align-items: center; gap: 5px;
  padding: var(--space-sm) var(--space-lg);
  border-right: 1px solid var(--c-border);
}
.trust-item:last-child { border-right: none; }
.trust-number {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800;
  letter-spacing: -0.04em; color: var(--c-white); line-height: 1;
}
.trust-number .o { color: var(--c-orange); }
.trust-label {
  font-family: var(--font-mono); font-size: 0.62rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--c-text-muted); text-align: center;
}
.trust-trackman {
  padding: var(--space-sm) var(--space-lg);
  display: flex; align-items: center; gap: 10px;
}
.trust-tm-badge {
  font-family: var(--font-mono); font-size: 0.58rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--c-orange);
  background: var(--c-orange-dim);
  border: 1px solid rgba(255,102,0,0.22);
  padding: 4px 10px; border-radius: 4px;
}
.trust-tm-text {
  font-family: var(--font-heading); font-size: 0.78rem; font-weight: 600;
  color: var(--c-text-muted);
}

/* ============================================
   INTRO / ABOUT
   ============================================ */
#intro { padding: var(--space-3xl) 0; overflow: hidden; }
.intro-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-xl); align-items: center;
}
.intro-copy .section-title { margin-bottom: var(--space-md); }
.intro-copy .section-body  { margin-bottom: var(--space-lg); }
.intro-visual {
  position: relative; border-radius: 14px;
  overflow: hidden; aspect-ratio: 4/3;
  background: var(--c-surface-2);
}
.intro-visual img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.intro-visual:hover img { transform: scale(1.04); }
.intro-visual-frame {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(135deg, rgba(255,102,0,0.1) 0%, transparent 55%);
}
.intro-pillars {
  margin-top: var(--space-xl);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.pillar-card {
  background: var(--c-surface-1); border: 1px solid var(--c-border);
  border-radius: 10px; padding: var(--space-md);
  transition: border-color var(--t-med), background var(--t-med);
}
.pillar-card:hover { border-color: rgba(255,102,0,0.3); background: var(--c-surface-2); }
.pillar-icon {
  width: 38px; height: 38px;
  background: var(--c-orange-dim); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px; font-size: 1.1rem;
}
.pillar-title {
  font-family: var(--font-heading); font-size: 0.88rem; font-weight: 700;
  color: var(--c-white); margin-bottom: 6px;
}
.pillar-body { font-size: 0.875rem; color: var(--c-text-muted); line-height: 1.6; }

/* ============================================
   TRACKMAN TECHNOLOGY
   ============================================ */
#trackman {
  padding: var(--space-3xl) 0;
  background: var(--c-surface-1); position: relative; overflow: hidden;
}
#trackman::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,102,0,0.4), transparent);
}
.trackman-header { text-align: center; margin-bottom: var(--space-xl); }
.trackman-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.tm-card {
  background: var(--c-surface-2); border: 1px solid var(--c-border);
  border-radius: 12px; padding: var(--space-lg); position: relative;
  overflow: hidden;
  transition: border-color var(--t-med), transform var(--t-med);
}
.tm-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, transparent, var(--c-orange), transparent);
  opacity: 0; transition: opacity var(--t-med);
}
.tm-card:hover { border-color: rgba(255,102,0,0.25); transform: translateY(-4px); }
.tm-card:hover::before { opacity: 1; }
.tm-num {
  font-family: var(--font-mono); font-size: 0.62rem;
  letter-spacing: 0.12em; color: var(--c-orange); margin-bottom: 12px;
}
.tm-img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  border-radius: 8px; margin-bottom: var(--space-md);
  background: var(--c-surface-3);
}
.tm-title {
  font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700;
  color: var(--c-white); margin-bottom: 8px;
}
.tm-body { font-size: 0.9rem; color: var(--c-text-muted); line-height: 1.7; }

.tm-data-strip {
  margin-top: var(--space-xl);
  background: var(--c-orange-dim);
  border: 1px solid rgba(255,102,0,0.18);
  border-radius: 10px; padding: var(--space-lg);
  display: flex; align-items: center;
  justify-content: space-between; gap: var(--space-md); flex-wrap: wrap;
}
.tm-data-item { text-align: center; }
.tm-data-val {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800;
  letter-spacing: -0.03em; color: var(--c-orange);
}
.tm-data-label {
  font-family: var(--font-mono); font-size: 0.58rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--c-text-muted); margin-top: 4px;
}

/* ============================================
   BAYS SECTION
   ============================================ */
#bays {
  padding: var(--space-3xl) 0; overflow: hidden;
}
.bays-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-xl); align-items: center;
}
.bays-visual {
  border-radius: 14px; overflow: hidden;
  aspect-ratio: 3/4; background: var(--c-surface-2);
  position: relative;
}
.bays-visual img { width: 100%; height: 100%; object-fit: cover; }
.bays-visual-tag {
  position: absolute; bottom: 20px; left: 20px;
  font-family: var(--font-mono); font-size: 0.62rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--c-orange); color: var(--c-white);
  padding: 6px 12px; border-radius: 5px;
}
.bays-copy .section-title { margin-bottom: var(--space-md); }
.bays-copy .section-body  { margin-bottom: var(--space-lg); }
.bays-features {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: var(--space-lg);
}
.bay-feature {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  background: var(--c-surface-1); border: 1px solid var(--c-border);
  border-radius: 8px; font-size: 0.85rem; color: var(--c-text-muted);
  transition: border-color var(--t-fast), color var(--t-fast);
}
.bay-feature:hover { border-color: rgba(255,102,0,0.3); color: var(--c-white); }
.bay-feature .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--c-orange); flex-shrink: 0;
}

/* ============================================
   PRICING
   ============================================ */
#pricing { padding: var(--space-3xl) 0; overflow: hidden; }
.pricing-header { text-align: center; margin-bottom: var(--space-xl); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px;
}
.pricing-card {
  background: var(--c-surface-1); border: 1px solid var(--c-border);
  border-radius: 12px; padding: var(--space-lg);
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color var(--t-med), transform var(--t-med);
  position: relative; overflow: hidden;
}
.pricing-card:hover { border-color: rgba(255,102,0,0.28); transform: translateY(-4px); }
.pricing-card.featured {
  border-color: var(--c-orange);
  background: linear-gradient(135deg, rgba(255,102,0,0.08) 0%, var(--c-surface-1) 100%);
}
.pricing-card.featured::after {
  content: 'POPULAR';
  position: absolute; top: 14px; right: 14px;
  font-family: var(--font-mono); font-size: 0.52rem; letter-spacing: 0.14em;
  color: var(--c-white); background: var(--c-orange);
  padding: 3px 8px; border-radius: 4px;
}
.p-tier {
  font-family: var(--font-mono); font-size: 0.62rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-text-muted);
}
.p-price {
  display: flex; align-items: baseline; gap: 3px;
}
.p-currency {
  font-family: var(--font-heading); font-size: 1.2rem;
  font-weight: 700; color: var(--c-text-muted);
}
.p-amount {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 800;
  letter-spacing: -0.04em; color: var(--c-white);
}
.p-period { font-size: 0.875rem; color: var(--c-text-muted); margin-left: 2px; }
.p-name {
  font-family: var(--font-heading); font-size: 0.95rem;
  font-weight: 700; color: var(--c-white);
}
.p-desc { font-size: 0.875rem; color: var(--c-text-muted); line-height: 1.6; }
.p-features { display: flex; flex-direction: column; gap: 8px; flex-grow: 1; }
.p-feature {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.875rem; color: var(--c-text-muted);
}
.p-feature::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--c-orange); flex-shrink: 0;
}
.p-cta {
  display: block; text-align: center;
  font-family: var(--font-heading); font-size: 0.875rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 12px; border-radius: 6px;
  border: 1px solid var(--c-border); color: var(--c-white);
  transition: all var(--t-fast); margin-top: 4px;
}
.p-cta:hover { border-color: var(--c-border-hover); color: var(--c-white); }
.pricing-card.featured .p-cta {
  background: var(--c-orange); border-color: var(--c-orange); color: var(--c-white);
}
.pricing-card.featured .p-cta:hover {
  background: var(--c-orange-light); border-color: var(--c-orange-light);
  box-shadow: 0 8px 28px var(--c-orange-glow);
}

/* Membership strip inside pricing */
.pricing-mem-strip {
  margin-top: var(--space-xl);
  background: var(--c-orange-dim);
  border: 1px solid rgba(255,102,0,0.22);
  border-radius: 16px; padding: var(--space-xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl); align-items: center;
}
.pricing-mem-eyebrow {
  font-family: var(--font-mono); font-size: 0.62rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--c-orange); margin-bottom: 10px;
}
.pricing-mem-title {
  font-family: var(--font-heading); font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800; letter-spacing: -0.03em; color: var(--c-white);
  margin-bottom: 10px;
}
.pricing-mem-sub { font-size: 0.88rem; color: var(--c-text-muted); line-height: 1.6; }
.pricing-mem-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.pricing-mem-card {
  background: var(--c-surface-2); border: 1px solid var(--c-border);
  border-radius: 12px; padding: var(--space-md);
  display: flex; flex-direction: column; gap: 8px;
  position: relative;
}
.pricing-mem-card.featured {
  border-color: var(--c-orange);
  background: linear-gradient(135deg, rgba(255,102,0,0.1) 0%, var(--c-surface-2) 100%);
}
.pricing-mem-badge {
  position: absolute; top: 12px; right: 12px;
  font-family: var(--font-mono); font-size: 0.5rem; letter-spacing: 0.12em;
  text-transform: uppercase; background: var(--c-orange); color: var(--c-white);
  padding: 3px 7px; border-radius: 4px;
}
.pricing-mem-name {
  font-family: var(--font-mono); font-size: 0.62rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-text-muted);
}
.pricing-mem-price {
  font-family: var(--font-heading); font-size: 1.6rem; font-weight: 800;
  letter-spacing: -0.03em; color: var(--c-white);
}
.pricing-mem-price span { font-size: 0.75rem; font-weight: 400; color: var(--c-text-muted); }
.pricing-mem-desc { font-size: 0.75rem; color: var(--c-text-muted); line-height: 1.5; flex-grow: 1; }

/* ============================================
   EVENTS
   ============================================ */
#events { padding: var(--space-3xl) 0; background: var(--c-surface-1); }
.events-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-xl); align-items: center;
}
.events-copy .section-title { margin-bottom: var(--space-md); }
.events-copy .section-body  { margin-bottom: var(--space-lg); }
.events-list { display: flex; flex-direction: column; gap: 10px; margin: var(--space-md) 0; }
.events-item {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 16px;
  background: var(--c-surface-2); border: 1px solid var(--c-border);
  border-radius: 8px; font-size: 0.85rem; color: var(--c-text-muted);
  transition: border-color var(--t-fast), color var(--t-fast);
}
.events-item:hover { border-color: rgba(255,102,0,0.3); color: var(--c-white); }
.events-item .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--c-orange); flex-shrink: 0; }
.events-visual {
  border-radius: 14px; overflow: hidden;
  aspect-ratio: 3/4; background: var(--c-surface-2); position: relative;
}
.events-visual img { width: 100%; height: 100%; object-fit: cover; }
.events-visual-footer {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: var(--space-lg);
  background: linear-gradient(to top, rgba(8,8,8,0.95), transparent);
}
.events-enquire-box {
  background: var(--c-surface-2); border: 1px solid var(--c-border);
  border-radius: 10px; padding: var(--space-md);
}
.events-enquire-title {
  font-family: var(--font-heading); font-size: 1rem; font-weight: 700;
  color: var(--c-white); margin-bottom: 4px;
}
.events-enquire-sub { font-size: 0.78rem; color: var(--c-text-muted); margin-bottom: 12px; }

/* ============================================
   TESTIMONIALS
   ============================================ */
#testimonials { padding: var(--space-3xl) 0; overflow: hidden; }
.testimonials-header { text-align: center; margin-bottom: var(--space-xl); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.t-card {
  background: var(--c-surface-1); border: 1px solid var(--c-border);
  border-radius: 12px; padding: var(--space-lg);
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color var(--t-med), transform var(--t-med);
}
.t-card:hover { border-color: rgba(255,102,0,0.2); transform: translateY(-2px); }
.t-stars { display: flex; gap: 2px; }
.t-stars span { color: var(--c-orange); font-size: 0.88rem; }
.t-text {
  font-size: 0.88rem; color: var(--c-text-muted); line-height: 1.75;
  font-style: italic; flex-grow: 1;
}
.t-text::before { content: '"'; color: var(--c-orange); font-size: 1.1rem; }
.t-author {
  display: flex; align-items: center; gap: 10px;
  padding-top: 12px; border-top: 1px solid var(--c-border);
}
.t-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--c-surface-3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 0.7rem; font-weight: 700;
  color: var(--c-orange); flex-shrink: 0;
}
.t-name { font-family: var(--font-heading); font-size: 0.78rem; font-weight: 700; color: var(--c-white); }
.t-context { font-size: 0.68rem; color: var(--c-text-muted); }

/* ============================================
   MEMBERSHIP HIGHLIGHT
   ============================================ */
#membership-cta { padding: var(--space-3xl) 0; overflow: hidden; }
.mem-inner {
  background: linear-gradient(135deg, rgba(255,102,0,0.09) 0%, rgba(255,102,0,0.02) 100%);
  border: 1px solid rgba(255,102,0,0.22);
  border-radius: 20px; padding: var(--space-xl);
  display: grid; grid-template-columns: 1fr auto;
  gap: var(--space-xl); align-items: center;
}
.mem-copy .section-title { margin-bottom: var(--space-sm); }
.mem-price-block { text-align: center; flex-shrink: 0; }
.mem-was {
  font-family: var(--font-mono); font-size: 0.68rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--c-text-muted); text-decoration: line-through; margin-bottom: 4px;
}
.mem-price {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 5rem); font-weight: 800;
  letter-spacing: -0.05em; color: var(--c-orange); line-height: 1;
}
.mem-price-sub { font-size: 0.78rem; color: var(--c-text-muted); margin-top: 4px; margin-bottom: 14px; }
.mem-features { display: flex; flex-direction: column; gap: 8px; text-align: left; margin-bottom: 18px; }
.mem-feature {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; color: var(--c-text-muted);
}
.mem-feature::before { content: '✓'; color: var(--c-orange); font-weight: 700; font-size: 0.72rem; }

/* ============================================
   LOCATION
   ============================================ */
#location { padding: var(--space-3xl) 0; background: var(--c-surface-1); }
.location-header { text-align: center; margin-bottom: var(--space-xl); }
.location-card {
  background: var(--c-surface-2); border: 1px solid var(--c-border);
  border-radius: 16px; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr;
  max-width: 900px; margin: 0 auto;
}
.location-map {
  aspect-ratio: 1; background: var(--c-surface-3);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.location-map-placeholder {
  font-family: var(--font-mono); font-size: 0.62rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--c-text-subtle); text-align: center;
}
.location-map-pin {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--c-orange-dim); border: 2px solid var(--c-orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 8px;
}
.location-details { padding: var(--space-lg); }
.location-city {
  font-family: var(--font-heading); font-size: 1.8rem; font-weight: 800;
  letter-spacing: -0.03em; color: var(--c-white); margin-bottom: 6px;
}
.location-address { font-size: 0.85rem; color: var(--c-text-muted); line-height: 1.7; margin-bottom: var(--space-md); }
.location-open {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 0.62rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--c-orange);
  background: var(--c-orange-dim); border: 1px solid rgba(255,102,0,0.22);
  padding: 5px 12px; border-radius: 4px; margin-bottom: var(--space-sm);
}
.location-open-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--c-orange); animation: pulse 2s ease-in-out infinite;
}
.location-detail-list { display: flex; flex-direction: column; gap: 8px; margin-top: var(--space-sm); }
.location-detail-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: var(--c-text-muted);
}
.location-detail-item .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--c-orange); flex-shrink: 0; }

/* ============================================
   WAITLIST / FOUNDING MEMBERS
   ============================================ */
#waitlist { padding: var(--space-3xl) 0; overflow: hidden; }
.waitlist-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-xl); align-items: center;
}
.wl-copy .section-title { margin-bottom: var(--space-md); }
.wl-copy .section-body  { margin-bottom: var(--space-lg); }
.wl-perks { display: flex; flex-direction: column; gap: 10px; margin-bottom: var(--space-lg); }
.wl-perk {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px;
  background: var(--c-surface-1); border: 1px solid var(--c-border);
  border-radius: 8px; transition: border-color var(--t-fast);
}
.wl-perk:hover { border-color: rgba(255,102,0,0.3); }
.wl-perk-icon {
  width: 32px; height: 32px; border-radius: 7px;
  background: var(--c-orange-dim); color: var(--c-orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; flex-shrink: 0;
}
.wl-perk-title {
  font-family: var(--font-heading); font-size: 0.85rem; font-weight: 700;
  color: var(--c-white); margin-bottom: 2px;
}
.wl-perk-desc { font-size: 0.875rem; color: var(--c-text-muted); line-height: 1.5; }

/* Waitlist form card */
.wl-form-card {
  background: var(--c-surface-1); border: 1px solid var(--c-border);
  border-radius: 14px; padding: var(--space-lg);
}
.wl-form-title {
  font-family: var(--font-heading); font-size: 1.3rem; font-weight: 800;
  letter-spacing: -0.02em; color: var(--c-white); margin-bottom: 6px;
}
.wl-form-sub { font-size: 0.82rem; color: var(--c-text-muted); margin-bottom: var(--space-md); }
.wl-progress { margin-bottom: var(--space-md); }
.wl-progress-bar-wrap {
  width: 100%; height: 6px;
  background: var(--c-surface-2); border-radius: 3px; overflow: hidden; margin-bottom: 6px;
}
.wl-progress-fill {
  height: 100%; width: 68%;
  background: var(--c-orange); border-radius: 3px;
}
.wl-progress-label {
  font-family: var(--font-mono); font-size: 0.6rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-text-muted);
}
.wl-progress-label strong { color: var(--c-orange); }
.wl-form { display: flex; flex-direction: column; gap: 10px; }
.wl-input {
  width: 100%; padding: 12px 16px;
  background: var(--c-surface-2); border: 1px solid var(--c-border);
  border-radius: 7px; color: var(--c-white);
  font-family: var(--font-body); font-size: 0.88rem;
  transition: border-color var(--t-fast);
  box-sizing: border-box;
  -webkit-appearance: none; appearance: none;
}
input[type="date"].wl-input { min-height: 46px; }
.wl-input::placeholder { color: var(--c-text-subtle); }
.wl-input:focus { outline: 2px solid var(--c-orange); outline-offset: 1px; border-color: var(--c-orange); }
.wl-input.invalid { border-color: #ef4444; }
.wl-field-error { display: none; font-size: 0.72rem; color: #ef4444; margin-top: -4px; margin-bottom: 2px; padding-left: 2px; }
.wl-field-error.visible { display: block; }
.wl-submit {
  width: 100%; padding: 13px;
  background: var(--c-orange); color: var(--c-white);
  border: none; border-radius: 7px;
  font-family: var(--font-heading); font-size: 0.88rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  cursor: pointer; transition: background var(--t-fast), box-shadow var(--t-fast);
  position: relative; overflow: hidden;
}
.wl-submit:hover { background: var(--c-orange-light); box-shadow: 0 6px 24px var(--c-orange-glow); }
.wl-submit:disabled { opacity: 0.6; cursor: not-allowed; box-shadow: none; }
.wl-label {
  display: block; font-size: 0.78rem; font-weight: 600;
  color: var(--c-text-muted); margin-bottom: 4px; letter-spacing: 0.04em;
}
.wl-disclaimer { font-size: 0.7rem; color: var(--c-text-subtle); text-align: center; }

/* ============================================
   FINAL CTA
   ============================================ */
#final-cta {
  padding: var(--space-3xl) 0; text-align: center; position: relative; overflow: hidden;
}
#final-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(255,102,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.final-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 7vw, 5rem); font-weight: 800;
  letter-spacing: -0.04em; color: var(--c-white);
  line-height: 1.05; margin-bottom: var(--space-md);
  position: relative;
}
.final-title em { font-style: normal; color: var(--c-orange); }
.final-sub { font-size: 1rem; color: var(--c-text-muted); margin-bottom: var(--space-lg); position: relative; }
.final-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; position: relative; }

/* ============================================
   FOOTER
   ============================================ */
#footer {
  background: var(--c-surface-1);
  border-top: 1px solid var(--c-border);
  padding: var(--space-xl) 0 var(--space-lg);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl); margin-bottom: var(--space-xl);
}
.footer-wordmark {
  font-family: var(--font-heading); font-size: 1.3rem; font-weight: 800;
  letter-spacing: -0.03em; color: var(--c-white); margin-bottom: 12px;
}
.footer-wordmark span { color: var(--c-orange); }
.footer-logo-img {
  height: 130px; width: auto; display: block; margin-bottom: 16px;
}
.footer-desc { font-size: 0.82rem; color: var(--c-text-muted); line-height: 1.7; margin-bottom: var(--space-md); max-width: 280px; }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid var(--c-border); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-text-muted);
  transition: border-color var(--t-fast), color var(--t-fast), background var(--t-fast);
}
.footer-social a:hover { border-color: var(--c-orange); color: var(--c-orange); background: var(--c-orange-dim); }
.footer-social svg { width: 17px; height: 17px; fill: currentColor; display: block; }
.footer-col-title {
  font-family: var(--font-heading); font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--c-white); margin-bottom: 14px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.82rem; color: var(--c-text-muted); transition: color var(--t-fast); }
.footer-links a:hover { color: var(--c-white); }
.footer-bottom {
  padding-top: var(--space-md); border-top: 1px solid var(--c-border);
  display: flex; align-items: center;
  justify-content: space-between; gap: var(--space-md); flex-wrap: wrap;
}
.footer-copy { font-size: 0.72rem; color: var(--c-text-subtle); }
.footer-legal { display: flex; gap: var(--space-md); }
.footer-legal a { font-size: 0.72rem; color: var(--c-text-subtle); transition: color var(--t-fast); }
.footer-legal a:hover { color: var(--c-text-muted); }

/* ============================================
   RESPONSIVE
   ============================================ */

/* ── 1024px — tablets landscape ── */
@media (max-width: 1024px) {
  .intro-pillars        { grid-template-columns: 1fr 1fr; }
  .trackman-grid        { grid-template-columns: 1fr 1fr; }
  .footer-grid          { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
}

/* ── 768px — tablets portrait / large phones ── */
@media (max-width: 768px) {
  :root {
    --nav-h:      72px;
    --space-2xl:  64px;
    --space-3xl:  80px;
  }

  /* Nav */
  .nav-links, .nav-cta  { display: none; }
  .nav-hamburger        { display: flex; }
  .nav-logo-img         { height: 124px; }

  /* Hero — remove full-viewport height on mobile, size to content */
  #hero {
    min-height: unset;
    padding-top: calc(var(--nav-h) + 48px);
    padding-bottom: 64px;
    justify-content: flex-start;
  }

  /* Hero label — smaller on mobile, wraps gracefully if needed */
  .hero-label {
    font-size: 0.55rem;
    letter-spacing: 0.08em;
    padding: 5px 12px;
    margin-bottom: var(--space-md);
  }

  /* Hero H1 — consistent across all pages on mobile */
  .hero-h1 {
    font-size: clamp(1.5rem, 7vw, 2.4rem);
    line-height: 1.15;
    margin-bottom: var(--space-md);
  }

  /* Hero sub — tighten gap below */
  .hero-sub { margin-bottom: var(--space-md); }

  /* Layout grids → single column */
  .intro-grid,
  .bays-inner,
  .events-inner,
  .mem-inner,
  .waitlist-inner       { grid-template-columns: 1fr; }

  /* Pillars → 2 cols on tablet */
  .intro-pillars        { grid-template-columns: 1fr 1fr; }

  /* TrackMan / Testimonials / Location */
  .trackman-grid        { grid-template-columns: 1fr; }
  .testimonials-grid    { grid-template-columns: 1fr 1fr; gap: var(--space-md); }
  .location-card        { grid-template-columns: 1fr; }
  .location-map         { aspect-ratio: 16/9; }

  /* Pricing */
  .pricing-grid         { grid-template-columns: 1fr 1fr; }
  .pricing-mem-strip    { grid-template-columns: 1fr; gap: var(--space-lg); }
  .pricing-mem-cards    { grid-template-columns: 1fr 1fr; }

  /* Trust strip — 4 stats in a single row */
  .trust-bar-inner      { flex-wrap: wrap; }
  .trust-item           { width: 25%; border-right: 1px solid var(--c-border); border-bottom: none;
                          padding: 14px 4px; justify-content: center; }
  .trust-item:last-of-type { border-right: none; }
  .trust-item:nth-child(odd) { border-right: 1px solid var(--c-border); }
  .trust-number         { font-size: clamp(1.5rem, 4.5vw, 2rem); }
  .trust-label          { font-size: 0.5rem; letter-spacing: 0.06em; white-space: nowrap; }
  .trust-trackman       { width: 100%; justify-content: center; gap: 8px;
                          padding: 9px 0; border-top: 1px solid var(--c-border); }
  .trust-tm-badge       { font-size: 0.5rem; letter-spacing: 0.08em; padding: 3px 8px; }
  .trust-tm-text        { font-size: 0.68rem; letter-spacing: 0.02em; }
  .tm-data-strip        { justify-content: center; }

  /* Footer */
  .footer-grid          { grid-template-columns: 1fr; gap: var(--space-lg); }
  .footer-bottom        { flex-direction: column; text-align: center; }
  .footer-legal         { justify-content: center; }

  /* Location detail */
  .location-city        { font-size: clamp(1.3rem, 4vw, 1.8rem); }
}

/* ── 480px — phones ── */
@media (max-width: 480px) {
  :root {
    --nav-h:      64px;
    --space-xl:   40px;
    --space-2xl:  48px;
    --space-3xl:  64px;
  }

  /* Nav */
  .nav-logo-img         { height: 108px; }

  /* Hero */
  .hero-actions,
  .final-actions        { flex-direction: column; align-items: stretch; }
  .hero-actions .btn,
  .final-actions .btn   { text-align: center; justify-content: center; }

  /* Pricing → single column */
  .pricing-grid         { grid-template-columns: 1fr; }
  .pricing-mem-cards    { grid-template-columns: 1fr; }

  /* Pillars / Testimonials → single column */
  .intro-pillars        { grid-template-columns: 1fr; }
  .testimonials-grid    { grid-template-columns: 1fr; }

  /* Trust strip — tighten further at 480px */
  .trust-item           { padding: 12px 3px; }
  .trust-number         { font-size: clamp(1.25rem, 5.5vw, 1.6rem); }
  .trust-label          { font-size: 0.46rem; letter-spacing: 0.04em; }
  .trust-tm-badge       { font-size: 0.46rem; }
  .trust-tm-text        { font-size: 0.62rem; }

  /* TrackMan data */
  .tm-data-strip        { gap: var(--space-sm); }

  /* Section body text */
  .section-body         { font-size: 0.95rem; }

  /* Membership strip */
  .pricing-mem-intro    { text-align: center; }
  .pricing-mem-strip    { padding: var(--space-lg); }

  /* Contact perks */
  .wl-perks             { grid-template-columns: 1fr; }

  /* Buttons full-width on small phones */
  .btn                  { width: 100%; justify-content: center; }
  .nav-cta              { width: auto; }
  .p-cta                { width: 100%; box-sizing: border-box; }

  /* Footer logo */
  .footer-logo-img      { height: 44px; }

  /* Location */
  .location-map         { aspect-ratio: 4/3; }
  .location-address     { font-size: 0.9rem; }
}

/* ── Visually hidden (screen-reader only) ── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── 360px — smallest phones ── */
@media (max-width: 360px) {
  :root {
    --nav-h: 56px;
  }
  .nav-logo-img         { height: 96px; }
  .section-title        { font-size: clamp(1.6rem, 8vw, 2.5rem); }
  .pricing-mem-title    { font-size: 1.4rem; }
}

/* ==========================================================================
   PAGE-SPECIFIC STYLES
   ========================================================================== */

/* ── About page ── */
.about-hero {
  min-height: 55vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: calc(var(--nav-h) + var(--space-xl)) var(--space-md) var(--space-xl);
  position: relative; overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 65% at 50% 45%,
    rgba(255,102,0,0.11) 0%, transparent 70%);
}
.about-hero > * { position: relative; z-index: 1; }
.about-pull {
  border-left: 3px solid var(--c-orange);
  padding: var(--space-md) var(--space-lg);
  margin: var(--space-xl) 0;
  background: var(--c-orange-dim);
  border-radius: 0 10px 10px 0;
}
.about-pull-text {
  font-family: var(--font-heading); font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-weight: 700; color: var(--c-white); line-height: 1.5;
  letter-spacing: -0.02em;
}
.about-pull-attr {
  margin-top: 10px;
  font-family: var(--font-mono); font-size: 0.62rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-orange);
}
.about-story-block {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl); align-items: center;
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid var(--c-border);
}
.about-story-block:last-child { border-bottom: none; }
.about-story-block.reverse { direction: rtl; }
.about-story-block.reverse > * { direction: ltr; }
.about-story-num {
  font-family: var(--font-mono); font-size: 0.6rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--c-orange);
  margin-bottom: 16px; display: block;
}
.about-story-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 800; letter-spacing: -0.03em;
  color: var(--c-white); line-height: 1.1; margin-bottom: var(--space-md);
}
.about-story-title em { font-style: normal; color: var(--c-orange); }
.about-story-body {
  font-size: 0.95rem; color: var(--c-text-muted); line-height: 1.85;
}
.about-story-body p + p { margin-top: 1rem; }
.about-visual {
  position: relative; border-radius: 16px; overflow: hidden;
  aspect-ratio: 4/3; background: var(--c-surface-2);
}
.about-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-visual-tag {
  position: absolute; bottom: 16px; left: 16px;
  font-family: var(--font-mono); font-size: 0.6rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  background: rgba(8,8,8,0.82); backdrop-filter: blur(10px);
  border: 1px solid var(--c-border); border-radius: 6px;
  color: var(--c-white); padding: 6px 12px;
}
.about-values {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.about-val-card {
  background: var(--c-surface-1); border: 1px solid var(--c-border);
  border-radius: 14px; padding: var(--space-lg);
  position: relative; overflow: hidden;
  transition: border-color var(--t-med), transform var(--t-med);
}
.about-val-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, transparent, var(--c-orange), transparent);
  opacity: 0; transition: opacity var(--t-med);
}
.about-val-card:hover { border-color: rgba(255,102,0,0.3); transform: translateY(-4px); }
.about-val-card:hover::after { opacity: 1; }
.about-val-icon { font-size: 2rem; margin-bottom: 14px; display: block; }
.about-val-title {
  font-family: var(--font-heading); font-size: 1.1rem; font-weight: 800;
  color: var(--c-white); letter-spacing: -0.02em; margin-bottom: 8px;
}
.about-val-body { font-size: 0.82rem; color: var(--c-text-muted); line-height: 1.7; }
.about-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; border: 1px solid var(--c-border); border-radius: 14px; overflow: hidden;
  margin-top: var(--space-xl);
}
.about-stat {
  padding: var(--space-lg); text-align: center;
  border-right: 1px solid var(--c-border);
}
.about-stat:last-child { border-right: none; }
.about-stat-num {
  font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; letter-spacing: -0.04em; color: var(--c-orange);
  margin-bottom: 6px;
}
.about-stat-label {
  font-family: var(--font-mono); font-size: 0.6rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-text-muted);
}
.about-trackman-strip {
  display: flex; align-items: center; gap: var(--space-xl);
  background: var(--c-surface-1); border: 1px solid var(--c-border);
  border-radius: 16px; padding: var(--space-xl);
  margin-top: var(--space-xl);
}
.about-tm-badge-block { flex-shrink: 0; text-align: center; }
.about-tm-badge {
  font-family: var(--font-mono); font-size: 0.58rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--c-white); background: var(--c-orange);
  padding: 5px 12px; border-radius: 6px; display: inline-block; margin-bottom: 6px;
}
.about-tm-name {
  font-family: var(--font-heading); font-size: 1rem; font-weight: 800;
  color: var(--c-white); letter-spacing: -0.02em;
}
.about-tm-body { font-size: 0.88rem; color: var(--c-text-muted); line-height: 1.75; }
.about-cta-banner {
  background: var(--c-orange-dim); border: 1px solid rgba(255,102,0,0.25);
  border-radius: 16px; padding: var(--space-2xl);
  text-align: center; margin-top: var(--space-xl);
}
.about-cta-banner h2 {
  font-family: var(--font-heading); font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800; letter-spacing: -0.03em; color: var(--c-white);
  margin-bottom: var(--space-sm); line-height: 1.1;
}
.about-cta-banner h2 em { font-style: normal; color: var(--c-orange); }
.about-cta-banner p { font-size: 0.95rem; color: var(--c-text-muted); margin-bottom: var(--space-lg); }
@media (max-width: 900px) {
  .about-story-block { grid-template-columns: 1fr; }
  .about-story-block.reverse { direction: ltr; }
  .about-values { grid-template-columns: 1fr 1fr; }
  .about-stats  { grid-template-columns: 1fr 1fr; }
  .about-trackman-strip { flex-direction: column; text-align: center; }
}
@media (max-width: 768px) {
  .about-hero { min-height: unset; padding-top: calc(var(--nav-h) + var(--space-lg)); padding-bottom: var(--space-lg); }
}
@media (max-width: 580px) {
  .about-values { grid-template-columns: 1fr; }
  .about-stats  { grid-template-columns: 1fr 1fr; }
}

/* ── Contact page ── */
.contact-hero {
  min-height: 55vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: calc(var(--nav-h) + var(--space-xl)) var(--space-md) var(--space-xl);
  position: relative; overflow: hidden;
}
.contact-hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 65% at 50% 45%,
    rgba(255,102,0,0.11) 0%, transparent 70%);
}
.contact-hero > * { position: relative; z-index: 1; }
@media (max-width: 768px) {
  .contact-hero { min-height: unset; padding-top: calc(var(--nav-h) + var(--space-lg)); padding-bottom: var(--space-lg); }
}

/* ── Group Events & Corporate Hire pages (shared) ── */
.ge-hero {
  min-height: 55vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: calc(var(--nav-h) + var(--space-xl)) var(--space-md) var(--space-xl);
  position: relative; overflow: hidden;
}
.ge-hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 75% 65% at 50% 45%,
    rgba(255,102,0,0.13) 0%, transparent 70%);
}
.ge-hero > * { position: relative; z-index: 1; }
.ge-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}
.ge-type-card {
  background: var(--c-surface-1); border: 1px solid var(--c-border);
  border-radius: 14px; padding: var(--space-lg);
  display: flex; flex-direction: column; gap: 12px;
  position: relative; overflow: hidden;
  transition: border-color var(--t-med), transform var(--t-med);
}
.ge-type-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, transparent, var(--c-orange), transparent);
  opacity: 0; transition: opacity var(--t-med);
}
.ge-type-card:hover { border-color: rgba(255,102,0,0.3); transform: translateY(-4px); }
.ge-type-card:hover::before { opacity: 1; }
.ge-type-icon { width: 40px; height: 40px; color: var(--c-orange); flex-shrink: 0; }
.ge-type-title {
  font-family: var(--font-heading); font-size: 1.1rem; font-weight: 800;
  color: var(--c-white); letter-spacing: -0.02em;
}
.ge-type-body { font-size: 0.82rem; color: var(--c-text-muted); line-height: 1.7; }
.ge-included-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-xl); align-items: center;
  margin-top: var(--space-xl);
}
.ge-included-list { display: flex; flex-direction: column; gap: 16px; list-style: none; }
.ge-included-item {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 0.9rem; color: var(--c-text-muted); line-height: 1.6;
}
.ge-included-dot {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--c-orange-dim); border: 1px solid rgba(255,102,0,0.25);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 0.9rem;
}
.ge-included-label {
  font-family: var(--font-heading); font-size: 0.88rem; font-weight: 700;
  color: var(--c-white); margin-bottom: 3px;
}
.ge-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md); margin-top: var(--space-xl);
  counter-reset: steps;
}
.ge-step {
  background: var(--c-surface-1); border: 1px solid var(--c-border);
  border-radius: 14px; padding: var(--space-lg);
  position: relative;
  counter-increment: steps;
}
.ge-step::before {
  content: "0" counter(steps);
  font-family: var(--font-mono); font-size: 0.6rem;
  letter-spacing: 0.14em; color: var(--c-orange);
  display: block; margin-bottom: 14px;
}
.ge-step-title {
  font-family: var(--font-heading); font-size: 1rem; font-weight: 700;
  color: var(--c-white); margin-bottom: 8px;
}
.ge-step-body { font-size: 0.82rem; color: var(--c-text-muted); line-height: 1.7; }
.ge-testimonial {
  margin-top: var(--space-xl);
  background: var(--c-orange-dim); border: 1px solid rgba(255,102,0,0.2);
  border-radius: 16px; padding: var(--space-xl) var(--space-2xl);
  text-align: center;
}
.ge-testimonial-text {
  font-family: var(--font-heading); font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700; color: var(--c-white); line-height: 1.5;
  letter-spacing: -0.02em; max-width: 700px; margin: 0 auto 1.5rem;
}
.ge-testimonial-text::before { content: '\201C'; color: var(--c-orange); }
.ge-testimonial-text::after  { content: '\201D'; color: var(--c-orange); }
.ge-testimonial-author {
  font-family: var(--font-mono); font-size: 0.65rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-text-muted);
}
.ge-form-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-xl); align-items: start;
  margin-top: var(--space-xl);
}
.ge-form-copy h2 {
  font-family: var(--font-heading); font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800; letter-spacing: -0.03em; color: var(--c-white);
  margin-bottom: var(--space-md); line-height: 1.1;
}
.ge-form-copy h2 em { font-style: normal; color: var(--c-orange); }
.ge-form-copy p { font-size: 0.9rem; color: var(--c-text-muted); line-height: 1.7; margin-bottom: 1.5rem; }
.ge-contact-items { display: flex; flex-direction: column; gap: 14px; margin-top: var(--space-md); }
.ge-contact-item { display: flex; align-items: center; gap: 12px; font-size: 0.85rem; color: var(--c-text-muted); }
.ge-contact-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--c-orange-dim); border: 1px solid rgba(255,102,0,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; flex-shrink: 0;
}
.ge-contact-label { font-family: var(--font-heading); font-size: 0.8rem; font-weight: 600; color: var(--c-white); }
.ge-capacity-strip { display: flex; gap: var(--space-md); flex-wrap: wrap; margin-top: var(--space-lg); }
.ge-cap-badge {
  background: var(--c-surface-2); border: 1px solid var(--c-border);
  border-radius: 10px; padding: 14px 20px; text-align: center; flex: 1; min-width: 120px;
}
.ge-cap-num {
  font-family: var(--font-heading); font-size: 1.8rem; font-weight: 800;
  color: var(--c-orange); letter-spacing: -0.04em;
}
.ge-cap-label { font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-text-muted); margin-top: 4px; }
@media (max-width: 900px) {
  .ge-types-grid    { grid-template-columns: 1fr 1fr; }
  .ge-form-grid     { grid-template-columns: 1fr; }
  .ge-included-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .ge-hero { min-height: unset; padding-top: calc(var(--nav-h) + var(--space-lg)); padding-bottom: var(--space-lg); }
}
@media (max-width: 600px) {
  .ge-types-grid { grid-template-columns: 1fr; }
  .ge-steps      { grid-template-columns: 1fr; }
  .ge-testimonial { padding: var(--space-lg); }
}

/* ── Corporate Hire extras ── */
.corp-why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md); margin-top: var(--space-xl);
}
.corp-why-card {
  background: var(--c-surface-2); border: 1px solid var(--c-border);
  border-radius: 14px; padding: var(--space-lg);
  display: flex; flex-direction: column; gap: 10px;
}
.corp-why-num { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.14em; color: var(--c-orange); }
.corp-why-title {
  font-family: var(--font-heading); font-size: 1rem; font-weight: 800;
  color: var(--c-white); letter-spacing: -0.02em;
}
.corp-why-body { font-size: 0.82rem; color: var(--c-text-muted); line-height: 1.7; }
@media (max-width: 900px) { .corp-why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .corp-why-grid { grid-template-columns: 1fr; } }

/* ── Memberships page ── */
.mem-page-hero {
  min-height: 55vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + var(--space-xl)) var(--space-md) var(--space-lg);
  position: relative; overflow: hidden;
}
.mem-page-hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 40%,
    rgba(255,102,0,0.12) 0%, transparent 70%);
}
.mem-page-hero > * { position: relative; z-index: 1; }
.mem-page-hero .hero-label { margin-bottom: var(--space-md); }
.mem-plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}
.mem-plan-card {
  background: var(--c-surface-1);
  border: 1px solid var(--c-border);
  border-radius: 16px; overflow: hidden;
  display: flex; flex-direction: column;
}
.mem-plan-card.featured { border-color: rgba(255,102,0,0.45); border-top: 3px solid var(--c-orange); }
.mem-plan-header { padding: var(--space-lg); border-bottom: 1px solid var(--c-border); }
.mem-plan-card.featured .mem-plan-header { background: linear-gradient(135deg, rgba(255,102,0,0.1) 0%, transparent 100%); }
.mem-plan-body  { flex: 1; padding: var(--space-md) var(--space-lg); }
.mem-plan-footer { padding: var(--space-md) var(--space-lg); border-top: 1px solid var(--c-border); }
.mem-col-label {
  font-family: var(--font-mono); font-size: 0.6rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--c-text-muted); margin-bottom: 8px;
}
.mem-plan-card.featured .mem-col-label { color: var(--c-orange); }
.mem-col-name {
  font-family: var(--font-heading); font-size: 1.3rem; font-weight: 800;
  color: var(--c-white); letter-spacing: -0.02em; margin-bottom: 4px;
}
.mem-col-price {
  font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; letter-spacing: -0.04em; color: var(--c-white);
  margin-bottom: 4px;
}
.mem-plan-card.featured .mem-col-price { color: var(--c-orange); }
.mem-col-period { font-size: 0.78rem; color: var(--c-text-muted); }
.mem-col-saving {
  margin-top: 10px; display: inline-block;
  font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.1em;
  background: rgba(255,102,0,0.15); border: 1px solid rgba(255,102,0,0.3);
  color: var(--c-orange); padding: 4px 10px; border-radius: 100px;
}
.mem-row {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.82rem; color: var(--c-text-muted); line-height: 1.5;
}
.mem-row:last-child { border-bottom: none; }
.mem-check { color: var(--c-orange); font-size: 0.9rem; flex-shrink: 0; margin-top: 1px; }
.mem-dash  { color: var(--c-text-subtle); font-size: 0.9rem; flex-shrink: 0; margin-top: 1px; }
.mem-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-xl);
}
.mem-highlight-card {
  background: var(--c-surface-1); border: 1px solid var(--c-border);
  border-radius: 12px; padding: var(--space-lg);
  transition: border-color var(--t-med), transform var(--t-med);
}
.mem-highlight-card:hover { border-color: rgba(255,102,0,0.25); transform: translateY(-3px); }
.mem-highlight-icon { font-size: 1.6rem; margin-bottom: var(--space-sm); }
.mem-highlight-title {
  font-family: var(--font-heading); font-size: 1rem; font-weight: 700;
  color: var(--c-white); margin-bottom: 6px;
}
.mem-highlight-body { font-size: 0.82rem; color: var(--c-text-muted); line-height: 1.7; }
.faq-list { margin-top: var(--space-xl); display: flex; flex-direction: column; gap: 2px; }
.faq-item {
  background: var(--c-surface-1); border: 1px solid var(--c-border);
  border-radius: 10px; overflow: hidden;
}
.faq-question {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: var(--space-md) var(--space-lg);
  font-family: var(--font-heading); font-size: 0.95rem; font-weight: 600;
  color: var(--c-white); display: flex; justify-content: space-between; align-items: center;
  gap: var(--space-md);
  transition: color var(--t-fast);
}
.faq-question:hover { color: var(--c-orange); }
.faq-icon { color: var(--c-orange); font-size: 1.2rem; flex-shrink: 0; transition: transform var(--t-fast); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  font-size: 0.85rem; color: var(--c-text-muted); line-height: 1.7;
  padding: 0 var(--space-lg);
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 var(--space-lg) var(--space-md); }
.mem-cta-banner {
  margin-top: var(--space-2xl);
  background: var(--c-orange-dim);
  border: 1px solid rgba(255,102,0,0.25);
  border-radius: 16px; padding: var(--space-2xl) var(--space-xl);
  text-align: center;
}
.mem-cta-banner h2 {
  font-family: var(--font-heading); font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800; letter-spacing: -0.03em; color: var(--c-white);
  margin-bottom: var(--space-sm);
}
.mem-cta-banner h2 em { font-style: normal; color: var(--c-orange); }
.mem-cta-banner p { font-size: 0.95rem; color: var(--c-text-muted); margin-bottom: var(--space-lg); }
@media (max-width: 768px) {
  .mem-page-hero { min-height: unset; padding-top: calc(var(--nav-h) + var(--space-lg)); padding-bottom: var(--space-md); }
}
@media (max-width: 640px) {
  .mem-plans       { grid-template-columns: 1fr; gap: var(--space-md); }
  .mem-plan-header { padding: var(--space-md); }
  .mem-plan-body   { padding: var(--space-sm) var(--space-md); }
  .mem-plan-footer { padding: var(--space-sm) var(--space-md); }
}

/* ── Privacy page ── */
.privacy-hero {
  min-height: 40vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: calc(var(--nav-h) + var(--space-xl)) var(--space-md) var(--space-xl);
  position: relative; overflow: hidden;
}
.privacy-hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 40%,
    rgba(255,102,0,0.09) 0%, transparent 70%);
}
.privacy-hero > * { position: relative; z-index: 1; }
.privacy-body { max-width: 760px; margin: 0 auto; padding: var(--space-2xl) var(--space-md); }
.privacy-effective {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin-bottom: var(--space-2xl);
}
.privacy-section {
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--c-border);
}
.privacy-section:last-child { border-bottom: none; }
.privacy-section-num {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-orange);
  margin-bottom: 8px;
}
.privacy-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 700;
  color: var(--c-white);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}
.privacy-section p,
.privacy-section li { font-size: 0.88rem; color: var(--c-text-muted); line-height: 1.8; }
.privacy-section ul { list-style: none; padding: 0; margin: var(--space-sm) 0; }
.privacy-section ul li {
  padding: 6px 0 6px 20px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.privacy-section ul li:last-child { border-bottom: none; }
.privacy-section ul li::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--c-orange);
}
.privacy-section a { color: var(--c-orange); text-decoration: none; }
.privacy-section a:hover { text-decoration: underline; }
.privacy-address-box {
  background: var(--c-surface-1);
  border: 1px solid var(--c-border);
  border-radius: 12px;
  padding: var(--space-md) var(--space-lg);
  margin-top: var(--space-md);
  font-size: 0.85rem;
  color: var(--c-text-muted);
  line-height: 1.8;
}
.privacy-address-box strong {
  color: var(--c-white);
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
}
