/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0a0a0f;
  --surface: #12121a;
  --surface2: #1a1a26;
  --amber: #F5A623;
  --amber-dim: rgba(245, 166, 35, 0.15);
  --orange: #FF6B35;
  --teal: #27AE60;
  --blue: #2D9CDB;
  --purple: #9B51E0;
  --fg: #F0EDE8;
  --fg-dim: rgba(240, 237, 232, 0.5);
  --fg-very-dim: rgba(240, 237, 232, 0.25);
  --border: rgba(240, 237, 232, 0.08);
  --radius: 12px;
  --radius-sm: 8px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== NAV ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--amber);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.85rem;
  color: var(--fg-dim);
  font-family: var(--font-body);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(245, 166, 35, 0.08) 0%, transparent 70%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(240,237,232,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240,237,232,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
}
.hero-content {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 16px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-dim);
  max-width: 440px;
  line-height: 1.7;
}

/* PHONE MOCK */
.phone-mock {
  display: flex;
  justify-content: center;
  transform: perspective(1000px) rotateY(-8deg) rotateX(3deg);
}
.phone-screen {
  width: 220px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 16px 12px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05) inset;
}
.mock-header {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}
.mock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--fg-very-dim);
}
.mock-map {
  background: #1a1a26;
  border-radius: 12px;
  padding: 10px;
  margin-bottom: 10px;
}
.mock-map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 6px;
  position: relative;
}
.map-zone {
  height: 40px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.zone-stage { background: var(--orange); color: white; }
.zone-food { background: var(--blue); color: white; }
.zone-bar { background: var(--amber); color: #0a0a0f; }
.zone-merch { background: var(--purple); color: white; grid-column: span 2; }
.map-dot {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}
.map-dot-pulse {
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(39, 174, 96, 0.3);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.8); opacity: 0; }
}
.mock-map-label {
  font-size: 0.5rem;
  color: var(--fg-dim);
  text-align: center;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.mock-schedule {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.schedule-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px;
  border-radius: 6px;
  background: var(--surface2);
}
.schedule-active {
  background: var(--amber-dim);
  border: 1px solid rgba(245,166,35,0.2);
}
.sched-time {
  font-size: 0.6rem;
  color: var(--amber);
  font-weight: 600;
  min-width: 40px;
}
.sched-name {
  font-size: 0.65rem;
  color: var(--fg-dim);
}
.schedule-active .sched-name { color: var(--fg); font-weight: 600; }

/* ===== SHARED SECTION STYLES ===== */nsection { padding: 100px 40px; }
.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 12px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 20px;
}

/* ===== PROBLEM ===== */
.problem { background: var(--surface); }
.problem-inner { max-width: 1100px; margin: 0 auto; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.problem-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.problem-icon {
  width: 48px;
  height: 48px;
  background: var(--amber-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  margin-bottom: 20px;
}
.problem-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--fg);
}
.problem-card p {
  font-size: 0.9rem;
  color: var(--fg-dim);
  line-height: 1.6;
}

/* ===== SOLUTION ===== */
.solution { background: var(--bg); }
.solution-inner { max-width: 1100px; margin: 0 auto; }
.solution-body {
  font-size: 1.05rem;
  color: var(--fg-dim);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 48px;
}
.hub-frame {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  max-width: 460px;
  margin: 0 auto;
  box-shadow: 0 40px 80px rgba(0,0,0,0.3);
}
.hub-header {
  background: var(--surface2);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}
.hub-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--fg);
}
.hub-badge {
  font-size: 0.75rem;
  color: var(--amber);
  background: var(--amber-dim);
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 600;
}
.hub-body { padding: 16px; }
.hub-tab-bar {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}
.hub-tab {
  flex: 1;
  text-align: center;
  padding: 8px;
  font-size: 0.75rem;
  color: var(--fg-dim);
  border-radius: 6px;
  cursor: pointer;
}
.hub-tab-active {
  background: var(--amber-dim);
  color: var(--amber);
  font-weight: 600;
}
.hub-map-preview {
  background: #0d0d18;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
}
.hub-map-preview svg { width: 100%; display: block; }
.hub-legend {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.legend-item { display: flex; align-items: center; gap: 5px; font-size: 0.65rem; color: var(--fg-dim); }
.legend-dot { width: 8px; height: 8px; border-radius: 3px; }
.hub-sched-preview { display: flex; flex-direction: column; gap: 6px; }
.hsp-item { display: flex; align-items: center; gap: 10px; padding: 7px 10px; border-radius: 7px; background: var(--surface2); }
.hsp-now { background: rgba(245,166,35,0.1); border: 1px solid rgba(245,166,35,0.2); }
.hsp-time { font-size: 0.65rem; color: var(--fg-dim); min-width: 42px; font-weight: 600; }
.hsp-name { font-size: 0.72rem; color: var(--fg-dim); flex: 1; }
.hsp-now .hsp-name { color: var(--fg); font-weight: 600; }
.hsp-now-badge {
  font-size: 0.55rem;
  background: var(--amber);
  color: #0a0a0f;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
}

/* ===== FEATURES ===== */
.features { background: var(--surface); }
.features-inner { max-width: 1100px; margin: 0 auto; }
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}
.feature-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.feature-card--large { grid-column: span 2; }
.feature-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--amber-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  margin-bottom: 18px;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--fg);
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--fg-dim);
  line-height: 1.65;
}

/* ===== HOW IT WORKS ===== */
.howitworks { background: var(--bg); }
.howitworks-inner { max-width: 1100px; margin: 0 auto; }
.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.step {
  flex: 1;
  min-width: 220px;
  position: relative;
}
.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--amber);
  opacity: 0.25;
  display: block;
  margin-bottom: 12px;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}
.step p {
  font-size: 0.9rem;
  color: var(--fg-dim);
  line-height: 1.6;
}
.step-connector {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), transparent);
  margin-top: 40px;
  flex-shrink: 0;
}

/* ===== CLOSING ===== */
.closing {
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.closing-glow {
  position: absolute;
  bottom: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.07) 0%, transparent 70%);
  pointer-events: none;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 20px;
  text-align: center;
}
.closing-sub {
  font-size: 1.05rem;
  color: var(--fg-dim);
  text-align: center;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 32px 40px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--amber);
}
.footer-copy {
  font-size: 0.85rem;
  color: var(--fg-dim);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .navbar { padding: 16px 20px; }
  .hero { padding: 100px 20px 60px; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .phone-mock { transform: none; }
  .hero-headline { font-size: 2.2rem; }
  .problem-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card--large { grid-column: span 1; }
  .steps-row { flex-direction: column; }
  .step-connector { display: none; }
  section { padding: 70px 20px; }
  .footer-inner { flex-direction: column; text-align: center; }
}