/* ============================================================
   REMFORGE — styles.css  v4
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
  --navy:        #0d1b2a;
  --navy-mid:    #142033;
  --navy-light:  #1b2d44;
  --navy-border: #253d5a;
  --orange:      #e05c1a;
  --orange-warm: #f07030;
  --orange-pale: rgba(224,92,26,0.08);
  --gold:        #f5b832;
  --cream:       #f5f0e8;
  --warm-white:  #faf8f4;
  --white:       #ffffff;
  --border-lt:   #e0d9ce;
  --text-dark:   #0d1b2a;
  --text-body:   #3a4a5c;
  --text-muted:  #6b7a8d;
  --text-light:  #d4cfc6;
  --text-dim:    #8a99b0;
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:   0 6px 20px rgba(0,0,0,0.09);
  --shadow-lg:   0 12px 40px rgba(0,0,0,0.13);
}

body {
  background: var(--navy);
  color: var(--cream);
  font-family: 'Lato', sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }

h1,h2,h3 {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.08;
}
h1 { font-size: clamp(46px, 6.5vw, 88px); font-weight: 700; }
h2 { font-size: clamp(34px, 4.2vw, 54px); font-weight: 700; }
h3 { font-size: clamp(17px, 2vw, 21px); font-weight: 600; }
.accent { color: var(--orange); }
.serif  { font-family: 'Source Serif 4', serif; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 16px;
}
.eyebrow::before {
  content: ''; display: block;
  width: 24px; height: 2px;
  background: var(--orange); flex-shrink: 0;
}

.container { max-width: 1080px; margin: 0 auto; padding: 0 28px; }

.btn {
  display: inline-block;
  font-family: 'Oswald', sans-serif; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: background .22s, transform .18s, box-shadow .22s;
  text-align: center;
}
.btn-primary { background: var(--orange); color: #fff; font-size: 15px; padding: 15px 40px; }
.btn-primary:hover { background: var(--orange-warm); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(224,92,26,.35); }
.btn-ghost { background: transparent; color: var(--cream); font-size: 14px; padding: 13px 32px; border: 1px solid rgba(255,255,255,.25); }
.btn-ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.5); }
.btn-full { width: 100%; }

/* NAV */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  transition: background .3s, box-shadow .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(13,27,42,.97);
  border-color: var(--navy-border);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
  backdrop-filter: blur(12px);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; max-width: 1080px; margin: 0 auto; padding: 0 28px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.rf-logo-img { display: block; flex-shrink: 0; height: 40px; width: 40px; object-fit: contain; }
.rf-logo-img--sm { height: 32px; width: 32px; }
.nav-logo-text { font-family: 'Oswald', sans-serif; font-size: 21px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #fff; }
.nav-logo-text span { color: var(--orange); }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.65); transition: color .2s; }
.nav-links a:hover { color: #fff; }
.nav-cta { background: var(--orange); color: #fff; font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: 10px 24px; border: none; cursor: pointer; transition: background .2s; }
.nav-cta:hover { background: var(--orange-warm); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: #fff; transition: .22s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-drawer { display: none; flex-direction: column; background: var(--navy-mid); border-top: 1px solid var(--navy-border); padding: 16px 28px 24px; }
.nav-drawer.open { display: flex; }
.nav-drawer a { font-family: 'Oswald', sans-serif; font-size: 16px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.6); padding: 13px 0; border-bottom: 1px solid var(--navy-border); transition: color .2s; }
.nav-drawer a:last-child { border-bottom: none; color: var(--orange); font-weight: 700; }
.nav-drawer a:hover { color: #fff; }

/* HERO */
#hero { min-height: 100vh; display: flex; align-items: center; padding: 110px 0 80px; position: relative; overflow: hidden; background: var(--navy); }
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; opacity: .5; }
.hero-watermark { position: absolute; right: -60px; top: 50%; transform: translateY(-50%); font-family: 'Oswald', sans-serif; font-size: clamp(280px,35vw,480px); font-weight: 900; line-height: 1; color: rgba(255,255,255,.025); letter-spacing: -.05em; user-select: none; pointer-events: none; white-space: nowrap; }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 400px; gap: 60px; align-items: center; }

.hero-tag { display: inline-block; background: rgba(224,92,26,.15); border: 1px solid rgba(224,92,26,.45); color: var(--orange); font-family: 'Oswald', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; padding: 6px 14px; margin-bottom: 24px; opacity: 0; transform: translateY(12px); animation: heroIn .6s .1s forwards; }
#hero h1 { color: #fff; margin-bottom: 22px; opacity: 0; transform: translateY(16px); animation: heroIn .7s .25s forwards; }
.hero-sub { font-family: 'Source Serif 4', serif; font-size: 18px; color: var(--text-light); line-height: 1.75; max-width: 520px; margin-bottom: 36px; opacity: 0; transform: translateY(16px); animation: heroIn .7s .4s forwards; }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; opacity: 0; transform: translateY(16px); animation: heroIn .7s .55s forwards; }
.hero-micro-row { display: flex; flex-direction: column; gap: 7px; opacity: 0; transform: translateY(12px); animation: heroIn .7s .7s forwards; }
.hero-micro { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-dim); }
.hero-micro svg { color: var(--orange); flex-shrink: 0; }
@keyframes heroIn { to { opacity: 1; transform: none; } }

.hero-stats-strip { display: flex; gap: 0; border-top: 1px solid var(--navy-border); padding-top: 28px; margin-top: 32px; opacity: 0; animation: heroIn .7s .85s forwards; }
.hstat { flex: 1; padding-right: 28px; border-right: 1px solid var(--navy-border); margin-right: 28px; }
.hstat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.hstat-num { font-family: 'Oswald', sans-serif; font-size: 34px; font-weight: 700; color: #fff; line-height: 1; margin-bottom: 3px; }
.hstat-num .o { color: var(--orange); }
.hstat-label { font-size: 12px; color: var(--text-dim); line-height: 1.35; }

.hero-card { background: var(--white); color: var(--text-dark); border-top: 4px solid var(--orange); padding: 36px 32px; box-shadow: var(--shadow-lg); opacity: 0; transform: translateX(24px); animation: heroIn .8s .5s forwards; }
.hero-card-title { font-family: 'Oswald', sans-serif; font-size: 20px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--text-dark); margin-bottom: 8px; line-height: 1.2; }
.hero-card-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; line-height: 1.55; }
.hero-card-perks { list-style: none; margin-bottom: 24px; display: flex; flex-direction: column; gap: 9px; }
.hero-card-perks li { display: flex; align-items: center; gap: 9px; font-size: 14px; color: var(--text-body); }
.perk-check { width: 16px; height: 16px; background: var(--orange); clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%); flex-shrink: 0; }
.hero-card hr { border: none; border-top: 1px solid var(--border-lt); margin: 22px 0; }
.hero-card-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hcs-num { font-family: 'Oswald', sans-serif; font-size: 26px; font-weight: 700; color: var(--navy); line-height: 1; margin-bottom: 2px; }
.hcs-num .o { color: var(--orange); }
.hcs-label { font-size: 12px; color: var(--text-muted); line-height: 1.35; }

/* TICKER */
#ticker { background: var(--orange); overflow: hidden; white-space: nowrap; }
.ticker-track { display: inline-flex; animation: ticker 30s linear infinite; }
.ticker-track:hover { animation-play-state: paused; }
.ticker-item { font-family: 'Oswald', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.9); padding: 14px 28px; display: inline-flex; align-items: center; gap: 6px; }
.ticker-dot { color: rgba(255,255,255,.4); font-size: 8px; }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* PROBLEM */
#problem { background: var(--warm-white); padding: 100px 0; }
#problem .eyebrow { color: var(--orange); }
#problem .eyebrow::before { background: var(--orange); }
#problem h2 { color: var(--text-dark); }

.problem-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; margin-top: 52px; }

.problem-narrative { display: flex; flex-direction: column; }
.problem-narrative p { font-family: 'Source Serif 4', serif; font-size: 18px; line-height: 1.8; color: var(--text-body); }
.problem-narrative p + p { margin-top: 20px; }
.problem-narrative strong { font-style: italic; color: var(--text-dark); }
.problem-divider { width: 40px; height: 3px; background: var(--orange); margin: 28px 0; }

.pain-cards { display: flex; flex-direction: column; gap: 10px; }
.pain-card {
  background: var(--white);
  border: 1px solid var(--border-lt);
  border-left: 4px solid transparent;
  padding: 16px 18px;
  display: flex; align-items: flex-start; gap: 14px;
  transition: border-left-color .22s, box-shadow .22s, transform .22s;
  opacity: 0; transform: translateX(20px);
  transition: opacity .5s, transform .5s, border-left-color .22s, box-shadow .22s;
}
.pain-card.visible { opacity: 1; transform: none; }
.pain-card:hover { border-left-color: var(--orange); box-shadow: var(--shadow-sm); transform: translateX(-3px); }
.pain-icon { width: 36px; height: 36px; flex-shrink: 0; background: rgba(224,92,26,.08); border: 1px solid rgba(224,92,26,.2); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: var(--orange); margin-top: 1px; transition: background .2s; }
.pain-card:hover .pain-icon { background: rgba(224,92,26,.16); }
.pain-title { font-family: 'Oswald', sans-serif; font-size: 15px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: var(--text-dark); margin-bottom: 3px; }
.pain-desc { font-size: 13px; color: var(--text-muted); line-height: 1.55; }

/* SOLUTION */
#solution { background: var(--navy); padding: 100px 0; }
.solution-header { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 72px; }
.solution-body { font-family: 'Source Serif 4', serif; font-size: 17px; color: var(--text-light); line-height: 1.8; }

.pipeline { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.pipeline::before {
  content: ''; position: absolute;
  top: 52px; left: calc(12.5% + 1px); right: calc(12.5% + 1px);
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--navy-border) 5%, var(--orange) 30%, var(--orange) 70%, var(--navy-border) 95%, transparent 100%);
  z-index: 0;
}
.pipeline-step { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 16px 40px; cursor: default; }
.pipe-icon-wrap {
  width: 104px; height: 104px; background: var(--navy-mid);
  border: 2px solid var(--navy-border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; position: relative;
  transition: background .3s, transform .3s, border-color .3s;
  box-shadow: 0 0 0 8px var(--navy);
}
.pipeline-step:hover .pipe-icon-wrap { background: var(--orange); border-color: var(--orange); transform: scale(1.08); box-shadow: 0 0 0 8px var(--navy), 0 0 32px rgba(224,92,26,.3); }
.pipe-icon-wrap svg { color: var(--orange); transition: color .3s; }
.pipeline-step:hover .pipe-icon-wrap svg { color: #fff; }
.pipe-num { position: absolute; top: -4px; right: -4px; width: 26px; height: 26px; background: var(--orange); border-radius: 50%; font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 700; color: #fff; display: flex; align-items: center; justify-content: center; }
.pipe-title { font-family: 'Oswald', sans-serif; font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--cream); margin-bottom: 10px; }
.pipe-desc { font-size: 13px; color: var(--text-dim); line-height: 1.6; max-width: 190px; margin: 0 auto; }

/* SPEED / AI AGENT */
#speed { background: var(--navy-mid); padding: 100px 0; border-top: 1px solid var(--navy-border); }
.speed-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.speed-quote { font-family: 'Source Serif 4', serif; font-size: clamp(20px,2.5vw,30px); font-style: italic; line-height: 1.45; color: var(--cream); margin-bottom: 20px; padding-left: 22px; border-left: 4px solid var(--orange); }
.speed-body { font-size: 15px; color: var(--text-dim); line-height: 1.8; margin-bottom: 16px; }
.speed-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 22px; }
.speed-feature { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--text-light); line-height: 1.5; opacity: 0; transform: translateX(-12px); transition: opacity .5s, transform .5s; }
.speed-feature.visible { opacity: 1; transform: none; }
.speed-feature:nth-child(2) { transition-delay: .1s; }
.speed-feature:nth-child(3) { transition-delay: .2s; }
.speed-feature:nth-child(4) { transition-delay: .3s; }
.check-icon { width: 18px; height: 18px; background: var(--orange); clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%); flex-shrink: 0; margin-top: 2px; }

.activity-feed { background: var(--navy); border: 1px solid var(--navy-border); padding: 24px 24px 20px; }
.feed-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--navy-border); }
.feed-title { font-family: 'Oswald', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.35); }
.live-badge { display: flex; align-items: center; gap: 6px; font-family: 'Oswald', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #4ade80; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; animation: livepulse 1.8s infinite; }
@keyframes livepulse { 0%,100%{opacity:1} 50%{opacity:.3} }
.feed-events { display: flex; flex-direction: column; }
.feed-event { display: flex; gap: 12px; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.04); transition: background .2s, padding .15s; }
.feed-event:last-child { border-bottom: none; }
.feed-event.active { background: rgba(224,92,26,.06); padding-left: 8px; padding-right: 8px; margin: 0 -8px; }
.feed-time { font-family: 'Oswald', sans-serif; font-size: 11px; color: rgba(255,255,255,.3); width: 44px; flex-shrink: 0; padding-top: 2px; }
.feed-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; margin-top: 5px; }
.feed-text { font-size: 13px; color: rgba(255,255,255,.75); line-height: 1.4; }
.feed-sub  { font-size: 11px; color: rgba(255,255,255,.32); margin-top: 2px; }

/* RESULTS */
#results { background: var(--warm-white); padding: 100px 0; }
.results-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 56px; }
#results h2 { color: var(--text-dark); }
#results .eyebrow { color: var(--orange); }
#results .eyebrow::before { background: var(--orange); }
.result-card { background: var(--white); border: 1px solid var(--border-lt); border-top: 3px solid var(--orange); padding: 32px 28px; transition: box-shadow .22s, transform .22s; }
.result-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.result-icon { width: 40px; height: 40px; background: rgba(224,92,26,.08); border: 1px solid rgba(224,92,26,.2); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; color: var(--orange); transition: background .2s, transform .22s; }
.result-card:hover .result-icon { background: rgba(224,92,26,.15); transform: scale(1.1) rotate(-4deg); }
.result-title { font-family: 'Oswald', sans-serif; font-size: 17px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: var(--text-dark); margin-bottom: 10px; }
.result-desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* HOW IT WORKS — vertical timeline */
#how { background: var(--navy); padding: 100px 0; }
.how-header { max-width: 580px; margin-bottom: 72px; }

.how-timeline { display: flex; flex-direction: column; gap: 0; position: relative; max-width: 780px; }
.how-timeline::before {
  content: ''; position: absolute;
  top: 32px; bottom: 32px; left: 31px; width: 2px;
  background: repeating-linear-gradient(180deg, var(--orange) 0, var(--orange) 8px, transparent 8px, transparent 16px);
}
.how-row { display: grid; grid-template-columns: 64px 1fr; gap: 32px; align-items: start; padding-bottom: 40px; position: relative; }
.how-row:last-child { padding-bottom: 0; }
.how-circle { width: 64px; height: 64px; border-radius: 50%; background: var(--navy-mid); border: 2px solid var(--navy-border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; position: relative; z-index: 1; transition: background .3s, border-color .3s, transform .3s; }
.how-row:hover .how-circle { background: var(--orange); border-color: var(--orange); transform: scale(1.08); }
.how-circle-num { font-family: 'Oswald', sans-serif; font-size: 22px; font-weight: 700; color: var(--orange); transition: color .3s; }
.how-row:hover .how-circle-num { color: #fff; }
.how-content { background: var(--navy-mid); border: 1px solid var(--navy-border); padding: 28px 32px; position: relative; transition: border-color .3s, box-shadow .3s; }
.how-row:hover .how-content { border-color: rgba(224,92,26,.4); box-shadow: 0 4px 24px rgba(0,0,0,.2); }
.how-content::before { content: ''; position: absolute; left: -10px; top: 22px; width: 0; height: 0; border-top: 9px solid transparent; border-bottom: 9px solid transparent; border-right: 10px solid var(--navy-border); transition: border-right-color .3s; }
.how-row:hover .how-content::before { border-right-color: rgba(224,92,26,.4); }
.how-content-header { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.how-content-icon { width: 40px; height: 40px; flex-shrink: 0; background: rgba(224,92,26,.1); border: 1px solid rgba(224,92,26,.25); display: flex; align-items: center; justify-content: center; color: var(--orange); }
.how-content-title { font-family: 'Oswald', sans-serif; font-size: 20px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--cream); }
.how-content-desc { font-size: 15px; color: var(--text-dim); line-height: 1.7; }
.how-content-tag { display: inline-block; margin-top: 14px; background: rgba(224,92,26,.1); border: 1px solid rgba(224,92,26,.25); color: var(--orange); font-family: 'Oswald', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; padding: 4px 12px; }

/* SOCIAL PROOF */
#proof { background: var(--warm-white); padding: 100px 0; }
#proof h2 { color: var(--text-dark); }
#proof .eyebrow { color: var(--orange); }
#proof .eyebrow::before { background: var(--orange); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin: 52px 0 44px; }
.testimonial { background: var(--white); border: 1px solid var(--border-lt); padding: 32px 28px; position: relative; transition: box-shadow .22s, transform .22s; }
.testimonial:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.t-quote-mark { font-family: 'Source Serif 4', serif; font-size: 64px; line-height: 1; color: rgba(224,92,26,.12); margin-bottom: 4px; display: block; height: 40px; }
.t-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.t-star  { color: var(--gold); font-size: 17px; }
.t-text  { font-family: 'Source Serif 4', serif; font-size: 15px; font-style: italic; color: var(--text-body); line-height: 1.75; margin-bottom: 22px; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; background: var(--navy); border: 2px solid var(--border-lt); display: flex; align-items: center; justify-content: center; font-family: 'Oswald', sans-serif; font-size: 14px; font-weight: 700; color: var(--orange); letter-spacing: .04em; }
.t-name  { font-family: 'Oswald', sans-serif; font-size: 15px; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; color: var(--text-dark); }
.t-role  { font-size: 12px; color: var(--text-muted); }
.t-company { font-size: 12px; color: var(--orange); font-weight: 700; }

.stats-bar { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border-lt); border: 1px solid var(--border-lt); }
.stat-cell { background: var(--white); padding: 28px 20px; text-align: center; transition: background .2s; }
.stat-cell:hover { background: rgba(224,92,26,.04); }
.stat-num { font-family: 'Oswald', sans-serif; font-size: 36px; font-weight: 700; color: var(--orange); line-height: 1; margin-bottom: 4px; }
.stat-label { font-size: 13px; color: var(--text-muted); line-height: 1.4; }

/* CTA */
#cta { background: var(--navy-mid); padding: 120px 0; text-align: center; overflow: hidden; }
#cta::before { content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%); width: 700px; height: 700px; background: radial-gradient(circle, rgba(224,92,26,.12) 0%, transparent 65%); pointer-events: none; animation: ctaPulse 4s ease-in-out infinite; }
@keyframes ctaPulse { 0%,100%{transform:translateX(-50%) scale(1);opacity:.8} 50%{transform:translateX(-50%) scale(1.12);opacity:1} }
.cta-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
#cta h2 { color: #fff; margin-bottom: 20px; }
.cta-body { font-family: 'Source Serif 4', serif; font-size: 18px; color: rgba(255,255,255,.6); line-height: 1.75; margin-bottom: 40px; }
.cta-note { font-size: 13px; color: rgba(255,255,255,.3); margin-top: 16px; }
#cta .eyebrow { justify-content: center; color: rgba(255,255,255,.45); }
#cta .eyebrow::before { background: rgba(255,255,255,.25); }

/* FOOTER */
footer { background: var(--navy); }

.footer-top { padding: 72px 0 56px; border-top: 1px solid var(--navy-border); }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-logo-text { font-family: 'Oswald', sans-serif; font-size: 20px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.85); }
.footer-logo-text span { color: var(--orange); }

.footer-tagline { font-size: 14px; color: rgba(255,255,255,.4); line-height: 1.7; margin-bottom: 24px; max-width: 300px; }

.footer-social { display: flex; gap: 12px; }
.footer-social-link {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy-light); border: 1px solid var(--navy-border);
  color: rgba(255,255,255,.6);
  font-family: 'Oswald', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 8px 16px;
  transition: background .2s, color .2s, border-color .2s;
}
.footer-social-link:hover { background: #0077b5; border-color: #0077b5; color: #fff; }
.footer-social-link svg { flex-shrink: 0; }

.footer-col-title {
  font-family: 'Oswald', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.35); margin-bottom: 18px;
  padding-bottom: 10px; border-bottom: 1px solid var(--navy-border);
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px; color: rgba(255,255,255,.5);
  transition: color .2s;
}
.footer-links a:hover { color: var(--orange); }

.footer-cta-text { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.65; margin-bottom: 20px; }
.footer-cta-btn { display: inline-block; font-size: 13px; padding: 12px 24px; }

.footer-bottom {
  border-top: 1px solid var(--navy-border);
  padding: 20px 0;
  background: rgba(0,0,0,.15);
}
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,.25); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 4px; }
}

/* SCROLL ANIMATIONS */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.fade-up.visible { opacity: 1; transform: none; }
.fade-up.d1 { transition-delay: .1s; } .fade-up.d2 { transition-delay: .2s; } .fade-up.d3 { transition-delay: .3s; }
.fade-left { opacity: 0; transform: translateX(-24px); transition: opacity .6s ease, transform .6s ease; }
.fade-left.visible { opacity: 1; transform: none; }
.fade-right { opacity: 0; transform: translateX(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-right.visible { opacity: 1; transform: none; }
.scale-in { opacity: 0; transform: scale(.94); transition: opacity .55s ease, transform .55s ease; }
.scale-in.visible { opacity: 1; transform: scale(1); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .pipeline { grid-template-columns: repeat(2,1fr); }
  .pipeline::before { display: none; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .hero-watermark { display: none; }
  .problem-layout { grid-template-columns: 1fr; gap: 40px; }
  .solution-header { grid-template-columns: 1fr; gap: 24px; }
  .speed-grid { grid-template-columns: 1fr; gap: 40px; }
  .results-grid { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2,1fr); }
  .hero-stats-strip { flex-direction: column; gap: 20px; }
  .hstat { border-right: none; margin-right: 0; padding-right: 0; border-bottom: 1px solid var(--navy-border); padding-bottom: 16px; }
  .hstat:last-child { border-bottom: none; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .results-grid { grid-template-columns: 1fr; }
  .pipeline { grid-template-columns: 1fr; }
  .how-row { grid-template-columns: 56px 1fr; gap: 20px; }
  .how-content { padding: 22px 20px; }
}
@media (max-width: 520px) {
  .stats-bar { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; }
}
