/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --orange: #FF6B00;
  --orange-light: #FF8C00;
  --orange-dark: #CC4400;
  --dark: #0A0A12;
  --dark-2: #12121F;
  --dark-3: #1A1A2E;
  --white: #FFFFFF;
  --gray: #8888AA;
  --gray-light: #CCCCDD;
  --blue: #0066CC;
  --blue-light: #3399FF;
}
html { scroll-behavior: smooth; }
body { background: var(--dark); color: var(--white); font-family: 'DM Sans', sans-serif; font-weight: 400; line-height: 1.6; overflow-x: hidden; }
/* === TYPOGRAPHY === */
h1, h2, h3, h4 { font-family: 'Bebas Neue', sans-serif; line-height: 1.1; letter-spacing: 0.02em; }
.section-tag { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange); border: 1px solid var(--orange); padding: 4px 10px; border-radius: 2px; margin-bottom: 20px; }
/* === NAV === */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 16px 40px; border-bottom: 1px solid rgba(255,107,0,0.15); background: rgba(10,10,18,0.85); backdrop-filter: blur(12px); }
.nav-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.nav-logo { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 0.05em; color: var(--white); }
.nav-logo span { color: var(--orange); }
.nav-tag { font-size: 12px; color: var(--gray); letter-spacing: 0.1em; }
/* === HERO === */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding: 120px 40px 80px; }
.hero-bg { position: absolute; inset: 0; }
.hero-slope { position: absolute; bottom: 0; left: 0; right: 0; height: 60%; background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark-3) 100%); clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 100%); }
.hero-glow { position: absolute; top: 20%; right: 15%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(255,107,0,0.08) 0%, transparent 70%); pointer-events: none; }
.hero-lines { position: absolute; inset: 0; overflow: hidden; }
.line { position: absolute; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,107,0,0.15), transparent); }
.line-1 { top: 20%; left: 0; right: 0; transform: rotate(-5deg); }
.line-2 { top: 40%; left: 0; right: 0; transform: rotate(-3deg); }
.line-3 { top: 60%; left: 0; right: 0; transform: rotate(-7deg); }
.line-4 { top: 75%; left: 0; right: 0; transform: rotate(-2deg); }
.line-5 { top: 88%; left: 0; right: 0; transform: rotate(-4deg); }
.hero-slide-graphic { position: absolute; right: 5%; top: 50%; transform: translateY(-50%); width: 320px; opacity: 0.85; }
.hero-slide-graphic svg { width: 100%; height: auto; }
.hero-content { position: relative; z-index: 2; max-width: 680px; }
.hero-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--orange); margin-bottom: 20px; }
.hero-headline { font-size: clamp(56px, 8vw, 96px); color: var(--white); margin-bottom: 28px; }
.hero-headline br { display: block; }
.hero-sub { font-size: 17px; color: var(--gray-light); max-width: 520px; margin-bottom: 32px; line-height: 1.7; }
.hero-meta { display: flex; align-items: center; gap: 16px; font-size: 13px; color: var(--gray); }
.hero-divider { width: 1px; height: 12px; background: var(--gray); opacity: 0.4; }
/* === STATS === */
.stats { background: var(--dark-2); border-top: 1px solid rgba(255,107,0,0.15); border-bottom: 1px solid rgba(255,107,0,0.15); padding: 40px 40px; }
.stats-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.stat { text-align: center; flex: 1; }
.stat-number { font-family: 'Bebas Neue', sans-serif; font-size: 48px; color: var(--orange); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 13px; color: var(--gray-light); line-height: 1.4; }
.stat-label span { color: var(--gray); }
.stat-sep { width: 1px; height: 60px; background: rgba(255,107,0,0.2); flex-shrink: 0; }
/* === WHAT === */
.what { padding: 120px 40px; }
.what-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.what-headline { font-size: 48px; color: var(--white); margin-bottom: 24px; }
.what-body { color: var(--gray-light); font-size: 16px; margin-bottom: 20px; line-height: 1.7; }
/* === DASHBOARD CARD === */
.dashboard-card { background: var(--dark-3); border: 1px solid rgba(255,107,0,0.2); border-radius: 12px; padding: 24px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.dc-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.dc-title { font-size: 13px; font-weight: 600; color: var(--gray-light); }
.dc-live { font-size: 10px; font-weight: 700; letter-spacing: 0.15em; color: var(--orange); border: 1px solid var(--orange); padding: 2px 7px; border-radius: 2px; }
.dc-metrics { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.dc-metric { background: rgba(255,255,255,0.03); border-radius: 8px; padding: 12px; }
.dc-m-label { display: block; font-size: 10px; color: var(--gray); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.dc-m-val { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 26px; color: var(--white); line-height: 1; }
.dc-m-delta { display: block; font-size: 10px; margin-top: 3px; }
.dc-m-delta.up { color: #00CC66; }
.dc-m-delta.neutral { color: var(--gray); }
.chart-label { font-size: 10px; color: var(--gray); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px; }
.bars { display: flex; align-items: flex-end; gap: 6px; height: 60px; margin-bottom: 16px; }
.bar { flex: 1; background: linear-gradient(to top, var(--orange), var(--orange-dark)); border-radius: 2px 2px 0 0; position: relative; min-height: 4px; opacity: 0.7; }
.bar span { position: absolute; bottom: -16px; left: 50%; transform: translateX(-50%); font-size: 9px; color: var(--gray); }
.dc-reviews { display: flex; align-items: center; gap: 8px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.06); }
.dc-rating { font-family: 'Bebas Neue', sans-serif; font-size: 24px; color: var(--orange); }
.dc-stars { font-size: 12px; color: var(--orange); letter-spacing: 1px; }
.dc-r-count { font-size: 11px; color: var(--gray); }
/* === FEATURES === */
.features { padding: 120px 40px; background: var(--dark-2); }
.features-inner { max-width: 1200px; margin: 0 auto; }
.features-headline { font-size: 48px; color: var(--white); margin-bottom: 60px; }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.feat { padding: 28px; background: var(--dark-3); border: 1px solid rgba(255,255,255,0.06); border-radius: 8px; transition: border-color 0.2s; }
.feat:hover { border-color: rgba(255,107,0,0.4); }
.feat-icon { width: 40px; height: 40px; margin-bottom: 16px; }
.feat-icon svg { width: 100%; height: 100%; }
.feat h3 { font-size: 22px; color: var(--white); margin-bottom: 10px; }
.feat p { font-size: 14px; color: var(--gray-light); line-height: 1.65; }
/* === ATTRACTIONS === */
.attractions { padding: 120px 40px; }
.att-inner { max-width: 1200px; margin: 0 auto; }
.att-header { margin-bottom: 60px; }
.att-headline { font-size: 48px; color: var(--white); }
.att-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.att-card { background: var(--dark-2); border: 1px solid rgba(255,255,255,0.06); border-radius: 8px; padding: 24px; display: flex; flex-direction: column; gap: 16px; }
.att-svg { width: 80px; height: 80px; }
.att-svg svg { width: 100%; height: 100%; }
.att-info h4 { font-size: 20px; color: var(--orange); margin-bottom: 8px; }
.att-info p { font-size: 13px; color: var(--gray-light); line-height: 1.6; }
.att-mega { border-color: rgba(255,107,0,0.3); background: linear-gradient(135deg, var(--dark-2), rgba(255,107,0,0.05)); }
/* === PROGRAMS === */
.programs { padding: 120px 40px; background: var(--dark-2); }
.programs-inner { max-width: 1200px; margin: 0 auto; }
.programs-header { margin-bottom: 60px; }
.programs-headline { font-size: 48px; color: var(--white); }
.program-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.program { background: var(--dark-3); border: 1px solid rgba(255,255,255,0.06); border-radius: 8px; padding: 32px; position: relative; overflow: hidden; }
.program::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--orange), transparent); }
.program-badge { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.2em; padding: 4px 10px; border-radius: 2px; margin-bottom: 12px; }
.program-badge.neon { background: var(--orange); color: var(--dark); }
.program-badge.adult { background: transparent; border: 1px solid var(--orange); color: var(--orange); }
.program-badge.kids { background: var(--blue); color: var(--white); }
.program-badge.home { background: rgba(255,107,0,0.15); color: var(--orange-light); border: 1px solid rgba(255,107,0,0.3); }
.program h3 { font-size: 28px; color: var(--white); margin-bottom: 12px; }
.program p { font-size: 14px; color: var(--gray-light); line-height: 1.7; margin-bottom: 20px; }
.program-stat { font-size: 11px; font-weight: 600; color: var(--orange); letter-spacing: 0.1em; text-transform: uppercase; border-top: 1px solid rgba(255,255,255,0.06); padding-top: 16px; }
/* === CLOSING === */
.closing { padding: 120px 40px; background: linear-gradient(180deg, var(--dark-2) 0%, var(--dark) 100%); }
.closing-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.closing-deco { margin-bottom: 48px; }
.closing-headline { font-size: 42px; color: var(--white); margin-bottom: 24px; line-height: 1.2; }
.closing-sub { font-size: 16px; color: var(--gray-light); line-height: 1.7; max-width: 700px; margin: 0 auto 40px; }
.closing-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.closing-tags span { font-size: 12px; font-weight: 500; color: var(--orange); border: 1px solid rgba(255,107,0,0.3); padding: 6px 14px; border-radius: 20px; }
/* === FOOTER === */
.footer { padding: 60px 40px; border-top: 1px solid rgba(255,107,0,0.15); }
.footer-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: var(--white); margin-bottom: 8px; }
.footer-logo span { color: var(--orange); }
.footer-tagline { font-size: 14px; color: var(--gray); margin-bottom: 16px; }
.footer-meta { display: flex; justify-content: center; align-items: center; gap: 12px; font-size: 12px; color: var(--gray-light); margin-bottom: 20px; flex-wrap: wrap; }
.footer-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--gray); opacity: 0.5; }
.footer-note { font-size: 11px; color: var(--gray); opacity: 0.6; }
/* === RESPONSIVE === */
@media (max-width: 900px) {
  .what-inner { grid-template-columns: 1fr; gap: 40px; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .att-grid { grid-template-columns: repeat(2, 1fr); }
  .program-grid { grid-template-columns: 1fr; }
  .stats-inner { flex-wrap: wrap; }
  .stat-sep { display: none; }
  .stat { min-width: 40%; }
  .hero-slide-graphic { display: none; }
  .hero-headline { font-size: 56px; }
}
@media (max-width: 600px) {
  .hero { padding: 100px 24px 60px; }
  .features, .attractions, .programs, .closing, .what { padding: 80px 24px; }
  .stats { padding: 40px 24px; }
  .feat-grid, .att-grid { grid-template-columns: 1fr; }
  .what-headline, .features-headline, .att-headline, .programs-headline { font-size: 36px; }
  .closing-headline { font-size: 32px; }
  .dc-metrics { grid-template-columns: 1fr; }
  .nav { padding: 12px 24px; }
}