/* ═══════════════════════════════════════════════════════════
   Get Started Ventures · v3 — "Mosaïque"
   Home as a 12-column bento grid: a tidy, balanced mosaic of
   tiles in clean rows. Rounded corners, generous padding,
   content that breathes. Soft cream / lavender register.
   Poppins throughout. Vanilla CSS, no dependency.
   ═══════════════════════════════════════════════════════════ */

/* ── Design tokens ─────────────────────────────────────────── */
:root {
  /* Palette */
  --bg:          #FFF2E0;
  --tile:        #ffffff;
  --tile-cream:  #FBF3E4;
  --tile-lav:    #C0C9EE;
  --tile-ind:    #898AC4;
  --lav:         #A2AADB;
  --ink:         #2b2640;
  --muted:       #6c6680;
  --accent:      #898AC4;

  /* Text colours that sit on the indigo accent tile */
  --on-ind:      #FFF2E0;
  --on-ind-soft: rgba(255, 242, 224, .8);

  /* Lines / surfaces */
  --hairline:    rgba(43, 38, 64, .12);
  --hairline-2:  rgba(43, 38, 64, .22);
  --ind-line:    rgba(255, 242, 224, .26);

  /* Typography */
  --font: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Bento grid */
  --gap: 14px;
  --maxw: 1380px;
  --radius: 22px;
  --radius-sm: 16px;

  /* Motion */
  --ease: cubic-bezier(.22, .8, .26, 1);
  --eo:   cubic-bezier(.16, 1, .3, 1);
}

/* ── Reset / base ──────────────────────────────────────────── */
* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

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

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, p { margin: 0; }
strong { font-weight: 700; }

::selection { background: var(--tile-ind); color: var(--on-ind); }

/* Focus — net, visible on every focusable element */
:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
  border-radius: 6px;
}
.tile-ind-scope :focus-visible,
.tile--cta :focus-visible,
.tile--portfolio-head :focus-visible {
  outline-color: var(--on-ind);
}

/* ════════════════════════════════════════════════════════════
   HEADER — top bar, outside the bento grid
   ════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline);
}
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px clamp(16px, 3vw, 32px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -.01em;
  color: var(--ink);
}
.logo-mark {
  display: inline-flex;
  color: var(--accent);
  transition: transform .7s var(--eo);
}
.logo:hover .logo-mark { transform: rotate(180deg); }
.logo-word strong { color: var(--accent); }

.nav {
  display: flex;
  gap: clamp(14px, 2.4vw, 30px);
}
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  padding: 6px 2px;
  position: relative;
  transition: color .25s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
  transition: right .3s var(--eo);
}
.nav a:hover,
.nav a.is-active { color: var(--ink); }
.nav a:hover::after,
.nav a.is-active::after { right: 0; }

.btn-apply {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.btn-apply span:last-child { transition: transform .3s var(--eo); }
.btn-apply:hover { background: var(--accent); }
.btn-apply:hover span:last-child { transform: translateX(3px); }

/* ════════════════════════════════════════════════════════════
   MOSAIC — the 12-column bento grid
   ════════════════════════════════════════════════════════════ */
main { display: block; }

.mosaic {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(16px, 3vw, 32px);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--gap);
  align-items: stretch;
}

/* Stat row is itself a 12-col sub-grid spanning the full width,
   so its 4 stat tiles align to the master grid (4 × span 3). */
.stat-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--gap);
}

/* ── Tile base ─────────────────────────────────────────────── */
.tile {
  background: var(--tile);
  border-radius: var(--radius);
  padding: clamp(26px, 3vw, 44px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid var(--hairline);
}

/* Column spans (desktop) */
.tile--hero            { grid-column: span 12; }
.tile--stat            { grid-column: span 3; }
.tile--firm            { grid-column: span 7; }
.tile--baseline        { grid-column: span 5; }
.tile--method          { grid-column: span 12; }
.tile--sectors         { grid-column: span 12; }
.tile--portfolio-head  { grid-column: span 12; }
.tile--company         { grid-column: span 3; }
.tile--company-wide    { grid-column: span 4; }
.tile--path            { grid-column: span 4; }
.tile--cta             { grid-column: span 12; }

/* Clickable-tile hover lift */
a.tile { display: flex; flex-direction: column; }
a.tile:hover { transform: translateY(-5px); }
.tile { transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s; }
a.tile:hover { box-shadow: 0 18px 38px -20px rgba(43, 38, 64, .45); }

/* ── Shared bits ───────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow-num {
  font-weight: 700;
  color: var(--accent);
}
.eyebrow--light { color: var(--on-ind-soft); }
.eyebrow--light .eyebrow-num { color: var(--on-ind); }

.kicker {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
}
.kicker--light { color: var(--on-ind); }

.section-title {
  font-weight: 700;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.16;
  letter-spacing: -.02em;
  color: var(--ink);
}

.prose {
  font-size: clamp(15px, 1.05vw, 16.5px);
  line-height: 1.7;
  color: var(--muted);
}

.accent-ink   { color: var(--accent); }
.accent-light { color: var(--on-ind); }

/* Generic button */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform .3s var(--ease), background .3s var(--ease),
              color .3s var(--ease), border-color .3s var(--ease);
}
.btn span:last-child { transition: transform .3s var(--eo); }
.btn:hover span:last-child { transform: translateX(4px); }

.btn--primary {
  background: var(--ink);
  color: var(--bg);
}
.btn--primary:hover { background: var(--accent); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--hairline-2);
}
.btn--ghost:hover { border-color: var(--ink); background: var(--tile-cream); }

.btn--light {
  background: var(--on-ind);
  color: var(--ink);
}
.btn--light:hover { background: #ffffff; transform: translateY(-2px); }

.btn--portfolio {
  background: var(--on-ind);
  color: var(--ink);
  flex-shrink: 0;
}
.btn--portfolio:hover { background: #ffffff; transform: translateY(-2px); }

/* ════════════════════════════════════════════════════════════
   HERO — span 12
   ════════════════════════════════════════════════════════════ */
.tile--hero {
  background: var(--tile-cream);
  padding: clamp(38px, 5.5vw, 76px);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.hero-title {
  font-weight: 700;
  font-size: clamp(42px, 6.6vw, 92px);
  line-height: 1.02;
  letter-spacing: -.035em;
  color: var(--ink);
  max-width: 16ch;
}
.hero-sub {
  max-width: 62ch;
  font-size: clamp(15.5px, 1.2vw, 18px);
  line-height: 1.62;
  color: var(--muted);
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 6px;
}
.hero-glyph {
  position: absolute;
  top: clamp(-30px, -2vw, -10px);
  right: clamp(-40px, -2vw, -20px);
  width: clamp(180px, 22vw, 320px);
  color: var(--lav);
  opacity: .5;
  z-index: -1;
  pointer-events: none;
}
.hero-glyph svg { animation: spin 90s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ════════════════════════════════════════════════════════════
   STATS — 4 tiles, span 3 each
   ════════════════════════════════════════════════════════════ */
.tile--stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  min-height: 160px;
}
.tile--stat-accent {
  background: var(--tile-ind);
  border-color: transparent;
}
.tile--stat-accent .stat-label { color: var(--on-ind-soft); }
.tile--stat-accent .stat-num { color: var(--on-ind); }

.stat-num {
  font-weight: 700;
  font-size: clamp(48px, 5.4vw, 72px);
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.stat-label {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--muted);
}

/* ════════════════════════════════════════════════════════════
   FIRM text — span 7
   ════════════════════════════════════════════════════════════ */
.tile--firm {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.tile--firm .section-title { max-width: 22ch; }
.tile--firm .prose { max-width: 64ch; }
.firm-foot {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--hairline);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--accent);
}

/* ════════════════════════════════════════════════════════════
   BASELINE / signature — span 5 (lavender accent tile)
   ════════════════════════════════════════════════════════════ */
.tile--baseline {
  background: var(--tile-lav);
  border-color: transparent;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.baseline-pos {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
}
.baseline-sign {
  font-weight: 700;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.08;
  letter-spacing: -.025em;
  color: var(--ink);
}
.baseline-sign .accent-light { color: #ffffff; }
.baseline-hubs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 14px;
}
.baseline-hubs li {
  padding: 6px 13px;
  background: color-mix(in srgb, #ffffff 55%, transparent);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
}
.baseline-meta {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .04em;
  color: rgba(43, 38, 64, .68);
}

/* ════════════════════════════════════════════════════════════
   METHOD — span 12, 4 steps in an inner 4-col sub-grid
   ════════════════════════════════════════════════════════════ */
.tile--method {
  background: var(--tile-cream);
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3vw, 38px);
}
.method-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.method-head .section-title { max-width: 20ch; }

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}
.method-step {
  background: var(--tile);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  padding: clamp(20px, 1.7vw, 26px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .35s var(--ease), border-color .3s, background .3s;
}
.method-step:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}
.step-when {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
}
.step-num {
  font-weight: 700;
  font-size: clamp(32px, 3vw, 44px);
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--lav);
}
.step-title {
  font-weight: 600;
  font-size: clamp(15.5px, 1.2vw, 18px);
  line-height: 1.25;
  letter-spacing: -.012em;
  color: var(--ink);
}
.step-text {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted);
  margin-top: auto;
}

/* ════════════════════════════════════════════════════════════
   SECTORS — span 12, 6 sectors in an inner 3×2 grid
   ════════════════════════════════════════════════════════════ */
.tile--sectors {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3vw, 36px);
}
.sectors-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sectors-head .section-title { max-width: 20ch; }

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.sector {
  background: var(--tile-cream);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  padding: clamp(22px, 1.9vw, 30px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .35s var(--ease), border-color .3s;
}
.sector:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}
.sector-num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--accent);
}
.sector-title {
  font-weight: 600;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.22;
  letter-spacing: -.015em;
  color: var(--ink);
}
.sector-text {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted);
}
.sectors-foot {
  padding-top: 18px;
  border-top: 1px solid var(--hairline);
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  max-width: 60ch;
}

/* ════════════════════════════════════════════════════════════
   PORTFOLIO header — span 12 (indigo accent tile)
   ════════════════════════════════════════════════════════════ */
.tile--portfolio-head {
  background: var(--tile-ind);
  border-color: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 3vw, 48px);
  flex-wrap: wrap;
}
.portfolio-head-l {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 30ch;
}
.tile--portfolio-head .section-title { color: var(--on-ind); }

/* ════════════════════════════════════════════════════════════
   PORTFOLIO companies — span 3 (top row of 4) + span 4 (row of 3)
   ════════════════════════════════════════════════════════════ */
.tile--company {
  gap: 8px;
  min-height: 196px;
}
.company-num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--accent);
}
.company-stage {
  position: absolute;
  top: clamp(20px, 2vw, 30px);
  right: clamp(20px, 2vw, 30px);
  padding: 4px 11px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--tile-cream);
  color: var(--muted);
  border: 1px solid var(--hairline);
}
.company-stage--live {
  background: var(--tile-lav);
  color: var(--ink);
  border-color: transparent;
}
.company-name {
  font-weight: 700;
  font-size: clamp(24px, 2.1vw, 31px);
  line-height: 1.04;
  letter-spacing: -.025em;
  color: var(--ink);
  margin-top: 4px;
}
.company-line {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--muted);
}
.company-meta {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--hairline);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .05em;
  color: var(--accent);
}
.company-go {
  position: absolute;
  bottom: clamp(20px, 2vw, 30px);
  right: clamp(20px, 2vw, 30px);
  font-weight: 700;
  font-size: 18px;
  color: var(--accent);
  transition: transform .3s var(--eo);
}
.tile--company:hover .company-go { transform: translateX(5px); }

/* ════════════════════════════════════════════════════════════
   PATHS — 3 tiles, span 4 each. Wide — text breathes.
   ════════════════════════════════════════════════════════════ */
.tile--path {
  background: var(--tile-cream);
  gap: 14px;
  min-height: 260px;
}
.path-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.path-eyebrow .eyebrow-num { color: var(--accent); font-weight: 700; }
.path-tag {
  align-self: flex-start;
  padding: 5px 13px;
  border-radius: 999px;
  background: var(--tile-lav);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--ink);
}
.path-lead {
  font-weight: 700;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.18;
  letter-spacing: -.02em;
  color: var(--ink);
  max-width: 24ch;
}
.path-text {
  font-size: 14.5px;
  line-height: 1.62;
  color: var(--muted);
}
.path-go {
  margin-top: auto;
  font-weight: 700;
  font-size: 22px;
  color: var(--accent);
  transition: transform .3s var(--eo);
}
.tile--path:hover .path-go { transform: translateX(6px); }

/* ════════════════════════════════════════════════════════════
   CTA closer — span 12 (indigo accent tile)
   ════════════════════════════════════════════════════════════ */
.tile--cta {
  background: var(--tile-ind);
  border-color: transparent;
  padding: clamp(38px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cta-title {
  font-weight: 700;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1.04;
  letter-spacing: -.03em;
  color: var(--on-ind);
  max-width: 18ch;
}
.cta-sub {
  max-width: 56ch;
  font-size: clamp(15px, 1.15vw, 17.5px);
  line-height: 1.62;
  color: var(--on-ind-soft);
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 26px;
  margin-top: 6px;
}
.cta-mail {
  font-size: 15px;
  font-weight: 600;
  color: var(--on-ind);
  padding-bottom: 2px;
  border-bottom: 1px solid var(--ind-line);
  transition: border-color .3s var(--ease);
}
.cta-mail:hover { border-color: var(--on-ind); }
.cta-note {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--on-ind-soft);
}
.cta-glyph {
  position: absolute;
  right: clamp(-50px, -3vw, -24px);
  bottom: clamp(-60px, -4vw, -30px);
  width: clamp(200px, 24vw, 340px);
  color: var(--lav);
  opacity: .42;
  z-index: -1;
  pointer-events: none;
}
.cta-glyph svg { animation: spin 80s linear infinite reverse; }

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.site-footer {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(40px, 5vw, 64px) clamp(16px, 3vw, 32px) 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr repeat(4, 1fr);
  gap: clamp(24px, 3vw, 44px);
  padding-bottom: 36px;
  border-bottom: 1px solid var(--hairline);
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-tag {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 34ch;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col h3 {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 14px;
  color: var(--muted);
  transition: color .25s var(--ease);
}
.footer-col a:hover { color: var(--ink); }
.footer-static {
  font-size: 14px;
  color: var(--muted);
}
.footer-bottom {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--muted);
}

/* ════════════════════════════════════════════════════════════
   SIGNATURE ANIMATION — tiles assemble (pop-in cascade)
   scale .94 → 1 + opacity + slight translateY, staggered.
   Content is fully visible without JS (.is-ready gate).
   ════════════════════════════════════════════════════════════ */
.js .mosaic [data-tile] {
  opacity: 0;
  transform: translateY(22px) scale(.94);
  transition: opacity .6s var(--eo), transform .6s var(--eo);
  transition-delay: calc(var(--pop, 0) * 70ms);
}
.js .mosaic [data-tile].is-in {
  opacity: 1;
  transform: none;
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */

/* ── Tablet / small laptop ─────────────────────────────────── */
@media (max-width: 1080px) {
  .tile--firm     { grid-column: span 7; }
  .tile--baseline { grid-column: span 5; }

  .method-grid  { grid-template-columns: repeat(2, 1fr); }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 880px) {
  /* Stats → 2×2 */
  .tile--stat         { grid-column: span 6; }
  /* Firm + baseline stack */
  .tile--firm         { grid-column: 1 / -1; }
  .tile--baseline     { grid-column: 1 / -1; }
  /* Portfolio → 2 per row */
  .tile--company      { grid-column: span 6; }
  .tile--company-wide { grid-column: span 6; }
  /* Paths → stack 2 + 1 won't read well; keep readable: 1 per row below */
  .tile--path         { grid-column: span 6; }
  .tile--path:last-of-type { grid-column: 1 / -1; }

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

/* ── Mobile — every tile a full-width single column ────────── */
@media (max-width: 720px) {
  :root { --gap: 12px; }

  html { scroll-padding-top: 80px; }

  .nav { display: none; }

  /* All bento tiles become one full-width column, stacked. */
  .tile--hero,
  .tile--stat,
  .tile--firm,
  .tile--baseline,
  .tile--method,
  .tile--sectors,
  .tile--portfolio-head,
  .tile--company,
  .tile--company-wide,
  .tile--path,
  .tile--cta {
    grid-column: 1 / -1;
  }

  /* Inner sub-grids also collapse to a single column. */
  .method-grid,
  .sectors-grid {
    grid-template-columns: 1fr;
  }

  .tile--stat { min-height: 0; }
  .tile--company,
  .tile--path { min-height: 0; }

  .tile--portfolio-head { flex-direction: column; align-items: flex-start; }
  .btn--portfolio { width: 100%; justify-content: center; }

  .hero-cta .btn { flex: 1; justify-content: center; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 6px; }
}

/* ── Tiny phones ───────────────────────────────────────────── */
@media (max-width: 380px) {
  body { font-size: 15px; }
  .header-inner { gap: 12px; }
  .logo { font-size: 15px; }
  .btn-apply { padding: 8px 14px; font-size: 13px; }
  .tile { padding: 22px; }
  .tile--hero { padding: 28px 22px; }
}

/* ════════════════════════════════════════════════════════════
   REDUCED MOTION — neutralise all movement, keep content visible
   ════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .js .mosaic [data-tile] {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-glyph svg,
  .cta-glyph svg { animation: none !important; }
}


/* ╔═════════════════════════════════════════════════════════════╗
   ║  INTERIOR PAGES  —  apply · portfolio · detail             ║
   ║  Appended below the home styles. No existing rule touched. ║
   ╚═════════════════════════════════════════════════════════════╝ */

/* ════════════════════════════════════════════════════════════
   INTERIOR LAYOUT SHELL
   .ip-main is the <main> wrapper on every interior page.
   Provides a centred, padded vertical scroll column.
   ════════════════════════════════════════════════════════════ */
.ip-main {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 48px) clamp(16px, 3vw, 32px) 0;
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 5vw, 72px);
}

/* ── Interior hero band ─────────────────────────────────────── */
.ip-hero {
  background: var(--tile-cream);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: clamp(40px, 6vw, 80px) clamp(30px, 4vw, 60px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
.ip-hero--ind {
  background: var(--tile-ind);
  border-color: transparent;
}
.ip-hero-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 56ch;
}
.ip-title {
  font-weight: 700;
  font-size: clamp(32px, 4.4vw, 58px);
  line-height: 1.06;
  letter-spacing: -.03em;
  color: var(--ink);
  margin: 0;
}
.ip-title--light { color: var(--on-ind); }
.ip-sub {
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}
.ip-sub--light { color: var(--on-ind-soft); }
.ip-glyph {
  flex-shrink: 0;
  width: clamp(100px, 14vw, 180px);
  color: var(--lav);
  opacity: .55;
  pointer-events: none;
}
.ip-glyph svg { animation: spin 90s linear infinite; }

/* ── Section wrapper ────────────────────────────────────────── */
.ip-section {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3vw, 36px);
}
.ip-section-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ip-section-title {
  font-weight: 700;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.16;
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 0;
}

/* ════════════════════════════════════════════════════════════
   APPLY PAGE
   ════════════════════════════════════════════════════════════ */

/* Three-path strip below the hero */
.ip-paths-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.ip-path-tile {
  background: var(--tile);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  padding: clamp(20px, 2vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.ip-path-tile--active {
  background: var(--tile-lav);
  border-color: transparent;
}
.ip-path-tag {
  align-self: flex-start;
  padding: 4px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--ink) 10%, transparent);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink);
}
.ip-path-tile--active .ip-path-tag {
  background: color-mix(in srgb, #fff 50%, transparent);
}
.ip-path-line {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}
.ip-path-tile--active .ip-path-line { color: var(--ink); }

/* Form + aside two-column layout */
.ip-form-wrap {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: clamp(24px, 3vw, 40px);
  align-items: flex-start;
}
.ip-form-card {
  background: var(--tile);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: clamp(28px, 3.5vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Tab row */
.ap-tabs {
  display: flex;
  gap: 6px;
  background: var(--tile-cream);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 5px;
  width: max-content;
}
.atab {
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 999px;
  padding: 8px 22px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.atab:hover { color: var(--ink); }
.atab--on,
.atab.atab--on {
  background: var(--ink);
  color: var(--bg);
}
.atab:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
}

/* Form fields */
.ap-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ap-panel { display: contents; }
.ap-panel[hidden] { display: none; }
.ap-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.ap-label {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.ap-label--full { grid-column: 1 / -1; }
.ap-label-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .01em;
}
.ap-label-text abbr {
  text-decoration: none;
  color: var(--accent);
  margin-left: 2px;
}
.ap-label input,
.ap-label select,
.ap-label textarea {
  appearance: none;
  background: var(--bg);
  border: 1px solid var(--hairline-2);
  border-radius: 10px;
  padding: 11px 14px;
  font-family: var(--font);
  font-size: 14.5px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.5;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
  width: 100%;
}
.ap-label input:focus,
.ap-label select:focus,
.ap-label textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
}
.ap-label textarea { resize: vertical; min-height: 130px; }
.ap-label select { cursor: pointer; }

.ap-errors {
  background: color-mix(in srgb, #e55 12%, transparent);
  border: 1px solid color-mix(in srgb, #e55 30%, transparent);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 13.5px;
  color: #b01010;
}
.ap-errors ul { margin: 0; padding-left: 18px; display: flex; flex-direction: column; gap: 4px; }

.ap-form-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 4px;
}
.ap-note {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  margin: 0;
}
.ap-submit { padding: 13px 28px; }

/* Confirmation message */
.ap-thanks {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: clamp(20px, 3vw, 36px) 0;
}
.ap-thanks[hidden] { display: none; }
.ap-thanks-icon { color: var(--accent); }
.ap-thanks-title {
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 0;
}
.ap-thanks-body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
  max-width: 52ch;
}

/* Aside info panel */
.ip-form-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ip-aside-card {
  background: var(--tile);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  padding: clamp(20px, 2.5vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ip-aside-card--accent {
  background: var(--tile-ind);
  border-color: transparent;
}
.ip-aside-title {
  font-weight: 700;
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: -.018em;
  color: var(--ink);
  margin: 0;
}
.ip-aside-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.ip-aside-list li {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--hairline);
}
.ip-aside-list li:last-child { border-bottom: none; padding-bottom: 0; }
.ip-aside-list strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.ip-aside-list p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}
.ip-aside-eyebrow {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--on-ind-soft);
  margin: 0;
}
.ip-aside-stat {
  font-weight: 700;
  font-size: clamp(44px, 5vw, 62px);
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--on-ind);
  margin: 0;
}
.ip-aside-stat span {
  font-size: .4em;
  letter-spacing: -.01em;
  color: var(--on-ind-soft);
  margin-left: 4px;
}
.ip-aside-caption {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--on-ind-soft);
  margin: 0;
}
.ip-aside-mail {
  font-size: 14px;
  font-weight: 600;
  color: var(--on-ind);
  border-bottom: 1px solid var(--ind-line);
  padding-bottom: 2px;
  transition: border-color .25s var(--ease);
  align-self: flex-start;
}
.ip-aside-mail:hover { border-color: var(--on-ind); }

/* ════════════════════════════════════════════════════════════
   PORTFOLIO LIST PAGE
   ════════════════════════════════════════════════════════════ */

/* Stats row in the hero (portfolio page) */
.port-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-shrink: 0;
  padding: clamp(18px, 2.5vw, 26px) clamp(22px, 2.5vw, 32px);
  background: color-mix(in srgb, var(--tile-ind) 55%, var(--lav));
  border-radius: var(--radius-sm);
  border: 1px solid var(--ind-line);
}
.port-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.port-stat-num {
  font-weight: 700;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--on-ind);
  font-variant-numeric: tabular-nums;
}
.port-stat-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--on-ind-soft);
}

/* Company cards grid */
.port-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}
.port-grid--pipeline { grid-template-columns: repeat(2, 1fr); }
.port-grid--three    { grid-template-columns: repeat(3, 1fr); }

.port-card {
  background: var(--tile);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: clamp(22px, 2.2vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  min-height: 200px;
  transition: transform .38s var(--ease), box-shadow .38s var(--ease), border-color .25s;
}
.port-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px -18px rgba(43, 38, 64, .40);
  border-color: var(--accent);
}
.port-card--launched { background: var(--tile); }
.port-card--pipeline { background: var(--tile-cream); }
.port-card--wide { grid-column: span 2; }

.port-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.port-num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--accent);
}
.port-badge {
  padding: 4px 11px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  background: var(--tile-cream);
  color: var(--muted);
  border: 1px solid var(--hairline);
  white-space: nowrap;
}
.port-badge--live {
  background: var(--tile-lav);
  color: var(--ink);
  border-color: transparent;
}
.port-name {
  font-weight: 700;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.06;
  letter-spacing: -.022em;
  color: var(--ink);
  margin: 0;
}
.port-tagline {
  font-size: 13.5px;
  line-height: 1.52;
  color: var(--muted);
  margin: 0;
}
.port-meta {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--hairline);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .05em;
  color: var(--accent);
  margin-bottom: 0;
}
.port-go {
  position: absolute;
  bottom: clamp(18px, 2vw, 26px);
  right: clamp(18px, 2vw, 26px);
  font-weight: 700;
  font-size: 18px;
  color: var(--accent);
  transition: transform .3s var(--eo);
}
.port-card:hover .port-go { transform: translateX(5px); }

/* ════════════════════════════════════════════════════════════
   PORTFOLIO DETAIL PAGE
   ════════════════════════════════════════════════════════════ */

/* Breadcrumb */
.det-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}
.det-breadcrumb a {
  color: var(--accent);
  transition: color .2s var(--ease);
}
.det-breadcrumb a:hover { color: var(--ink); }
.det-breadcrumb span[aria-hidden] { color: var(--muted); }

/* Hero band */
.det-hero {
  background: var(--tile-cream);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: clamp(38px, 5.5vw, 70px) clamp(30px, 4vw, 60px);
  position: relative;
  overflow: hidden;
}
.det-hero-inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 60ch;
}
.det-hero-top {
  display: flex;
  align-items: center;
  gap: 14px;
}
.det-num {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--accent);
}
.det-name {
  font-weight: 700;
  font-size: clamp(38px, 5.5vw, 72px);
  line-height: 1.03;
  letter-spacing: -.035em;
  color: var(--ink);
  margin: 0;
}
.det-tagline {
  font-size: clamp(16px, 1.35vw, 20px);
  font-weight: 500;
  line-height: 1.4;
  color: var(--muted);
  margin: 0;
}
.det-meta {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
}

/* Lede pull-quote */
.det-lede-wrap {
  border-left: 3px solid var(--accent);
  padding-left: clamp(18px, 2.5vw, 28px);
}
.det-lede {
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 500;
  line-height: 1.62;
  color: var(--ink);
  margin: 0;
  max-width: 72ch;
}

/* Two-column body */
.det-body {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: clamp(28px, 3.5vw, 52px);
  align-items: flex-start;
}
.det-long {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.det-prose {
  font-size: clamp(15px, 1.05vw, 16.5px);
  line-height: 1.75;
  color: var(--muted);
  margin: 0;
}
.det-section-title {
  font-weight: 700;
  font-size: clamp(16px, 1.3vw, 19px);
  letter-spacing: -.015em;
  color: var(--ink);
  margin: 0 0 14px 0;
}

/* Key figures */
.det-targets { display: flex; flex-direction: column; }
.det-targets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
}
.det-target {
  background: var(--tile-cream);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  padding: clamp(16px, 1.6vw, 22px);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.det-target-num {
  font-weight: 700;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1;
  letter-spacing: -.035em;
  color: var(--accent);
}
.det-target-label {
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--muted);
}

/* Services pills */
.det-services { display: flex; flex-direction: column; }
.det-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.det-pills li {
  padding: 7px 15px;
  background: var(--tile-cream);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  transition: background .25s var(--ease), border-color .25s;
}
.det-pills li:hover {
  background: var(--tile-lav);
  border-color: transparent;
}

/* Leadership */
.det-leadership { display: flex; flex-direction: column; }
.det-team {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.det-person {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--hairline);
}
.det-person:first-child { padding-top: 0; }
.det-person-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}
.det-person-role {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  text-align: right;
}

/* Aside sidebar */
.det-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: calc(72px + 24px);
}
.det-aside-card {
  background: var(--tile);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  padding: clamp(18px, 2vw, 24px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.det-aside-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
}
.det-glance-dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0;
}
.det-glance-dl dt {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 12px 8px 0;
  border-bottom: 1px solid var(--hairline);
}
.det-glance-dl dd {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  padding: 8px 0;
  border-bottom: 1px solid var(--hairline);
  margin: 0;
}
.det-glance-dl dt:last-of-type,
.det-glance-dl dd:last-child {
  border-bottom: none;
}
.det-glance-dl a {
  color: var(--accent);
  transition: color .2s var(--ease);
}
.det-glance-dl a:hover { color: var(--ink); }

/* Other ventures list */
.det-others {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.det-other-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  transition: color .2s var(--ease);
}
.det-other-link:last-child { border-bottom: none; }
.det-other-link:hover { color: var(--accent); }
.det-other-name { flex: 1; }
.det-other-badge {
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--tile-cream);
  color: var(--muted);
  border: 1px solid var(--hairline);
  white-space: nowrap;
}
.det-other-badge--live {
  background: var(--tile-lav);
  color: var(--ink);
  border-color: transparent;
}

/* ════════════════════════════════════════════════════════════
   SHARED CTA BAND (apply + portfolio + detail pages)
   ════════════════════════════════════════════════════════════ */
.ip-cta {
  background: var(--tile-ind);
  border-radius: var(--radius);
  padding: clamp(40px, 5.5vw, 72px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.ip-cta-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 56ch;
}
.ip-cta-title {
  font-weight: 700;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.06;
  letter-spacing: -.03em;
  color: var(--on-ind);
  margin: 0;
}
.ip-cta-sub {
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.62;
  color: var(--on-ind-soft);
  margin: 0;
}
.ip-cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
}
.ip-cta-mail {
  font-size: 15px;
  font-weight: 600;
  color: var(--on-ind);
  border-bottom: 1px solid var(--ind-line);
  padding-bottom: 2px;
  transition: border-color .3s var(--ease);
}
.ip-cta-mail:hover { border-color: var(--on-ind); }
.ip-cta-note {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--on-ind-soft);
  margin: 0;
}
.ip-cta-glyph {
  position: absolute;
  right: clamp(-50px, -3vw, -24px);
  bottom: clamp(-60px, -4vw, -30px);
  width: clamp(180px, 22vw, 300px);
  color: var(--lav);
  opacity: .38;
  z-index: -1;
  pointer-events: none;
}
.ip-cta-glyph svg { animation: spin 80s linear infinite reverse; }
.ip-cta :focus-visible { outline-color: var(--on-ind); }

/* ════════════════════════════════════════════════════════════
   PORTFOLIO PAGE — stat strip in hero
   ════════════════════════════════════════════════════════════ */
.port-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 28px;
  align-self: center;
  flex-shrink: 0;
  background: color-mix(in srgb, var(--tile-ind) 65%, var(--lav));
  border: 1px solid var(--ind-line);
  border-radius: var(--radius-sm);
  padding: clamp(18px, 2.5vw, 26px) clamp(22px, 2.5vw, 30px);
}
.port-stat-num {
  font-weight: 700;
  font-size: clamp(26px, 2.8vw, 36px);
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--on-ind);
  font-variant-numeric: tabular-nums;
}
.port-stat-label {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--on-ind-soft);
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — interior pages
   ════════════════════════════════════════════════════════════ */

@media (max-width: 1080px) {
  .ip-form-wrap { grid-template-columns: 1fr 280px; }
  .det-body     { grid-template-columns: 1fr 260px; }
  .port-grid    { grid-template-columns: repeat(2, 1fr); }
  .port-grid--three { grid-template-columns: repeat(2, 1fr); }
  .port-card--wide  { grid-column: span 2; }
}

@media (max-width: 880px) {
  .ip-paths-strip   { grid-template-columns: 1fr 1fr; }
  .ip-form-wrap     { grid-template-columns: 1fr; }
  .ip-form-aside    { display: none; }
  .port-stats       { display: none; }
  .ip-hero          { flex-direction: column; gap: 24px; }
  .det-body         { grid-template-columns: 1fr; }
  .det-aside        { position: static; display: grid; grid-template-columns: 1fr 1fr; }
  .port-grid        { grid-template-columns: 1fr 1fr; }
  .port-grid--pipeline { grid-template-columns: 1fr; }
  .port-grid--three { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .ip-paths-strip   { grid-template-columns: 1fr; }
  .ap-tabs          { width: 100%; justify-content: space-between; }
  .ap-row           { grid-template-columns: 1fr; }
  .port-grid        { grid-template-columns: 1fr; }
  .port-grid--three { grid-template-columns: 1fr; }
  .port-card--wide  { grid-column: auto; }
  .det-body         { grid-template-columns: 1fr; }
  .det-aside        { display: flex; flex-direction: column; }
  .det-targets-grid { grid-template-columns: repeat(2, 1fr); }
  .det-person       { flex-direction: column; align-items: flex-start; gap: 3px; }
  .det-person-role  { text-align: left; }
  .ip-cta           { padding: clamp(28px, 5vw, 44px) clamp(20px, 4vw, 32px); }
}

@media (max-width: 380px) {
  .ip-hero { padding: 28px 20px; }
  .det-hero { padding: 28px 20px; }
  .ap-tabs { gap: 3px; padding: 4px; }
  .atab { padding: 7px 14px; font-size: 13px; }
  .det-targets-grid { grid-template-columns: 1fr; }
}
