/* Soccer Edge — Design System */
/* Athletic Precision: Deep navy, electric blue, warm sand */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
  /* Navy depths */
  --navy-950: #020617;
  --navy-900: #0a0f1c;
  --navy-800: #0f172a;
  --navy-700: #1e293b;
  --navy-600: #334155;
  --navy-500: #475569;
  --navy-400: #64748b;
  --navy-300: #94a3b8;
  --navy-200: #cbd5e1;
  --navy-100: #e2e8f0;
  --navy-50: #f1f5f9;

  /* Electric blue */
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --blue-400: #60a5fa;
  --blue-300: #93c5fd;
  --blue-200: #bfdbfe;
  --blue-100: #dbeafe;
  --blue-50: #eff6ff;
  --blue-glow: rgba(37, 99, 235, 0.15);

  /* Warm sand */
  --sand-600: #92794a;
  --sand-500: #b09468;
  --sand-400: #c4ad84;
  --sand-300: #d8c9a8;
  --sand-200: #e8dfc8;
  --sand-100: #f5f1e8;

  /* Emerald (for success/check states) */
  --green-500: #10b981;
  --green-400: #34d399;
  --green-100: #d1fae5;

  /* Red (for X states) */
  --red-500: #ef4444;
  --red-100: #fee2e2;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', system-ui, sans-serif;
  background: white;
  color: var(--navy-800);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ============ NAVIGATION ============ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 15, 28, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
}
.logo-mark {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 0.875rem;
  letter-spacing: -0.5px;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}
.logo-wordmark {
  font-weight: 700;
  font-size: 1.25rem;
  color: white;
  letter-spacing: -0.25px;
}
.logo-wordmark span { color: var(--blue-400); }

.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  color: var(--navy-300);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 0.5rem 0.875rem;
  border-radius: 8px;
  transition: all 0.2s;
}
.nav-links a:hover { color: white; background: rgba(255,255,255,0.06); }
.nav-links a.active { color: var(--blue-400); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1.125rem;
  background: var(--blue-600);
  color: white !important;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.2s;
  text-decoration: none;
}
.nav-cta:hover { background: var(--blue-500); transform: translateY(-1px); }

.mobile-toggle {
  display: flex;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--navy-300);
}
@media (min-width: 900px) {
  .nav-links { display: flex; }
  .mobile-toggle { display: none; }
}

.mobile-nav {
  display: none;
  padding: 0.5rem 1.5rem 1.25rem;
  background: var(--navy-900);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 0.625rem 0;
  color: var(--navy-300);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: white; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
}
.btn-blue {
  background: var(--blue-600);
  color: white;
  box-shadow: 0 2px 12px rgba(37, 99, 235, 0.3);
}
.btn-blue:hover { background: var(--blue-500); transform: translateY(-2px); box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4); }

.btn-sand {
  background: var(--sand-500);
  color: white;
  box-shadow: 0 2px 12px rgba(176, 148, 104, 0.3);
}
.btn-sand:hover { background: var(--sand-400); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.2);
}
.btn-outline:hover { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.05); }

.btn-outline-blue {
  background: transparent;
  color: var(--blue-500);
  border: 1.5px solid var(--blue-500);
}
.btn-outline-blue:hover { background: var(--blue-50); }

.btn-lg { padding: 1rem 2rem; font-size: 1.0625rem; border-radius: 12px; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }

.btn-group { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ============ HERO SECTIONS ============ */
.hero {
  position: relative;
  background: var(--navy-900);
  padding: 10rem 1.5rem 6rem;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(37, 99, 235, 0.08), transparent),
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(176, 148, 104, 0.05), transparent);
  pointer-events: none;
}
/* Diagonal cut at bottom of hero */
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: white;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
.hero-dark::after { background: var(--navy-50); }

.hero-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.2);
  color: var(--blue-300);
  padding: 0.375rem 1rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: white;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 1.5rem;
}
.hero h1 .accent { color: var(--blue-400); }
.hero h1 .sand { color: var(--sand-300); }
.hero-sub {
  font-size: 1.25rem;
  color: var(--navy-300);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* Sub-page heroes (smaller) */
.hero-sub-page {
  padding: 9rem 1.5rem 4rem;
}
.hero-sub-page h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

/* ============ SECTIONS ============ */
section {
  padding: 6rem 1.5rem;
}
.section-light { background: white; }
.section-gray { background: var(--navy-50); }
.section-dark { background: var(--navy-900); }
.section-darker { background: var(--navy-950); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}
.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.75px;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-header p {
  font-size: 1.125rem;
  color: var(--navy-500);
  line-height: 1.7;
}
.section-dark .section-header h2 { color: white; }
.section-dark .section-header p { color: var(--navy-400); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--blue-500);
  margin-bottom: 0.75rem;
}
.section-dark .section-label { color: var(--blue-400); }

/* ============ FEATURE CARDS ============ */
.feature-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.feature-grid-2 { grid-template-columns: 1fr; }
.feature-grid-3 { grid-template-columns: 1fr; }
.feature-grid-4 { grid-template-columns: 1fr; }

@media (min-width: 768px) {
  .feature-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .feature-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .feature-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .feature-grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.feature-card {
  background: white;
  border: 1px solid var(--navy-100);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s;
}
.feature-card:hover {
  border-color: var(--blue-200);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.08);
  transform: translateY(-2px);
}
.feature-card-dark {
  background: var(--navy-800);
  border-color: rgba(255,255,255,0.06);
}
.feature-card-dark:hover {
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.1);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.card-icon svg { width: 26px; height: 26px; }
.card-icon-blue { background: var(--blue-50); color: var(--blue-600); }
.card-icon-sand { background: var(--sand-100); color: var(--sand-600); }
.card-icon-green { background: var(--green-100); color: var(--green-500); }
.card-icon-red { background: var(--red-100); color: var(--red-500); }
.card-icon-navy { background: var(--navy-100); color: var(--navy-600); }

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: 0.5rem;
  letter-spacing: -0.25px;
}
.feature-card p {
  color: var(--navy-500);
  font-size: 0.9375rem;
  line-height: 1.65;
}
.feature-card-dark h3 { color: white; }
.feature-card-dark p { color: var(--navy-400); }

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 1.25rem;
  color: var(--blue-500);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: gap 0.2s;
}
.feature-link:hover { gap: 0.625rem; }
.feature-link svg { width: 16px; height: 16px; }

/* ============ PRODUCT SPLIT (ClubEdge + CoachEdge) ============ */
.product-split {
  display: grid;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 768px) { .product-split { grid-template-columns: 1fr 1fr; } }

.product-card {
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.product-card-blue {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
  border: 1px solid rgba(59, 130, 246, 0.15);
}
.product-card-sand {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
  border: 1px solid rgba(176, 148, 104, 0.2);
}
.product-card-tag {
  display: inline-flex;
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
}
.tag-blue { background: rgba(37, 99, 235, 0.15); color: var(--blue-400); }
.tag-sand { background: rgba(176, 148, 104, 0.15); color: var(--sand-300); }

.product-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}
.product-card .product-subtitle {
  color: var(--navy-400);
  margin-bottom: 1.5rem;
}
.product-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.product-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  color: var(--navy-200);
  font-size: 0.9375rem;
}
.product-list li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}
.product-card-blue .product-list li svg { color: var(--blue-400); }
.product-card-sand .product-list li svg { color: var(--sand-300); }

/* ============ DEMO CONTAINERS ============ */
.demo-frame {
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
}
.demo-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--navy-700);
}
.demo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot-r { background: #ef4444; }
.dot-y { background: #eab308; }
.dot-g { background: #22c55e; }
.demo-url {
  margin-left: 1rem;
  font-size: 0.75rem;
  color: var(--navy-500);
  font-family: monospace;
}
.demo-body { padding: 1.5rem; }

/* Demo tabs */
.demo-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.demo-tab {
  padding: 0.625rem 1.25rem;
  border-radius: 8px;
  background: var(--navy-700);
  color: var(--navy-300);
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.9375rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.demo-tab.active { background: var(--blue-600); color: white; }
.demo-tab:hover:not(.active) { background: var(--navy-600); color: white; }
.demo-panel { display: none; }
.demo-panel.active { display: block; }

/* ============ LIVE BADGE ============ */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
}
.live-dot {
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

/* ============ STATS ROW ============ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}
.stat-item { text-align: center; }
.stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--blue-400);
  letter-spacing: -1px;
}
.stat-label {
  font-size: 0.875rem;
  color: var(--navy-400);
  font-weight: 500;
  margin-top: 0.25rem;
}

/* ============ COMPARISON TABLE ============ */
.compare-wrap {
  max-width: 1000px;
  margin: 0 auto;
  overflow-x: auto;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}
.compare-table th,
.compare-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--navy-100);
  font-size: 0.9375rem;
}
.compare-table thead th {
  font-weight: 600;
  color: var(--navy-600);
  background: var(--navy-50);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.compare-table thead th:last-child {
  background: var(--blue-50);
  color: var(--blue-600);
}
.compare-table td:first-child {
  font-weight: 500;
  color: var(--navy-700);
}
.compare-table td:nth-child(2) { text-align: center; color: var(--navy-400); }
.compare-table td:last-child { text-align: center; background: rgba(37, 99, 235, 0.03); }

.compare-category td {
  background: var(--navy-100) !important;
  font-weight: 600 !important;
  color: var(--navy-600) !important;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.icon-check {
  display: inline-flex;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-500);
  align-items: center;
  justify-content: center;
}
.icon-x {
  display: inline-flex;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--navy-100);
  color: var(--navy-400);
  align-items: center;
  justify-content: center;
}
.icon-dollar {
  display: inline-flex;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--sand-100);
  color: var(--sand-600);
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}
.icon-nominal {
  display: inline-flex;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--blue-600);
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: 700;
}
.icon-check svg, .icon-x svg { width: 14px; height: 14px; }

/* ============ STORY / TESTIMONIAL ============ */
.story-split {
  display: grid;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 768px) { .story-split { grid-template-columns: 1fr 1fr; } }

.quote-card {
  background: var(--navy-50);
  border-radius: 20px;
  padding: 2.5rem;
  border-left: 4px solid var(--blue-500);
}
.quote-card blockquote {
  font-size: 1.125rem;
  color: var(--navy-600);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.quote-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.quote-avatar {
  width: 48px;
  height: 48px;
  background: var(--blue-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}
.quote-name { font-weight: 600; color: var(--navy-800); }
.quote-role { font-size: 0.875rem; color: var(--navy-500); }

/* ============ FAQ ============ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-list details {
  border-bottom: 1px solid var(--navy-200);
  padding: 1.25rem 0;
}
.faq-list summary {
  font-weight: 600;
  font-size: 1.0625rem;
  cursor: pointer;
  color: var(--navy-800);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-list summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--navy-400);
  transition: transform 0.2s;
}
.faq-list details[open] summary::after {
  content: '−';
}
.faq-list details p {
  margin-top: 0.75rem;
  color: var(--navy-500);
  line-height: 1.7;
}

/* ============ CTA SECTION ============ */
.cta-section {
  background: var(--navy-900);
  padding: 6rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -2px; left: 0; right: 0;
  height: 80px;
  background: white;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.cta-section.from-gray::before { background: var(--navy-50); }
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}
.cta-content h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}
.cta-content p {
  color: var(--navy-400);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

/* ============ CONTACT FORM ============ */
.contact-form {
  max-width: 480px;
  margin: 0 auto;
}
.form-field { margin-bottom: 1rem; }
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: var(--navy-800);
  border: 1px solid var(--navy-700);
  color: white;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  transition: border-color 0.2s;
}
.form-input::placeholder { color: var(--navy-500); }
.form-input:focus { outline: none; border-color: var(--blue-500); box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15); }
textarea.form-input { resize: vertical; min-height: 100px; }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--navy-950);
  padding: 4rem 1.5rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
.footer-brand p {
  color: var(--navy-400);
  font-size: 0.9375rem;
  margin-top: 1rem;
  max-width: 280px;
}
.footer-col h4 {
  color: var(--navy-300);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  color: var(--navy-500);
  text-decoration: none;
  font-size: 0.9375rem;
  padding: 0.25rem 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--blue-400); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--navy-600);
  font-size: 0.875rem;
}

/* ============ FEATURE ROW (alternating image/text) ============ */
.feature-row {
  display: grid;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 0;
}
@media (min-width: 768px) {
  .feature-row { grid-template-columns: 1fr 1fr; }
  .feature-row.reverse { direction: rtl; }
  .feature-row.reverse > * { direction: ltr; }
}
.feature-row h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: 0.75rem;
  letter-spacing: -0.25px;
}
.feature-row p {
  color: var(--navy-500);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.feature-row .tag {
  display: inline-flex;
  padding: 0.25rem 0.625rem;
  background: var(--blue-50);
  color: var(--blue-600);
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

/* ============ CHECKLIST ============ */
.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
}
.checklist li svg {
  width: 18px;
  height: 18px;
  color: var(--blue-500);
  flex-shrink: 0;
  margin-top: 2px;
}
.checklist-dark li { color: var(--navy-200); }

/* ============ ANIMATIONS ============ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in {
  animation: fadeInUp 0.6s ease-out forwards;
}
.delay-1 { animation-delay: 0.1s; opacity: 0; }
.delay-2 { animation-delay: 0.2s; opacity: 0; }
.delay-3 { animation-delay: 0.3s; opacity: 0; }
.delay-4 { animation-delay: 0.4s; opacity: 0; }

/* ============ UTILITY ============ */
.text-center { text-align: center; }
.text-white { color: white; }
.text-muted { color: var(--navy-500); }
.text-sm { font-size: 0.875rem; }
.mt-2 { margin-top: 2rem; }
.mt-4 { margin-top: 4rem; }
.mb-2 { margin-bottom: 2rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-800 { max-width: 800px; }
.max-w-640 { max-width: 640px; }
.gap-1 { gap: 1rem; }

/* Stoplight indicators */
.dot-green { width: 22px; height: 22px; border-radius: 50%; background: #22c55e; }
.dot-yellow { width: 22px; height: 22px; border-radius: 50%; background: #eab308; }
.dot-red { width: 22px; height: 22px; border-radius: 50%; background: #ef4444; }
