/* ============================================================
   PITCHDRIVE — Editorial edition
   Alternating cream / dark / blue. Bold grotesque + serif italic.
   ============================================================ */

:root {
  --blue:      #2870E8;
  --blue-bright:#5B9BF5;
  --blue-cta:  #2870E8;
  --ink:       #08090C;
  --cream:     #EFEBE1;

  --sans: 'Sofia Sans', system-ui, -apple-system, sans-serif;
  --serif: 'Newsreader', Georgia, 'Times New Roman', serif;

  --container: 1600px;
  --pad: 56px;
  --r: 16px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: #08090C; }
body {
  font-family: var(--sans);
  background: #08090C; color: #F4F3EF;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  line-height: 1.5; overflow-x: hidden; position: relative;
}
/* one continuous dark backdrop behind every section */
body::before {
  content: ''; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(72% 48% at 86% -2%, rgba(40,112,232,0.18), transparent 60%),
    radial-gradient(64% 42% at 10% 40%, rgba(40,112,232,0.08), transparent 62%);
}
/* blue glow anchored to the very bottom of the page — fades up through footer + CTA with no clip seam */
body::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1300px; z-index: -1; pointer-events: none;
  background: radial-gradient(64% 100% at 50% 102%, rgba(40,112,232,0.5), rgba(40,112,232,0.18) 40%, transparent 70%);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--blue); color: #fff; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad); }

/* ---- theme tokens ---- */
/* every section shares one continuous dark backdrop (transparent, body shows through) */
.theme-dark, .theme-cream, .theme-blue {
  --bg: #08090C; --fg: #F4F3EF; --fg-2: #9aa0ad; --fg-3: #6a7080;
  --accent: #5B9BF5; --line: rgba(255,255,255,0.13); --line-2: rgba(255,255,255,0.22);
  --card: #111319; --card-2: #171A22;
  background: transparent;
  color: var(--fg);
}

/* ---- reveal ---- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ---- shared type ---- */
.sec { padding: clamp(44px, 5.5vw, 76px) 0; }
.quote-sec { padding-top: clamp(40px,5vw,64px); padding-bottom: clamp(40px,5vw,64px); }
.kicker {
  font-family: var(--sans); font-size: 13px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent); display: inline-block;
}
.serif-it { font-family: var(--sans); font-style: normal; font-weight: inherit; letter-spacing: inherit; color: var(--accent); }
.theme-dark .serif-it {
  background: linear-gradient(180deg, #fbfdff 0%, #c0cad8 26%, #8893a4 43%, #ffffff 50%, #aab5c4 58%, #6f7b8d 74%, #eef3f9 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent;
}
.theme-cream .serif-it { color: var(--blue); }
.theme-blue .serif-it { color: #fff; }

h1, h2 { font-weight: 800; letter-spacing: -0.035em; line-height: 0.96; text-wrap: balance; }
.display {
  font-size: clamp(44px, 6.4vw, 104px); font-weight: 800; letter-spacing: -0.04em; line-height: 0.92;
}
.h2 { font-size: clamp(36px, 5vw, 76px); letter-spacing: -0.035em; line-height: 0.95; }
.lead { font-size: clamp(18px, 1.7vw, 23px); color: var(--fg-2); line-height: 1.45; max-width: 54ch; }
.lead b, .lead strong { color: var(--fg); font-weight: 700; }

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 10px; cursor: pointer;
  font-family: var(--sans); font-weight: 700; font-size: 16px; line-height: 1;
  padding: 16px 26px; border-radius: 100px; border: 1.5px solid transparent;
  transition: transform .15s, background .15s, box-shadow .15s, color .15s, border-color .15s; white-space: nowrap;
}
.btn .arr { transition: transform .2s; font-weight: 800; }
.btn:hover .arr { transform: translateX(4px); }
.btn-primary { background: var(--blue-cta); color: #fff; box-shadow: 0 14px 34px -12px rgba(40,112,232,0.8); }
.btn-primary:hover { background: #2a61e0; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--fg); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-1px); }
.theme-blue .btn-primary { background: #fff; color: var(--blue-cta); box-shadow: 0 14px 34px -12px rgba(0,0,0,0.4); }
.theme-blue .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.55); }
.theme-blue .btn-ghost:hover { background: rgba(255,255,255,0.12); border-color:#fff; color:#fff; }

.link-arrow { font-weight: 700; color: var(--accent); display: inline-flex; align-items: center; gap: 8px; }
.link-arrow .arr { transition: transform .2s; }
.link-arrow:hover .arr { transform: translateX(5px); }

/* ============================================================ NAV */
.nav { position: sticky; top: 0; z-index: 50; background: transparent; }
.nav::before { content:''; position:absolute; inset:0; pointer-events:none; opacity:0; transition:opacity .3s;
  background: linear-gradient(180deg, rgba(8,9,12,0.9), rgba(8,9,12,0)); }
.nav.scrolled::before { opacity:1; }
.nav-inner { position: relative; display: flex; align-items: center; justify-content: space-between; height: 80px; }
.nav-logo img { height: 42px; width: auto; display: block; }

/* hero entrance */
@media (prefers-reduced-motion: no-preference) {
  @keyframes heroUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
  .hero .hero-eyebrow { animation: heroUp .7s cubic-bezier(.2,.7,.2,1) both; }
  .hero h1 { animation: heroUp .8s .08s cubic-bezier(.2,.7,.2,1) both; }
  .hero .hero-sub { animation: heroUp .7s .2s cubic-bezier(.2,.7,.2,1) both; }
  .hero .hero-actions { animation: heroUp .7s .3s cubic-bezier(.2,.7,.2,1) both; }
}
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 15px; font-weight: 500; color: #F4F3EF; opacity: 0.78; transition: opacity .15s, color .15s; white-space: nowrap; }
.nav-links a:hover { opacity: 1; color: var(--blue-bright); }
@media (max-width: 940px) { .nav-links { display: none; } }

/* mobile nav: burger + dropdown */
.nav-burger { display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; flex-direction: column; justify-content: center; align-items: center; gap: 5px; padding: 0; }
.nav-burger span { display: block; width: 24px; height: 2px; background: #F4F3EF; border-radius: 2px; transition: transform .28s, opacity .2s; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile { display: none; }
@media (max-width: 940px) {
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav-mobile {
    display: flex; flex-direction: column; gap: 4px; overflow: hidden;
    max-height: 0; opacity: 0; transition: max-height .4s cubic-bezier(.2,.7,.2,1), opacity .3s, padding .3s;
    background: rgba(10,12,18,0.97); backdrop-filter: blur(16px);
    border-top: 1px solid var(--line); padding: 0 var(--pad);
  }
  .nav-mobile.open { max-height: 420px; opacity: 1; padding: 14px var(--pad) 22px; }
  .nav-mobile a:not(.btn) { font-size: 18px; font-weight: 600; color: #F4F3EF; padding: 13px 0; border-bottom: 1px solid var(--line); }
  .nav-mobile .btn { margin-top: 16px; justify-content: center; padding: 15px; font-size: 16px; }
}

/* ============================================================ HERO */
.hero { position: relative; overflow: hidden; padding-top: clamp(40px,6vw,80px); min-height: calc(100svh - 124px); display: flex; flex-direction: column; }
.hero-bg-grid { position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.5;
  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: 96px 96px; mask-image: radial-gradient(120% 90% at 70% 20%, #000 30%, transparent 80%); }
.hero .container { position: relative; z-index: 2; flex: 1; display: flex; flex-direction: column; }
.hero-grid { display: grid; grid-template-columns: 1fr 0.84fr; gap: 12px; align-items: center; flex: 1; }
.hero-eyebrow { display: flex; align-items: center; gap: 18px; margin-bottom: 30px; }
.hero-eyebrow .ln { height: 1px; width: 60px; background: var(--line-2); }
.hero h1 { font-size: clamp(44px, 5.8vw, 96px); }
.hero-sub { margin-top: 32px; font-size: clamp(18px,1.6vw,22px); color: var(--fg-2); max-width: 50ch; }
.hero-sub b { color: var(--fg); font-weight: 700; }
.hero-actions { margin-top: 38px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-logo { position: relative; display: flex; align-items: center; justify-content: center; min-height: 440px; }
.hero-logo img { position: relative; width: 510px; max-width: 116%; margin-left: -6%; mix-blend-mode: screen; animation: float-y 7s ease-in-out infinite; -webkit-mask: radial-gradient(circle at 50% 50%, #000 56%, transparent 76%); mask: radial-gradient(circle at 50% 50%, #000 56%, transparent 76%); z-index:1; }
@keyframes float-y { 50% { transform: translateY(-16px); } }
@media (max-width: 940px) { .hero-grid { grid-template-columns: 1fr; } .hero-logo { min-height: 280px; order: -1; } .hero-logo img { width: 300px; margin-left: 0; } }

/* stats row */
.hero-stats { margin-top: clamp(40px,4.5vw,64px); padding-top: 30px; border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.hstat .n { font-size: clamp(28px,2.7vw,40px); font-weight: 800; letter-spacing: -0.035em; line-height: 1; display:flex; align-items:baseline; gap:4px; }
.hstat .n .sm { font-size: 0.5em; font-weight: 700; letter-spacing: 0; }
.hstat .n .u { color: var(--accent); }
.hstat .l { font-size: 13px; color: var(--fg-2); margin-top: 11px; max-width: 24ch; }
@media (max-width: 760px) { .hero-stats { grid-template-columns: 1fr 1fr; gap: 34px 24px; } }

/* keep the stats row visible on load on shorter / laptop viewports */
@media (min-width: 941px) and (max-height: 1024px) {
  .hero-eyebrow { margin-bottom: 14px; }
  .hero h1 { font-size: clamp(40px, 4.4vw, 66px); }
  .hero-sub { margin-top: 16px; }
  .hero-actions { margin-top: 22px; }
  .hero-logo { min-height: 260px; }
  .hero-logo img { width: 360px; }
  .hero-stats { margin-top: 20px; padding-top: 18px; }
}
@media (min-width: 941px) and (max-height: 720px) {
  .hero { padding-top: 16px !important; padding-bottom: 16px !important; }
  .hero-eyebrow { margin-bottom: 12px; }
  .hero h1 { font-size: clamp(36px, 3.9vw, 58px); }
  .hero-sub { margin-top: 14px; font-size: 17px; }
  .hero-actions { margin-top: 18px; }
  .hero-actions .btn { padding: 12px 20px; font-size: 15px; }
  .hero-logo { min-height: 250px; }
  .hero-logo img { width: 300px; }
  .hero-stats { margin-top: 18px; padding-top: 16px; }
  .hstat .l { margin-top: 7px; }
}

/* ============================================================ SECTION HEAD */
.sec-head { max-width: 1000px; }
.sec-head .kicker { margin-bottom: 26px; }
.sec-head .lead { margin-top: 26px; }

/* ---- numbered pillar list (01 model) ---- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,90px); margin-top: 60px; align-items: start; }
.pillar-list { display: grid; gap: 0; }
.pillar { display: grid; grid-template-columns: 28px 1fr; gap: 18px; padding: 26px 0; border-top: 1px solid var(--line); }
.pillar:last-child { border-bottom: 1px solid var(--line); }
.pillar .rn { font-family: var(--sans); font-weight: 700; font-size: 14px; color: var(--accent); }
.pillar h3 { font-size: 21px; font-weight: 700; letter-spacing: -0.02em; }
.pillar p { font-size: 15px; color: var(--fg-2); margin-top: 8px; }

/* ---- strikethrough negatives (02 private) ---- */
.neg { display: inline; position: relative; color: var(--fg-3); }
.neg::after { content:''; position:absolute; left:-1%; right:-1%; top:52%; height:3px; background: var(--blue-bright); border-radius: 2px; }
.private-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,80px); margin-top: 64px; align-items: start; }
.big100 { font-size: clamp(72px, 11vw, 150px); font-weight: 800; letter-spacing: -0.05em; line-height: 0.82; }
.big100 .pct { color: var(--accent); }
.private-copy p { font-size: 17px; color: var(--fg-2); line-height: 1.5; margin-bottom: 20px; }
.private-copy p b { color: var(--fg); font-weight: 700; }
.chips { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.chip { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; padding: 10px 18px; border-radius: 100px; border: 1px solid var(--line-2); color: var(--fg-2); }
.chip.no .mk { color: #ff6b6b; font-weight: 800; }
.chip.yes { border-color: var(--accent); color: var(--fg); }
.chip.yes .mk { color: var(--accent); font-weight: 800; }

/* ---- cards row (03 co-founder capital) ---- */
.cards3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 56px; }
.cap-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 28px; min-height: 230px; display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s; }
.cap-card:hover { transform: translateY(-4px); box-shadow: 0 26px 50px -28px rgba(0,0,0,0.5); }
.cap-card .top { display: flex; align-items: center; justify-content: space-between; }
.cap-card .tag { font-size: 14px; font-weight: 700; color: var(--accent); }
.cap-card .rn { font-family: var(--sans); font-weight: 700; font-size: 14px; color: var(--fg-3); }
.cap-card h3 { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; margin-top: auto; padding-top: 30px; }
.cap-card p { font-size: 14.5px; color: var(--fg-2); margin-top: 12px; }
.cap-card.accent { background: var(--ink); color: #fff; border-color: var(--ink); position: relative; overflow: hidden; }
.cap-card.accent::after { content:''; position:absolute; right:-30%; top:-40%; width:300px; height:300px; border-radius:50%; background: radial-gradient(circle, rgba(40,112,232,0.34), transparent 64%); }
.cap-card.accent .tag { color: var(--blue-bright); }
.cap-card.accent .rn { color: rgba(255,255,255,0.4); }
.cap-card.accent p { color: rgba(255,255,255,0.72); }
.cap-card .glyph { font-family: var(--sans); font-style: normal; font-weight: 800; font-size: 18px; line-height: 1; color: var(--accent); letter-spacing: 0.05em; }
.cap-card .ic { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; color: var(--blue); background: rgba(40,112,232,0.09); border: 1px solid var(--line-2); }
.cap-card.accent .ic { color: #fff; background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.22); }
@media (max-width: 820px) { .cards3 { grid-template-columns: 1fr; } }

/* ---- pull quote ---- */
/* model — centered head */
.sec-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.sec-head.center .kicker { display: inline-flex; }
.sec-head.center .lead { margin-left: auto; margin-right: auto; max-width: 860px; }

/* model — bold dark stage; flat base blends seamlessly from hero */
.model-bold { background: var(--ink); position: relative; overflow: hidden; }
.model-bold::before { content:''; position:absolute; inset:0; pointer-events:none; opacity:0.6;
  background-image: linear-gradient(rgba(120,160,240,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(120,160,240,0.05) 1px, transparent 1px);
  background-size: 72px 72px; -webkit-mask-image: radial-gradient(70% 70% at 50% 48%, #000, transparent 78%); mask-image: radial-gradient(70% 70% at 50% 48%, #000, transparent 78%); }
.model-bold .container { position: relative; z-index: 1; }

/* ===== Flywheel (wide ellipse) ===== */
.flywheel { position: relative; max-width: 1060px; margin: 28px auto 0; height: 520px; }
.fw-ring { position: absolute; top: 50%; left: 50%; width: 720px; height: 300px; transform: translate(-50%,-50%); z-index: 1; }
.fw-ring svg { width: 100%; height: 100%; overflow: visible; }
.fw-ring .track { fill: none; stroke: rgba(91,155,245,0.15); stroke-width: 1.4; }
.fw-ring .comet { fill: none; stroke: #8cc0ff; stroke-width: 2.6; stroke-linecap: round;
  stroke-dasharray: 160 1560; filter: drop-shadow(0 0 7px rgba(90,160,255,0.95)) drop-shadow(0 0 16px rgba(60,120,240,0.5)); }
.fw-ring .comet2 { fill: none; stroke: #eaf3ff; stroke-width: 1.4; stroke-linecap: round;
  stroke-dasharray: 30 1670; filter: drop-shadow(0 0 6px rgba(160,205,255,0.95)); opacity: 0.9; }
@media (prefers-reduced-motion: no-preference) {
  .fw-ring .comet { animation: fw-dash 5.5s linear infinite; }
  .fw-ring .comet2 { animation: fw-dash 3.3s linear infinite; }
}
@keyframes fw-dash { to { stroke-dashoffset: -1600; } }
.fw-spark { position: absolute; top: 0; left: 0; width: 7px; height: 7px; border-radius: 50%; background: #dcedff;
  box-shadow: 0 0 10px 2px rgba(120,180,255,0.95), 0 0 24px 5px rgba(60,120,240,0.45);
  offset-path: path('M 12 150 A 348 138 0 1 1 708 150 A 348 138 0 1 1 12 150'); }
@media (prefers-reduced-motion: no-preference) {
  .fw-spark.s1 { animation: fw-orbit 5.5s linear infinite; }
  .fw-spark.s2 { width:5px; height:5px; animation: fw-orbit 7.6s linear infinite; animation-delay: -2.4s; }
  .fw-spark.s3 { width:4px; height:4px; animation: fw-orbit 9.4s linear infinite; animation-delay: -5.2s; }
}
@keyframes fw-orbit { from { offset-distance: 0%; } to { offset-distance: 100%; } }

.fw-core { position: absolute; top: 50%; left: 50%; width: 240px; transform: translate(-50%,-50%); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; color: #fff; z-index: 3; }
.fw-core .t { font-size: 27px; font-weight: 800; letter-spacing: -0.03em; line-height: 1.02; background: linear-gradient(180deg,#ffffff,#9fb6e0); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.fw-core .s { font-size: 12.5px; color: var(--fg-3); margin-top: 8px; line-height: 1.3; }

.fw-node { position: absolute; width: 304px; z-index: 4; }
.fw-node.top { top: 0; left: 50%; transform: translateX(-50%); }
.fw-node.bottom { bottom: 0; left: 50%; transform: translateX(-50%); }
.fw-node.left { left: 0; top: 50%; transform: translateY(-50%); }
.fw-node.right { right: 0; top: 50%; transform: translateY(-50%); }
.fw-card { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 22px 24px; box-shadow: 0 16px 36px -26px rgba(13,21,38,0.55); transition: transform .22s cubic-bezier(.2,.7,.2,1), box-shadow .22s, border-color .22s; }
.fw-node:hover .fw-card { transform: translateY(-5px); box-shadow: 0 24px 48px -24px rgba(13,21,38,0.55); border-color: var(--blue); }
.fw-card h3 { font-size: 19px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; }
.fw-card p { font-size: 13px; color: var(--fg-2); margin-top: 7px; line-height: 1.4; white-space: nowrap; }
/* flywheel -> mentor pool connector */
.fw-connector { display: flex; flex-direction: column; align-items: center; gap: 0; margin: 4px auto 0; color: var(--blue-bright); }
.fw-connector .ln { width: 2px; height: 40px; background: linear-gradient(var(--blue), rgba(40,112,232,0)); }
.fw-connector .ch { margin-top: -6px; font-size: 18px; line-height: 1; opacity: 0.8; }

@media (max-width: 920px) {
  .flywheel { height: auto; display: flex; flex-direction: column; align-items: center; gap: 16px; max-width: 460px; }
  .flywheel::before, .flywheel::after { display: none; }
  .fw-ring, .fw-spark { display: none; }
  .fw-core { position: relative; top: auto; left: auto; transform: none; margin-bottom: 6px; }
  .fw-node { position: relative; inset: auto; transform: none !important; width: 100%; }
  .fw-card { width: 100%; }
}

/* model-integrated mentor pool */
.model-mentors { margin-top: clamp(36px,4vw,56px); }
.model-mentors .mm-intro { text-align: center; max-width: 60ch; margin: 0 auto 26px; font-size: 15px; color: var(--fg-2); }
.model-mentors .mm-intro b { color: var(--fg); font-weight: 700; }
.bigquote { max-width: 1060px; margin: 0 auto; text-align: center; position: relative; }
.bigquote .bq-mark { display: block; font-size: 130px; line-height: 0.62; font-weight: 800; color: var(--accent); height: 64px; }
.bigquote blockquote { font-size: clamp(27px, 3.7vw, 50px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; color: var(--fg); text-wrap: balance; }
.bigquote .bq-by { display: flex; align-items: center; justify-content: center; gap: 15px; margin-top: 34px; }
.bigquote .bq-by img { width: 62px; height: 62px; border-radius: 50%; object-fit: cover; object-position: 50% 22%; border: 2px solid var(--accent); flex-shrink: 0; }
.bigquote .bq-nm { font-weight: 800; font-size: 17px; text-align: left; }
.bigquote .bq-rl { font-size: 14px; color: var(--accent); font-weight: 600; text-align: left; margin-top: 2px; }

/* ---- testimonials rotator ---- */
.tmonials { margin-top: clamp(52px, 6vw, 84px); }
.tm-head { display: flex; align-items: center; gap: 18px; margin-bottom: 30px; }
.tm-head .kicker { white-space: nowrap; }
.tm-head .ln { flex: 1; height: 1px; background: var(--line); }
.tm-stage { max-width: 900px; margin: 0 auto; text-align: center; position: relative; }
.tm-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .5s; pointer-events: none; }
.tm-slide.active { opacity: 1; position: relative; pointer-events: auto; }
.tm-slide .qm { font-size: 70px; line-height: 0.5; height: 40px; color: var(--accent); font-weight: 800; }
.tm-slide blockquote { font-size: clamp(20px, 2.5vw, 31px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.3; color: var(--fg); text-wrap: balance; }
.tm-slide .tm-by { display: inline-flex; align-items: center; gap: 13px; margin-top: 28px; }
.tm-slide .tm-av { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(160deg, #e4ebf7, #cdd9f0); color: var(--blue); display: grid; place-items: center; font-weight: 800; font-size: 15px; flex-shrink: 0; overflow: hidden; object-fit: cover; object-position: 50% 18%; border: 1px solid var(--line-2); }
.tm-slide .tm-nm { font-weight: 800; font-size: 15.5px; text-align: left; }
.tm-slide .tm-co { font-size: 13.5px; color: var(--accent); font-weight: 600; text-align: left; }
.tm-nav { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 36px; }
.tm-nav button { width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid var(--line-2); background: transparent; color: var(--fg); cursor: pointer; display: grid; place-items: center; transition: border-color .15s, color .15s, background .15s; }
.tm-nav button:hover { border-color: var(--accent); color: var(--accent); }
.tm-dots { display: flex; gap: 8px; }
.tm-dots i { width: 8px; height: 8px; border-radius: 50%; background: var(--line-2); cursor: pointer; transition: width .2s, background .2s, border-radius .2s; }
.tm-dots i.on { background: var(--accent); width: 24px; border-radius: 4px; }

/* ---- buckets (04 who we back) ---- */
.buckets { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 60px; border-top: 1px solid var(--line); }
.bucket { padding: 40px 30px 10px 0; border-right: 1px solid var(--line); }
.bucket:not(:first-child) { padding-left: 30px; }
.bucket:last-child { border-right: none; }
.bucket .idx { font-size: 14px; font-weight: 700; color: var(--accent); }
.bucket { transition: transform .2s, border-color .2s; }
.bucket:hover { transform: translateY(-4px); }
.bucket:hover h3 { color: var(--accent); }
.bucket h3 { transition: color .2s; }
.bk-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.bk-tags span { font-size: 12.5px; font-weight: 600; color: var(--fg-2); border: 1px solid var(--line-2); border-radius: 100px; padding: 5px 12px; transition: border-color .2s, color .2s; }
.bucket:hover .bk-tags span { border-color: rgba(40,112,232,0.45); color: var(--fg); }
.bucket h3 { font-size: 24px; font-weight: 800; letter-spacing: -0.025em; margin-top: 16px; }
.bucket p { font-size: 15px; color: var(--fg-2); margin-top: 14px; }
@media (max-width: 760px) { .buckets { grid-template-columns: 1fr; } .bucket { border-right: none; border-bottom: 1px solid var(--line); padding: 30px 0; } .bucket:not(:first-child){ padding-left:0; } }

.test { margin-top: 70px; display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 40px; align-items: center; }
.test-list { display: grid; }
.test-item { display: grid; grid-template-columns: 24px 1fr; gap: 14px; padding: 20px 0; border-top: 1px solid var(--line); font-size: 16px; color: var(--fg-2); align-items: baseline; }
.test-item:last-child { border-bottom: 1px solid var(--line); }
.test-item .ar { color: var(--accent); font-weight: 800; }
.test-item b { color: var(--fg); font-weight: 700; }
@media (max-width: 820px) { .test { grid-template-columns: 1fr; gap: 24px; } }

/* who we back — category cards */
.wb-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 36px; align-items: start; }
.wb-card { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 20px; display: flex; flex-direction: column; text-align: left; width: 100%; font-family: inherit; cursor: pointer; transition: border-color .2s, background .2s; }
.wb-card:hover { border-color: var(--blue); }
.wb-card.open { border-color: var(--blue); background: var(--card-2, #171a22); }
.wb-top { display: flex; align-items: center; gap: 13px; }
.wb-card .wb-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 4px rgba(40,112,232,0.18); flex-shrink: 0; }
.wb-card .wb-k { font-size: 17px; font-weight: 700; letter-spacing: -0.02em; color: #fff; line-height: 1.15; flex: 1; }
.wb-card .wb-chev { color: var(--blue-bright); display: grid; place-items: center; transition: transform .3s ease; flex-shrink: 0; }
.wb-card.open .wb-chev { transform: rotate(180deg); }
.wb-desc { display: grid; grid-template-rows: 0fr; opacity: 0; transition: grid-template-rows .35s cubic-bezier(.2,.7,.2,1), opacity .3s, margin-top .35s; margin-top: 0; }
.wb-desc > p { overflow: hidden; min-height: 0; font-size: 14.5px; color: var(--fg-2); line-height: 1.5; }
.wb-card.open .wb-desc { grid-template-rows: 1fr; opacity: 1; margin-top: 14px; }
@media (max-width: 900px) { .wb-cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .wb-cards { grid-template-columns: 1fr; } }
/* who we back — category pills */
.wb-tags { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 40px; }
.wb-tags span { font-size: 15px; font-weight: 600; color: var(--fg); border: 1px solid var(--line-2); border-radius: 100px; padding: 11px 22px; transition: border-color .2s, color .2s, background .2s; }
.wb-tags span:hover { border-color: var(--accent); color: var(--accent); background: rgba(40,112,232,0.08); }

/* ============================================================ STORIES (chronological bento, no wide crops) */
.stories-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; grid-auto-flow: dense; gap: 16px; margin-top: 40px; }
.story { position: relative; border-radius: 18px; overflow: hidden; isolation: isolate; display: flex; flex-direction: column; justify-content: flex-end; color: #fff; background: #111319; border: 1px solid var(--line); transition: transform .25s, border-color .25s; }
.story.feat { grid-column: span 2; grid-row: span 2; }
.story.tall { grid-row: span 2; }
.story:hover { transform: translateY(-5px); border-color: var(--line-2); }
.story img { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -2; object-fit: cover; object-position: 50% 18%; }
.story::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(5,6,10,0.05) 0%, rgba(5,6,10,0.5) 46%, rgba(5,6,10,0.93) 100%); }
.story-body { padding: 20px; }
.story .tag { font-size: 11px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; background: var(--blue-cta); color: #fff; padding: 5px 11px; border-radius: 100px; display: inline-block; }
.story h3 { font-size: 16px; font-weight: 700; letter-spacing: -0.02em; margin-top: 11px; line-height: 1.2; color:#fff; }
.story.feat h3 { font-size: 26px; max-width: 16ch; }
.story.feat .tag { font-size: 12px; }
@media (max-width: 1080px) { .stories-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 219px; } .story.feat { grid-column: span 2; grid-row: span 2; } .story.tall { grid-row: span 1; } }
@media (max-width: 560px) { .stories-grid { grid-template-columns: 1fr; } .story, .story.feat, .story.tall { grid-column: auto; grid-row: auto; min-height: 220px; } }

/* portfolio bento with testimonial in a corner (bottom-right) */
.pf-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 150px; grid-auto-flow: dense; gap: 14px; margin-top: 44px; }
.pf-quote { grid-column: 3 / span 2; grid-row: 3 / span 2; background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 28px; display: flex; flex-direction: column; }
.pf-cta { display: flex; align-items: center; justify-content: center; margin-top: 28px; }
.pf-cta .pc-txt { font-size: 17px; font-weight: 600; color: var(--fg); }
.pf-cta .pc-txt b { color: var(--accent); font-weight: 800; }
.pf-quote .kicker { margin-bottom: 16px; }
.pf-quote .tm-stage { text-align: left; max-width: none; margin: 0; position: relative; flex: 1; min-height: 0; }
.pf-quote .tm-slide .qm { font-size: 48px; height: 26px; }
.pf-quote .tm-slide blockquote { font-size: 17px; line-height: 1.42; font-weight: 600; }
.pf-quote .tm-slide .tm-by { margin-top: 16px; }
.pf-quote .tm-nav { justify-content: flex-start; margin-top: 14px; }
@media (max-width: 900px) { .pf-grid { grid-template-columns: repeat(2, 1fr); } .pf-quote { grid-column: span 2; grid-row: span 2; } }
.pf-tile { position: relative; background: #EBF2FF; border-radius: 14px; overflow: hidden; height: 100%; display: grid; place-items: center; padding: 16px 22px; transition: transform .18s, box-shadow .18s; cursor: pointer; }
.pf-tile img { max-width: 100%; max-height: 88px; width: auto; object-fit: contain; }
.pf-tile.pf-txt span { font-size: 23px; font-weight: 800; letter-spacing: -0.025em; color: #0D1526; }
.pf-tile:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -22px rgba(0,0,0,0.7), 0 0 0 1px rgba(40,112,232,0.5); }
.pf-tile.more { background: var(--blue-cta); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; }
.pf-tile.pf-clk { border: 0; cursor: pointer; font: inherit; }
.pf-tile.pf-clk.active { box-shadow: 0 0 0 2px var(--blue); }
.pf-tile.is-clickable { cursor: pointer; }
.pf-tile.is-clickable:focus-visible { outline: 2px solid var(--blue-bright); outline-offset: 2px; }
.pf-tile.active { box-shadow: 0 0 0 2px var(--blue); }
.cd-exit-badge { display: inline-block; font-size: 10px; font-weight: 800; letter-spacing: 0.06em; color: #fff; background: var(--blue-cta); padding: 3px 8px; border-radius: 100px; margin-right: 6px; vertical-align: middle; }
/* ============================================================ COMPANY SLIDE-OVER (right) */
.co-slide { position: fixed; inset: 0; z-index: 200; visibility: hidden; }
.co-slide.on { visibility: visible; }
.cs-backdrop { position: absolute; inset: 0; background: rgba(6,8,14,0.66); backdrop-filter: blur(3px); opacity: 0; transition: opacity .35s ease; }
.co-slide.on .cs-backdrop { opacity: 1; }
.cs-panel { position: absolute; top: 0; right: 0; height: 100%; width: min(440px, 92vw); background: #0c0f17; border-left: 1px solid var(--line-2); box-shadow: -30px 0 80px -30px rgba(0,0,0,0.7); padding: 64px 36px 40px; overflow-y: auto; transform: translateX(100%); transition: transform .42s cubic-bezier(.2,.7,.2,1); }
.co-slide.on .cs-panel { transform: translateX(0); }
.cd-close { position: absolute; top: 18px; right: 18px; width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line-2); background: transparent; color: #fff; cursor: pointer; display: grid; place-items: center; transition: background .15s, border-color .15s; }
.cd-close:hover { background: rgba(40,112,232,0.2); border-color: var(--blue-bright); }
.cd-logo { background: #EBF2FF; border-radius: 16px; padding: 26px; display: grid; place-items: center; height: 130px; }
.cd-logo img { max-height: 64px; max-width: 78%; width: auto; object-fit: contain; }
.cd-logo.photo-mode { background: none; padding: 0; height: auto; aspect-ratio: 16/10; overflow: hidden; }
.cd-logo.photo-mode img { max-height: none; max-width: none; width: 100%; height: 100%; object-fit: cover; }
.cd-name { font-size: 26px; font-weight: 800; letter-spacing: -0.02em; color: #fff; margin-top: 26px; }
.cd-rows { margin-top: 18px; display: flex; flex-direction: column; }
.cd-row { display: grid; grid-template-columns: 110px 1fr; gap: 14px; padding: 16px 0; border-top: 1px solid var(--line); align-items: baseline; }
.cd-row dt { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-3); }
.cd-row dd { font-size: 15px; color: var(--fg); line-height: 1.45; }
.cd-row dd a { color: var(--blue-bright); font-weight: 600; }
.cd-row dd a:hover { text-decoration: underline; }
.cd-flag { margin-right: 8px; }
.pf-tile.more .pf-name { color: #fff; font-size: 18px; font-weight: 800; letter-spacing: -0.02em; white-space: nowrap; }
.pf-tile.more .arr { color:#fff; font-weight: 800; transition: transform .2s; }
.pf-tile.more:hover { background: #2a61e0; }
.pf-tile.more:hover .arr { transform: translateX(4px); }
@media (max-width: 1040px) { .pf-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 800px) { .pf-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .pf-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================ MENTOR POOL (scrollable) */
@keyframes scroll-x { to { transform: translateX(-50%); } }
.mentor-pool { margin-top: 0; padding-top: 0; }
.mentor-pool-head { display: flex; align-items: center; gap: 18px; margin-bottom: 32px; }
.mentor-pool-head .kicker { white-space: nowrap; }
.mentor-pool-head .ln { flex: 1; height: 1px; background: var(--line); }
.mentor-nav { display: flex; gap: 10px; flex-shrink: 0; }
.mentor-arrow { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-2); background: transparent; color: var(--fg); cursor: pointer; display: grid; place-items: center; transition: background .15s, border-color .15s, color .15s, opacity .15s; }
.mentor-arrow:hover { background: rgba(40,112,232,0.14); border-color: var(--blue-bright); color: #fff; }
.mentor-marquee { overflow-x: auto; overflow-y: hidden; scroll-behavior: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; cursor: grab;
  -webkit-mask: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
          mask: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); }
.mentor-marquee::-webkit-scrollbar { display: none; }
.mentor-marquee.dragging { cursor: grabbing; scroll-behavior: auto; }
.mentor-marquee.dragging .m-card { pointer-events: none; }
.mentor-track { display: flex; gap: 30px; width: max-content; padding: 4px 2px; }
.m-card { width: 132px; flex-shrink: 0; text-align: center; }
a.m-card { color: inherit; text-decoration: none; cursor: pointer; }
a.m-card:hover .nm { color: var(--accent); }
.m-card .av { width: 132px; height: 132px; border-radius: 50%; display: grid; place-items: center; overflow: hidden;
  font-size: 34px; font-weight: 800; color: var(--blue); letter-spacing: -0.02em; transition: filter .25s, transform .2s; }
.m-card img.av { object-fit: cover; object-position: 50% 22%; filter: grayscale(1) contrast(1.02); background: #DEE5F1; }
.m-card:hover img.av { filter: grayscale(0); }
.m-card:nth-child(3n+1) .av { background: #DEE5F1; }
.m-card:nth-child(3n+2) .av { background: #D7DDF7; }
.m-card:nth-child(3n+3) .av { background: #C4CEEE; }
.m-card .nm { font-size: 14.5px; font-weight: 700; margin-top: 14px; color: var(--fg); }
.m-card:hover .nm { color: var(--accent); }
.m-card .co { font-size: 14px; font-weight: 600; color: var(--accent); margin-top: 4px; }
@media (max-width: 700px) { .m-card, .m-card .av { width: 132px; } .m-card .av { height: 132px; font-size: 34px; } .mentor-nav { display: none; } }

/* ============================================================ TEAM (kept, our photos) */
.team-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-top: 44px; }
.member { text-decoration: none; color: inherit; display: block; }
.member img, .member .mono-ava { width: 100%; aspect-ratio: 4/5; border-radius: 14px; border: 1px solid var(--line); object-fit: cover; object-position: 50% 22%; background: var(--card); filter: grayscale(1) contrast(1.03); transition: filter .25s, border-color .25s; }
.member:hover img { border-color: var(--line-2); }
.member .nm { font-size: 17px; font-weight: 700; letter-spacing: -0.02em; margin-top: 16px; transition: color .15s; }
.member:hover .nm { color: var(--accent); }
.member .rl { font-size: 13.5px; font-weight: 600; color: var(--accent); margin-top: 3px; }
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }

/* CTA logo outline backdrop */
.cta { position: relative; overflow: hidden; text-align: center; }
.cta-logo { position: absolute; right: -2%; bottom: -16%; left: auto; top: auto; transform: none; width: min(440px, 56%); height: auto; z-index: 0; opacity: 0.09; pointer-events: none; }
.cta .container { position: relative; z-index: 1; }
.cta h2 { font-size: clamp(56px, 9vw, 132px); letter-spacing: -0.045em; line-height: 0.9; }
.cta .lead { color: rgba(255,255,255,0.85); margin: 26px auto 0; }
.cta .kicker { color: var(--blue-bright); }
.cta-actions { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.btn-xl { font-size: 20px; padding: 22px 40px; }
.cta-jfdi { margin: 40px auto 36px; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.jfdi-big { font-family: var(--sans); font-size: clamp(72px, 12vw, 168px); font-weight: 900; letter-spacing: 0.02em; line-height: 0.9; color: var(--blue-bright); }
.jfdi-img { width: clamp(220px, 30vw, 420px); height: auto; display: block; }
.jfdi-big { font-family: var(--sans); font-size: clamp(72px, 11vw, 150px); font-weight: 900; letter-spacing: 0.01em; line-height: 0.9; color: #fff; text-transform: uppercase; }
.jfdi-sub { font-family: var(--sans); font-size: 15px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--fg-2); }

/* ============================================================ NEWS TICKER */
.news-ticker { display: flex; align-items: center; gap: 18px; background: #0c0f17; border-bottom: 1px solid rgba(255,255,255,0.1); height: 42px; padding: 0 24px; overflow: hidden; position: relative; z-index: 60; }
.nt-label { display: inline-flex; align-items: center; gap: 8px; color: var(--blue-bright); white-space: nowrap; flex-shrink: 0; }
.nt-dot { width: 7px; height: 7px; border-radius: 50%; background: #ff5a4d; box-shadow: 0 0 8px #ff5a4d; animation: nt-blink 1.6s ease-in-out infinite; }
@keyframes nt-blink { 50% { opacity: 0.35; } }
.nt-marquee { overflow: hidden; flex: 1; -webkit-mask: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent); mask: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent); }
.nt-track { display: inline-flex; align-items: center; gap: 160px; white-space: nowrap; width: max-content; animation: scroll-x 110s linear infinite; }
.news-ticker:hover .nt-track { animation-play-state: paused; }
.nt-item { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; color: var(--fg-2); transition: color .15s; max-width: 42vw; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.nt-item:hover { color: #fff; }
.nt-item .nt-tag { font-size: 10px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue-bright); margin-right: 4px; }
.nt-sep { color: #3a4253; }
@media (max-width: 620px) { .nt-label span.lbl { display: none; } }

/* ============================================================ PITCH MODAL (Tally) */
.pitch-modal { position: fixed; inset: 0; z-index: 200; display: none; }
.pitch-modal.on { display: block; }
.pm-backdrop { position: absolute; inset: 0; background: rgba(6,8,14,0.78); backdrop-filter: blur(4px); }
.pm-panel { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: min(520px, 94vw); height: min(720px, 90vh); background: #0c0f17; border: 1px solid var(--line-2); border-radius: 18px; overflow: hidden; box-shadow: 0 40px 100px -30px rgba(0,0,0,0.7); }
.pm-panel iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.pm-close { position: absolute; top: 12px; right: 12px; z-index: 2; width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line-2); background: rgba(12,15,23,0.8); color: #fff; cursor: pointer; display: grid; place-items: center; transition: background .15s, border-color .15s; }
.pm-close:hover { background: rgba(40,112,232,0.25); border-color: var(--blue-bright); }

/* ============================================================ FOOTER */
.footer { background: transparent; padding: 80px 0 36px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand img { height: 32px; }
.footer-brand p { color: #9aa0ad; font-size: 15px; margin-top: 20px; max-width: 32ch; }
.footer-offices { margin-top: 24px; display: flex; gap: 8px 16px; flex-wrap: wrap; align-items: center; }
.footer-offices span { font-size: 14px; color: #c3c7cf; display: inline-flex; align-items: center; }
.footer-offices span:not(:last-child)::after { content: '•'; margin-left: 16px; color: #4a5160; }
.footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #6a7080; margin-bottom: 18px; }
.footer-col a { display: block; font-size: 15px; color: #c3c7cf; padding: 7px 0; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 28px; flex-wrap: wrap; }
.footer-bottom .legal { font-size: 14px; color: #6a7080; }
.footer-legal { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-legal a { font-size: 14px; color: #9aa0ad; transition: color .15s; }
.footer-legal a:hover { color: #fff; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.2); display: grid; place-items: center; color: #fff; transition: background .15s, border-color .15s; }
.footer-social a:hover { background: rgba(40,112,232,0.18); border-color: var(--blue-bright); }
@media (max-width: 860px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-top { grid-template-columns: 1fr; } }

/* ============================================================ MOBILE PASS (≤640px) */
@media (max-width: 640px) {
  :root { --pad: 20px; }
  .nav-inner { height: 64px; }
  .nav-logo img { height: 34px; }

  /* hero */
  .hero { padding-top: 26px !important; padding-bottom: 30px !important; }
  .hero-eyebrow { flex-wrap: wrap; gap: 10px; margin-bottom: 18px; }
  .hero-eyebrow .ln { display: none; }
  .hero-eyebrow .kicker { font-size: 11px; letter-spacing: 0.12em; }
  .hero h1 { font-size: clamp(38px, 11vw, 52px); line-height: 0.98; }
  .hero-sub { white-space: normal !important; max-width: none !important; font-size: 16px; margin-top: 18px; }
  .hero-actions { margin-top: 24px; gap: 12px; }
  .hero-actions .btn { flex: 1 1 auto; justify-content: center; }
  .hero-logo { min-height: 220px; margin-bottom: 4px; }
  .hero-logo img { width: 240px; }
  .hero-stats { margin-top: 30px; padding-top: 24px; gap: 26px 18px; }
  .hstat .n { font-size: 30px; }
  .hstat .l { font-size: 12.5px; }

  /* headings + sections */
  .sec { padding: 48px 0; }
  .display { font-size: clamp(38px, 11vw, 54px); }
  .h2 { font-size: clamp(30px, 8.5vw, 42px); }
  .lead { font-size: 17px; }
  .sec-head .lead { margin-top: 18px; }

  /* buttons full width where they stack */
  .cta-actions .btn, .pf-cta .btn { width: 100%; justify-content: center; }

  /* portfolio */
  .pf-tile img { max-height: 60px; }

  /* who we back */
  .wb-tags { gap: 9px; }

  /* CTA */
  .cta h2 { font-size: clamp(40px, 13vw, 60px); }
  .cta .lead { font-size: 17px; }

  /* company slide-over full width */
  .cs-panel { width: 100vw; padding: 60px 22px 32px; }

  /* footer */
  .footer { padding: 56px 0 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 18px; }

  /* pitch modal */
  .pm-panel { width: 94vw; height: 86vh; }
}

@media (max-width: 400px) {
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 22px 16px; }
  .hstat .n { font-size: 27px; }
}
