/* ============================================================
   TURNKEY RECRUITING — Executive Search
   BRAND: Black + Red · Plus Jakarta Sans
   ============================================================ */

:root {
  /* Surfaces */
  --bg:           #FFFFFF;
  --bg-alt:       #FAFAFA;
  --surface:      #FFFFFF;
  --surface-2:    #F5F5F5;
  --surface-dark: #0A0A0A;
  --surface-dark-2: #171717;
  --surface-dark-3: #1F1F1F;

  /* Text */
  --text:         #0A0A0A;
  --text-soft:    #404040;
  --text-mute:    #737373;
  --text-faint:   #A3A3A3;
  --text-onDark:  #FFFFFF;
  --text-onDark-soft: rgba(255, 255, 255, 0.72);
  --text-onDark-mute: rgba(255, 255, 255, 0.55);

  /* Brand */
  --black:        #0A0A0A;
  --black-pure:   #000000;
  --red:          #DC2626;
  --red-d:        #991B1B;
  --red-l:        #EF4444;
  --red-bright:   #E11D27;

  /* Lines */
  --line:         rgba(10, 10, 10, 0.08);
  --line-2:       rgba(220, 38, 38, 0.20);
  --line-strong:  rgba(10, 10, 10, 0.18);
  --line-onDark:  rgba(255, 255, 255, 0.10);

  --shadow-card:    0 1px 2px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-elev:    0 4px 16px rgba(0, 0, 0, 0.08), 0 20px 60px rgba(0, 0, 0, 0.12);
  --shadow-feature: 0 4px 24px rgba(220, 38, 38, 0.20), 0 30px 80px rgba(0, 0, 0, 0.18);
  --shadow-red:     0 4px 18px rgba(220, 38, 38, 0.32);

  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: var(--red); color: #fff; }
a { color: inherit; text-decoration: none; transition: color 200ms ease; }
img { max-width: 100%; display: block; }

.site-shell { position: relative; min-height: 100vh; overflow: hidden; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ============================================================
   BACKGROUND
   ============================================================ */

.pulse-field {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
}
.pulse-field::before {
  content: '';
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(ellipse 1000px 700px at 95% -5%, rgba(220, 38, 38, 0.06), transparent 60%),
    radial-gradient(ellipse 700px 500px at 10% 100%, rgba(10, 10, 10, 0.04), transparent 60%),
    var(--bg);
}
.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(10, 10, 10, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(10, 10, 10, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 1400px 900px at 50% 10%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 1400px 900px at 50% 10%, black 30%, transparent 80%);
}

/* ============================================================
   TOPBAR
   ============================================================ */

.topbar {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.brand-lockup {
  display: inline-flex; align-items: center; gap: 12px;
}
.brand-mark { width: 42px; height: 32px; display: inline-block; }
.brand-mark svg { width: 100%; height: 100%; }
.brand-words { display: flex; flex-direction: column; align-items: flex-start; gap: 1px; }
.brand-name {
  font-family: var(--font-body);
  font-weight: 800; font-size: 17px;
  letter-spacing: 0.16em; color: var(--black);
  line-height: 1;
}
.brand-sub {
  font-family: var(--font-body);
  font-weight: 700; font-size: 9px;
  letter-spacing: 0.34em; color: var(--red);
  line-height: 1;
  position: relative;
  padding: 0 8px;
}
.brand-sub::before, .brand-sub::after {
  content: ''; position: absolute; top: 50%; width: 5px; height: 1px;
  background: var(--red); transform: translateY(-50%);
}
.brand-sub::before { left: 0; }
.brand-sub::after { right: 0; }

.desktop-nav {
  display: flex; align-items: center; gap: 36px;
}
.desktop-nav > a:not(.button) {
  font-size: 14px; font-weight: 600; color: var(--text-soft);
  position: relative;
  letter-spacing: -0.01em;
}
.desktop-nav > a:not(.button):hover { color: var(--black); }
.desktop-nav > a:not(.button)::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -8px;
  height: 2px; background: var(--red); opacity: 0;
  transition: opacity 200ms ease;
}
.desktop-nav > a:not(.button):hover::after { opacity: 1; }

@media (max-width: 920px) {
  .desktop-nav > a:not(.button) { display: none; }
}

/* ============================================================
   BUTTONS
   ============================================================ */

.button {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: 14px; font-weight: 700;
  padding: 14px 26px;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative; overflow: hidden;
  white-space: nowrap;
  letter-spacing: 0;
}
.button svg { width: 14px; height: 14px; }

.button-red {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.button-red:hover {
  background: var(--red-d);
  transform: translateY(-1px);
  box-shadow: var(--shadow-red);
}

.button-dark {
  background: var(--black);
  color: #fff;
  border-color: var(--black);
}
.button-dark:hover {
  background: var(--black-pure);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.button-ghost {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--line-strong);
}
.button-ghost:hover {
  background: var(--surface-2);
  border-color: var(--black);
}

.button-lg {
  font-size: 15px; padding: 16px 30px;
}

/* Alias kept for compatibility */
.button-gold { background: var(--red); color: #fff; border-color: var(--red); }
.button-gold:hover { background: var(--red-d); transform: translateY(-1px); box-shadow: var(--shadow-red); }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative; padding: 80px 0 60px;
  z-index: 1;
}
.hero-layout {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 60px; align-items: start;
}
@media (max-width: 980px) {
  .hero-layout { grid-template-columns: 1fr; }
}

.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
}
.status-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.18);
  animation: pulse-dot 2.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.7; }
}

h1 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(46px, 6.4vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 28px;
}
.grad-text {
  color: var(--red);
  font-style: normal;
}

.lede {
  font-size: 19px; line-height: 1.6;
  color: var(--text-soft);
  max-width: 620px;
  margin-bottom: 36px;
  font-weight: 400;
}
.lede strong { color: var(--black); font-weight: 700; }

.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 48px;
}

.fact-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}
@media (max-width: 700px) {
  .fact-row { grid-template-columns: repeat(2, 1fr); }
}
.fact-row > div { display: flex; flex-direction: column; gap: 4px; }
.fact-row strong {
  font-family: var(--font-body);
  font-size: 24px; font-weight: 800; color: var(--black);
  letter-spacing: -0.02em;
}
.fact-row span {
  font-size: 12px; color: var(--text-mute);
  letter-spacing: 0.04em;
  font-weight: 500;
}

.hero-note {
  font-size: 14px; color: var(--text-mute);
  line-height: 1.6;
  font-weight: 500;
}

/* Hero aside intro card — DARK */
.hero-aside { position: relative; }
.intro-card {
  position: relative;
  background: var(--black);
  color: #fff;
  border-radius: 8px;
  padding: 40px 36px;
  box-shadow: var(--shadow-elev);
  overflow: hidden;
}
.intro-card::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle at top right, rgba(220, 38, 38, 0.25), transparent 70%);
  pointer-events: none;
}
.intro-card-glow { display: none; }
.intro-eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--red-l); margin-bottom: 18px;
  position: relative;
}
.intro-headline {
  font-family: var(--font-body);
  font-size: 26px; font-weight: 700;
  line-height: 1.2; color: #fff;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
  position: relative;
}
.intro-body {
  font-size: 14.5px; color: var(--text-onDark-soft);
  line-height: 1.6; margin-bottom: 28px;
  position: relative;
}
.intro-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--red); color: #fff;
  padding: 14px 24px; border-radius: 4px;
  font-weight: 700; font-size: 14px;
  margin-bottom: 28px;
  transition: all 200ms ease;
  position: relative;
}
.intro-cta:hover {
  background: var(--red-d); transform: translateY(-1px);
  box-shadow: var(--shadow-red);
}
.intro-cta svg { width: 16px; height: 16px; }
.intro-meta {
  display: flex; flex-direction: column; gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--line-onDark);
  position: relative;
}
.intro-meta-row {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; color: var(--text-onDark-soft);
}
.intro-meta-row svg { width: 18px; height: 18px; color: var(--red-l); flex-shrink: 0; }

/* ============================================================
   TRUST STRIP
   ============================================================ */

.trust-strip {
  padding: 36px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative; z-index: 1;
}
.trust-inner {
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
  justify-content: center;
}
.trust-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text-mute);
}
.trust-items {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.trust-item {
  font-family: var(--font-body);
  font-size: 15px; font-weight: 600;
  color: var(--black);
  letter-spacing: -0.01em;
}
.trust-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--red);
}

/* ============================================================
   SECTIONS
   ============================================================ */

.section {
  padding: 100px 0;
  position: relative; z-index: 1;
}
.section-contrast {
  background: var(--black);
  color: #fff;
}
.section-contrast .kicker { color: var(--red-l); }
.section-pricing { background: var(--bg-alt); }
.section-promise { padding: 80px 0; }
.section-faq { background: var(--bg-alt); }
.section-cta { padding: 80px 0 120px; }

.section-head {
  max-width: 820px; margin: 0 auto 64px;
}
.section-head--center { text-align: center; }
.section-head h2 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(36px, 4.6vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--black);
  margin-bottom: 24px;
}
.section-contrast .section-head h2 { color: #fff; }
.section-head p {
  font-size: 17px; line-height: 1.6;
  color: var(--text-soft);
  font-weight: 400;
}
.section-contrast .section-head p { color: var(--text-onDark-soft); }

/* ============================================================
   CAPABILITY GRID
   ============================================================ */

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 820px) {
  .capability-grid { grid-template-columns: 1fr; }
}

.cap-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 36px 32px;
  transition: all 240ms ease;
  position: relative; overflow: hidden;
}
.cap-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 4px; height: 100%; background: var(--red);
  transform: scaleY(0); transform-origin: top;
  transition: transform 280ms ease;
}
.cap-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-elev);
  border-color: var(--black);
}
.cap-card:hover::before { transform: scaleY(1); }
.cap-icon { margin-bottom: 24px; }
.cap-icon svg { width: 48px; height: 48px; }
.cap-tag {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--red); margin-bottom: 14px;
}
.cap-card h3 {
  font-family: var(--font-body);
  font-size: 22px; font-weight: 700;
  line-height: 1.22; color: var(--black);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.cap-body {
  font-size: 15px; color: var(--text-soft);
  line-height: 1.6; margin-bottom: 18px;
}
.cap-list {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 6px;
}
.cap-list li {
  font-size: 13px; color: var(--text-mute);
  padding-left: 16px; position: relative;
  font-weight: 500;
}
.cap-list li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 6px; height: 6px; background: var(--red); border-radius: 50%;
}

/* ============================================================
   CONTRAST (dark section)
   ============================================================ */

.contrast-grid {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 32px; align-items: start;
}
@media (max-width: 820px) {
  .contrast-grid { grid-template-columns: 1fr; }
  .contrast-divider { display: none; }
}
.contrast-col { padding: 24px 0; }
.contrast-col ul {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 16px;
  margin-top: 20px;
}
.contrast-col li {
  font-size: 16px; line-height: 1.55;
  padding-left: 28px; position: relative;
}
.contrast-then li { color: var(--text-onDark-mute); }
.contrast-then li::before {
  content: '✕'; position: absolute; left: 0;
  color: var(--text-onDark-mute); font-size: 14px; font-weight: 600;
}
.contrast-now li { color: #fff; }
.contrast-now li::before {
  content: ''; position: absolute; left: 0; top: 10px;
  width: 14px; height: 2px; background: var(--red);
}
.contrast-divider {
  display: flex; justify-content: center;
}
.contrast-divider svg {
  width: 32px; height: 200px;
}

/* ============================================================
   PROCESS RAIL
   ============================================================ */

.process-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 920px) {
  .process-rail { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .process-rail { grid-template-columns: 1fr; }
}
.process-step { position: relative; padding-right: 16px; }
.step-marker {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 18px;
}
.step-marker span {
  font-family: var(--font-body);
  font-size: 36px; font-weight: 800;
  color: var(--red);
  letter-spacing: -0.02em; line-height: 1;
}
.step-line {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, var(--red), transparent);
}
.process-step h3 {
  font-family: var(--font-body);
  font-size: 22px; font-weight: 700;
  color: var(--black); margin-bottom: 12px;
  line-height: 1.22; letter-spacing: -0.02em;
}
.process-step > p {
  font-size: 14px; color: var(--text-soft);
  line-height: 1.6; margin-bottom: 12px;
}
.step-time {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--red);
}

/* ============================================================
   ENGAGEMENT TIERS
   ============================================================ */

.offer-grid-3 {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-bottom: 32px;
}
@media (max-width: 920px) {
  .offer-grid-3 { grid-template-columns: 1fr; }
}
.offer-tier {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 40px 32px;
  position: relative;
  transition: all 240ms ease;
}
.offer-tier:hover {
  box-shadow: var(--shadow-elev);
  transform: translateY(-2px);
  border-color: var(--text-mute);
}
.offer-tier--featured {
  background: var(--black);
  color: #fff;
  border: 2px solid var(--red);
  box-shadow: var(--shadow-feature);
}
.offer-tier--featured .tier-name { color: #fff; }
.offer-tier--featured .tier-fit { color: var(--text-onDark-soft); }
.offer-tier--featured .tier-pct { color: var(--red-l); }
.offer-tier--featured .tier-period { color: var(--text-onDark-mute); }
.offer-tier--featured .tier-price { border-color: var(--line-onDark); }
.offer-tier--featured .tier-features li { color: var(--text-onDark-soft); }
.tier-badge {
  position: absolute; top: -14px; left: 32px;
  background: var(--red); color: #fff;
  padding: 6px 16px; border-radius: 4px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
}
.tier-name {
  font-family: var(--font-body);
  font-size: 22px; font-weight: 700;
  color: var(--black); margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.tier-fit {
  font-size: 13px; color: var(--text-mute);
  margin-bottom: 24px; line-height: 1.5;
  font-weight: 500;
}
.tier-price {
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}
.tier-pct {
  font-family: var(--font-body);
  font-size: 40px; font-weight: 800;
  color: var(--black); display: block;
  line-height: 1.05; letter-spacing: -0.03em;
}
.tier-period {
  font-size: 13px; color: var(--text-mute);
  display: block; margin-top: 6px;
}
.tier-features {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.tier-features li {
  font-size: 14px; color: var(--text-soft);
  padding-left: 22px; position: relative;
  line-height: 1.5;
}
.tier-features li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 12px; height: 2px; background: var(--red);
}

.price-footnote {
  text-align: center; font-size: 14px;
  color: var(--text-mute);
  font-weight: 500;
}
.price-footnote a {
  color: var(--red); text-decoration: underline;
  text-underline-offset: 3px; font-weight: 600;
}

/* ============================================================
   PROMISE / GUARANTEE
   ============================================================ */

.promise-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 64px 56px;
  text-align: center;
  max-width: 920px; margin: 0 auto;
  box-shadow: var(--shadow-card);
  position: relative;
}
.promise-badge {
  width: 80px; height: 80px;
  margin: 0 auto 24px;
}
.promise-badge svg { width: 100%; height: 100%; }
.promise-card h2 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
  color: var(--black);
  margin-bottom: 20px;
  letter-spacing: -0.025em;
}
.promise-lede {
  font-size: 17px; color: var(--text-soft);
  line-height: 1.6;
  max-width: 720px; margin: 0 auto 40px;
}
.promise-pillars {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: left;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}
@media (max-width: 820px) {
  .promise-pillars { grid-template-columns: 1fr; }
}
.promise-pillar {
  display: flex; gap: 14px; align-items: flex-start;
}
.pillar-icon {
  flex-shrink: 0; width: 28px; height: 28px;
  border-radius: 4px; background: var(--red);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.pillar-icon svg { width: 18px; height: 18px; }
.promise-pillar h4 {
  font-size: 15px; font-weight: 700;
  color: var(--black); margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.promise-pillar p {
  font-size: 13px; color: var(--text-mute);
  line-height: 1.5; font-weight: 500;
}
.promise-footnote {
  font-size: 13px; color: var(--text-mute);
  line-height: 1.55; font-weight: 500;
  max-width: 640px; margin: 0 auto;
}

/* ============================================================
   CASE STUDIES / SYSTEM ROWS
   ============================================================ */

.systems-list {
  display: flex; flex-direction: column; gap: 24px;
}
.system-row {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 36px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 36px;
  transition: all 240ms ease;
  position: relative;
}
@media (max-width: 880px) {
  .system-row { grid-template-columns: 1fr; gap: 20px; }
}
.system-row:hover {
  border-color: var(--black);
  box-shadow: var(--shadow-card);
}
.system-meta { display: flex; flex-direction: column; gap: 8px; }
.system-num {
  font-family: var(--font-body);
  font-size: 64px; font-weight: 800;
  color: var(--red);
  line-height: 1; letter-spacing: -0.04em;
}
.system-tag {
  font-size: 12px; color: var(--text-mute);
  letter-spacing: 0.06em; font-weight: 500;
  text-transform: uppercase;
}
.system-revenue {
  font-family: var(--font-body);
  font-size: 18px; font-weight: 700;
  color: var(--black);
  margin-top: 4px; letter-spacing: -0.01em;
}
.system-body h3 {
  font-family: var(--font-body);
  font-size: 26px; font-weight: 700;
  color: var(--black); margin-bottom: 14px;
  line-height: 1.22; letter-spacing: -0.02em;
}
.system-body > p {
  font-size: 15px; color: var(--text-soft);
  line-height: 1.6; margin-bottom: 24px;
}
.ba-flow {
  display: grid;
  grid-template-columns: 1fr 32px 1fr 32px 1fr;
  gap: 0;
  align-items: stretch;
  background: var(--bg-alt);
  border-radius: 6px;
  padding: 20px;
  margin-bottom: 20px;
}
@media (max-width: 880px) {
  .ba-flow { grid-template-columns: 1fr; }
  .ba-arrow { display: none; }
}
.ba-step { padding: 8px 12px; }
.ba-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--red); display: block; margin-bottom: 6px;
}
.ba-step p {
  font-size: 13px; color: var(--text-soft); line-height: 1.5;
}
.ba-step strong { color: var(--black); font-weight: 700; }
.ba-arrow {
  display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 18px; font-weight: 700;
}
.system-stats {
  display: flex; gap: 32px; flex-wrap: wrap;
  padding-top: 20px; border-top: 1px solid var(--line);
}
.system-stats > div {
  display: flex; flex-direction: column; gap: 2px;
}
.system-stats strong {
  font-family: var(--font-body);
  font-size: 20px; font-weight: 800; color: var(--black);
  letter-spacing: -0.02em;
}
.system-stats span {
  font-size: 11px; color: var(--text-mute);
  letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 600;
}

/* ============================================================
   CTA BAND
   ============================================================ */

.cta-band {
  padding: 64px 0;
  background: var(--black);
  position: relative; z-index: 1;
  overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.18), transparent 70%);
  pointer-events: none;
}
.cta-band-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  position: relative;
}
.cta-band-copy h2 {
  font-family: var(--font-body);
  font-size: 32px; font-weight: 800;
  color: #fff; line-height: 1.18;
  margin-bottom: 8px;
  letter-spacing: -0.025em;
}
.cta-band-copy p {
  font-size: 16px; color: var(--text-onDark-soft);
  max-width: 600px;
}

/* ============================================================
   TEAM
   ============================================================ */

.section-founder { padding-top: 80px; }
.team-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 880px) {
  .team-grid { grid-template-columns: 1fr; }
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 40px 36px;
  transition: all 240ms ease;
}
.team-card:hover {
  border-color: var(--black);
  box-shadow: var(--shadow-elev);
}
.team-avatar { width: 96px; height: 96px; margin-bottom: 20px; }
.team-avatar svg { width: 100%; height: 100%; border-radius: 50%; }
.team-meta { margin-bottom: 20px; }
.team-meta h3 {
  font-family: var(--font-body);
  font-size: 28px; font-weight: 800;
  color: var(--black); margin-bottom: 4px;
  letter-spacing: -0.025em;
}
.team-role {
  font-size: 12px; color: var(--red);
  font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase;
}
.team-location {
  font-size: 13px; color: var(--text-mute);
  margin-top: 4px; font-weight: 500;
}
.team-bio {
  font-size: 14.5px; color: var(--text-soft);
  line-height: 1.65; margin-bottom: 14px;
}
.team-creds {
  display: flex; gap: 24px; flex-wrap: wrap;
  padding-top: 20px; margin-top: 8px;
  border-top: 1px solid var(--line);
}
.cred { display: flex; flex-direction: column; gap: 2px; }
.cred strong {
  font-family: var(--font-body);
  font-size: 16px; font-weight: 700; color: var(--black);
  letter-spacing: -0.01em;
}
.cred span {
  font-size: 11px; color: var(--text-mute);
  letter-spacing: 0.06em; font-weight: 500;
}

/* ============================================================
   FAQ
   ============================================================ */

.faq-list {
  max-width: 820px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 12px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  transition: all 200ms ease;
}
.faq-item:hover { border-color: var(--text-mute); }
.faq-item summary {
  list-style: none;
  padding: 22px 28px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 16px; font-weight: 700;
  color: var(--black);
  transition: all 200ms ease;
  letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  font-size: 22px; color: var(--red); font-weight: 400;
  transition: transform 240ms ease;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-item[open] { border-color: var(--red); }
.faq-answer {
  padding: 0 28px 24px;
}
.faq-answer p {
  font-size: 15px; color: var(--text-soft);
  line-height: 1.65;
}
.faq-answer em { color: var(--black); font-style: italic; }

/* ============================================================
   CTA SECTION (bottom)
   ============================================================ */

.cta-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 56px;
  box-shadow: var(--shadow-elev);
  position: relative; overflow: hidden;
}
.cta-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 4px; background: var(--red);
}
.cta-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 48px;
}
@media (max-width: 880px) {
  .cta-grid { grid-template-columns: 1fr; }
}
.cta-left h2 {
  font-family: var(--font-body);
  font-size: 36px; font-weight: 800;
  color: var(--black); margin-bottom: 18px;
  line-height: 1.15; letter-spacing: -0.025em;
}
.cta-lede {
  font-size: 16px; color: var(--text-soft);
  line-height: 1.6; margin-bottom: 24px;
}
.cta-list {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 32px;
}
.cta-list li {
  font-size: 14px; color: var(--text-soft);
  padding-left: 22px; position: relative;
  line-height: 1.5;
}
.cta-list li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 12px; height: 2px; background: var(--red);
}
.cta-button { margin-bottom: 14px; }
.cta-fineprint {
  font-size: 13px; color: var(--text-mute);
  font-weight: 500;
}
.cta-fineprint a {
  color: var(--red); font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cta-info-card {
  background: var(--black);
  color: #fff;
  border-radius: 8px;
  padding: 32px;
  height: 100%;
  position: relative; overflow: hidden;
}
.cta-info-card::before {
  content: ''; position: absolute; bottom: -40px; right: -40px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.2), transparent 70%);
}
.cta-info-card h3 {
  font-family: var(--font-body);
  font-size: 22px; font-weight: 700;
  color: #fff; margin-bottom: 18px;
  letter-spacing: -0.02em;
  position: relative;
}
.cta-info-list {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 14px;
  margin-bottom: 20px;
  position: relative;
}
.cta-info-list li {
  font-size: 14px; color: var(--text-onDark-soft);
  line-height: 1.5;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--line-onDark);
}
.cta-info-list li:last-child { border-bottom: none; padding-bottom: 0; }
.cta-info-list strong { color: #fff; font-weight: 700; }
.cta-info-note {
  font-size: 13px; color: var(--text-onDark-mute);
  line-height: 1.5; font-weight: 500;
  position: relative;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--black);
  color: #fff;
  padding: 72px 0 32px;
  position: relative; z-index: 1;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line-onDark);
}
@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-sub { color: var(--red); }
.footer-brand .brand-sub::before, .footer-brand .brand-sub::after { background: var(--red); }
.footer-brand p {
  font-size: 14px; color: var(--text-onDark-soft);
  line-height: 1.6; margin-top: 18px; max-width: 320px;
}
.foot-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--red); margin-bottom: 16px;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .footer-col span {
  font-size: 14px; color: var(--text-onDark-soft);
  line-height: 1.5;
  transition: color 200ms ease;
}
.footer-col a:hover { color: #fff; }
.footer-bar {
  display: flex; justify-content: space-between;
  padding-top: 32px;
  font-size: 12px; color: var(--text-onDark-mute);
  flex-wrap: wrap; gap: 12px;
}
.foot-status { display: inline-flex; align-items: center; gap: 8px; }

/* ============================================================
   REVEAL
   ============================================================ */

.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 800ms ease, transform 800ms ease;
}
.reveal.is-visible {
  opacity: 1; transform: translateY(0);
}
