:root {
  --bg: #181d29;
  --surface: #212736;
  --surface-2: #2c3444;
  --card-hover: #353e50;
  --border: #3c4557;
  --accent: #ff6b35;
  --accent-dim: #e05a28;
  --accent-glow: rgba(255,107,53,0.3);
  --yellow: #f5b342;
  --text: #ecedee;
  --text-muted: #8b95a5;
  --text-dim: #5f6875;
  --warm-divider: rgba(255,107,53,0.12);
  --cold-divider: rgba(255,255,255,0.05);
  --font-head: 'Inter', sans-serif;
  --font-display: 'Anton', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-w: 1200px;
  --pad: 80px 48px;
}

@media (max-width: 768px) {
  :root { --pad: 48px 24px; }
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(24,29,41,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--warm-divider);
  padding: 20px 48px;
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark, .nav-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
}

.header-tag {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Sections */
section { padding: var(--pad); }

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

/* Hero */
.hero { padding: 48px 48px 80px; }

.hero-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  border: 1px solid var(--accent-dim);
  padding: 6px 14px;
  border-radius: 3px;
}

.hero h1 {
  font-family: var(--font-head);
  font-size: 56px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 440px;
  margin-bottom: 32px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
}

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #0b0d12;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--accent-dim);
  transform: translateY(-1px);
}

.cta-note {
  font-size: 13px;
  color: var(--text-dim);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}

.stat {
  display: flex;
  flex-direction: column;
  padding-right: 32px;
}

.stat-num {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
}

.stat-div {
  width: 1px;
  height: 48px;
  background: rgba(245,166,35,0.12);
  margin-right: 32px;
}

/* Funnel Diagram */
.funnel-diagram {
  background: var(--surface);
  border: 1px solid rgba(245,166,35,0.07);
  border-radius: 12px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.funnel-stage {
  background: var(--surface-2);
  border-radius: 8px;
  padding: 20px 24px;
}

.stage-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.funnel-stage p {
  font-size: 14px;
  color: var(--text-muted);
}

.stage-acquire { border-left: 3px solid var(--accent); }
.stage-qualify { border-left: 3px solid #d97706; }

.funnel-arrow {
  display: flex;
  justify-content: center;
  padding: 4px 0;
}

.funnel-outcomes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 4px;
}

.outcome {
  background: var(--surface-2);
  border-radius: 8px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
}

.outcome-icon {
  flex-shrink: 0;
  display: flex;
}

/* Why Now */
.whynow { background: var(--surface); }

.whynow-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.whynow h2 {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.1;
}

.whynow-body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

.signal-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.signal-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: var(--surface-2);
  border-radius: 8px;
}

.signal-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 6px;
}

.signal-row p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Paths */
.paths { background: var(--bg); }

.paths h2 {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text);
  max-width: 560px;
  margin-bottom: 48px;
  line-height: 1.1;
  text-align: center;
}

.paths {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.paths-grid {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.path-card {
  background: var(--surface);
  border: 1px solid rgba(245,166,35,0.07);
  border-radius: 12px;
  padding: 40px;
}

.path-icon {
  width: 56px;
  height: 56px;
  background: rgba(245,166,35,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.path-card h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.path-card > p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

.path-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.path-features li {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
}

.path-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* Warm hover on path cards */
.path-card {
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.path-card:hover {
  border-color: rgba(232,148,10,0.3);
  box-shadow: 0 0 24px rgba(232,148,10,0.08);
}

/* Process */
.process {
  background: var(--surface);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process h2 {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 48px;
  max-width: 560px;
  line-height: 1.1;
  text-align: center;
}

.process-steps {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

.process-step {
  padding: 32px;
  background: var(--surface-2);
  border-radius: 10px;
  border: 1px solid rgba(245,166,35,0.05);
}

.step-num {
  display: block;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.process-step h4 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.phase-note {
  max-width: var(--max-w);
  margin: 0 auto;
}

.phase-note p {
  font-size: 14px;
  color: var(--text-dim);
  border-left: 2px solid var(--accent-dim);
  padding-left: 20px;
  font-style: italic;
}

/* Mission */
.mission {
  background: var(--bg);
  border-top: 1px solid var(--warm-divider);
}

.mission-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.mission blockquote {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.mission-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Footer */
footer {
  padding: 32px 48px;
  border-top: 1px solid var(--warm-divider);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

/* Middle group: trade columns, now inline in the top footer row */
.footer-trades-group { display: flex; flex-direction: column; gap: 16px; }
.footer-trades-group .footer-trades-grid {
  display: flex;
  gap: 40px;
}
.footer-trades-group .trade-col { gap: 8px; }
.footer-trades-group a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-trades-group a:hover { color: var(--text); }

@media (max-width: 860px) {
  .footer-inner { gap: 32px; }
  .footer-trades-group .footer-trades-grid { gap: 28px; flex-wrap: wrap; }
}

.footer-brand p {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 4px;
}

.footer-meta span {
  font-size: 12px;
  color: var(--text-dim);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-trades {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--cold-divider);
}

.footer-trades-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-trades-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.footer-trades-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px 32px;
}

.trade-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trade-col-head {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2px;
}

.footer-trades a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-trades a:hover {
  color: var(--text);
}

/* Browse Programs section */
.browse-trades {
  padding: 64px 24px;
  text-align: center;
  background: var(--surface);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.browse-trades .section-tag {
  display: block;
  margin-bottom: 8px;
}

.browse-trades h2 {
  margin-bottom: 32px;
}

.browse-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .browse-grid { grid-template-columns: 1fr 1fr; }
}

.browse-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}

.browse-card:hover {
  border-color: var(--accent);
  background: rgba(245,166,35,0.05);
}

.browse-card-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.browse-card-sub {
  font-size: 12px;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid,
  .whynow-inner,
  .paths-grid { grid-template-columns: 1fr; gap: 40px; }

  .process-steps { grid-template-columns: 1fr; }

  .hero h1 { font-size: 42px; }

  .funnel-outcomes { grid-template-columns: 1fr; }

  .site-header, footer { padding: 20px 24px; }

  .hero { padding: 64px 24px 48px; }

  section { padding: 64px 24px; }

  .whynow h2,
  .paths h2,
  .process h2,
  .mission blockquote { font-size: 30px; }

  .mission blockquote { font-size: 24px; }
}

@media (max-width: 480px) {
  .hero-stats { flex-wrap: wrap; }
  .stat-div { display: none; }
}
/* ============================================================
   Visual refresh (2026-07) — display type, glow, pill CTAs,
   scroll reveals. Ported from the React/Tailwind reference.
   ============================================================ */

/* Oversized display headlines */
.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.02;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
}
.whynow h2,
.paths h2,
.process h2 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
}

/* Eyebrow → rounded pill */
.eyebrow {
  border-color: rgba(255,107,53,0.3);
  border-radius: 999px;
  padding: 6px 16px;
  letter-spacing: 0.2em;
}

/* Primary CTA → rounded pill with accent glow */
.btn-primary {
  border-radius: 999px;
  padding: 15px 32px;
  box-shadow: 0 0 0 rgba(255,107,53,0);
  transition: transform 0.18s ease, box-shadow 0.25s ease, background 0.2s ease;
}
.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 40px var(--accent-glow);
}

/* Hero background glow shapes */
.hero { position: relative; overflow: hidden; }
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero::before {
  top: -30%; right: -15%;
  width: 55%; height: 55%;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  opacity: 0.05;
}
.hero::after {
  bottom: -35%; left: -20%;
  width: 50%; height: 50%;
  background: radial-gradient(circle, var(--yellow) 0%, transparent 70%);
  opacity: 0.04;
}
.hero-grid { position: relative; z-index: 1; }

/* Scroll-reveal animation */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1),
              transform 0.7s cubic-bezier(0.16,1,0.3,1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}
[data-reveal].revealed { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .btn-primary:hover { transform: none; }
}

/* Header: left-aligned wordmark + tagline group, right-side CTA button */
.header-left {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.header-left .header-tag {
  padding-left: 16px;
  border-left: 1px solid var(--warm-divider);
}
.btn-header {
  display: inline-block;
  background: var(--accent);
  color: #0b0d12;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  padding: 9px 20px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.25s ease;
}
.btn-header:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 28px var(--accent-glow);
}

@media (max-width: 640px) {
  .header-left .header-tag { display: none; }
}

/* ============================================================
   Hero engagement pass — bolder stats + animated pipeline card
   ============================================================ */

/* Stats: display-font numbers, money/cost/speed framing */
.hero-stats { flex-wrap: wrap; }
.stat { padding-right: 28px; }
.stat-num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: 0.01em;
  color: var(--accent);
}
.stat-label {
  color: var(--text-muted);
  font-weight: 500;
}

/* Pipeline card */
.funnel-diagram {
  position: relative;
  overflow: hidden;
  gap: 0;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--surface) 0%, #10131a 100%);
}
.funnel-glow {
  position: absolute;
  top: -40%; right: -30%;
  width: 80%; height: 80%;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  opacity: 0.07;
  pointer-events: none;
  animation: funnelGlow 6s ease-in-out infinite;
}
@keyframes funnelGlow {
  0%, 100% { transform: translate(0,0) scale(1); opacity: 0.06; }
  50%      { transform: translate(-6%, 6%) scale(1.1); opacity: 0.11; }
}
.funnel-heading {
  position: relative; z-index: 1;
  display: block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 18px;
}
.funnel-stage {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 16px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 10px;
  padding: 16px 20px;
}
.stage-num {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--accent);
  opacity: 0.55;
  line-height: 1;
  min-width: 26px;
}
.stage-body { display: flex; flex-direction: column; gap: 4px; }
.stage-qualify { border-left-color: var(--yellow); }
.stage-qualify .stage-num { color: var(--yellow); }

/* Sequential pulse travelling down the pipeline */
.stage-acquire            { animation: stagePulse 3.2s ease-in-out infinite; }
.stage-qualify            { animation: stagePulse 3.2s ease-in-out infinite 0.8s; }
.funnel-outcomes .outcome { animation: stagePulse 3.2s ease-in-out infinite 1.6s; }
@keyframes stagePulse {
  0%, 70%, 100% { box-shadow: 0 0 0 rgba(255,107,53,0); }
  20%           { box-shadow: 0 0 22px rgba(255,107,53,0.20); }
}

.funnel-arrow {
  position: relative; z-index: 1;
  color: var(--text-dim);
  padding: 8px 0;
  animation: arrowFloat 2.4s ease-in-out infinite;
}
@keyframes arrowFloat {
  0%, 100% { transform: translateY(-2px); opacity: 0.45; }
  50%      { transform: translateY(2px);  opacity: 1; }
}

.funnel-outcomes { margin-top: 0; gap: 10px; }
.outcome {
  position: relative; z-index: 1;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 14px;
  color: var(--text);
  font-weight: 600;
  transition: transform 0.18s ease, border-color 0.2s ease, background 0.2s ease;
}
.outcome:hover {
  transform: translateY(-2px);
  border-color: rgba(255,107,53,0.4);
  background: var(--card-hover);
}
.outcome-icon { color: var(--accent); }

@media (prefers-reduced-motion: reduce) {
  .funnel-glow, .stage-acquire, .stage-qualify,
  .funnel-outcomes .outcome, .funnel-arrow { animation: none; }
}

/* ============================================================
   Depth pass — ambient warmth + film grain so the dark theme
   reads rich rather than flat.
   ============================================================ */
.whynow, .mission { position: relative; overflow: hidden; }
.whynow::before, .mission::before {
  content: "";
  position: absolute;
  width: 55%; height: 120%;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, var(--accent) 0%, transparent 65%);
  opacity: 0.05;
}
.whynow::before { top: -30%; right: -12%; }
.mission::before {
  bottom: -45%; left: -10%;
  background: radial-gradient(circle, var(--yellow) 0%, transparent 65%);
  opacity: 0.05;
}
.whynow-inner, .mission-inner { position: relative; z-index: 1; }

/* Film grain — a fixed, non-interactive noise overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Path cards: accent icon + hover lift */
.path-icon {
  background: rgba(255,107,53,0.1);
  color: var(--accent);
}
.path-card {
  border: 1px solid var(--border);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.path-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,107,53,0.35);
}

/* ============================================================
   Closing CTA — strong final call to action before the footer
   ============================================================ */
.closing-cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(255,107,53,0.10) 0%, transparent 55%),
    var(--surface);
  border-top: 1px solid var(--warm-divider);
}
.closing-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.closing-cta h2 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--text);
  margin-bottom: 20px;
}
.closing-cta p {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 46ch;
  margin: 0 auto 32px;
}
.closing-cta .btn-primary { font-size: 17px; }
.closing-note {
  display: block;
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-dim);
}

/* ============================================================
   Path CTAs + 4-step process grid + responsive tuning
   ============================================================ */

/* Equal-height path cards with a CTA anchored at the bottom */
.path-card { display: flex; flex-direction: column; }
.path-cta {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  padding: 10px 20px;
  border: 1px solid rgba(255,107,53,0.35);
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.18s ease, gap 0.18s ease;
}
.path-cta span { transition: transform 0.18s ease; }
.path-cta:hover {
  background: rgba(255,107,53,0.12);
  transform: translateY(-1px);
}
.path-cta:hover span { transform: translateX(3px); }
.path-features { flex: 1; }

/* 4-step process grid (desktop 4 → tablet 2 → mobile 1) */
.process-steps { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .process-steps { grid-template-columns: 1fr; }
}

/* ============================================================
   Gradient smoothing — radial glows fall off to fully
   transparent (no visible ring/edge), softer + larger.
   ============================================================ */
.hero::before {
  width: 90%; height: 90%;
  top: -35%; right: -25%;
  background: radial-gradient(circle at center, rgba(255,107,53,0.09) 0%, rgba(255,107,53,0) 72%);
  opacity: 1;
}
.hero::after {
  width: 85%; height: 85%;
  bottom: -40%; left: -30%;
  background: radial-gradient(circle at center, rgba(245,179,66,0.07) 0%, rgba(245,179,66,0) 72%);
  opacity: 1;
}
.funnel-glow {
  width: 110%; height: 110%;
  top: -50%; right: -40%;
  background: radial-gradient(circle at center, rgba(255,107,53,0.16) 0%, rgba(255,107,53,0) 70%);
  opacity: 1;
}
@keyframes funnelGlow {
  0%, 100% { transform: translate(0,0) scale(1); opacity: 0.75; }
  50%      { transform: translate(-5%, 5%) scale(1.12); opacity: 1; }
}
.whynow::before {
  width: 80%; height: 130%;
  background: radial-gradient(circle at center, rgba(255,107,53,0.08) 0%, rgba(255,107,53,0) 70%);
  opacity: 1;
}
.mission::before {
  width: 80%; height: 130%;
  background: radial-gradient(circle at center, rgba(245,179,66,0.07) 0%, rgba(245,179,66,0) 70%);
  opacity: 1;
}
/* Funnel card: sync to token, subtler gradient */
.funnel-diagram {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 130%);
}

/* ============================================================
   Ringless glows — multi-stop ease-out to fully transparent at
   the box edge (100%), so there is no perceptible ring.
   ============================================================ */
.hero::before {
  background: radial-gradient(circle at center,
    rgba(255,107,53,0.10) 0%,
    rgba(255,107,53,0.072) 26%,
    rgba(255,107,53,0.038) 46%,
    rgba(255,107,53,0.015) 64%,
    rgba(255,107,53,0.004) 82%,
    rgba(255,107,53,0) 100%);
}
.hero::after {
  background: radial-gradient(circle at center,
    rgba(245,179,66,0.08) 0%,
    rgba(245,179,66,0.055) 26%,
    rgba(245,179,66,0.028) 46%,
    rgba(245,179,66,0.011) 64%,
    rgba(245,179,66,0.003) 82%,
    rgba(245,179,66,0) 100%);
}
.funnel-glow {
  background: radial-gradient(circle at center,
    rgba(255,107,53,0.17) 0%,
    rgba(255,107,53,0.12) 26%,
    rgba(255,107,53,0.06) 46%,
    rgba(255,107,53,0.024) 64%,
    rgba(255,107,53,0.007) 82%,
    rgba(255,107,53,0) 100%);
}
.whynow::before {
  background: radial-gradient(circle at center,
    rgba(255,107,53,0.09) 0%,
    rgba(255,107,53,0.06) 28%,
    rgba(255,107,53,0.03) 48%,
    rgba(255,107,53,0.012) 66%,
    rgba(255,107,53,0.003) 83%,
    rgba(255,107,53,0) 100%);
}
.mission::before {
  background: radial-gradient(circle at center,
    rgba(245,179,66,0.08) 0%,
    rgba(245,179,66,0.055) 28%,
    rgba(245,179,66,0.028) 48%,
    rgba(245,179,66,0.011) 66%,
    rgba(245,179,66,0.003) 83%,
    rgba(245,179,66,0) 100%);
}
.closing-cta {
  background:
    radial-gradient(120% 150% at 50% -20%,
      rgba(255,107,53,0.11) 0%,
      rgba(255,107,53,0.05) 30%,
      rgba(255,107,53,0.015) 55%,
      rgba(255,107,53,0) 80%),
    var(--surface);
}

/* Mission: keep the quote balanced (no lone dangling word) + accent word */
.mission blockquote { text-wrap: balance; }
.mission blockquote .accent {
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* Header actions: login link + CTA button */
.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}
.header-login {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s;
}
.header-login:hover { color: var(--text); }
@media (max-width: 480px) {
  .header-login { display: none; }
}

/* ============================================================
   Footer: link columns + bottom legal bar
   ============================================================ */
.footer-cols {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col-head {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 28px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--cold-divider);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 12px; color: var(--text-dim); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  font-size: 12px;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-legal a:hover { color: var(--text-muted); }

@media (max-width: 640px) {
  .footer-cols { gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   Prose pages (legal / content) — /privacy, /terms, /sms-consent
   ============================================================ */
.prose-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}
.prose-page h1 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--text);
  margin-bottom: 8px;
}
.prose-updated { color: var(--text-dim); font-size: 13px; margin-bottom: 24px; }
.prose-draft {
  background: rgba(255,107,53,0.08);
  border: 1px solid rgba(255,107,53,0.3);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.prose-page h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin: 36px 0 12px;
}
.prose-page p, .prose-page li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}
.prose-page ul { padding-left: 22px; margin-bottom: 14px; }
.prose-page a { color: var(--accent); }

/* ── Mobile hero polish (2026-07): symmetric glow, stacked CTA, even stats ── */
@media (max-width: 480px) {
  /* Center the top glow so there's no diagonal orange slice through the H1 */
  .hero::before {
    top: -12%; left: -25%; right: auto;
    width: 150%; height: 52%;
    background: radial-gradient(ellipse 55% 100% at 50% 0%,
      rgba(255,107,53,0.11) 0%, rgba(255,107,53,0) 72%);
  }
  .hero::after { display: none; }
  .funnel-glow {
    top: -10%; left: -15%; right: auto;
    width: 130%; height: 85%;
    animation: none;
  }

  /* Headline + copy sizing */
  .hero h1 { font-size: 34px; line-height: 1.05; }
  .hero-sub { font-size: 15px; }

  /* CTA: full-width button with the note centered beneath it */
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 36px;
  }
  .hero-cta .btn-primary { width: 100%; text-align: center; padding: 15px 20px; }
  .cta-note { text-align: center; }

  /* Stats: even 3-up grid instead of a lopsided 2 + 1 wrap */
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    align-items: start;
  }
  .hero-stats .stat { padding-right: 0; align-items: center; text-align: center; }
  .hero-stats .stat-num { font-size: 25px; }
  .hero-stats .stat-label { font-size: 11px; letter-spacing: 0.05em; margin-top: 5px; }
  .hero-stats .stat-div { display: none; }
}
