*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #0D1B2A; background: #fff; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; }
img { max-width: 100%; display: block; }

:root {
  --navy:      #0D1B2A;
  --cyan:      #00B4D8;
  --cyan-mid:  #0D6E8A;
  --white:     #ffffff;
  --gray-50:   #F7FAFC;
  --gray-100:  #EBF8FF;
  --gray-200:  rgba(13,27,42,0.08);
  --gray-400:  #718096;
  --gray-600:  #4A5568;
  --red:       #A32D2D;
  --amber:     #B45309;
  --purple:    #7C5CE0;
  --r-sm:      6px;
  --r-md:      10px;
}

/* ============================================================
   NAVIGATION — large logo treatment
============================================================ */
.nav {
  background: var(--navy);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-logo { display: flex; align-items: center; gap: 16px; }
.nav-logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 26px;
  letter-spacing: 0.1em;
  color: var(--white);
  text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 1.5rem; }
.nav-links a { color: rgba(255,255,255,0.6); font-size: 13px; transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--cyan) !important;
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 500;
  border: none !important;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--cyan-mid) !important; }

/* ============================================================
   HERO
============================================================ */
.hero { background: var(--navy); padding: 80px 2rem 56px; text-align: center; }
.eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 18px;
  font-weight: 500;
}
.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4.5vw, 50px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  max-width: 780px;
  margin: 0 auto 18px;
  letter-spacing: -0.02em;
}
.hero h1 span { color: var(--cyan); }
.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.58);
  max-width: 540px;
  margin: 0 auto 20px;
  line-height: 1.65;
}
.hero-tagline {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  border-top: 1px solid rgba(0,180,216,0.3);
  border-bottom: 1px solid rgba(0,180,216,0.3);
  padding: 6px 18px;
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.btn-primary {
  background: var(--cyan);
  color: var(--white);
  padding: 13px 28px;
  border-radius: var(--r-sm);
  font-size: 15px;
  font-weight: 500;
  display: inline-block;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--cyan-mid); color: var(--white); }
.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.7);
  padding: 13px 28px;
  border-radius: var(--r-sm);
  font-size: 15px;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.2);
  display: inline-block;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }

.ticker-wrap {
  max-width: 660px;
  margin: 0 auto;
  border: 1px solid rgba(0,180,216,0.25);
  border-radius: var(--r-md);
  overflow: hidden;
  background: rgba(255,255,255,0.03);
}
.ticker-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(0,180,216,0.15);
  background: rgba(0,180,216,0.07);
}
.ticker-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.35} }
.ticker-label { font-size: 11px; letter-spacing: 0.1em; color: var(--cyan); text-transform: uppercase; font-weight: 500; }
.ticker-feed { padding: 8px 0; min-height: 128px; }
.tick-row { display: flex; align-items: center; gap: 10px; padding: 7px 16px; font-size: 13px; animation: fadeSlide 0.4s ease; }
@keyframes fadeSlide { from{opacity:0;transform:translateY(-6px)} to{opacity:1;transform:translateY(0)} }
.badge { padding: 2px 8px; border-radius: 4px; font-size: 11px; font-weight: 500; white-space: nowrap; }
.badge.resolved { background: rgba(0,180,216,0.15); color: var(--cyan); }
.badge.open     { background: rgba(255,165,0,0.15);  color: #FFA500; }
.badge.closed   { background: rgba(74,222,128,0.15); color: #4ADE80; }
.tick-text { color: rgba(255,255,255,0.72); flex: 1; }
.tick-time { color: rgba(255,255,255,0.28); font-size: 11px; white-space: nowrap; }

/* ============================================================
   STATS BAR — dynamic count-up
============================================================ */
.stats-bar { background: var(--white); padding: 48px 2rem; border-bottom: 1px solid var(--gray-200); }
.stats-inner { max-width: 920px; margin: 0 auto; }
.stats-eyebrow {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 500;
  text-align: center;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.pulse-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); animation: pulse 1.8s infinite; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 24px; }
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(34px, 5vw, 48px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}
.stat-label { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.stat-sub { font-size: 12px; color: var(--gray-400); line-height: 1.4; }
.stats-note { text-align: center; margin-top: 24px; font-size: 11px; color: var(--gray-400); }

/* ============================================================
   INDUSTRY PILLS — top strip
============================================================ */
.proof-bar { background: var(--navy); padding: 20px 2rem 34px; text-align: center; }
.proof-label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 14px; }
.pills { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.pill { padding: 5px 14px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.12); font-size: 12px; color: rgba(255,255,255,0.48); }

/* ============================================================
   SHARED SECTION STYLES
============================================================ */
.section { padding: 80px 2rem; }
.section-inner { max-width: 980px; margin: 0 auto; }
.section-light { background: var(--white); }
.section-alt { background: var(--gray-50); }
.section-dark { background: var(--navy); }
.sec-eyebrow { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cyan); font-weight: 500; margin-bottom: 10px; }
.sec-h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(24px, 3.2vw, 38px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.sec-h2-light { color: var(--white); }
.sec-lead { font-size: 16px; color: var(--gray-600); line-height: 1.7; max-width: 620px; margin-bottom: 52px; }
.sec-lead-light { color: rgba(255,255,255,0.55); }

/* ============================================================
   WHY OPS INSIGHTS — momentum track (redesigned)
============================================================ */
.momentum-track { position: relative; margin-bottom: 8px; }
.track-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red) 0%, var(--gray-200) 45%, var(--cyan) 100%);
  z-index: 0;
}
.track-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0;
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
}
.state-card {
  border-radius: var(--r-md);
  padding: 20px 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.state-card.before { background: var(--white); border: 1px solid rgba(163,45,45,0.18); }
.state-card.after { background: var(--navy); border: 1px solid rgba(0,180,216,0.3); }
.state-card:hover { transform: translateY(-2px); }
.state-card.before:hover { box-shadow: 0 10px 30px rgba(163,45,45,0.08); }
.state-card.after:hover { box-shadow: 0 10px 30px rgba(0,180,216,0.18); }
.state-tag { font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; margin-bottom: 7px; display: inline-flex; align-items: center; gap: 5px; }
.state-card.before .state-tag { color: var(--red); }
.state-card.after .state-tag { color: var(--cyan); }
.state-title { font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.state-card.before .state-title { color: var(--navy); }
.state-card.after .state-title { color: var(--white); }
.state-desc { font-size: 12.5px; line-height: 1.5; }
.state-card.before .state-desc { color: var(--gray-400); }
.state-card.after .state-desc { color: rgba(255,255,255,0.55); }
.arrow-pulse {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 14px;
  flex-shrink: 0;
  position: relative;
}
.arrow-pulse i { color: var(--white); font-size: 16px; }
.arrow-pulse::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--cyan);
  animation: ring 1.8s infinite;
}
@keyframes ring { 0%{transform:scale(1);opacity:0.6} 100%{transform:scale(1.8);opacity:0} }
.lead-stat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--gray-200);
  flex-wrap: wrap;
}
.lead-stat-item { text-align: center; }
.lead-stat-num { font-family: 'Space Grotesk', sans-serif; font-size: 28px; font-weight: 700; color: var(--navy); }
.lead-stat-num span { color: var(--cyan); }
.lead-stat-lbl { font-size: 12px; color: var(--gray-400); margin-top: 2px; }

/* ============================================================
   TABBED WORKFLOW
============================================================ */
.tab-nav { display: flex; gap: 0; background: var(--gray-50); border-radius: var(--r-md); padding: 4px; margin-bottom: 32px; flex-wrap: wrap; }
.tab-btn {
  flex: 1;
  min-width: 90px;
  padding: 10px 14px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-400);
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}
.tab-btn.active { background: var(--white); color: var(--navy); box-shadow: 0 1px 4px rgba(13,27,42,0.08); }
.tab-panel { display: none; }
.tab-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.tab-step-num { font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 700; color: var(--cyan); margin-bottom: 10px; }
.tab-copy h3 { font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 12px; letter-spacing: -0.01em; }
.tab-copy p { font-size: 14px; color: var(--gray-600); line-height: 1.7; }
.tab-visual { background: #1C2B3A; border-radius: var(--r-md); overflow: hidden; border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 14px 40px rgba(13,27,42,0.15); }
.tab-bar { background: #243447; padding: 8px 12px; display: flex; align-items: center; gap: 6px; }
.tab-dot { width: 9px; height: 9px; border-radius: 50%; }
.tab-dot.r { background: #FF5F57; } .tab-dot.y { background: #FEBC2E; } .tab-dot.g { background: #28C840; }
.tab-url { flex: 1; background: rgba(255,255,255,0.06); border-radius: 3px; padding: 3px 10px; font-size: 10px; color: rgba(255,255,255,0.35); margin-left: 6px; }
.tab-body { background: #0F1E2D; padding: 18px; min-height: 140px; display: flex; flex-direction: column; gap: 8px; justify-content: center; }
.tab-line { font-size: 12px; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 8px; }
.tab-line i { color: var(--cyan); font-size: 14px; }

/* ============================================================
   FEATURES GRID
============================================================ */
.feat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1px; background: var(--gray-200); border-radius: var(--r-md); overflow: hidden; }
.feat { background: var(--white); padding: 26px 22px; }
.feat-icon { width: 36px; height: 36px; border-radius: 8px; background: var(--gray-100); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.feat-icon i { font-size: 18px; color: var(--cyan); }
.feat h3 { font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 7px; }
.feat p { font-size: 13px; color: var(--gray-400); line-height: 1.6; }

/* ============================================================
   DIFFERENTIATORS
============================================================ */
.diff-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 8px; }
.diff-card { background: var(--navy); border: 1px solid rgba(255,255,255,0.09); border-radius: var(--r-md); padding: 22px; }
.diff-tag { display: inline-block; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cyan); background: rgba(0,180,216,0.12); padding: 2px 7px; border-radius: 4px; margin-bottom: 9px; font-weight: 500; }
.diff-card h4 { font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 7px; }
.diff-card p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ============================================================
   AI SECTION
============================================================ */
.ai-badge-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.ai-badge { padding: 4px 12px; border-radius: 20px; font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.ai-badge.ship { background: var(--gray-100); color: var(--cyan); }
.ai-badge.next { background: #FFF4E5; color: var(--amber); }
.ai-badge.adv  { background: #F3F0FF; color: var(--purple); }
.ai-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 16px; }
.ai-card { border-radius: var(--r-md); padding: 22px; border: 1px solid var(--gray-200); background: var(--white); }
.ai-card-tier { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; margin-bottom: 10px; }
.ai-card-tier.ship { color: var(--cyan); }
.ai-card-tier.next { color: var(--amber); }
.ai-card-tier.adv  { color: var(--purple); }
.ai-card h4 { font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.ai-card p { font-size: 13px; color: var(--gray-400); line-height: 1.6; }
.ai-status { display: inline-block; font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; padding: 2px 8px; border-radius: 4px; margin-top: 10px; font-weight: 600; }
.ai-status.ship { background: var(--gray-100); color: var(--cyan); }
.ai-status.next { background: #FFF4E5; color: var(--amber); }
.ai-status.adv  { background: #F3F0FF; color: var(--purple); }

/* ============================================================
   INDUSTRIES
============================================================ */
.ind-t1-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; margin-bottom: 32px; }
.ind-t1-card { border: 1px solid rgba(0,180,216,0.2); border-radius: var(--r-md); padding: 20px; display: flex; align-items: flex-start; gap: 14px; background: rgba(0,180,216,0.04); }
.ind-t1-card i { font-size: 22px; color: var(--cyan); flex-shrink: 0; margin-top: 1px; }
.ind-t1-name { font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 600; color: var(--white); line-height: 1.3; }
.ind-t1-sub { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 3px; line-height: 1.4; }
.ind-divider { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.ind-line { flex: 1; height: 1px; background: rgba(255,255,255,0.08); }
.ind-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.3); white-space: nowrap; }
.ind-t2-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.ind-t2-pill { padding: 6px 14px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.1); font-size: 12px; color: rgba(255,255,255,0.45); }

/* ============================================================
   IMPLEMENTATION
============================================================ */
.impl-timeline { display: flex; flex-wrap: wrap; gap: 2px; background: var(--gray-200); border-radius: var(--r-md); overflow: hidden; margin-bottom: 20px; }
.impl-step { flex: 1; min-width: 110px; background: var(--white); padding: 22px 14px; text-align: center; }
.impl-num { width: 38px; height: 38px; border-radius: 50%; background: var(--cyan); color: var(--white); font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; }
.impl-title { font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.impl-dur { font-size: 12px; color: var(--cyan); font-weight: 500; margin-bottom: 4px; }
.impl-desc { font-size: 11px; color: var(--gray-400); line-height: 1.45; }
.impl-total { text-align: center; padding: 18px 24px; background: var(--gray-50); border-radius: var(--r-md); border: 1px solid var(--gray-200); }
.impl-total strong { font-family: 'Space Grotesk', sans-serif; font-size: 15px; color: var(--navy); }
.impl-total span { font-size: 13px; color: var(--gray-400); margin-left: 6px; }

/* ============================================================
   CTA / DEMO FORM
============================================================ */
.cta-section { padding: 88px 2rem; text-align: center; }
.cta-sub { font-size: 16px; color: var(--gray-600); margin: 0 auto 36px; max-width: 480px; line-height: 1.65; }
.demo-form { max-width: 500px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.demo-form input, .demo-form select, .demo-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(13,27,42,0.18);
  border-radius: var(--r-sm);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--navy);
  outline: none;
  background: var(--white);
  transition: border-color 0.2s;
  appearance: none;
}
.demo-form input:focus, .demo-form select:focus, .demo-form textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0,180,216,0.1); }
.demo-form textarea { resize: vertical; min-height: 88px; }
.form-submit {
  background: var(--navy);
  color: var(--white);
  padding: 14px;
  border-radius: var(--r-sm);
  font-size: 15px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  border: none;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s;
}
.form-submit:hover { background: #1a2f45; }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-note { font-size: 12px; color: #A0AEC0; text-align: center; }
.form-success{
	padding:24px;
	background:var(--gray-100);
	border-radius:var(--r-md);
	text-align:center;
	color:var(--cyan);
	font-weight:500;
	font-size:16px;
}
.form-submit-error{
	padding:24px;
	background:#faeded;
	border-radius:var(--r-md);
	text-align:center;
	color:#f30505;
	font-weight:500;
	font-size:16px;
}
/* ============================================================
   FOOTER
============================================================ */
.footer { background: var(--navy); padding: 28px 2rem; }
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 13px; letter-spacing: 0.12em; color: var(--white); text-transform: uppercase; }
.footer-tagline { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(0,180,216,0.55); }
.footer-email { font-size: 12px; color: rgba(0,180,216,0.65); transition: color 0.2s; }
.footer-email:hover { color: var(--cyan); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.28); }
.footer-gt a { font-size: 11px; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-gt a:hover { color: rgba(255,255,255,0.6); }

.form-error {
  font-size: 0.65rem;
  color:#f30505;
  margin-top: 0.15rem;
  min-height: 1rem;
  text-align:left;
}
.recaptchaDisclosure {
  font-size: 0.75rem;
  line-height: 1rem;
  margin-bottom: 12px;
  opacity: 0.6;
}
/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 768px) {
  .nav { height: 76px; padding: 0 1.25rem; }
  .nav-logo svg { width: 44px; height: 44px; }
  .nav-logo-text { font-size: 18px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .track-row { grid-template-columns: 1fr; gap: 14px; }
  .arrow-pulse { margin: 0 auto; transform: rotate(90deg); }
  .track-line { display: none; }
  .tab-panel.active { grid-template-columns: 1fr; }
  .hero { padding: 56px 1.25rem 48px; }
  .section { padding: 56px 1.25rem; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .lead-stat { gap: 28px; }
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-ghost { text-align: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-dot, .pulse-dot { animation: none; opacity: 1; }
  .tick-row { animation: none; }
  .arrow-pulse::after { animation: none; opacity: 0; }
  * { transition: none !important; }
}