/* ================================================================
   THE ARENA AT TOWN SQUARE — Investor Presentation Design System
   Premium Cinematic Aesthetic | Dark Luxury | Gold Accents
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&display=swap');

/* ── CSS Custom Properties ──────────────────────────────────── */
:root {
  /* Core Palette */
  --black: #000000;
  --deep: #050505;
  --charcoal: #0A0A0A;
  --carbon: #111111;
  --graphite: #1A1A1A;
  --slate: #2A2A2A;
  --muted: #666666;
  --silver: #999999;
  --light: #CCCCCC;
  --ivory: #F0F0F0;
  --white: #FFFFFF;

  /* Accent Colors */
  --gold: #D4AF37;
  --gold-light: #E8C84A;
  --gold-dark: #B8960E;
  --gold-glow: rgba(212, 175, 55, 0.15);
  --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F5D060 50%, #D4AF37 100%);
  --red: #C41E3A;
  --red-glow: rgba(196, 30, 58, 0.15);
  --green: #16A34A;
  --blue: #3B82F6;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing Scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
  --duration-fast: 0.2s;
  --duration-normal: 0.4s;
  --duration-slow: 0.8s;
  --duration-glacial: 1.2s;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--ivory);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

a:hover { color: var(--gold-light); }

::selection {
  background: var(--gold);
  color: var(--black);
}

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1008;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all var(--duration-normal) var(--ease-out);
  background: transparent;
  max-width: 100vw;
  overflow: visible;
}

.nav.scrolled {
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.75rem 2rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav-logo a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  object-fit: contain;
}

.nav-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  margin-left: auto;
  flex-shrink: 1;
  flex-wrap: nowrap;
}

.nav-links a {
  white-space: nowrap;
}

/* ── Hamburger Menu ────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1015;
}

.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s ease;
}

.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-links li a {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--silver);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color var(--duration-fast) var(--ease-out);
  position: relative;
  white-space: nowrap;
}

.nav-links li a.nav-active {
  color: var(--gold);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--duration-normal) var(--ease-out);
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 0.5rem 1.25rem;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all var(--duration-normal) var(--ease-out);
  cursor: pointer;
  flex-shrink: 0;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--black) !important;
}

/* ── Hero Section ───────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.95) 0%,
    rgba(0,0,0,0.6) 30%,
    rgba(0,0,0,0.2) 60%,
    rgba(0,0,0,0.4) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 5vw 6vh;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.hero-title .gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--light);
  line-height: 1.8;
  max-width: 650px;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--silver);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 0.35rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: 3rem;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--silver);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: float 3s ease-in-out infinite;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

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

@keyframes scroll-line {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

/* ── Section Base ───────────────────────────────────────────── */
.section {
  padding: var(--space-4xl) 5vw;
  position: relative;
}

.section-dark { background: var(--charcoal); }
.section-deeper { background: var(--deep); }
.section-carbon { background: var(--carbon); }

.section-header {
  max-width: 800px;
  margin-bottom: var(--space-3xl);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.section-label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}

.section-desc {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.85;
  max-width: 680px;
}

/* ── Cards ──────────────────────────────────────────────────── */
.card {
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(255,255,255,0.06);
  padding: var(--space-lg);
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-out);
}

.card:hover {
  border-color: rgba(212, 175, 55, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.card:hover::before { opacity: 1; }

.card-gold {
  border-color: rgba(212, 175, 55, 0.15);
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(212, 175, 55, 0.03));
}

.card-metric {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
}

.card-metric-value {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.card-metric-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--silver);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.card-metric-sub {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.75rem;
  line-height: 1.5;
}

/* ── Grid Layouts ───────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); }

.grid-metric { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; }
.grid-metric .card-metric { border: none; background: rgba(26, 26, 26, 0.4); }

/* ── Split Layout ──────────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

/* ── Image Sections ─────────────────────────────────────────── */
.image-showcase {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.image-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-glacial) var(--ease-out);
}

.image-showcase:hover img {
  transform: scale(1.03);
}

.image-showcase-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem 2rem 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

.image-showcase-caption h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.image-showcase-caption p {
  font-size: 0.85rem;
  color: var(--silver);
}

/* ── Full Bleed Image ───────────────────────────────────────── */
.full-bleed {
  position: relative;
  width: 100%;
  min-height: 70vh;
  overflow: hidden;
}

.full-bleed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.full-bleed-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
  display: flex;
  align-items: center;
  padding: 0 5vw;
}

.full-bleed-content {
  max-width: 550px;
}

/* ── Org Chart ──────────────────────────────────────────────── */
.org-chart {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: var(--space-xl) 0;
}

.org-node {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.2);
  min-width: 320px;
  text-align: center;
  position: relative;
}

.org-node-primary {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
  border-color: var(--gold);
  padding: 1.25rem 2.5rem;
}

.org-node-title {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
  letter-spacing: 0.5px;
}

.org-node-sub {
  font-size: 0.7rem;
  color: var(--silver);
  margin-top: 0.15rem;
}

.org-connector {
  width: 1px;
  height: 30px;
  background: var(--gold);
  opacity: 0.4;
}

.org-branch {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}

.org-branch::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: rgba(212, 175, 55, 0.3);
}

.org-branch .org-node {
  min-width: 220px;
  padding: 0.85rem 1.25rem;
}

.org-branch .org-node::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 50%;
  width: 1px;
  height: 15px;
  background: rgba(212, 175, 55, 0.3);
}

/* ── Arena Levels Diagram ───────────────────────────────────── */
.arena-levels {
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-width: 900px;
  margin: 0 auto;
}

.arena-level {
  display: flex;
  align-items: center;
  background: rgba(26, 26, 26, 0.5);
  border-left: 3px solid var(--gold);
  padding: 1.5rem 2rem;
  gap: 2rem;
  transition: all var(--duration-normal) var(--ease-out);
}

.arena-level:hover {
  background: rgba(212, 175, 55, 0.05);
  border-left-color: var(--gold-light);
  transform: translateX(4px);
}

.arena-level-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  min-width: 60px;
  line-height: 1;
}

.arena-level-info {
  flex: 1;
}

.arena-level-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.arena-level-desc {
  font-size: 0.9rem;
  color: var(--silver);
  line-height: 1.6;
}

.arena-level-meta {
  text-align: right;
  min-width: 150px;
}

.arena-level-capacity {
  font-weight: 700;
  color: var(--gold);
  font-size: 1.1rem;
}

.arena-level-price {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── Floor Plan ─────────────────────────────────────────────── */
.floorplan {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(4, 120px);
  gap: 3px;
  max-width: 1000px;
  margin: 0 auto;
}

.floorplan-zone {
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  transition: all var(--duration-normal) var(--ease-out);
  cursor: pointer;
}

.floorplan-zone:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.3);
}

.floorplan-zone-name {
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.floorplan-zone-sqft {
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 600;
}

.floorplan-zone-pct {
  font-size: 0.65rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

/* Arena zone */
.zone-arena { grid-column: 2 / 6; grid-row: 1 / 4; background: rgba(212, 175, 55, 0.06); border-color: rgba(212, 175, 55, 0.2); }
.zone-arena .floorplan-zone-name { font-size: 1.2rem; }
.zone-arena .floorplan-zone-sqft { font-size: 0.9rem; }

/* ── Revenue Chart ──────────────────────────────────────────── */
.revenue-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.revenue-bar-label {
  min-width: 200px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--light);
}

.revenue-bar-track {
  flex: 1;
  height: 28px;
  background: rgba(26, 26, 26, 0.6);
  position: relative;
  overflow: hidden;
}

.revenue-bar-fill {
  height: 100%;
  background: var(--gold-gradient);
  transition: width 1.5s var(--ease-out);
  display: flex;
  align-items: center;
  padding-left: 0.75rem;
}

.revenue-bar-fill.red { background: linear-gradient(90deg, #C41E3A, #E8384F); }
.revenue-bar-fill.green { background: linear-gradient(90deg, #16A34A, #22C55E); }
.revenue-bar-fill.blue { background: linear-gradient(90deg, #3B82F6, #60A5FA); }

.revenue-bar-value {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  min-width: 100px;
  text-align: right;
}

/* ── Financial Table ────────────────────────────────────────── */
.fin-table {
  width: 100%;
  border-collapse: collapse;
}

.fin-table th {
  text-align: left;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  background: rgba(212, 175, 55, 0.03);
}

.fin-table td {
  padding: 0.85rem 1.25rem;
  font-size: 0.9rem;
  color: var(--light);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.fin-table tr:hover td {
  background: rgba(212, 175, 55, 0.03);
}

.fin-table .total td {
  font-weight: 700;
  color: var(--gold);
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  border-bottom: none;
  font-size: 1rem;
  padding-top: 1rem;
}

.fin-table td:last-child,
.fin-table th:last-child {
  text-align: right;
}

/* ── Timeline ───────────────────────────────────────────────── */
.timeline {
  position: relative;
  padding-left: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), rgba(212, 175, 55, 0.1));
}

.timeline-item {
  position: relative;
  padding-bottom: var(--space-xl);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -3rem;
  top: 0.5rem;
  width: 10px;
  height: 10px;
  background: var(--gold);
  transform: translateX(-4.5px) rotate(45deg);
}

.timeline-item-phase {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.timeline-item-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.timeline-item-desc {
  font-size: 0.9rem;
  color: var(--silver);
  line-height: 1.7;
}

/* ── Dividers ───────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
  margin: var(--space-2xl) 0;
}

.divider-thick {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ── Scroll Animations ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all var(--duration-slow) var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all var(--duration-slow) var(--ease-out);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all var(--duration-slow) var(--ease-out);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ── Counter Animation ──────────────────────────────────────── */
.counter {
  display: inline-block;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out);
  border: none;
}

.btn-gold {
  background: var(--gold-gradient);
  color: var(--black);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
  color: var(--black);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--gold);
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--gold);
}

/* ── Quote / Callout ────────────────────────────────────────── */
.callout {
  border-left: 2px solid var(--gold);
  padding: var(--space-lg) var(--space-xl);
  background: rgba(212, 175, 55, 0.03);
  margin: var(--space-xl) 0;
}

.callout-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  font-style: italic;
  color: var(--light);
  line-height: 1.7;
}

.callout-source {
  font-size: 0.8rem;
  color: var(--gold);
  margin-top: 1rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 1px;
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  padding: var(--space-3xl) 5vw var(--space-xl);
  background: var(--black);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-3xl);
}

.footer-brand h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--silver);
  max-width: 400px;
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-legal {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.8;
}

.footer-legal strong {
  color: var(--gold);
  font-weight: 600;
}

/* ── Utility ────────────────────────────────────────────────── */
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-silver { color: var(--silver); }
.text-muted { color: var(--muted); }
.text-center { text-align: center; }
.text-right { text-align: right; }
.font-display { font-family: var(--font-display); }
.font-bold { font-weight: 700; }
.mt-1 { margin-top: var(--space-sm); }
.mt-2 { margin-top: var(--space-md); }
.mt-3 { margin-top: var(--space-lg); }
.mt-4 { margin-top: var(--space-xl); }
.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-lg); }
.max-w-narrow { max-width: 680px; }
.max-w-mid { max-width: 900px; }
.max-w-wide { max-width: 1200px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: var(--space-sm); }
.gap-2 { gap: var(--space-md); }
.gap-3 { gap: var(--space-lg); }

/* ── Feature Split ──────────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }

/* ── Image Showcase ────────────────────────────────────────── */
.image-showcase {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.image-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.image-showcase:hover img {
  transform: scale(1.05);
}

.image-showcase-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
  z-index: 2;
}

.image-showcase-caption h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.image-showcase-caption p {
  font-size: 0.8rem;
  color: var(--silver);
  line-height: 1.5;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: var(--space-xl); }

  .nav-hamburger {
    display: flex;
    margin-left: auto;
  }

  .nav-links {
    /* USE VISIBILITY NOT DISPLAY — iOS Safari breaks display:none on fixed when scrolled */
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    /* USE ABSOLUTE not nested fixed — iOS breaks fixed-inside-fixed */
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 1.5rem 2rem;
    background: #0a0a0a;
    z-index: 1010;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }

  .nav-links.open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links li {
    width: 100%;
    max-width: 280px;
    list-style: none;
    text-align: center;
  }

  .nav-links li a {
    display: block;
    padding: 0.9rem 0;
    font-size: 0.95rem;
    color: var(--silver);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  .nav-links li a:hover,
  .nav-links li a.nav-active {
    color: var(--gold);
  }

  .nav-links li:last-child a.nav-cta {
    margin-top: 1rem;
    text-align: center;
    border: 1px solid var(--gold);
    padding: 0.6rem 1.25rem;
    color: var(--gold);
    border-bottom: 1px solid var(--gold);
  }

  .hero-stats { gap: 2rem; }
  .floorplan { grid-template-columns: repeat(3, 1fr); }
  .zone-arena { grid-column: 1 / 4; grid-row: 1 / 3; }
}

/* Mobile overlay backdrop */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1005;
}
.nav-overlay.active { display: block; }

@media (max-width: 768px) {
  .section { padding: var(--space-2xl) 1.25rem; }
  .grid-4 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .split .divider { display: block !important; margin: var(--space-lg) 0; }
  .grid-metric { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { flex-direction: column; gap: 1.25rem; }
  .hero-content { padding: 0 1.25rem 4vh; }
  .hero-title { font-size: clamp(2rem, 8vw, 3.5rem); }
  .hero-subtitle { font-size: 0.9rem; }
  .section-title { font-size: clamp(1.5rem, 5vw, 2.5rem); }
  .nav { padding: 0.75rem 1.25rem; }
  .org-branch { flex-direction: column; align-items: center; }
  .revenue-bar { flex-direction: column; align-items: flex-start; }
  .revenue-bar-label { min-width: unset; font-size: 0.8rem; }
  .revenue-bar-track { width: 100%; }
  .revenue-bar-value { font-size: 0.85rem; }
  .floorplan { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .zone-arena { grid-column: 1 / 3; grid-row: auto; }
  .image-showcase { aspect-ratio: 16 / 9; }
  .image-showcase-caption { padding: 1rem; }
  .image-showcase-caption h3 { font-size: 1rem; }
  .fin-table { font-size: 0.78rem; width: 100%; table-layout: auto; box-sizing: border-box; }
  .fin-table th, .fin-table td { padding: 0.6rem 0.4rem; white-space: normal; word-wrap: break-word; overflow-wrap: break-word; }
  .fin-table td:last-child, .fin-table th:last-child { text-align: right; }
  .hide-mobile { display: none !important; }
  * { box-sizing: border-box; }
  html, body { overflow-x: hidden; max-width: 100vw; }
  .split > *, .grid-2 > *, .grid-3 > *, .grid-4 > * { min-width: 0; overflow: hidden; }
  canvas { max-width: 100% !important; height: auto !important; }
  .card-metric-value { font-size: clamp(1.5rem, 6vw, 2.5rem); }
  .split { gap: var(--space-lg); }
  .callout { padding: 1.25rem; }
  .access-gate-inner { padding: 1.5rem; }
  .access-gate-title { font-size: 1.35rem; margin-bottom: 1.25rem; }
  .nav.scrolled { padding: 0.6rem 1.25rem; }
  .nav-logo-text { font-size: 0.95rem; }
  .callout-text { font-size: 0.85rem !important; line-height: 1.7 !important; }
  .callout { padding: 1rem 1.25rem; }
  .section-desc { font-size: 0.9rem; }
  table { max-width: 100%; }
  .fin-table .total td { font-size: 0.85rem; }
  .sensitivity-table { font-size: 0.72rem; table-layout: fixed; width: 100%; }
  .sensitivity-table th, .sensitivity-table td { padding: 0.5rem 0.3rem; text-align: center; }
  .sensitivity-table td:first-child, .sensitivity-table th:first-child { text-align: left; width: 30%; }
}

@media (max-width: 480px) {
  .section { padding: var(--space-xl) 1rem; }
  .hero { min-height: 70vh; }
  .hero-content { padding: 0 1rem 3vh; }
  .hero-title { font-size: clamp(1.6rem, 9vw, 2.5rem); }
  .hero-subtitle { font-size: 0.85rem; line-height: 1.6; }
  .hero-badge { font-size: 0.55rem; padding: 0.4rem 1rem; }
  .section-title { font-size: clamp(1.3rem, 6vw, 2rem); }
  .section-desc { font-size: 0.9rem; }
  .grid-metric { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .card-metric { padding: 1rem; }
  .card-metric-value { font-size: clamp(1.2rem, 5vw, 2rem); }
  .card-metric-label { font-size: 0.65rem; }
  .card { padding: 1.25rem; }
  .fin-table { font-size: 0.7rem; }
  .fin-table th, .fin-table td { padding: 0.4rem 0.5rem; }
  .btn { font-size: 0.7rem; padding: 0.7rem 1.25rem; }
  .btn-gold { font-size: 0.7rem; }
  .nav { padding: 0.6rem 1rem; }
  .nav-logo-icon { width: 30px; height: 30px; font-size: 0.75rem; }
  .nav-logo-text { font-size: 0.9rem; }
  .access-gate-inner { padding: 1.25rem; width: 95%; }
  .access-gate-title { font-size: 1.15rem; }
  .access-gate-input { font-size: 0.9rem; padding: 0.75rem 1rem; letter-spacing: 3px; }
  .footer { padding: 1.5rem 1rem; }
  .footer-legal { font-size: 0.65rem; }
  .split { gap: var(--space-md); }
  .image-showcase { aspect-ratio: 4 / 3; }
}

/* ── Access Gate / Password Protection ──────────────────────── */
.access-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

.access-gate.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.access-gate-inner {
  max-width: 560px;
  width: 90%;
  padding: 3rem;
}

.access-gate-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.access-gate-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: -0.5px;
}

/* Legal text is now inline — no scroll container needed */


.access-gate-input {
  width: 100%;
  padding: 0.85rem 1.25rem;
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 4px;
  text-align: center;
  outline: none;
  transition: border-color var(--duration-fast) var(--ease-out);
}

.access-gate-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

.access-gate-input::placeholder {
  color: var(--muted);
  letter-spacing: 6px;
}

/* ── Print Styles ───────────────────────────────────────────── */
@media print {
  .nav, .hero-scroll { display: none; }
  .section { padding: 2rem 1rem; page-break-inside: avoid; }
  body { background: white; color: #1A1A1A; }
  .hero { height: auto; min-height: unset; padding: 3rem 1rem; }
  .hero-bg { display: none; }
  .card { border: 1px solid #ddd; box-shadow: none; }
  .section-title, .hero-title { color: #1A1A1A; }
  .reveal, .reveal-left, .reveal-right { opacity: 1; transform: none; }
  .gold, .text-gold, .card-metric-value { color: #B8960E !important; -webkit-text-fill-color: #B8960E !important; }
}

/* ================================================================
   PREMIUM UI ENHANCEMENTS — Visual Polish & Micro-Interactions
   ================================================================ */

/* ── Gold Shimmer on Hero Titles ─────────────────────────────── */
@keyframes gold-shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.hero-title .gold {
  background: linear-gradient(
    90deg,
    #D4AF37 0%,
    #F5D060 25%,
    #FFF8DC 50%,
    #F5D060 75%,
    #D4AF37 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gold-shimmer 6s linear infinite;
}

/* ── Subtle Section Separator Lines ──────────────────────────── */
.section + .section::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
  position: absolute;
  top: 0;
  left: 0;
}

/* ── Enhanced Card Hover Glow ────────────────────────────────── */
.card::after {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), transparent 50%, rgba(212, 175, 55, 0.04));
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-out);
  pointer-events: none;
  z-index: 0;
}

.card:hover::after {
  opacity: 1;
}

.card > * {
  position: relative;
  z-index: 1;
}

/* ── Gold Accent Pulse on Section Labels ─────────────────────── */
@keyframes label-glow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.section-label::before {
  animation: label-glow 3s ease-in-out infinite;
}

/* ── Premium Button Enhancements ─────────────────────────────── */
.btn-gold {
  position: relative;
  overflow: hidden;
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s var(--ease-out);
}

.btn-gold:hover::before {
  left: 100%;
}

.btn-gold:hover {
  box-shadow: 
    0 10px 40px rgba(212, 175, 55, 0.3),
    0 0 60px rgba(212, 175, 55, 0.1);
}

/* ── Card Metric Value Glow ──────────────────────────────────── */
.card-metric-value {
  text-shadow: 0 0 40px rgba(212, 175, 55, 0.15);
}

/* ── Image Showcase Premium Border ───────────────────────────── */
.image-showcase {
  border: 1px solid rgba(212, 175, 55, 0.08);
  transition: border-color var(--duration-normal) var(--ease-out);
}

.image-showcase:hover {
  border-color: rgba(212, 175, 55, 0.25);
}

.image-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-out);
  z-index: 3;
}

.image-showcase:hover::before {
  opacity: 1;
}

/* ── Financial Table Row Highlight ───────────────────────────── */
.fin-table tr {
  transition: all var(--duration-fast) var(--ease-out);
}

.fin-table tbody tr:hover {
  background: rgba(212, 175, 55, 0.04);
}

.fin-table tbody tr:hover td:first-child {
  color: var(--gold);
}

/* ── Stat Cards Entrance Stagger ─────────────────────────────── */
.grid-metric .card-metric:nth-child(1) { transition-delay: 0s; }
.grid-metric .card-metric:nth-child(2) { transition-delay: 0.1s; }
.grid-metric .card-metric:nth-child(3) { transition-delay: 0.2s; }
.grid-metric .card-metric:nth-child(4) { transition-delay: 0.3s; }

/* ── Enhanced Callout Styling ────────────────────────────────── */
.callout {
  position: relative;
  overflow: hidden;
}

.callout::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold-light), var(--gold), var(--gold-dark));
}

/* ── Nav Scrolled Premium Shadow ─────────────────────────────── */
.nav.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

/* ── Hero Badge Pulse Enhancement ────────────────────────────── */
.hero-badge {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* ── Footer Gold Line ────────────────────────────────────────── */
.footer::before {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold-gradient);
  margin-bottom: var(--space-xl);
}

/* ── Section Background Subtle Radial Glow ───────────────────── */
.section-dark {
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(212, 175, 55, 0.02) 0%, transparent 60%),
    var(--charcoal);
}

.section-deeper {
  background: 
    radial-gradient(ellipse at 80% 50%, rgba(212, 175, 55, 0.015) 0%, transparent 60%),
    var(--deep);
}

/* ── Timeline Enhanced Markers ───────────────────────────────── */
.timeline-item::before {
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.3);
}

/* ── Arena Level Hover Enhancement ───────────────────────────── */
.arena-level {
  position: relative;
}

.arena-level::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--gold-light), var(--gold));
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-out);
}

.arena-level:hover::before {
  opacity: 1;
}

/* ── Smooth Loading Fade-In ──────────────────────────────────── */
@keyframes page-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

body {
  animation: page-fade-in 0.8s var(--ease-out);
}

/* ── Gold Gradient Text Utility ──────────────────────────────── */
.gold-gradient-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Focus Styles for Accessibility ──────────────────────────── */
a:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ── 3D Card Tilt Hover ─────────────────────────────────────── */
.card-tilt {
  transform-style: preserve-3d;
  perspective: 1000px;
}

.card-tilt:hover {
  transform: perspective(1000px) rotateX(2deg) rotateY(-3deg) translateY(-4px);
  box-shadow: 
    0 25px 60px rgba(0,0,0,0.5),
    0 0 30px rgba(212, 175, 55, 0.06);
}

/* ── Parallax Hero ──────────────────────────────────────────── */
.hero-bg.parallax img {
  will-change: transform;
  transition: transform 0.1s linear;
}

/* ── Gold Particle Canvas ───────────────────────────────────── */
.gold-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.gold-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particle-float linear infinite;
}

@keyframes particle-float {
  0% {
    opacity: 0;
    transform: translateY(100%) translateX(0);
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    opacity: 0;
    transform: translateY(-100vh) translateX(50px);
  }
}

/* ── Counter Completed Glow ─────────────────────────────────── */
.counter-complete {
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.4), 0 0 60px rgba(212, 175, 55, 0.1);
  transition: text-shadow 0.6s var(--ease-out);
}

/* ── Date Stamp ─────────────────────────────────────────────── */
.footer-date {
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 1rem;
}

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

/* ── Tablet (≤1024px) ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .nav { padding: 1rem 2rem; }
  .nav.scrolled { padding: 0.75rem 2rem; }
  .nav-links { gap: 1rem; }
  .nav-links li a { font-size: 0.65rem; letter-spacing: 1px; }
  
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-metric { grid-template-columns: repeat(2, 1fr); }
  
  .hero-title { font-size: clamp(2.5rem, 5vw, 4.5rem); }
  .hero-stats { gap: 2rem; }
  
  .org-branch { gap: 0.5rem; }
  .org-branch .org-node { min-width: 180px; }
  .org-node { min-width: 260px; }
  
  .arena-level { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .arena-level-meta { text-align: left; min-width: unset; }
  
  .floorplan { grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; }
}

/* ── Mobile Nav (<768px) ─────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    height: 100dvh;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    padding: 2rem 1.5rem;
    transition: right 0.4s var(--ease-out);
    z-index: 1010;
    border-left: 1px solid rgba(212, 175, 55, 0.15);
    overflow-y: auto;
  }
  
  .nav-links.open { right: 0; }
  
  .nav-links li {
    display: block;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  
  .nav-links li:last-child { border-bottom: none; }
  
  .nav-links li a,
  .nav-links li a.nav-cta {
    display: block;
    width: 100%;
    padding: 1rem 0.5rem;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-align: left;
    min-height: 48px;
    line-height: 48px;
    position: relative;
    z-index: 2;
    pointer-events: auto;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(212, 175, 55, 0.15);
    user-select: none;
    -webkit-user-select: none;
  }
  
  .nav-links li a.nav-cta {
    margin-top: 1rem;
    text-align: center;
    line-height: normal;
    padding: 1rem;
    border: 1px solid var(--gold);
  }
  
  .nav-links a::after { display: none; }
  
  .nav-overlay {
    display: none;
  }
  
  .nav-overlay.active {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1009;
  }
  
  /* Grids */
  .grid-2, .grid-3, .grid-4, .split { grid-template-columns: 1fr; }
  .grid-metric { grid-template-columns: repeat(2, 1fr); }
  
  /* Hero */
  .hero { min-height: 85vh; }
  .hero-content { padding: 0 5vw 4vh; }
  .hero-title { font-size: clamp(1.85rem, 7vw, 3rem); line-height: 1.15; }
  .hero-subtitle { font-size: 0.9rem; line-height: 1.75; max-width: 90vw; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .hero-stat-value { font-size: 1.75rem; }
  .hero-stat { text-align: left; }
  .hero-scroll { display: none; }
  .hero-badge { font-size: 0.6rem; padding: 0.4rem 1rem; }
  
  /* Sections */
  .section { padding: var(--space-2xl) 5vw; }
  .section-title { font-size: clamp(1.5rem, 5.5vw, 2.25rem); line-height: 1.25; }
  .section-desc { font-size: 0.9rem; line-height: 1.75; }
  
  /* Footer tighter on mobile */
  .footer { padding: var(--space-xl) 5vw var(--space-lg); }
  .footer-brand h2 { font-size: 1.25rem; }
  .footer-brand p { font-size: 0.8rem; }
  .footer-legal { font-size: 0.7rem; line-height: 1.6; }
  .footer-date { font-size: 0.6rem; }
  
  /* Cards */
  .card-metric-value { font-size: 2rem; }
  
  /* Org Chart */
  .org-node { min-width: unset; width: 100%; max-width: 300px; }
  .org-branch { flex-direction: column; align-items: center; }
  .org-branch .org-node { min-width: unset; width: 100%; max-width: 260px; }
  .org-branch::before { display: none; }
  .org-branch .org-node::before { display: none; }
  
  /* Tables */
  .fin-table { font-size: 0.7rem; }
  .fin-table th, .fin-table td { padding: 0.5rem; }
  
  /* Moat Grid */
  .section div[style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  /* Event Calendar Grid */
  .section div[style*="grid-template-columns:repeat(4,1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  /* Floor plan */
  .floorplan { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .floorplan-zone { min-height: 100px; }
  
  /* Full bleed */
  .full-bleed { min-height: 50vh; }
  .full-bleed-overlay { padding: 0 5vw; }
  .full-bleed-content { max-width: 100%; }
  
  /* Footer */
  .footer-top { flex-direction: column; gap: 2rem; }
  
  /* Buttons */
  .btn { min-height: 44px; padding: 0.75rem 1.5rem; font-size: 0.75rem; }

  /* Table scroll wrapper */
  .fin-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }

  /* Inline style grid overrides */
  div[style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
  div[style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
  div[style*="grid-template-columns:repeat(2"] { grid-template-columns: 1fr !important; }
  div[style*="grid-template-columns:repeat(3"] { grid-template-columns: 1fr !important; }
  div[style*="grid-template-columns:repeat(4"] { grid-template-columns: 1fr !important; }
  
  /* Prevent any horizontal overflow */
  .section, .footer { overflow-x: hidden; word-break: break-word; }
  
  /* Timeline card overflow */
  .card, .callout { overflow-wrap: break-word; word-wrap: break-word; }
  
  /* Capital stack flex wrap */
  div[style*="justify-content:space-between"] { flex-wrap: wrap; gap: 0.5rem; }

  /* Image showcase full width */
  .image-showcase img { width: 100%; }
  
  /* Access gate mobile */
  .access-gate-inner { padding: 2rem 1.5rem; width: 95%; }
}

/* ── Small Mobile (<480px) ───────────────────────────────────── */
@media (max-width: 480px) {
  .nav { padding: 0.75rem 1rem; }
  .nav.scrolled { padding: 0.5rem 1rem; }
  .nav-logo-text { font-size: 1rem; }
  
  .grid-metric { grid-template-columns: 1fr 1fr; }
  .card-metric { padding: var(--space-md) var(--space-sm); }
  .card-metric-value { font-size: 1.75rem; }
  
  .hero-title { font-size: clamp(1.75rem, 10vw, 2.75rem); }
  .hero-subtitle { font-size: 0.85rem; line-height: 1.65; }
  .hero-badge { font-size: 0.6rem; padding: 0.4rem 1rem; }
  
  .section { padding: var(--space-2xl) 4vw; }
  .section-title { font-size: clamp(1.5rem, 7vw, 2rem); }
  
  /* Card padding tighter */
  .card { padding: var(--space-md); }
  
  /* Fix inline style grids for moat on very small screens */
  .section div[style*="grid-template-columns:repeat(3,1fr)"],
  .section div[style*="grid-template-columns:repeat(4,1fr)"] {
    grid-template-columns: 1fr 1fr !important;
  }
  
  /* Tables horizontal scroll indicator */
  .fin-table { font-size: 0.65rem; }
  
  /* Nav CTA */
  .nav-cta { padding: 0.5rem 1rem; font-size: 0.65rem; }
  
  /* Force all max-width containers to full width */
  div[style*="max-width"] { max-width: 100% !important; }
  
  /* Hero stats stack */
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .hero-stat { text-align: left; }
  
  /* Financing card-gold */
  .card-gold { width: 100%; }
  
  /* Timeline padding mobile */
  div[style*="padding-left:3rem"] { padding-left: 2.5rem !important; }
}

/* ── Touch-friendly minimum targets ─────────────────────────── */
@media (hover: none) and (pointer: coarse) {
  .card:hover { transform: none; }
  .card:hover::before { opacity: 0; }
  .card:hover::after { opacity: 0; }
  .card-tilt:hover { transform: none; }
  .arena-level:hover { transform: none; }
  .image-showcase:hover img { transform: none; }
  
  .btn, a.nav-cta { min-height: 44px; }
}

/* ── Prefer reduced motion ──────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .gold-particle { display: none; }
  .hero-bg.parallax img { transform: none !important; }
}

