/* ump.bot — Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700;800&display=swap');

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

:root {
  --dark:       #0a0f1a;
  --dark-2:     #111827;
  --dark-3:     #1a2235;
  --dark-4:     #242f45;
  --blue:       #00a8ff;
  --blue-dim:   #0077b3;
  --red:        #ff3b3b;
  --green:      #00e676;
  --text:       #e8e8e8;
  --text-sec:   #8892a0;
  --border:     rgba(255,255,255,0.08);
  --glow-blue:  0 0 20px rgba(0,168,255,0.25);
  --glow-red:   0 0 20px rgba(255,59,59,0.25);
  --glow-green: 0 0 20px rgba(0,230,118,0.25);
  --radius:     8px;
  --radius-lg:  16px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--dark);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.2;
  font-weight: 700;
}

a {
  color: var(--blue);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: #33bbff; }

img { max-width: 100%; }

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 15, 26, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 64px;
  display: flex;
  align-items: center;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
}
.nav-logo .dot-bot { color: var(--blue); }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--text-sec);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }

.nav-cta {
  background: var(--blue);
  color: var(--dark) !important;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600 !important;
}
.nav-cta:hover {
  background: #33bbff;
  color: var(--dark) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* === LAYOUT UTILITIES === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}
.section-sm { padding: 64px 0; }

.page-content {
  padding-top: 64px; /* nav height */
}

/* Grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* === CARDS === */
.card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.card:hover {
  border-color: rgba(0,168,255,0.3);
  box-shadow: var(--glow-blue);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(0,168,255,0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--text);
}
.card p {
  color: var(--text-sec);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--blue);
  color: var(--dark);
}
.btn-primary:hover {
  background: #33bbff;
  color: var(--dark);
  transform: translateY(-1px);
  box-shadow: var(--glow-blue);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 1px solid var(--blue);
}
.btn-outline:hover {
  background: rgba(0,168,255,0.08);
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
}

.btn-lg {
  font-size: 1.05rem;
  padding: 16px 36px;
}

.btn-red {
  background: var(--red);
  color: #fff;
}
.btn-red:hover {
  background: #ff5555;
  color: #fff;
  box-shadow: var(--glow-red);
  transform: translateY(-1px);
}

/* === BADGES === */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.badge-blue  { background: rgba(0,168,255,0.15); color: var(--blue); }
.badge-red   { background: rgba(255,59,59,0.15);  color: var(--red); }
.badge-green { background: rgba(0,230,118,0.15);  color: var(--green); }
.badge-amber { background: rgba(255,193,7,0.15);  color: #ffc107; }

/* === LABELS & SECTION HEADS === */
.eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--text);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-sec);
  max-width: 600px;
  line-height: 1.7;
}

/* === DIVIDERS === */
.divider {
  height: 1px;
  background: var(--border);
  margin: 64px 0;
}

/* === FORMS === */
.signup-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
}
.signup-form input[type="email"] {
  flex: 1;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--text);
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}
.signup-form input[type="email"]::placeholder { color: var(--text-sec); }
.signup-form input[type="email"]:focus { border-color: var(--blue); }

.form-note {
  font-size: 0.8rem;
  color: var(--text-sec);
  margin-top: 10px;
}

/* === STRIKE ZONE SVG DIAGRAMS === */
.zone-diagram {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.zone-diagram-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-sec);
}

/* === SCORECARD === */
.scorecard {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.scorecard-header {
  background: var(--dark-3);
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.scorecard-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-sec);
}
.scorecard-ump {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  margin: 4px 0;
}
.scorecard-grade {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffc107;
  line-height: 1;
}
.scorecard-grade-label {
  font-size: 0.75rem;
  color: var(--text-sec);
  text-align: center;
  margin-top: 4px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.scorecard-stats {
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.stat-item label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-sec);
  margin-bottom: 6px;
}
.stat-item .stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}
.stat-bar {
  height: 4px;
  background: var(--dark-4);
  border-radius: 4px;
  margin-top: 8px;
  overflow: hidden;
}
.stat-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: var(--blue);
  transition: width 1s ease;
}

/* === CALLOUT BOXES === */
.callout {
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  border-left: 4px solid;
}
.callout-blue  { background: rgba(0,168,255,0.06); border-color: var(--blue); }
.callout-red   { background: rgba(255,59,59,0.06); border-color: var(--red); }
.callout-green { background: rgba(0,230,118,0.06); border-color: var(--green); }
.callout-amber { background: rgba(255,193,7,0.06); border-color: #ffc107; }

.callout h4 {
  font-size: 1rem;
  margin-bottom: 10px;
}
.callout p {
  color: var(--text-sec);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* === FOOTER === */
.footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
}
.footer-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
}
.footer-brand .dot-bot { color: var(--blue); }
.footer-tagline {
  color: var(--text-sec);
  font-size: 0.9rem;
  margin-top: 6px;
}
.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--text-sec);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }

.footer-social {
  display: flex;
  gap: 16px;
}
.social-icon {
  width: 36px;
  height: 36px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-sec);
  font-size: 0.9rem;
  transition: all 0.2s;
}
.social-icon:hover {
  background: var(--dark-4);
  color: var(--text);
  border-color: rgba(255,255,255,0.16);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  color: var(--text-sec);
  font-size: 0.85rem;
}

/* === HERO — HOME === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Grid lines background */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,168,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,168,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Radial glow */
.hero-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(0,168,255,0.08) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,168,255,0.1);
  border: 1px solid rgba(0,168,255,0.25);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-tag .dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 20px;
}
.hero-title .accent { color: var(--blue); }

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-sec);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-launch {
  font-size: 0.9rem;
  color: var(--text-sec);
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-launch .dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* === ANIMATED STRIKE ZONE (HERO) === */
.strike-zone-widget {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
}

.strike-zone-widget-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-sec);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.live-badge {
  background: rgba(255,59,59,0.15);
  color: var(--red);
  padding: 2px 10px;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
}
.live-badge::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.zone-svg-wrapper {
  display: flex;
  justify-content: center;
}

.pitch-dot {
  transition: all 0.3s ease;
}

.pitch-dot.strike { fill: var(--red); }
.pitch-dot.ball   { fill: var(--green); }
.pitch-dot.missed { fill: var(--red); }

/* MISSED CALL flash label */
.missed-call-flash {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--red);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.4s;
}
.missed-call-flash.show { opacity: 1; }

.zone-legend {
  display: flex;
  gap: 20px;
  margin-top: 14px;
  justify-content: center;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-sec);
}
.legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

/* === FEATURES SECTION === */
.features { background: var(--dark); }
.features-grid { margin-top: 56px; }

/* === WBC TEASER === */
.wbc-teaser {
  background: linear-gradient(135deg, var(--dark-2) 0%, #0d1827 100%);
  border-radius: var(--radius-lg);
  padding: 56px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.wbc-teaser::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,59,59,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.wbc-teaser-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.wbc-teaser-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.wbc-teaser h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 16px;
}
.wbc-teaser p {
  color: var(--text-sec);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 24px;
}

/* === WBC ANALYSIS PAGE === */
.page-hero {
  padding: 100px 0 64px;
  background: linear-gradient(180deg, var(--dark-2) 0%, var(--dark) 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,59,59,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,59,59,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.page-hero-sub {
  color: var(--text-sec);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.pipe { color: var(--border); }

/* Scorecard page layout */
.analysis-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 40px;
  align-items: start;
}

/* Pitch call block */
.pitch-block {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
}
.pitch-block-header {
  background: var(--dark-3);
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.pitch-inning {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
}
.pitch-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 4px 0 0;
}
.pitch-body {
  padding: 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: start;
}

/* Aftermath / reactions */
.reaction-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.reaction-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 20px;
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.reaction-icon {
  font-size: 1.3rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.reaction-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 4px;
}
.reaction-text { color: var(--text-sec); font-size: 0.9rem; line-height: 1.6; }

/* Share box */
.share-box {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
}
.share-box h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.share-box p {
  color: var(--text-sec);
  margin-bottom: 24px;
  font-size: 0.95rem;
}
.share-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === HOW IT WORKS STEPS (ABOUT / ABS) === */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: step;
}
.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(0,168,255,0.1);
  border: 1px solid rgba(0,168,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--blue);
  counter-increment: step;
}
.step-content h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.step-content p {
  color: var(--text-sec);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* === ABS PAGE === */
.abs-zone-demo {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.spec-table th {
  text-align: left;
  padding: 10px 16px;
  background: var(--dark-3);
  color: var(--text-sec);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}
.spec-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  vertical-align: top;
}
.spec-table tr:last-child td { border-bottom: none; }
.spec-table td:first-child { color: var(--text-sec); font-size: 0.85rem; }

/* === MISC === */
.text-center { text-align: center; }
.text-blue   { color: var(--blue); }
.text-red    { color: var(--red); }
.text-green  { color: var(--green); }
.text-amber  { color: #ffc107; }
.text-sec    { color: var(--text-sec); }

.mt-4  { margin-top: 4px; }
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-sub { margin: 0 auto 36px; }
  .hero-launch { justify-content: center; }
  .signup-form { margin: 0 auto; }
  .strike-zone-widget { max-width: 380px; margin: 0 auto; }

  .analysis-layout {
    grid-template-columns: 1fr;
  }
  .wbc-teaser-inner { grid-template-columns: 1fr; }

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

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(10,15,26,0.98);
    flex-direction: column;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    gap: 16px;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }

  .wbc-teaser { padding: 36px 24px; }
  .pitch-body { grid-template-columns: 1fr; }

  .scorecard-stats { grid-template-columns: 1fr; }

  .signup-form { flex-direction: column; }
  .signup-form input { width: 100%; }

  .footer-top { flex-direction: column; }

  .page-hero { padding: 80px 0 48px; }

  .share-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .section-title { font-size: 1.6rem; }
  .wbc-teaser h2 { font-size: 1.3rem; }
}
