/* ═══════════════════════════════════════════════════════════════
   WINT — Marine Weather Intelligence
   Design System & Component Styles
   ═══════════════════════════════════════════════════════════════ */

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

/* ── Design Tokens ──────────────────────────────────────────── */
:root {
  /* Core palette — matches PDF report */
  --navy:          #0a1628;
  --navy-light:    #111d33;
  --navy-mid:      #182844;
  --slate:         #1e293b;
  --slate-light:   #334155;

  --white:         #ffffff;
  --white-soft:    #f1f5f9;
  --white-muted:   #94a3b8;
  --white-dim:     #64748b;

  --blue:          #0ea5e9;
  --blue-light:    #38bdf8;
  --blue-glow:     rgba(14, 165, 233, 0.25);
  --blue-subtle:   rgba(14, 165, 233, 0.08);

  --cyan:          #22d3ee;
  --teal:          #14b8a6;

  /* Confidence colors */
  --conf-high:     #16a34a;
  --conf-high-bg:  rgba(22, 163, 74, 0.12);
  --conf-med:      #d97706;
  --conf-med-bg:   rgba(217, 119, 6, 0.12);
  --conf-low:      #dc2626;
  --conf-low-bg:   rgba(220, 38, 38, 0.12);

  /* Glass effect */
  --glass-bg:      rgba(17, 29, 51, 0.65);
  --glass-border:  rgba(14, 165, 233, 0.15);
  --glass-blur:    16px;

  /* Typography */
  --font-body:     'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:     'JetBrains Mono', 'Courier New', monospace;

  /* Spacing */
  --space-xs:      4px;
  --space-sm:      8px;
  --space-md:      16px;
  --space-lg:      24px;
  --space-xl:      32px;
  --space-2xl:     48px;

  /* Radii */
  --radius-sm:     8px;
  --radius-md:     12px;
  --radius-lg:     16px;
  --radius-full:   999px;

  /* Transitions */
  --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
  --duration:      0.3s;
}

/* ── Base ───────────────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--white-soft);
  background: var(--navy);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── App Container ──────────────────────────────────────────── */
#app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-bottom: 1px solid var(--glass-border);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  cursor: pointer;
}

.navbar-brand img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
}

.navbar-brand span {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.navbar-brand .brand-dot {
  color: var(--blue);
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  list-style: none;
}

.navbar-links a {
  color: var(--white-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  transition: all var(--duration) var(--ease-out);
  min-height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-links a:hover,
.navbar-links a.active {
  color: var(--white);
  background: var(--blue-subtle);
}

.navbar-links a.active {
  color: var(--blue-light);
}

.btn-login {
  background: var(--blue) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  padding: var(--space-sm) var(--space-lg) !important;
  border-radius: var(--radius-full) !important;
  font-size: 13px !important;
}

.btn-login:hover {
  background: var(--blue-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--blue-glow);
}

/* Mobile menu button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  padding: var(--space-sm);
  cursor: pointer;
  min-height: 48px;
  min-width: 48px;
  align-items: center;
  justify-content: center;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 12px 28px;
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--duration) var(--ease-out);
  text-decoration: none;
  min-height: 48px;
  min-width: 48px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: var(--navy);
  box-shadow: 0 4px 24px var(--blue-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(14, 165, 233, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: var(--blue-subtle);
  border-color: var(--blue);
}

.btn-small {
  padding: 8px 20px;
  font-size: 13px;
}

.btn-icon {
  font-size: 18px;
}

/* ── Glass Card ─────────────────────────────────────────────── */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--duration) var(--ease-out);
}

.glass-card:hover {
  border-color: rgba(14, 165, 233, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* ── Section Label ──────────────────────────────────────────── */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: var(--space-md);
}

/* ── Page Layout ────────────────────────────────────────────── */
.page {
  flex: 1;
  padding: var(--space-lg);
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.page-header {
  margin-bottom: var(--space-2xl);
}

.page-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-xs);
}

.page-subtitle {
  font-size: 15px;
  color: var(--white-muted);
}

/* ═══════════════════════════════════════════════════════════════
   LANDING PAGE
   ═══════════════════════════════════════════════════════════════ */

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: calc(100vh - 72px);
  padding: var(--space-2xl) var(--space-lg);
  position: relative;
  overflow: hidden;
}

/* Animated background particles */
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 40%, rgba(14, 165, 233, 0.06) 0%, transparent 50%),
              radial-gradient(circle at 70% 60%, rgba(34, 211, 238, 0.04) 0%, transparent 50%),
              radial-gradient(circle at 50% 80%, rgba(20, 184, 166, 0.03) 0%, transparent 40%);
  animation: heroGlow 12s ease-in-out infinite;
}

@keyframes heroGlow {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33%      { transform: translate(2%, -1%) rotate(1deg); }
  66%      { transform: translate(-1%, 2%) rotate(-1deg); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--blue-subtle);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  color: var(--blue-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.6s var(--ease-out);
}

.hero-title {
  font-size: clamp(36px, 7vw, 64px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.6s 0.1s var(--ease-out) both;
}

.hero-title .accent {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: clamp(16px, 2.5vw, 19px);
  color: var(--white-muted);
  max-width: 560px;
  margin: 0 auto var(--space-xl);
  line-height: 1.7;
  animation: fadeInUp 0.6s 0.2s var(--ease-out) both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s 0.3s var(--ease-out) both;
}

/* Stats bar */
.hero-stats {
  display: flex;
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
  animation: fadeInUp 0.6s 0.4s var(--ease-out) both;
}

.hero-stat {
  text-align: center;
}

.hero-stat-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  font-family: var(--font-mono);
}

.hero-stat-label {
  font-size: 12px;
  color: var(--white-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════════════
   VENUES PAGE
   ═══════════════════════════════════════════════════════════════ */

.venues-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-lg);
}

.venue-card {
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.venue-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.05), transparent);
  opacity: 0;
  transition: opacity var(--duration);
  pointer-events: none;
}

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

.venue-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-md);
}

.venue-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}

.venue-status {
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.venue-status.active {
  background: var(--conf-high-bg);
  color: var(--conf-high);
}

.venue-status.validated {
  background: var(--blue-subtle);
  color: var(--blue-light);
}

.venue-coords {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--white-dim);
  margin-bottom: var(--space-md);
}

.venue-meta {
  display: flex;
  gap: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid var(--glass-border);
}

.venue-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.venue-meta-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white-dim);
}

.venue-meta-value {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  color: var(--white-soft);
}

.venue-cta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  transition: gap var(--duration);
}

.venue-card:hover .venue-cta {
  gap: var(--space-md);
}

/* ═══════════════════════════════════════════════════════════════
   REPORT VIEW
   ═══════════════════════════════════════════════════════════════ */

.report-view {
  max-width: 900px;
  margin: 0 auto;
}

/* Report header */
.report-header {
  background: var(--navy-light);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.report-venue {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.report-meta {
  font-size: 13px;
  color: var(--white-muted);
  font-family: var(--font-mono);
}

.confidence-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
  white-space: nowrap;
}

.confidence-badge.HIGH { background: var(--conf-high); }
.confidence-badge.MED  { background: var(--conf-med); }
.confidence-badge.LOW  { background: var(--conf-low); }

/* Confidence pulse animation */
.confidence-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.3); }
}

/* Report sections */
.report-section {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-md);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
}

.report-section .section-label {
  margin-bottom: var(--space-md);
}

.synoptic-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--white-soft);
}

/* Racing window table */
.racing-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 calc(-1 * var(--space-lg));
  padding: 0 var(--space-lg);
}

.racing-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-mono);
  font-size: 12px;
  white-space: nowrap;
}

.racing-table thead tr {
  background: var(--navy);
  position: sticky;
  top: 0;
}

.racing-table thead th {
  padding: 10px 12px;
  text-align: right;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white-muted);
  border-bottom: 2px solid var(--blue);
}

.racing-table thead th:first-child { text-align: left; }

.racing-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background var(--duration);
}

.racing-table tbody tr:hover {
  background: rgba(14, 165, 233, 0.06);
}

.racing-table tbody td {
  padding: 8px 12px;
  text-align: right;
  color: var(--white-soft);
}

.racing-table tbody td:first-child {
  text-align: left;
  color: var(--white);
  font-weight: 600;
}

.col-tws { color: var(--white) !important; font-weight: 700 !important; }
.col-twd { color: var(--cyan) !important; font-weight: 700 !important; }

.conf-HIGH { color: var(--conf-high) !important; font-weight: 700 !important; }
.conf-MED  { color: var(--conf-med) !important; font-weight: 700 !important; }
.conf-LOW  { color: var(--conf-low) !important; font-weight: 700 !important; }

/* Synthesis bullets */
.synthesis-list {
  list-style: none;
  padding: 0;
}

.synthesis-list li {
  padding: 10px 0 10px 20px;
  position: relative;
  font-size: 14px;
  line-height: 1.6;
  color: var(--white-soft);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.synthesis-list li:last-child { border-bottom: none; }

.synthesis-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

/* Divergence scenario cards */
.scenarios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
}

.scenario-card {
  background: var(--navy);
  border: 1px solid var(--glass-border);
  border-top: 3px solid var(--blue);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: all var(--duration) var(--ease-out);
}

.scenario-card:hover {
  border-top-color: var(--cyan);
  transform: translateY(-2px);
}

.scenario-model {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: var(--space-sm);
}

.scenario-text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--white-muted);
}

/* Action bar */
.report-actions {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════
   PRICING PAGE
   ═══════════════════════════════════════════════════════════════ */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  text-align: center;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--blue);
  box-shadow: 0 0 40px var(--blue-glow);
}

.pricing-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: var(--navy);
  padding: 4px 16px;
  border-radius: var(--radius-full);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.pricing-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.pricing-price {
  font-size: 48px;
  font-weight: 900;
  color: var(--white);
  font-family: var(--font-mono);
  margin-bottom: 4px;
}

.pricing-price .currency {
  font-size: 24px;
  vertical-align: super;
  color: var(--blue);
}

.pricing-period {
  font-size: 14px;
  color: var(--white-dim);
  margin-bottom: var(--space-lg);
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: var(--space-lg);
}

.pricing-features li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--white-muted);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pricing-features li::before {
  content: '✓';
  color: var(--conf-high);
  font-weight: 700;
  font-size: 14px;
}

.pricing-features li:last-child { border-bottom: none; }

/* ═══════════════════════════════════════════════════════════════
   AUTH MODAL
   ═══════════════════════════════════════════════════════════════ */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  animation: fadeIn 0.2s ease;
}

.modal {
  background: var(--navy-light);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  width: 100%;
  max-width: 420px;
  animation: slideUp 0.3s var(--ease-out);
}

.modal-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--space-xs);
}

.modal-subtitle {
  font-size: 14px;
  color: var(--white-muted);
  margin-bottom: var(--space-xl);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white-muted);
  margin-bottom: var(--space-xs);
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  background: var(--navy);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color var(--duration);
  min-height: 48px;
}

.form-input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-glow);
}

.form-input::placeholder {
  color: var(--white-dim);
}

.form-footer {
  text-align: center;
  margin-top: var(--space-lg);
  font-size: 14px;
  color: var(--white-muted);
}

.form-footer a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}

.form-footer a:hover {
  text-decoration: underline;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */

.site-footer {
  padding: var(--space-xl) var(--space-lg);
  border-top: 1px solid var(--glass-border);
  text-align: center;
  font-size: 12px;
  color: var(--white-dim);
  margin-top: auto;
}

.site-footer a {
  color: var(--blue);
  text-decoration: none;
}

/* ═══════════════════════════════════════════════════════════════
   LOADING STATES
   ═══════════════════════════════════════════════════════════════ */

.skeleton {
  background: linear-gradient(90deg, var(--navy-mid) 25%, var(--slate) 50%, var(--navy-mid) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ═══════════════════════════════════════════════════════════════
   BACK BUTTON / BREADCRUMB
   ═══════════════════════════════════════════════════════════════ */

.back-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--white-muted);
  text-decoration: none;
  cursor: pointer;
  margin-bottom: var(--space-lg);
  padding: var(--space-sm) 0;
  transition: color var(--duration);
  min-height: 48px;
}

.back-link:hover {
  color: var(--blue);
}

/* ═══════════════════════════════════════════════════════════════
   TOAST / NOTIFICATION
   ═══════════════════════════════════════════════════════════════ */

.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--conf-high);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  z-index: 300;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s var(--ease-out);
  pointer-events: none;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .navbar-links { display: none; }
  .navbar-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    border-bottom: 1px solid var(--glass-border);
    padding: var(--space-md);
  }
  .menu-toggle { display: flex; }

  .hero-stats { gap: var(--space-lg); }
  .hero-stat-value { font-size: 22px; }

  .venues-grid { grid-template-columns: 1fr; }

  .report-header { flex-direction: column; }

  .scenarios-grid { grid-template-columns: 1fr; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }

  .page { padding: var(--space-md); }
  .page-title { font-size: 22px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 30px; }
  .hero-description { font-size: 15px; }
  .hero-stats { flex-direction: column; gap: var(--space-md); }

  .racing-table { font-size: 11px; }
  .racing-table thead th,
  .racing-table tbody td { padding: 6px 8px; }
}
