:root {
  --bg:          #0C0E10;
  --bg-mid:      #121518;
  --signal:      #FF5C1F;
  --signal-glow: rgba(255, 92, 31, 0.12);
  --off-white:   #F4F4F1;
  --text-muted:  rgba(244, 244, 241, 0.75);
  --card-bg:     rgba(255, 92, 31, 0.05);
  --card-border: rgba(244, 244, 241, 0.10);
  --line:        rgba(244, 244, 241, 0.14);
  --font-display: 'Archivo', 'Inter', sans-serif;
  --grid-line:   rgba(244, 244, 241, 0.022);
}

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

.skip-to-content {
  position: absolute; top: -100px; left: 16px; z-index: 9999;
  background: var(--signal); color: var(--bg); padding: 12px 20px; border-radius: 0 0 8px 8px;
  font-family: 'JetBrains Mono', monospace; font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em; text-decoration: none;
  transition: top 0.2s ease;
}
.skip-to-content:focus { top: 0; }

html { scroll-behavior: smooth; overflow-x: clip; width: 100%; }

body {
  position: relative; width: 100%; max-width: 100%;
  background:
    linear-gradient(var(--grid-line) 1px, transparent 1px) 0 0 / 100% 64px,
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px) 0 0 / 64px 100%,
    var(--bg);
  color: var(--off-white);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

.fx-vignette {
  position: fixed; inset: 0; pointer-events: none; z-index: 9998;
  background: radial-gradient(125% 110% at 50% 0%, transparent 52%, rgba(0,0,0,0.45) 100%);
}

.gridbg { position: relative; }
.gridbg::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    linear-gradient(var(--grid-line) 1px, transparent 1px) 0 0 / 100% 64px,
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px) 0 0 / 64px 100%;
  -webkit-mask-image: radial-gradient(120% 90% at 50% 30%, #000 55%, transparent 100%);
  mask-image: radial-gradient(120% 90% at 50% 30%, #000 55%, transparent 100%);
}
.gridbg > .container, .gridbg > * { position: relative; z-index: 1; }

.sec-tag {
  position: absolute; top: 26px; right: 24px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 500;
  letter-spacing: 0.16em; color: var(--text-muted); z-index: 2;
}
.sec-tag::before { content: "["; color: var(--signal); margin-right: 6px; }
.sec-tag::after  { content: "]"; color: var(--signal); margin-left: 6px; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: 'JetBrains Mono', monospace; font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.2em; color: var(--signal);
  display: block; text-align: center; margin-bottom: 24px;
}

h1, h2 {
  font-family: var(--font-display); font-stretch: 125%; font-weight: 800;
  letter-spacing: -0.015em; line-height: 1.02; text-transform: uppercase; text-align: center;
  background: linear-gradient(135deg, #FFFFFF 0%, #B0B3B8 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; color: transparent;
}

section { position: relative; }

/* ---------- FLOW ANIMATIONS ---------- */
.flow-line {
  fill: none; stroke: var(--signal); stroke-width: 1.4; stroke-linecap: round;
  stroke-dasharray: 5 235; opacity: 0.9; animation: flow 3.4s linear infinite;
}
.flow line:nth-child(2) { animation-duration: 4.1s; animation-delay: -1.2s; }
.flow line:nth-child(3) { animation-duration: 2.9s; animation-delay: -0.6s; }
.flow line:nth-child(4) { animation-duration: 3.8s; animation-delay: -2.1s; }
.flow line:nth-child(5) { animation-duration: 4.4s; animation-delay: -0.3s; }
.flow line:nth-child(6) { animation-duration: 3.1s; animation-delay: -1.7s; }
.flow line:nth-child(7) { animation-duration: 4.8s; animation-delay: -2.6s; }
.flow line:nth-child(8) { animation-duration: 3.5s; animation-delay: -0.9s; }
.flow line:nth-child(9) { animation-duration: 4.0s; animation-delay: -3.1s; }
@keyframes flow { to { stroke-dashoffset: -240; } }

.node-pulse {
  fill: none; stroke: var(--signal); stroke-width: 1.4;
  transform-box: fill-box; transform-origin: center;
  animation: nodePulse 2.8s ease-out infinite;
}
.pulses circle:nth-child(2) { animation-delay: -1.4s; }
.pulses circle:nth-child(3) { animation-delay: -0.7s; }
@keyframes nodePulse {
  0%   { r: 9px;  opacity: 0.6; }
  100% { r: 26px; opacity: 0;   }
}
@media (prefers-reduced-motion: reduce) {
  .flow-line, .node-pulse { animation: none; opacity: 0.4; }
}

/* ---------- SITE HEADER ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
  background: rgba(12, 14, 16, 0.72);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.brand-lockup { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.brand-lockup svg { display: block; flex-shrink: 0; }
.wordmark {
  font-family: 'Inter', sans-serif; font-weight: 800; font-size: 19px;
  letter-spacing: -0.02em; color: var(--off-white); line-height: 1;
}
.wm-south { color: var(--signal); }

.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-link {
  font-family: 'JetBrains Mono', monospace; font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted);
  text-decoration: none; transition: color 0.2s ease; white-space: nowrap; position: relative;
}
.nav-link:hover { color: var(--off-white); }
.nav-link.is-active { color: var(--off-white); }
.nav-link.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -7px;
  height: 2px; background: var(--signal); border-radius: 2px;
}

.header-cta {
  position: relative; display: inline-flex; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', monospace; font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em; color: var(--bg);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.16) 0%, transparent 40%, rgba(0,0,0,0.10) 100%),
    linear-gradient(135deg, #FF7032 0%, #FF5C1F 60%, #E84A11 100%);
  padding: 11px 16px; border-radius: 7px; text-decoration: none;
  overflow: hidden; isolation: isolate;
  transition: filter 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.28), inset 0 -1px 0 rgba(0,0,0,0.18),
    0 0 0 1px rgba(255,92,31,0.55), 0 4px 16px rgba(255,92,31,0.26);
  white-space: nowrap;
}
.header-cta::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.42) 50%, transparent 70%);
  transform: translateX(-130%); transition: transform 0.65s cubic-bezier(.4,0,.2,1); pointer-events: none;
}
.header-cta > * { position: relative; z-index: 1; }
.header-cta:hover {
  filter: brightness(1.06); transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.32), inset 0 -1px 0 rgba(0,0,0,0.18),
    0 0 0 1px rgba(255,92,31,0.85), 0 8px 24px rgba(255,92,31,0.42), 0 0 24px rgba(255,92,31,0.35);
}
.header-cta:hover::after { transform: translateX(130%); }
.header-cta svg { width: 13px; height: 13px; color: var(--bg); flex-shrink: 0; }

/* Hamburger */
.nav-toggle {
  display: none; width: 42px; height: 42px;
  background: rgba(244,244,241,0.05); border: 1px solid var(--card-border);
  border-radius: 7px; cursor: pointer;
  align-items: center; justify-content: center; flex-direction: column; gap: 4px; flex-shrink: 0;
}
.nav-toggle span {
  display: block; width: 18px; height: 2px; background: var(--off-white);
  border-radius: 2px; transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  display: none; position: sticky; top: 63px; z-index: 49; flex-direction: column;
  background: rgba(12,14,16,0.96); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line); padding: 8px 18px 18px;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  font-family: 'JetBrains Mono', monospace; font-size: 14px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted);
  text-decoration: none; padding: 15px 6px; border-bottom: 1px solid var(--line);
  transition: color 0.2s ease;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover, .mobile-menu a.is-active { color: var(--signal); }

@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}

/* ---------- BUTTONS ---------- */
.btn-primary {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 11px;
  font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 700; letter-spacing: 0.005em;
  color: var(--bg);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.18) 0%, transparent 38%, rgba(0,0,0,0.10) 100%),
    linear-gradient(135deg, #FF7032 0%, #FF5C1F 55%, #E84A11 100%);
  border: none; padding: 17px 30px; border-radius: 8px; cursor: pointer; text-decoration: none;
  overflow: hidden; isolation: isolate;
  transition: transform 0.28s cubic-bezier(.2,.7,.2,1), box-shadow 0.28s ease, filter 0.28s ease;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.30), inset 0 -1px 0 rgba(0,0,0,0.22),
    0 0 0 1px rgba(255,92,31,0.55), 0 10px 28px rgba(255,92,31,0.28), 0 0 0 0 rgba(255,92,31,0);
}
.btn-primary::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--bg);
  box-shadow: 0 0 0 0 rgba(12,14,16,0.55); animation: btnSignal 2.4s ease-out infinite; flex-shrink: 0;
}
.btn-primary::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.45) 50%, transparent 70%);
  transform: translateX(-130%); transition: transform 0.7s cubic-bezier(.4,0,.2,1); pointer-events: none; z-index: 0;
}
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary:hover {
  transform: translateY(-3px); filter: brightness(1.05);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.34), inset 0 -1px 0 rgba(0,0,0,0.22),
    0 0 0 1px rgba(255,92,31,0.85), 0 18px 44px rgba(255,92,31,0.42), 0 0 36px rgba(255,92,31,0.40);
}
.btn-primary:hover::after { transform: translateX(130%); }
.btn-primary:active { transform: translateY(-1px); filter: brightness(0.96); }
@keyframes btnSignal {
  0%   { box-shadow: 0 0 0 0 rgba(12,14,16,0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(12,14,16,0); }
  100% { box-shadow: 0 0 0 0 rgba(12,14,16,0); }
}

/* ---------- HERO ---------- */
.hero {
  min-height: calc(100vh - 63px); display: flex; align-items: center;
  padding-top: 80px; padding-bottom: 40px; overflow: hidden; isolation: isolate;
  border-bottom: 1px solid var(--line);
}
.hero .container {
  position: relative; z-index: 3; max-width: 1180px; text-align: center;
}
.hero .container::before {
  content: ""; position: absolute; inset: -80px -100px -80px -140px;
  background: radial-gradient(ellipse 85% 80% at 50% 50%, rgba(12,14,16,0.78) 0%, rgba(12,14,16,0.3) 60%, transparent 100%);
  z-index: -1; pointer-events: none;
}
.hero .eyebrow { margin-bottom: 32px; }
.hero h1 { font-size: clamp(30px, 7.4vw, 90px); margin-bottom: 30px; }
.hero h1 .stroke-word {
  -webkit-text-stroke: 1.5px var(--off-white); -webkit-text-fill-color: transparent;
  background: none; color: transparent;
}
.hero .subtitle {
  font-size: 19px; color: var(--text-muted); max-width: 600px; margin: 0 auto 38px; text-align: center;
}
.lockup {
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  letter-spacing: 0.18em; color: var(--text-muted); margin-top: 22px;
}

.hero-shapes-back, .hero-shapes-mid {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
}
.hero-net { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-net line { stroke: var(--line); stroke-width: 1; }
.hero-net circle { fill: var(--bg-mid); stroke: var(--line); stroke-width: 1; }
.hero-net circle.node-signal { stroke: var(--signal); fill: var(--signal-glow); }

.glow-orb {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, var(--signal-glow) 0%, transparent 70%); filter: blur(8px);
}
.orb-a { width: 480px; height: 480px; top: -120px; right: -80px; animation: floatA 12s ease-in-out infinite; }
.orb-b { width: 360px; height: 360px; bottom: -120px; left: -100px; animation: floatB 16s ease-in-out infinite; }

.shape { position: absolute; border: 1px solid var(--line); border-radius: 50%; }
.shape-a { width: 14px; height: 14px; top: 24%; left: 16%; border-color: var(--signal); animation: floatA 12s ease-in-out infinite; }
.shape-b { width: 8px; height: 8px; top: 64%; left: 78%; animation: floatB 15s ease-in-out infinite; }
.shape-c { width: 20px; height: 20px; top: 38%; left: 88%; animation: floatC 18s ease-in-out infinite; }

@keyframes floatA { 0%,100% { transform: translate(0,0) rotate(0deg);} 50% { transform: translate(20px,-30px) rotate(8deg);} }
@keyframes floatB { 0%,100% { transform: translate(0,0) rotate(0deg);} 50% { transform: translate(-26px,18px) rotate(-6deg);} }
@keyframes floatC { 0%,100% { transform: translate(0,0) rotate(0deg);} 50% { transform: translate(14px,26px) rotate(10deg);} }

/* ---------- PROOF STRIP ---------- */
.proof-strip {
  background: var(--bg); border-bottom: 1px solid var(--line);
  padding: 36px 24px 32px; overflow: hidden;
}
.proof-container { max-width: 1180px; margin: 0 auto; }
.proof-label-row { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.proof-node {
  width: 8px; height: 8px; border-radius: 50%; background: var(--signal);
  box-shadow: 0 0 12px var(--signal-glow), 0 0 4px var(--signal); flex-shrink: 0;
}
.proof-label {
  font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--text-muted); white-space: nowrap; flex-shrink: 0;
}
.proof-line { flex: 1; height: 1px; background: linear-gradient(90deg, var(--line), transparent); }
.proof-marquee {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.proof-track {
  display: flex; align-items: center; gap: 0; width: max-content;
  animation: proofScroll 32s linear infinite;
}
.proof-track:hover { animation-play-state: paused; }
.proof-name {
  font-family: var(--font-display); font-stretch: 125%; font-weight: 800;
  font-size: clamp(13px, 1.6vw, 17px); letter-spacing: 2px; text-transform: uppercase;
  color: rgba(244,244,241,0.22); white-space: nowrap; padding: 0 20px;
  position: relative; transition: color 0.3s;
}
.proof-name:hover { color: var(--off-white); }
.proof-name::after {
  content: "//"; position: absolute; right: -4px; top: 50%; transform: translateY(-50%);
  font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 600;
  color: rgba(244,244,241,0.10); letter-spacing: 0;
}
@keyframes proofScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ---------- PROBLEM ---------- */
.problem {
  background: var(--bg-mid); padding: 110px 24px; border-bottom: 1px solid var(--line);
}
.problem-lines { margin-top: 8px; }
.problem-line {
  font-family: var(--font-display); font-stretch: 125%;
  font-size: clamp(26px, 3.4vw, 42px); font-weight: 700;
  letter-spacing: -0.01em; line-height: 1.14; color: var(--text-muted);
  max-width: 1000px; margin: 0 auto 22px; text-align: center;
}
.problem-line .key { color: var(--off-white); }

/* ---------- WHY SA ---------- */
.whysa { padding: 120px 24px; border-bottom: 1px solid var(--line); }
.whysa h2 { font-size: clamp(34px, 5vw, 62px); margin: 0 auto 22px; max-width: 900px; }
.whysa .subhead {
  font-size: 18px; color: var(--text-muted); max-width: 640px; margin: 0 auto 60px; text-align: center;
}
.stat-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  max-width: 1000px; margin: 0 auto;
}
.stat-card {
  background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 10px;
  padding: 32px 24px; text-align: center;
  transition: transform 0.35s cubic-bezier(.2,.7,.2,1), border-color 0.35s ease;
}
.stat-card:hover { transform: translateY(-6px); border-color: var(--signal); }
.stat-fig {
  font-family: var(--font-display); font-stretch: 125%; font-weight: 800;
  font-size: 28px; color: var(--signal); display: block; margin-bottom: 10px;
}
.stat-label {
  font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 600;
  letter-spacing: 0.12em; color: var(--text-muted); text-transform: uppercase;
}

/* ---------- ROLES ---------- */
.roles { padding: 120px 24px; border-bottom: 1px solid var(--line); }
.roles h2 { font-size: clamp(34px, 5vw, 62px); margin: 0 auto 22px; max-width: 900px; }
.roles .subhead {
  font-size: 18px; color: var(--text-muted); max-width: 640px; margin: 0 auto 60px; text-align: center;
}
.service-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px;
}
.service-card {
  display: flex; flex-direction: column;
  background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 10px;
  padding: 34px 30px 30px; color: inherit; position: relative; overflow: hidden;
  transition: transform 0.35s cubic-bezier(.2,.7,.2,1), border-color 0.35s ease;
}
.service-card::after {
  content: ""; position: absolute; top: 14px; right: 14px; width: 9px; height: 9px;
  border-top: 1.5px solid var(--card-border); border-right: 1.5px solid var(--card-border);
  transition: border-color 0.35s ease;
}
.service-card:hover { transform: translateY(-6px); border-color: var(--signal); }
.service-card:hover::after { border-color: var(--signal); }
.service-num {
  font-family: 'JetBrains Mono', monospace; font-size: 12px; font-weight: 600;
  letter-spacing: 0.16em; color: var(--signal); margin-bottom: 20px;
  display: flex; align-items: center; gap: 9px;
}
.service-num::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--signal); box-shadow: 0 0 0 3px var(--signal-glow);
}
.service-card .svc-icon { width: 30px; height: 30px; color: var(--signal); margin-bottom: 18px; }
.service-card h3 {
  font-family: var(--font-display); font-stretch: 125%; font-size: 24px; font-weight: 700;
  letter-spacing: 0.01em; text-transform: uppercase; line-height: 1.05; margin-bottom: 14px;
  color: var(--off-white); background: none; -webkit-text-fill-color: currentColor;
}
.service-card p { font-size: 15px; color: var(--text-muted); margin-bottom: 0; flex-grow: 1; }

.verticals {
  margin-top: 56px; display: flex; flex-wrap: wrap; align-items: center; gap: 12px 14px;
}
.verticals .vlabel {
  font-family: 'JetBrains Mono', monospace; font-size: 12px; font-weight: 600;
  letter-spacing: 0.16em; color: var(--text-muted); margin-right: 4px;
}
.verticals .chip {
  font-family: 'JetBrains Mono', monospace; font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; color: var(--off-white);
  border: 1px solid var(--card-border); border-radius: 6px; padding: 7px 13px;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.verticals .chip:hover { border-color: var(--signal); color: var(--signal); }

/* ---------- DEEP SCREENING ---------- */
.screening { padding: 120px 24px; background: var(--bg-mid); border-bottom: 1px solid var(--line); }
.screening h2 { font-size: clamp(34px, 5vw, 62px); margin: 0 auto 22px; max-width: 900px; }
.screening h2 .stroke-word {
  -webkit-text-stroke: 1.5px var(--off-white); -webkit-text-fill-color: transparent;
  background: none; color: transparent;
}
.screening .subhead {
  font-size: 18px; color: var(--text-muted); max-width: 660px; margin: 0 auto 64px; text-align: center;
}
.screen-pipeline {
  max-width: 800px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 28px;
}
.screen-stage { position: relative; }
.screen-funnel-bar {
  width: var(--bar-width, 100%);
  height: 6px;
  background: linear-gradient(90deg, var(--signal) 0%, rgba(255,92,31,0.3) 100%);
  border-radius: 3px;
  margin-bottom: 16px;
  position: relative;
  transition: width 0.6s cubic-bezier(.2,.7,.2,1);
}
.screen-funnel-final {
  background: linear-gradient(90deg, var(--signal) 0%, #FF7032 100%);
  height: 8px;
  box-shadow: 0 0 20px rgba(255,92,31,0.4), 0 0 6px rgba(255,92,31,0.6);
}
.sfb-count {
  position: absolute; right: 0; top: -22px;
  font-family: 'JetBrains Mono', monospace; font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; color: var(--signal);
}
.screen-stage-num {
  font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; color: var(--signal); text-transform: uppercase;
  margin-bottom: 8px; display: block;
}
.screen-stage h3 {
  font-family: var(--font-display); font-stretch: 125%; font-size: 20px; font-weight: 700;
  text-transform: uppercase; line-height: 1.1; margin-bottom: 10px;
  color: var(--off-white); background: none; -webkit-text-fill-color: currentColor;
  text-align: left;
}
.screen-stage p { font-size: 15px; color: var(--text-muted); text-align: left; }
.screen-stage-final {
  background: var(--card-bg); border: 1px solid var(--signal); border-radius: 12px;
  padding: 28px 28px 24px; margin-top: 8px;
}
.screen-stage-final .screen-funnel-bar { margin-bottom: 20px; }
.screen-stage-final h3 { color: var(--signal); }

/* ---------- HOW IT WORKS ---------- */
.howit { padding: 120px 24px; background: var(--bg-mid); border-bottom: 1px solid var(--line); }
.howit h2 { font-size: clamp(34px, 5vw, 62px); margin: 0 auto 22px; max-width: 900px; }
.howit .subhead {
  font-size: 18px; color: var(--text-muted); max-width: 640px; margin: 0 auto 60px; text-align: center;
}
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 1000px; margin: 0 auto;
}
.step-card {
  background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 10px;
  padding: 36px 28px 32px; position: relative;
  transition: transform 0.35s cubic-bezier(.2,.7,.2,1), border-color 0.35s ease;
}
.step-card:hover { transform: translateY(-6px); border-color: var(--signal); }
.step-num-lg {
  font-family: var(--font-display); font-stretch: 125%; font-weight: 900;
  font-size: 48px; color: var(--signal); opacity: 0.2; line-height: 1; margin-bottom: 16px; display: block;
}
.step-card h3 {
  font-family: var(--font-display); font-stretch: 125%; font-size: 20px; font-weight: 700;
  text-transform: uppercase; line-height: 1.1; margin-bottom: 14px;
  color: var(--off-white); background: none; -webkit-text-fill-color: currentColor;
}
.step-card p { font-size: 15px; color: var(--text-muted); }

/* ---------- PRICING ---------- */
.pricing-section { padding: 120px 24px; border-bottom: 1px solid var(--line); }
.pricing-section h2 { font-size: clamp(34px, 5vw, 62px); margin: 0 auto 60px; max-width: 900px; }
.pricing-hero-card {
  max-width: 700px; margin: 0 auto 56px;
  background: var(--card-bg); border: 1px solid var(--signal); border-radius: 14px;
  padding: 48px 44px; text-align: center;
}
.ph-top { margin-bottom: 0; }
.ph-label {
  font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; color: var(--signal); text-transform: uppercase; margin-bottom: 12px; display: block;
}
.ph-figure {
  font-family: var(--font-display); font-stretch: 125%; font-weight: 900;
  font-size: clamp(56px, 10vw, 96px); line-height: 1;
  background: linear-gradient(135deg, #FFFFFF 0%, #B0B3B8 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  display: block; margin-bottom: 8px;
}
.ph-of {
  font-size: 18px; color: var(--text-muted); display: block;
}
.ph-divider { height: 1px; background: var(--line); margin: 32px 0; }
.ph-list {
  list-style: none; padding: 0; margin: 0; text-align: left;
}
.ph-list li {
  font-size: 15px; color: var(--text-muted); padding: 9px 0 9px 24px;
  position: relative; border-bottom: 1px solid rgba(244,244,241,0.04);
}
.ph-list li:last-child { border-bottom: none; }
.ph-list li::before {
  content: ""; position: absolute; left: 0; top: 17px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--signal); opacity: 0.6;
}

.benchmark-row {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px;
  font-family: 'JetBrains Mono', monospace; font-size: 15px; letter-spacing: 0.02em; text-align: center;
}
.bench-item { color: var(--text-muted); }
.bench-item .fig { color: var(--signal); font-weight: 600; }
.bench-sep { color: var(--line); font-weight: 600; }

/* ---------- FOUNDER ---------- */
.founder {
  background: var(--bg-mid); padding: 110px 24px; border-bottom: 1px solid var(--line);
}
.founder .container { max-width: 820px; }
.founder-copy {
  font-size: 26px; font-weight: 700; letter-spacing: -0.01em; line-height: 1.4; color: var(--off-white);
}
.founder-sig {
  font-family: 'JetBrains Mono', monospace; font-size: 14px;
  letter-spacing: 0.12em; color: var(--signal); margin-top: 30px;
}

/* ---------- CLOSING CTA ---------- */
.closing-cta {
  background: var(--bg-mid); padding: 130px 24px; text-align: center;
  position: relative; overflow: hidden;
}
.closing-cta h2 { font-size: clamp(26px, 6vw, 72px); margin-bottom: 22px; position: relative; z-index: 2; }
.closing-cta .subtext {
  font-size: 18px; color: var(--text-muted); max-width: 600px; margin: 0 auto 40px;
  position: relative; z-index: 2;
}
.cta-glow {
  position: absolute; width: 700px; height: 700px; left: 50%; top: 55%;
  transform: translate(-50%,-50%);
  background: radial-gradient(circle, var(--signal-glow) 0%, transparent 70%);
  z-index: 1; pointer-events: none;
}

.contact-grid-cta {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  max-width: 800px; margin: 0 auto; position: relative; z-index: 2;
}
.contact-grid-4 { grid-template-columns: repeat(4, 1fr); max-width: 960px; }
.contact-method {
  display: flex; flex-direction: column; gap: 10px; padding: 28px 26px;
  background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 10px;
  text-decoration: none; color: inherit;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.contact-method:hover { transform: translateY(-5px); border-color: var(--signal); }
.contact-method .cm-icon { width: 26px; height: 26px; color: var(--signal); }
.contact-method .cm-label {
  font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted);
}
.contact-method .cm-value { font-size: 16px; font-weight: 600; color: var(--off-white); }

/* ---------- FOOTER ---------- */
footer {
  background: var(--bg); padding: 40px 24px; border-top: 1px solid var(--line);
}
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; }
.footer-top {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 24px; padding-bottom: 24px; flex-wrap: wrap;
}
.footer-brand { display: flex; flex-direction: column; gap: 6px; }
.footer-brand .brand {
  font-family: 'JetBrains Mono', monospace; font-size: 13px; font-weight: 700;
  letter-spacing: 0.12em; color: var(--off-white);
}
.footer-tagline {
  font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 500;
  letter-spacing: 0.22em; color: var(--text-muted); text-transform: uppercase;
}
.footer-socials { display: flex; align-items: center; gap: 8px; }
.social-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border: 1px solid var(--card-border); border-radius: 6px;
  color: var(--text-muted); text-decoration: none;
  transition: border-color 0.25s ease, color 0.25s ease, transform 0.2s ease, background 0.25s ease;
  flex-shrink: 0;
}
.social-link:hover {
  border-color: var(--signal); color: var(--signal);
  background: var(--signal-glow); transform: translateY(-2px);
}
.social-link svg { width: 15px; height: 15px; fill: currentColor; flex-shrink: 0; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap; padding-top: 20px; border-top: 1px solid var(--line);
}
.footer-meta {
  display: flex; flex-wrap: wrap; gap: 8px 16px; align-items: center;
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.09em; color: var(--text-muted);
}
.footer-meta a { color: var(--text-muted); text-decoration: none; transition: color 0.25s ease; }
.footer-meta a:hover { color: var(--signal); }
.footer-meta .dot { color: var(--line); }
.back-to-top {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border: 1px solid var(--card-border); border-radius: 6px;
  color: var(--text-muted); text-decoration: none; cursor: pointer; flex-shrink: 0;
  transition: border-color 0.25s ease, color 0.25s ease, transform 0.2s ease, background 0.25s ease;
}
.back-to-top:hover {
  border-color: var(--signal); color: var(--signal);
  background: var(--signal-glow); transform: translateY(-3px);
}
.back-to-top svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ---------- FLOATING WIDGET ---------- */
.float-widget {
  position: fixed; bottom: 28px; right: 16px; z-index: 9999;
  display: flex; flex-direction: column; gap: 10px; align-items: flex-end;
}
.float-btn {
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 50%; border: none; cursor: pointer;
  text-decoration: none; transition: transform 0.2s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 18px rgba(0,0,0,0.45); position: relative;
}
.float-btn:hover { transform: scale(1.1); }
.float-btn.fc-call { background: var(--signal); color: #fff; box-shadow: 0 4px 20px rgba(255,92,31,0.45); }
.float-btn.fc-wa { background: #25D366; color: #fff; box-shadow: 0 4px 18px rgba(37,211,102,0.4); }
.float-btn svg { width: 21px; height: 21px; flex-shrink: 0; }
.float-btn::before {
  content: attr(data-tip); position: absolute; right: calc(100% + 11px); top: 50%;
  transform: translateY(-50%); background: #1a1d20; border: 1px solid var(--line);
  color: var(--off-white); font-family: 'JetBrains Mono', monospace; font-size: 10px;
  letter-spacing: 0.1em; padding: 5px 10px; border-radius: 4px;
  white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity 0.18s ease;
}
.float-btn:hover::before { opacity: 1; }

/* ---------- HERO PROOF BAR ---------- */
.hero-proof {
  display: flex; align-items: center; justify-content: center; gap: 0;
  margin-top: 38px; flex-wrap: wrap;
}
.hero-proof-item { text-align: center; padding: 0 28px; }
.hp-fig {
  font-family: var(--font-display); font-stretch: 125%; font-weight: 800;
  font-size: 22px; color: var(--signal); display: block; line-height: 1.1;
}
.hp-label {
  font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 500;
  letter-spacing: 0.1em; color: var(--text-muted); text-transform: uppercase;
}
.hp-sep { width: 1px; height: 32px; background: var(--line); flex-shrink: 0; }

/* ---------- TRUST NUMBERS ---------- */
.trust-numbers {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-bottom: 32px;
}
.trust-item {
  text-align: center; padding: 20px 14px;
  background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 10px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.trust-item:hover { border-color: var(--signal); transform: translateY(-3px); }
.trust-icon { width: 24px; height: 24px; color: var(--signal); margin-bottom: 10px; }
.trust-fig {
  font-family: var(--font-display); font-stretch: 125%; font-weight: 800;
  font-size: 24px; color: var(--off-white); display: block; margin-bottom: 6px;
}
.trust-label {
  font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 500;
  letter-spacing: 0.08em; color: var(--text-muted); text-transform: uppercase; line-height: 1.4;
}

/* ---------- DIFFERENTIATOR ---------- */
.differ { padding: 120px 24px; border-bottom: 1px solid var(--line); }
.differ h2 { font-size: clamp(34px, 5vw, 62px); margin: 0 auto 22px; max-width: 900px; }
.differ .subhead {
  font-size: 18px; color: var(--text-muted); max-width: 640px; margin: 0 auto 60px; text-align: center;
}
.differ-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  max-width: 900px; margin: 0 auto;
}
.differ-card {
  background: rgba(244,244,241,0.02); border: 1px solid var(--card-border); border-radius: 10px;
  padding: 24px 28px;
}
.differ-card.differ-us {
  background: var(--card-bg); border-color: var(--signal);
}
.differ-vs {
  font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; display: block; margin-bottom: 10px;
  color: var(--text-muted);
}
.differ-us .differ-vs { color: var(--signal); }
.differ-card p { font-size: 15px; color: var(--text-muted); margin: 0; }
.differ-us p { color: var(--off-white); }

/* ---------- FOUNDER (EXPANDED) ---------- */
.founder-layout {
  display: grid; grid-template-columns: 280px 1fr; gap: 56px; align-items: start;
}
.founder-photo-wrap {
  width: 100%; aspect-ratio: 1; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.founder-photo {
  width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block;
}
.founder-stats {
  display: flex; gap: 16px; margin-top: 18px;
}
.fs-item { flex: 1; text-align: center; }
.fs-item .fs-fig {
  font-family: var(--font-display); font-stretch: 125%; font-weight: 800;
  font-size: 22px; color: var(--signal); display: block; line-height: 1.1;
}
.fs-item .fs-label {
  font-family: 'JetBrains Mono', monospace; font-size: 9px; font-weight: 500;
  letter-spacing: 0.08em; color: var(--text-muted); text-transform: uppercase; line-height: 1.3;
}
.founder-text-col .eyebrow { margin-bottom: 16px; }
.founder-name {
  font-family: var(--font-display); font-stretch: 125%; font-weight: 800;
  font-size: 32px; text-transform: uppercase; line-height: 1;
  color: var(--off-white); background: none; -webkit-text-fill-color: currentColor;
  margin-bottom: 8px; text-align: left;
}
.founder-role {
  font-family: 'JetBrains Mono', monospace; font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; color: var(--signal); margin-bottom: 24px;
}
.founder-text-col .founder-copy {
  font-size: 16px; font-weight: 400; line-height: 1.7; color: var(--text-muted); margin-bottom: 16px;
}
.founder-links { display: flex; align-items: center; gap: 18px; margin-top: 28px; flex-wrap: wrap; }
.founder-linkedin {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', monospace; font-size: 13px; font-weight: 600;
  letter-spacing: 0.06em; color: var(--text-muted); text-decoration: none;
  border: 1px solid var(--card-border); border-radius: 7px; padding: 12px 18px;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.founder-linkedin:hover { border-color: var(--signal); color: var(--signal); }
.founder-linkedin svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }

/* ---------- GUARANTEE ---------- */
.guarantee { padding: 80px 24px; border-bottom: 1px solid var(--line); }
.guarantee-card {
  display: flex; align-items: flex-start; gap: 32px;
  max-width: 800px; margin: 0 auto; padding: 44px 40px;
  background: var(--card-bg); border: 1px solid var(--signal); border-radius: 14px;
}
.guarantee-icon svg { width: 48px; height: 48px; color: var(--signal); flex-shrink: 0; }
.guarantee-title {
  font-family: var(--font-display); font-stretch: 125%; font-weight: 800;
  font-size: 26px; text-transform: uppercase; line-height: 1.1;
  color: var(--off-white); background: none; -webkit-text-fill-color: currentColor;
  margin-bottom: 14px; text-align: left;
}
.guarantee-content p { font-size: 15px; color: var(--text-muted); line-height: 1.7; }

/* ---------- FAQ ---------- */
.faq { padding: 120px 24px; background: var(--bg-mid); border-bottom: 1px solid var(--line); }
.faq h2 { font-size: clamp(34px, 5vw, 62px); margin: 0 auto 60px; max-width: 900px; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  font-family: 'Inter', sans-serif; font-size: 17px; font-weight: 700;
  color: var(--off-white); padding: 22px 36px 22px 0; cursor: pointer;
  list-style: none; position: relative;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: "+"; position: absolute; right: 0; top: 22px;
  font-family: 'JetBrains Mono', monospace; font-size: 20px; font-weight: 400;
  color: var(--signal); transition: transform 0.25s ease;
}
details[open] .faq-q::after { content: "\2212"; }
.faq-a { padding: 0 0 22px; }
.faq-a p { font-size: 15px; color: var(--text-muted); line-height: 1.7; }

/* ---------- CTA BOOK CARD ---------- */
.cta-book {
  position: relative; z-index: 2; text-align: center; margin-bottom: 48px;
}
.cta-book-note {
  display: block; margin-top: 16px;
  font-family: 'JetBrains Mono', monospace; font-size: 12px; font-weight: 500;
  letter-spacing: 0.06em; color: var(--text-muted);
}

/* ---------- FOOTER (EXPANDED) ---------- */
.footer-about {
  font-size: 14px; color: var(--text-muted); line-height: 1.6;
  max-width: 320px; margin-top: 12px;
}
.footer-nav { display: flex; flex-direction: column; gap: 8px; }
.footer-nav-title {
  font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; color: var(--off-white); text-transform: uppercase;
  margin-bottom: 4px;
}
.footer-nav a {
  font-size: 13px; color: var(--text-muted); text-decoration: none;
  transition: color 0.2s ease;
}
.footer-nav a:hover { color: var(--signal); }

/* ---------- APPLY VALUE PROP ---------- */
.apply-value {
  padding: 80px 24px; border-bottom: 1px solid var(--line); text-align: center;
}
.apply-value h2 {
  font-size: clamp(30px, 5vw, 52px); margin: 0 auto 48px; max-width: 700px;
}
.value-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 1000px; margin: 0 auto; text-align: left;
}
.value-card {
  background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 10px;
  padding: 28px 24px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.value-card:hover { transform: translateY(-5px); border-color: var(--signal); }
.value-icon { width: 26px; height: 26px; color: var(--signal); margin-bottom: 14px; }
.value-card h3 {
  font-family: var(--font-display); font-stretch: 125%; font-size: 18px; font-weight: 700;
  text-transform: uppercase; line-height: 1.1; margin-bottom: 10px;
  color: var(--off-white); background: none; -webkit-text-fill-color: currentColor;
}
.value-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .contact-grid-cta, .contact-grid-4 { grid-template-columns: 1fr; max-width: 400px; }
  .sec-tag { display: none; }
  .trust-numbers { grid-template-columns: repeat(2, 1fr); }
  .differ-grid { grid-template-columns: 1fr; }
  .founder-layout { grid-template-columns: 1fr; gap: 36px; }
  .founder-photo-col { max-width: 280px; }
  .founder-text-col .eyebrow { text-align: center !important; }
  .founder-name { text-align: center; }
  .founder-role { text-align: center; }
  .founder-links { justify-content: center; }
  .guarantee-card { flex-direction: column; align-items: center; text-align: center; }
  .guarantee-title { text-align: center; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 580px) {
  .hero h1 { font-size: clamp(26px, 8vw, 48px); }
  .hero .subtitle { font-size: 17px; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .service-cards { grid-template-columns: 1fr !important; }
  .founder-text-col .founder-copy { font-size: 15px; }
  .trust-numbers { grid-template-columns: 1fr 1fr; }
  .hero-proof { gap: 0; }
  .hero-proof-item { padding: 0 16px; }
  .hp-fig { font-size: 18px; }
  .value-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .benchmark-row { flex-direction: column; gap: 12px; }
  .bench-sep { display: none; }
  section, .problem, .founder { padding-left: 20px; padding-right: 20px; }
  .site-header { padding: 12px 18px; }
  .wordmark { font-size: 17px; }
  .header-cta { font-size: 12px; padding: 11px 14px; }
  .hero .btn-primary {
    display: block; max-width: 340px; text-align: center; font-size: 15px; padding: 15px 20px;
  }
  .closing-cta { padding: 80px 20px; }
  .footer-top { flex-direction: column; gap: 20px; }
  .pricing-hero-card { padding: 32px 22px; }
  .ph-figure { font-size: 64px; }
}
