/* ============================================================
   EdgePull — Electric Blue Dark Theme
   Accent: #0096FF (electric blue)
   ============================================================ */

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

:root {
  --bg:         #030810;
  --bg-card:    #080d1a;
  --bg-card-hover: #0b1222;
  --bg-section: #050b18;
  --fg:         #e4eaff;
  --fg-muted:   #6a7a99;
  --fg-dim:     #2e3a52;
  --accent:     #0096ff;
  --accent-bright: #00cfff;
  --accent-dim: rgba(0,150,255,0.10);
  --accent-glow:  rgba(0,150,255,0.20);
  --accent-border: rgba(0,150,255,0.28);
  --amber:      #ffb800;
  --amber-dim:  rgba(255,184,0,0.10);
  --amber-border: rgba(255,184,0,0.22);
  --green:      #00e5a0;
  --green-dim:  rgba(0,229,160,0.10);
  --green-border: rgba(0,229,160,0.25);
  --border:     rgba(255,255,255,0.05);
  --border-mid: rgba(255,255,255,0.08);
  --radius:     10px;
  --radius-sm:  5px;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: 'Rajdhani', sans-serif; font-weight: 700; letter-spacing: 0.04em; line-height: 1.06; }
h1 { font-size: clamp(3.4rem, 9vw, 7rem); }
h2 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.8rem); }

.section-eyebrow {
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  border-radius: 2px;
}

.section-heading { color: var(--fg); margin-bottom: 1.2rem; }
.section-body { color: var(--fg-muted); font-size: 1.05rem; line-height: 1.80; max-width: 540px; }

/* ===== LAYOUT ===== */
.section-inner { max-width: 1140px; margin: 0 auto; padding: 0 2rem; }

/* ============================================================
   NAV
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(3,8,16,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0.9rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--fg);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.nav-logo-icon {
  width: 28px;
  height: 28px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px rgba(0,150,255,0.25);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.nav-links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--fg); background: var(--accent-dim); }
.nav-links a.active { color: var(--accent); }
.nav-cta {
  color: var(--accent) !important;
  border: 1px solid var(--accent-border) !important;
  background: var(--accent-dim) !important;
  box-shadow: 0 0 12px rgba(0,150,255,0.15);
  transition: box-shadow 0.2s !important;
}
.nav-cta:hover { box-shadow: 0 0 20px rgba(0,150,255,0.35) !important; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 12vw, 10rem) 0 clamp(4rem, 8vw, 7rem);
  min-height: 92vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(0,150,255,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 80% 60%, rgba(0,150,255,0.04) 0%, transparent 60%),
    var(--bg);
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.6;
}
.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  box-shadow: 0 0 20px rgba(0,150,255,0.12);
}
.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent);
  animation: pulse-blue 2s ease-in-out infinite;
}
@keyframes pulse-blue {
  0%, 100% { box-shadow: 0 0 4px var(--accent), 0 0 0 0 rgba(0,150,255,0.4); }
  50% { box-shadow: 0 0 8px var(--accent), 0 0 0 6px rgba(0,150,255,0); }
}
.hero-headline {
  color: var(--fg);
  margin-bottom: 1.5rem;
  line-height: 0.92;
  text-transform: uppercase;
}
.hero-headline span { color: var(--accent); }
.hero-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.80;
  max-width: 460px;
  margin-bottom: 2.25rem;
}
.hero-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #030810;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  box-shadow: 0 0 24px rgba(0,150,255,0.40), 0 2px 12px rgba(0,0,0,0.5);
  transition: box-shadow 0.2s ease, transform 0.15s ease;
}
.btn-primary:hover {
  box-shadow: 0 0 36px rgba(0,150,255,0.65), 0 4px 20px rgba(0,0,0,0.5);
  transform: translateY(-1px);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--fg-muted);
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.55rem 1.2rem;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-sm);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.btn-secondary:hover { color: var(--fg); border-color: var(--accent-border); background: var(--accent-dim); }

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hero-stat-val {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  display: block;
  text-shadow: 0 0 20px rgba(0,150,255,0.4);
}
.hero-stat-label { font-size: 0.7rem; color: var(--fg-muted); font-weight: 500; letter-spacing: 0.05em; }

/* Hero image panel */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-img-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--accent-border);
  box-shadow: 0 0 60px rgba(0,150,255,0.15), 0 30px 80px rgba(0,0,0,0.7);
}
.hero-img-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3,8,16,0.3) 0%, transparent 40%, rgba(3,8,16,0.2) 100%);
  pointer-events: none;
}
.hero-img-wrapper img { display: block; width: 100%; max-width: 540px; height: auto; }
/* Electric glow on corner */
.hero-img-wrapper::before {
  content: '';
  position: absolute;
  top: -1px; right: -1px;
  width: 80px; height: 80px;
  background: radial-gradient(ellipse at top right, rgba(0,150,255,0.6) 0%, transparent 70%);
  border-radius: 0 var(--radius) 0 0;
  pointer-events: none;
  z-index: 1;
}
/* Floating badge */
.hero-float-badge {
  position: absolute;
  bottom: -1rem;
  left: -1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 0 30px rgba(0,150,255,0.20), 0 8px 30px rgba(0,0,0,0.5);
  z-index: 2;
}
.hfb-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--green);
  font-weight: 700;
}
.hfb-info { display: flex; flex-direction: column; gap: 0.1rem; }
.hfb-label { font-size: 0.65rem; color: var(--fg-muted); font-weight: 600; letter-spacing: 0.05em; }
.hfb-val { font-family: 'Rajdhani', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--green); line-height: 1; }

/* ============================================================
   MARKETS GRID
   ============================================================ */
.markets { padding: clamp(4rem, 8vw, 7rem) 0; background: var(--bg-section); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.markets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
  margin-top: 2rem;
}
.market-tile {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  text-decoration: none;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
  cursor: pointer;
}
.market-tile:hover {
  border-color: var(--accent-border);
  box-shadow: 0 0 20px rgba(0,150,255,0.10), 0 4px 16px rgba(0,0,0,0.3);
  transform: translateY(-2px);
}
.market-tile.active {
  border-color: var(--accent-border);
  background: rgba(0,150,255,0.05);
  box-shadow: 0 0 16px rgba(0,150,255,0.12);
}
.market-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.market-tile-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.market-tile-meta { font-size: 0.72rem; color: var(--fg-muted); }
.market-live-badge {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.market-live-badge::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 4px var(--green);
  animation: pulse-blue 2s ease-in-out infinite;
}

/* ============================================================
   SIGNALS CHECKLIST
   ============================================================ */
.signals { padding: clamp(5rem, 10vw, 9rem) 0; }
.signals-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: 0.5rem; }
.signals-header-text { }
.signals-header-right { display: flex; flex-direction: column; align-items: flex-end; gap: 0.4rem; }
.signals-sub-heading {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}
.check-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.25rem;
  transition: border-color 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.check-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}
.check-item:hover { border-color: var(--accent-border); box-shadow: 0 0 20px rgba(0,150,255,0.08); }
.check-item:hover::before { opacity: 1; }
.check-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 0 12px rgba(0,150,255,0.15);
}
.check-name {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--fg);
  margin-bottom: 0.4rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.check-desc { font-size: 0.82rem; color: var(--fg-muted); line-height: 1.65; }
.check-score {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: 4px;
  padding: 0.15rem 0.4rem;
}

.threshold-note {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  background: var(--amber-dim);
  border: 1px solid var(--amber-border);
  border-radius: var(--radius);
  padding: 0.9rem 1.2rem;
  font-size: 0.85rem;
  color: var(--fg-muted);
  max-width: 660px;
  line-height: 1.65;
  margin-top: 1.75rem;
}
.threshold-icon { flex-shrink: 0; margin-top: 0.05rem; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works { padding: clamp(5rem, 10vw, 9rem) 0; background: var(--bg-section); border-top: 1px solid var(--border); }
.steps-row {
  display: grid;
  grid-template-columns: 1fr 48px 1fr 48px 1fr;
  gap: 0;
  margin-top: 2.5rem;
  align-items: start;
}
.step { padding: 0 1.25rem; position: relative; }
.step::after {
  content: '';
  position: absolute;
  top: 1.5rem;
  right: -24px;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-border), transparent);
}
.step:last-child::after { display: none; }
.step-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.18;
  line-height: 1;
  margin-bottom: 0.75rem;
  text-shadow: 0 0 30px rgba(0,150,255,0.5);
}
.step-title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fg);
  margin-bottom: 0.55rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.step-body { font-size: 0.85rem; color: var(--fg-muted); line-height: 1.75; }
.step-connector {
  width: 48px;
  height: 1px;
  background: var(--accent-border);
  margin-top: 2.5rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.step-connector::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  margin-left: auto;
}

/* ============================================================
   EDGE SECTION
   ============================================================ */
.edge-section { padding: clamp(5rem, 10vw, 9rem) 0; border-top: 1px solid var(--border); }
.edge-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.edge-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.edge-stat-val {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.25rem;
  text-shadow: 0 0 20px rgba(0,150,255,0.4);
}
.edge-stat-label { font-size: 0.70rem; color: var(--fg-muted); font-weight: 500; letter-spacing: 0.05em; }

/* Edge card */
.edge-card {
  background: var(--bg-card);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: 0 0 40px rgba(0,150,255,0.08), 0 20px 60px rgba(0,0,0,0.4);
}
.edge-card-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
}
.edge-bar-group { display: flex; flex-direction: column; gap: 1.1rem; }
.edge-bar-item { display: grid; grid-template-columns: 1fr 90px 40px; align-items: center; gap: 0.75rem; }
.edge-bar-name { font-size: 0.78rem; color: var(--fg-muted); }
.edge-bar {
  height: 6px;
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  background: rgba(255,255,255,0.04);
}
.edge-bar-fill-blue { height: 100%; background: linear-gradient(90deg, #0096ff, #00cfff); border-radius: 3px; box-shadow: 0 0 8px rgba(0,150,255,0.4); }
.edge-bar-fill-dark { height: 100%; background: rgba(255,255,255,0.03); }
.edge-bar-score { font-family: 'Rajdhani', sans-serif; font-size: 1rem; font-weight: 700; color: var(--accent); }
.edge-card-result {
  margin-top: 1.5rem;
  font-size: 0.82rem;
  color: var(--fg-muted);
  border-top: 1px solid var(--border);
  padding-top: 1.1rem;
  line-height: 1.6;
}
.edge-card-result strong { color: var(--accent); }

/* ============================================================
   TRUST / SECURITY
   ============================================================ */
.trust { padding: clamp(4rem, 7vw, 6rem) 0; background: var(--bg-section); border-top: 1px solid var(--border); }
.trust-badges { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; margin-top: 2rem; }
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  color: var(--fg-muted);
  font-weight: 500;
}
.trust-badge svg { color: var(--accent); flex-shrink: 0; }

/* ============================================================
   CLOSING / CTA
   ============================================================ */
.closing { padding: clamp(6rem, 12vw, 11rem) 0; border-top: 1px solid var(--border); position: relative; overflow: hidden; }
.closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(0,150,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.closing-inner { max-width: 720px; position: relative; z-index: 1; }
.closing-headline {
  color: var(--fg);
  margin-bottom: 1.5rem;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 0.95;
  text-transform: uppercase;
}
.closing-headline span { color: var(--accent); }
.closing-body { color: var(--fg-muted); font-size: 1.05rem; line-height: 1.85; margin-bottom: 1.25rem; }
.closing-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; margin-top: 2.5rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0;
  background: var(--bg);
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.footer-brand {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--fg);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-disclaimer { font-size: 0.73rem; color: var(--fg-dim); max-width: 540px; line-height: 1.65; }
.footer-copy { font-size: 0.70rem; color: var(--fg-dim); }
.footer-links { display: flex; gap: 1.5rem; margin-top: 0.5rem; }
.footer-links a { font-size: 0.73rem; color: var(--fg-dim); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--fg-muted); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { order: -1; }
  .hero-img-wrapper img { max-width: 100%; }
  .hero-float-badge { bottom: -0.75rem; left: 1rem; }
  .edge-layout { grid-template-columns: 1fr; gap: 3rem; }
  .steps-row { grid-template-columns: 1fr; gap: 2.5rem; }
  .step::after { display: none; }
  .step-connector { display: none; }
  .signals-header { flex-direction: column; align-items: flex-start; }
  .signals-header-right { align-items: flex-start; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hero-headline { font-size: clamp(2.8rem, 14vw, 5rem); }
  .hero-stats { gap: 1.5rem; }
  .hero-stat-val { font-size: 1.6rem; }
  .edge-stats { gap: 1.5rem; }
  .edge-stat-val { font-size: 1.8rem; }
  .markets-grid { grid-template-columns: repeat(2, 1fr); }
  .checklist-grid { grid-template-columns: 1fr; }
  .check-score { display: none; }
  .footer-links { flex-wrap: wrap; gap: 1rem; }
}
@media (max-width: 420px) {
  .markets-grid { grid-template-columns: 1fr; }
}