/* Falcory design system — Palette v2 locked Apr 20, 2026 */

@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --bg: #0A0A0A;
  --bg-pure: #000000;
  --card: #141414;
  --elev: #1C1C1C;
  --border: #2A2A2A;
  --gold: #E8B84A;
  --gold-bright: #F5CB5C;
  --gold-light: #FFD76B;
  --gold-dark: #8F6F1E;
  --red: #DC2626;
  --red-bright: #EF4444;
  --red-dark: #991B1B;
  --text: #F5F5F5;
  --text-2: #A3A3A3;
  --text-3: #737373;
  --green: #22C55E;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
  min-height: 100vh;
  /* very subtle grid texture — avoid flat dead black */
  background-image:
    linear-gradient(rgba(255,255,255,0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.012) 1px, transparent 1px);
  background-size: 48px 48px;
  background-position: -1px -1px;
}

/* Typography */
h1, h2, h3, h4, .heading, .wordmark, .metric {
  font-family: 'Inter Tight', 'Inter', system-ui, sans-serif;
  letter-spacing: -0.02em;
}
h1 { font-weight: 800; }
h2, h3 { font-weight: 700; }
.tabular, .metric, .num { font-variant-numeric: tabular-nums; }
.mono { font-family: 'JetBrains Mono', ui-monospace, monospace; }

a { color: inherit; text-decoration: none; }

/* Eyebrow label */
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Layout */
.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 680px) { .wrap { padding: 0 20px; } }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10,10,10,0.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.wordmark {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--gold);
  font-size: 20px;
}
.nav { display: flex; gap: 36px; }
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  transition: color 0.15s ease;
}
.nav a:hover, .nav a.active { color: var(--text); }
.nav a.active { color: var(--gold); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 20px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: #000;
}
.btn-primary:hover {
  background: var(--gold-bright);
  box-shadow: 0 0 0 4px rgba(232,184,74,0.12);
}
.btn-secondary {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-secondary:hover {
  background: rgba(232,184,74,0.06);
  color: var(--gold-bright);
  border-color: var(--gold-bright);
}
.btn-sm { height: 36px; padding: 0 14px; font-size: 13px; border-radius: 6px; }
.btn-lg { height: 52px; padding: 0 26px; font-size: 16px; border-radius: 10px; }

/* Mobile header */
@media (max-width: 860px) {
  .nav { display: none; }
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg);
  margin-top: 120px;
  padding: 64px 0 40px;
}
.site-footer .cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
@media (max-width: 860px) {
  .site-footer .cols { grid-template-columns: 1fr 1fr; }
}
.site-footer h4 {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
  margin: 0 0 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}
.site-footer a {
  display: block;
  color: var(--text-2);
  font-size: 14px;
  padding: 4px 0;
}
.site-footer a:hover { color: var(--text); }
.site-footer .tagline {
  font-size: 14px;
  color: var(--text-2);
  max-width: 280px;
  margin: 12px 0 0;
}
.site-footer .legal {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-3);
}

/* Cards */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
}

/* Pulse dot */
.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  flex-shrink: 0;
}
.pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  animation: pulse-ring 1.8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.pulse.green { background: var(--green); box-shadow: 0 0 0 2px rgba(34,197,94,0.15); }
.pulse.green::after { background: rgba(34,197,94,0.35); }
.pulse.red { background: var(--red); box-shadow: 0 0 0 2px rgba(220,38,38,0.15); }
.pulse.red::after { background: rgba(220,38,38,0.35); }
.pulse.gold { background: var(--gold); box-shadow: 0 0 0 2px rgba(232,184,74,0.15); }
.pulse.gold::after { background: rgba(232,184,74,0.35); }
@keyframes pulse-ring {
  0%   { transform: scale(0.6); opacity: 0.8; }
  100% { transform: scale(2.4); opacity: 0; }
}

/* Page hero heading */
.display {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--gold);
  line-height: 1.02;
  margin: 0;
}

.lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--text);
  max-width: 540px;
  margin: 0;
}
.lede-2 { color: var(--text-2); }

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 22px;
  padding: 0 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.badge-gold { background: rgba(232,184,74,0.12); color: var(--gold); border: 1px solid rgba(232,184,74,0.25); }
.badge-red  { background: rgba(220,38,38,0.12); color: var(--red-bright); border: 1px solid rgba(220,38,38,0.35); }
.badge-mute { background: rgba(255,255,255,0.04); color: var(--text-3); border: 1px solid var(--border); }
.badge-green { background: rgba(34,197,94,0.10); color: var(--green); border: 1px solid rgba(34,197,94,0.3); }

/* Page sections */
.section { padding: 96px 0; }
.section-title {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 38px;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 12px;
}
.section-sub {
  font-size: 18px;
  color: var(--text-2);
  max-width: 640px;
  margin: 0 0 48px;
}

/* Divider */
.hr { height: 1px; background: var(--border); border: 0; }

/* Utility */
.gold { color: var(--gold); }
.red  { color: var(--red-bright); }
.mute { color: var(--text-2); }
.mute-3 { color: var(--text-3); }
.green-t { color: var(--green); }
.tnum { font-variant-numeric: tabular-nums; }

/* Print safety not needed — pages are screen */

/* ==========================================================================
   Seat Inventory — Real component (replaces fake scarcity)
   ========================================================================== */

#seat-inventory {
  max-width: 720px;
  margin: 56px auto 0;
}

.seat-inv {
  background: #141414;
  border: 1px solid #2A2A2A;
  border-radius: 16px;
  padding: 28px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 220ms ease;
}
.seat-inv::before {
  content: '';
  position: absolute;
  inset: -1px auto -1px -1px;
  width: 3px;
  background: #E8B84A;
}
.seat-inv[data-state="limited"]::before { background: #DC2626; }
.seat-inv[data-state="soldout"]::before { background: #737373; }

/* Label row — eyebrow + pulse */
.seat-inv__label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 11px;
  color: #E8B84A;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.seat-inv[data-state="limited"] .seat-inv__label { color: #EF4444; }
.seat-inv[data-state="soldout"] .seat-inv__label { color: #A3A3A3; }

.seat-inv__pulse {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.seat-inv__pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  animation: pulse-ring 1.8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.seat-inv__pulse--gold { background: #E8B84A; box-shadow: 0 0 0 2px rgba(232,184,74,0.15); }
.seat-inv__pulse--gold::after { background: rgba(232,184,74,0.35); }
.seat-inv__pulse--red { background: #DC2626; box-shadow: 0 0 0 2px rgba(220,38,38,0.15); }
.seat-inv__pulse--red::after { background: rgba(220,38,38,0.35); }
.seat-inv__pulse--mute { background: #737373; }
.seat-inv__pulse--mute::after { display: none; }

/* Body */
.seat-inv__body {
  font-size: 16px;
  color: #F5F5F5;
  line-height: 1.6;
  margin: 0 0 20px;
  max-width: 600px;
}
.seat-inv__body strong {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  color: #E8B84A;
  letter-spacing: -0.005em;
}
.seat-inv[data-state="limited"] .seat-inv__body strong { color: #F5F5F5; }

/* County/bracket list */
.seat-inv__list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  border-top: 1px solid #2A2A2A;
}
.seat-inv__row {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #2A2A2A;
  font-size: 14px;
}
.seat-inv__row:last-child { border-bottom: 0; }
.seat-inv__county {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  color: #F5F5F5;
  letter-spacing: -0.01em;
}
.seat-inv__bracket {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: #A3A3A3;
  letter-spacing: 0.04em;
}
.seat-inv__pips {
  display: inline-flex;
  gap: 4px;
}
.seat-inv__pip {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  border: 1px solid #E8B84A;
  background: transparent;
}
.seat-inv__pip.is-sold {
  background: #E8B84A;
}
.seat-inv__count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: #E8B84A;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
  text-align: right;
}
.seat-inv[data-state="limited"] .seat-inv__count { color: #EF4444; }

/* Foot — CTA + timestamp */
.seat-inv__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.seat-inv__cta { display: inline-flex; }
.seat-inv__ts {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: #737373;
  letter-spacing: 0.06em;
}

/* Sold-out variant — no list */
.seat-inv--soldout .seat-inv__body { margin-bottom: 22px; }

@media (max-width: 560px) {
  .seat-inv { padding: 22px 24px; }
  .seat-inv__row {
    grid-template-columns: 1fr auto;
    gap: 6px 14px;
  }
  .seat-inv__bracket { grid-column: 2; text-align: right; }
  .seat-inv__pips { grid-column: 1 / -1; }
  .seat-inv__count { grid-column: 1 / -1; text-align: left; }
}

/* ==========================================================================
   Motion — restrained, runs-once reveals
   ========================================================================== */

/* Section-level reveal: 8px rise + opacity fade, runs ONCE */
.reveal {
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 600ms cubic-bezier(.22, .61, .36, 1),
    transform 600ms cubic-bezier(.22, .61, .36, 1);
  will-change: opacity, transform;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Timeline container — sequenced reveal once container enters viewport.
   Line LEADS the dots: line draws over 600ms, dots light at 100/220/340/460ms.
   The timeline already has ::before as the connector line — we anchor its
   transform-origin left and scale it from 0 → 1.
*/
.timeline { position: relative; }
.timeline::before {
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 600ms cubic-bezier(.22, .61, .36, 1);
}
.timeline.in-view::before { transform: scaleX(1); }

/* Each step starts dimmed/offset; reveals as the line passes its position */
.timeline .tl-step {
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 420ms cubic-bezier(.22, .61, .36, 1),
    transform 420ms cubic-bezier(.22, .61, .36, 1);
}
.timeline.in-view .tl-step { opacity: 1; transform: translateY(0); }
.timeline.in-view .tl-step:nth-child(1) { transition-delay: 100ms; }
.timeline.in-view .tl-step:nth-child(2) { transition-delay: 220ms; }
.timeline.in-view .tl-step:nth-child(3) { transition-delay: 340ms; }
.timeline.in-view .tl-step:nth-child(4) { transition-delay: 460ms; }

/* Dot "lights up" as it reveals — subtle gold inner glow + brighter border */
.timeline .tl-step .dot {
  transition:
    border-color 420ms cubic-bezier(.22, .61, .36, 1),
    box-shadow 420ms cubic-bezier(.22, .61, .36, 1);
}
.timeline.in-view .tl-step .dot {
  border-color: rgba(232, 184, 74, 0.4);
  box-shadow: 0 0 0 1px rgba(232, 184, 74, 0.15), 0 0 24px -4px rgba(232, 184, 74, 0.25);
}

/* Button press */
.btn { transition: background-color .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease, transform .08s ease; }
.btn:active { transform: scale(0.98); }

/* Reduced motion — kill all motion, reveals stay visible */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.in-view,
  .timeline::before,
  .timeline.in-view::before,
  .timeline .tl-step,
  .timeline.in-view .tl-step,
  .timeline .tl-step .dot,
  .timeline.in-view .tl-step .dot,
  .btn,
  .btn:active {
    transition: none !important;
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
  .timeline::before { transform: scaleX(1) !important; }
}

