/* ============================================================
   JETPACKS! — VERSION 2 ("Brand Refresh") stylesheet
   2026-07-15 redesign — matches Figma frame 123:40.
   Navy hero + industries + footer; light cream panels for
   Who-we-are / Service-lines / Our-work and Contact. Reuses
   tokens.css (fonts + colors). Iridescent PNGs are transparent,
   so shapes need no blend mode — parallax is a plain transform.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #0c1038;
  color: var(--fg-on-dark);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: rgba(154,84,255,0.45); color: #fff; }

.v2-root {
  position: relative; overflow: clip; min-height: 100vh;
  /* Shared content system — every section's content aligns to this column.
     --v2-col is the content width; --v2-pad is the small-screen side gutter.
     A container maxes at col + 2·pad so its inner content box is exactly col. */
  --v2-col: 1280px;
  --v2-pad: clamp(20px, 4vw, 48px);
}

/* Ambient canvas — layered soft glows fixed behind everything */
.v2-bg {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 40% at 78% 6%,  rgba(154,84,255,0.22), transparent 70%),
    radial-gradient(55% 45% at 12% 24%, rgba(26,48,183,0.26), transparent 72%),
    radial-gradient(50% 40% at 88% 78%, rgba(154,84,255,0.16), transparent 70%),
    #0c1038;
}
.v2-root > * { position: relative; z-index: 1; }

.v2-wrap, .v2-container {
  width: 100%; max-width: calc(var(--v2-col) + 2 * var(--v2-pad));
  margin: 0 auto; padding: 0 var(--v2-pad);
}

/* Reveal-on-scroll */
.v2-reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.v2-reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .v2-reveal { opacity: 1; transform: none; transition: none; } }
/* Staggered child reveal: the module's pieces cascade up+in once its section scrolls into view.
   The section itself is a trigger only (gets .in via useReveal); the children carry the motion. */
.v2-stagger > * { opacity: 0; transform: translateY(20px); transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out); }
.v2-svc-sec.in .v2-stagger > * { opacity: 1; transform: none; }
.v2-svc-sec.in .v2-stagger > *:nth-child(2) { transition-delay: 0.10s; }
.v2-svc-sec.in .v2-stagger > *:nth-child(3) { transition-delay: 0.20s; }
.v2-svc-sec.in .v2-stagger > *:nth-child(4) { transition-delay: 0.30s; }
.v2-svc-sec.in .v2-stagger > *:nth-child(5) { transition-delay: 0.40s; }
.v2-svc-sec.in .v2-stagger > *:nth-child(6) { transition-delay: 0.50s; }
@media (prefers-reduced-motion: reduce) { .v2-stagger > * { opacity: 1; transform: none; transition: none; } }

/* Shared eyebrow */
.v2-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.22em;
  text-transform: uppercase;
}
.v2-eyebrow--dark  { color: var(--fg-on-dark-2); }
.v2-eyebrow--light { color: var(--jp-blue-secondary); }

/* Green button */
.v2-greenbtn {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--jp-green); color: #062015;
  font-family: var(--font-sans); font-weight: 600; font-size: 14px;
  padding: 13px 22px; border: none; border-radius: 999px; cursor: pointer;
  transition: background var(--t-fast) var(--ease-out), transform var(--t-fast) var(--ease-out), box-shadow var(--t-base) var(--ease-out);
  box-shadow: 0 8px 30px -12px rgba(48,214,123,0.55); white-space: nowrap;
}
.v2-greenbtn:hover { background: #46e58c; transform: translateY(-1px); box-shadow: 0 12px 34px -10px rgba(48,214,123,0.7); }
.v2-greenbtn:disabled { opacity: 0.7; cursor: default; transform: none; }

/* Float animations for shapes (translate only — base rotation lives on the
   wrapper so parallax + rotation compose without clobbering each other) */
@keyframes v2FloatA { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes v2FloatB { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-22px); } }
@keyframes v2FloatC { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.v2-shape { pointer-events: none; }
.v2-shape img { display: block; width: 100%; height: auto; }
.v2-float-a { animation: v2FloatA 9s ease-in-out infinite; }
.v2-float-b { animation: v2FloatB 11s ease-in-out infinite; }
.v2-float-c { animation: v2FloatC 8s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) { .v2-float-a, .v2-float-b, .v2-float-c { animation: none; } }

/* ---------- Nav ---------- */
.v2-nav-outer { position: fixed; top: 0; left: 0; right: 0; z-index: 80; transition: background var(--t-base) var(--ease-out); }
.v2-nav {
  position: relative; z-index: 2;  /* keeps logo + burger above the mobile menu panel */
  max-width: calc(var(--v2-col) + 2 * var(--v2-pad)); margin: 0 auto; padding: 20px var(--v2-pad);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
/* Hamburger + mobile menu: hidden on desktop, enabled ≤620 (see media query). */
.v2-nav-burger, .v2-nav-mobile { display: none; }
.v2-nav-links { display: flex; align-items: center; gap: clamp(14px, 2.6vw, 40px); }
.v2-nav-link {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-on-dark); transition: color var(--t-fast) var(--ease-out);
}
.v2-nav-link:hover { color: var(--jp-green); }
/* Our services dropdown */
.v2-nav-dd { position: relative; }
.v2-nav-dd-btn { background: none; border: none; cursor: pointer; padding: 0; display: inline-flex; align-items: center; gap: 5px; }
.v2-nav-dd-caret { font-size: 9px; opacity: 0.7; }
/* transparent bridge: touches the button (top:100%) with 12px of hoverable top padding so the
   pointer never crosses a dead gap between button and menu */
.v2-nav-dd-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%); padding-top: 12px;
  z-index: 60;
}
.v2-nav-dd-card {
  background: rgba(9,12,32,0.96); backdrop-filter: blur(14px) saturate(140%); -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.12); border-radius: 14px; padding: 8px; min-width: 220px;
  display: flex; flex-direction: column; gap: 2px; box-shadow: 0 24px 60px -28px rgba(0,0,0,0.8);
}
.v2-nav-dd-item {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--fg-on-dark-2); padding: 11px 14px; border-radius: 9px; white-space: nowrap;
  transition: background var(--t-fast) var(--ease-out), color var(--t-fast) var(--ease-out);
}
.v2-nav-dd-item:hover { background: rgba(255,255,255,0.07); color: var(--jp-green); }

/* ---------- Hero collage ---------- */
.v2-hero { position: relative; padding-top: 82px; }
/* Full-bleed horizontal rules — overflow the content column to the viewport
   edges. Positioned over the stage area (below the 82px nav band). */
.v2-hero-lines { position: absolute; top: 82px; left: 0; right: 0; bottom: 0; z-index: 0; pointer-events: none; }
/* full-bleed rules stretch across the whole (full-width) lines layer */
.v2-gridline--bleed { left: 0; right: 0; width: auto; }
/* half-bleed: keeps its column-relative left start, bleeds to the browser's
   right edge. right = -(viewport-stage)/2 = the right gutter; clipped by .v2-root. */
.v2-gridline--bleed-right { right: calc(50% - 50vw); width: auto; }
.v2-hero-stage {
  position: relative; width: 100%; margin: 0 auto;
  aspect-ratio: 1200 / 771; container-type: inline-size;
}
.v2-hero-texture { position: absolute; z-index: 0; pointer-events: none;
  background-image: repeating-linear-gradient(-45deg, rgba(17,32,136,0.85) 0 1px, transparent 1px 7px); }
.v2-hero-band { position: absolute; left: 0; right: 0; bottom: 0; height: 15.6%; z-index: 0; pointer-events: none;
  background-image: repeating-linear-gradient(-45deg, rgba(17,32,136,0.85) 0 1px, transparent 1px 7px);
  border-top: 1px solid var(--jp-blue-secondary); border-bottom: 1px solid var(--jp-blue-secondary); }

.v2-gridline { position: absolute; z-index: 0; pointer-events: none; background: var(--jp-blue-secondary); }
.v2-gridline--h { height: 1px; }
.v2-gridline--v { width: 1px; }
.v2-gridline.is-accent { background: var(--jp-blue-primary); }

.v2-cline { position: absolute; z-index: 1; pointer-events: none; }
.v2-cline--v { width: 1px; background: linear-gradient(var(--jp-purple), rgba(154,84,255,0.15)); }
.v2-cline--h { height: 1px; background: linear-gradient(90deg, rgba(154,84,255,0.15), var(--jp-purple)); }
.v2-cline-arrow { position: absolute; width: 13px; height: 13px; color: var(--jp-purple); }
.v2-cline-arrow--down { bottom: -7px; left: 50%; transform: translateX(-50%); }
.v2-cline-arrow--right { right: -7px; top: 50%; transform: translateY(-50%); }

.v2-hero-photo { position: absolute; z-index: 1; overflow: hidden; border-radius: 3px; border: 1px solid rgba(243,245,234,0.10); }
.v2-hero-photo img { display: block; width: 100%; height: auto; }
.v2-hero-shape { position: absolute; }

.v2-hero-head { position: absolute; z-index: 3; left: 32px; top: 51%; width: 54%; }
.v2-hero-eyebrow { display: block; font-family: var(--font-mono); font-size: clamp(10px, 1.15cqw, 15px);
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--fg-on-dark-2); margin-bottom: 1.8cqw; }
.v2-h1 { margin: 0; color: var(--fg-on-dark); }
/* Whole headline is one uniform font (same family / weight / size) */
.v2-h1-light, .v2-h1-bold { display: block; font-family: var(--font-display); font-weight: 600;
  font-size: 4.5cqw; line-height: 1.05; letter-spacing: -0.015em; }
.v2-h1-bold { margin-top: 0.5cqw; }

.v2-hero-aside { position: absolute; z-index: 3; left: 64%; top: 71%; }
.v2-hero-cta { font-size: clamp(12px, 1.3cqw, 15px); }

/* ---------- Light panel (Who-we-are + Service lines + Our work) ---------- */
.v2-lightwrap {
  z-index: 2; /* stay above the industries pattern band that reaches up under this panel */
  /* pull up so the panel overlaps the bottom half of the hero's striped band.
     band height ≈ 15.6% of the hero (≈128px at full col); half ≈ 64px ≈ 5vw below the cap. */
  position: relative; margin: calc(-1 * min(64px, 5vw)) auto 0;
  width: 100%; max-width: calc(var(--v2-col) + 2 * var(--v2-pad)); padding: 0 var(--v2-pad);
}
.v2-straddle-torus { position: absolute; }
.v2-lightpanel {
  --lp-padx: clamp(24px, 5vw, 60px);
  position: relative; width: 100%;
  background: linear-gradient(180deg, #f6f7ef 0%, #eef0e6 100%);
  border-radius: var(--r-xl) var(--r-xl) var(--r-xl) var(--r-xl);
  padding: clamp(40px, 6vw, 78px) var(--lp-padx) clamp(48px, 7vw, 92px);
  overflow: clip;
  box-shadow: 0 40px 120px -60px rgba(0,0,0,0.9);
}

/* Who we are */
.v2-who { position: relative; z-index: 2; }
.v2-who-row { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(24px, 5vw, 60px); align-items: end; }
.v2-who-statement {
  font-family: var(--font-display); font-weight: 400; font-size: clamp(20px, 2.4vw, 33px);
  line-height: 1.18; letter-spacing: -0.01em; color: var(--jp-blue-secondary); margin: 0;
}
.v2-who-statement strong { font-weight: 700; }
.v2-who-more {
  display: inline-flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--font-sans); font-weight: 600; font-size: clamp(15px, 1.3vw, 18px);
  color: var(--jp-blue-secondary); padding-bottom: 14px; align-self: end;
  transition: gap var(--t-base) var(--ease-out), color var(--t-base) var(--ease-out);
}
.v2-who-more svg { transition: transform var(--t-base) var(--ease-out); }
.v2-who-more:hover { gap: 24px; color: var(--jp-purple); }
.v2-who-more:hover svg { transform: translateX(4px); }
.v2-who-rules { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(24px, 5vw, 60px); margin-top: 22px; }
.v2-who-rules span { display: block; height: 2px; background: var(--jp-blue-secondary); }
.v2-who-capsule { position: absolute; }

/* Service lines */
.v2-svc { position: relative; z-index: 2; margin-top: clamp(48px, 7vw, 90px); margin-bottom: clamp(22px, 3.3vw, 46px); }
/* soft blue + purple radial glows washing the service-lines area (behind the text) */
.v2-svc::before {
  content: ''; position: absolute; z-index: -1; pointer-events: none;
  left: calc(-1 * var(--lp-padx)); right: calc(-1 * var(--lp-padx));
  top: clamp(-40px, -4vw, -80px); bottom: clamp(-60px, -8vw, -140px);
  background:
    radial-gradient(46% 58% at 27% 46%, rgba(150, 192, 255, 0.60), transparent 70%),
    radial-gradient(46% 58% at 78% 60%, rgba(202, 174, 255, 0.55), transparent 72%);
}
.v2-sl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 96px); }
.v2-sl-n { display: block; font-family: var(--font-display); font-weight: 700; font-size: clamp(30px, 3.4vw, 46px); line-height: 1; letter-spacing: -0.01em; color: var(--jp-purple); }
.v2-sl-title { font-family: var(--font-display); font-weight: 700; font-size: var(--t-h2-narrow); line-height: 1.05; letter-spacing: -0.01em; color: var(--jp-blue-secondary); margin: clamp(10px, 1.4vw, 18px) 0 clamp(14px, 1.6vw, 20px); }
.v2-sl-body { font-family: var(--font-sans); font-size: clamp(15px, 1.15vw, 17px); line-height: 1.6; color: var(--fg-on-light-2); margin: 0 0 clamp(20px, 2.4vw, 30px); max-width: 42ch; }
.v2-sl-more { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-sans); font-weight: 600; font-size: clamp(15px, 1.3vw, 18px); color: var(--jp-blue-secondary); text-decoration: none; transition: gap var(--t-base) var(--ease-out), color var(--t-base) var(--ease-out); }
.v2-sl-more:hover { gap: 14px; color: var(--jp-purple); }
/* full-VIEWPORT-width marquee of iridescent shapes, overlapping the panel's bottom edge-to-edge */
.v2-sl-marquee { position: relative; z-index: 3; width: 100vw; margin-left: calc(50% - 50vw);
  margin-top: calc(-1 * clamp(58px, 7vw, 96px)); overflow: hidden; }
.v2-sl-track { display: flex; align-items: center; gap: clamp(28px, 4vw, 64px); width: max-content; padding: clamp(8px, 1.4vw, 18px) 0; animation: v2SlDrift 55s linear infinite; }
.v2-sl-tile { height: clamp(72px, 9vw, 120px); width: auto; display: block; }
@keyframes v2SlDrift { from { transform: translateX(0); } to { transform: translateX(-33.333%); } }
@media (prefers-reduced-motion: reduce) { .v2-sl-track { animation: none; } }

/* Our work */
.v2-work { position: relative; z-index: 2; margin-top: clamp(52px, 7vw, 96px); }
.v2-work-row {
  display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 8px; margin: 0 calc(-1 * clamp(24px, 5vw, 60px));
  padding-left: clamp(24px, 5vw, 60px); padding-right: clamp(24px, 5vw, 60px);
  scrollbar-width: thin;
}
.v2-work-card {
  flex: 0 0 clamp(260px, 30%, 320px); scroll-snap-align: start;
  min-height: 440px; border-radius: var(--r-lg); padding: 30px 28px;
  display: flex; flex-direction: column;
}
.v2-work-card--light { background: #fbfcf6; border: 1px solid var(--border-light); color: var(--fg-on-light); }
.v2-work-card--dark  { background: linear-gradient(160deg, #1a30b7 0%, #112088 100%); color: var(--fg-on-dark); }
.v2-work-card--brand { background: linear-gradient(165deg, #1f39d6 0%, #112088 100%); color: #fff; box-shadow: 0 30px 70px -40px rgba(26,48,183,0.8); }
.v2-work-client { font-family: var(--font-display); font-weight: 700; font-size: var(--t-h3); letter-spacing: -0.01em; margin-bottom: 16px; }
.v2-work-card--light .v2-work-client { color: var(--jp-blue-secondary); }
.v2-work-logo { font-family: var(--font-display); font-weight: 800; font-size: var(--t-h3); letter-spacing: 0.02em; text-transform: uppercase; color: #fff; margin-bottom: 20px; }
.v2-work-body { font-family: var(--font-sans); font-size: 15px; line-height: 1.55; margin: 0; opacity: 0.92; }
.v2-work-card--light .v2-work-body { color: var(--fg-on-light-2); opacity: 1; }
.v2-work-more {
  display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 28px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: #fff;
}
.v2-work-more-rule { flex: 1; height: 1px; background: rgba(255,255,255,0.5); }
.v2-work-cta { display: flex; justify-content: center; margin-top: clamp(36px, 5vw, 56px); }

/* "Some of our work" case-study banner (below Industries): purple card over a faint warehouse photo */
.v2-cw-section { position: relative; padding: clamp(40px, 6vw, 88px) 0 clamp(24px, 4vw, 56px); }
.v2-cw { position: relative; overflow: hidden; isolation: isolate; border-radius: var(--r-xl);
  background: #7c3fd6; padding: clamp(40px, 5.5vw, 80px) clamp(30px, 4vw, 68px); }
.v2-cw::before { content: ''; position: absolute; inset: 0; z-index: 0;
  background: url("assets/v2/logistics.jpg") center / cover no-repeat;
  filter: grayscale(1) brightness(1.2); opacity: 0.3; mix-blend-mode: screen; }
.v2-cw::after { content: ''; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(95deg, rgba(84, 36, 166, 0.62), rgba(84, 36, 166, 0.06) 62%, transparent); }
.v2-cw > * { position: relative; z-index: 1; }
/* same size + style as the "Not your industry" title (.v2-ind-badge .v2-h2) */
.v2-cw-h { font-family: var(--font-display); font-weight: 700; font-size: var(--t-h2-narrow); line-height: 1.02; letter-spacing: -0.015em; color: #fff; margin: 0 0 clamp(24px, 3vw, 42px); }
.v2-cw-row { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(28px, 5vw, 80px); align-items: end; }
.v2-cw-copy { max-width: 62ch; }
.v2-cw-p { font-family: var(--font-sans); font-size: clamp(16px, 1.3vw, 19px); line-height: 1.55; color: rgba(255, 255, 255, 0.92); margin: 0 0 18px; }
.v2-cw-p:last-child { margin-bottom: 0; }
.v2-cw-more { display: flex; align-items: center; justify-content: space-between; gap: 16px; width: 100%; align-self: end;
  font-family: var(--font-display); font-weight: 700; font-size: clamp(15px, 1.2vw, 18px); color: #fff; text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5); padding-bottom: clamp(10px, 1.4vw, 16px);
  transition: gap var(--t-base) var(--ease-out); }
.v2-cw-more:hover { gap: 24px; }

/* ---------- Generic section ---------- */
.v2-section { position: relative; padding: clamp(72px, 10vh, 120px) 0; }
.v2-h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: var(--t-h2); line-height: 1.02; letter-spacing: -0.015em;
  margin: 0; color: var(--fg-on-dark);
}
.v2-lead {
  font-family: var(--font-sans); font-size: clamp(15px, 1.3vw, 18px); line-height: 1.55;
  color: var(--fg-on-dark-2); max-width: 46ch; margin: 0;
}

/* ---------- Industries ---------- */
.v2-ind-section { position: relative; padding-top: clamp(64px, 9vh, 110px); padding-bottom: 0; }
/* home only: 40px gap between the industries "what they share" list and the "some of our work" banner */
.v2-cw-section#work { padding-top: 40px; }
/* diagonal-line pattern band: starts up behind the cream panel's last portion (the gap under the
   "Start a conversation" button) and ends at the image / overlapping box. Full-bleed width. */
.v2-ind-mediawrap { position: relative; margin-bottom: 0; }
/* diagonal-line band: starts high (in the navy margins flanking the cream/white container) and
   ends at the TOP of the navy title box (the ~2-line badge height above the image bottom). */
.v2-ind-mediawrap::before { content: ''; position: absolute; z-index: 0; pointer-events: none;
  left: calc(50% - 50vw); width: 100vw;
  top: calc(-1 * clamp(420px, 55vw, 820px)); bottom: clamp(100px, 11.3vw, 152px);
  background-image: repeating-linear-gradient(-45deg, rgba(26,48,183,0.55) 0 1px, transparent 1px 8px); }
.v2-ind-media { position: relative; z-index: 1; overflow: hidden; aspect-ratio: 1069 / 483; }
.v2-ind-media img { display: block; width: 100%; height: 100%; object-fit: cover; }
/* navy box (= bg colour) overlapping the image's bottom-left; wraps the eyebrow + title */
/* left padding = 0 so the eyebrow + title line up with the image's left edge (= the lead text) */
.v2-ind-badge { position: absolute; left: 0; bottom: 0; z-index: 2; width: max-content; max-width: 90%;
  background: var(--bg-dark); padding: clamp(20px, 2.4vw, 28px) clamp(44px, 4.6vw, 64px) clamp(9px, 0.9vw, 12px) 0; }
.v2-ind-badge .v2-h2 { font-size: var(--t-h2-narrow); }
.v2-ind-copy { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(24px, 5vw, 60px); align-items: start; }
/* lead aligns to the image's left edge (no indent) so the intro block starts where the image does */
.v2-ind-copy .v2-lead { padding-left: 0; }
/* Two columns: title (+ CTA) on the left; the shared-traits list on the right, starting where the
   navy box over the image ENDS (~40% of the content width) and running to the content's right edge.
   No divider, tight gap to the intro copy, so the section reads as one block. 1 col on mobile. */
.v2-share { display: grid; grid-template-columns: 40% 1fr; column-gap: 0; margin-top: clamp(20px, 2.4vw, 30px); align-items: start; }
.v2-share-left { display: flex; flex-direction: column; align-items: flex-start; }
.v2-share-cta { margin-top: clamp(20px, 2.4vw, 30px); }
.v2-share-title { font-family: var(--font-display); font-weight: 700; font-size: var(--t-h3);
  line-height: 1.1; letter-spacing: -0.01em; color: var(--fg-on-dark); margin: 0; }
.v2-share-list { list-style: none; margin: 0; padding: 0; }
.v2-share-item {
  font-family: var(--font-sans); font-size: clamp(15px, 1.25vw, 18px); line-height: 1.5; color: var(--fg-on-dark);
  padding: 22px 0; border-bottom: 1px solid rgba(26,48,183,0.6);
}
.v2-share-item:first-child { padding-top: 0; }
.v2-share-item:last-child { border-bottom: none; }

/* ---------- Contact (light panel) ---------- */
.v2-contact { position: relative; padding: clamp(40px, 6vw, 80px) var(--v2-pad) 0; }
.v2-contactpanel {
  position: relative; width: 100%; max-width: var(--v2-col); margin: 0 auto;
  background: linear-gradient(180deg, #f6f7ef 0%, #eef0e6 100%);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  padding: clamp(44px, 6vw, 86px) clamp(24px, 5vw, 60px) clamp(56px, 8vw, 100px);
  overflow: visible;  /* let the float shapes overflow the panel edges */
}
.v2-contact-cube, .v2-contact-torus { position: absolute; }
.v2-contact-h { font-family: var(--font-display); font-weight: 800; font-size: var(--t-h1);
  line-height: 0.98; letter-spacing: -0.02em; color: var(--jp-blue-secondary); margin: 0 0 clamp(40px, 5vw, 64px); position: relative; z-index: 2; }
.v2-contact-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 0.85fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }

.v2-next { align-self: start; }
.v2-next-head { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--fg-on-light-3); margin-bottom: 20px; }
.v2-next-row { display: grid; grid-template-columns: 34px 1fr; gap: 10px; align-items: start; padding: 18px 0; border-bottom: 1px solid var(--border-light); }
.v2-next-row:last-child { border-bottom: none; }
.v2-next-n { font-family: var(--font-mono); font-size: 13px; font-weight: 600; color: var(--jp-purple); }
.v2-next-l { font-family: var(--font-sans); font-size: clamp(14px, 1.15vw, 16px); line-height: 1.45; color: var(--fg-on-light); }

.v2-form { display: flex; flex-direction: column; gap: 18px; }
.v2-field { display: flex; flex-direction: column; gap: 9px; }
.v2-field-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-on-light-3);
  display: flex; align-items: baseline; gap: 8px; }
.v2-field-opt { text-transform: none; letter-spacing: 0.02em; opacity: 0.7; font-size: 10px; }
.v2-input {
  font-family: var(--font-sans); font-size: 16px; color: var(--fg-on-light);
  background: #fbfcf6; border: 1px solid var(--border-light);
  border-radius: var(--r-md); padding: 16px 18px; width: 100%;
  transition: border-color var(--t-fast) var(--ease-out), box-shadow var(--t-fast) var(--ease-out);
}
.v2-input:focus { outline: none; border-color: var(--jp-green); box-shadow: 0 0 0 3px rgba(48,214,123,0.18); }
.v2-input::placeholder { color: #9a9d94; font-style: italic; }
.v2-textarea { resize: vertical; min-height: 110px; line-height: 1.5; }
.v2-submit { width: 100%; justify-content: center; margin-top: 6px; padding: 18px 28px; font-size: 15px; }

/* ---------- Footer ---------- */
.v2-footer {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px;
  padding: 26px var(--v2-pad); max-width: calc(var(--v2-col) + 2 * var(--v2-pad)); margin: 0 auto;
}
.v2-foot-logo { height: 20px; opacity: 0.9; justify-self: center; }
.v2-foot-meta { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-on-dark-3); }
.v2-foot-links { justify-self: end; }
.v2-foot-links a { transition: color var(--t-fast); }
.v2-foot-links a:hover { color: var(--fg-on-dark); }

/* ---------- Version switcher ---------- */
.v2-switch {
  position: fixed; right: 20px; bottom: 20px; z-index: 200;
  display: inline-flex; gap: 4px; padding: 5px; border-radius: 999px;
  background: rgba(10,13,34,0.8); border: 1px solid rgba(154,132,255,0.32);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 12px 34px -14px rgba(0,0,0,0.8);
}
.v2-switch-btn {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; font-weight: 600;
  color: var(--fg-on-dark-2); padding: 8px 16px; border-radius: 999px; transition: color 160ms, background 160ms;
}
.v2-switch-btn:hover { color: var(--fg-on-dark); }
.v2-switch-btn.is-active { background: var(--jp-green); color: #062015; }

/* ---------- Service line pages ---------- */
.v2-svc-hero { padding: clamp(120px, 15vw, 190px) 0 clamp(48px, 7vw, 88px); position: relative; }
/* Video-backed hero (Gen AI): a SHORT muted looping clip band (darkened + brand-tinted + grainy);
   the title lives in a cream panel that overlaps this band's bottom. */
.v2-svc-hero--video { overflow: hidden; isolation: isolate; padding: 0; min-height: clamp(340px, 42vw, 500px); }
/* Cream title panel overlapping the bottom of the video band */
.v2-svc-herohead-wrap {
  position: relative; z-index: 3;
  width: 100%; max-width: calc(var(--v2-col) + 2 * var(--v2-pad));
  margin: calc(-1 * clamp(104px, 13vw, 190px)) auto 0;
  padding: 0 var(--v2-pad);
}
.v2-svc-herohead { padding: clamp(36px, 5vw, 60px) clamp(28px, 4vw, 56px) clamp(36px, 5vw, 56px); }
.v2-svc-herohead .v2-svc-h1 { color: var(--jp-blue-secondary); max-width: 16ch; margin: clamp(14px, 1.8vw, 22px) 0 clamp(28px, 4vw, 44px); }
.v2-svc-herohead-foot { display: grid; grid-template-columns: 1fr auto; gap: clamp(24px, 4vw, 56px); align-items: end; }
.v2-svc-herohead .v2-svc-sub { color: var(--jp-blue-secondary); opacity: 0.88; margin: 0; max-width: 48ch; }
.v2-svc-herocta { white-space: nowrap; }
.v2-svc-hero-media { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.v2-svc-hero-media video {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: brightness(0.62) saturate(0.85) contrast(1.05);
}
/* film grain matching the iridescent shapes' noise */
.v2-svc-hero-grain {
  position: absolute; inset: 0; mix-blend-mode: overlay; opacity: 0.22; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 140px 140px;
}
/* legibility veil + brand glows (navy heavier on the left where the text sits) */
.v2-svc-hero-veil {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(12,16,56,0.92) 0%, rgba(12,16,56,0.6) 52%, rgba(12,16,56,0.32) 100%),
    radial-gradient(60% 55% at 80% 16%, rgba(154,84,255,0.30), transparent 60%),
    radial-gradient(55% 55% at 8% 92%, rgba(26,48,183,0.32), transparent 62%);
}
.v2-svc-h1 {
  font-family: var(--font-display); font-weight: 800; font-size: var(--t-h1);
  line-height: 1.02; letter-spacing: -0.02em; color: var(--fg-on-dark);
  max-width: 20ch; margin: clamp(16px, 2vw, 24px) 0 clamp(20px, 2.4vw, 28px);
}
.v2-svc-sub {
  font-family: var(--font-sans); font-size: clamp(16px, 1.4vw, 20px); line-height: 1.5;
  color: var(--fg-on-dark-2); max-width: 60ch; margin: 0 0 clamp(28px, 3vw, 40px);
}
.v2-svc-sec { padding: clamp(40px, 5.5vw, 72px) 0; position: relative; }
/* first section's cream panel overlaps the video hero (transparent bg so the video shows beside it) */
/* padding-bottom kept small so the next section ("What we build") sits closer to the panel */
.v2-svc-sec--overlap { background: transparent; position: relative; z-index: 3; padding-top: 0; padding-bottom: clamp(8px, 1.5vw, 20px); }
.v2-svc-sec--overlap .v2-lightpanel { margin-top: calc(-1 * clamp(56px, 8vw, 120px)); }
.v2-svc-panel { padding: clamp(36px, 5vw, 72px) clamp(24px, 4vw, 60px); }
/* label-left / content-right row, matching the who-we-are / industries rhythm */
.v2-svc-row { display: grid; grid-template-columns: minmax(0, 300px) 1fr; gap: clamp(28px, 5vw, 80px); align-items: start; }
.v2-svc-label {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--jp-purple); margin: 0;
}
.v2-svc-p { font-family: var(--font-sans); font-size: clamp(16px, 1.2vw, 18px); line-height: 1.6; margin: 0 0 18px; max-width: 64ch; }
.v2-svc-p:last-child { margin-bottom: 0; }
.v2-svc-p--strong { font-weight: 700; }
/* two-column block (e.g. "The gap"): label + title on top, para 1 left, para 2 right, bottom-aligned */
.v2-svc-colblock .v2-svc-label { display: block; margin-bottom: clamp(14px, 1.8vw, 22px); }
.v2-svc-colblock-title { font-family: var(--font-display); font-weight: 700; font-size: var(--t-h2-narrow); line-height: 1.08; letter-spacing: -0.01em; color: var(--jp-blue-secondary); margin: 0 0 24px; max-width: 22ch; }
.v2-svc-2col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: end; }
.v2-svc-2col .v2-svc-p { margin-bottom: 0; }
/* "The gap": second paragraph sits in a blue callout box on the right */
.v2-svc-gapbox {
  align-self: stretch; display: flex; align-items: flex-end;
  background: var(--jp-blue-primary); border-radius: var(--r-md);
  padding: 16px;
  font-family: var(--font-sans); font-weight: 700; font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.4; color: #fff;
}
/* Split variant ("The gap"): label spans the top; below it the big title (left) and the
   paragraphs (right) share a row so their tops align. */
.v2-svc-split { display: grid; grid-template-columns: 1fr 1fr; column-gap: clamp(40px, 6vw, 100px); align-items: start;
  padding-bottom: clamp(40px, 6vw, 80px); border-bottom: 1px solid rgba(26, 48, 183, 0.6); }
/* no bottom divider + no extra bottom space (used by AI Team Enablement's "The grind") */
.v2-svc-split--nodiv { border-bottom: none; padding-bottom: 0; }
.v2-svc-split-label { grid-column: 1 / -1; display: block; margin-bottom: clamp(20px, 2.6vw, 34px); }
.v2-svc-split-left .v2-svc-colblock-title { margin: 0; max-width: 16ch; }
.v2-svc-split-right .v2-svc-p { max-width: none; }
.v2-svc-split-right .v2-svc-p + .v2-svc-p { margin-top: clamp(20px, 2vw, 28px); }

/* AI Team Enablement: 2×2 region. Row 1: image | steps (equal height — steps vertically centered,
   image fills the row so both occupy the same height). Row 2: heading/CTA | outro (full-width divider
   above them). */
.v2-enbl { --enbl-gap: clamp(40px, 6vw, 100px); display: grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto; column-gap: var(--enbl-gap); row-gap: clamp(28px, 4vw, 52px); align-items: stretch; }
.v2-enbl-visual { grid-column: 1; grid-row: 1; position: relative; }
.v2-enbl-steps { grid-column: 2; grid-row: 1; display: flex; flex-direction: column; justify-content: center; }
.v2-enbl-headwrap { grid-column: 1; grid-row: 2; padding-top: clamp(24px, 3vw, 40px); }
.v2-enbl-outro { grid-column: 2; grid-row: 2; position: relative; padding-top: clamp(24px, 3vw, 40px);
  padding-bottom: clamp(28px, 3.6vw, 46px); border-bottom: 1px solid rgba(26, 48, 183, 0.6); }
.v2-enbl-img { height: 100%; min-height: clamp(320px, 31vw, 440px); background: #d8d9de; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center; overflow: hidden; }
.v2-enbl-img > span { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.2em; color: rgba(12, 16, 56, 0.55); }
.v2-enbl-img img { width: 100%; height: 100%; object-fit: cover; }
.v2-enbl-h { font-family: var(--font-display); font-weight: 800; font-size: var(--t-h2); line-height: 1.04; letter-spacing: -0.02em; color: var(--fg-on-dark); margin: 0 0 clamp(22px, 3vw, 34px); max-width: 12ch; }
.v2-enbl .v2-svc-p { color: var(--fg-on-dark-2); max-width: none; }
.v2-enbl .v2-svc-p--strong { color: var(--fg-on-dark); }
.v2-enbl-step { display: grid; grid-template-columns: 52px 1fr; gap: clamp(12px, 1.6vw, 24px); align-items: start;
  border-top: 1px solid rgba(26, 48, 183, 0.6); margin-top: clamp(16px, 2vw, 26px); padding-top: clamp(16px, 2vw, 26px); }
.v2-enbl-step:first-child { border-top: none; margin-top: 0; padding-top: 0; }
/* full-width divider above the bottom row, starting at the image's left edge */
.v2-enbl-outro::before { content: ''; position: absolute; top: 0; right: 0; height: 1px; background: rgba(26, 48, 183, 0.6);
  left: calc(-100% - var(--enbl-gap)); }
.v2-enbl-n { font-family: var(--font-mono); font-weight: 600; font-size: clamp(16px, 1.4vw, 20px); color: var(--jp-blue-primary); }
.v2-enbl-steptitle { font-family: var(--font-display); font-weight: 700; font-size: var(--t-h3); color: var(--fg-on-dark); margin: 0 0 8px; }
.v2-enbl-stepbody { font-family: var(--font-sans); font-size: clamp(15px, 1.15vw, 17px); line-height: 1.55; color: var(--fg-on-dark-2); margin: 0; }
.v2-enbl-shape { position: absolute; }
/* overlap panel: top padding so the copy clears the video-overlap zone (kept modest so the panel isn't too tall) */
.v2-svc-sec--overlap .v2-svc-panel { padding-top: clamp(78px, 9vw, 124px); padding-bottom: clamp(28px, 3.5vw, 48px); }
.v2-svc-highlight { font-family: var(--font-display); font-weight: 600; font-size: clamp(18px, 1.9vw, 26px); line-height: 1.25; margin: clamp(24px, 3vw, 34px) 0 0; }
/* numbered steps (cream panel) */
.v2-svc-step { display: grid; grid-template-columns: 40px 1fr; gap: 12px; padding: clamp(18px, 2.2vw, 26px) 0; border-top: 1px solid rgba(17,32,136,0.18); }
.v2-svc-step:first-child { padding-top: 0; border-top: none; }
.v2-svc-step-n { font-family: var(--font-mono); font-weight: 600; font-size: 14px; color: var(--jp-purple); }
.v2-svc-step-title { font-family: var(--font-display); font-weight: 700; font-size: var(--t-h4); margin: 0 0 6px; }
.v2-svc-step-body { font-family: var(--font-sans); font-size: clamp(15px, 1.15vw, 17px); line-height: 1.55; margin: 0; opacity: 0.9; }
/* what-we-build grid (cream panel) */
.v2-svc-items { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 3vw, 44px); }
.v2-svc-item-title { font-family: var(--font-display); font-weight: 700; font-size: var(--t-h4); margin: 0 0 8px; }
.v2-svc-item-body { font-family: var(--font-sans); font-size: clamp(14px, 1.1vw, 16px); line-height: 1.55; margin: 0; opacity: 0.9; }
/* "What we build" — items 01/02 left, donut center, items 03/04 right (right-aligned) */
.v2-svc-sec > .v2-wrap > .v2-svc-label { display: block; margin-bottom: clamp(28px, 4vw, 56px); }
.v2-build-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: clamp(28px, 4vw, 72px); align-items: center; }
.v2-build-col { display: flex; flex-direction: column; gap: clamp(40px, 6vw, 90px); }
.v2-build-col--right { text-align: right; }
.v2-build-center { display: flex; justify-content: center; }
.v2-build-center img { display: block; width: clamp(220px, 26vw, 420px); height: auto; }
.v2-build-n { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(28px, 3vw, 46px); line-height: 1; color: var(--jp-purple); }
.v2-build-title { font-family: var(--font-display); font-weight: 700; font-size: var(--t-h3); line-height: 1.12; color: var(--fg-on-dark); margin: clamp(10px, 1.2vw, 16px) 0 clamp(10px, 1vw, 14px); }
.v2-build-body { font-family: var(--font-sans); font-size: clamp(14px, 1.05vw, 16px); line-height: 1.55; color: var(--fg-on-dark-2); margin: 0; }
/* "Embedded, not outsourced": text left, image collage right (tall img + img + blue box) */
.v2-emb-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.v2-emb-h { font-family: var(--font-display); font-weight: 800; font-size: var(--t-h2); line-height: 1.05; letter-spacing: -0.02em; color: var(--fg-on-dark); margin: 0 0 clamp(20px, 2.5vw, 30px); max-width: 14ch; }
.v2-emb-collage { display: grid; grid-template-columns: 0.82fr 1fr; grid-template-rows: auto auto; gap: 14px; }
.v2-emb-img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--r-md); display: block; }
.v2-emb-img--tall { grid-column: 1; grid-row: 1 / 3; }
.v2-emb-img--wide { grid-column: 2; grid-row: 1; aspect-ratio: 4 / 3; }
.v2-emb-box {
  grid-column: 2; grid-row: 2; min-height: clamp(150px, 17vw, 210px);
  background: var(--jp-blue-primary); border-radius: var(--r-md); padding: clamp(20px, 2.4vw, 30px);
  display: flex; align-items: flex-end;
  font-family: var(--font-display); font-weight: 700; font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.2; color: #fff;
}
/* full-bleed marquee of iridescent shapes, drifting left→right on a loop.
   A diagonal-striped band sits behind the LOWER HALF of the shapes (they overlap it ~50%). */
.v2-shapes-marquee { position: relative; --shape-h: clamp(88px, 11vw, 140px); margin-top: clamp(48px, 8vw, 110px); width: 100vw; margin-left: calc(50% - 50vw); overflow: hidden; padding-bottom: clamp(28px, 4vw, 56px); }
.v2-shapes-stripes { position: absolute; left: 0; right: 0; top: calc(var(--shape-h) / 2); bottom: 0; z-index: 0; pointer-events: none;
  background-image: repeating-linear-gradient(-45deg, rgba(26,48,183,0.5) 0 1px, transparent 1px 9px); }
.v2-shapes-track { position: relative; z-index: 1; display: flex; align-items: flex-start; gap: clamp(40px, 6vw, 96px); width: max-content; animation: v2ShapesRight 48s linear infinite; }
.v2-shape-tile { height: var(--shape-h); width: auto; display: block; }
/* left → right: track starts shifted left by one of its 4 copies and slides to origin */
@keyframes v2ShapesRight { from { transform: translateX(-25%); } to { transform: translateX(0); } }
@media (prefers-reduced-motion: reduce) { .v2-shapes-track { animation: none; } }
/* "What we build" donut: gentle float on the img (wrapper carries the scroll-parallax transform) */
.v2-build-donut-img { animation: v2FloatDonut 7s ease-in-out infinite; }
@keyframes v2FloatDonut { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@media (prefers-reduced-motion: reduce) { .v2-build-donut-img { animation: none; } }

/* proof link */
.v2-svc-prooflink {
  display: inline-flex; align-items: center; gap: 8px; margin-top: clamp(20px, 2.4vw, 28px);
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--jp-green); transition: gap var(--t-fast) var(--ease-out);
}
.v2-svc-prooflink:hover { gap: 14px; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .v2-who-row, .v2-who-rules { grid-template-columns: 1fr; }
  .v2-who-rules { display: none; }
  .v2-who-more { align-self: start; justify-content: flex-start; padding-bottom: 0; margin-top: 8px;
    border-bottom: 1px solid var(--jp-blue-secondary); width: max-content; padding-bottom: 10px; }
  .v2-sl-grid { grid-template-columns: 1fr; gap: clamp(32px, 8vw, 48px); }
  /* smaller overlap when the columns stack so the shapes clear the last "learn more" link */
  .v2-sl-marquee { margin-top: calc(-1 * clamp(20px, 5vw, 44px)); }
  .v2-cw-row { grid-template-columns: 1fr; gap: clamp(28px, 6vw, 40px); align-items: start; }
  .v2-ind-copy { grid-template-columns: 1fr; }
  .v2-ind-cta { justify-self: start; }
  .v2-share { grid-template-columns: 1fr; gap: 20px; }
  .v2-contact-grid { grid-template-columns: 1fr; }
  .v2-next { order: 2; }
  /* decorative float shapes off once the contact panel stacks (they'd overlap the reflowed text) */
  .v2-contact-cube, .v2-contact-torus { display: none; }
  /* service line pages: label stacks above content; build-grid single column */
  .v2-svc-row { grid-template-columns: 1fr; gap: 20px; }
  .v2-svc-items { grid-template-columns: 1fr; }
  .v2-svc-2col { grid-template-columns: 1fr; gap: 20px; align-items: start; }
  .v2-svc-split { grid-template-columns: 1fr; }
  .v2-svc-split-left { margin-bottom: clamp(16px, 4vw, 24px); }
  /* enablement region stacks: visual + heading/CTA, then the copy + steps */
  .v2-enbl { grid-template-columns: 1fr; grid-template-rows: none; row-gap: clamp(32px, 6vw, 48px); }
  .v2-enbl-visual, .v2-enbl-steps, .v2-enbl-headwrap, .v2-enbl-outro { grid-column: 1; grid-row: auto; }
  .v2-enbl-steps { justify-content: flex-start; }
  .v2-enbl-img { height: auto; aspect-ratio: 3 / 2; min-height: 0; }  /* restore normal image proportions when stacked */
  .v2-enbl-headwrap { padding-top: 0; }
  .v2-enbl-outro { padding-top: clamp(28px, 6vw, 44px); }
  .v2-enbl-outro::before { left: 0; }  /* stacked: divider spans the single column, no negative offset */
  /* "What we build": stack columns, donut between them, everything left-aligned */
  .v2-build-grid { grid-template-columns: 1fr; gap: clamp(40px, 6vw, 64px); }
  .v2-build-col { gap: clamp(40px, 6vw, 64px); }
  .v2-build-col--right { text-align: left; order: 3; }
  .v2-build-center { order: 2; }
  .v2-build-center img { width: clamp(200px, 60vw, 300px); }
  /* embedded: text above the collage */
  .v2-emb-grid { grid-template-columns: 1fr; gap: clamp(28px, 5vw, 40px); }
  /* video hero: stack the CTA under the subhead inside the cream panel on small screens */
  .v2-svc-herohead-foot { grid-template-columns: 1fr; align-items: start; gap: clamp(20px, 4vw, 28px); }
  .v2-svc-herocta { justify-self: start; }
  /* smaller overlap when stacked */
  .v2-svc-herohead-wrap { margin-top: calc(-1 * clamp(48px, 9vw, 90px)); }
  .v2-svc-herowrap--split { grid-template-columns: 1fr; align-items: start; gap: clamp(24px, 4vw, 32px); }
  /* smaller overlap when stacked so the CTA (now below the text) stays clear */
  .v2-svc-sec--overlap .v2-lightpanel { margin-top: calc(-1 * clamp(24px, 4vw, 40px)); }
}
/* Hero collage collapses to a simple stack on small screens */
@media (max-width: 820px) {
  .v2-hero { padding-top: 76px; }
  .v2-hero-stage { aspect-ratio: auto; border-top: none; padding: 20px 20px 40px; }
  .v2-hero-texture, .v2-hero-band, .v2-cline, .v2-hero-photo, .v2-hero-shape, .v2-gridline { display: none; }
  .v2-hero-head, .v2-hero-aside { position: static; width: auto; }
  .v2-hero-eyebrow { font-size: 11px; margin-bottom: 18px; }
  .v2-h1-light, .v2-h1-bold { font-size: clamp(30px, 8vw, 46px); }
  .v2-h1-bold { margin-top: 4px; }
  .v2-hero-aside { margin-top: 28px; }
  .v2-straddle-torus { display: none; }
  .v2-lightwrap { margin-top: 40px; }  /* band hidden on mobile — restore a normal gap */
}
@media (max-width: 620px) {
  .v2-nav-links, .v2-nav-cta { display: none; }
  /* Hamburger button */
  .v2-nav-burger {
    display: inline-flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
    width: 44px; height: 44px; margin: -10px -10px -10px 0; padding: 10px;
    background: none; border: none; cursor: pointer;
  }
  .v2-nav-burger span {
    display: block; width: 22px; height: 2px; border-radius: 2px; background: var(--fg-on-dark);
    transition: transform 260ms var(--ease-out), opacity 180ms var(--ease-out);
  }
  .v2-nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .v2-nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .v2-nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  /* Full-screen menu panel (sits below the nav bar, which has z-index:2) */
  .v2-nav-mobile {
    display: block; position: fixed; inset: 0; z-index: 70;  /* below nav-outer (80) so logo + close stay clickable */
    background: rgba(9,12,32,0.98); backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%);
    padding: calc(62px + 20px) var(--v2-pad) 40px; overflow-y: auto;
    opacity: 0; transform: translateY(-8px); pointer-events: none;
    transition: opacity 240ms var(--ease-out), transform 240ms var(--ease-out);
  }
  .v2-nav-mobile.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .v2-nav-mobile-inner { display: flex; flex-direction: column; }
  .v2-nav-mlink {
    font-family: var(--font-display); font-weight: 600; font-size: 27px; letter-spacing: -0.01em;
    color: var(--fg-on-dark); text-decoration: none; padding: 15px 0;
    border-bottom: 1px solid var(--border-dark); transition: color var(--t-fast) var(--ease-out);
  }
  .v2-nav-mlink:hover, .v2-nav-mlink:active { color: var(--jp-green); }
  .v2-nav-mgroup-label {
    font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--fg-on-dark-3); padding: 22px 0 4px;
  }
  .v2-nav-msub { font-size: 19px; padding: 11px 0; color: var(--fg-on-dark-2); border-bottom: none; }
  .v2-nav-mobile-cta { margin-top: 30px; justify-content: center; padding: 16px 24px; font-size: 14px; }
  .v2-work-card { flex-basis: 82%; min-height: 380px; }
  /* mobile: don't overlap the image with the title — image on top, title below it */
  .v2-ind-media { aspect-ratio: auto; overflow: visible; border: none; box-shadow: none; border-radius: 0; }
  .v2-ind-media img { height: auto; aspect-ratio: 4 / 5; }
  .v2-ind-badge { position: static; width: auto; max-width: 100%; background: transparent;
    padding: clamp(16px, 4vw, 22px) 0 0; }
}
