/* ============================================================
   PIPELINE SOUTH — IMMERSIVE REDESIGN
   ============================================================ */

:root {
  --bg:          #060708;
  --bg-mid:      #0a0c0e;
  --surface:     #111316;
  --signal:      #FF5C1F;
  --signal-dim:  rgba(255, 92, 31, 0.12);
  --signal-glow: rgba(255, 92, 31, 0.08);
  --white:       #F4F4F1;
  --muted:       rgba(244, 244, 241, 0.55);
  --faint:       rgba(244, 244, 241, 0.12);
  --ghost:       rgba(244, 244, 241, 0.06);
  --font-display: 'Archivo', sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:    'JetBrains Mono', monospace;
  --ease-out:     cubic-bezier(.2, .7, .2, 1);
  --ease-spring:  cubic-bezier(.175, .885, .32, 1.275);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
*:focus-visible { outline: 2px solid var(--signal); outline-offset: 4px; }

.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: 700 13px/1 var(--font-mono); letter-spacing: 0.08em; text-decoration: none;
  transition: top 0.2s;
}
.skip-to-content:focus { top: 0; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--bg);
  color: var(--white);
  font: 400 16px/1.65 var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 32px; }

.accent { color: var(--signal); }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 32px;
  transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
}
.nav.scrolled {
  padding: 14px 32px;
  background: rgba(6, 7, 8, 0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--ghost);
}

.nav-brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--white);
}
.nav-brand svg { display: block; }
.nav-wordmark {
  font: 800 17px/1 var(--font-body);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex; align-items: center; gap: 32px;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-links a {
  font: 500 12px/1 var(--font-mono);
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  transition: color 0.25s;
  position: relative;
}
.nav-links a:hover { color: var(--white); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--signal);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.3s var(--ease-out);
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-cta {
  font: 600 12px/1 var(--font-mono);
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--bg); background: var(--signal);
  padding: 12px 20px; border-radius: 6px;
  text-decoration: none;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 92, 31, 0.35);
}

.nav-burger {
  display: none; width: 40px; height: 40px;
  background: none; border: 1px solid var(--faint); border-radius: 6px;
  cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-burger span {
  display: block; width: 18px; height: 1.5px; background: var(--white);
  transition: transform 0.3s, opacity 0.2s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile overlay */
.mobile-overlay {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(6, 7, 8, 0.96);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.4s, visibility 0.4s;
}
.mobile-overlay.open { opacity: 1; visibility: visible; pointer-events: auto; }
.mobile-menu-inner {
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}
.mobile-menu-inner a {
  font: 700 clamp(24px, 5vw, 36px)/1.2 var(--font-display);
  font-stretch: 125%; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  transition: color 0.2s;
}
.mobile-menu-inner a:hover { color: var(--white); }
.mobile-cta {
  margin-top: 16px;
  color: var(--signal) !important;
  font-size: clamp(18px, 3vw, 24px) !important;
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
}

/* ============ BUTTONS ============ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  font: 700 16px/1 var(--font-body);
  color: var(--bg); background: var(--signal);
  padding: 18px 32px; border-radius: 8px; border: none;
  text-decoration: none; cursor: pointer;
  position: relative; overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
  transform: translateX(-130%);
  transition: transform 0.6s var(--ease-out);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 92, 31, 0.4);
}
.btn-primary:hover::after { transform: translateX(130%); }
.btn-arrow { position: relative; z-index: 1; }
.btn-primary > * { position: relative; z-index: 1; }
.btn-sm { font-size: 14px; padding: 14px 24px; }
.btn-lg { font-size: 18px; padding: 22px 40px; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  font: 600 14px/1 var(--font-mono);
  letter-spacing: 0.04em;
  color: var(--muted); border: 1px solid var(--faint);
  padding: 13px 20px; border-radius: 7px;
  text-decoration: none;
  transition: border-color 0.25s, color 0.25s;
}
.btn-ghost:hover { border-color: var(--signal); color: var(--signal); }
.btn-ghost svg { width: 16px; height: 16px; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 256px;
  opacity: 0.5;
}
.hero-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(255, 92, 31, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(255, 92, 31, 0.03) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(255, 92, 31, 0.04) 0%, transparent 60%);
}
.hero-lines {
  position: absolute; inset: 0;
  display: flex; justify-content: space-between;
  padding: 0 10%;
}
.hero-lines span {
  width: 1px; height: 100%;
  background: linear-gradient(180deg, transparent 0%, var(--ghost) 30%, var(--ghost) 70%, transparent 100%);
}

.hero-content {
  position: relative; z-index: 1;
  text-align: center;
  padding: 120px 32px 80px;
  max-width: 1100px;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroWordUp {
  from { opacity: 0; transform: translateY(100%); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero-tag {
  font: 600 12px/1 var(--font-mono);
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 40px;
  animation: heroFadeUp 1s cubic-bezier(.2,.7,.2,1) 0.4s both;
}

.hero-headline {
  font-family: var(--font-display);
  font-stretch: 125%; font-weight: 900;
  font-size: clamp(40px, 9vw, 110px);
  line-height: 0.95; letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 36px;
}
.h-line { display: block; overflow: hidden; }
.h-word {
  display: inline-block;
  animation: heroWordUp 0.9s cubic-bezier(.2,.7,.2,1) both;
}
.h-word:nth-child(1) { animation-delay: 0.5s; }
.h-word:nth-child(2) { animation-delay: 0.6s; }
.h-word:nth-child(3) { animation-delay: 0.7s; }
.h-line:nth-child(2) .h-word:nth-child(1) { animation-delay: 0.8s; }
.h-line:nth-child(2) .h-word:nth-child(2) { animation-delay: 0.9s; }
.h-line:nth-child(2) .h-word:nth-child(3) { animation-delay: 1.0s; }
.h-line:nth-child(3) .h-word:nth-child(1) { animation-delay: 1.1s; }
.h-line:nth-child(3) .h-word:nth-child(2) { animation-delay: 1.2s; }
.h-outline {
  color: var(--white);
  -webkit-text-stroke: 1.5px var(--white);
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font: 400 clamp(16px, 2vw, 20px)/1.7 var(--font-body);
  color: var(--muted);
  max-width: 580px; margin: 0 auto 44px;
  animation: heroFadeUp 0.9s cubic-bezier(.2,.7,.2,1) 1.1s both;
}

.hero-actions {
  margin-bottom: 56px;
  animation: heroFadeUp 0.8s cubic-bezier(.2,.7,.2,1) 1.3s both;
}

.hero-stats {
  display: flex; align-items: center; justify-content: center; gap: 48px;
  animation: heroFadeUp 0.8s cubic-bezier(.2,.7,.2,1) 1.5s both;
}
.hero-stat { text-align: center; }
.hs-fig {
  display: block;
  font: 800 clamp(20px, 3vw, 28px)/1 var(--font-display);
  font-stretch: 125%;
  color: var(--signal);
  margin-bottom: 6px;
}
.hs-label {
  font: 500 11px/1 var(--font-mono);
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted);
}

.scroll-cue {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: heroFadeIn 1.5s ease 1.8s both;
}
.scroll-cue-line {
  display: block; width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--signal), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
.scroll-cue-text {
  font: 500 10px/1 var(--font-mono);
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted);
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============ MARQUEE ============ */
.marquee-section {
  border-top: 1px solid var(--ghost);
  border-bottom: 1px solid var(--ghost);
  padding: 20px 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee-track {
  display: flex; align-items: center; gap: 0;
  width: max-content;
  animation: marquee 80s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-track span {
  font: 800 clamp(14px, 1.8vw, 18px)/1 var(--font-display);
  font-stretch: 125%;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(244, 244, 241, 0.12);
  white-space: nowrap;
  padding: 0 24px;
  transition: color 0.3s;
}
.marquee-track span:hover { color: var(--white); }
.marquee-track span::after {
  content: '//';
  margin-left: 24px;
  font-size: 0.7em;
  font-family: var(--font-mono);
  font-weight: 500;
  color: rgba(244, 244, 241, 0.08);
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============ SECTION SHARED ============ */
.section-label {
  display: block;
  font: 500 12px/1 var(--font-mono);
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 40px;
}

.section-headline {
  font: 900 clamp(32px, 5.5vw, 68px)/0.95 var(--font-display);
  font-stretch: 125%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #fff 0%, #999 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-headline .h-outline {
  color: var(--white);
  -webkit-text-stroke: 1.5px var(--white);
  -webkit-text-fill-color: transparent;
  background: none;
}

.section-sub {
  font: 400 clamp(16px, 1.6vw, 19px)/1.7 var(--font-body);
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 56px;
}

section { padding: 140px 0; position: relative; }

/* ============ PROBLEM ============ */
.s-problem { padding: 160px 0; }
.problem-stack { display: flex; flex-direction: column; gap: 32px; }
.problem-line {
  font: 600 clamp(22px, 3.2vw, 36px)/1.3 var(--font-display);
  font-stretch: 125%;
  color: var(--muted);
  letter-spacing: -0.01em;
}
.problem-line strong { color: var(--white); font-weight: 700; }

/* ============ WHY SA ============ */
.s-whysa { background: var(--bg-mid); }
.stat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
}
.stat-card {
  background: var(--surface);
  padding: 40px 28px; text-align: center;
  transition: background 0.3s;
}
.stat-card:first-child { border-radius: 12px 0 0 12px; }
.stat-card:last-child { border-radius: 0 12px 12px 0; }
.stat-card:hover { background: rgba(255, 92, 31, 0.06); }
.stat-fig {
  display: block;
  font: 800 clamp(24px, 3vw, 32px)/1 var(--font-display);
  font-stretch: 125%;
  color: var(--signal);
  margin-bottom: 10px;
}
.stat-label {
  font: 500 11px/1.3 var(--font-mono);
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted);
}

/* ============ ROLES ============ */
.role-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  margin-bottom: 48px;
}
.role-card {
  background: var(--surface);
  padding: 40px 32px;
  position: relative;
  transition: background 0.3s;
}
.role-card:nth-child(1) { border-radius: 12px 0 0 0; }
.role-card:nth-child(3) { border-radius: 0 12px 0 0; }
.role-card:nth-child(4) { border-radius: 0 0 0 12px; }
.role-card:nth-child(6) { border-radius: 0 0 12px 0; }
.role-card:hover { background: rgba(255, 92, 31, 0.04); }
.role-num {
  display: block;
  font: 800 48px/1 var(--font-display);
  font-stretch: 125%;
  color: var(--signal); opacity: 0.7;
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(255, 92, 31, 0.4);
  animation: numGlow 3s ease-in-out infinite alternate;
}
@keyframes numGlow {
  0% { text-shadow: 0 0 12px rgba(255, 92, 31, 0.3); opacity: 0.6; }
  100% { text-shadow: 0 0 28px rgba(255, 92, 31, 0.6); opacity: 0.85; }
}
.role-card h3 {
  font: 700 20px/1.1 var(--font-display);
  font-stretch: 125%;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}
.role-card p {
  font-size: 15px; color: var(--muted); line-height: 1.65;
}

.verticals {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
}
.v-label {
  font: 600 11px/1 var(--font-mono);
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); margin-right: 8px;
}
.chip {
  font: 600 11px/1 var(--font-mono);
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--white);
  border: 1px solid var(--faint); border-radius: 100px;
  padding: 8px 16px;
  transition: border-color 0.25s, color 0.25s;
}
.chip:hover { border-color: var(--signal); color: var(--signal); }

/* ============ SCREENING ============ */
.s-screening { background: var(--bg-mid); }
.funnel { display: flex; flex-direction: column; gap: 32px; }
.funnel-stage { display: flex; flex-direction: column; gap: 14px; }
.funnel-bar {
  width: var(--w, 100%);
  min-width: 48px;
  height: 8px;
  background: linear-gradient(90deg, var(--signal), rgba(255, 92, 31, 0.15));
  border-radius: 4px;
  position: relative;
  transition: width 1.2s var(--ease-out);
}
.funnel-bar-final {
  height: 10px;
  background: linear-gradient(90deg, var(--signal), #FF7032);
  box-shadow: 0 0 24px rgba(255, 92, 31, 0.35);
}
.funnel-count {
  position: absolute; right: 0; top: -22px;
  font: 700 12px/1 var(--font-mono);
  letter-spacing: 0.08em;
  color: var(--signal);
}
.funnel-info { min-width: 0; }
.funnel-num {
  display: block;
  font: 600 11px/1 var(--font-mono);
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 8px;
}
.funnel-info h3 {
  font: 700 18px/1.15 var(--font-display);
  font-stretch: 125%; text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.funnel-info p { font-size: 14px; color: var(--muted); line-height: 1.6; }

.funnel-final {
  background: rgba(255, 92, 31, 0.04);
  border: 1px solid rgba(255, 92, 31, 0.2);
  border-radius: 12px;
  padding: 28px;
}
.funnel-final .funnel-bar { margin-bottom: 8px; }
.funnel-final .funnel-info h3 { color: var(--signal); }

/* ============ HOW IT WORKS ============ */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  counter-reset: step;
}
.step {
  background: var(--surface);
  padding: 48px 32px;
  transition: background 0.3s;
}
.step:first-child { border-radius: 12px 0 0 12px; }
.step:last-child { border-radius: 0 12px 12px 0; }
.step:hover { background: rgba(255, 92, 31, 0.04); }
.step-num {
  display: block;
  font: 800 64px/1 var(--font-display);
  font-stretch: 125%;
  color: var(--signal); opacity: 0.7;
  margin-bottom: 24px;
  text-shadow: 0 0 20px rgba(255, 92, 31, 0.4);
  animation: numGlow 3s ease-in-out infinite alternate;
}
.step h3 {
  font: 700 20px/1.15 var(--font-display);
  font-stretch: 125%; text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}
.step p { font-size: 15px; color: var(--muted); line-height: 1.65; }

/* ============ PRICING ============ */
.s-pricing { background: var(--bg-mid); text-align: center; }
.pricing-card {
  background: var(--surface);
  border: 1px solid rgba(255, 92, 31, 0.25);
  border-radius: 16px;
  padding: 56px 48px;
  margin-bottom: 40px;
  text-align: center;
}
.pricing-label {
  display: block;
  font: 600 11px/1 var(--font-mono);
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 16px;
}
.pricing-fig {
  display: block;
  font: 900 clamp(64px, 12vw, 120px)/1 var(--font-display);
  font-stretch: 125%;
  background: linear-gradient(135deg, #fff 0%, #888 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}
.pricing-of {
  display: block;
  font-size: 18px; color: var(--muted);
}
.pricing-divider { height: 1px; background: var(--ghost); margin: 36px 0; }
.pricing-list {
  list-style: none; text-align: left;
  max-width: 460px; margin: 0 auto;
}
.pricing-list li {
  font-size: 15px; color: var(--muted); line-height: 1.7;
  padding: 10px 0 10px 20px;
  position: relative;
  border-bottom: 1px solid var(--ghost);
}
.pricing-list li:last-child { border-bottom: none; }
.pricing-list li::before {
  content: ''; position: absolute; left: 0; top: 18px;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--signal); opacity: 0.6;
}

.pricing-bench {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px;
  font: 500 14px/1 var(--font-mono);
  letter-spacing: 0.02em;
  color: var(--muted);
}
.pricing-bench strong { color: var(--signal); }
.bench-sep { color: var(--faint); }

/* ============ DIFFERENTIATOR ============ */
.differ-grid {
  display: flex; flex-direction: column; gap: 2px;
}
.differ-pair {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
}
.differ-them, .differ-us {
  padding: 28px 32px;
}
.differ-them {
  background: var(--surface); opacity: 0.6;
  border-radius: 0;
}
.differ-them:first-child { border-radius: 12px 0 0 0; }
.differ-us {
  background: rgba(255, 92, 31, 0.05);
}
.differ-pair:last-child .differ-us { border-radius: 0 0 12px 0; }
.differ-pair:last-child .differ-them { border-radius: 0 0 0 12px; }
.differ-tag {
  display: block;
  font: 700 10px/1 var(--font-mono);
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 10px;
}
.differ-them .differ-tag { color: var(--muted); }
.differ-us .differ-tag { color: var(--signal); }
.differ-them p {
  font-size: 14px; color: var(--muted); line-height: 1.6;
  text-decoration: line-through; text-decoration-color: rgba(244,244,241,0.15);
}
.differ-us p { font-size: 14px; color: var(--white); line-height: 1.6; }

/* ============ FOUNDER ============ */
.s-founder { background: var(--bg-mid); }
.founder-layout {
  display: flex; flex-direction: column; align-items: center; gap: 48px;
}
.founder-img-wrap {
  width: 100%; aspect-ratio: 1; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--faint);
}
.founder-img-wrap img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  display: block;
}
.founder-mini-stats {
  display: flex; gap: 16px; margin-top: 20px;
}
.founder-mini-stats > div { flex: 1; text-align: center; }
.fms-fig {
  display: block;
  font: 800 22px/1 var(--font-display);
  font-stretch: 125%; color: var(--signal);
  margin-bottom: 4px;
}
.fms-label {
  font: 500 9px/1 var(--font-mono);
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted);
}

.founder-text {
  text-align: center; max-width: 700px;
}
.founder-text h3 {
  font: 800 32px/1 var(--font-display);
  font-stretch: 125%; text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.founder-role {
  display: block;
  font: 600 12px/1 var(--font-mono);
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 28px;
}
.founder-text p {
  font-size: 16px; color: var(--muted); line-height: 1.75;
  margin-bottom: 16px; text-align: left;
}
.founder-links {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-top: 28px; flex-wrap: wrap;
}

/* ============ GUARANTEE ============ */
.s-guarantee { padding: 100px 0; }
.guarantee-card {
  background: var(--surface);
  border: 1px solid rgba(255, 92, 31, 0.3);
  border-radius: 16px;
  padding: 48px;
  text-align: center;
  position: relative; overflow: hidden;
}
.guarantee-badge {
  font: 900 100px/1 var(--font-display);
  font-stretch: 125%;
  color: var(--signal); opacity: 0.05;
  position: absolute; top: -10px; right: -10px;
  transform: rotate(-8deg);
  pointer-events: none;
}
.guarantee-card h3 {
  font: 800 clamp(22px, 3vw, 30px)/1.1 var(--font-display);
  font-stretch: 125%; text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}
.guarantee-card p {
  font-size: 15px; color: var(--muted); line-height: 1.75;
  max-width: 600px; margin: 0 auto;
  position: relative;
}

/* ============ TESTIMONIALS ============ */
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}
.testi-card {
  background: var(--surface);
  padding: 40px 32px;
  display: flex; flex-direction: column;
  transition: background 0.3s;
}
.testi-card:first-child { border-radius: 12px 0 0 12px; }
.testi-card:last-child { border-radius: 0 12px 12px 0; }
.testi-card:hover { background: rgba(255, 92, 31, 0.03); }
.testi-card p {
  font: 400 15px/1.8 var(--font-body);
  color: var(--white);
  flex-grow: 1;
  margin-bottom: 28px;
}
.testi-card footer {
  display: flex; align-items: center; gap: 14px;
  border-top: 1px solid var(--ghost); padding-top: 20px;
}
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255, 92, 31, 0.1);
  border: 1px solid rgba(255, 92, 31, 0.3);
  display: flex; align-items: center; justify-content: center;
  font: 700 11px/1 var(--font-mono);
  color: var(--signal);
}
.testi-card footer div {
  font-size: 13px; color: var(--muted); line-height: 1.5;
}
.testi-card footer strong {
  font: 700 13px/1 var(--font-display);
  font-stretch: 125%; text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.03em;
}
.testi-hire {
  font: 600 10px/1 var(--font-mono);
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--signal);
}

/* ============ FAQ ============ */
.s-faq { background: var(--bg-mid); }
.faq-list { margin-top: 20px; }
.faq-item {
  border-bottom: 1px solid var(--ghost);
}
.faq-item:first-child { border-top: 1px solid var(--ghost); }
.faq-item summary {
  font: 600 17px/1 var(--font-body);
  color: var(--white);
  padding: 24px 40px 24px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; position: absolute; right: 0; top: 24px;
  font: 400 22px/1 var(--font-mono);
  color: var(--signal);
  transition: transform 0.3s;
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-item summary:hover { color: var(--signal); }
.faq-item[open] summary { color: var(--signal); }
.faq-answer { padding: 0 0 24px; }
.faq-answer p { font-size: 15px; color: var(--muted); line-height: 1.75; }

/* ============ CLOSING CTA ============ */
.s-cta {
  padding: 180px 0;
  text-align: center;
  overflow: hidden;
}
.cta-glow-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(255, 92, 31, 0.06) 0%, transparent 70%);
}
.s-cta .container-narrow { position: relative; z-index: 1; }
.cta-headline {
  font: 900 clamp(36px, 7vw, 80px)/0.95 var(--font-display);
  font-stretch: 125%;
  letter-spacing: -0.03em; text-transform: uppercase;
  background: linear-gradient(135deg, #fff 0%, #999 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
}
.cta-sub {
  font: 400 clamp(16px, 1.6vw, 19px)/1.7 var(--font-body);
  color: var(--muted);
  max-width: 560px; margin: 0 auto 44px;
}
.cta-actions { margin-bottom: 56px; }
.cta-note {
  display: block; margin-top: 16px;
  font: 500 12px/1 var(--font-mono);
  letter-spacing: 0.06em; color: var(--muted);
}

.contact-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
}
.contact-card {
  background: var(--surface);
  padding: 28px 24px;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column; gap: 8px;
  cursor: pointer;
  transition: background 0.3s;
}
.contact-card:first-child { border-radius: 12px 0 0 12px; }
.contact-card:last-child { border-radius: 0 12px 12px 0; }
.contact-card:hover { background: rgba(255, 92, 31, 0.04); }
.cc-label {
  font: 600 10px/1 var(--font-mono);
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted);
}
.cc-value { font: 600 15px/1 var(--font-body); color: var(--white); }
.cc-masked {
  font-size: 12px !important; opacity: 0.4;
  letter-spacing: 0.04em; font-style: italic; font-weight: 400 !important;
}

/* ============ FOOTER ============ */
.site-footer {
  padding: 48px 0 32px;
  border-top: 1px solid var(--ghost);
}
.footer-top {
  display: flex; justify-content: space-between; gap: 32px;
  padding-bottom: 32px; flex-wrap: wrap;
}
.footer-brand { max-width: 300px; }
.footer-logo-link {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--white);
  font: 700 14px/1 var(--font-mono);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.footer-about { font-size: 13px; color: var(--muted); line-height: 1.6; }
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col-title {
  font: 700 10px/1 var(--font-mono);
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 13px; color: var(--muted); text-decoration: none;
  transition: color 0.2s; cursor: pointer;
}
.footer-col a:hover { color: var(--signal); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px; border-top: 1px solid var(--ghost);
  font: 400 12px/1 var(--font-mono);
  letter-spacing: 0.06em; color: var(--muted);
}
.back-to-top {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid var(--faint); border-radius: 6px;
  color: var(--muted); text-decoration: none; font-size: 16px;
  transition: border-color 0.25s, color 0.25s, transform 0.25s;
}
.back-to-top:hover { border-color: var(--signal); color: var(--signal); transform: translateY(-3px); }

/* ============ 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%;
  text-decoration: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.25s;
  position: relative;
}
.float-btn:hover { transform: scale(1.1); }
.float-btn.fc-wa { background: #25D366; color: #fff; box-shadow: 0 4px 18px rgba(37,211,102,0.4); }
.float-btn.fc-call { background: var(--signal); color: #fff; box-shadow: 0 4px 20px rgba(255,92,31,0.45); }
.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: var(--surface); border: 1px solid var(--faint);
  color: var(--white);
  font: 600 10px/1 var(--font-mono);
  letter-spacing: 0.1em; padding: 5px 10px; border-radius: 4px;
  white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity 0.18s;
}
.float-btn:hover::before { opacity: 1; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card:first-child { border-radius: 12px 0 0 0; }
  .stat-card:nth-child(2) { border-radius: 0 12px 0 0; }
  .stat-card:nth-child(3) { border-radius: 0 0 0 12px; }
  .stat-card:last-child { border-radius: 0 0 12px 0; }

  .role-grid { grid-template-columns: repeat(2, 1fr); }
  .role-card:nth-child(1) { border-radius: 12px 0 0 0; }
  .role-card:nth-child(2) { border-radius: 0 12px 0 0; }
  .role-card:nth-child(3), .role-card:nth-child(4) { border-radius: 0; }
  .role-card:nth-child(5) { border-radius: 0 0 0 12px; }
  .role-card:nth-child(6) { border-radius: 0 0 12px 0; }

  .steps { grid-template-columns: 1fr; }
  .step:first-child { border-radius: 12px 12px 0 0; }
  .step:last-child { border-radius: 0 0 12px 12px; }

  .testi-grid { grid-template-columns: 1fr; }
  .testi-card:first-child { border-radius: 12px 12px 0 0; }
  .testi-card:last-child { border-radius: 0 0 12px 12px; }
  .testi-card { border-radius: 0; }

  .differ-pair { grid-template-columns: 1fr; }
  .differ-them, .differ-us { border-radius: 0 !important; }
  .differ-pair:first-child .differ-them { border-radius: 12px 12px 0 0 !important; }
  .differ-pair:last-child .differ-us { border-radius: 0 0 12px 12px !important; }

  .founder-img-col { max-width: 280px; }

  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-card:first-child { border-radius: 12px 0 0 0; }
  .contact-card:nth-child(2) { border-radius: 0 12px 0 0; }
  .contact-card:nth-child(3) { border-radius: 0 0 0 12px; }
  .contact-card:last-child { border-radius: 0 0 12px 0; }

  .footer-top { display: grid; grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  section { padding: 100px 0; }
  .s-problem { padding: 120px 0; }
  .s-cta { padding: 120px 0; }
}

@media (max-width: 600px) {
  .container, .container-narrow { padding: 0 20px; }
  .nav { padding: 16px 20px; }
  .nav.scrolled { padding: 12px 20px; }

  .hero-content { padding: 100px 20px 60px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }

  .stat-grid { grid-template-columns: 1fr 1fr; }
  .role-grid { grid-template-columns: 1fr; }
  .role-card { border-radius: 0 !important; }
  .role-card:first-child { border-radius: 12px 12px 0 0 !important; }
  .role-card:last-child { border-radius: 0 0 12px 12px !important; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-card { border-radius: 0 !important; }
  .contact-card:first-child { border-radius: 12px 12px 0 0 !important; }
  .contact-card:last-child { border-radius: 0 0 12px 12px !important; }

  .footer-top { grid-template-columns: 1fr; }

  .pricing-card { padding: 36px 24px; }
  .pricing-bench { flex-direction: column; gap: 8px; }
  .bench-sep { display: none; }

  .guarantee-card { padding: 32px 24px; }

  .float-btn { width: 42px; height: 42px; }
  .float-btn svg { width: 18px; height: 18px; }
  .float-widget { bottom: 20px; right: 14px; gap: 8px; }

  section { padding: 80px 0; }
  .s-cta { padding: 100px 0; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: clamp(34px, 10vw, 56px); }
  .hero-stats { gap: 16px; }
  .hs-fig { font-size: 18px; }
}

/* ============ SPLASH SCREEN ============ */
.splash {
  position: fixed; inset: 0; z-index: 10001;
  background: radial-gradient(120% 90% at 50% 42%, #0c0f12 0%, var(--bg) 62%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  transition: opacity 0.6s ease, visibility 0.6s;
}
.splash.done { opacity: 0; visibility: hidden; pointer-events: none; }
.splash-glow {
  position: absolute; width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, var(--signal-glow) 0%, transparent 68%);
  animation: sp-breathe 3.4s ease-in-out infinite;
}
.splash-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 26px;
}
.splash-logo { display: flex; align-items: center; gap: 16px; }
.splash-mark { display: block; }
.splash-text {
  font: 800 26px/1 var(--font-body); letter-spacing: -0.02em; color: var(--white);
  opacity: 0; animation: sp-word 0.9s var(--ease-out) 0.5s forwards;
}
.splash-text .accent { color: var(--signal); }

/* animated network mark: lines draw, nodes pop, signal pulses */
.sp-line  { stroke-dasharray: 44; stroke-dashoffset: 44; animation: sp-draw 0.9s var(--ease-out) 0.15s forwards; }
.sp-line2 { animation-delay: 0.55s; }
.sp-node  { transform-box: fill-box; transform-origin: center; transform: scale(0); animation: sp-pop 0.5s var(--ease-spring) 0.7s forwards; }
.sp-node:nth-of-type(2) { animation-delay: 0.82s; }
.sp-node:nth-of-type(3) { animation-delay: 0.94s; }
.sp-signal {
  transform-box: fill-box; transform-origin: center; transform: scale(0);
  animation: sp-pop 0.5s var(--ease-spring) 1.05s forwards, sp-glow 1.9s ease-in-out 1.6s infinite;
}
.sp-halo { transform-box: fill-box; transform-origin: center; animation: sp-halo 2.4s ease-in-out 1.2s infinite; }

.splash-bar {
  width: 168px; height: 2px; background: var(--ghost);
  border-radius: 2px; overflow: hidden;
  opacity: 0; animation: sp-word 0.6s ease 0.35s forwards;
}
.splash-fill {
  width: 0; height: 100%; border-radius: 2px;
  background: linear-gradient(90deg, var(--signal), #ff8a5c);
  box-shadow: 0 0 12px rgba(255, 92, 31, 0.6);
  animation: splashLoad 1.15s cubic-bezier(.4,0,.2,1) 0.4s forwards;
}
.splash-label {
  font: 500 10px/1 var(--font-mono); letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--muted); opacity: 0; animation: sp-word 0.8s ease 0.72s forwards;
}

@keyframes sp-draw    { to { stroke-dashoffset: 0; } }
@keyframes sp-pop     { 0% { transform: scale(0); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
@keyframes sp-word    { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes sp-glow    { 0%, 100% { filter: drop-shadow(0 0 3px rgba(255,92,31,0.5)); } 50% { filter: drop-shadow(0 0 12px rgba(255,92,31,0.95)); } }
@keyframes sp-halo    { 0%, 100% { transform: scale(1); opacity: 0.14; } 50% { transform: scale(1.35); opacity: 0.30; } }
@keyframes sp-breathe { 0%, 100% { opacity: 0.5; transform: scale(0.92); } 50% { opacity: 1; transform: scale(1.08); } }
@keyframes splashLoad { to { width: 100%; } }

/* ============ CUSTOM CURSOR ============ */
.cursor-dot, .cursor-ring {
  position: fixed; top: -100px; left: -100px;
  pointer-events: none; z-index: 10000;
  border-radius: 50%;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--signal);
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 32px; height: 32px;
  border: 1.5px solid rgba(255, 92, 31, 0.35);
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease-out), height 0.25s var(--ease-out), border-color 0.25s, background 0.25s;
}
.cursor-ring.cursor-hover {
  width: 48px; height: 48px;
  border-color: var(--signal);
  background: rgba(255, 92, 31, 0.06);
}
.has-custom-cursor { cursor: none; }
.has-custom-cursor a,
.has-custom-cursor button,
.has-custom-cursor [role="button"],
.has-custom-cursor input,
.has-custom-cursor select,
.has-custom-cursor textarea,
.has-custom-cursor summary { cursor: none; }

/* ============ 3D DEPTH ============ */
.stat-card, .role-card, .step, .testi-card {
  transition: transform 0.35s var(--ease-out), background 0.3s, box-shadow 0.35s;
  will-change: transform;
}
.stat-card:hover, .role-card:hover, .step:hover, .testi-card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 92, 31, 0.08);
}

/* ============ FOOTER CTA ============ */
.footer-cta-row {
  padding-bottom: 48px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--ghost);
}
.footer-cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.footer-cta-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 18px 20px;
  border-radius: 10px;
  text-decoration: none;
  font: 600 14px/1 var(--font-body);
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.3s, background 0.3s;
  position: relative; overflow: hidden;
}
.footer-cta-btn:hover { transform: translateY(-3px); }
.footer-cta-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.footer-cta-btn.fc-book {
  background: var(--signal); color: var(--bg);
  box-shadow: 0 4px 20px rgba(255, 92, 31, 0.3);
}
.footer-cta-btn.fc-book:hover { box-shadow: 0 8px 32px rgba(255, 92, 31, 0.45); }
.footer-cta-btn.fc-whatsapp {
  background: #25D366; color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
}
.footer-cta-btn.fc-whatsapp:hover { box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4); }
.footer-cta-btn.fc-email {
  background: var(--surface); color: var(--white);
  border: 1px solid var(--faint);
}
.footer-cta-btn.fc-email:hover {
  border-color: var(--signal); color: var(--signal);
  box-shadow: 0 8px 32px rgba(255, 92, 31, 0.15);
}
.footer-call-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; margin-top: 12px;
}
.footer-call-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 16px;
  border-radius: 8px;
  text-decoration: none;
  font: 500 13px/1 var(--font-mono);
  letter-spacing: 0.05em;
  color: var(--muted);
  border: 1px solid var(--ghost);
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s, transform 0.25s var(--ease-out);
}
.footer-call-btn:hover {
  border-color: var(--signal); color: var(--signal);
  transform: translateY(-2px);
}
.footer-call-btn svg { width: 16px; height: 16px; flex-shrink: 0; }

@media (max-width: 900px) {
  .footer-cta-grid { grid-template-columns: 1fr 1fr; }
  .cursor-dot, .cursor-ring { display: none; }
}
@media (max-width: 600px) {
  .footer-cta-grid { grid-template-columns: 1fr; }
  .footer-call-row { grid-template-columns: 1fr; }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .marquee-track { animation: none; }
  .scroll-cue-line { animation: none; }
  .splash { display: none; }
  .cursor-dot, .cursor-ring { display: none; }
}
