/* =========================================
   OXO Corporate Reporting — Site styles
   ========================================= */

:root {
  --bg:        #EFEEEA;        /* warm off-white from mocks */
  --bg-2:      #E6E5E0;
  --ink:       #0A0A0A;
  --ink-soft:  #1A1A1A;
  --ink-mute:  #4A4A4A;
  --ink-fade:  #8A8A8A;
  --line:      rgba(10,10,10,.08);
  --line-2:    rgba(10,10,10,.14);

  --paper:     #FFFFFF;
  --paper-2:   #FAFAF8;

  --dark:      #000000;
  --dark-2:    #0E0E0E;
  --dark-3:    #161616;
  --dark-line: rgba(255,255,255,.10);

  --green:     #2BA88A;        /* teal/emerald accent */
  --green-2:   #34BD9C;
  --green-deep:#1E8C72;
  --green-soft:#E0F1EB;
  --blue:      #4FB3E0;        /* secondary light blue used on dark CTAs */

  --radius:    999px;
  --radius-2:  20px;
  --radius-3:  28px;

  --font-display: "Inter Tight", system-ui, -apple-system, sans-serif;
  --font-body:    "Inter Tight", system-ui, -apple-system, sans-serif;

  --container: 1280px;
  --container-narrow: 1100px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
  line-height: 1.45;
  overflow-x: clip;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: transparent; cursor: pointer; color: inherit; }

/* ---------- typography ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .01em;
  color: var(--ink-soft);
  padding: 8px 16px;
  border: 1px solid var(--line-2);
  background: rgba(255,255,255,.6);
  border-radius: var(--radius);
  backdrop-filter: blur(6px);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(43,168,138,.18);
}
.eyebrow.dark {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.14);
  color: #fff;
}

h1, h2, h3 { margin: 0; font-family: var(--font-display); letter-spacing: -0.025em; line-height: 1.02; font-weight: 500; }
.h-display {
  font-size: clamp(56px, 9.5vw, 168px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.92;
}
.h1 {
  font-size: clamp(40px, 5.4vw, 86px);
  letter-spacing: -0.03em;
  line-height: 1.0;
  font-weight: 500;
}
.h2 {
  font-size: clamp(32px, 3.8vw, 56px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  font-weight: 500;
}
.h3 {
  font-size: clamp(22px, 1.8vw, 28px);
  letter-spacing: -0.015em;
  font-weight: 500;
  line-height: 1.15;
}
.lede {
  font-size: clamp(16px, 1.1vw, 18px);
  color: var(--ink-mute);
  line-height: 1.55;
  max-width: 56ch;
}
.muted { color: var(--ink-mute); }
.green { color: var(--green); }

/* ---------- container ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.container-narrow { width: 100%; max-width: var(--container-narrow); margin: 0 auto; padding: 0 32px; }

/* ===========================================================
   NAV — floating white pill on dark, sticky
   =========================================================== */
.nav-wrap {
  position: fixed;
  top: 20px;
  left: 0; right: 0;
  z-index: 100;
  pointer-events: none;
  padding: 0 24px;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity .5s ease, transform .5s ease;
  will-change: opacity, transform;
}
.nav-wrap.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.nav {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 8px 8px 8px 28px;
  background: #fff;
  border-radius: 999px;
  box-shadow:
    0 1px 0 rgba(255,255,255,.04) inset,
    0 12px 40px -10px rgba(0,0,0,.4),
    0 4px 14px -4px rgba(0,0,0,.25);
  transition: transform .4s ease, max-width .4s ease;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 14px 6px 0;
}
.nav-logo .mark {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.nav-logo svg { width: 64px; height: auto; }
.nav-logo .logo-img {
  width: 56px;
  height: auto;
  display: block;
}
.nav-logo .logo-img-invert {
  filter: invert(1);
}
.nav-logo .sub {
  display: inline-flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--ink);
  padding-left: 8px;
  border-left: 1px solid var(--line-2);
  margin-left: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  padding: 10px 18px;
  font-size: 14.5px;
  font-weight: 450;
  color: var(--ink-soft);
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
  position: relative;
}
.nav-link:hover { background: rgba(0,0,0,.04); }
.nav-link.active { color: var(--green); }
.nav-cta {
  margin-left: 8px;
  background: var(--ink);
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: background .25s ease, transform .25s ease;
  display: inline-flex; align-items: center; gap: 8px;
}
.nav-cta:hover { background: var(--green); transform: translateY(-1px); }
.nav-cta .arr {
  width: 14px; height: 14px;
  transition: transform .25s ease;
}
.nav-cta:hover .arr { transform: translate(2px,-2px); }

/* Hamburger button (hidden on desktop, shown via media query) */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 999px;
  flex-shrink: 0;
  transition: background .2s ease;
}
.nav-burger:hover { background: rgba(0,0,0,.05); }
.nav-burger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transform-origin: center;
  transition: transform .35s cubic-bezier(.16,1,.3,1), opacity .25s ease;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile navigation overlay */
.nav-mobile {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  visibility: hidden;
  opacity: 0;
  transition: opacity .28s ease, visibility 0s .28s;
}
.nav-mobile.open {
  visibility: visible;
  opacity: 1;
  transition: opacity .28s ease, visibility 0s 0s;
}
.nav-mobile nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 100%;
  padding: 0 24px;
}
.nav-mobile-link {
  display: block;
  width: 100%;
  max-width: 360px;
  text-align: center;
  padding: 16px 20px;
  font-size: clamp(22px, 6vw, 30px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  border-radius: 14px;
  opacity: 0;
  transform: translateY(16px);
  transition: background .2s ease, color .2s ease, opacity .35s ease, transform .45s cubic-bezier(.16,1,.3,1);
}
.nav-mobile.open .nav-mobile-link { opacity: 1; transform: none; }
.nav-mobile.open .nav-mobile-link:nth-child(1) { transition-delay: .04s; }
.nav-mobile.open .nav-mobile-link:nth-child(2) { transition-delay: .08s; }
.nav-mobile.open .nav-mobile-link:nth-child(3) { transition-delay: .12s; }
.nav-mobile.open .nav-mobile-link:nth-child(4) { transition-delay: .16s; }
.nav-mobile-link:hover { background: var(--bg); color: var(--green); }
.nav-mobile-link.nav-mobile-cta {
  margin-top: 8px;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  font-size: clamp(15px, 4vw, 18px);
  padding: 16px 36px;
  max-width: 280px;
}
.nav-mobile-link.nav-mobile-cta:hover { background: var(--green); color: #fff; }
.nav-mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--bg);
  transition: background .2s ease;
}
.nav-mobile-close:hover { background: var(--bg-2); }
.nav-mobile-close svg { width: 18px; height: 18px; color: var(--ink); display: block; }

/* ===========================================================
   HERO — scroll-pinned cross-fade (chaos → clean)
   Layout: text fills viewport edge-to-edge, laptop overlaps in front
   =========================================================== */
.hero {
  background: var(--dark);
  color: #fff;
  position: relative;
  height: 450vh;
  isolation: isolate;
}
.hero-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.hero-pin::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 500px at 50% 0%, rgba(43,168,138,.13), transparent 70%),
    radial-gradient(1100px 700px at 80% 40%, rgba(79,179,224,.05), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-stage {
  position: relative;
  display: grid;
  grid-template-columns: 42% 58%;
  grid-template-rows: 100vh;
  height: 100vh;
  width: 100%;
  z-index: 1;
}

/* Layer stack — 3-phase cross-fade for left column elements */
.layer-stack {
  position: relative;
  display: grid;
  grid-template-areas: "stack";
  align-items: start;
  justify-items: start;
}
.layer-stack > * { grid-area: stack; }

/* Opacity layers — JS sets .style.opacity directly */
.layer-chaos { opacity: 1;  will-change: opacity; transition: none; }
.layer-p2    { opacity: 0;  will-change: opacity; transition: none; }
.layer-p3    { opacity: 0;  will-change: opacity; transition: none; }

/* ---- LEFT COLUMN ---- */
.hero-left {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 4vw 0 clamp(28px, 5.5vw, 88px);
  z-index: 5;
  pointer-events: none;
}
.hleft-eyebrow { position: relative; margin-bottom: clamp(14px, 2vh, 26px); }
.hero-eyebrow-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(10px, 0.85vw, 13px);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
}
.hero-eyebrow-line::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}
.hleft-headline { position: relative; }
.hero-hl {
  font-family: "Anton", system-ui, sans-serif;
  font-size: clamp(52px, 8.8vw, 152px);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}
.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: clamp(22px, 3vh, 38px);
  background: var(--green);
  color: #fff;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 500;
  letter-spacing: -0.005em;
  text-decoration: none;
  width: fit-content;
  pointer-events: auto;
  transition: background .25s ease, transform .25s ease;
}
.hero-cta-btn:hover { background: var(--green-2); transform: translateY(-2px); }
.hero-p3-reveal { opacity: 0; will-change: opacity; transition: none; }

/* ---- RIGHT COLUMN ---- */
.hero-right {
  position: relative;
  overflow: hidden;
  height: 100%;
}

/* Full-panel phase layers — only for direct children of .hero-right */
.hero-right > .layer-chaos,
.hero-right > .layer-p2,
.hero-right > .layer-p3 {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Phase 2: No more — clean list, plain text */
.hero-nomore {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding: clamp(24px, 3vw, 56px) clamp(40px, 5vw, 80px) clamp(24px, 3vw, 56px) clamp(140px, 20vw, 260px);
}
.hnm-item {
  font-family: "Inter Tight", system-ui, sans-serif;
  font-size: clamp(13px, 1.4vw, 20px);
  font-weight: 400;
  line-height: 1.25;
  color: rgba(255,255,255,0.72);
  padding: clamp(11px, 1.4vh, 18px) 0;
  border-bottom: 1px dashed rgba(255,255,255,0.18);
  width: 100%;
}
.hnm-item:last-child { border-bottom: none; }
.hnm-tw-text { display: inline; }
.hnm-cursor {
  display: inline-block;
  width: 1.5px;
  height: 0.85em;
  background: rgba(43,168,138,0.6);
  margin-left: 2px;
  vertical-align: middle;
  animation: twBlink 0.65s step-end infinite;
}
.hnm-cursor.done { display: none; }
@keyframes twBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}
.hnm-item::before {
  content: "NO MORE ";
  color: rgba(43, 168, 138, 0.45);
  font-weight: 500;
}
.hnm-item { animation: hnmSlide 0.5s cubic-bezier(0.22,1,0.36,1) both; }
.hnm-item:nth-child(1) { animation-delay: 0.00s; }
.hnm-item:nth-child(2) { animation-delay: 0.06s; }
.hnm-item:nth-child(3) { animation-delay: 0.12s; }
.hnm-item:nth-child(4) { animation-delay: 0.18s; }
.hnm-item:nth-child(5) { animation-delay: 0.24s; }
.hnm-item:nth-child(6) { animation-delay: 0.30s; }
.hnm-item:nth-child(7) { animation-delay: 0.36s; }
@keyframes hnmSlide {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Absolute overlay for secondary/tertiary left headlines */
.hleft-abs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.hleft-headline { position: relative; }

/* Phase 3 left stat */
.hero-stat-p3 {
  display: flex;
  flex-direction: column;
}
.hstat-big {
  font-family: "Anton", system-ui, sans-serif;
  font-size: clamp(100px, 16vw, 240px);
  font-weight: 400;
  line-height: 0.85;
  letter-spacing: -0.02em;
  color: var(--green);
}
.hstat-sub {
  font-size: clamp(13px, 1.1vw, 17px);
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  margin-top: clamp(12px, 1.6vh, 22px);
  font-weight: 400;
}

/* Phase 3: KPI bento — pleine largeur hero-pin */
.hero-kpis {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: block !important;
}
.hkpi-bento {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr 1.4fr;
  grid-template-rows: 42% 1fr;
  gap: 6px;
  width: 100%;
  height: 100%;
  padding: 10px 16px 56px 16px;
  box-sizing: border-box;
}
.hkpi-cell {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  animation: kpiReveal 0.55s cubic-bezier(0.22,1,0.36,1) both;
}
.hkpi-cell:nth-child(1) { animation-delay: 0.00s; }
.hkpi-cell:nth-child(2) { animation-delay: 0.07s; }
.hkpi-cell:nth-child(3) { animation-delay: 0.14s; }
.hkpi-cell:nth-child(4) { animation-delay: 0.21s; }
.hkpi-cell:nth-child(5) { animation-delay: 0.28s; }
.hkpi-cell:nth-child(6) { animation-delay: 0.35s; }
@keyframes kpiReveal {
  from { opacity: 0; transform: translateY(12px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.hkpi-cell img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ---- ROW 1 ---- */

/* R1C1 — cercle vert avec texte */
.hkpi-cell--r1c1 {
  grid-column: 1; grid-row: 1;
  background: #3ECA7A;
  border-radius: 50%;
  aspect-ratio: 1;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(14px, 1.8vw, 24px);
}
.hkpi-circle-text {
  font-family: "Inter Tight", system-ui, sans-serif;
  font-size: clamp(12px, 1.1vw, 16px);
  font-weight: 600;
  color: rgba(0,0,0,0.75);
  line-height: 1.35;
  text-align: left;
  margin: 0;
}

/* R1C2 — Rogers landscape, arrondi bas */
.hkpi-cell--r1c2 {
  grid-column: 2; grid-row: 1;
  background: #111;
  border-radius: 16px 16px 60px 60px;
  align-self: stretch;
}

/* R1C3 — Medine cercle photo */
.hkpi-cell--r1c3 {
  grid-column: 3; grid-row: 1;
  background: #111;
  border-radius: 50%;
  aspect-ratio: 1;
  align-self: center;
}

/* R1C4 — CIEL landscape, arrondi haut */
.hkpi-cell--r1c4 {
  grid-column: 4; grid-row: 1;
  background: #111;
  border-radius: 60px 60px 16px 16px;
  align-self: stretch;
}

/* ---- ROW 2 ---- */

/* R2C1-3 — Grand bloc coral, 3 stats, D-shape droite */
.hkpi-cell--r2coral {
  grid-column: 1 / 4; grid-row: 2;
  background: #F0505A;
  border-radius: 16px 72px 72px 16px;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  padding: clamp(20px, 3vw, 44px);
  min-height: 0;
  overflow: hidden;
  gap: 0;
}
.hkpi-stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 clamp(14px, 2vw, 28px);
}
.hkpi-stat-item:first-child { padding-left: 0; }
.hkpi-stat-sep {
  width: 1px;
  height: 60%;
  background: rgba(0,0,0,0.18);
  align-self: flex-end;
  flex-shrink: 0;
  margin-bottom: 4px;
}
.hkpi-stat-num {
  font-family: "Anton", system-ui, sans-serif;
  font-size: clamp(64px, 8.5vw, 130px);
  line-height: 0.85;
  color: rgba(0,0,0,0.82);
  letter-spacing: -0.03em;
  display: block;
}
.hkpi-stat-num--ontime {
  font-size: clamp(36px, 4.2vw, 64px);
  line-height: 1.05;
}
.hkpi-stat-label {
  font-size: clamp(11px, 0.9vw, 14px);
  color: rgba(0,0,0,0.55);
  line-height: 1.4;
  margin-top: 10px;
  display: block;
}

/* R2C4 — bloc bleu */
.hkpi-cell--r2blue {
  grid-column: 4; grid-row: 2;
  background: #8BB4F5;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(16px, 2vw, 28px);
  min-height: 0;
  overflow: hidden;
}
.hkpi-blue-icon {
  width: clamp(32px, 3.5vw, 52px);
  height: auto;
  color: rgba(0,0,0,0.6);
  margin-bottom: clamp(10px, 1.2vh, 18px);
}
.hkpi-blue-text {
  font-family: "Inter Tight", system-ui, sans-serif;
  font-size: clamp(14px, 1.4vw, 22px);
  font-weight: 600;
  color: rgba(0,0,0,0.78);
  line-height: 1.3;
  margin: 0;
}

/* Mobile fallback */
@media (max-width: 768px) {
  .hero-stage { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 0 28px; }
  .hero-hl { font-size: clamp(44px, 13vw, 80px); }
}

/* HERO POPUPS — Lottie fills right column (phase 1) */
.hero-popups {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  will-change: opacity;
}
.hero-popups svg {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

/* HERO ORDERED — removed, replaced by hero-left/hero-right split */
.hero-ordered-REMOVED {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

/* LEFT — TOM status card */
.clean-left {
  position: absolute;
  left: 3vw;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(180px, 19vw, 270px);
  background: rgba(8,8,8,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 48px -16px rgba(0,0,0,0.6);
  animation: cleanSlideL 2.5s cubic-bezier(0.22,1,0.36,1) both;
}
.cleft-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 13px;
  font-size: 9.5px;
  color: rgba(255,255,255,0.45);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.cleft-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: pulse-dot 2s ease-out infinite;
}
.cleft-live {
  margin-left: auto;
  color: var(--green);
  font-weight: 600;
  font-size: 9px;
}
.cleft-rows { padding: 8px 0 10px; }
.cleft-row {
  padding: 5px 13px;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.01em;
  animation: cleanFadeRow 0.5s both;
}
.cleft-row::before { content: '✓'; color: var(--green); font-size: 10px; flex-shrink: 0; }
.cleft-row:nth-child(1) { animation-delay: 0.1s; color: rgba(255,255,255,0.7); }
.cleft-row:nth-child(2) { animation-delay: 0.22s; color: rgba(255,255,255,0.7); }
.cleft-row:nth-child(3) { animation-delay: 0.34s; color: rgba(255,255,255,0.7); }
.cleft-row:nth-child(4) { animation-delay: 0.46s; color: rgba(255,255,255,0.7); }
.cleft-row--metric { gap: 10px; color: rgba(255,255,255,0.8) !important; }
.cleft-row--metric::before { content: none; }
.cleft-metric {
  font-family: "Anton", system-ui, sans-serif;
  font-size: clamp(14px, 1.4vw, 20px);
  color: var(--green);
  line-height: 1;
  min-width: 28px;
  flex-shrink: 0;
}

/* RIGHT — "No more" list card */
.clean-right {
  position: absolute;
  right: 3vw;
  top: 50%;
  transform: translateY(-50%);
  animation: cleanSlideR 2.5s cubic-bezier(0.22,1,0.36,1) both;
}
.clean-nomores {
  background: rgba(8,8,8,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 48px -16px rgba(0,0,0,0.6);
  min-width: clamp(200px, 22vw, 300px);
}
.clean-nomores-header {
  padding: 9px 14px 8px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.clean-nomore-item {
  padding: 5px 14px;
  font-size: 10.5px;
  color: rgba(255,255,255,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  position: relative;
  padding-left: 26px;
  animation: cleanFadeRow 0.4s both;
}
.clean-nomore-item::before {
  content: '✕';
  position: absolute;
  left: 10px;
  color: rgba(255,80,80,0.7);
  font-size: 9px;
}
.clean-nomore-item:last-child { border-bottom: none; }
.clean-nomore-item:nth-child(2) { animation-delay: 0.08s; }
.clean-nomore-item:nth-child(3) { animation-delay: 0.16s; }
.clean-nomore-item:nth-child(4) { animation-delay: 0.24s; }
.clean-nomore-item:nth-child(5) { animation-delay: 0.32s; }
.clean-nomore-item:nth-child(6) { animation-delay: 0.40s; }
.clean-nomore-item:nth-child(7) { animation-delay: 0.48s; }
.clean-nomore-item:nth-child(8) { animation-delay: 0.56s; }

/* Animations */
@keyframes cleanSlideL {
  from { transform: translateY(-50%) translateX(-28px); opacity: 0; }
  to   { transform: translateY(-50%) translateX(0);    opacity: 1; }
}
@keyframes cleanSlideR {
  from { transform: translateY(-50%) translateX(28px); opacity: 0; }
  to   { transform: translateY(-50%) translateX(0);   opacity: 1; }
}
@keyframes cleanFadeRow {
  from { opacity: 0; transform: translateX(-8px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(43,168,138,0.5); }
  70%  { box-shadow: 0 0 0 5px rgba(43,168,138,0); }
  100% { box-shadow: 0 0 0 0 rgba(43,168,138,0); }
}

@media (max-width: 900px) {
  .clean-left, .clean-right { display: none; }
}


/* Bottom strip — anchored at very bottom */
.hero-strip {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--dark-line);
  background: #060606;
  z-index: 4;
}
.hero-strip-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 24px;
  color: #B7B7B7;
  font-size: 14px;
}
.hero-strip-inner .pin {
  width: 14px; height: 14px;
  color: var(--green);
}

/* Annotation cards re-styled */
.annot {
  position: absolute;
  background: #fff;
  color: var(--ink);
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 12.5px;
  line-height: 1.35;
  box-shadow:
    0 24px 50px -16px rgba(0,0,0,.6),
    0 8px 20px -8px rgba(0,0,0,.4);
  max-width: 230px;
}
.annot.dark { background: #111; color: #fff; border: 1px solid rgba(255,255,255,.08); }
.annot.green {
  background: var(--green);
  color: #fff;
  box-shadow:
    0 24px 50px -16px rgba(43,168,138,.55),
    0 8px 20px -8px rgba(0,0,0,.4);
}
.annot .row { display: flex; align-items: center; gap: 8px; }
.annot .ic { width: 14px; height: 14px; flex: 0 0 14px; opacity: .85; }
.annot strong { font-weight: 600; }
.annot small { display: block; font-weight: 600; font-size: 12.5px; }
.annot .avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c8c8c8, #8a8a8a);
  flex: 0 0 26px;
  position: relative;
  overflow: hidden;
}
.annot .avatar::after {
  content:"";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 35%, #f3d9bd 0 28%, transparent 28%),
    radial-gradient(circle at 50% 78%, #5a7cba 0 36%, transparent 36%);
}
@media (max-width: 1100px) {
  .annot { display: none; }  /* hide on narrow screens */
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.float-y { animation: floaty 6s ease-in-out infinite; }
.float-y.s2 { animation-delay: 1s; animation-duration: 7s; }
.float-y.s3 { animation-delay: 2s; animation-duration: 8s; }
.float-y.s4 { animation-delay: .5s; animation-duration: 6.5s; }
.float-y.s5 { animation-delay: 1.5s; animation-duration: 7.5s; }

/* ===========================================================
   SECTION: NO MORE Coordination Hell
   =========================================================== */
.no-more {
  padding: 120px 0 60px;
  text-align: center;
  position: relative;
}
.no-more .laptop-mini {
  width: min(440px, 55vw);
  margin: 0 auto 40px;
  filter: drop-shadow(0 40px 50px rgba(0,0,0,.18));
}
.no-more h2 {
  font-size: clamp(56px, 10vw, 138px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.92;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.no-more h2 .green { color: var(--green); }
.no-more .sub {
  font-size: clamp(20px, 1.6vw, 26px);
  color: var(--ink-mute);
  font-weight: 400;
  letter-spacing: -0.01em;
}
.no-more-band {
  margin-top: 56px;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  overflow: hidden;
}
.marquee {
  display: flex; gap: 56px;
  white-space: nowrap;
  animation: scroll-x 38s linear infinite;
  font-size: 14px;
  color: var(--ink-mute);
  letter-spacing: 0.01em;
}
.marquee span { display: inline-flex; align-items: center; gap: 10px; }
.marquee em { color: var(--ink); font-style: normal; font-weight: 600; }
.marquee .sep { width: 5px; height: 5px; border-radius: 50%; background: var(--green); }
@keyframes scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===========================================================
   Problem statement block
   =========================================================== */
.problem {
  padding: 80px 0 40px;
  text-align: center;
}
.problem p {
  max-width: 56ch;
  margin: 0 auto;
  font-size: clamp(17px, 1.3vw, 20px);
  color: var(--ink-mute);
  line-height: 1.55;
}
.problem .punchline {
  margin-top: 28px;
  font-weight: 600;
  color: var(--ink);
  font-size: clamp(19px, 1.4vw, 22px);
}

/* ===========================================================
   MEET TOM
   =========================================================== */
.meet-tom {
  padding: 100px 0 120px;
  text-align: center;
}
.meet-tom h2 {
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.02;
}
.meet-tom .sub {
  margin: 18px auto 48px;
  max-width: 58ch;
  color: var(--ink-mute);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.55;
}
.tom-mock {
  margin: 0 auto;
  max-width: 1080px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow:
    0 60px 80px -40px rgba(0,0,0,.25),
    0 30px 50px -20px rgba(0,0,0,.12);
  overflow: hidden;
}

/* ===========================================================
   What changes — black, rotating cards
   =========================================================== */
.changes {
  background: var(--dark);
  color: #fff;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.changes::before {
  content:"";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 500px at 50% 0%, rgba(43,168,138,.10), transparent 70%);
  pointer-events: none;
}
.changes-inner { position: relative; text-align: center; }
.changes h2 {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: -0.025em;
}
.changes .lede { color: #B5B5B5; margin: 16px auto 60px; text-align: center; }
.change-deck {
  position: relative;
  width: 360px;
  height: 360px;
  margin: 0 auto;
  perspective: 1200px;
}
.change-card {
  position: absolute;
  inset: 0;
  background: var(--green);
  color: #fff;
  border-radius: 22px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 30px 60px -20px rgba(43,168,138,.5);
  transform-origin: bottom center;
  transition: transform .8s cubic-bezier(.65,.05,.36,1), opacity .8s;
}
.change-card.alt { background: #18705C; }
.change-card .ic {
  width: 36px; height: 36px;
  color: rgba(255,255,255,.9);
}
.change-card h3 {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.change-card p {
  font-size: 14.5px;
  line-height: 1.5;
  color: rgba(255,255,255,.86);
  margin: 0;
}
.change-dots {
  display: flex; gap: 8px;
  justify-content: center;
  margin-top: 32px;
}
.change-dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  transition: all .25s ease;
}
.change-dots button.active {
  background: var(--green);
  width: 28px; border-radius: 999px;
}

/* ===========================================================
   Tailored for you — split blocks
   =========================================================== */
/* ===========================================================
   Tailored for you — stacked cards (MarCom slides up over CFO)
   =========================================================== */
.personas {
  position: relative;
  height: 230vh;                  /* runway: ~130vh of locked scroll */
  background: var(--bg, #EFEEEA);
}
.personas-pin {
  position: sticky;
  top: 0;
  height: 100vh;                  /* card == viewport: no overflow, no dead space */
  overflow: hidden;
}
.pcard {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: stretch;
  background: #DCDDE0;            /* grey card surface, like the screenshot */
  color: #111;
}
.pcard--cfo {
  z-index: 1;
}
.pcard--mc {
  z-index: 2;
  background: #fff;               /* contrasting surface so the slide-up reads */
  transform: translateY(100%);
  will-change: transform;
  box-shadow: 0 -24px 60px -24px rgba(0,0,0,0.18);
}
.pcard-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 7vh;
  padding-bottom: 5vh;
  gap: 28px;
}
.pcard-head {
  flex: 0 0 auto;
  --header-h: clamp(110px, 12vh, 150px);  /* used by JS for the peek height */
  min-height: var(--header-h);
}
.pcard-title {
  font-family: "Inter Tight", system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(36px, 4.8vw, 72px);
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 0 0 12px;
}
.pcard-sub {
  font-family: "Inter Tight", system-ui, sans-serif;
  font-size: clamp(15px, 1.25vw, 20px);
  color: #2c2c2e;
  margin: 0 0 22px;
}
.pcard-rule {
  border: none;
  border-top: 1px solid #b9babd;
  margin: 0;
}
.pcard--mc .pcard-rule { border-top-color: #d8d9dc; }

.pcard-body {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 6vw;
  align-items: center;
  min-height: 0;
}
.pcard--mc .pcard-body { align-items: center; }
.pcard--mc .pcard-copy { align-self: center; }
.pcard-copy { max-width: 520px; }
.pcard-desc {
  font-family: "Inter Tight", system-ui, sans-serif;
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.55;
  color: #1f2022;
  margin: 0 0 32px;
}
.pbullets {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 18px;
}
.pbullets li {
  display: flex; align-items: flex-start; gap: 14px;
  font-family: "Inter Tight", system-ui, sans-serif;
  font-size: clamp(14px, 1.05vw, 17px);
  font-weight: 600;
  line-height: 1.35;
  color: #111;
}
.pdot {
  flex: 0 0 18px;
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1.6px solid var(--green, #2BA88A);
  position: relative;
  margin-top: 2px;
}
.pdot::after {
  content: "";
  position: absolute;
  left: 4px; top: 6.5px;
  width: 8px; height: 4px;
  border-left: 1.8px solid var(--green, #2BA88A);
  border-bottom: 1.8px solid var(--green, #2BA88A);
  transform: rotate(-45deg);
}

.pcard-visual {
  display: flex; align-items: center; justify-content: center;
  min-height: 0;
}
.pcard-visual img,
.pcard-visual video {
  display: block;
  max-width: 100%;
  max-height: 60vh;
  width: auto; height: auto;
  border-radius: 14px;
  box-shadow:
    0 30px 60px -20px rgba(0,0,0,0.22),
    0 8px 16px -6px rgba(0,0,0,0.10);
}

/* Persona visual column — video is the centered anchor; the accroche
   sits ABOVE it, out of flow, so the left copy centers on the video itself
   (not on the accroche+video stack). Shared by both CFO and MarCom cards. */
.pcard--mc .pcard-visual,
.pcard--cfo .pcard-visual {
  position: relative;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  align-self: center;
}

/* "Our unique feature" — kinetic accroche, revealed when the card rises.
   Pulled out of flow and anchored just above the video so it doesn't push
   the video's vertical centre off the column centre. */
.unique-accroche {
  position: absolute;
  left: 0;
  bottom: calc(100% + 18px);
  width: 100%;
  padding-bottom: 4px;
}
.ua-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: "Inter Tight", system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(12px, 0.95vw, 14px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-deep, #15765f);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .5s ease, transform .5s ease;
}
.ua-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green, #2BA88A);
  box-shadow: 0 0 0 0 rgba(43,168,138,0.6);
}
.ua-headline {
  margin: 12px 0 0;
  font-family: "Anton", "Inter Tight", system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(32px, 3.5vw, 50px);
  line-height: 0.92;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--ink, #0A0A0A);
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.28em;
}
/* each word sits in an overflow mask; inner span slides up */
.ua-word {
  display: inline-block;
  overflow: hidden;
  padding-bottom: 0.08em;     /* room for descenders */
  vertical-align: top;
}
.ua-word > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform .7s cubic-bezier(.16,1,.3,1);
}
.ua-hl {
  position: relative;
  color: var(--green, #2BA88A);
}
/* green underline that draws under "unique" */
.ua-hl::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0.04em;
  width: 100%; height: 0.1em;
  background: var(--green, #2BA88A);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s cubic-bezier(.16,1,.3,1) .55s;
}

.ua-desc {
  margin: 18px 0 0;
  padding-left: 14px;
  border-left: 2px solid var(--green);
  font-family: "Inter Tight", system-ui, sans-serif;
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.65;
  color: var(--ink-mute);
  max-width: 40ch;
}

/* REVEAL state — added by JS when MarCom card is mostly up */
.unique-accroche.uf-show .ua-eyebrow { opacity: 1; transform: translateY(0); }
.unique-accroche.uf-show .ua-dot { animation: uniquePulse 2s ease-out infinite; }
.unique-accroche.uf-show .ua-word > span { transform: translateY(0); }
.unique-accroche.uf-show .ua-word:nth-child(1) > span { transition-delay: .05s; }
.unique-accroche.uf-show .ua-word:nth-child(2) > span { transition-delay: .17s; }
.unique-accroche.uf-show .ua-word:nth-child(3) > span { transition-delay: .29s; }
.unique-accroche.uf-show .ua-hl::after { transform: scaleX(1); }

.unique-wrap {
  position: relative;
  display: inline-block;
  border-radius: 14px;
  overflow: visible;
  box-shadow:
    0 30px 60px -20px rgba(0,0,0,0.22),
    0 8px 16px -6px rgba(0,0,0,0.10);
}
.unique-wrap video {
  display: block;
  max-width: 100%;
  max-height: 36vh;
  width: auto;
  height: auto;
  transform: scale(1.22);
  transform-origin: center;
  border-radius: 0;
  box-shadow: none;
}
@keyframes uniquePulse {
  0%   { box-shadow: 0 0 0 0 rgba(43,168,138,0.6); }
  70%  { box-shadow: 0 0 0 12px rgba(43,168,138,0); }
  100% { box-shadow: 0 0 0 0 rgba(43,168,138,0); }
}

@media (prefers-reduced-motion: reduce) {
  /* Keep the sticky layout — only skip the slide-up animation.
     The JS will detect reduce-motion and snap MarCom to its peek position. */
  .pcard--mc { transition: none; }
}

/* ===========================================================
   Clients achieved — polaroid cards
   =========================================================== */
.clients-said {
  padding: 120px 0;
  text-align: center;
  position: relative;
}
.polaroid-grid {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 56px 0 32px;
  flex-wrap: wrap;
}
.polaroid {
  position: relative;
  width: 220px;
  background: #fff;
  padding: 12px 12px 38px;
  box-shadow: 0 16px 40px -16px rgba(0,0,0,.25), 0 4px 10px -4px rgba(0,0,0,.1);
  transform: rotate(var(--r, -3deg));
  transition: transform .4s ease, box-shadow .4s ease;
}
.polaroid:nth-child(2) { --r: 2deg; transform: translateY(20px) rotate(var(--r)); }
.polaroid:nth-child(3) { --r: -1.5deg; }
.polaroid:hover {
  transform: rotate(0deg) translateY(-8px) scale(1.04);
  box-shadow: 0 30px 60px -16px rgba(0,0,0,.35);
  z-index: 2;
}
.polaroid .frame {
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, #d4d4d4, #a8a8a8);
  position: relative;
  overflow: hidden;
}
.polaroid .play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(0,0,0,.3);
}
.polaroid .play svg { width: 16px; height: 16px; }
.polaroid .label {
  position: absolute;
  bottom: 8px; left: 0; right: 0;
  text-align: center;
  font-size: 13px;
  color: var(--ink-mute);
  font-style: italic;
}
.clients-said .btn-pill {
  margin: 24px auto 0;
}

/* ===========================================================
   Editions — magazine-style testimonial cards (offset layout)
   =========================================================== */
.editions-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 28px;
  margin: 64px 0 40px;
  flex-wrap: wrap;
}
.edition-card {
  margin: 0;
  width: 320px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.edition-card:hover { transform: translateY(-6px); }
.edition-card--offset { transform: translateY(72px); }
.edition-card--offset:hover { transform: translateY(66px); }
.edition-card img {
  width: 100%;
  height: auto;
  display: block;
  background: #fff;
  box-shadow: 0 30px 50px -22px rgba(0,0,0,.18);
}
.edition-play {
  position: absolute;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .25s ease, color .25s ease;
}
.edition-play:hover { transform: translateX(-50%) scale(1.08); color: var(--green); }
.edition-play svg { width: 44px; height: 44px; display: block; }

/* View more button — MarCom card */
.tom-view-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 0;
  padding: 10px 20px 10px 14px;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  position: relative !important;
  z-index: 10;
  transform: none !important;
  left: auto !important;
  transition: background .2s ease;
}
.tom-view-more:hover { background: var(--green); }
.tom-view-more svg { width: 20px; height: 20px; flex-shrink: 0; }

@media (max-width: 960px) {
  .edition-card { width: 280px; }
  .edition-card--offset { transform: none; }
  .edition-card--offset:hover { transform: translateY(-6px); }
}
@media (max-width: 600px) {
  .editions-grid { gap: 36px; }
  .edition-card { width: 100%; max-width: 360px; }
}

/* ===========================================================
   Generic buttons
   =========================================================== */
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  transition: background .25s ease, transform .25s ease;
}
.btn-pill:hover { background: var(--green); transform: translateY(-1px); }
.btn-pill.light {
  background: #fff;
  color: var(--ink);
}
.btn-pill.light:hover { background: var(--green); color: #fff; }
.btn-pill .arr { width: 14px; height: 14px; transition: transform .25s ease; }
.btn-pill:hover .arr { transform: translate(2px,-2px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  color: var(--ink);
  font-size: 14.5px;
  font-weight: 500;
  background: rgba(255,255,255,.6);
  transition: background .2s ease, border-color .2s ease;
}
.btn-ghost:hover { background: #fff; border-color: var(--ink); }

/* ===========================================================
   Our Latest Work
   =========================================================== */
.latest-work {
  padding: 100px 0 120px;
  background: var(--bg);
}
.latest-work-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
}
.latest-work-head h2 {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.02;
}
.btn-pill.outline-dark {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-2);
  flex-shrink: 0;
}
.btn-pill.outline-dark:hover { background: var(--ink); color: #fff; }

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.work-card {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s ease;
}
.work-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -16px rgba(0,0,0,.18);
}
.work-img {
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.work-card:hover .work-img { transform: scale(1.04); }
.work-info {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.work-tag {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
}
.work-title {
  font-size: clamp(16px, 1.2vw, 19px);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 2px 0 0;
  color: var(--ink);
}
.work-loc {
  font-size: 12.5px;
  color: var(--ink-fade);
  margin-top: 2px;
}

@media (max-width: 900px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .latest-work-head { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 500px) {
  .work-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
}

/* ===========================================================
   Trusted by + standards
   =========================================================== */
.trusted {
  padding: 60px 0 30px;
  text-align: center;
}
.trusted-label {
  font-size: 13px;
  color: var(--ink-mute);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.logos-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 56px;
  opacity: .85;
}
.logo-mark {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink-mute);
  font-size: 22px;
  letter-spacing: -0.02em;
  transition: color .25s ease, transform .25s ease;
}
.logo-mark:hover { color: var(--ink); transform: translateY(-2px); }

.standards {
  padding: 90px 0 110px;
  text-align: center;
}
.standards h3 {
  font-family: "Inter Tight", system-ui, sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--ink, #0A0A0A);
  margin-bottom: 28px;
}
.standards-lede-1 {
  max-width: 64ch;
  margin: 0 auto 26px;
  text-align: center;
}
.standards-lede-1 strong { color: var(--ink, #0A0A0A); font-weight: 700; }
.standards-lede-2 {
  max-width: 78ch;
  margin: 0 auto 56px;
  text-align: center;
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.62;
  color: var(--ink-mute, #555);
}
.standards-logos {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 32px 56px;
  align-items: center;
}
.std-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  opacity: 1;
  transition: transform .35s ease;
}
.std-logo img {
  display: block;
  height: 100%;
  width: auto;
  object-fit: contain;
}
.std-logo:hover {
  transform: translateY(-3px);
}
.std-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 22px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  min-width: 130px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.std-badge:hover { transform: translateY(-3px); box-shadow: 0 12px 24px -10px rgba(0,0,0,.15); }
.std-badge strong { font-size: 15px; font-weight: 700; letter-spacing: -.005em; }
.std-badge span { font-size: 11px; color: var(--ink-mute); letter-spacing: 0.05em; text-transform: uppercase; }

/* ===========================================================
   FAQ
   =========================================================== */
.faq {
  padding: 100px 0;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
}
.faq h2 {
  font-size: clamp(34px, 3.6vw, 50px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.faq-items { display: flex; flex-direction: column; gap: 4px; }
.faq-item {
  border-top: 1px solid var(--line-2);
  padding: 24px 4px;
}
.faq-item:last-child { border-bottom: 1px solid var(--line-2); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink);
  gap: 16px;
}
.faq-q .pm {
  flex: 0 0 36px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: background .25s ease, border-color .25s ease, color .25s ease;
}
.faq-q .pm::before, .faq-q .pm::after {
  content: ""; position: absolute;
  background: currentColor;
  border-radius: 1px;
}
.faq-q .pm::before { width: 12px; height: 1.5px; }
.faq-q .pm::after  { width: 1.5px; height: 12px; transition: transform .25s ease; }
.faq-item.open .pm { background: var(--green); border-color: var(--green); color: #fff; }
.faq-item.open .pm::after { transform: rotate(90deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
  color: var(--ink-mute);
  font-size: 15.5px;
  line-height: 1.6;
  max-width: 64ch;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding-top: 14px;
}

/* ===========================================================
   Run by real people
   =========================================================== */
.real-people {
  padding: 80px 0 120px;
}
.real-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.real-card {
  background: #fff;
  border-radius: 22px;
  border: 1px solid var(--line);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .35s ease, box-shadow .35s ease;
}
.real-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 50px -20px rgba(0,0,0,.18);
}
.real-card .photo {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #d8d8d8, #aaa);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}
.real-card h4 {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
}
.real-card p {
  margin: 0;
  font-size: 14.5px;
  color: var(--ink-mute);
  line-height: 1.5;
}
.real-people-head {
  text-align: center;
  margin-bottom: 44px;
}
.real-people-head h2 {
  font-size: clamp(32px, 3.4vw, 48px);
  font-weight: 500;
  letter-spacing: -0.025em;
  margin: 8px 0;
}
.real-people-head p { color: var(--ink-mute); max-width: 60ch; margin: 8px auto 0; }

/* ===========================================================
   Final CTA
   =========================================================== */
.cta-final {
  background: var(--dark);
  color: #fff;
  padding: 140px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: "";
  position: absolute;
  inset: -50% -10% auto -10%;
  height: 100%;
  background: radial-gradient(700px 400px at 50% 50%, rgba(43,168,138,.18), transparent 70%);
  pointer-events: none;
}
.cta-final h2 {
  position: relative;
  font-size: clamp(48px, 7vw, 110px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.92;
  text-transform: uppercase;
}
.cta-final h2 .green { color: var(--green); }
.cta-final .sub {
  position: relative;
  margin: 24px auto 36px;
  max-width: 56ch;
  color: #c0c0c0;
  font-size: 16.5px;
  line-height: 1.5;
}
.cta-final .actions {
  position: relative;
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-final .actions .btn-pill { background: #fff; color: var(--ink); }
.cta-final .actions .btn-pill:hover { background: var(--green); color: #fff; }
.cta-final .actions .btn-pill.outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
}
.cta-final .actions .btn-pill.outline:hover { border-color: var(--green); background: rgba(43,168,138,.12); }

/* ===========================================================
   Footer
   =========================================================== */
footer {
  background: #000;
  color: #C2C2C2;
  padding: 80px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .nav-logo svg { color: #fff; }
.footer-brand .nav-logo .sub { color: #fff; border-color: rgba(255,255,255,.18); }
.footer-brand p {
  margin: 22px 0 0;
  font-size: 14px;
  line-height: 1.55;
  color: #A0A0A0;
  max-width: 28ch;
}
.footer-col h5 {
  margin: 0 0 16px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888;
  font-weight: 600;
}
.footer-col a {
  display: block;
  padding: 6px 0;
  font-size: 14.5px;
  color: #DCDCDC;
  transition: color .2s ease;
}
.footer-col a:hover { color: var(--green); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 13px;
  color: #777;
}

/* ===========================================================
   Reveal animations (used by JS IntersectionObserver)
   =========================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1);
}
.reveal.in { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: .08s; }
.reveal.delay-2 { transition-delay: .16s; }
.reveal.delay-3 { transition-delay: .24s; }
.reveal.delay-4 { transition-delay: .32s; }
.reveal.delay-5 { transition-delay: .40s; }
.reveal.delay-6 { transition-delay: .48s; }

/* gradient pulse for green dot */
@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(43,168,138,.4); }
  100% { box-shadow: 0 0 0 8px rgba(43,168,138,0); }
}
.eyebrow .dot { animation: pulse-dot 2s ease-out infinite; }

/* ===========================================================
   Responsive
   =========================================================== */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; margin-left: auto; }
  .nav { padding: 8px 8px 8px 18px; }
  .hero-laptop { width: 80vw; }
  .annot { font-size: 12px; max-width: 200px; padding: 12px; }
  .real-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
  .faq-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .a-top-right, .a-mid-right { right: 0; }
  .a-mid-left, .a-bot-left { left: 0; }
}

/* Personas — disable sticky on mobile, show as normal stacked layout */
@media (max-width: 768px) {
  .personas { height: auto; }
  .personas-pin { position: relative; height: auto; overflow: visible; }
  .pcard { position: relative; min-height: auto; }
  .pcard--cfo { background: var(--bg-2); }
  .pcard--mc {
    transform: none !important;
    box-shadow: none;
    border-top: 3px solid var(--bg);
  }
  .pcard-inner { padding-top: 40px; padding-bottom: 40px; }
  .pcard-body { grid-template-columns: 1fr; gap: 28px; }
  .pcard-visual { display: none; }
  .change-deck { width: 300px; height: 300px; }
}

/* Hide nav CTA on very small screens — mobile menu covers it */
@media (max-width: 480px) {
  .nav-cta { display: none; }
}

@media (max-width: 600px) {
  .container { padding: 0 18px; }
  .footer-top { grid-template-columns: 1fr; }
  /* Hero — allow headline text to wrap and reduce font size */
  .hero-text-line,
  .hero-text-mega {
    font-size: clamp(36px, 10vw, 60px);
    white-space: normal;
    padding: 0 12px;
  }
  .hero-pavers { display: none; }
  .hero-laptop { width: 62vw; }
  .hero-bottom { bottom: 8vh; }
  .change-deck { width: 280px; height: 280px; }
  .a-top-right, .a-bot-right { right: -10px; }
  .a-mid-left, .a-bot-left { left: -10px; }
  .annot { max-width: 180px; font-size: 11.5px; }
}
