/* ============================================================
   SEATSERVE — Design tokens
============================================================ */
:root {
  --black: #08080a;
  --ink: #101012;
  --ink-2: #17171a;
  --line: rgba(255,255,255,0.09);
  --line-soft: rgba(255,255,255,0.06);

  --white: #ffffff;
  --off: #f6f5f4;
  --paper: #efeeec;
  --gray-900: #16161a;
  --gray-700: #4b4b52;
  --gray-500: #7a7a82;
  --gray-300: #c7c6c4;

  --red: #e31c3d;
  --red-dark: #b2122c;
  --red-light: #ff5470;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-md: 0 10px 30px -10px rgba(0,0,0,0.35);
  --shadow-lg: 0 30px 80px -20px rgba(0,0,0,0.5);
  --shadow-red: 0 14px 34px -10px rgba(227,28,61,0.45);

  --ease: cubic-bezier(.16,.84,.44,1);
  --container: 1220px;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
}

/* ============================================================
   Reset
============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul, figure { margin: 0; }
ul { padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
svg { display: block; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
}

/* Film grain overlay for cinematic feel */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection { background: var(--red); color: var(--white); }

/* ============================================================
   Type
============================================================ */
.text-red { color: var(--red); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.eyebrow--light { color: rgba(255,255,255,0.92); }

.dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}
.dot--pulse { position: relative; }
.dot--pulse::after {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--red);
  animation: pulse 2s var(--ease) infinite;
}
@keyframes pulse {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

.section__title {
  font-size: clamp(2.4rem, 5.2vw, 4.2rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.section__title--md { font-size: clamp(2rem, 3.6vw, 2.9rem); }

.section__head { max-width: 640px; margin-bottom: 56px; }
.section__head--center { max-width: 720px; margin-left: auto; margin-right: auto; text-align: center; }
.section--dark .section__head .eyebrow { color: var(--red); }
.section--dark .section__title { color: var(--white); }

/* ============================================================
   Buttons
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius-pill);
  padding: 15px 26px;
  white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
}
.btn--sm { padding: 10px 18px; font-size: 13.5px; }
.btn--lg { padding: 18px 32px; font-size: 16px; }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -12px rgba(227,28,61,0.55); }
.btn--primary svg { transition: transform .25s var(--ease); }
.btn--primary:hover svg { transform: translateX(3px); }

.btn--ghost {
  color: var(--white);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }

.btn--outline {
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn--outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); transform: translateY(-2px); }

/* ============================================================
   Nav
============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 22px 0;
  transition: padding .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  padding: 14px 0;
  background: rgba(8,8,10,0.72);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; }

.brand { display: flex; align-items: center; gap: 10px; }
.brand__mark {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: var(--red);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.brand__name {
  font-weight: 900;
  font-size: 17px;
  letter-spacing: 0.04em;
  color: var(--white);
}

.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a {
  color: rgba(255,255,255,0.78);
  font-size: 14.5px;
  font-weight: 500;
  transition: color .2s;
  position: relative;
}
.nav__links a:hover { color: var(--white); }

.nav__actions { display: flex; align-items: center; gap: 16px; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav__burger span {
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   Hero
============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 150px 0 90px;
  overflow: hidden;
  background: var(--black);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06);
  filter: saturate(1.05);
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,8,10,0.55) 0%, rgba(8,8,10,0.72) 38%, rgba(8,8,10,0.94) 82%, var(--black) 100%),
    linear-gradient(90deg, rgba(8,8,10,0.96) 0%, rgba(8,8,10,0.55) 42%, rgba(8,8,10,0.35) 68%, rgba(8,8,10,0.75) 100%);
}
.hero__vignette {
  position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 30% 0%, transparent 40%, rgba(0,0,0,0.55) 100%);
}

.hero__content {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}

.hero__title {
  font-size: clamp(2.8rem, 6.4vw, 5.4rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 26px;
}
.hero__sub {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
  max-width: 480px;
  margin-bottom: 38px;
}
.hero__actions { display: flex; align-items: center; gap: 16px; margin-bottom: 56px; flex-wrap: wrap; }

.hero__stats { display: flex; align-items: center; gap: 28px; }
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat__num {
  font-family: var(--mono);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}
.stat__star { color: var(--red); }
.stat__label {
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.stat__divider { width: 1px; height: 34px; background: rgba(255,255,255,0.16); }

/* Floating order card */
.hero__mock { position: relative; }
.order-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-width: 380px;
  margin-left: auto;
}
.order-card--float { animation: float 6s ease-in-out infinite; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
.order-card__photo { position: relative; aspect-ratio: 16/11; }
.order-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.chip {
  position: absolute; top: 14px; left: 14px;
  font-size: 11.5px; font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.03em;
}
.chip--dark { background: rgba(8,8,10,0.72); color: var(--white); backdrop-filter: blur(6px); }

.order-card__body { padding: 22px 22px 24px; }
.order-card__title-row { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }
.order-card__title-row h3 { font-size: 18px; font-weight: 800; margin-bottom: 3px; }
.order-card__title-row p { font-size: 13px; color: var(--gray-500); }
.rating { font-size: 13px; font-weight: 700; color: var(--gray-700); flex-shrink: 0; }

.order-card__list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.order-card__list li {
  display: flex; justify-content: space-between;
  font-size: 14.5px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--gray-300);
  color: var(--gray-700);
}
.order-card__list li span:last-child { font-weight: 700; color: var(--ink); }

.scroll-cue {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  z-index: 2;
  width: 26px; height: 42px;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 20px;
}
.scroll-cue span {
  position: absolute; top: 8px; left: 50%;
  width: 4px; height: 8px;
  background: var(--white);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollcue 1.8s ease infinite;
}
@keyframes scrollcue {
  0% { opacity: 1; top: 8px; }
  70% { opacity: 0; top: 20px; }
  100% { opacity: 0; top: 20px; }
}

/* ============================================================
   Marquee
============================================================ */
.marquee {
  background: var(--black);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 22px 0;
  overflow: hidden;
}
.marquee__track { display: flex; width: max-content; animation: scroll 32s linear infinite; }
.marquee__group { display: flex; align-items: center; flex-shrink: 0; }
.marquee span {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  padding: 0 20px;
  white-space: nowrap;
}
.marquee i {
  color: var(--red);
  font-style: normal;
  font-size: 8px;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   Sections (generic)
============================================================ */
.section { position: relative; padding: 130px 0; background: var(--white); }
.section--tight { padding: 90px 0; }
.section--dark { background: var(--ink); color: var(--white); }
.section--dark p { color: rgba(255,255,255,0.68); }

/* ============================================================
   Steps (how it works)
============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.step {
  position: relative;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 30px 32px;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.step:hover { transform: translateY(-6px); border-color: rgba(227,28,61,0.4); }
.step__num {
  position: absolute; top: 20px; right: 26px;
  font-family: var(--mono);
  font-size: 42px;
  font-weight: 700;
  color: rgba(255,255,255,0.06);
}
.step__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(227,28,61,0.12);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.step h3 { font-size: 21px; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.step p { font-size: 14.5px; line-height: 1.6; max-width: 30ch; }

/* ============================================================
   Feature split (seat-aware / for stadiums / pricing)
============================================================ */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.feature-split--rev { grid-template-columns: 1fr 1fr; }
.feature-split__lead { font-size: 16.5px; line-height: 1.7; color: var(--gray-700); max-width: 46ch; margin-bottom: 30px; }
.section--dark .feature-split__lead { color: rgba(255,255,255,0.68); }

.feature-list { display: flex; flex-direction: column; gap: 22px; }
.feature-list li { display: flex; gap: 16px; align-items: flex-start; }
.feature-list__icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 11px;
  background: rgba(227,28,61,0.08);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
}
.feature-list h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.feature-list p { font-size: 14px; color: var(--gray-500); }

/* Phone mockup scene */
.phone-scene {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/4.6;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; justify-content: center;
}
.phone-scene__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.9); }
.phone-scene__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,8,10,0.5), rgba(8,8,10,0.35) 45%, rgba(8,8,10,0.85)); }

.phone-mock {
  position: relative; z-index: 2;
  width: 78%;
  max-width: 260px;
  aspect-ratio: 9/18.5;
  background: rgba(15,15,18,0.55);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 38px;
  backdrop-filter: blur(10px);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 30px 16px;
}
.phone-mock__notch {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 64px; height: 8px; border-radius: 6px;
  background: rgba(0,0,0,0.5);
}
.qr-wrap { position: relative; margin-bottom: 26px; }
.qr-frame {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 30px -8px rgba(0,0,0,0.5);
  line-height: 0;
}
.qr-frame__scanline {
  position: absolute; left: 4%; right: 4%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  box-shadow: 0 0 10px 1px var(--red);
  animation: scanline 2.2s ease-in-out infinite;
}
@keyframes scanline {
  0% { top: 6%; opacity: 0; }
  10% { opacity: 1; }
  50% { top: 90%; opacity: 1; }
  60% { opacity: 0; }
  100% { top: 6%; opacity: 0; }
}

.detected-card {
  display: flex; align-items: center; gap: 12px;
  background: var(--white);
  border-radius: 14px;
  padding: 13px 16px;
  width: 100%;
  box-shadow: 0 14px 30px -10px rgba(0,0,0,0.4);
  animation: rise .7s var(--ease) both;
  animation-delay: .4s;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.detected-card__icon {
  width: 34px; height: 34px; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(227,28,61,0.12);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
}
.detected-card__label { display: block; font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray-500); font-weight: 700; margin-bottom: 2px; }
.detected-card strong { font-size: 13.5px; font-weight: 800; color: var(--ink); }

/* Perks grid (for stadiums) */
.perks { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.perk {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.perk:hover { transform: translateY(-4px); background: rgba(255,255,255,0.08); }
.perk__icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(227,28,61,0.15);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.perk h4 { font-size: 14.5px; font-weight: 700; color: var(--white); }

.stadiums__bg { position: absolute; inset: 0; opacity: 0.14; }
.stadiums__bg img { width: 100%; height: 100%; object-fit: cover; }
#stadiums .container { position: relative; z-index: 1; }

/* Check list (pricing) */
.check-list { display: flex; flex-direction: column; gap: 14px; }
.check-list li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  color: var(--gray-700);
}
.check-list li::before {
  content: '';
  position: absolute; left: 0; top: 7px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
}

/* Receipt card (pricing) */
.receipt {
  background: var(--white);
  border: 1px solid var(--paper);
  border-radius: var(--radius-lg);
  padding: 30px 30px 26px;
  box-shadow: var(--shadow-lg);
}
.receipt__label {
  display: block;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gray-500);
  margin-bottom: 20px;
}
.receipt__row {
  display: flex; justify-content: space-between;
  font-size: 15px; color: var(--gray-700);
  padding: 13px 0;
  border-bottom: 1px solid var(--paper);
}
.receipt__total {
  display: flex; justify-content: space-between;
  align-items: baseline;
  padding-top: 20px;
  font-size: 20px; font-weight: 900;
}
.receipt__total span:last-child { font-size: 28px; }
.receipt__note {
  margin-top: 18px;
  font-size: 12.5px;
  color: var(--gray-500);
  line-height: 1.6;
  padding-top: 16px;
  border-top: 1px dashed var(--paper);
}

/* ============================================================
   Timeline
============================================================ */
.timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 10px;
}
.timeline__line {
  position: absolute;
  top: 6px; left: 20px; right: 20px;
  height: 2px;
  background: var(--paper);
}
.timeline__progress {
  position: absolute; left: 0; top: 0;
  height: 100%; width: 46%;
  background: var(--red);
}
.timeline__step {
  position: relative;
  z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  gap: 14px;
  flex: 1;
}
.timeline__step p { font-size: 12.5px; font-weight: 600; color: var(--gray-500); text-align: center; line-height: 1.4; }
.timeline__dot {
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--paper);
}
.timeline__step--done .timeline__dot { background: var(--red); border-color: var(--red); }
.timeline__step--done p { color: var(--ink); }
.timeline__step--active .timeline__dot {
  background: var(--red); border-color: var(--red);
  box-shadow: 0 0 0 5px rgba(227,28,61,0.18);
  animation: dotpulse 1.8s ease infinite;
}
.timeline__step--active p { color: var(--ink); font-weight: 700; }
@keyframes dotpulse {
  0%, 100% { box-shadow: 0 0 0 5px rgba(227,28,61,0.18); }
  50% { box-shadow: 0 0 0 9px rgba(227,28,61,0.08); }
}

/* ============================================================
   Venue cards
============================================================ */
.venues {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.venue-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  isolation: isolate;
}
.venue-card--lg { grid-column: span 1; }
.venue-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.venue-card:hover img { transform: scale(1.07); }
.venue-card__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,8,10,0) 40%, rgba(8,8,10,0.9) 100%);
}
.venue-card__tag {
  position: absolute; top: 14px; left: 14px; z-index: 1;
  font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.14);
  color: var(--white);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.2);
}
.venue-card__tag--live { background: var(--red); border-color: var(--red); }
.venue-card h3 {
  position: absolute; bottom: 18px; left: 18px; right: 18px; z-index: 1;
  color: var(--white);
  font-size: 18px; font-weight: 800;
}

/* ============================================================
   Metrics
============================================================ */
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.metric {
  padding: 40px 20px;
  border-radius: var(--radius-md);
  background: var(--off);
}
.metric__num {
  display: block;
  font-family: var(--mono);
  font-size: clamp(2.2rem, 3.4vw, 3rem);
  font-weight: 700;
  color: var(--red);
  margin-bottom: 10px;
}
.metric__num small { font-size: 0.5em; font-weight: 600; }
.metric__label {
  font-size: 13.5px;
  color: var(--gray-700);
  font-weight: 600;
}

/* ============================================================
   Final CTA
============================================================ */
.cta {
  position: relative;
  padding: 150px 0;
  overflow: hidden;
  text-align: center;
}
.cta__bg { position: absolute; inset: 0; }
.cta__bg img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.05) brightness(0.75); }
.cta__content { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
.cta .eyebrow { justify-content: center; }
.cta .section__title { color: var(--white); margin-bottom: 22px; }
.cta__sub { max-width: 560px; color: rgba(255,255,255,0.72); font-size: 16.5px; line-height: 1.7; margin-bottom: 42px; }
.cta__actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* ============================================================
   Footer
============================================================ */
.footer { background: var(--black); color: rgba(255,255,255,0.6); padding: 80px 0 32px; }
.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line-soft);
}
.footer__brand p { margin-top: 16px; font-size: 14px; max-width: 26ch; line-height: 1.6; }
.footer__col { display: flex; flex-direction: column; gap: 14px; }
.footer__col h5 { color: var(--white); font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.footer__col a { font-size: 14.5px; color: rgba(255,255,255,0.6); transition: color .2s; }
.footer__col a:hover { color: var(--white); }
.footer__bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  padding-top: 26px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.4);
}

/* ============================================================
   Reveal-on-scroll
============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   Responsive
============================================================ */
.hide-mobile { display: inline; }

@media (max-width: 1080px) {
  .venues { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .nav__links { position: fixed; top: 68px; left: 16px; right: 16px; flex-direction: column; align-items: flex-start; gap: 4px; background: rgba(10,10,12,0.97); backdrop-filter: blur(20px); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 10px; transform: translateY(-12px); opacity: 0; pointer-events: none; transition: opacity .25s var(--ease), transform .25s var(--ease); }
  .nav__links.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__links a { width: 100%; padding: 13px 14px; border-radius: 10px; }
  .nav__links a:hover { background: rgba(255,255,255,0.06); }
  .nav__burger { display: flex; }

  .hero__content { grid-template-columns: 1fr; }
  .hero__mock { order: -1; max-width: 340px; margin: 0 auto; }
  .order-card { margin: 0 auto; }
  .hero { padding-top: 120px; text-align: left; }
  .hero__stats { flex-wrap: wrap; row-gap: 16px; }

  .steps { grid-template-columns: 1fr; }
  .feature-split, .feature-split--rev { grid-template-columns: 1fr; gap: 44px; }
  .feature-split--rev .feature-split__copy { order: 1; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .metrics { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .venues { grid-template-columns: 1fr; }
  .timeline { flex-wrap: wrap; row-gap: 28px; justify-content: flex-start; }
  .timeline__line { display: none; }
  .timeline__step { flex: 0 0 30%; }
  .perks { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; }
  .hide-mobile { display: none; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .cta__actions { flex-direction: column; width: 100%; }
  .cta__actions .btn { width: 100%; }
}
