/* UI kit — marketing site styles on top of root design tokens */
@import url("colors_and_type.css");

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg-primary); overflow-x: hidden; scroll-behavior: smooth; }

/* ================= NAV ================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 56px; height: 96px;
  background: rgba(10,14,26,0.65);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid rgba(192,200,212,0.08);
  transition: background var(--dur-base) var(--ease-standard);
}
.nav__logo { display: flex; align-items: center; gap: 12px; }
.nav__logo img { height: auto; max-height: 84px; width: auto; }
.nav__links { display: flex; gap: 36px; align-items: center; }
.nav__links a {
  font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--fg-secondary); text-decoration: none; padding: 8px 4px; position: relative;
  transition: color var(--dur-fast) var(--ease-standard);
}
.nav__links a:hover, .nav__links a.active { color: #fff; }
.nav__links a.active::after {
  content: ''; position: absolute; left: 50%; transform: translateX(-50%); right: auto; width: 20px; bottom: 0; height: 2px;
  background: var(--accent-primary); border-radius: 1px;
}
.nav__cta {
  background: var(--grad-cta); color: #001524;
  font-family: var(--font-body); font-size: 15px; font-weight: 700;
  letter-spacing: 0.04em;
  padding: 14px 36px; border: 0; border-radius: 999px; cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,191,255,0.35);
  transition: transform var(--dur-fast), box-shadow var(--dur-fast);
}
.nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,191,255,0.5);
}

/* ================= HERO ================= */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: var(--bg-primary);
  overflow: hidden;
  z-index: 1;
}
/* Full-bleed background video — Kong fills the hero */
.hero__video-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  filter: contrast(1.05) saturate(1.1);
}
/* Dark scrim for text legibility + cyan brand wash */
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(10,14,26,0.92) 0%, rgba(10,14,26,0.65) 40%, rgba(10,14,26,0.2) 70%, rgba(10,14,26,0.5) 100%),
    radial-gradient(ellipse at 75% 50%, rgba(0,229,255,0.18), transparent 55%),
    linear-gradient(180deg, rgba(10,14,26,0.4) 0%, transparent 25%, transparent 70%, rgba(10,14,26,0.8) 100%);
  pointer-events: none;
}
.hero__content {
  position: relative; z-index: 3;
  padding: 120px 56px 180px;
  max-width: 1400px; width: 100%;
  margin: 0 auto;
}
.hero__text { max-width: 780px; }
.hero__eyebrow { color: var(--accent-primary); font-size: 13px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; margin-bottom: 24px; text-shadow: 0 2px 12px rgba(0,0,0,0.8); }
.hero__h1 {
  font-family: var(--font-display); color: #fff;
  font-size: clamp(80px, 10vw, 176px); line-height: 0.88;
  letter-spacing: -0.02em; text-transform: uppercase; margin: 0 0 24px;
  text-shadow: 0 4px 32px rgba(0,0,0,0.7), 0 0 60px rgba(0,0,0,0.4);
}
.hero__h1 .accent { color: var(--accent-glow); text-shadow: 0 0 40px rgba(0,191,255,0.8), 0 4px 32px rgba(0,0,0,0.7); }
.hero__sub { color: var(--fg-secondary); font-size: 22px; font-weight: 400; margin: 0 0 40px; max-width: 580px; text-shadow: 0 2px 12px rgba(0,0,0,0.8); }
.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__stats {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; justify-content: space-between; align-items: center;
  padding: 28px 56px;
  background: rgba(10,14,26,0.85);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-subtle);
  z-index: 4;
}
.hero__stat { text-align: center; }
.hero__stat .n { font-family: var(--font-mono); font-size: 28px; font-weight: 700; color: #fff; letter-spacing: -0.02em; }
.hero__stat .n span { color: var(--accent-primary); }
.hero__stat .l { font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-tertiary); margin-top: 2px; }
.hero__divider { width: 2px; height: 36px; background: linear-gradient(180deg, transparent, var(--accent-primary), transparent); }
.hero__scroll { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); color: var(--metallic); font-size: 10px; letter-spacing: 0.2em; writing-mode: vertical-rl; z-index: 4; opacity: 0.5;}

/* ---- LIGHTNING BOLTS (now full-hero overlay) ---- */
.hero__bolts {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 3;
  overflow: visible;
}
.hero__bolts .bolt {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  opacity: 0;
}
.hero__bolts .bolt-1 { animation: bolt-strike 4.2s ease-out 0.2s infinite; }
.hero__bolts .bolt-2 { animation: bolt-strike 4.2s ease-out 1.4s infinite; }
.hero__bolts .bolt-3 { animation: bolt-strike 3.6s ease-out 2.6s infinite; }
.hero__bolts .bolt-4 { animation: bolt-strike 3.6s ease-out 3.3s infinite; }
@keyframes bolt-strike {
  0%   { stroke-dashoffset: 800; opacity: 0; }
  4%   { stroke-dashoffset: 0;   opacity: 1; }
  8%   { opacity: 0.3; }
  12%  { opacity: 1; }
  16%  { opacity: 0.5; }
  22%  { opacity: 1; }
  34%  { opacity: 0; }
  100% { opacity: 0; }
}
.hero__bolts .spark { opacity: 0; transform-origin: center; }
.hero__bolts .spark-1 { animation: spark 2.8s ease-out 0.6s infinite; }
.hero__bolts .spark-2 { animation: spark 2.8s ease-out 1.2s infinite; }
.hero__bolts .spark-3 { animation: spark 2.8s ease-out 1.8s infinite; }
.hero__bolts .spark-4 { animation: spark 2.8s ease-out 2.4s infinite; }
@keyframes spark {
  0%   { opacity: 0; transform: scale(0.4); }
  20%  { opacity: 1; transform: scale(1.4); }
  40%  { opacity: 0.2; transform: scale(0.8); }
  60%  { opacity: 1; transform: scale(1.2); }
  100% { opacity: 0; transform: scale(0.4); }
}

/* ---- Split-text entrance on hero h1 ---- */
.hero__h1 .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  animation: word-rise 0.9s cubic-bezier(0.22,1,0.36,1) forwards;
}
.hero__h1 .w1 { animation-delay: 0.1s; }
.hero__h1 .w2 { animation-delay: 0.22s; }
.hero__h1 .w3 { animation-delay: 0.34s; }
.hero__h1 .w4 { animation-delay: 0.46s; }
@keyframes word-rise {
  to { opacity: 1; transform: translateY(0); }
}
.hero__h1 .w3.accent { position: relative; }
.hero__h1 .w3.accent::after {
  content: ''; position: absolute; left: -4%; right: -4%; bottom: 8%;
  height: 18%; background: linear-gradient(90deg, transparent, rgba(0,229,255,0.35), transparent);
  filter: blur(14px); z-index: -1;
  animation: glow-sweep 3s ease-in-out infinite;
}
@keyframes glow-sweep { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }

/* ================= BTN ================= */
.btn {
  font-family: var(--font-body); font-weight: 700; font-size: 13px;
  letter-spacing: 0.14em; text-transform: uppercase;
  border-radius: 8px; padding: 16px 28px; border: 0;
  cursor: pointer; display: inline-flex; align-items: center; gap: 10px;
  transition: transform var(--dur-fast), box-shadow var(--dur-base);
}
.btn--primary { background: var(--grad-cta); color: #001524; box-shadow: var(--shadow-3); }
.btn--primary:hover { box-shadow: var(--shadow-4); }
.btn--primary:active { transform: scale(0.98); }
.btn--ghost { background: transparent; color: var(--accent-primary); border: 1px solid var(--accent-primary); }
.btn--ghost:hover { color: var(--accent-glow); border-color: var(--accent-glow); background: rgba(0,191,255,0.08); }
.btn--lg { padding: 22px 40px; font-size: 15px; }

/* ================= SECTION BASE ================= */
.section { padding: 120px 56px; position: relative; }
.section--alt { background: var(--bg-secondary); }
.section__eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--accent-primary); margin-bottom: 16px; }
.section__h2 { font-family: var(--font-display); color: #fff; font-size: clamp(48px, 6vw, 88px); line-height: 1; letter-spacing: -0.02em; text-transform: uppercase; margin: 0 0 20px; }
.section__lead { color: var(--fg-secondary); font-size: 18px; max-width: 640px; margin: 0 0 64px; }
.section__center { text-align: center; }
.section__center .section__lead { margin-left: auto; margin-right: auto; }

/* ================= ABOUT ================= */
.section--about-bg {
  display: grid;
  grid-template-columns: 1fr 1.2fr; /* Give more space to video, reducing middle dead space */
  align-items: stretch; /* Must retain stretch so right column gets height from left column */
  height: 820px;
  min-height: 820px;
  overflow: hidden;
  position: relative;
  background: var(--bg-primary);
  margin-top: -32px; /* Let the video tuck slightly under the hero so the top strip and rope feel connected */
  z-index: 0;
}
/* Top-edge fade — rope blends seamlessly from section above */
.section--about-bg::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 64px;
  background: linear-gradient(180deg, rgba(10,14,26,0.78) 0%, rgba(10,14,26,0.22) 45%, transparent 100%);
  z-index: 20;
  pointer-events: none;
}
/* Full-width bottom blend — just enough to merge the video's bottom border line seamlessly into the background */
.section--about-bg::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 20px; /* Bas naam matra ka fade jisse hard line na dikhe, baaki video saaf  */
  background: linear-gradient(0deg, var(--bg-primary) 0%, transparent 100%);
  z-index: 20;
  pointer-events: none;
}

/* LEFT content column */
.about__content {
  position: relative;
  z-index: 2;
  padding: 4rem 2rem 4rem 8%;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Since container is fixed height, center perfectly aligns them to the video body */
  align-items: flex-start;
  overflow: visible;
}
.about__features {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px; /* Tight, compact gap to ensure it fits in the fixed 620px container */
  width: 100%;
  max-width: 580px; 
  margin-top: 16px;
  perspective: 1000px;
}

/* Make feature cards horizontal in this section to drastically save vertical space */
.about__features .feature-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center; /* Center icon with text block vertically */
  gap: 20px;
  padding: 16px 24px;
}

.about__features .feature-card__icon {
  margin-bottom: 0; /* Remove bottom margin since it's side-by-side now */
  width: 48px; 
  height: 48px;
}

.about__features .feature-card__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about__features .feature-card__title {
  font-size: 15px;
  margin: 0 0 4px 0;
}

.about__features .feature-card__body {
  font-size: 13px;
  line-height: 1.4;
  margin: 0;
}

/* RIGHT — full-height media panel */
.about__media {
  position: relative;
  overflow: hidden;
  background: var(--bg-primary);
}
.about__media::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 35%, rgba(0,229,255,0.15), transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(0,191,255,0.08), transparent 45%);
  pointer-events: none;
  z-index: 5;
  animation: about-bg-pulse 5s ease-in-out 0.4s infinite;
}
@keyframes about-bg-pulse {
  0%,100% { opacity: 1; }
  5%       { opacity: 1.6; filter: brightness(1.5); }
  10%      { opacity: 1; }
  42%      { opacity: 1; }
  47%      { opacity: 1.5; filter: brightness(1.4); }
  52%      { opacity: 1; }
  70%      { opacity: 1; }
  73%      { opacity: 1.3; filter: brightness(1.25); }
  76%      { opacity: 1; }
}

/* Rope SVG — runs full height center of panel */
.about__rope-svg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  opacity: 0.85;
}

/* Kong image — fills the entire panel, showing full figure */
.about__kong-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  z-index: 3;
  filter: contrast(1.12) saturate(1.18);
}

/* Kong video — perfectly contained to prevent cropping, edges masked to blend into background */
.about__kong-video {
  position: absolute;
  top: 0; bottom: 0; left: -20%;
  width: 140%; /* Aur zoom out kiya taaki full Kong visible ho */
  height: 100%;
  object-fit: cover;
  object-position: center top; /* Center kiya taaki rope (left) aur dumbbell (right) dono dikhe */
  display: block;
  z-index: 3;
  filter: contrast(1.1) saturate(1.2);
  /* Clip path bilkul hata diya hai kyunki yahi right side empty strip bana raha tha! */
  clip-path: none;
  /* Dual Mask: Left side starts fading 15% in, Bottom edge fades cleanly only for the last 5% to hide the sharp cut completely! */
  -webkit-mask-image: linear-gradient(0deg, transparent 0%, black 5%, black 100%);
  mask-image: linear-gradient(0deg, transparent 0%, black 5%, black 100%);
}

/* Watermark blocker removed — we are cropping the video right-side instead */
.about__media::after {
  display: none;
}

/* Lightning SVG overlay */
.about__lightning {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 6;
  pointer-events: none;
  overflow: visible;
}

/* Top-edge fade — rope blends seamlessly from section above */
.about__media-edge-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 36px;
  background: linear-gradient(180deg, rgba(10,14,26,0.46) 0%, transparent 100%);
  z-index: 7;
  pointer-events: none;
}

/* Left-edge fade — blends media panel into bg so text stays readable */
.about__media-edge-left {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 80px;
  background: linear-gradient(90deg, rgba(10,14,26,1) 0%, rgba(10,14,26,0.9) 20%, rgba(10,14,26,0.7) 45%, transparent 100%);
  z-index: 7;
  pointer-events: none;
}

/* Bottom-edge fade — rope blends into section below, also hides watermark and fills bottom empty space */
.about__media-edge-bottom {
  position: absolute;
  bottom: 0; left: -10%; right: -10%;
  height: 250px; /* Increased height to smoothly blanket any gap below the scaled-down video */
  background: linear-gradient(0deg, rgba(10,14,26,1) 0%, rgba(10,14,26,0.95) 20%, rgba(10,14,26,0.7) 45%, transparent 100%);
  z-index: 7;
  pointer-events: none;
}

/* Ambient blue glow on top of video */
.about__media-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(0,191,255,0.06), transparent 60%);
  z-index: 8;
  pointer-events: none;
}

/* Lightning bolt animations */
.about-bolt {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  opacity: 0;
}
.about-bolt-1 { animation: about-bolt-strike 5s ease-out 0.4s infinite; }
.about-bolt-2 { animation: about-bolt-strike 5s ease-out 2.1s infinite; }
.about-bolt-3 { animation: about-bolt-strike 4s ease-out 3.5s infinite; }
@keyframes about-bolt-strike {
  0%   { stroke-dashoffset: 600; opacity: 0; }
  5%   { stroke-dashoffset: 0;   opacity: 1; }
  10%  { opacity: 0.4; }
  16%  { opacity: 1; }
  22%  { opacity: 0.6; }
  30%  { opacity: 0; }
  100% { opacity: 0; }
}

/* Feature cards — beautified for About section */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card {
  background: rgba(18,24,38,0.6); /* Glassmorphism background */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px; padding: 32px 28px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 12px 32px rgba(0,0,0,0.6);
  position: relative;
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease-standard),
              box-shadow var(--dur-base) var(--ease-standard),
              border-color var(--dur-base) var(--ease-standard),
              background var(--dur-base);
}
.feature-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at top left, rgba(0,229,255,0.1), transparent 60%);
  pointer-events: none; opacity: 0; transition: opacity 0.4s ease;
}
.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  background: rgba(18,24,38,0.85);
  border-color: rgba(0,191,255,0.5);
  box-shadow: 0 0 36px rgba(0,191,255,0.15), 0 16px 40px rgba(0,0,0,0.8);
}
.feature-card:hover::before { opacity: 1; }
.feature-card__icon {
  width: 56px; height: 56px; border-radius: 10px;
  background: rgba(0,191,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-glow);
  margin-bottom: 22px;
  transition: all var(--dur-base);
}
.feature-card:hover .feature-card__icon { background: rgba(0,229,255,0.18); box-shadow: 0 0 16px rgba(0,229,255,0.5); }
.feature-card__title {
  font-family: var(--font-body); font-weight: 700; font-size: 16px;
  color: #fff; letter-spacing: 0.08em; text-transform: uppercase; margin: 0 0 10px;
}
.feature-card__body { font-size: 14px; color: var(--fg-secondary); margin: 0; line-height: 1.6; }

/* ================= PROGRAMS ================= */
.programs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.program-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: 12px; padding: 36px 28px;
  position: relative; overflow: hidden;
  transition: transform var(--dur-base), border-color var(--dur-base), box-shadow var(--dur-base);
}
.program-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-primary);
  box-shadow: 0 0 28px rgba(0,191,255,0.35);
}
.program-card:hover .program-card__icon { color: var(--accent-glow); filter: drop-shadow(0 0 10px rgba(0,229,255,0.7)); }
.program-card__icon { color: var(--accent-primary); margin-bottom: 24px; transition: all var(--dur-base); }
.program-card__name {
  font-family: var(--font-display); font-size: 32px; color: #fff;
  letter-spacing: -0.01em; text-transform: uppercase; margin: 0 0 8px; line-height: 1;
}
.program-card__desc { font-size: 14px; color: var(--fg-secondary); margin: 0 0 20px; line-height: 1.5; }
.program-card__explore {
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent-primary); text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
}
.program-card:hover .program-card__explore { color: var(--accent-glow); }

/* ================= TRAINERS ================= */
.trainers__scroll { display: flex; gap: 20px; overflow-x: auto; padding-bottom: 16px; scrollbar-width: none; scroll-snap-type: x mandatory; }
.trainers__scroll::-webkit-scrollbar { display: none; }
.trainer-card {
  flex: 0 0 280px; scroll-snap-align: start;
  perspective: 1000px; height: 400px;
}
.trainer-card__inner { position: relative; width: 100%; height: 100%; transition: transform 0.7s var(--ease-out-expo); transform-style: preserve-3d; cursor: pointer; }
.trainer-card:hover .trainer-card__inner { transform: rotateY(180deg); }
.trainer-card__face {
  position: absolute; inset: 0; border-radius: 12px; overflow: hidden;
  backface-visibility: hidden; -webkit-backface-visibility: hidden;
  background: var(--bg-primary); border: 1px solid var(--border-subtle);
}
.trainer-card__face--back { transform: rotateY(180deg); padding: 28px; display: flex; flex-direction: column; justify-content: space-between; background: linear-gradient(180deg, #0A0E1A, #141927); }
.trainer-card__photo {
  height: 280px; position: relative; overflow: hidden;
  background: linear-gradient(180deg, #1A1F2E, #0A0E1A);
}
.trainer-card__photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,191,255,0.45), rgba(10,14,26,0.35));
  mix-blend-mode: overlay;
}
.trainer-card__photo-ph {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: var(--metallic-dim); font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em;
}
.trainer-card__info { padding: 20px; }
.trainer-card__name { font-family: var(--font-body); font-weight: 700; color: #fff; font-size: 16px; letter-spacing: 0.06em; text-transform: uppercase; margin: 0 0 4px; }
.trainer-card__spec { display: inline-block; font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-primary); background: rgba(0,191,255,0.12); padding: 4px 8px; border-radius: 4px; margin-bottom: 10px; }
.trainer-card__meta { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--fg-tertiary); font-family: var(--font-mono); }
.trainer-card__meta a { color: var(--metallic); }
.trainer-card__bio { color: var(--fg-secondary); font-size: 14px; line-height: 1.6; }
.trainer-card__name-back { font-family: var(--font-display); font-size: 32px; color: #fff; letter-spacing: -0.01em; text-transform: uppercase; line-height: 1; }

.carousel-controls { display: flex; justify-content: center; gap: 12px; margin-top: 32px; align-items: center; }
.carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border-strong); border: 0; cursor: pointer; padding: 0; }
.carousel-dot.active { background: var(--accent-primary); box-shadow: 0 0 8px var(--accent-primary); width: 28px; border-radius: 4px; }
.carousel-arrow { width: 44px; height: 44px; border-radius: 50%; background: transparent; border: 1px solid var(--accent-primary); color: var(--accent-primary); cursor: pointer; display: inline-flex; align-items: center; justify-content: center; }
.carousel-arrow:hover { background: rgba(0,191,255,0.12); color: var(--accent-glow); border-color: var(--accent-glow); }

/* ================= MEMBERSHIP ================= */
.tiers { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; align-items: stretch; max-width: 960px; margin: 0 auto; }
@media (max-width: 720px) { .tiers { grid-template-columns: 1fr; max-width: 460px; } .tier--pro { transform: none; } }

.tier {
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: 20px; padding: 44px 36px; position: relative;
  transition: transform var(--dur-base), box-shadow var(--dur-base);
  text-align: center;
}
.tier:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.tier--pro {
  background: linear-gradient(180deg, #141927, #0A0E1A);
  border: 1px solid var(--accent-primary);
  box-shadow: 0 0 40px rgba(0,191,255,0.25), inset 0 0 30px rgba(0,191,255,0.04);
  animation: pro-glow 3s ease-in-out infinite;
}
@keyframes pro-glow {
  0%, 100% { box-shadow: 0 0 40px rgba(0,191,255,0.25), inset 0 0 30px rgba(0,191,255,0.04); }
  50% { box-shadow: 0 0 70px rgba(0,191,255,0.4), inset 0 0 30px rgba(0,191,255,0.08); }
}

.tier__ribbon {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--grad-cta); color: #001524;
  font-size: 11px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 8px 18px; border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,191,255,0.4);
}

.tier__name { font-family: var(--font-display); font-size: 32px; color: var(--metallic); letter-spacing: 0.08em; text-transform: uppercase; margin: 0 0 12px; line-height: 1; font-weight: 700; }
.tier--pro .tier__name { color: var(--accent-glow); text-shadow: 0 0 30px rgba(0,191,255,0.3); }

.tier__price { display: flex; align-items: baseline; justify-content: center; gap: 8px; margin-bottom: 10px; }
.tier__price .amt { font-family: var(--font-mono); font-size: 56px; font-weight: 800; color: #fff; letter-spacing: -0.02em; }
.tier__price .per { color: var(--fg-tertiary); font-size: 16px; font-family: var(--font-body); font-weight: 500; }

.tier__tagline { font-size: 15px; color: var(--fg-secondary); margin: 0 0 28px; }
.tier__divider { height: 1px; background: var(--border-subtle); margin: 0 0 28px; }

.tier__feat { list-style: none; padding: 0; margin: 0 0 32px; display: flex; flex-direction: column; gap: 14px; }
.tier__feat li { display: flex; gap: 12px; align-items: center; justify-content: center; font-size: 15px; color: var(--fg-secondary); }
.tier__feat li svg { flex: 0 0 auto; color: var(--accent-primary); margin-top: 1px; }
.tier__feat li.muted { opacity: 0.35; }
.tier__feat li.muted svg { color: var(--fg-tertiary); }

/* ================= GALLERY ================= */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; gap: 12px; }
.gallery__item {
  position: relative; overflow: hidden; border-radius: 12px;
  border: 1px solid var(--border-subtle);
  background: linear-gradient(135deg, #1A1F2E, #0A0E1A);
  cursor: pointer;
}
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item-ph { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--metallic-dim); font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; }
.gallery__item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,191,255,0.25), transparent 60%);
  opacity: 0; transition: opacity var(--dur-base);
  display: flex; align-items: flex-end; padding: 20px;
}
.gallery__item:hover .gallery__item-overlay { opacity: 1; }
.gallery__item:hover .gallery__item-ph { transform: scale(1.06); }
.gallery__item-ph { transition: transform 0.6s var(--ease-out-expo); }
.gallery__item-label { font-family: var(--font-display); font-size: 22px; color: #fff; letter-spacing: 0.04em; text-transform: uppercase; text-shadow: 0 0 12px rgba(0,191,255,0.6); }

/* ================= TRANSFORMATION ================= */
.transform { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; max-width: 1200px; margin: 0 auto; }
.transform__slider {
  position: relative; aspect-ratio: 1 / 1; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border-subtle);
  user-select: none;
}
.transform__side { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); color: #fff; font-size: 64px; letter-spacing: -0.02em; }
.transform__before { background: linear-gradient(135deg, #1A1F2E, #0A0E1A); color: var(--metallic-dim); }
.transform__after { background: linear-gradient(135deg, #0A0E1A, #141927); color: var(--accent-glow); text-shadow: 0 0 20px rgba(0,191,255,0.5); }
.transform__clip { position: absolute; inset: 0; overflow: hidden; }
.transform__handle { position: absolute; top: 0; bottom: 0; width: 4px; background: var(--accent-primary); box-shadow: 0 0 16px rgba(0,229,255,0.8); cursor: ew-resize; z-index: 2; }
.transform__handle::after {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg-primary);
  border: 2px solid var(--accent-primary);
  box-shadow: 0 0 20px rgba(0,229,255,0.7);
}
.transform__handle::before {
  content: '‹ ›'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 2;
  color: var(--accent-glow); font-family: var(--font-mono); font-weight: 700; font-size: 16px; letter-spacing: 2px;
}
.transform__label-b, .transform__label-a {
  position: absolute; top: 16px; font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 6px 10px; border-radius: 4px; background: rgba(10,14,26,0.8); backdrop-filter: blur(4px); color: #fff;
}
.transform__label-b { left: 16px; }
.transform__label-a { right: 16px; color: var(--accent-glow); border: 1px solid var(--accent-primary); }
.transform__info .name { font-family: var(--font-display); font-size: 56px; color: #fff; text-transform: uppercase; letter-spacing: -0.02em; line-height: 1; margin: 0 0 8px; }
.transform__info .duration { font-family: var(--font-mono); font-size: 14px; color: var(--accent-primary); letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 20px; }
.transform__info .quote { font-size: 18px; color: var(--fg-secondary); line-height: 1.6; font-style: italic; border-left: 2px solid var(--accent-primary); padding-left: 20px; }

/* ================= STATS BAND ================= */
.stats-band {
  padding: 96px 56px; text-align: center;
  background: linear-gradient(180deg, #0A0E1A, #141927, #0A0E1A);
  position: relative; overflow: hidden;
}
.stats-band::before, .stats-band::after {
  content: ''; position: absolute; height: 2px; background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
  left: 0; right: 0;
}
.stats-band::before { top: 40%; transform: skewY(-3deg); opacity: 0.4; }
.stats-band::after { bottom: 30%; transform: skewY(2deg); opacity: 0.25; }
.stats-band__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; max-width: 1280px; margin: 0 auto; position: relative; z-index: 2; }
.stats-band__cell .n { font-family: var(--font-mono); font-size: 80px; font-weight: 700; color: #fff; line-height: 1; letter-spacing: -0.04em; text-shadow: 0 0 30px rgba(0,191,255,0.4); }
.stats-band__cell .n span { color: var(--accent-primary); }
.stats-band__cell .l { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--fg-secondary); margin-top: 8px; }

/* ================= LOCATION ================= */
.location { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; max-width: 1280px; margin: 0 auto; }
.map {
  position: relative; aspect-ratio: 4 / 3; border-radius: 16px; overflow: hidden;
  background: #0A0E1A; border: 1px solid var(--border-subtle);
  background-image:
    linear-gradient(rgba(0,191,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,191,255,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
}
.map__roads { position: absolute; inset: 0; }
.map__road { position: absolute; background: rgba(192,200,212,0.15); }
.map__pin { position: absolute; top: 45%; left: 52%; transform: translate(-50%, -50%); }
.map__pin-dot { width: 18px; height: 18px; border-radius: 50%; background: var(--accent-primary); box-shadow: 0 0 20px var(--accent-glow); position: relative; z-index: 2; }
.map__pin-ring { position: absolute; inset: -8px; border-radius: 50%; border: 2px solid var(--accent-primary); animation: ring 2s ease-out infinite; }
@keyframes ring { 0% { transform: scale(0.8); opacity: 1; } 100% { transform: scale(2.4); opacity: 0; } }
.location__info { display: flex; flex-direction: column; gap: 24px; }
.info-row { display: flex; align-items: flex-start; gap: 14px; padding: 0; border-left: none; }
.info-row .k { font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent-primary); margin-bottom: 6px; }
.info-row .v { font-size: 16px; color: #fff; line-height: 1.5; }
.info-row .v span { display: block; color: var(--fg-secondary); font-size: 14px; }

/* ================= FINAL CTA ================= */
.final-cta {
  padding: 160px 56px; text-align: center; position: relative;
  background: radial-gradient(ellipse at center, #141927 0%, #0A0E1A 70%);
  overflow: hidden;
}
.final-cta__silhouette { position: absolute; inset: 0; display: flex; justify-content: center; align-items: center; opacity: 0.12; pointer-events: none; }
.final-cta__silhouette img { height: 110%; filter: brightness(0.5) contrast(1.2); }
.final-cta__bolts { position: absolute; inset: 0; pointer-events: none; }
.final-cta__h { font-family: var(--font-display); color: #fff; font-size: clamp(56px, 8vw, 128px); letter-spacing: -0.02em; line-height: 0.95; text-transform: uppercase; margin: 0 0 20px; position: relative; z-index: 2; }
.final-cta__h .accent { color: var(--accent-glow); text-shadow: 0 0 30px rgba(0,191,255,0.6); }
.final-cta__sub { color: var(--fg-secondary); font-size: 20px; margin: 0 auto 40px; max-width: 560px; position: relative; z-index: 2; }

/* ================= FOOTER ================= */
.footer { background: var(--bg-primary); border-top: 1px solid var(--border-subtle); }

/* ── About duplicate band inside footer ── */
.footer__about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 700px;
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
}
.footer__about-content {
  padding: 100px 56px 100px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.footer__about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 48px;
  perspective: 1000px;
}

/* ── Standard footer grid ── */
.footer__grid { display: grid; grid-template-columns: 1.3fr 1.4fr 1fr 1fr; gap: 48px; max-width: 1280px; margin: 0 auto; padding: 80px 56px 32px; grid-template-areas: "brand contact legal quick"; }
.footer__col:nth-child(1) { grid-area: brand; }
.footer__col:nth-child(2) { grid-area: quick; }
.footer__col:nth-child(3) { grid-area: legal; }
.footer__col:nth-child(4) { grid-area: contact; }
.footer__col { display: flex; flex-direction: column; align-items: center; text-align: center; }
.footer__col h5 { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: #fff; margin: 0 0 20px; }
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; align-items: center; }
.footer__col a { color: var(--fg-secondary); font-size: 14px; text-decoration: none; }
.footer__col a:hover { color: var(--accent-glow); }
.footer__brand { display: flex; flex-direction: column; align-items: center; text-align: center; }
.footer__brand img { height: 60px; margin-bottom: 16px; }
.footer__tagline { font-size: 13px; color: var(--fg-secondary); margin: 0 0 20px; line-height: 1.6; text-align: center; }
.footer__social { display: flex; gap: 10px; justify-content: center; }
.footer__social a { width: 36px; height: 36px; border-radius: 8px; border: 1px solid var(--border-subtle); color: var(--metallic); display: inline-flex; align-items: center; justify-content: center; transition: all var(--dur-base); }
.footer__social a:hover { background: var(--accent-primary); color: #001524; border-color: var(--accent-primary); box-shadow: 0 0 12px rgba(0,191,255,0.5); }
.footer__newsletter { display: flex; gap: 8px; }
.footer__newsletter input { flex: 1; background: var(--bg-secondary); border: 1px solid var(--border-subtle); border-radius: 8px; padding: 12px 14px; color: #fff; font-family: var(--font-body); font-size: 13px; outline: none; }
.footer__newsletter input:focus { border-color: var(--accent-primary); box-shadow: 0 0 0 3px rgba(0,191,255,0.15); }
.footer__newsletter button { background: var(--grad-cta); color: #001524; border: 0; font-weight: 700; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; padding: 0 18px; border-radius: 8px; cursor: pointer; }
.footer__bottom { max-width: 1280px; margin: 0 auto; padding: 24px 56px 32px; border-top: 1px solid var(--border-subtle); display: flex; justify-content: center; font-size: 12px; color: var(--fg-tertiary); font-family: var(--font-mono); letter-spacing: 0.08em; text-align: center; }

/* ── Centered subpage footer variant ── */
.footer--simple .footer__grid {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  text-align: center;
  align-items: start;
  justify-items: center;
}
.footer--simple .footer__brand { display: flex; flex-direction: column; align-items: center; max-width: 360px; }
.footer--simple .footer__brand img { margin: 0 auto 16px; }
.footer--simple .footer__brand p { text-align: center; }
.footer--simple .footer__col ul { align-items: center; }
.footer--simple .footer__bottom { justify-content: center; text-align: center; }
@media (max-width: 760px) {
  .footer--simple .footer__grid { grid-template-columns: 1fr; gap: 32px; }
}
.footer__bottom a { color: var(--fg-tertiary); text-decoration: none; margin-left: 20px; }
.footer__bottom a:hover { color: var(--accent-primary); }

@media (max-width: 960px) {
  .nav__links { display: none !important; }
  .nav__hamburger { display: flex !important; }
  .nav__cta { display: none !important; }
  .hero__content { padding: 100px 24px 220px; }
  .hero__scrim { background: linear-gradient(180deg, rgba(10,14,26,0.7) 0%, rgba(10,14,26,0.5) 50%, rgba(10,14,26,0.85) 100%); }
  /* Hero stats: compact horizontal strip on mobile */
  .hero__stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 4px;
    padding: 12px 16px;
  }
  .hero__stat .n { font-size: 18px; }
  .hero__stat .l { font-size: 8px; letter-spacing: 0.08em; }
  .hero__divider { width: 1px; height: 28px; }
  .section { padding: 80px 24px; }
  .feature-grid, .programs-grid, .tiers, .stats-band__grid, .footer__grid, .gallery { grid-template-columns: 1fr; }
  .gallery { grid-auto-rows: 160px; }
  .transform, .location { grid-template-columns: 1fr; gap: 40px; }
  .location__info { align-items: center !important; text-align: center !important; }
  .info-row { flex-direction: column !important; align-items: center !important; text-align: center !important; }
  .info-row .k { text-align: center !important; }
  .info-row .v { text-align: center !important; }
  .location .map { margin: 0 auto !important; aspect-ratio: unset !important; height: 300px !important; width: 100% !important; max-width: 100% !important; }
  .location .map iframe { border-radius: 12px !important; height: 100% !important; }
  .location .btn { margin: 0 auto !important; display: flex !important; justify-content: center !important; width: 100% !important; max-width: 320px !important; }
  /* About: stack vertically — Kong above, text below */
  .section--about-bg {
    grid-template-columns: 1fr;
    grid-template-rows: 380px auto;
    min-height: auto;
    height: auto; /* Restore auto height for mobile so it doesn't clip content */
    margin-top: -20px;
  }
  .section--about-bg::before {
    height: 36px;
    background: linear-gradient(180deg, rgba(10,14,26,0.7) 0%, rgba(10,14,26,0.18) 45%, transparent 100%);
  }
  .about__content {
    padding: 48px 24px 80px;
    order: 2;
  }
  .about__media {
    order: 1;
    min-height: 380px;
  }
  .about__media-edge-top {
    height: 24px;
    background: linear-gradient(180deg, rgba(10,14,26,0.36) 0%, transparent 100%);
  }
  .about__media-edge-left { display: none; }
  .about__media-edge-bottom {
    height: 120px;
    background: linear-gradient(0deg, rgba(10,14,26,1) 0%, rgba(10,14,26,0.9) 30%, transparent 100%);
  }
  /* Mobile: video fits container properly (desktop -20%/140% alignment preserved) */
  .about__kong-video {
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
  .footer__about {
    grid-template-columns: 1fr;
    grid-template-rows: 340px auto;
    min-height: auto;
  }
  .footer__about-content {
    padding: 48px 24px 64px;
    order: 2;
  }
  .footer__about .about__media {
    order: 1;
    min-height: 340px;
  }
  .footer__about .about__media-edge-left { display: none; }
  .footer__grid {
    padding: 48px 24px 24px;
    text-align: center !important;
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "brand"
      "quick"
      "legal"
      "contact" !important;
    gap: 32px !important;
  }
  .footer--simple .footer__grid {
    grid-template-columns: 1fr !important;
    grid-template-areas: none !important;
    gap: 32px !important;
  }
  .footer__col { align-items: center !important; display: flex !important; flex-direction: column !important; }
  .footer__col h5 { text-align: center !important; }
  .footer__col ul { align-items: center !important; }
  .footer__brand { align-items: center !important; }
  .footer__brand img { margin: 0 auto 16px !important; }
  .footer__tagline { text-align: center !important; }
  .footer__social { justify-content: center !important; }
  .footer__bottom { padding: 16px 24px 24px; flex-direction: column !important; align-items: center !important; text-align: center !important; gap: 8px !important; }
  .footer__bottom a { margin: 0 8px !important; }

  /* Live Hours Panel mobile */
  .live-hours { padding: 16px 18px; margin: 24px auto 12px; }
  .live-hours__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 12px;
  }
  .live-hours__badge { font-size: 11px; padding: 6px 12px; gap: 6px; }
  .live-hours__status-text { font-size: 12px; }
  .live-hours__countdown { gap: 6px; justify-content: center; }
  .live-hours__digit-box {
    width: 48px;
    height: 64px;
    border-radius: 10px;
  }
  .live-hours__digit-val { font-size: 36px; }
  .live-hours__count-sep { font-size: 32px; }
  .live-hours__digit-label { font-size: 9px; }
  .live-hours__big { margin-bottom: 12px; }
  .live-hours__lead { font-size: 14px; }
  .live-hours__num { font-size: 42px; }
  .live-hours__grid { grid-template-columns: repeat(2, 1fr); }
  .live-hours__row { padding: 12px 14px; }
  .live-hours__range { font-size: 14px; }
  .hero__h1 { font-size: clamp(48px, 12vw, 80px); }
  .hero__sub { font-size: 16px; max-width: 100%; }
  .stats-band { padding: 64px 24px; }
  .stats-band__cell .n { font-size: 48px; }
}

/* ================= HAMBURGER NAV ================= */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--metallic);
  border-radius: 2px;
  transition: transform var(--dur-base) var(--ease-standard),
              opacity var(--dur-base) var(--ease-standard);
}
.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 DRAWER ================= */
.nav__drawer {
  position: fixed;
  top: 96px; left: 0; right: 0;
  background: rgba(10,14,26,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  border-top: 1px solid rgba(0,191,255,0.2);
  box-shadow: 0 12px 40px rgba(0,0,0,0.6), 0 0 30px rgba(0,191,255,0.15);
  padding: 24px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 102;
  transform: translateY(-120%);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--dur-base) var(--ease-standard),
              opacity var(--dur-base) var(--ease-standard);
}
.nav__drawer--open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.nav__drawer a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--metallic);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-subtle);
  transition: color var(--dur-fast) var(--ease-standard);
}
.nav__drawer a:last-of-type { border-bottom: 0; }
.nav__drawer a:hover,
.nav__drawer a.active { color: var(--accent-glow); }
.nav__drawer-cta { margin-top: 16px; align-self: flex-start; }

/* ================= SCROLL REVEAL ================= */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--dur-reveal) var(--ease-out-expo),
              transform var(--dur-reveal) var(--ease-out-expo);
}
.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger grid/list children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out-expo),
              transform 0.9s var(--ease-out-expo);
}
.reveal-stagger--visible > *:nth-child(1)  { opacity: 1; transform: none; transition-delay:   0ms; }
.reveal-stagger--visible > *:nth-child(2)  { opacity: 1; transform: none; transition-delay:  80ms; }
.reveal-stagger--visible > *:nth-child(3)  { opacity: 1; transform: none; transition-delay: 160ms; }
.reveal-stagger--visible > *:nth-child(4)  { opacity: 1; transform: none; transition-delay: 240ms; }
.reveal-stagger--visible > *:nth-child(5)  { opacity: 1; transform: none; transition-delay: 320ms; }
.reveal-stagger--visible > *:nth-child(6)  { opacity: 1; transform: none; transition-delay: 400ms; }
.reveal-stagger--visible > *:nth-child(7)  { opacity: 1; transform: none; transition-delay: 480ms; }
.reveal-stagger--visible > *:nth-child(8)  { opacity: 1; transform: none; transition-delay: 560ms; }

/* ================= FOUNDING MEMBERS ================= */
.founding { position: relative; overflow: hidden; padding-top: 0px; padding-bottom: 80px; }
.founding__head { max-width: 900px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.founding__h2 { margin: 0 auto 24px; }
.founding__word {
  display: inline-block;
  opacity: 0; transform: translateY(40px);
  animation: word-rise 0.9s cubic-bezier(0.22,1,0.36,1) forwards;
}
.founding .section__lead { margin-left: auto; margin-right: auto; }

.founding__seal {
  position: relative;
  width: 160px; height: 160px;
  margin: 0 auto 24px;
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 0 24px rgba(0,191,255,0.35));
}
.founding__seal svg { width: 100%; height: 100%; }
.founding__seal-core {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #fff;
}
.founding__seal-n { font-family: var(--font-display); font-size: 48px; line-height: 1; color: var(--accent-glow); text-shadow: 0 0 18px rgba(0,229,255,0.7); }
.founding__seal-l { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.28em; color: var(--metallic); margin-top: 4px; }

/* spots meter */
.founding__meter {
  max-width: 820px; margin: 48px auto 64px; position: relative; z-index: 2;
  background: rgba(26, 31, 46, 0.6);
  border: 1px solid rgba(192,200,212,0.12);
  border-radius: 16px;
  padding: 24px 28px;
  backdrop-filter: blur(10px);
}
.founding__meter-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
.founding__meter-label { font-size: 11px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: var(--accent-primary); }
.founding__meter-count { font-family: var(--font-mono); color: #fff; display: inline-flex; align-items: baseline; gap: 6px; }
.founding__meter-count .n { font-size: 32px; font-weight: 700; color: var(--accent-glow); text-shadow: 0 0 12px rgba(0,229,255,0.5); }
.founding__meter-count .sep { color: var(--metallic-dim); font-size: 20px; }
.founding__meter-count .t { font-size: 20px; color: var(--metallic); }
.founding__meter-count .r { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--fg-tertiary); margin-left: 8px; font-family: var(--font-body); }
.founding__meter-track { height: 10px; background: rgba(192,200,212,0.1); border-radius: 999px; position: relative; overflow: visible; }
.founding__meter-fill {
  height: 100%; border-radius: 999px;
  background: linear-gradient(90deg, #00BFFF 0%, #00E5FF 100%);
  box-shadow: 0 0 16px rgba(0,229,255,0.7), inset 0 0 8px rgba(255,255,255,0.25);
}
.founding__meter-tick {
  position: absolute; top: -6px; width: 2px; height: 22px; background: #fff;
  box-shadow: 0 0 10px rgba(0,229,255,0.9); border-radius: 2px;
  transform: translateX(-50%);
}
.founding__meter-legend { display: flex; justify-content: space-between; margin-top: 14px; font-size: 11px; color: var(--fg-secondary); letter-spacing: 0.06em; }
.founding__dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: rgba(192,200,212,0.25); margin-right: 8px; vertical-align: middle; }
.founding__dot--on { background: var(--accent-primary); box-shadow: 0 0 8px var(--accent-glow); }

/* perk cards */
.founding__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 1280px; margin: 0 auto; position: relative; z-index: 2;
}
.founding__card {
  position: relative; overflow: hidden;
  padding: 36px;
  background: linear-gradient(180deg, rgba(26,31,46,0.85), rgba(10,14,26,0.9));
  border: 1px solid rgba(192,200,212,0.1);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 8px 24px rgba(0,0,0,0.4);
  transition: border-color 250ms, box-shadow 250ms;
}
.founding__card:hover { border-color: rgba(0,191,255,0.45); box-shadow: 0 0 28px rgba(0,191,255,0.2), 0 12px 36px rgba(0,0,0,0.5); }
.founding__card-glow {
  position: absolute; inset: -40% -20% auto auto; width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(0,229,255,0.12), transparent 65%);
  pointer-events: none;
}
.founding__card-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 24px; }
.founding__card-n { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.2em; color: var(--metallic-dim); }
.founding__card-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(0,191,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-glow);
}
.founding__card-t { font-family: var(--font-body); font-weight: 700; font-size: 17px; color: #fff; letter-spacing: 0.06em; text-transform: uppercase; margin: 0 0 14px; }
.founding__card-b { font-size: 15px; color: var(--fg-secondary); line-height: 1.7; margin: 0 0 22px; }
.founding__card-badge {
  display: inline-block; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em;
  color: var(--accent-primary); padding: 5px 12px;
  border: 1px dashed rgba(0,191,255,0.5);
  border-radius: 999px;
}

.founding__cta { text-align: center; margin-top: 56px; position: relative; z-index: 2; }
.founding__cta-sub {
  font-size: 12px; color: var(--fg-tertiary); letter-spacing: 0.08em;
  margin-top: 16px; font-family: var(--font-mono);
}

@media (max-width: 960px) {
  .founding__seal { width: 120px; height: 120px; margin: 0 auto 16px; }
  .founding__seal-n { font-size: 32px; }
  .founding__grid { grid-template-columns: 1fr; }
  .founding__meter-head { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ================= OPENING COUNTDOWN ================= */
.opening { position: relative; overflow: hidden; }
.opening__bg-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(0,229,255,0.18), transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(0,191,255,0.08), transparent 60%);
  pointer-events: none;
}

.countdown {
  display: flex; justify-content: center; align-items: flex-start;
  gap: 12px; margin: 56px auto 48px;
  max-width: 900px;
}
.countdown__cell { display: flex; flex-direction: column; align-items: center; }
.countdown__digits { display: flex; gap: 6px; }
.countdown__digit {
  position: relative;
  width: 72px; height: 96px;
  background: linear-gradient(180deg, #141927, #0A0E1A);
  border: 1px solid rgba(0,191,255,0.3);
  border-radius: 10px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 0 24px rgba(0,191,255,0.18), 0 10px 32px rgba(0,0,0,0.6);
}
.countdown__digit::before {
  content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px;
  background: rgba(0,229,255,0.25); box-shadow: 0 0 6px rgba(0,229,255,0.4);
  z-index: 3;
}
.countdown__digit-inner {
  font-family: var(--font-mono); font-weight: 700;
  font-size: 64px; color: #fff; line-height: 1;
  text-shadow: 0 0 14px rgba(0,229,255,0.6);
}
.countdown__sep {
  font-family: var(--font-mono); font-weight: 700;
  font-size: 64px; color: var(--accent-primary);
  line-height: 96px;
  text-shadow: 0 0 16px rgba(0,229,255,0.7);
  animation: cd-pulse 1s ease-in-out infinite;
}
@keyframes cd-pulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }
.countdown__label {
  margin-top: 14px; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--fg-tertiary); font-weight: 600;
}

/* marquee */
.opening__marquee {
  margin: 32px -56px; overflow: hidden; position: relative;
  border-top: 1px solid rgba(192,200,212,0.12);
  border-bottom: 1px solid rgba(192,200,212,0.12);
  padding: 18px 0;
  background: rgba(10,14,26,0.5);
}
.opening__marquee::before, .opening__marquee::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.opening__marquee::before { left: 0; background: linear-gradient(90deg, var(--bg-secondary), transparent); }
.opening__marquee::after { right: 0; background: linear-gradient(270deg, var(--bg-secondary), transparent); }
.opening__marquee-track {
  display: flex; gap: 48px; width: max-content;
  animation: marquee 40s linear infinite;
}
@keyframes marquee { to { transform: translateX(-50%); } }
.opening__marquee-item {
  font-family: var(--font-display); font-size: 28px;
  color: var(--metallic); letter-spacing: 0.04em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 12px; white-space: nowrap;
}
.opening__marquee-item i { color: var(--accent-primary); }

/* roadmap */
.opening__roadmap {
  position: relative; margin-top: 64px; padding: 40px 0 20px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  max-width: 1100px; margin-left: auto; margin-right: auto;
}
.opening__rail {
  position: absolute; left: 6%; right: 6%; top: 58px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-glow), rgba(192,200,212,0.2));
  box-shadow: 0 0 10px rgba(0,229,255,0.35);
}
.opening__phase { text-align: center; position: relative; padding-top: 40px; }
.opening__phase-node {
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--bg-primary); border: 2px solid var(--accent-primary);
  box-shadow: 0 0 12px rgba(0,229,255,0.6);
}
.opening__phase-pulse {
  position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid var(--accent-glow); animation: ring 2s ease-out infinite;
}
.opening__phase-k {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.24em;
  color: var(--accent-primary); margin-bottom: 6px;
}
.opening__phase-t {
  font-family: var(--font-body); font-weight: 700; font-size: 15px;
  color: #fff; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px;
}
.opening__phase-b { font-size: 13px; color: var(--fg-secondary); line-height: 1.6; }

@media (max-width: 960px) {
  .countdown { flex-wrap: wrap; gap: 8px; }
  .countdown__digit { width: 48px; height: 72px; }
  .countdown__digit-inner { font-size: 42px; }
  .countdown__sep { font-size: 42px; line-height: 72px; }
  .opening__marquee { margin: 32px -24px; }
  .opening__roadmap { grid-template-columns: 1fr; gap: 20px; }
  .opening__rail { display: none; }
  .opening__phase { padding-top: 0; padding-left: 40px; text-align: left; }
  .opening__phase-node { top: 4px; left: 8px; transform: none; }
}

/* ================= RESERVE CTA ================= */
.reserve {
  position: relative; padding: 140px 56px; overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0,191,255,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(0,229,255,0.05) 0%, transparent 50%),
    radial-gradient(ellipse at center, #0e1322 0%, #050710 70%);
}
.reserve__art {
  position: absolute; inset: 0; z-index: 0;
  display: flex; align-items: center; justify-content: center;
  will-change: transform;
}
.reserve__art img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.75; /* Banner image brighter taaki card ke peeche dikhe */
  filter: contrast(1.15) saturate(1.2);
}
.reserve__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(10,14,26,0.15) 0%, rgba(10,14,26,0.55) 60%, rgba(10,14,26,0.75) 100%),
    linear-gradient(180deg, rgba(10,14,26,0.3) 0%, transparent 30%, transparent 70%, rgba(10,14,26,0.6) 100%);
}
.reserve__bolts { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 2; pointer-events: none; }
.reserve__bolt { stroke-dasharray: 800; stroke-dashoffset: 800; opacity: 0; }
.reserve__bolt-1 { animation: bolt-strike 5s ease-out 0.8s infinite; }
.reserve__bolt-2 { animation: bolt-strike 5s ease-out 2.4s infinite; }

.reserve__body {
  position: relative; z-index: 3;
  max-width: 920px; margin: 0 auto; text-align: center;
}
.reserve__card {
  position: relative;
  padding: 56px 48px;
  border-radius: 24px;
  background: rgba(10,14,26,0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0,191,255,0.15);
  overflow: hidden;
}
.reserve__card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(0,191,255,0.4), rgba(0,229,255,0.1), rgba(0,191,255,0.3), rgba(0,229,255,0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  animation: card-border-rotate 6s linear infinite;
  pointer-events: none;
}
@keyframes card-border-rotate {
  0% { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(360deg); }
}
.reserve__card-glow {
  position: absolute;
  top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(0,191,255,0.12), transparent 60%);
  animation: card-glow-pulse 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes card-glow-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}
.reserve__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 22px; border-radius: 999px;
  border: 1px solid rgba(0,191,255,0.45);
  background: rgba(10,14,26,0.7);
  backdrop-filter: blur(12px);
  font-size: 12px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent-glow);
  margin-bottom: 32px;
  box-shadow: 0 0 20px rgba(0,191,255,0.1), inset 0 0 12px rgba(0,191,255,0.05);
}
.reserve__live {
  width: 8px; height: 8px; border-radius: 50%;
  background: #00E5FF; box-shadow: 0 0 10px #00E5FF;
  animation: live-pulse 1.4s ease-in-out infinite;
}
@keyframes live-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

.reserve__h {
  font-family: var(--font-display); color: #fff;
  font-size: clamp(48px, 7vw, 110px);
  letter-spacing: -0.02em; line-height: 0.95;
  text-transform: uppercase; margin: 0 0 28px;
  text-shadow:
    0 0 40px rgba(0,191,255,0.3),
    0 0 80px rgba(0,229,255,0.15),
    0 4px 32px rgba(0,0,0,0.7);
}
.reserve__word {
  display: inline-block; margin-right: 0.18em;
  opacity: 0; transform: translateY(60px);
  animation: word-rise 0.9s cubic-bezier(0.22,1,0.36,1) forwards;
}
.reserve__accent { color: var(--accent-glow); text-shadow: 0 0 40px rgba(0,191,255,0.7), 0 4px 32px rgba(0,0,0,0.7); }
.reserve__sub { color: var(--fg-secondary); font-size: 18px; margin: 0 auto 40px; max-width: 560px; line-height: 1.65; }

.reserve__form {
  display: flex; gap: 10px; max-width: 560px; margin: 0 auto; align-items: stretch;
  flex-wrap: wrap; justify-content: center;
}
.reserve__input {
  flex: 1; min-width: 240px;
  background: rgba(10,14,26,0.7); border: 1px solid rgba(0,191,255,0.35);
  border-radius: 10px; padding: 0 20px; color: #fff;
  font-family: var(--font-body); font-size: 15px; outline: none;
  backdrop-filter: blur(10px);
  transition: border-color 200ms, box-shadow 200ms;
}
.reserve__input:focus {
  border-color: var(--accent-glow);
  box-shadow: 0 0 0 3px rgba(0,229,255,0.18), 0 0 24px rgba(0,229,255,0.25);
}
.reserve__btn { padding: 0 32px; font-size: 14px; white-space: nowrap; }

.reserve__done {
  display: inline-flex; align-items: center; gap: 16px;
  padding: 18px 28px; border-radius: 14px;
  background: rgba(0,191,255,0.12);
  border: 1px solid var(--accent-primary);
  box-shadow: 0 0 28px rgba(0,191,255,0.35);
}
.reserve__done-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent-glow); color: #001524;
  display: flex; align-items: center; justify-content: center;
}
.reserve__done-t { font-family: var(--font-display); font-size: 22px; color: #fff; letter-spacing: 0.02em; text-transform: uppercase; }
.reserve__done-b { font-size: 13px; color: var(--fg-secondary); }

.reserve__trust {
  margin-top: 36px; display: flex; justify-content: center; gap: 18px; flex-wrap: wrap;
  font-size: 13px; color: var(--fg-tertiary); letter-spacing: 0.08em; font-family: var(--font-mono);
}
.reserve__trust span { display: inline-flex; align-items: center; gap: 6px; }
.reserve__trust i { color: var(--accent-primary); }
.reserve__dot { color: var(--metallic-dim); }

@media (max-width: 960px) {
  .reserve { padding: 80px 24px; }
  .reserve__form { flex-direction: column; }
  .reserve__btn { width: 100%; }
}

/* ================= GLOBAL MOBILE FIXES ================= */
@media (max-width: 720px) {
  .nav { padding: 0 16px; }
  .nav__logo img { height: 56px !important; }
  .nav__cta { display: none; }
  /* Subpage banners — stack CTA buttons full width */
  .cta-banner .btn,
  .contact-cta .btn {
    display: flex !important;
    width: 100%;
    justify-content: center;
    margin: 8px 0 !important;
  }
  /* Prevent horizontal scroll from any oversized elements */
  body, html { overflow-x: hidden; }
  img, iframe, video { max-width: 100%; height: auto; }
  /* Policy cards readable on mobile */
  .policy-card { padding: 24px 18px !important; }
  .policy-card h2 { font-size: 20px !important; }
  .policy-card h3 { font-size: 14px !important; }
  /* Page hero padding */
  .page-hero { padding: 120px 20px 60px !important; }
  .page-hero h1 { font-size: clamp(32px, 8vw, 48px) !important; }
}

/* ================= WHATSAPP FLOAT BUTTON ================= */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 40px rgba(37, 211, 102, 0.15);
  animation: whatsapp-pulse 2s ease-in-out infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5), 0 0 50px rgba(37, 211, 102, 0.25);
}
.whatsapp-float svg {
  flex-shrink: 0;
}
.whatsapp-float__label {
  white-space: nowrap;
}
@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 40px rgba(37, 211, 102, 0.15); }
  50% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.55), 0 0 60px rgba(37, 211, 102, 0.3); }
}
@media (max-width: 720px) {
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    padding: 12px 16px;
    font-size: 13px;
  }
  .whatsapp-float__label {
    display: none;
  }
}

/* ================= 3D TILT PERSPECTIVE ================= */
.programs-grid,
.about__features {
  perspective: 1000px;
}

/* ================= VEO WATERMARK MASK ================= */
/* Video made slightly larger than hero so watermark clips off via overflow:hidden */
.hero__video-bg {
  position: absolute;
  top: -5%; left: -5%;
  width: 110%; height: 110%;
  object-fit: cover;
  object-position: center center;
}

.about__media::after {
  content: '';
  position: absolute;
  right: 0; bottom: 0;
  width: 150px; height: 60px;
  background: linear-gradient(135deg, transparent 0%, rgba(10,14,26,0.85) 60%, rgba(10,14,26,1) 100%);
  pointer-events: none;
  z-index: 3;
  filter: blur(5px);
}

/* ================= 3D DEPTH BOOST ================= */
body[data-depth3d="on"] .feature-card,
body[data-depth3d="on"] .program-card,
body[data-depth3d="on"] .perk-card,
body[data-depth3d="on"] .opening__phase,
body[data-depth3d="on"] .opening__class {
  transform-style: preserve-3d;
  box-shadow:
    0 12px 32px rgba(0,0,0,0.55),
    0 2px 0 rgba(0,229,255,0.08) inset,
    0 -2px 12px rgba(0,191,255,0.06) inset;
}
body[data-depth3d="on"] .programs-grid,
body[data-depth3d="on"] .about__features,
body[data-depth3d="on"] .perks-grid,
body[data-depth3d="on"] .opening__roadmap,
body[data-depth3d="on"] .opening__schedule-grid {
  perspective: 1400px;
}
body[data-depth3d="on"] .feature-card:hover,
body[data-depth3d="on"] .program-card:hover,
body[data-depth3d="on"] .perk-card:hover {
  box-shadow:
    0 24px 60px rgba(0,191,255,0.28),
    0 0 0 1px rgba(0,229,255,0.3) inset;
}

/* ================= INTENSITY MODES ================= */
body[data-intensity="calm"] .bolt,
body[data-intensity="calm"] .about-bolt,
body[data-intensity="calm"] .reserve__bolt { animation-duration: 8s !important; opacity: 0.4; }
body[data-intensity="calm"] .hero__scrim { backdrop-filter: none; }
body[data-intensity="calm"] .pulse-glow { animation-duration: 4s !important; }

body[data-intensity="nuclear"] .bolt,
body[data-intensity="nuclear"] .about-bolt,
body[data-intensity="nuclear"] .reserve__bolt { animation-duration: 1.8s !important; }
body[data-intensity="nuclear"] .pulse-glow { animation-duration: 1.2s !important; filter: saturate(1.3) brightness(1.05); }
body[data-intensity="nuclear"] .hero__h1 .accent,
body[data-intensity="nuclear"] .reserve__accent {
  text-shadow:
    0 0 30px rgba(0,229,255,0.8),
    0 0 60px rgba(0,191,255,0.5),
    0 0 100px rgba(0,191,255,0.3);
}
body[data-intensity="nuclear"]::before {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(0,229,255,0.05), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(0,191,255,0.04), transparent 40%);
  pointer-events: none;
  z-index: 0;
  animation: nuclear-flicker 3s ease-in-out infinite;
}
@keyframes nuclear-flicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* ================= MODE VISUAL HINTS ================= */
body[data-mode="pre-launch"] .hero__eyebrow::before { content: '🔒 '; }
body[data-mode="open"] .hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22E57A;
  box-shadow: 0 0 10px #22E57A;
  margin-right: 8px;
  vertical-align: middle;
  animation: live-blink 2s ease-in-out infinite;
}
@keyframes live-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
body[data-mode="anniversary"] .hero__eyebrow::before { content: '🎉 '; }

/* ================= LIVE HOURS PANEL (open mode) ================= */
.live-hours {
  max-width: 900px;
  margin: 40px auto 20px;
  padding: 24px 28px;
  background:
    linear-gradient(180deg, rgba(0,229,255,0.04) 0%, rgba(10,14,26,0) 50%),
    rgba(13,19,36,0.55);
  border: 1px solid rgba(0,229,255,0.22);
  border-radius: 20px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.04) inset,
    0 0 60px rgba(0,191,255,0.1) inset;
  position: relative;
  overflow: hidden;
}
.live-hours::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00E5FF, transparent);
  animation: live-sweep 3s ease-in-out infinite;
}
@keyframes live-sweep {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* Top row: badge + status text */
.live-hours__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.live-hours__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid;
}
.live-hours__badge--open {
  color: #22E57A;
  background: rgba(34,229,122,0.08);
  border-color: rgba(34,229,122,0.4);
  box-shadow: 0 0 20px rgba(34,229,122,0.15);
}
.live-hours__badge--closed {
  color: #E04F4F;
  background: rgba(224,79,79,0.08);
  border-color: rgba(224,79,79,0.4);
  box-shadow: 0 0 20px rgba(224,79,79,0.15);
}
.live-hours__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.live-hours__dot.is-open {
  background: #22E57A;
  box-shadow: 0 0 14px #22E57A;
  animation: live-blink 1.6s ease-in-out infinite;
}
.live-hours__dot.is-closed {
  background: #E04F4F;
  box-shadow: 0 0 14px #E04F4F;
}
.live-hours__sep { opacity: 0.5; }
.live-hours__clock { font-variant-numeric: tabular-nums; }

.live-hours__status-text {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-secondary);
  letter-spacing: 0.02em;
}
.live-hours__status-accent {
  color: var(--accent-glow);
  font-weight: 700;
}

/* Countdown digit boxes */
.live-hours__countdown {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.live-hours__count-sep {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 88px);
  color: var(--accent-glow);
  line-height: 1;
  padding-top: 20px;
  text-shadow: 0 0 30px rgba(0,229,255,0.5);
  animation: colon-pulse 1s ease-in-out infinite;
}
@keyframes colon-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.live-hours__digit-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.live-hours__digit-boxes {
  display: flex;
  gap: 6px;
}
.live-hours__digit-box {
  width: clamp(64px, 8vw, 116px);
  height: clamp(80px, 10vw, 150px);
  background: rgba(10,14,26,0.7);
  border: 1px solid rgba(0,229,255,0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 12px 36px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 0 28px rgba(0,229,255,0.12);
}
.live-hours__digit-val {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  text-shadow: 0 0 50px rgba(0,229,255,0.45);
  animation: digit-slide 0.45s cubic-bezier(0.22,1,0.36,1);
}
@keyframes digit-slide {
  0%   { transform: translateY(12px); opacity: 0; text-shadow: 0 0 0px rgba(0,229,255,0); }
  40%  { transform: translateY(-5px); opacity: 1; text-shadow: 0 0 40px rgba(0,229,255,0.7); }
  70%  { transform: translateY(1px); text-shadow: 0 0 20px rgba(0,229,255,0.35); }
  100% { transform: translateY(0); opacity: 1; text-shadow: 0 0 10px rgba(0,229,255,0.2); }
}
.live-hours__digit-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-tertiary);
}

/* Big countdown number */
.live-hours__big {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  text-align: center;
}
.live-hours__lead {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--fg-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.live-hours__num {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 900;
  line-height: 1;
  color: var(--fg-primary);
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 40px rgba(0,229,255,0.3);
  letter-spacing: -0.02em;
}
.live-hours__unit {
  font-size: 0.5em;
  color: var(--accent-glow);
  margin: 0 0.15em 0 0.05em;
}

/* Day progress bar */
.live-hours__progress-wrap {
  margin-bottom: 18px;
}
.live-hours__progress-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-tertiary);
  margin-bottom: 8px;
}
.live-hours__progress-track {
  height: 6px;
  background: rgba(192,200,212,0.1);
  border-radius: 999px;
  overflow: hidden;
}
.live-hours__progress-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #00BFFF, #00E5FF);
  box-shadow: 0 0 12px rgba(0,229,255,0.5);
  transition: width 1s ease-out;
}

/* Hours grid */
.live-hours__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0,229,255,0.12);
  border-radius: 12px;
  overflow: hidden;
}
.live-hours__row {
  padding: 18px 22px;
  background: rgba(10,14,26,0.8);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.live-hours__row.is-today {
  background: rgba(0,229,255,0.08);
  box-shadow: inset 0 2px 0 var(--accent-primary);
}
.live-hours__day {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--fg-secondary);
  text-transform: uppercase;
}
.live-hours__row.is-today .live-hours__day { color: var(--accent-glow); }
.live-hours__range {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--fg-primary);
  font-variant-numeric: tabular-nums;
  display: flex;
  align-items: center;
  gap: 10px;
}
.live-hours__range-open { color: var(--accent-glow); }
.live-hours__range-sep { color: var(--fg-tertiary); font-size: 12px; }
.live-hours__range-close { color: var(--fg-secondary); }

/* ================= TODAY'S SCHEDULE ================= */
.opening__schedule {
  max-width: 1100px;
  margin: 16px auto 20px;
  padding: 0 32px;
}
.opening__schedule-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 0 4px;
}
.opening__schedule-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--accent-glow);
}
.opening__schedule {
  max-width: 1100px;
  margin: 40px auto 20px;
  padding: 0 32px;
}
.opening__schedule-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 0 4px;
}
.opening__schedule-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--accent-glow);
}
.opening__schedule-date {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--fg-secondary);
  letter-spacing: 0.06em;
}
.opening__eq-groups {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 760px) {
  .opening__eq-groups { grid-template-columns: 1fr; }
}
.opening__eq-group {
  padding: 40px;
  background: linear-gradient(180deg, rgba(13,19,36,0.65), rgba(10,14,26,0.8));
  border: 1px solid rgba(0,229,255,0.12);
  border-radius: 20px;
  transition: border-color 200ms, transform 200ms, box-shadow 200ms;
}
.opening__eq-group:hover {
  transform: translateY(-3px);
  border-color: rgba(0,229,255,0.3);
  box-shadow: 0 12px 32px rgba(0,191,255,0.1);
}
.opening__eq-head {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-glow);
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(0,229,255,0.1);
}
.opening__eq-head svg {
  color: var(--accent-glow);
  width: 28px;
  height: 28px;
}
.opening__eq-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.opening__eq-item {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  color: var(--fg-primary);
  padding-left: 28px;
  position: relative;
  line-height: 1.8;
}
.opening__eq-item::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent-primary);
  font-size: 16px;
}

/* ================= RESERVE CTA ROW ================= */
.reserve__cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
  justify-content: center;
}
.reserve__btn2 { white-space: nowrap; }
.reserve__line {
  display: block;
  line-height: 1.02;
}
.reserve__line + .reserve__line { margin-top: 0.08em; }
@media (max-width: 720px) {
  .reserve__cta-row { flex-direction: column; }
  .reserve__cta-row .btn { width: 100%; }
  /* Live Hours Panel — phone-specific compact layout */
  .live-hours { padding: 14px 16px !important; margin: 20px auto 10px !important; text-align: center !important; }
  .live-hours__top {
    flex-direction: column !important;
    align-items: center !important;
    gap: 6px !important;
    margin-bottom: 10px !important;
  }
  .live-hours__badge { font-size: 11px !important; padding: 6px 12px !important; gap: 6px !important; }
  .live-hours__status-text { font-size: 12px !important; }
  .live-hours__countdown { gap: 6px !important; justify-content: center !important; }
  .live-hours__digit-box {
    width: 52px !important;
    height: 68px !important;
    border-radius: 10px !important;
  }
  .live-hours__digit-val { font-size: 38px !important; }
  .live-hours__count-sep { font-size: 30px !important; }
  .live-hours__digit-label { font-size: 9px !important; }
  .live-hours__big { margin-bottom: 12px !important; align-items: center !important; }
  .live-hours__lead { font-size: 14px !important; }
  .live-hours__num { font-size: 42px !important; }
  .live-hours__grid { grid-template-columns: 1fr !important; }
  .live-hours__row {
    padding: 14px 16px !important;
    align-items: center !important;
    text-align: center !important;
  }
  .live-hours__day { font-size: 13px !important; text-align: center !important; }
  .live-hours__range { font-size: 16px !important; justify-content: center !important; gap: 8px !important; }
  .reserve { padding: 80px 20px !important; min-height: 560px !important; }
  .reserve__art {
    display: block !important;
    height: 100% !important;
    width: 100% !important;
  }
  .reserve__art img {
    opacity: 0.55 !important;
    filter: contrast(1.15) saturate(1.2) !important;
    object-fit: cover !important;
    object-position: center !important;
    min-height: 100% !important;
    width: 100% !important;
  }
  .reserve__scrim {
    background: radial-gradient(ellipse at 50% 50%, rgba(10,14,26,0.25) 0%, rgba(10,14,26,0.65) 60%, rgba(10,14,26,0.85) 100%) !important;
  }
  .reserve__card { padding: 36px 24px !important; border-radius: 16px !important; }
  .reserve__eyebrow { font-size: 10px !important; padding: 8px 16px !important; margin-bottom: 20px !important; }
  .reserve__h { font-size: clamp(28px, 8vw, 48px) !important; }
  .reserve__sub { font-size: 15px !important; margin-bottom: 28px !important; max-width: 100% !important; }
  .reserve__cta-row {
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
  }
  .reserve__cta-row .btn,
  .reserve__btn,
  .reserve__btn2 {
    width: 100% !important;
    max-width: 320px !important;
    justify-content: center !important;
    padding: 14px 24px !important;
    font-size: 14px !important;
    min-height: 48px !important;
  }
  .reserve__h {
    text-shadow:
      0 0 20px rgba(0,229,255,0.5),
      0 0 40px rgba(0,191,255,0.3),
      0 4px 24px rgba(0,0,0,0.8) !important;
  }
}

/* ================= PHONE (≤480px) FIXES ================= */
@media (max-width: 480px) {
  /* Live Hours countdown — fit in narrow viewport */
  .live-hours { padding: 14px 12px !important; margin: 16px 8px 8px !important; }
  .live-hours__countdown {
    gap: 4px !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    justify-content: center !important;
  }
  .live-hours__digit-cell { gap: 4px !important; }
  .live-hours__digit-boxes { gap: 3px !important; }
  .live-hours__digit-box {
    width: 38px !important;
    height: 52px !important;
    border-radius: 8px !important;
  }
  .live-hours__digit-val { font-size: 28px !important; }
  .live-hours__count-sep {
    font-size: 22px !important;
    line-height: 52px !important;
    padding-top: 0 !important;
  }
  .live-hours__digit-label {
    font-size: 8px !important;
    letter-spacing: 0.1em !important;
  }
  .live-hours__top { margin-bottom: 8px !important; }
  .live-hours__progress-wrap { margin-bottom: 12px !important; }

  /* Pre-launch countdown — also constrain */
  .countdown { gap: 6px !important; flex-wrap: nowrap !important; }
  .countdown__digit { width: 38px !important; height: 56px !important; }
  .countdown__digit-inner { font-size: 28px !important; }
  .countdown__sep { font-size: 24px !important; line-height: 56px !important; }

  /* Section padding tighter */
  .section { padding: 64px 16px !important; }
}
