/* Prometix — fire-bringer brand system (dark) */
:root {
  --white: #141414;
  --pure-white: #ffffff;
  --bone: #0e0e0e;
  --bone-2: #1c1c1c;
  --black: #0a0a0a;
  --black-2: #050505;
  --ink: #f3efe8;
  --orange: #fc3f1e;
  --orange-2: #ff4e30;
  --orange-glow: #ff6a3d;
  --muted: #8a8378;
  --muted-dark: #a59c8e;
  --line: rgba(255,255,255,0.10);
  --line-dark: rgba(255,255,255,0.10);

  --font-display: 'Space Grotesk', 'Halvar Breitschrift', -apple-system, system-ui, sans-serif;
  --font-body: 'Inter', 'Suisse Intl', -apple-system, system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { background: var(--black-2); color: var(--ink); font-family: var(--font-body); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body { font-size: 16px; line-height: 1.5; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }
img { display: block; max-width: 100%; }

::selection { background: var(--orange); color: white; }

.font-display { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.02em; line-height: 0.95; }
.font-mono { font-family: var(--font-mono); font-feature-settings: 'tnum'; }
.uppercase { text-transform: uppercase; letter-spacing: 0.08em; }

/* ---------- LAYOUT ---------- */
.container { width: 100%; max-width: 1440px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* ---------- HEADER ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
  background: rgba(10,10,10,0);
  backdrop-filter: saturate(140%) blur(0px);
  -webkit-backdrop-filter: saturate(140%) blur(0px);
  transition: background 400ms ease, backdrop-filter 400ms ease, -webkit-backdrop-filter 400ms ease;
}
.site-header::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: 100%;
  height: 24px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 400ms ease;
  background: linear-gradient(to bottom, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0) 100%);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
          backdrop-filter: saturate(140%) blur(16px);
  /* fade the bottom edge of the blur band so there's no hard line */
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, transparent 100%);
          mask-image: linear-gradient(to bottom, #000 0%, transparent 100%);
}
.site-header.scrolled {
  background: rgba(10,10,10,0.78);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
}
.site-header.dark.scrolled {
  background: rgba(14,14,14,0.78);
}
.site-header.scrolled::after { opacity: 1; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img { height: 44px; width: auto; display: block; }
.brand-mark { width: 44px; height: 44px; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  position: relative;
  padding: 10px 12px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 180ms ease, color 180ms ease;
  white-space: nowrap;
}
.nav-link:hover { background: rgba(255,255,255,0.06); }
.dark .nav-link { color: rgba(255,255,255,0.85); }
.dark .nav-link:hover { background: rgba(255,255,255,0.08); color: white; }

.nav-link .chev { width: 10px; height: 10px; opacity: 0.6; transition: transform 200ms; }
.nav-link.open .chev { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 10px); left: 0;
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: 18px;
  padding: 8px;
  min-width: 320px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.18), 0 8px 16px -8px rgba(0,0,0,0.08);
  opacity: 0; transform: translateY(-6px); pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}
.nav-item.open .dropdown { opacity: 1; transform: translateY(0); pointer-events: all; }
.nav-item { position: relative; }
.dropdown-item { display: flex; flex-direction: column; gap: 2px; padding: 12px 14px; border-radius: 12px; transition: background 150ms; }
.dropdown-item:hover { background: var(--bone); }
.dropdown-item .dt { font-weight: 600; font-size: 14px; }
.dropdown-item .dd { font-size: 12px; color: var(--muted); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px; border-radius: 999px;
  font-weight: 600; font-size: 14px;
  transition: transform 200ms ease, background 200ms ease, color 200ms ease, box-shadow 200ms ease;
  white-space: nowrap;
}
.btn-primary { background: var(--orange); color: white; }
.btn-primary:hover { background: #e6371a; transform: translateY(-1px); box-shadow: 0 10px 30px -10px rgba(252,63,30,0.6); }
.dark .btn-primary { background: var(--orange-2); }
.btn-ghost { background: transparent; border: 1px solid var(--line-dark); color: var(--ink); }
.dark .btn-ghost { border-color: var(--line-dark); color: white; }
.btn-ghost:hover { background: rgba(255,255,255,0.06); }
.dark .btn-ghost:hover { background: rgba(255,255,255,0.06); }

.btn-arrow { width: 16px; height: 16px; transition: transform 200ms; }
.btn:hover .btn-arrow { transform: translate(2px,-2px); }

.menu-toggle { display: none; }
@media (max-width: 1240px) {
  /* tighten nav for 13-15" laptops before collapsing */
  .nav-links.desk { gap: 0; }
  .nav-links.desk .nav-link { padding: 10px 9px; font-size: 13px; letter-spacing: -0.005em; }
  .nav-inner { gap: 14px; }
  .brand img { height: 38px; }
  .header-cta { padding: 10px 14px !important; font-size: 13px; }
}
@media (max-width: 1080px) {
  .nav-links.desk { display: none; }
  .menu-toggle { display: inline-flex; align-items:center; justify-content:center; width:44px; height:44px; border-radius:999px; border:1px solid var(--line); }
}
@media (max-width: 560px) {
  .header-cta { padding: 10px 14px !important; }
  .header-cta-label { display: none; }
  .header-cta .btn-arrow { margin: 0; }
  .dark .menu-toggle { border-color: var(--line-dark); }
}

.mobile-menu {
  position: fixed; inset: 0; z-index: 95;
  background: var(--bone);
  padding: 90px 24px 40px;
  display: flex; flex-direction: column; gap: 4px;
  transform: translateY(-100%);
  transition: transform 380ms cubic-bezier(.7,0,.2,1);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu .nav-link { font-size: 22px; padding: 16px 12px; border-bottom: 1px solid var(--line); border-radius: 0; justify-content: space-between; }
.mobile-menu .submenu { padding-left: 16px; }
.mobile-menu .submenu .nav-link { font-size: 16px; opacity: 0.8; }
.mobile-menu .btn { margin-top: 24px; align-self: flex-start; padding: 16px 28px; font-size: 16px; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 110px 0 100px;
  background: var(--black);
  color: white;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 75%);
  pointer-events: none;
}
.hero-ember {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
}

.hero-glow {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255,78,48,0.55), rgba(255,78,48,0.15) 40%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  animation: pulse 6s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.08); opacity: 1; }
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
}
.hero-tag .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange-2); box-shadow: 0 0 12px var(--orange-2); animation: blink 1.6s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.5;} }

.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(44px, 6.4vw, 112px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 22px 0 20px;
}
.hero-title .ember-word {
  position: relative;
  display: inline-block;
  background: linear-gradient(180deg, #ffb88c 0%, #ff6a3d 35%, #fc3f1e 70%, #b81f00 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  text-shadow: 0 0 80px rgba(255,78,48,0.4);
}
.hero-title .ember-word::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0.05em; height: 0.04em;
  background: linear-gradient(90deg, transparent, var(--orange-2), transparent);
  filter: blur(2px);
}
.hero-sub {
  max-width: 460px;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  margin-bottom: 28px;
}
.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-cta-row .btn { padding: 14px 22px; font-size: 14px; }

.hero-body {
  display: flex;
  align-items: flex-start;
  gap: clamp(28px, 5vw, 72px);
  flex-wrap: wrap;
}
.hero-body-main { flex: 1 1 420px; min-width: 0; }
.hero-stats {
  list-style: none;
  margin: 4px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 28px;
  text-align: left;
  flex: 0 0 auto;
  min-width: 340px;
}
.hero-stats li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  line-height: 1.4;
}
.hero-stats .num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--orange-2);
  min-width: 56px;
}
.hero-stats .lbl { font-weight: 500; }
@media (max-width: 700px) {
  .hero-stats { padding-top: 14px; min-width: 0; width: 100%; gap: 14px 20px; }
}

/* Prometheus Growth Totem — single vertical axis: arrow → flame → sprout */
/* Prometheus image — pinned right side of hero */
/* Prometheus image — confined to right half of hero so it never overlaps text */
.prom-image {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(360px, 50vw, 740px);
  height: auto;
  max-height: 78vh;
  object-fit: contain;
  object-position: right center;
  pointer-events: none;
  z-index: 1;
  filter: drop-shadow(0 0 60px rgba(255,106,61,0.45)) drop-shadow(0 0 20px rgba(255,138,79,0.35));
  animation: prom-breathe 7s ease-in-out infinite;
  user-select: none;
}
@keyframes prom-breathe {
  0%,100% { transform: translateY(-50%) scale(1); }
  50%     { transform: translateY(calc(-50% - 8px)) scale(1.005); }
}
@media (max-width: 1280px) {
  .prom-image { width: clamp(260px, 34vw, 480px); opacity: 0.85; }
}
@media (max-width: 1024px) {
  .prom-image { width: clamp(220px, 30vw, 380px); opacity: 0.45; }
}
@media (max-width: 700px) {
  .prom-image { display: none; }
}

/* keep hero text from running under the figure */
.hero .container { max-width: min(1440px, calc(100vw - clamp(360px, 50vw, 740px) - 80px)); margin-left: max(32px, calc((100vw - 1440px) / 2)); margin-right: 0; }
@media (max-width: 1280px) { .hero .container { max-width: calc(100vw - clamp(260px, 34vw, 480px) - 60px); } }
@media (max-width: 1024px) { .hero .container { max-width: calc(100vw - clamp(220px, 30vw, 380px) - 40px); } }
@media (max-width: 700px)  { .hero .container { max-width: 100%; margin: 0 auto; } }

/* ---------- TICKER ---------- */
.ticker-band {
  position: relative;
  background: var(--orange);
  color: white;
  padding: 26px 0;
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.ticker-track {
  display: flex; gap: 60px;
  animation: marquee 32s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.ticker-band:hover .ticker-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-item {
  display: inline-flex; align-items: baseline; gap: 12px;
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 56px);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.ticker-item .num { font-size: 1.1em; }
.ticker-item .lbl { font-size: 0.45em; font-family: var(--font-body); font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.85; }
.ticker-sep { width: 12px; height: 12px; align-self: center; transform: rotate(45deg); background: rgba(255,255,255,0.85); }

/* ---------- SECTIONS ---------- */
.section { padding: 120px 0; position: relative; }
@media (max-width: 768px) { .section { padding: 80px 0; } }
.section.dark { background: var(--black); color: white; }
.section { color: var(--ink); }
.section.dark .section-eyebrow { color: var(--orange-2); }
.section.dark .section-title small { color: rgba(255,255,255,0.5); }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 22px;
}
.section-eyebrow .num { padding: 4px 8px; background: var(--orange); color: white; border-radius: 4px; font-weight: 600; }
.section-eyebrow::before { content: ''; width: 28px; height: 1px; background: currentColor; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 78px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin-bottom: 28px;
  text-wrap: balance;
}
.section-title small { display: block; color: var(--muted); font-size: 0.36em; font-weight: 500; letter-spacing: 0; line-height: 1.5; margin-top: 18px; max-width: 720px; }

.section-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 56px; flex-wrap: wrap; }

/* ---------- MANIFESTO BLOCK ---------- */
.manifesto {
  background: var(--bone);
  padding: 140px 0;
  position: relative;
}
.manifesto::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: -140px;
  height: 140px;
  background: linear-gradient(to bottom, transparent 0%, var(--bone) 100%);
  pointer-events: none;
  z-index: 1;
}
  position: relative;
  overflow: hidden;
}
.manifesto-bg-orb {
  position: absolute; right: -200px; top: -100px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(252,63,30,0.10), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.manifesto-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: start; }
@media (max-width: 900px) { .manifesto-grid { grid-template-columns: 1fr; gap: 40px; } }
.manifesto-lede {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 500;
}
.manifesto-lede em {
  font-style: normal;
  background: linear-gradient(180deg, transparent 60%, rgba(252,63,30,0.18) 60%);
  padding: 0 4px;
}
.manifesto-lede .accent { color: var(--orange); font-style: normal; font-weight: 600; }
.manifesto-bullets {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.manifesto-bullets li {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.35;
  letter-spacing: -0.015em;
  padding-left: 28px;
  position: relative;
  color: var(--ink);
}
.manifesto-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 2px;
  background: var(--orange);
}
.manifesto-lede-tail { margin-top: 24px; }
.manifesto-side { padding-top: 16px; border-top: 1px solid var(--line); }
.manifesto-side h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.manifesto-side p { font-size: 16px; line-height: 1.6; color: rgba(255,255,255,0.78); margin-bottom: 18px; }
/* Pillars — index card layout, richer hierarchy */
.manifesto-pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 96px; }
.pillar {
  position: relative;
  padding: 36px 32px 32px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line-dark);
  border-radius: 24px;
  display: flex; flex-direction: column;
  min-height: 320px;
  transition: transform 350ms cubic-bezier(.2,.8,.2,1), border-color 250ms, box-shadow 350ms, background 250ms;
  overflow: hidden;
}
.pillar:hover { transform: translateY(-6px); border-color: var(--orange); box-shadow: 0 26px 50px -28px rgba(252,63,30,0.55); background: rgba(255,255,255,0.05); }
.pillar h3, .pillar p { color: var(--ink); }
.pillar p { color: rgba(255,255,255,0.65); }
.pillar .glyph { background: linear-gradient(180deg, rgba(255,138,79,0.18), rgba(252,63,30,0.08)); border-color: rgba(252,63,30,0.3); }
.pillar .footer { border-top-color: var(--line-dark); }
.pillar::before {
  content: ''; position: absolute; left: 32px; right: 32px; top: 0; height: 2px;
  background: linear-gradient(90deg, var(--orange), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 500ms cubic-bezier(.2,.8,.2,1);
}
.pillar:hover::before { transform: scaleX(1); }
.pillar .glyph {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(180deg, #fff5ec, #ffd9c0);
  border: 1px solid rgba(252,63,30,0.18);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
  color: var(--orange);
  flex-shrink: 0;
}
.pillar .num { font-family: var(--font-mono); font-size: 11px; color: var(--orange); margin-bottom: 14px; letter-spacing: 0.12em; text-transform: uppercase; }
.pillar h3 { font-family: var(--font-display); font-size: 26px; font-weight: 600; margin-bottom: 12px; letter-spacing: -0.015em; line-height: 1.05; }
.pillar p { font-size: 15px; color: var(--muted); line-height: 1.55; margin-bottom: 18px; }
.pillar .footer {
  margin-top: auto;
  display: flex; align-items: center; gap: 10px;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted);
}
.pillar .footer .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
@media (max-width: 900px) { .manifesto-pillars { grid-template-columns: 1fr; gap: 12px; } .pillar { min-height: auto; } }

/* ---------- BENTO ---------- */
.tier-label {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.tier-label .tier-num {
  padding: 5px 10px;
  background: var(--orange);
  color: white;
  border-radius: 4px;
  font-weight: 600;
}
.tier-label .tier-name { color: var(--ink); font-weight: 500; }
.tier-label .tier-line { flex: 1; height: 1px; background: var(--line-dark); }

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(140px, auto);
  gap: 18px;
}
.bento-card {
  position: relative;
  border-radius: 28px;
  padding: 32px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line-dark);
  transition: transform 400ms cubic-bezier(.2,.8,.2,1), box-shadow 400ms;
  display: flex; flex-direction: column;
  min-height: 260px;
}
.bento-card { color: var(--ink); }
.bento-card:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -30px rgba(0,0,0,0.6); border-color: rgba(255,106,61,0.4); }
.bento-card.dark { background: var(--black); color: white; border-color: var(--line-dark); }
.bento-card.orange { background: var(--orange); color: white; border-color: transparent; }

.bento .b-large { grid-column: span 7; grid-row: span 2; min-height: 420px; }
.bento .b-tall { grid-column: span 5; grid-row: span 2; min-height: 420px; }
.bento .b-wide { grid-column: span 8; }
.bento .b-square { grid-column: span 4; }
.bento .b-half { grid-column: span 6; }
.bento .b-full { grid-column: span 12; }
@media (max-width: 900px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento .b-large, .bento .b-tall, .bento .b-wide, .bento .b-square, .bento .b-half, .bento .b-full { grid-column: span 2; }
}

/* services row — supporting/auxiliary services */
.services-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 1000px) { .services-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  { .services-row { grid-template-columns: 1fr; } }
.service-card {
  position: relative;
  border-radius: 22px;
  padding: 28px 28px 64px;
  background: var(--white);
  border: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 240px;
  color: var(--ink);
  transition: transform 400ms cubic-bezier(.2,.8,.2,1), border-color 250ms ease, box-shadow 400ms;
  overflow: hidden;
}
.service-card:hover { transform: translateY(-3px); border-color: rgba(255,106,61,0.35); box-shadow: 0 22px 50px -30px rgba(0,0,0,0.6); }
.service-card .s-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--orange-2);
  font-weight: 600;
}
.service-card .s-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.service-card h4 {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  font-weight: 600;
  margin-bottom: 4px;
}
.service-card p {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.65);
}
.service-card .s-arrow {
  position: absolute;
  right: 22px; bottom: 22px;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line-dark);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: transform 250ms ease, background 250ms ease, color 250ms ease, border-color 250ms ease;
}
.service-card .s-arrow svg { width: 14px; height: 14px; }
.service-card:hover .s-arrow {
  transform: translate(3px, -3px);
  background: var(--orange);
  color: white;
  border-color: var(--orange);
}

.bento-card h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 2.6vw, 42px);
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin-bottom: 14px;
}
.bento-card .lede { font-size: 15px; line-height: 1.5; opacity: 0.78; max-width: 480px; }
.bento-card .b-num { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; opacity: 0.55; text-transform: uppercase; margin-bottom: auto; }
.bento-card ul { margin-top: 18px; display: flex; flex-direction: column; gap: 8px; }
.bento-card ul li { font-size: 14px; opacity: 0.85; padding-left: 18px; position: relative; }
.bento-card ul li::before { content: ''; position: absolute; left: 0; top: 9px; width: 8px; height: 1px; background: currentColor; opacity: 0.5; }
.bento-card .arrow {
  position: absolute; right: 24px; bottom: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--orange); color: white;
  display: flex; align-items: center; justify-content: center;
  transition: transform 250ms ease, background 250ms ease;
}
.bento-card.dark .arrow { background: var(--orange-2); }
.bento-card.orange .arrow { background: white; color: var(--orange); }
.bento-card:hover .arrow { transform: translate(4px,-4px); }
.bento-card.orange:hover .arrow { transform: translate(4px,-4px) rotate(-12deg); }

.bento-card.dark::after,
.bento-card.orange::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 110%, rgba(255,255,255,0.10), transparent 60%);
  pointer-events: none;
}

/* visualizations inside bento */
.viz-flame {
  position: absolute; bottom: -50px; right: -20px;
  width: 240px; height: 240px;
  background: radial-gradient(circle at 50% 50%, var(--orange-glow), var(--orange) 35%, transparent 70%);
  filter: blur(20px); opacity: 0.7;
  pointer-events: none;
}

.viz-orbits { position: absolute; right: -80px; bottom: -80px; width: 360px; height: 360px; pointer-events: none; opacity: 0.55; }
.viz-orbits div {
  position: absolute; inset: 0; border: 1px solid currentColor; border-radius: 50%;
  animation: spin 30s linear infinite;
}
.viz-orbits div:nth-child(2) { inset: 30px; animation-duration: 24s; animation-direction: reverse; }
.viz-orbits div:nth-child(3) { inset: 60px; animation-duration: 18s; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.section.dark .faq-list { border-color: var(--line-dark); }
.faq-item { border-bottom: 1px solid var(--line); }
.section.dark .faq-item { border-color: var(--line-dark); }
.faq-q {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 28px 0;
  font-family: var(--font-display);
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: color 200ms;
}
@media (max-width: 600px) { .faq-q { gap: 14px; padding: 20px 0; font-size: 16px; } .faq-q .ico { width: 32px; height: 32px; } }
.faq-q:hover { color: var(--orange); }
.faq-q .ico {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid currentColor;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 200ms, color 200ms, transform 300ms;
}
.faq-item.open .ico { background: var(--orange); color: white; border-color: var(--orange); transform: rotate(45deg); }
.faq-a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 350ms cubic-bezier(.7,0,.2,1);
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; min-height: 0; }
.faq-a-inner { padding-bottom: 28px; }
.faq-a-inner > * { max-width: 760px; line-height: 1.6; opacity: 0.78; font-size: 16px; }
.faq-a-inner > * + * { margin-top: 10px; }
.faq-a p { line-height: 1.6; }
.faq-bullets { list-style: none; padding-left: 0; display: grid; gap: 6px; margin: 0; }
.faq-bullets li { position: relative; padding-left: 18px; line-height: 1.55; }
.faq-bullets li::before { content: '•'; position: absolute; left: 0; top: 0; color: var(--orange); font-weight: 700; }
.section.dark .faq-bullets li::before { color: var(--orange-2); }

/* ---------- FOUNDERS ---------- */
.founders { padding: 140px 0; background: var(--black); color: white; position: relative; overflow: hidden; }
.founders-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 60px; }
@media (max-width: 900px) { .founders-grid { grid-template-columns: 1fr; } }
.founder-card {
  position: relative;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line-dark);
  border-radius: 28px;
  padding: 32px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 28px;
  overflow: hidden;
  transition: border-color 300ms;
}
.founder-card:hover { border-color: rgba(255,78,48,0.5); }
.founder-photo {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 18px;
  overflow: hidden;
  background: #2a2a2a;
}
.founder-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms cubic-bezier(.2,.8,.2,1), filter 400ms; filter: grayscale(0.2) contrast(1.05); }
.founder-card:hover .founder-photo img { transform: scale(1.05); filter: grayscale(0) contrast(1.1); }
.founder-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.65));
}
.founder-tag-overlay {
  position: absolute; left: 18px; bottom: 18px; z-index: 2;
  display: flex; gap: 8px; flex-wrap: wrap;
}
.founder-tag {
  padding: 6px 12px; border-radius: 999px;
  background: rgba(255,255,255,0.16);
  backdrop-filter: blur(10px);
  font-size: 11px; letter-spacing: 0.05em; font-family: var(--font-mono);
}
.founder-name {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.founder-role { font-size: 14px; color: var(--orange-2); margin-bottom: 18px; font-family: var(--font-mono); letter-spacing: 0.06em; text-transform: uppercase; }
.founder-bio { font-size: 15px; line-height: 1.55; color: rgba(255,255,255,0.78); margin-bottom: 18px; }
.founder-bio p { margin-bottom: 10px; }
.founder-meta { display: flex; gap: 16px; flex-wrap: wrap; padding-top: 16px; border-top: 1px solid var(--line-dark); font-family: var(--font-mono); font-size: 12px; color: rgba(255,255,255,0.6); }
.founder-meta a:hover { color: var(--orange-2); }

/* ---------- PARTNERS ---------- */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line-dark);
}
@media (max-width: 1024px) { .partners-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 600px) { .partners-grid { grid-template-columns: repeat(2,1fr); } }
.partner-cell {
  aspect-ratio: 5/3;
  display: flex; align-items: center; justify-content: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  opacity: 0.55;
  transition: opacity 250ms, color 250ms, background 250ms;
  text-align: center;
  padding: 12px;
}
.partner-cell:hover { opacity: 1; color: var(--orange); background: var(--bone); }

/* ---------- TESTIMONIALS ---------- */
.testimonials-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
@media (max-width: 900px) { .testimonials-row { grid-template-columns: 1fr; } }
.testimonial {
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: 24px;
  padding: 32px;
  display: flex; flex-direction: column;
  gap: 20px;
  transition: transform 400ms, box-shadow 400ms;
}
.testimonial:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -30px rgba(0,0,0,0.15); }
.testimonial .quote-mark {
  font-family: var(--font-display);
  font-size: 64px; line-height: 0.5;
  color: var(--orange);
  height: 22px;
}
.testimonial p { font-size: 17px; line-height: 1.5; flex: 1; }
.testimonial .who { display: flex; align-items: center; gap: 14px; padding-top: 18px; border-top: 1px solid var(--line); }
.testimonial .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #b81f00);
  color: white; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600; font-size: 16px;
  flex-shrink: 0;
}
.testimonial .who-text strong { display: block; font-weight: 600; font-size: 14px; }
.testimonial .who-text span { font-size: 12px; color: var(--muted); }

/* ---------- FORM ---------- */
.lead-section {
  background: var(--black);
  color: white;
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.lead-glow {
  position: absolute; left: -200px; top: 50%; transform: translateY(-50%);
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,78,48,0.30), transparent 60%);
  filter: blur(50px);
  pointer-events: none;
}
.lead-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; position: relative; }
@media (max-width: 1000px) { .lead-grid { grid-template-columns: 1fr; gap: 40px; } }
.lead-form {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line-dark);
  border-radius: 28px;
  padding: 36px;
  backdrop-filter: blur(10px);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 8px; }
.field label .req { color: var(--orange-2); }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  color: white;
  font-size: 15px;
  transition: border-color 200ms, background 200ms;
}
.field textarea { min-height: 100px; resize: vertical; font-family: inherit; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--orange-2); background: rgba(255,78,48,0.06);
}
.field input.invalid, .field textarea.invalid { border-color: var(--orange); }
.checkbox-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
@media (max-width: 600px) { .checkbox-grid { grid-template-columns: 1fr; } }
.lead-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .lead-form-row { grid-template-columns: 1fr; gap: 0; } }
.check {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  cursor: pointer;
  transition: background 200ms, border-color 200ms;
  font-size: 14px;
}
.check:hover { background: rgba(255,255,255,0.08); }
.check.on { background: rgba(255,78,48,0.12); border-color: var(--orange-2); }
.check input { display: none; }
.check .box {
  width: 18px; height: 18px; border-radius: 5px; border: 1px solid var(--line-dark);
  display: flex; align-items: center; justify-content: center;
  transition: background 200ms, border-color 200ms;
  flex-shrink: 0;
}
.check.on .box { background: var(--orange-2); border-color: var(--orange-2); }
.check.on .box::after { content: '✓'; font-size: 12px; color: white; line-height: 1; }
.btn-submit {
  width: 100%;
  padding: 18px;
  background: var(--orange-2);
  color: white;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  margin-top: 12px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  transition: background 200ms, transform 200ms;
}
.btn-submit:hover { background: #ff6a3d; transform: translateY(-1px); }
.btn-submit:disabled { opacity: 0.55; cursor: not-allowed; }

.success-state {
  text-align: center; padding: 40px 20px;
}
.success-state .check-circle {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--orange-2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-size: 36px; color: white;
}
.success-state h3 { font-family: var(--font-display); font-size: 28px; margin-bottom: 12px; }
.success-state p { color: rgba(255,255,255,0.7); }

.lead-side h2 { font-family: var(--font-display); font-size: clamp(36px, 4.5vw, 64px); line-height: 1; letter-spacing: -0.025em; margin-bottom: 24px; }
.lead-side h2 em { font-style: normal; color: var(--orange-2); }
.lead-side p { font-size: 18px; line-height: 1.55; color: rgba(255,255,255,0.78); margin-bottom: 28px; }
.lead-meta-row { display: flex; flex-direction: column; gap: 16px; padding-top: 24px; border-top: 1px solid var(--line-dark); }
.lead-meta-row .row { display: flex; align-items: start; gap: 16px; }
.lead-meta-row .ico {
  width: 40px; height: 40px; border-radius: 12px;
  background: rgba(255,78,48,0.12); color: var(--orange-2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.lead-meta-row strong { display: block; font-weight: 600; font-size: 14px; margin-bottom: 2px; }
.lead-meta-row span { font-size: 13px; color: rgba(255,255,255,0.6); }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--black-2);
  color: white;
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}
.footer-flame {
  position: absolute; right: -80px; bottom: -80px; width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(255,78,48,0.20), transparent 60%);
  filter: blur(40px); pointer-events: none;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 48px; margin-bottom: 60px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { height: 30px; margin-bottom: 18px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.55; max-width: 320px; margin-bottom: 16px; }
.footer-cta { padding: 12px 18px; background: var(--orange-2); border-radius: 999px; font-size: 13px; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; }
.footer-col h5 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.85); }
.footer-col a:hover { color: var(--orange-2); }

.footer-socials { display: flex; gap: 8px; margin-top: 16px; }
.footer-socials a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line-dark);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 200ms, color 200ms, background 200ms;
}
.footer-socials a:hover { background: var(--orange-2); border-color: var(--orange-2); color: white; }

.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 30px; border-top: 1px solid var(--line-dark); flex-wrap: wrap; font-size: 12px; color: rgba(255,255,255,0.5); }

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 800ms cubic-bezier(.2,.8,.2,1), transform 800ms cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal-l { transform: translateX(-28px); }
.reveal-l.in { transform: none; }

/* ---------- FLOATING CTA ---------- */
.float-cta {
  position: fixed; right: 24px; bottom: 24px;
  z-index: 80;
  background: var(--orange);
  color: white;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 20px 50px -10px rgba(252,63,30,0.5);
  transform: translateY(120px);
  transition: transform 400ms cubic-bezier(.2,.8,.2,1);
}
.float-cta.show { transform: none; }
.float-cta:hover { background: #e6371a; }
@media (max-width: 600px) { .float-cta { right: 12px; bottom: 12px; padding: 12px 18px; font-size: 13px; } }

/* ---------- PAGE HEADERS (recruiting/edu) ---------- */
.page-hero {
  background: var(--black); color: white;
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 180px;
  background: linear-gradient(to bottom, transparent 0%, var(--black-2) 100%);
  pointer-events: none;
  z-index: 3;
}
@media (max-width: 768px) { .page-hero::after { height: 120px; } }
.page-hero h1 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(48px, 8vw, 112px); line-height: 0.92; letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.page-hero h1 .accent { color: var(--orange-2); }
.page-hero .lede { max-width: 720px; font-size: clamp(16px, 1.4vw, 20px); color: rgba(255,255,255,0.78); line-height: 1.55; }
.page-hero-glow { position: absolute; right: -100px; top: -100px; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(255,78,48,0.4), transparent 60%); filter: blur(40px); pointer-events: none; }

.crumbs { display: flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 28px; }
.crumbs a:hover { color: var(--orange-2); }
.crumbs .sep { opacity: 0.4; }

/* steps grid */
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
@media (max-width: 1000px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .steps { grid-template-columns: 1fr; } }
.step-card {
  background: var(--white); border: 1px solid var(--line-dark); border-radius: 24px;
  padding: 28px; min-height: 220px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform 300ms, box-shadow 300ms, border-color 300ms;
}
.step-card:hover { transform: translateY(-4px); border-color: var(--orange); box-shadow: 0 20px 40px -20px rgba(252,63,30,0.25); }
.step-num {
  font-family: var(--font-display); font-size: 48px; font-weight: 600;
  color: var(--orange); line-height: 1; letter-spacing: -0.04em;
}
.step-card h4 { font-family: var(--font-display); font-size: 22px; font-weight: 600; }
.step-card p { font-size: 14px; line-height: 1.5; color: var(--muted); }

/* program selector */
.prog-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.prog-tab {
  padding: 12px 20px; border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 14px; font-weight: 500;
  transition: all 200ms;
}
.prog-tab.active { background: var(--orange); color: white; border-color: var(--orange); }
.prog-tab:hover:not(.active) { background: var(--bone-2); }

.prog-detail { background: var(--white); border: 1px solid var(--line-dark); border-radius: 28px; padding: 48px; }
@media (max-width: 600px) { .prog-detail { padding: 24px 20px; border-radius: 20px; } }
@media (max-width: 420px) { .prog-detail { padding: 20px 16px; } .prog-detail .prog-meta { gap: 10px; } .prog-detail .prog-meta .pill { font-size: 12px; padding: 6px 12px; } }
.prog-detail .prog-title { font-family: var(--font-display); font-size: clamp(32px, 4vw, 56px); line-height: 1; letter-spacing: -0.025em; margin-bottom: 20px; }
.prog-detail .prog-meta { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 32px; }
.prog-detail .prog-meta .pill { padding: 8px 14px; border-radius: 999px; background: var(--bone); font-size: 13px; font-family: var(--font-mono); }
.prog-detail .prog-meta .pill strong { color: var(--orange); margin-left: 6px; }
.prog-detail .prog-lede { font-size: 18px; line-height: 1.55; margin-bottom: 32px; max-width: 760px; }
.prog-modules { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 32px; }
@media (max-width: 700px) { .prog-modules { grid-template-columns: 1fr; } }
.prog-module {
  display: flex; align-items: start; gap: 14px;
  padding: 18px; border-radius: 16px; background: var(--bone);
  transition: background 200ms;
}
.prog-module:hover { background: var(--bone-2); }
.prog-module .n { font-family: var(--font-mono); color: var(--orange); font-size: 12px; flex-shrink: 0; padding-top: 2px; }
.prog-module h5 { font-family: var(--font-display); font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.prog-module p { font-size: 13px; color: var(--muted); line-height: 1.45; }

/* shared mono section header within prog-detail */
.prog-mono-h { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }

/* RESULTS metric list */
.prog-results-block { margin-bottom: 32px; }
.prog-results { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; }
@media (max-width: 700px) { .prog-results { grid-template-columns: 1fr; } }
.prog-results li { display: flex; align-items: center; gap: 12px; font-size: 16px; line-height: 1.4; }
.prog-results .check {
  width: 26px; height: 26px; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(252,63,30,0.1);
  color: var(--orange);
  display: inline-flex; align-items: center; justify-content: center;
}

/* HIGHLIGHT callout */
.prog-highlight {
  display: flex; align-items: center; flex-wrap: wrap; gap: 16px;
  margin: 32px 0;
  padding: 22px 28px;
  background: var(--orange);
  color: white;
  border-radius: 18px;
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
@media (max-width: 600px) { .prog-highlight { padding: 18px 20px; gap: 10px; font-size: 17px; } .prog-highlight .arr { font-size: 1.2em; } }
.prog-highlight .lhs { opacity: 0.95; }
.prog-highlight .arr { font-size: 1.4em; opacity: 0.7; font-weight: 400; }
.prog-highlight .rhs { font-weight: 600; }

/* AUDIENCE cards */
.prog-audience-block { margin-bottom: 32px; }
.prog-audience { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 760px) { .prog-audience { grid-template-columns: 1fr; } }
.aud-card {
  position: relative;
  padding: 20px 22px;
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  background: var(--white);
  transition: border-color 200ms, transform 200ms;
}
.aud-card:hover { border-color: var(--orange); transform: translateY(-2px); }
.aud-card .aud-n { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; color: var(--orange); margin-bottom: 10px; }
.aud-card h5 { font-family: var(--font-display); font-size: 17px; font-weight: 600; line-height: 1.2; margin-bottom: 8px; letter-spacing: -0.01em; }
.aud-card p { font-size: 14px; color: var(--muted); line-height: 1.5; }
.aud-card p .arr { color: var(--orange); margin-right: 4px; }

/* AUDIENCE plain list (alt layout for programs without per-role takeaway) */
.prog-audience-lede { font-size: 16px; line-height: 1.55; margin-bottom: 16px; max-width: 760px; }
.prog-audience-list { list-style: none; display: grid; gap: 10px; margin-bottom: 4px; }
.prog-audience-list li { display: flex; gap: 12px; font-size: 15px; line-height: 1.55; padding: 14px 18px; background: var(--bone); border-radius: 12px; }
.prog-audience-list .bullet { color: var(--orange); font-weight: 700; flex-shrink: 0; }

/* EFFECTS — 3-column grouped block */
.prog-effects-block { margin-bottom: 32px; }
.prog-effects-lede { font-size: 16px; line-height: 1.55; margin-bottom: 16px; max-width: 760px; }
.prog-effects { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 900px) { .prog-effects { grid-template-columns: 1fr; } }
.effect-card {
  position: relative;
  padding: 22px 22px 20px;
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  background: var(--white);
  display: flex; flex-direction: column;
  transition: border-color 200ms, transform 200ms;
}
.effect-card:hover { border-color: var(--orange); transform: translateY(-2px); }
.effect-card .effect-n {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.effect-card h5 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.effect-card ul { list-style: none; display: grid; gap: 8px; }
.effect-card li { display: flex; gap: 10px; font-size: 14px; line-height: 1.5; color: var(--muted); }
.effect-card .bullet { color: var(--orange); font-weight: 700; flex-shrink: 0; }

/* module bullet variant */
.prog-modules.with-bullets { grid-template-columns: 1fr; gap: 10px; }
.prog-module-bullets { list-style: none; display: grid; gap: 6px; margin-top: 6px; }
.prog-module-bullets li { display: flex; gap: 8px; font-size: 13.5px; line-height: 1.5; color: var(--muted); }
.prog-module-bullets .bullet { color: var(--orange); font-weight: 700; flex-shrink: 0; }
.prog-modules.with-bullets .prog-module { align-items: flex-start; padding: 22px 24px; }
.prog-modules.with-bullets .prog-module h5 { font-size: 18px; margin-bottom: 8px; }

/* DOCUMENTS list */
.prog-documents-block {
  margin-bottom: 32px;
  padding: 24px 28px;
  border-left: 2px solid var(--orange);
  background: var(--bone);
  border-radius: 0 16px 16px 0;
}
.prog-documents-lede { font-size: 16px; line-height: 1.5; margin-bottom: 14px; font-weight: 500; }
.prog-documents { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px; }
@media (max-width: 700px) { .prog-documents { grid-template-columns: 1fr; } }
.prog-documents li { display: flex; gap: 10px; font-size: 14px; line-height: 1.5; color: var(--muted-dark, var(--muted)); }
.prog-documents .bullet { color: var(--orange); font-weight: 700; flex-shrink: 0; }

/* BUSINESS EFFECT — three column groups */
.prog-effect-block { margin-bottom: 32px; }
.prog-effect-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
@media (max-width: 900px) { .prog-effect-grid { grid-template-columns: 1fr; } }
.effect-col {
  padding: 22px 24px;
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  background: var(--bone);
}
.effect-col h5 {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-dark);
}
.effect-col ul { list-style: none; display: grid; gap: 8px; }
.effect-col li { font-size: 14px; line-height: 1.5; color: var(--ink); display: flex; gap: 10px; }
.effect-col .bullet { color: var(--orange); font-weight: 700; flex-shrink: 0; }

/* FORMAT details */
.prog-format-details {
  margin: 32px 0;
  padding: 28px 32px;
  background: var(--black);
  color: var(--ink);
  border-radius: 20px;
}
@media (max-width: 600px) { .prog-format-details { padding: 22px 20px; border-radius: 16px; } }
.prog-format-details .prog-mono-h { color: var(--orange-2); margin-bottom: 14px; }
.prog-format-headline {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin-bottom: 18px;
  color: white;
}
.prog-format-sub {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.7);
  margin-top: -10px;
  margin-bottom: 18px;
}
.prog-format-list { list-style: none; display: grid; gap: 8px; margin-bottom: 18px; }
.prog-format-list li { font-size: 15px; line-height: 1.5; color: rgba(255,255,255,0.82); display: flex; gap: 10px; }
.prog-format-list .dash { color: var(--orange-2); flex-shrink: 0; }
.prog-format-closer {
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
  font-style: italic;
}

/* big stat row */
.stat-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
@media (max-width: 768px) { .stat-row { grid-template-columns: repeat(2,1fr); } }
.stat {
  padding: 36px 28px;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: none; }
@media (max-width: 768px) { .stat:nth-child(2n) { border-right: none; } .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); } }
.stat .v { font-family: var(--font-display); font-size: clamp(40px, 4.5vw, 64px); line-height: 1; font-weight: 600; letter-spacing: -0.03em; color: var(--orange); }
.stat .l { font-size: 13px; color: var(--muted); margin-top: 8px; line-height: 1.4; }

/* parallax helper */
[data-parallax] { will-change: transform; transition: transform 60ms linear; }

/* mobile menu toggle icon */
.hamburger { width: 16px; height: 12px; position: relative; }
.hamburger span { position: absolute; left: 0; right: 0; height: 1.6px; background: currentColor; transition: transform 250ms, top 250ms, opacity 200ms; }
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { top: 100%; transform: translateY(-100%); }
.menu-toggle.open .hamburger span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.menu-toggle.open .hamburger span:nth-child(2) { opacity: 0; }
.menu-toggle.open .hamburger span:nth-child(3) { top: 50%; transform: translateY(-50%) rotate(-45deg); }

/* ---------- RECRUITING PROCESS ---------- */
.recruit-process .section-title small { color: rgba(255,255,255,0.6); }
.proc-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  margin-top: 8px;
}
@media (max-width: 1100px) { .proc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .proc-grid { grid-template-columns: 1fr; } }
.proc-card {
  background: #141414;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 22px;
  padding: 28px 26px 30px;
  display: flex; flex-direction: column; gap: 18px;
  transition: transform 300ms, border-color 300ms, box-shadow 300ms;
  min-height: 360px;
}
.proc-card:hover { transform: translateY(-4px); border-color: rgba(255,78,48,0.45); box-shadow: 0 22px 50px -28px rgba(252,63,30,0.4); }
.proc-num {
  font-family: var(--font-display);
  font-size: 64px; font-weight: 600; line-height: 0.9;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.92);
}
.proc-title {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
  margin: 4px 0 6px;
}
.proc-bullets { list-style: none; display: flex; flex-direction: column; gap: 18px; padding: 0; }
.proc-bullets li { display: flex; gap: 12px; align-items: flex-start; }
.proc-dash {
  flex-shrink: 0; margin-top: 9px;
  width: 14px; height: 2px; background: var(--orange-2); border-radius: 2px;
}
.proc-bullets strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px; font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}
.proc-bullets p {
  font-size: 13.5px; line-height: 1.5;
  color: rgba(255,255,255,0.62);
}

.proc-footbar {
  margin-top: 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 22px 28px;
  background: #141414;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
}
@media (max-width: 900px) {
  .proc-footbar { grid-template-columns: 1fr; gap: 14px; }
}
.proc-foot-left { display: flex; align-items: center; gap: 14px; }
.proc-shield {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--orange);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.proc-foot-text { font-size: 14.5px; color: rgba(255,255,255,0.92); font-weight: 500; }
.proc-foot-accent { color: var(--orange-2); font-weight: 600; }
.proc-foot-mid { font-size: 13.5px; color: rgba(255,255,255,0.55); text-align: center; }
@media (max-width: 900px) { .proc-foot-mid { text-align: left; } }
.proc-foot-right {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--orange-2);
  line-height: 1.35;
  text-align: right;
}
@media (max-width: 900px) { .proc-foot-right { text-align: left; } }

/* ---------- RECRUITING LEAD-FORM EXTRAS ---------- */
.lead-warn {
  margin-top: 22px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255,78,48,0.25);
  background: linear-gradient(180deg, rgba(255,78,48,0.10), rgba(255,78,48,0.04));
  display: flex; gap: 14px; align-items: flex-start;
}
.lead-warn .ico {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--orange-2); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.lead-warn p {
  font-size: 14px; line-height: 1.5; color: rgba(255,255,255,0.92);
}
.lead-warn p strong { display: block; color: #fff; font-weight: 600; margin-bottom: 2px; }
