/* =====================================================================
   Zeno Life Plan — Production Design System
   Aligned to Brand Identity v1.0 (official colour + typography spec).

   Colour system (official)
   - Navy      #002255  (primary text / brand)
   - Deep navy #061936  (dark surfaces)
   - Blue      #0044AA  (primary action / links — UI accent)
   - Gold      #b8964f  (sole decorative accent — used with restraint)
   - Ink       #14213d  (body text)
   - Paper     #f7f6f3  (light ground)
   The bright logo yellow (#FFD42A) is intentionally NOT used in
   product/brand applications, per the brand spec.

   Typography (official)
   - Display / headings: Cormorant Garamond (Google Fonts, Georgia fallback)
   - UI / body:          System sans stack
   ===================================================================== */

/* ----------------------------- Tokens ------------------------------ */
:root {
  /* Brand (canonical) */
  --brand-navy:  #002255;
  --brand-blue:  #0044AA;
  --brand-gold:  #b8964f;

  /* Brand (working aliases) */
  --navy:        var(--brand-navy);
  --navy-900:    #061936;   /* deep navy — dark surfaces */
  --navy-800:    #0a2a5e;   /* mid step for gradients */
  --blue:        var(--brand-blue);
  --blue-600:    #0a4fbd;
  --blue-050:    #eef4fd;
  --gold:        var(--brand-gold);   /* accent — reserved, restrained */
  --gold-dark:   #cbaa6a;   /* accent on navy */
  --gold-soft:   #f4ead7;   /* accent fills */

  /* Neutrals */
  --ink:         #14213d;   /* body text */
  --ink-soft:    #647086;   /* secondary text (brand "muted") */
  --neutral:     #bcc6d6;   /* secondary on navy */
  --line:        #e4e6ea;   /* hairlines */
  --line-soft:   #eef0f3;
  --surface:     #ffffff;
  --surface-1:   #f7f6f3;   /* paper — light section band */
  --surface-2:   #eceef2;
  --white:       #ffffff;

  /* Privacy / confirmation accents — institutional navy, never green.
     (Legacy token names retained; values are navy/navy-tint.) */
  --green:       #002255;
  --green-050:   #eef2f8;
  --amber:       #b8964f;

  /* Typography */
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Radius */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(0, 34, 85, .06),
               0 1px 3px rgba(0, 34, 85, .05);
  --shadow-md: 0 10px 30px -12px rgba(0, 34, 85, .22);
  --shadow-lg: 0 30px 60px -24px rgba(0, 34, 85, .30);

  /* Layout */
  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 48px);
  --header-h: 104px;

  /* Logo sizing (official horizontal lockup) */
  --logo-header-desktop: 70px;
  --logo-header-tablet:  64px;
  --logo-header-mobile:  50px;
  --logo-footer:         92px;   /* stacked lockup in the footer */
  --logo-h: var(--logo-header-desktop);

  /* Brand symbol watermark */
  --symbol-watermark-opacity: 0.06;

  /* Motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ----------------------------- Reset ------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; display: block; }

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  color: var(--navy);
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: -0.005em;
  margin: 0 0 .5em;
  font-weight: 600;
}

p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; }

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 12px 18px;
  z-index: 200;
  border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* ---------------------------- Layout ------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(64px, 8.5vw, 112px); }
.section--tight { padding-block: clamp(40px, 5vw, 64px); }
.section--band { background: var(--surface-1); }
.section--navy {
  background:
    radial-gradient(120% 120% at 100% 0%, var(--navy-800) 0%, var(--navy) 45%, var(--navy-900) 100%);
  color: #dfe7f5;
}
.section--navy h1,
.section--navy h2,
.section--navy h3 { color: #fff; }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.section--navy .eyebrow { color: var(--gold-dark); }

.section-head { max-width: 720px; margin-bottom: clamp(38px, 5vw, 60px); }
.section-head.center { margin-inline: auto; text-align: center; }

h2.h-xl { font-size: clamp(29px, 4.4vw, 46px); }
h2.h-2xl { font-size: clamp(34px, 5.2vw, 58px); line-height: 1.04; }
h3.h-lg { font-size: clamp(22px, 3vw, 31px); }
.lead {
  font-size: clamp(18px, 2.1vw, 21px);
  color: var(--ink-soft);
  line-height: 1.58;
}
.section-head .lead { margin-top: 14px; }
.section--navy .lead { color: #c3d1ea; }

/* ---------------------------- Buttons ------------------------------ */
.btn {
  --btn-bg: var(--blue);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font: inherit;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  background: var(--btn-bg);
  color: var(--btn-fg);
  cursor: pointer;
  transition: transform .15s var(--ease), box-shadow .2s var(--ease),
              background .2s var(--ease), border-color .2s var(--ease);
  text-decoration: none;
  white-space: nowrap;
  max-width: 100%;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
/* On phones, long localised CTA labels wrap to two lines rather than overflow. */
@media (max-width: 480px) { .btn { white-space: normal; line-height: 1.18; } }
/* Break over-long localised words in copy instead of forcing horizontal scroll. */
.split-copy, .lead, .feature-list li, .hn-sub, .h-xl, .h-lg, .qa p, .qa h3 { overflow-wrap: break-word; }
.btn-primary { box-shadow: 0 8px 20px -8px rgba(0, 68, 170, .6); }
.btn-primary:hover { background: var(--blue-600); box-shadow: 0 12px 26px -8px rgba(0, 68, 170, .65); }

.btn-secondary {
  --btn-bg: transparent;
  --btn-fg: var(--navy);
  border-color: var(--line-strong);
  background: transparent;
}
.btn-secondary:hover { border-color: var(--blue); color: var(--blue); }

.btn-ghost {
  --btn-bg: transparent;
  --btn-fg: var(--navy);
  padding-inline: 4px;
}
.btn-ghost:hover { color: var(--blue); }

/* On navy grounds the primary CTA is GOLD (restrained: blue on light, gold on dark) */
.btn-on-navy {
  --btn-bg: linear-gradient(100deg, #b8964f 0%, #cbaa6a 100%);
  --btn-fg: var(--navy);
  border: none;
  box-shadow: 0 10px 26px -10px rgba(184, 150, 79, .55);
}
.btn-on-navy:hover { filter: brightness(1.05); }

.btn-outline-navy {
  --btn-bg: transparent;
  --btn-fg: #fff;
  border-color: rgba(255,255,255,.35);
}
.btn-outline-navy:hover { border-color: #fff; background: rgba(255,255,255,.06); }

.btn-lg { padding: 16px 28px; font-size: 17px; }
.arrow { transition: transform .2s var(--ease); }
.btn:hover .arrow, a:hover .arrow { transform: translateX(3px); }

/* ---------------------------- Header ------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: space-between;
  /* Slightly tighter gutter than body content so the widest localisation
     (e.g. pt-BR "Demonstração Gratuita" + longer nav labels) fits on one row. */
  padding-inline: clamp(20px, 3vw, 30px);
}

/* Logo — official horizontal lockup, clearly visible and credible */
.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  /* clear space around the lockup */
  padding: 4px 0;
}
.brand:hover { text-decoration: none; opacity: .88; transition: opacity .15s var(--ease); }
.brand-logo { height: var(--logo-h); width: auto; display: block; }
.footer-brand .brand-logo { height: var(--logo-footer); }

/* Primary nav */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav a {
  color: var(--navy);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 10px;
  border-radius: var(--r-sm);
  transition: background .15s var(--ease), color .15s var(--ease);
}
.nav a:hover { background: var(--surface-1); text-decoration: none; color: var(--blue); }
.nav a[aria-current="page"] { color: var(--blue); }
/* Buttons inside the nav must keep their own colour, not the nav link colour. */
.nav a.btn { color: var(--btn-fg); }
.nav a.btn:hover { background: var(--blue-600); }

.header-cta { display: flex; align-items: center; gap: 8px; margin-left: 4px; }
/* Header demo button sits a touch more compact than page-body buttons so longer
   localisations (Demonstração Gratuita / Demo Gratuita) fit the single-row nav. */
.header-cta .btn { padding: 11px 17px; font-size: 15px; }
/* The CTA nested in the nav is for the mobile menu only; hide on desktop. */
.nav .header-cta { display: none; }
/* The mobile-menu CTA keeps full size (overrides the compact desktop rule). */
.nav .header-cta .btn { padding: 15px 24px; font-size: 16px; }
/* White logo + tagline appear only inside the full-screen mobile menu. */
.brand-logo--white { display: none; }
.nav-tagline { display: none; }

/* Accessible spam honeypot: off-screen, not focusable, hidden from assistive
   tech; real users never see or fill it, bots often do (Formspree drops them). */
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--r-sm);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 20px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .2s var(--ease), opacity .2s var(--ease);
}
.nav-toggle span { position: relative; }
.nav-toggle span::before { position: absolute; top: -6px; left: 0; }
.nav-toggle span::after  { position: absolute; top: 6px;  left: 0; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

/* ----------------------------- Hero -------------------------------- */
.hero {
  position: relative;
  padding-top: clamp(48px, 7vw, 88px);
  padding-bottom: clamp(40px, 6vw, 72px);
  background:
    radial-gradient(90% 120% at 85% -10%, var(--blue-050) 0%, transparent 55%),
    linear-gradient(180deg, #fff 0%, var(--surface-1) 100%);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.hero h1 {
  font-size: clamp(34px, 5.4vw, 58px);
  letter-spacing: -.03em;
  line-height: 1.04;
}
.hero h1 .accent-line {
  display: block;
  color: var(--blue);
}
.hero-sub {
  font-size: clamp(18px, 2.2vw, 22px);
  color: var(--ink-soft);
  max-width: 34ch;
  margin-bottom: 28px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-note {
  margin-top: 22px;
  font-size: 14.5px;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-note svg { flex-shrink: 0; }

/* ------------------- Product showcase (carousel) ------------------- */
.showcase { position: relative; }
.showcase-frame {
  position: relative;
  background: linear-gradient(180deg, #fff, #fbfcfe);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.showcase-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--line-soft);
  background: #fff;
}
.dot { width: 11px; height: 11px; border-radius: 50%; background: #dce3ee; }
.showcase-url {
  margin-left: 10px;
  font-size: 12.5px;
  color: var(--ink-soft);
  background: var(--surface-1);
  padding: 5px 12px;
  border-radius: var(--r-pill);
}
.showcase-stage {
  position: relative;
  min-height: 430px;
}
.slide {
  position: absolute;
  inset: 0;
  padding: clamp(18px, 3vw, 28px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.slide.is-active { opacity: 1; visibility: visible; transform: none; }

.slide-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}
.slide-title { font-size: 15px; font-weight: 700; color: var(--navy); }
.slide-title small { display: block; font-weight: 500; color: var(--ink-soft); font-size: 12.5px; }
.pill {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: var(--r-pill);
  background: var(--blue-050);
  color: var(--blue);
}
.pill.privacy { background: var(--green-050); color: var(--green); display: inline-flex; align-items: center; gap: 6px; }

/* Showcase controls */
.showcase-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.showcase-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.showcase-tab {
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  background: #fff;
  border: 1px solid var(--line);
  padding: 9px 15px;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: all .18s var(--ease);
}
.showcase-tab:hover { border-color: var(--blue); color: var(--blue); }
.showcase-tab[aria-selected="true"] {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.showcase-play {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  color: var(--ink-soft);
  background: none;
  border: 0;
  cursor: pointer;
  font-weight: 600;
}
.showcase-play:hover { color: var(--blue); }

/* ---------- Mini UI primitives used inside product mockups --------- */
.ui-row { display: grid; gap: 12px; }
.ui-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 14px 16px;
}
.ui-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ui-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.ui-label { font-size: 12.5px; color: var(--ink-soft); font-weight: 600; }
.ui-value { font-size: 26px; font-weight: 800; color: var(--navy); letter-spacing: -.02em; }
.ui-value small { font-size: 13px; font-weight: 600; color: var(--green); margin-left: 6px; }

.bar-track { height: 8px; background: var(--surface-2); border-radius: var(--r-pill); overflow: hidden; margin-top: 8px; }
.bar-fill { height: 100%; background: linear-gradient(90deg, var(--blue), var(--blue-600)); border-radius: inherit; }

.steps-vert { display: grid; gap: 10px; }
.step-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: #fff;
}
.step-item.done { border-color: #d5deec; background: var(--green-050); }
.step-item.current { border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-050); }
.step-badge {
  width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 13px; font-weight: 700;
  background: var(--surface-2); color: var(--ink-soft);
  flex-shrink: 0;
}
.step-item.done .step-badge { background: var(--green); color: #fff; }
.step-item.current .step-badge { background: var(--blue); color: #fff; }
.step-label { font-size: 14px; font-weight: 600; color: var(--navy); }
.step-label small { display: block; font-weight: 500; color: var(--ink-soft); font-size: 12px; }
.step-item.done .step-check { margin-left: auto; color: var(--green); }

/* Life plan document mock */
.doc {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
}
.doc-kicker { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); font-weight: 700; }
.doc h4 { font-size: 19px; margin: 6px 0 12px; }
.doc-line { height: 9px; border-radius: 5px; background: var(--surface-2); margin-bottom: 9px; }
.doc-line.w-90 { width: 90%; } .doc-line.w-80 { width: 80%; }
.doc-line.w-70 { width: 70%; } .doc-line.w-60 { width: 60%; }
.doc-purpose {
  margin-top: 14px; padding: 13px 15px;
  border-left: 3px solid var(--gold);
  background: var(--gold-soft);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: 13.5px; color: var(--navy); font-weight: 600;
}

/* Donut / heatmap for employer view */
.donut {
  width: 108px; height: 108px; border-radius: 50%;
  background: conic-gradient(var(--blue) 0 74%, var(--surface-2) 74% 100%);
  display: grid; place-items: center;
  position: relative;
  flex-shrink: 0;
}
.donut::after {
  content: ""; position: absolute;
  inset: 14px; border-radius: 50%; background: #fff;
}
.donut b { position: relative; z-index: 1; font-size: 22px; color: var(--navy); }
.heat { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.heat i { aspect-ratio: 1; border-radius: 4px; background: var(--blue); display: block; }

/* ---------------------- Institution carousel ---------------------- */
/* Navy band — the official institution logos are supplied white, so they
   sit on brand navy for maximum authority and legibility. */
.marquee-band {
  background:
    radial-gradient(120% 140% at 100% 0%, var(--navy-800) 0%, var(--navy) 55%, var(--navy-900) 100%);
  color: #fff;
}
.marquee-label {
  text-align: center;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
  padding-top: 40px;
}
.marquee-note {
  text-align: center; margin: 10px auto 0; max-width: 60ch;
  font-size: 13px; color: var(--neutral); opacity: .85;
}
.marquee {
  position: relative;
  overflow: hidden;
  padding-block: 22px 44px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: marquee 42s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.logo-item {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.logo-item img {
  height: 38px;
  width: auto;
  opacity: .82;
  transition: opacity .2s var(--ease);
}
.logo-item:hover img { opacity: 1; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------------------- Brand symbol system ----------------------- */
/* The official Zeno symbol as a restrained, recurring device. */
.section--navy { position: relative; overflow: hidden; }
.section--navy > .container { position: relative; z-index: 1; }

/* Faint oversized watermark inside selected navy sections */
.symbol-watermark {
  position: absolute;
  top: 50%;
  right: -2%;
  transform: translateY(-50%);
  width: clamp(280px, 32vw, 520px);
  aspect-ratio: 335 / 529;
  background: center / contain no-repeat url("../img/zeno-symbol-white.svg");
  opacity: var(--symbol-watermark-opacity);
  pointer-events: none;
  z-index: 0;
}
.symbol-watermark.left { right: auto; left: -4%; }

/* Small symbol mark used to introduce sections / mark statements */
.symbol-mark {
  display: inline-block;
  width: 30px;
  aspect-ratio: 335 / 529;
  background: center / contain no-repeat url("../img/zeno-symbol-navy.svg");
  vertical-align: middle;
}
.symbol-mark.white { background-image: url("../img/zeno-symbol-white.svg"); }
.symbol-mark.lg { width: 42px; }

/* Symbol lockup beside a hero eyebrow */
.brand-eyebrow { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.brand-eyebrow .symbol-mark { width: 26px; }
.brand-eyebrow .eyebrow { margin: 0; }

/* Hero: faint symbol behind the copy column */
.hero { position: relative; }
.hero-symbol {
  position: absolute;
  left: -70px;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(320px, 34vw, 560px);
  aspect-ratio: 335 / 529;
  background: center / contain no-repeat url("../img/zeno-symbol-navy.svg");
  opacity: .04;
  pointer-events: none;
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }

/* Symbol marker inside the methodology numbers (navy tiles already) */
.method-num { position: relative; }

/* Footer symbol */
.footer-symbol {
  width: 26px;
  aspect-ratio: 335 / 529;
  background: center / contain no-repeat url("../img/zeno-symbol-white.svg");
  opacity: .6;
  margin-bottom: 18px;
}

/* Product showcase: symbol in the browser-frame toolbar */
.showcase-brandmark {
  width: 15px;
  aspect-ratio: 335 / 529;
  background: center / contain no-repeat url("../img/zeno-symbol-navy.svg");
  opacity: .7;
  margin-right: 2px;
}

/* Official stacked lockup — decorative brand reinforcement (not the nav logo) */
.brand-stacked { display: inline-block; line-height: 0; }
.brand-stacked img { height: 96px; width: auto; display: block; }
.brand-stacked.sm img { height: 72px; }
.brand-stacked.lg img { height: 128px; }

/* ============ "Two outcomes. One methodology." section ============ */
/* One of the defining commercial messages — given deliberate breathing room. */
.outcomes-section { padding-block: clamp(64px, 9vw, 120px); }
.outcomes { display: grid; gap: 0; max-width: 1000px; margin-inline: auto; }
/* The single methodology hub */
.outcomes-hub {
  max-width: 660px;
  margin: 0 auto;
  background:
    radial-gradient(120% 160% at 50% 0%, var(--navy-800) 0%, var(--navy) 60%, var(--navy-900) 100%);
  color: #fff;
  border-radius: var(--r-xl);
  padding: clamp(26px, 3.4vw, 34px) clamp(20px, 3vw, 36px);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.outcomes-hub .hub-symbol {
  position: absolute; inset: 0 -30% 0 auto; width: 40%;
  background: center / contain no-repeat url("../img/zeno-symbol-white.svg");
  opacity: .07; pointer-events: none;
}
.outcomes-hub .hub-k {
  font-family: var(--font-sans); font-size: 12px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold-dark); font-weight: 700;
}
.outcomes-hub h3 { color: #fff; font-size: clamp(21px, 2.5vw, 27px); margin: 8px 0 16px; }
.outcomes-steps { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; position: relative; z-index: 1; }
.outcomes-steps .ostep {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--r-pill); padding: 8px 15px; font-size: 13.5px; font-weight: 600; color: #fff;
}
.outcomes-steps .ostep b { color: var(--gold-dark); font-weight: 700; }

/* Connector: one hub flowing into two outputs */
.outcomes-flow {
  height: 58px; position: relative; margin: 0 auto; width: 2px;
}
.outcomes-flow::before {
  content: ""; position: absolute; top: 0; left: 50%; width: 2px; height: 30px;
  background: var(--line); transform: translateX(-50%);
}
.outcomes-flow::after {
  content: ""; position: absolute; top: 30px; left: 50%; width: min(600px, 72vw); height: 28px;
  border: 2px solid var(--line); border-bottom: 0; border-radius: 12px 12px 0 0;
  transform: translateX(-50%);
}
.outcomes-two { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 32px); align-items: stretch; }
.outcome-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-top: 4px solid var(--navy);
  border-radius: var(--r-lg); padding: clamp(26px, 3.4vw, 38px);
  box-shadow: var(--shadow-sm);
}
.outcome-card.org { border-top-color: var(--gold); }
.outcome-card .oc-k {
  font-family: var(--font-sans); font-size: 12px; letter-spacing: .1em;
  text-transform: uppercase; font-weight: 700; color: var(--blue);
}
.outcome-card.org .oc-k { color: #8a6d34; }
.outcome-card h3 { font-size: clamp(22px, 2.6vw, 26px); margin: 10px 0 4px; }
.outcome-card .oc-sub { color: var(--ink-soft); font-size: 15.5px; margin: 0 0 20px; }
.outcome-list { display: grid; gap: 14px; }
.outcome-list li { list-style: none; display: flex; gap: 12px; align-items: flex-start; font-size: 16px; }
.outcome-list .oc-dot { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--blue-050); color: var(--blue); display: grid; place-items: center; margin-top: 1px; font-size: 12px; }
.outcome-card.org .outcome-list .oc-dot { background: var(--gold-soft); color: #8a6d34; }

/* Differentiation strip (what it is / is not) */
.diff-strip { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px,2.5vw,26px); }
.diff-col { padding: 22px 24px; border-radius: var(--r-lg); }
.diff-col.is { background: var(--navy); color: #fff; }
.diff-col.is h3 { color: #fff; }
.diff-col.isnt { background: var(--surface-1); border: 1px solid var(--line); }
.diff-col h3 { font-size: 18px; margin: 0 0 12px; }
.diff-col ul { display: grid; gap: 8px; }
.diff-col li { list-style: none; font-size: 15px; display: flex; gap: 9px; align-items: baseline; }
.diff-col.is li { color: #cdd7ea; }
.diff-col.isnt li { color: var(--ink-soft); }
.diff-col .dmark { font-weight: 700; }
.diff-col.is .dmark { color: var(--gold-dark); }
.diff-col.isnt .dmark { color: #b23; opacity: .5; }

@media (max-width: 720px) {
  .outcomes-two, .diff-strip { grid-template-columns: 1fr; }
  .outcomes-flow { display: none; }
  .outcomes-hub { margin-bottom: 18px; }
}

/* ============ Phase 5: commercial-review components =============== */
/* Balanced wrapping for prominent headings (P7) */
.text-balance, h1, h2.h-2xl, h2.h-xl, .cta-band h2 { text-wrap: balance; }

/* Founding philosophy — the brand's thesis line */
.philosophy {
  font-family: var(--font-display);
  font-size: clamp(21px, 2.4vw, 27px);
  line-height: 1.28;
  color: var(--navy);
  margin: 22px 0 20px;
  padding-left: 20px;
  border-left: 3px solid var(--gold);
}
.philosophy em { font-style: normal; color: var(--blue); }
.section--navy .philosophy { color: #fff; }
.section--navy .philosophy em { color: var(--gold-dark); }

/* Hero dual value paragraph (employees / organisations) */
.hero-dual2 {
  display: grid; gap: 12px; margin: 24px 0 6px; padding: 18px 20px;
  background: var(--surface-1); border: 1px solid var(--line);
  border-left: 3px solid var(--gold); border-radius: var(--r-md);
}
.hero-dual2 p { margin: 0; font-size: 15.5px; line-height: 1.5; color: var(--ink); }
.hero-dual2 .hd-k { font-weight: 700; color: var(--navy); }
.hero-dual2 .hd-k.org { color: var(--blue); }

/* Career accent in the fulfilment map (P5) */
.ui-card.ui-accent { border-color: #e6d9bd; background: #fffdf7; }
.bar-fill.gold { background: linear-gradient(90deg, var(--gold), var(--gold-dark)); }

/* Organisation dashboard: department tabs + actionable insight (P8) */
.dept-tabs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.dept-tab {
  font-size: 12px; font-weight: 600; color: var(--ink-soft);
  background: var(--surface-1); border: 1px solid var(--line);
  padding: 5px 11px; border-radius: var(--r-pill); white-space: nowrap;
}
.dept-tab.is-active { background: var(--navy); border-color: var(--navy); color: #fff; }
.insight-line {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 13.5px; color: var(--navy); background: var(--blue-050);
  border: 1px solid #d6e4fb; border-radius: var(--r-sm); padding: 10px 12px;
}
.insight-line .il-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); margin-top: 5px; flex-shrink: 0; }
.privacy-banner.compact { padding: 12px 14px; gap: 12px; }
.privacy-banner.compact .lock { width: 40px; height: 40px; }
.privacy-banner.compact h3 { font-size: 15px; }
.privacy-banner.compact p { font-size: 13px; }
.mock-note { font-size: 11.5px; color: var(--ink-soft); font-style: italic; margin: 12px 0 0; text-align: right; }

/* Seven life areas — real text, expands for longer languages */
.life-areas {
  list-style: none; padding: 0; margin: 0 auto; max-width: 900px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.life-areas li {
  display: flex; align-items: center; gap: 12px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 16px 18px; font-size: 15.5px; font-weight: 600; color: var(--navy);
}
.life-areas .la-n {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: var(--surface-1); color: var(--ink-soft);
  display: grid; place-items: center; font-size: 12.5px; font-weight: 700;
}
.life-areas li:nth-child(2) { border-color: #e6d4ad; background: #fffdf7; }
.life-areas li:nth-child(2) .la-n { background: var(--gold); color: #fff; }
@media (max-width: 860px) { .life-areas { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .life-areas { grid-template-columns: 1fr; } }
/* ============ Approved methodology framework (HTML/CSS) ============
   Faithful to ZLP Methodology EN.pptx slide 5. Real text = translatable;
   the layout expands for longer languages rather than clipping. */
.zlp-framework { margin: 0 auto; max-width: 1000px; }
.fw-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}
.fw-step { text-align: center; padding: 0 10px; }
.fw-marker {
  display: grid; place-items: center;
  width: 62px; height: 62px; margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--navy); color: #fff;
  font-family: var(--font-sans); font-size: 22px; font-weight: 700;
}
.fw-step.is-final .fw-marker { background: var(--gold); }
.fw-name {
  font-family: var(--font-display); font-size: clamp(20px, 2.2vw, 27px);
  font-weight: 600; color: var(--navy); margin: 0 0 8px; line-height: 1.15;
}
.fw-verb {
  margin: 0; font-family: var(--font-sans); font-size: 11.5px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft);
}
.fw-arrow { align-self: center; margin-top: 12px; width: 30px; position: relative; }
.fw-arrow::before {
  content: ""; position: absolute; top: 50%; left: 0; width: 22px; height: 2px;
  background: var(--gold); transform: translateY(-50%);
}
.fw-arrow::after {
  content: ""; position: absolute; top: 50%; left: 15px;
  width: 8px; height: 8px; border-top: 2px solid var(--gold); border-right: 2px solid var(--gold);
  transform: translateY(-50%) rotate(45deg);
}
.fw-divider { border: 0; border-top: 1px solid var(--line); margin: 40px 0 22px; }
.fw-outputs-k {
  margin: 0 0 14px; font-family: var(--font-sans); font-size: 11.5px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft);
}
.fw-outputs { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.fw-output {
  display: grid; place-items: center; min-height: 78px; padding: 18px 22px;
  border-radius: var(--r-lg); background: var(--navy); text-align: center;
}
.fw-output.is-purpose { background: var(--gold); }
.fw-output span { font-family: var(--font-display); font-size: clamp(18px, 2vw, 24px); font-weight: 600; color: #fff; }
.fw-caption { margin: 22px 0 0; font-size: 14.5px; color: var(--ink-soft); text-align: center; max-width: 68ch; margin-inline: auto; }

@media (max-width: 820px) {
  .fw-steps { grid-template-columns: 1fr 1fr; gap: 32px 0; }
  .fw-arrow { display: none; }
  .fw-outputs { grid-template-columns: 1fr; gap: 14px; }
}
@media (max-width: 420px) {
  .fw-steps { grid-template-columns: 1fr; gap: 26px; }
}

/* ---- Organisation Platform: enterprise application shell ---- */
.app-shell { display: grid; grid-template-columns: 116px 1fr; background: #fff; }
.app-rail {
  background: var(--navy); padding: 16px 10px; display: grid; gap: 4px;
  align-content: start;
}
.app-rail .rail-mark {
  width: 16px; aspect-ratio: 335/529; margin: 2px auto 14px;
  background: center/contain no-repeat url("../img/zeno-symbol-white.svg"); opacity: .9;
}
.app-rail .rail-item {
  font-size: 11.5px; font-weight: 600; color: #9fb2d4;
  padding: 7px 9px; border-radius: 6px;
}
.app-rail .rail-item.is-active { background: rgba(255,255,255,.10); color: #fff; }
.app-main { padding: 16px; min-width: 0; }
.app-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding-bottom: 12px; margin-bottom: 12px; border-bottom: 1px solid var(--line-soft);
}
.app-title { font-size: 14px; font-weight: 700; color: var(--navy); }
.app-filter {
  font-size: 11.5px; font-weight: 600; color: var(--ink-soft);
  background: var(--surface-1); border: 1px solid var(--line);
  border-radius: var(--r-pill); padding: 4px 10px;
}
.app-table { width: 100%; border-collapse: collapse; margin-top: 10px; }
.app-table th {
  text-align: left; font-size: 10px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--ink-soft); padding: 0 6px 7px;
}
.app-table td {
  font-size: 12px; color: var(--navy); padding: 8px 6px;
  border-top: 1px solid var(--line-soft);
}
.app-table td:nth-child(2), .app-table td:nth-child(3) { font-variant-numeric: tabular-nums; font-weight: 600; }
.app-table tr.is-hidden-row td { color: var(--ink-soft); font-style: italic; background: var(--surface-1); }
.app-table .row-lock { display: inline-block; width: 12px; vertical-align: -2px; color: var(--navy); }
.app-table .row-lock svg { width: 12px; height: 12px; }

/* Calm ranked bars for the employer dashboard (P4) */
.rankbars { display: grid; gap: 11px; }
.rankbar { display: grid; grid-template-columns: 1fr; gap: 6px; }
.rankbar span { font-size: 13px; color: var(--navy); font-weight: 600; }
.rankbar i {
  display: block; height: 8px; border-radius: var(--r-pill);
  background: linear-gradient(90deg, var(--blue), var(--navy)); min-width: 8px;
}

/* Enterprise SaaS implementation path (P4/P18) */
.saas-path {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  counter-reset: none; list-style: none; padding: 0;
}
.saas-step {
  display: flex; gap: 14px; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 20px; box-shadow: var(--shadow-sm);
}
.saas-step .ss-num {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 10px;
  background: var(--navy); color: #fff; display: grid; place-items: center;
  font-weight: 700; font-size: 15px;
}
.saas-step:nth-child(n+5) .ss-num { background: var(--blue); }
.saas-step h3, .saas-step h4 { font-size: 16px; margin: 2px 0 5px; }
.saas-step p { margin: 0; font-size: 13.5px; color: var(--ink-soft); }
.enablement-note {
  margin: 26px auto 0; max-width: 68ch; font-size: 14.5px; color: var(--ink-soft);
  border-top: 1px solid var(--line); padding-top: 20px;
}
.saas-path-6 { grid-template-columns: repeat(3, 1fr); }
.saas-path-7 { grid-template-columns: repeat(4, 1fr); }
.saas-path-7 .saas-step:nth-child(n+5) .ss-num { background: var(--blue); }
/* Optional enablement (clearly secondary to the SaaS path) */
.enablement { text-align: center; margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--line); }
.enablement-k { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); margin: 0 0 14px; }
.enablement-items { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.enablement-items span {
  font-size: 14px; font-weight: 600; color: var(--navy);
  background: #fff; border: 1px dashed var(--line); border-radius: var(--r-pill); padding: 9px 18px;
}
.enablement-sub { margin: 16px auto 0; max-width: 60ch; font-size: 14px; color: var(--ink-soft); font-style: italic; }

/* Six organisational value boxes (P13) */
.value-grid { gap: clamp(16px, 2vw, 22px); }
.vbox {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-lg); padding: 26px 24px; color: #dbe4f2;
}
.vbox-ic {
  display: inline-grid; place-items: center; width: 46px; height: 46px;
  border-radius: 12px; background: rgba(203,170,106,.16); color: var(--gold-dark);
  margin-bottom: 16px;
}
.vbox h3 { color: #fff; font-size: 20px; margin: 0 0 8px; }
.vbox p { margin: 0 0 12px; color: #b6c4dc; font-size: 15px; }
.vbox-use {
  display: block; font-size: 13px; font-weight: 600; color: var(--gold-dark);
  border-top: 1px solid rgba(255,255,255,.12); padding-top: 12px;
}
.diff-line { margin-top: 34px; font-weight: 600; color: #9fb2d4; letter-spacing: .01em; }

/* Slim differentiation band (P9 — replaces the old 3-card section) */
.diff-band { text-align: center; max-width: 860px; margin-inline: auto; }
.diff-band .diff-not { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); margin: 0 0 12px; }
.diff-band h2 { font-family: var(--font-display); color: var(--navy); margin: 0; }

/* Alignment visual (P10) */
.align-visual {
  display: flex; align-items: stretch; justify-content: center; gap: 8px;
  flex-wrap: wrap; max-width: 940px; margin: 0 auto;
}
.align-node {
  flex: 1 1 200px; text-align: center; background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.16); border-radius: var(--r-lg);
  padding: 28px 22px; display: flex; flex-direction: column; justify-content: center;
}
.align-node .an-k { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-dark); font-weight: 700; }
.align-node .an-t { font-family: var(--font-display); font-size: clamp(20px, 2.4vw, 26px); color: #fff; margin: 8px 0 0; line-height: 1.2; }
.align-arrows { display: grid; align-content: center; color: rgba(255,255,255,.5); font-size: 20px; line-height: 1; }
.align-core {
  flex: 0 0 auto; align-self: center; text-align: center;
  background: linear-gradient(160deg, var(--blue), var(--navy));
  border: 1px solid rgba(255,255,255,.2); border-radius: 50%;
  width: 150px; height: 150px; display: grid; place-content: center; gap: 6px;
  box-shadow: var(--shadow-lg);
}
.align-core b { font-family: var(--font-display); font-size: 22px; color: #fff; font-weight: 600; }
.align-core-mark { width: 30px; aspect-ratio: 335/529; margin: 0 auto; background: center/contain no-repeat url("../img/zeno-symbol-white.svg"); }

/* People Plan section (P9) */
.people-card { background: #fff; }
.pstack { display: grid; gap: 8px; margin-top: 14px; }
.pstack-row {
  padding: 13px 15px; border-radius: var(--r-sm); font-size: 14.5px; font-weight: 600;
  background: var(--surface-1); border: 1px solid var(--line); color: var(--ink-soft);
}
.pstack-row.add { background: var(--navy); border-color: var(--navy); color: #fff; position: relative; }
.pstack-row.add::before { content: "+ "; color: var(--gold-dark); font-weight: 800; }

/* Foundations cards (P15) */
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.found-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px 22px; position: relative;
}
.found-card .fc-n { font-family: var(--font-display); font-size: 30px; color: var(--gold); font-weight: 600; }
.found-card h3 { font-size: 19px; margin: 6px 0 8px; }
.found-card p { margin: 0; color: var(--ink-soft); font-size: 14.5px; }

/* Plain-language privacy answers */
.qa-list { display: grid; gap: 14px; }
.qa {
  background: #fff; border: 1px solid var(--line); border-left: 3px solid var(--navy);
  border-radius: var(--r-md); padding: 22px 24px;
}
.qa h3 { font-size: 18px; margin: 0 0 8px; }
.qa p { margin: 0; color: var(--ink-soft); font-size: 15.5px; }
.qa p b { color: var(--navy); }

/* Contact form (P17) */
.contact-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.contact-form {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: clamp(24px, 3.4vw, 38px); box-shadow: var(--shadow-md);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: block; margin-bottom: 16px; }
.field > span { display: block; font-size: 13.5px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 15px; color: var(--ink);
  padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--r-sm);
  background: #fff; transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-050);
}
.field textarea { resize: vertical; }
.field-check { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--ink-soft); margin: 4px 0 20px; }
.field-check input { margin-top: 3px; flex-shrink: 0; }
.form-note { margin: 14px 0 0; padding: 12px 14px; border-radius: var(--r-sm); background: var(--green-050); color: var(--green); font-size: 14px; font-weight: 600; }
.contact-aside { background: var(--surface-1); border: 1px solid var(--line); border-radius: var(--r-xl); padding: clamp(24px, 3vw, 32px); }
.contact-routes { display: grid; gap: 4px; }
.contact-routes li { list-style: none; padding: 13px 0; border-top: 1px solid var(--line); }
.contact-routes li:first-child { border-top: 0; padding-top: 0; }
.contact-routes b { display: block; color: var(--navy); font-size: 15px; }
.contact-routes span { display: block; color: var(--ink-soft); font-size: 13.5px; margin-top: 2px; }
.contact-routes li:target { background: var(--blue-050); border-radius: var(--r-sm); padding-inline: 12px; margin-inline: -12px; }

@media (max-width: 860px) {
  .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .field-row { grid-template-columns: 1fr; }
}

/* Language selector (P20) */
.lang { position: relative; }
.lang summary {
  list-style: none; cursor: pointer; display: inline-flex; align-items: center; gap: 5px;
  font-size: 14px; font-weight: 600; color: var(--navy);
  padding: 8px 12px; border: 1px solid var(--line); border-radius: var(--r-pill);
}
.lang summary::-webkit-details-marker { display: none; }
.lang summary:hover { border-color: var(--blue); color: var(--blue); }
.lang[open] summary { border-color: var(--blue); }
.lang-menu {
  position: absolute; right: 0; top: calc(100% + 8px); z-index: 50;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--shadow-md); padding: 8px; width: 220px; display: grid; gap: 2px;
}
.lang-menu a, .lang-menu span { display: block; padding: 8px 12px; border-radius: var(--r-sm); font-size: 14px; }
.lang-menu a { color: var(--navy); font-weight: 600; background: var(--surface-1); }
.lang-menu span { color: var(--ink-soft); cursor: default; }
.lang-note { margin: 6px 4px 2px; font-size: 12px; color: var(--ink-soft); font-style: italic; padding: 0; }
@media (max-width: 900px) {
  .lang { width: 100%; }
  .lang summary { width: 100%; justify-content: space-between; }
  .lang-menu { position: static; width: 100%; box-shadow: none; margin-top: 8px; }
}

@media (max-width: 960px) {
  .saas-path { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .saas-path, .grid-4, .value-grid { grid-template-columns: 1fr; }
  .align-visual { flex-direction: column; align-items: center; }
  .align-arrows { transform: rotate(90deg); }
  .align-node { width: 100%; }
}

/* ---------------------------- Cards -------------------------------- */
.grid { display: grid; gap: clamp(18px, 2.5vw, 26px); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(22px, 3vw, 30px);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.card.hover:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #d3ddec; }
.card h3 { font-size: 20px; margin-bottom: 10px; }
.card p { color: var(--ink-soft); margin-bottom: 0; font-size: 16px; }

.card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--blue-050);
  color: var(--blue);
  margin-bottom: 18px;
}
.card-icon.gold { background: var(--gold-soft); color: #7d6327; }
.card-icon.green { background: var(--green-050); color: var(--green); }

/* Link card */
.link-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.link-card .card-link {
  margin-top: auto;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* --------------------- Split feature sections --------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
/* Let grid tracks shrink below their content's min-content so long copy wraps
   instead of forcing horizontal overflow on narrow screens (esp. pt-BR/es-ES). */
.split > * { min-width: 0; }
.split.reverse .split-media { order: 2; }
.feature-list { display: grid; gap: 14px; margin-top: 22px; }
.feature-list li {
  list-style: none;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 16px;
}
.feature-list .tick {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--green-050);
  color: var(--green);
  display: grid; place-items: center;
  margin-top: 1px;
}
.section--navy .feature-list .tick { background: rgba(184,150,79,.20); color: var(--gold-dark); }

/* Panel media (product screen) */
.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.section--navy .panel { border-color: rgba(255,255,255,.12); }
.panel-body { padding: clamp(18px, 3vw, 26px); }

/* --------------------------- Methodology --------------------------- */
.method-steps { counter-reset: step; }
.method-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.method-step:last-child { border-bottom: 1px solid var(--line); }
.method-num {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--navy);
  color: #fff;
  display: grid; place-items: center;
  font-size: 22px; font-weight: 800;
}
.method-step:nth-child(4) .method-num { background: var(--blue); }
.method-step h3 { font-size: 22px; margin-bottom: 6px; }
.method-step p { color: var(--ink-soft); margin: 0; }

/* Life areas chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  padding: 10px 16px;
  border-radius: var(--r-pill);
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
}
.section--navy .chip { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.16); color: #fff; }

/* ----------------------- Deployment pathway ----------------------- */
.pathway { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.path-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 20px 16px;
  text-align: center;
}
.path-card .path-ic { color: var(--blue); margin: 0 auto 12px; }
.path-card h4 { font-size: 15.5px; margin: 0; }

/* ---------------------------- Privacy ----------------------------- */
.privacy-banner {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: clamp(22px, 3vw, 30px);
  border-radius: var(--r-lg);
  background: linear-gradient(120deg, var(--green-050), #fff);
  border: 1px solid #d5deec;
}
.privacy-banner .lock {
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: 14px; background: var(--green); color: #fff;
  display: grid; place-items: center;
}
.privacy-banner h3 { margin: 0 0 4px; font-size: 20px; }
.privacy-banner p { margin: 0; color: var(--ink-soft); }

/* --------------------------- Testimonials ------------------------- */
.quote {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 32px);
}
.quote blockquote { margin: 0 0 18px; font-size: 18px; color: var(--navy); font-weight: 500; line-height: 1.5; }
.quote figcaption { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--surface-2); color: var(--navy);
  display: grid; place-items: center; font-weight: 700; font-size: 15px;
  flex-shrink: 0;
}
.quote cite { font-style: normal; font-weight: 700; color: var(--navy); font-size: 15px; display: block; }
.quote cite span { display: block; font-weight: 500; color: var(--ink-soft); font-size: 13.5px; }

/* Foundations */
.foundations { display: flex; flex-wrap: wrap; gap: 12px; }
.foundation {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 18px; border-radius: var(--r-pill);
  background: #fff; border: 1px solid var(--line); font-weight: 600; color: var(--navy);
}
.foundation .fdot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }

/* --------------------------- CTA band ----------------------------- */
.cta-band {
  border-radius: var(--r-xl);
  padding: clamp(36px, 5vw, 60px);
  background:
    radial-gradient(120% 140% at 0% 0%, var(--blue) 0%, var(--navy) 55%);
  color: #fff;
  text-align: center;
}
.cta-band h2 { color: #fff; font-size: clamp(26px, 3.6vw, 38px); }
.cta-band p { color: #c9d6ee; max-width: 52ch; margin: 0 auto 26px; font-size: 18px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------------------------- Footer ------------------------------ */
.site-footer {
  background:
    radial-gradient(110% 130% at 100% 0%, var(--navy-800) 0%, var(--navy) 55%, var(--navy-900) 100%);
  color: #b7c4dc;
  padding-block: clamp(60px, 7vw, 96px) 36px;
}
.footer-top {
  display: grid;
  grid-template-columns: clamp(286px, 21vw, 324px) repeat(4, minmax(0, 1fr));
  gap: 40px 34px;
}
/* Extra breathing room between the brand block and the first nav column only —
   inter-column gap (34px) is unchanged. Reset when the brand stacks full-width. */
.footer-brand { padding-inline-end: 8px; }
.footer-brand .brand { color: #fff; margin-bottom: 20px; }
.footer-lockup { width: clamp(196px, 17vw, 226px); height: auto; display: block; }
.footer-brand p { color: #9fb0cd; font-size: 15px; line-height: 1.6; max-width: 34ch; }
.footer-col h4 {
  color: #fff;
  font-size: 12.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { display: grid; gap: 12px; }
.footer-col li { list-style: none; }
.footer-col a { color: #b7c4dc; font-size: 15px; transition: color .15s var(--ease); }
.footer-col a:hover { color: #fff; text-decoration: none; }
.footer-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--gold-dark);
  border: 1px solid rgba(203,170,106,.4);
  border-radius: 4px;
  padding: 1px 5px;
  margin-left: 6px;
  vertical-align: middle;
}
.footer-bottom {
  margin-top: 52px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #8496b7;
}
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { color: #8496b7; }

/* ------------------------- Page hero (sub) ------------------------ */
.page-hero {
  padding-block: clamp(48px, 7vw, 84px) clamp(32px, 4vw, 48px);
  background:
    radial-gradient(80% 120% at 90% -10%, var(--blue-050) 0%, transparent 55%),
    var(--surface-1);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(32px, 4.6vw, 50px); max-width: 18ch; }
.page-hero .lead { max-width: 60ch; }
.breadcrumb { font-size: 14px; color: var(--ink-soft); margin-bottom: 16px; }
.breadcrumb a { color: var(--ink-soft); }

/* Stat row */
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat b { display: block; font-size: clamp(28px, 3.5vw, 40px); color: var(--navy); letter-spacing: -.02em; }
.section--navy .stat b { color: #fff; }
.stat span { color: var(--ink-soft); font-size: 15px; }
.section--navy .stat span { color: #b7c4dc; }

/* ------------------------- Utility spacing ------------------------ */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.center { text-align: center; }
.muted { color: var(--ink-soft); }
.stack-sm { display: grid; gap: 10px; }

/* ============================ Responsive ========================== */
@media (max-width: 1024px) {
  :root { --logo-h: var(--logo-header-tablet); --header-h: 94px; }
}

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-sub { max-width: 46ch; }
  .showcase { margin-top: 8px; }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; padding-inline-end: 0; }
  .pathway { grid-template-columns: repeat(3, 1fr); }
  .stat-row { grid-template-columns: 1fr 1fr; }
}

/* Mobile / tablet navigation — switches to the hamburger before the full nav +
   CTA can overflow the header. Threshold raised to 1200px so the widest
   localisation (pt-BR "Demonstração Gratuita" + longer nav labels) never
   crowds the row: the full desktop nav shows only where every locale fits,
   and the tablet range uses the immersive overlay for all languages. */
/* ---------------------------------------------------------------------------
   Full-screen editorial mobile menu (≤1200px)
   An immersive deep-navy overlay with large serif links — the calm, premium
   translation of a "slick" mobile nav.
   --------------------------------------------------------------------------- */
@media (max-width: 1240px) {
  .nav-toggle { display: inline-flex; position: relative; z-index: 120; }
  /* Keep the logo above the full-screen overlay so the white mark shows. */
  .brand { position: relative; z-index: 120; }
  .nav {
    position: fixed;
    inset: 0;
    z-index: 90;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    background: linear-gradient(165deg, #0b2c60 0%, #061936 72%);
    padding: calc(var(--header-h) + 20px) var(--gutter)
             max(28px, env(safe-area-inset-bottom, 0px));
    transform: translateY(-14px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .3s var(--ease), transform .3s var(--ease),
                visibility 0s linear .3s;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav.is-open {
    opacity: 1; transform: none; pointer-events: auto;
    visibility: visible; transition-delay: 0s;
  }

  /* Big serif nav links */
  .nav a:not(.btn) {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(29px, 8.5vw, 38px);
    line-height: 1.08;
    letter-spacing: -.01em;
    color: #fff;
    padding: 17px 2px;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    transition: color .15s var(--ease);
  }
  .nav a:not(.btn):hover,
  .nav a:not(.btn):active { background: transparent; color: var(--gold-dark); }
  .nav a[aria-current="page"] { color: var(--gold); background: transparent; }

  /* Staggered entrance */
  .nav.is-open a:not(.btn) { animation: navIn .42s var(--ease) both; }
  .nav.is-open a:not(.btn):nth-of-type(1) { animation-delay: .06s; }
  .nav.is-open a:not(.btn):nth-of-type(2) { animation-delay: .11s; }
  .nav.is-open a:not(.btn):nth-of-type(3) { animation-delay: .16s; }
  .nav.is-open a:not(.btn):nth-of-type(4) { animation-delay: .21s; }
  .nav.is-open a:not(.btn):nth-of-type(5) { animation-delay: .26s; }
  @keyframes navIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
  @media (prefers-reduced-motion: reduce) { .nav.is-open a:not(.btn) { animation: none; } }

  /* Foot of the menu: CTA + language + tagline */
  .nav .header-cta {
    display: flex; flex-direction: column; align-items: stretch;
    gap: 14px; margin-top: auto; padding-top: 30px;
  }
  .nav .header-cta .btn { width: 100%; font-size: 16px; padding: 15px 24px; }
  .header-cta.desktop-only { display: none; }
  .nav-tagline {
    display: block; font-family: var(--font-display); font-style: italic;
    font-size: 16px; color: #9fb2d4; text-align: center; margin: 16px 0 0;
  }
  /* Language selector on the navy ground */
  .nav .lang summary { color: #cbd5e6; border-color: rgba(255, 255, 255, .28); }
  .nav .lang summary:hover, .nav .lang[open] summary { color: #fff; border-color: rgba(255, 255, 255, .55); }
  .nav .lang-menu { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .16); }
  .nav .lang-menu a { color: #fff; background: rgba(255, 255, 255, .08); }
  .nav .lang-menu span { color: #9fb2d4; }
  .nav .lang-note { color: #8ba0c4; }

  /* Header state while the menu is open */
  body.nav-open { overflow: hidden; }
  body.nav-open .site-header { background: transparent; backdrop-filter: none; border-bottom-color: transparent; }
  body.nav-open .brand-logo--navy { display: none; }
  body.nav-open .brand-logo--white { display: block; }
  body.nav-open .nav-toggle { background: transparent; border-color: rgba(255, 255, 255, .3); }
  body.nav-open .nav-toggle span::before,
  body.nav-open .nav-toggle span::after { background: #fff; }

  /* Subtle header shadow once the page is scrolled */
  body.is-scrolled .site-header { box-shadow: 0 6px 22px rgba(0, 34, 85, .07); }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  :root { --logo-h: var(--logo-header-mobile); --header-h: 80px; --logo-footer: 74px; }

  .grid-3, .grid-2, .ui-grid-3 { grid-template-columns: 1fr; }
  .pathway { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .showcase-stage { min-height: 520px; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .method-step { grid-template-columns: 48px 1fr; gap: 14px; }
  .method-num { width: 44px; height: 44px; font-size: 18px; }
}

@media (max-width: 460px) {
  .pathway, .footer-top { grid-template-columns: 1fr; }
  .hero-cta .btn { width: 100%; }
}

/* =====================================================================
   Production page components (About, Speaking, Legal, Contact, etc.)
   ===================================================================== */

/* Prose / long-form (legal, principles) */
.prose { max-width: 760px; }
.prose.wide { max-width: 860px; }
.prose h2 { font-size: clamp(24px, 3vw, 32px); margin-top: 1.6em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 20px; margin-top: 1.6em; }
.prose p, .prose li { color: var(--ink); font-size: 16.5px; }
.prose ul, .prose ol { padding-left: 1.25em; margin: 0 0 1em; }
.prose li { margin-bottom: .5em; }
.prose ul li { list-style: disc; }
.prose ol li { list-style: decimal; }
.prose a { text-decoration: underline; }
.prose .muted-note {
  font-size: 14.5px; color: var(--ink-soft);
  border-left: 3px solid var(--line); padding-left: 16px; margin: 1.5em 0;
}
.doc-meta {
  display: flex; flex-wrap: wrap; gap: 8px 20px;
  font-size: 14px; color: var(--ink-soft);
  padding-bottom: 22px; margin-bottom: 30px;
  border-bottom: 1px solid var(--line);
}
.doc-meta b { color: var(--navy); font-weight: 600; }

/* On-page table of contents (legal pages) */
.toc {
  background: var(--surface-1);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px 24px;
  position: sticky;
  top: calc(var(--header-h) + 20px);
}
.toc h4 { font-family: var(--font-sans); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 12px; }
.toc ul { display: grid; gap: 8px; }
.toc li { list-style: none; }
.toc a { font-size: 14.5px; color: var(--ink-soft); text-decoration: none; }
.toc a:hover { color: var(--blue); }
.legal-layout { display: grid; grid-template-columns: 240px 1fr; gap: 48px; align-items: start; }

/* Principle cards (Privacy & Data Principles) */
.principle {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px; border: 1px solid var(--line);
  border-radius: var(--r-lg); background: #fff;
  height: 100%;
}
.principle .p-ic {
  flex-shrink: 0; width: 42px; height: 42px; border-radius: 11px;
  background: var(--green-050); color: var(--green);
  display: grid; place-items: center;
}
.principle h3 { font-size: 17px; margin: 2px 0 6px; }
.principle p { margin: 0; font-size: 14.5px; color: var(--ink-soft); }

/* Big privacy lockup */
.privacy-hero-mark {
  width: 72px; height: 72px; border-radius: 20px;
  background: var(--green); color: #fff;
  display: grid; place-items: center; margin-bottom: 22px;
  box-shadow: 0 12px 30px -10px rgba(31,122,85,.5);
}
.section--navy .privacy-hero-mark { background: rgba(255,255,255,.1); color: #fff; }

/* Speaking topics */
.topic {
  padding: 16px 18px; border: 1px solid var(--line);
  border-radius: var(--r-md); background: #fff;
  display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--navy);
}
.topic .t-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }
.spec-list { display: grid; gap: 0; }
.spec-list .spec-row {
  display: grid; grid-template-columns: 200px 1fr; gap: 20px;
  padding: 16px 0; border-top: 1px solid var(--line);
}
.spec-list .spec-row:last-child { border-bottom: 1px solid var(--line); }
.spec-row dt { font-weight: 600; color: var(--navy); }
.spec-row dd { margin: 0; color: var(--ink-soft); }

/* Contact / enquiry cards */
.enquiry {
  display: flex; flex-direction: column; gap: 10px;
  padding: 24px; border: 1px solid var(--line);
  border-radius: var(--r-lg); background: #fff; height: 100%;
}
.enquiry .e-ic { width: 44px; height: 44px; border-radius: 12px; background: var(--blue-050); color: var(--blue); display: grid; place-items: center; margin-bottom: 4px; }
.enquiry h3 { font-size: 18px; margin: 0; }
.enquiry p { margin: 0; color: var(--ink-soft); font-size: 15px; }
.enquiry a.e-link { margin-top: auto; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }

/* "In preparation" placeholder pages */
.prep {
  text-align: center; max-width: 620px; margin-inline: auto;
  padding-block: clamp(24px, 5vw, 56px);
}
.prep .prep-mark {
  width: 64px; height: 64px; border-radius: 18px; margin: 0 auto 24px;
  background: var(--surface-1); border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--blue);
}

/* Cookie / data table */
.data-table { width: 100%; border-collapse: collapse; font-size: 15px; margin: 8px 0 20px; }
.data-table th, .data-table td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
.data-table th { font-family: var(--font-sans); font-size: 12.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); font-weight: 700; background: var(--surface-1); }
.data-table td { color: var(--ink); }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* Mission / values grid on About */
.value-card { padding: 24px; border: 1px solid var(--line); border-radius: var(--r-lg); background: #fff; }
.value-card .v-k { font-family: var(--font-sans); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); font-weight: 700; }
.value-card h3 { margin: 8px 0 8px; font-size: 21px; }
.value-card p { margin: 0; color: var(--ink-soft); }

/* Founder note */
.founder {
  display: grid; grid-template-columns: 120px 1fr; gap: 28px; align-items: start;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line); border-radius: var(--r-xl); background: var(--surface-1);
}
.founder .f-portrait {
  width: 120px; height: 120px; border-radius: 50%;
  background: linear-gradient(160deg, var(--navy), var(--blue));
  color: #fff; display: grid; place-items: center;
  font-family: var(--font-display); font-size: 34px; font-weight: 600;
}
.founder blockquote { margin: 0 0 14px; font-family: var(--font-display); font-size: clamp(20px, 2.4vw, 26px); color: var(--navy); line-height: 1.35; }

/* Gold hairline accent (restrained brand touch) */
.rule-gold { width: 48px; height: 3px; background: var(--gold); border: 0; border-radius: 2px; margin: 0 0 22px; }
.center .rule-gold { margin-inline: auto; }

@media (max-width: 860px) {
  .legal-layout { grid-template-columns: 1fr; }
  .toc { position: static; margin-bottom: 8px; }
  .spec-list .spec-row { grid-template-columns: 1fr; gap: 4px; }
  .founder { grid-template-columns: 1fr; }
  .founder .f-portrait { width: 84px; height: 84px; font-size: 26px; }
}

/* ------------------------- Reduced motion ------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .marquee-track { animation: none; flex-wrap: wrap; justify-content: center; }
  .slide { transition: none; }
}

/* -------- Hero duo: the document + the platform (animated) -------- */
.hero-duo { position: relative; z-index: 1; align-self: start; margin-top: 6px; }
.duo-stage { position: relative; aspect-ratio: 20 / 19; max-width: 620px; margin-inline: auto; }
.duo-app {
  position: absolute; top: 0; right: 0; width: 79%; z-index: 1;
  background: linear-gradient(180deg, #fff, #fbfcfe);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  overflow: visible;
}
.duo-app .showcase-topbar { border-radius: var(--r-xl) var(--r-xl) 0 0; }
.duo-app-body { padding: 16px 18px 18px; background: inherit; border-radius: 0 0 var(--r-xl) var(--r-xl); }
.duo-book {
  position: absolute; left: 0; bottom: 3%; width: 43%; z-index: 3;
  aspect-ratio: 148 / 210;
  background: radial-gradient(120% 100% at 20% 0%, #0a2f66 0%, var(--navy) 48%, #001536 100%);
  border-radius: 5px 12px 12px 5px;
  box-shadow: 0 30px 60px -18px rgba(0, 21, 54, .55), inset -2px 0 0 rgba(255, 255, 255, .06);
  transform: rotate(-3.5deg);
}
.duo-book::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 9px;
  border-radius: 5px 0 0 5px;
  background: linear-gradient(90deg, rgba(0, 0, 0, .35), rgba(255, 255, 255, .05));
}
.duo-book-inner {
  position: absolute; inset: 6% 8%;
  border: 1px solid rgba(184, 150, 79, .45);
  border-radius: 3px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 8%;
}
.db-symbol { width: 24%; aspect-ratio: 335 / 529; background: center / contain no-repeat url("../img/zeno-symbol-white.svg"); opacity: .92; margin-bottom: 13%; }
.db-rule { width: 36%; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin-bottom: 11%; }
.db-title { font-family: "Cormorant Garamond", serif; font-weight: 600; color: #fff; font-size: clamp(18px, 2.4vw, 28px); letter-spacing: .12em; text-transform: uppercase; margin: 0 0 7%; }
.db-sub { color: #b9c6de; font-size: clamp(9px, .95vw, 12px); margin: 0 0 15%; }
.db-edition { color: var(--gold); font-size: clamp(8px, .85vw, 10.5px); letter-spacing: .2em; text-transform: uppercase; margin: 0; }
.duo-flow { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 2; pointer-events: none; }
.duo-tag {
  position: absolute; left: 50%; bottom: -17px; transform: translateX(-50%);
  white-space: nowrap; font-size: 12px; font-weight: 700; color: var(--navy);
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-pill);
  padding: 6px 13px; box-shadow: var(--shadow-sm); z-index: 4;
}
.duo-book .duo-tag { transform: translateX(-50%) rotate(3.5deg); }
.duo-tag.org { left: auto; right: 18px; bottom: auto; top: -15px; transform: none; color: var(--blue); }
.duo-caption {
  margin: 36px auto 0; max-width: 52ch; text-align: center;
  font-size: 13.5px; color: var(--ink-soft);
}
@media (prefers-reduced-motion: no-preference) {
  .hero-duo { animation: duo-in .8s var(--ease) both; }
  /* Softened (V1.7): barely-perceptible drift — Apple, not showcase. */
  .duo-book { animation: duo-float 15s ease-in-out infinite; }
  .duo-app  { animation: duo-float 17s ease-in-out 1.4s infinite; }
  .duo-app .rankbar i { animation: duo-grow 1.4s var(--ease) .5s both; transform-origin: left; }
}
@keyframes duo-float { 0%, 100% { translate: 0 0; } 50% { translate: 0 -3px; } }
@keyframes duo-grow { from { transform: scaleX(.15); opacity: .4; } }
@keyframes duo-in { from { opacity: 0; transform: translateY(14px); } }
@media (prefers-reduced-motion: reduce) { .duo-flow circle { display: none; } }
@media (max-width: 960px) {
  .hero-duo { margin-top: 22px; }
  .duo-stage { max-width: 500px; }
}
@media (max-width: 640px) {
  /* Small screens: the intelligence panel flows naturally (no fixed stage
     aspect, so it can never overflow onto the text below); the book overlays
     its lower-left corner. */
  .duo-stage { aspect-ratio: auto; }
  .duo-app { position: relative; top: auto; right: auto; width: 88%; margin-left: auto; }
  .duo-book { width: 46%; bottom: -8px; }
  .duo-tag { font-size: 11px; padding: 5px 11px; }
  .duo-tag.org { top: -13px; right: 10px; }
  .duo-book .duo-tag { bottom: -14px; }
}

/* Owner name on the Life Plan cover */
.db-owner { font-family: "Cormorant Garamond", serif; font-style: italic; color: #e8ddc4; font-size: clamp(11px, 1.15vw, 15px); letter-spacing: .04em; margin: 0 0 14%; }
.duo-book-inner .db-sub { margin-bottom: 7%; }
/* Role statements under the hero animation */
.duo-roles {
  display: grid; grid-template-columns: 1fr 1px 1fr;
  gap: clamp(24px, 3.5vw, 40px); align-items: start;
  margin: clamp(56px, 7vw, 76px) auto 0; max-width: 700px;
}
.duo-roles p { margin: 0; font-size: 14.5px; line-height: 1.65; color: var(--ink-soft); }
.duo-roles p b { color: var(--ink); font-weight: 700; }
.duo-roles .dr-k { display: block; font-weight: 800; font-size: 11px; letter-spacing: .13em; text-transform: uppercase; color: var(--navy); margin-bottom: 8px; }
.duo-roles .dr-k.org { color: var(--blue); }
.dr-divider { align-self: stretch; background: linear-gradient(180deg, transparent, var(--gold), transparent); }
@media (max-width: 640px) {
  .duo-roles { grid-template-columns: 1fr; gap: 22px; margin-top: 48px; text-align: center; }
  .dr-divider { display: none; }
}
/* Styled leads */
.lead .hl, .lead .hl-org { color: var(--blue); font-weight: 600; }
.section--navy .lead .hl, .section--navy .lead .hl-inv { color: var(--gold-dark); font-weight: 600; }
/* Official methodology diagram */
.method-official { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(24px, 4vw, 56px); align-items: center; background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); box-shadow: var(--shadow-sm); padding: clamp(24px, 4vw, 48px); margin: 0 0 clamp(36px, 5vw, 56px); }
.mo-diagram img { width: 100%; height: auto; display: block; }
.mo-side { display: grid; gap: 22px; justify-items: start; }
.mo-k { font-weight: 800; font-size: 11.5px; letter-spacing: .13em; text-transform: uppercase; color: var(--navy); margin: 0; }
.mo-legend { width: 100%; max-width: 300px; height: auto; display: block; }
.mo-note { grid-column: 1 / -1; font-size: 13px; color: var(--ink-soft); margin: 0; padding-top: 18px; border-top: 1px solid var(--line); text-align: center; }
@media (max-width: 860px) { .method-official { grid-template-columns: 1fr; } .mo-side { justify-items: center; text-align: center; } }
/* Tighter outcome lists */
.outcome-list { gap: 10px; }
.outcome-list li { line-height: 1.4; align-items: baseline; }
.outcome-list .oc-dot { align-self: start; }
/* De-emphasised institutions footnote */
.marquee-footnote { text-align: center; margin: 18px auto 0; max-width: 70ch; font-size: 11.5px; letter-spacing: .02em; color: var(--neutral); opacity: .7; }

.oc-sub-oneline { white-space: nowrap; }
@media (max-width: 1100px) { .oc-sub-oneline { white-space: normal; } }
/* Bottom-align metric values in ui-cards */
.ui-card { display: flex; flex-direction: column; }
.ui-card .ui-value { margin-top: auto; }
/* Footer brand line — reflective serif, distinct from link lists */
.footer-brand p { font-family: "Cormorant Garamond", serif; font-style: italic; font-size: 17px; line-height: 1.5; color: #b9c6de; }
/* Wrapped bullet spans (never the tick itself, when text is a bare node) */
.feature-list li > span:last-child:not(.tick) { flex: 1; }

/* Product page — Anna Smith draft doc */
.doc-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 4px; }
.doc-draft { font-size: 10.5px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: #8a6d34; border: 1px solid var(--gold); border-radius: var(--r-pill); padding: 3px 10px; white-space: nowrap; }
.doc-body { display: grid; gap: 9px; margin: 12px 0 14px; }
.doc-sec { margin: 0; font-size: 13.5px; line-height: 1.5; color: var(--ink-soft); }
.doc-sec b { color: var(--navy); }
.doc-facets { display: flex; gap: 8px; margin-top: 12px; }
.doc-facets span { font-size: 11.5px; font-weight: 700; color: var(--navy); background: var(--surface-1, #f7f6f3); border: 1px solid var(--line); border-radius: var(--r-pill); padding: 4px 12px; }
/* Org insight carousel */
.insight-carousel { position: relative; }
.insight-carousel .ic-slide { display: none; }
.insight-carousel .ic-slide.is-active { display: block; animation: ic-fade .45s ease both; }
@keyframes ic-fade { from { opacity: 0; transform: translateY(4px); } }
.ic-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 14px; }
.ic-note { font-size: 12px; color: var(--ink-soft); font-style: italic; }
.ic-dots { display: flex; gap: 7px; }
.ic-dot { width: 8px; height: 8px; border-radius: 50%; border: none; padding: 0; background: #ccd6e6; cursor: pointer; transition: background .2s; }
.ic-dot.is-active { background: var(--blue); }
.trend-chart { width: 100%; height: auto; display: block; margin-top: 10px; }
/* CTA band — gold warmth + larger logo */
.cta-band { position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(90% 120% at 50% -20%, rgba(184,150,79,.22), transparent 55%); pointer-events: none; }
.cta-band > * { position: relative; }
.cta-logo { margin-bottom: 18px; }
.cta-logo img { width: clamp(120px, 14vw, 170px); height: auto; }
.cta-rule { margin: 0 auto 22px; }

.asset-line { margin: 8px 0 0; font-size: 14.5px; color: var(--ink); font-weight: 600; }

/* Publication shots in the written-output carousel */
.pub-shot { border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.pub-shot img { display: block; width: 100%; height: auto; }
.pub-shot.pub-cover { background: linear-gradient(160deg, #eef1f6, #e2e7f0); border: none; box-shadow: none; display: grid; place-items: center; padding: 26px; }
.pub-shot.pub-cover img { width: min(52%, 220px); border-radius: 4px 8px 8px 4px; box-shadow: 0 22px 44px -14px rgba(0,21,54,.45); }

/* Privacy flow diagram (organisations) */
.privacy-flow { margin: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); box-shadow: var(--shadow-sm); padding: clamp(20px, 3vw, 32px); height: 100%; display: flex; flex-direction: column; justify-content: center; gap: 22px; }
.pfl-row { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 8px; align-items: stretch; }
.pfl-node { position: relative; border: 1px solid var(--line); border-radius: var(--r-md); padding: 40px 14px 16px; display: grid; grid-template-rows: auto auto 1fr; gap: 8px; justify-items: center; text-align: center; }
.pfl-node b { font-size: 14px; color: var(--navy); line-height: 1.25; }
.pfl-node span { font-size: 12px; line-height: 1.5; color: var(--ink-soft); }
.pfl-node.private { background: linear-gradient(180deg, #fffdf7, var(--surface-1, #f7f6f3)); border-color: #e2ddd0; }
.pfl-node.org { background: linear-gradient(180deg, #f5f9ff, var(--blue-050)); border-color: #d7e4f7; }
.pfl-icon { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: #fff; border: 1px solid var(--line); color: var(--navy); box-shadow: var(--shadow-sm); }
.pfl-node.private .pfl-icon { color: #8a6d34; border-color: #e2ddd0; }
.pfl-node.org .pfl-icon { color: var(--blue); border-color: #d7e4f7; }
.pfl-step { position: absolute; top: 10px; left: 12px; font-style: normal; font-size: 10px; font-weight: 800; letter-spacing: .14em; color: var(--gold); }
.pfl-arrow { align-self: center; color: var(--gold); line-height: 0; }
.pfl-caption { font-size: 12.5px; color: var(--ink-soft); text-align: center; font-style: italic; margin: 0; padding-top: 16px; border-top: 1px solid var(--line); }
@media (max-width: 640px) { .pfl-row { grid-template-columns: 1fr; } .pfl-arrow { transform: rotate(90deg); justify-self: center; } }

/* Stat band (organisations) */
.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); box-shadow: var(--shadow-sm); padding: clamp(28px, 4vw, 44px) clamp(16px, 2.5vw, 32px); }
.stat-band .stat { display: grid; justify-items: center; text-align: center; gap: 12px; padding: 6px 18px; }
.stat-band .stat + .stat { border-left: 1px solid var(--line); }
.stat-band .stat b { display: block; font-family: var(--font-display); font-weight: 600; font-size: clamp(40px, 4.6vw, 60px); line-height: 1; color: var(--navy); letter-spacing: -.01em; }
.stat-rule { width: 28px; height: 2px; background: var(--gold); border-radius: 1px; }
.stat-band .stat span { color: var(--ink-soft); font-size: 14px; line-height: 1.5; }
@media (max-width: 860px) {
  .stat-band { grid-template-columns: 1fr 1fr; row-gap: 26px; }
  .stat-band .stat:nth-child(3) { border-left: none; }
}
@media (max-width: 480px) {
  .stat-band { grid-template-columns: 1fr; }
  .stat-band .stat + .stat { border-left: none; border-top: 1px solid var(--line); padding-top: 26px; }
}

/* The parallel — Business Plan vs Life Plan (organisations) */
.parallel { display: grid; grid-template-columns: 1fr auto 1fr; gap: clamp(14px, 2.5vw, 28px); align-items: stretch; max-width: 1000px; margin-inline: auto; }
.par-k { text-align: center; font-size: 11.5px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-soft); margin: 0 0 12px; }
.par-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg, 14px); box-shadow: var(--shadow-md); padding: clamp(20px, 2.6vw, 30px); display: grid; gap: 14px; height: 100%; align-content: start; }
.par-card.life { border-top: 3px solid var(--gold); }
.par-card:not(.life) { border-top: 3px solid var(--navy); }
.par-kicker { font-size: 10.5px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); }
.par-card h3 { font-family: var(--font-display); font-weight: 600; font-size: clamp(22px, 2.6vw, 28px); color: var(--navy); margin: 0; }
.par-lines { display: grid; gap: 8px; }
.par-lines i { display: block; height: 8px; border-radius: 4px; background: #e9edf4; }
.par-quote { font-size: 13.5px; line-height: 1.5; color: var(--navy); border-radius: var(--r-sm, 8px); padding: 12px 14px; }
.par-quote em { font-style: italic; color: var(--ink-soft); }
.par-quote.mission { background: var(--blue-050); border-left: 3px solid var(--navy); }
.par-quote.purpose { background: var(--gold-soft); border-left: 3px solid var(--gold); }
.par-core { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; padding-top: 26px; }
.par-arrow { color: var(--gold); font-size: 18px; line-height: 1; }
.par-badge { display: grid; justify-items: center; gap: 6px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-pill); padding: 16px 18px; box-shadow: var(--shadow-sm); }
.par-badge b { font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--navy); }
.par-pairs { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 26px; list-style: none; margin: clamp(24px, 3.5vw, 36px) auto 0; padding: 0; max-width: 900px; }
.par-pairs li { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--ink-soft); background: #fff; border: 1px solid var(--line); border-radius: var(--r-pill); padding: 8px 16px; }
.par-pairs li span:last-child { color: var(--navy); font-weight: 600; }
.par-pairs li i { color: var(--gold); font-style: normal; }
@media (max-width: 760px) {
  .parallel { grid-template-columns: 1fr; }
  .par-core { flex-direction: row; padding-top: 0; }
  .par-arrow { transform: rotate(90deg); }
}

/* Contents list inside the parallel cards */
.par-toc { list-style: none; margin: 0; padding: 0; counter-reset: partoc; display: grid; }
.par-toc li { counter-increment: partoc; display: flex; align-items: baseline; gap: 12px; font-size: 13.5px; line-height: 1.45; color: var(--ink); padding: 7px 0; }
.par-toc li + li { border-top: 1px solid var(--line); }
.par-toc li::before { content: counter(partoc, decimal-leading-zero); font-family: var(--font-display); font-weight: 600; font-size: 13px; color: var(--gold); min-width: 22px; }
.par-card:not(.life) .par-toc li::before { color: var(--blue); }

/* =====================================================================
   PHASE 7 — Editorial layer (Claude Design handover)
   ===================================================================== */
.pub-cap {
  font-family: var(--font-sans); font-size: 12px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft);
  margin: 18px 0 0; text-align: center;
}
.pub-cap b { color: var(--gold); font-weight: 700; }
.pub-frame { display: block; width: 100%; height: auto;
  box-shadow: 0 16px 40px rgba(0,34,85,.16); border-radius: 2px; }
.pub-tilt { transform: rotate(-3deg); transition: transform .5s var(--ease); }
.pub-tilt:hover { transform: rotate(-1.5deg); }
@media (prefers-reduced-motion: reduce) { .pub-tilt, .pub-tilt:hover { transform: rotate(-3deg); } }
.hero-artefact { position: relative; display: flex; justify-content: center; }
.hero-artefact .cover {
  width: min(80%, 350px); height: auto; border-radius: 3px;
  box-shadow: 0 30px 70px rgba(0,34,85,.28);
  transform: rotate(-4deg); transition: transform .6s var(--ease);
}
.hero-artefact .cover:hover { transform: rotate(-2deg) translateY(-4px); }
@media (prefers-reduced-motion: reduce){ .hero-artefact .cover, .hero-artefact .cover:hover { transform: rotate(-4deg); } }
.steprow {
  display: flex; justify-content: center; flex-wrap: wrap; gap: clamp(20px, 5vw, 64px);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 22px 0; margin: 0;
}
.steprow .sr { display: grid; gap: 3px; text-align: left; list-style: none; }
.steprow .sr b { font-family: var(--font-sans); font-size: 12px; font-weight: 800; letter-spacing: .1em; color: var(--neutral); }
.steprow .sr span { font-family: var(--font-sans); font-size: 13px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: #a9b0ba; }
.steprow .sr.is-active b, .steprow .sr.is-active span { color: var(--navy); }
.steprow .sr.is-active span { border-bottom: 2px solid var(--gold); padding-bottom: 3px; }
.section--navy .steprow { border-color: rgba(255,255,255,.14); }
.section--navy .steprow .sr.is-active b, .section--navy .steprow .sr.is-active span { color: #fff; }
.methodology-plate { display: block; width: 100%; max-width: 460px; height: auto; margin: 0 auto; }
.methodology-plate.lg { max-width: 580px; }
@media (max-width: 640px){ .methodology-plate, .methodology-plate.lg { max-width: 100%; } }
.pub-showcase { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px,4vw,72px); align-items: center; }
.pub-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.pub-gallery figure { margin: 0; }
.pub-gallery .wide { grid-column: 1 / -1; }
.declaration { max-width: 760px; margin: 0 auto; text-align: center; }
.declaration .pub-frame { max-width: 460px; margin: 0 auto; box-shadow: 0 24px 60px rgba(0,34,85,.20); }
.built { display: grid; grid-template-columns: 1fr 0.8fr; gap: clamp(28px,4vw,64px); align-items: center; }
.built-quote { font-family: var(--font-display); font-size: clamp(22px,2.6vw,30px); line-height: 1.28; color: var(--navy); margin: 0 0 20px; }
.built-quote .g { color: var(--gold); }
.eco-flow { display: flex; flex-wrap: wrap; justify-content: center; align-items: stretch; gap: 10px; max-width: 980px; margin: 0 auto; }
.eco-node {
  flex: 1 1 120px; min-width: 116px; text-align: center;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--r-md); padding: 16px 12px;
}
.eco-node .en-k { font-family: var(--font-sans); font-size: 10.5px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-dark); }
.eco-node .en-t { display: block; margin-top: 6px; font-size: 14px; font-weight: 600; color: #fff; line-height: 1.25; }
.eco-arrow { align-self: center; color: rgba(255,255,255,.4); font-size: 16px; }
.eco-node.is-plan { background: rgba(184,150,79,.14); border-color: rgba(203,170,106,.4); }
@media (max-width: 720px){
  .pub-showcase, .built { grid-template-columns: 1fr; }
  .eco-flow { flex-direction: column; }
  .eco-arrow { transform: rotate(90deg); }
}
.ed-head { max-width: 720px; margin-inline: auto; text-align: center; }
.ed-head .kicker { display:block; font-family: var(--font-sans); font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.ed-lead { font-family: var(--font-display); font-size: clamp(20px,2.3vw,26px); line-height: 1.4; color: var(--ink); max-width: 60ch; margin: 16px auto 0; }
.section--navy .ed-head .kicker { color: var(--gold-dark); }
.section--navy .ed-lead { color: var(--neutral); }
.section.section--editorial { padding-block: clamp(80px, 11vw, 160px); }

/* Editorial — mobile refinements */
@media (max-width: 720px) {
  .hero-artefact { margin-top: 8px; }
  .hero-artefact .cover, .hero-artefact .cover:hover { transform: none; width: min(64vw, 260px); }
  .pub-tilt, .pub-tilt:hover { transform: none; }
  .pub-gallery { grid-template-columns: 1fr; }
}

/* =====================================================================
   PHASE 8 — V1.0 Ecosystem layer
   (three pillars, ecosystem hero, publication depth, quiet motion)
   ===================================================================== */

/* --- Ecosystem hero: Methodology™ ↓ Life Plan ↓ Employer Platform --- */
.eco-hero { flex-direction: column; align-items: center; gap: 0; }
.eco-step { display: grid; gap: 9px; justify-items: center; position: relative; }
.eco-step + .eco-step { margin-top: 44px; }
.eco-step + .eco-step::before {
  content: "\2193";
  position: absolute; top: -37px; left: 50%; transform: translateX(-50%);
  font-size: 15px; line-height: 1; color: var(--gold);
}
.eco-step + .eco-step::after {
  content: ""; position: absolute; top: -42px; left: 50%; transform: translateX(-50%);
  width: 1px; height: 0; /* hairline reserved; the arrow carries the flow */
}
.eco-tag {
  font-family: var(--font-sans); font-size: 10.5px; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft);
}
.eco-tag::first-letter { color: var(--gold-dark); }
.eco-card { display: block; }
.eco-card-plate {
  background: #fff; border: 1px solid var(--line); border-radius: 2px;
  padding: 12px 14px; box-shadow: 0 10px 26px rgba(0,34,85,.10);
}
.eco-card-plate img { display: block; width: 128px; height: auto; }
.eco-hero .cover {
  width: min(64%, 235px); border-radius: 3px;
  box-shadow: 0 24px 56px rgba(0,34,85,.26);
  transform: rotate(-3deg); transition: transform .6s var(--ease);
}
.eco-hero .cover:hover { transform: rotate(-1.5deg) translateY(-3px); }
.eco-card-app {
  display: grid; gap: 0; width: 250px;
  background: linear-gradient(150deg, #0b2c60, #061936 75%);
  border-radius: var(--r-md); padding: 16px 20px 13px;
  box-shadow: 0 14px 34px rgba(6,25,54,.28);
}
.eco-card-app .ea-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  padding: 7.5px 0; border-bottom: 1px solid rgba(255,255,255,.13);
}
.eco-card-app .ea-row em {
  font-family: var(--font-display); font-style: normal; font-weight: 600;
  font-size: 14.5px; color: #fff; white-space: nowrap;
}
.eco-card-app .ea-row b {
  font-family: var(--font-sans); font-size: 8.5px; font-weight: 800;
  letter-spacing: .13em; text-transform: uppercase; color: var(--gold-dark); white-space: nowrap;
}
.eco-card-app .ea-foot {
  padding-top: 9px; font-size: 10px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: #9fb2d4; text-align: center;
}
.eco-caption {
  margin: clamp(28px, 4vw, 40px) auto 0; text-align: center;
  font-family: var(--font-display); font-style: italic; font-size: 17px; color: var(--ink-soft);
}
/* Quiet staggered entrance — reduced-motion safe */
@media (prefers-reduced-motion: no-preference) {
  .eco-step { opacity: 0; animation: ecoIn .42s var(--ease) forwards; }
  .eco-step + .eco-step::before { opacity: 0; animation: ecoIn .3s var(--ease) forwards; }
  .eco-step-1 { animation-delay: .1s; }
  .eco-step-2 { animation-delay: .32s; }
  .eco-step-2::before { animation-delay: .28s; }
  .eco-step-3 { animation-delay: .54s; }
  .eco-step-3::before { animation-delay: .5s; }
  @keyframes ecoIn { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: none; } }
}

/* --- The three pillars strip --- */
.pillars-section { border-bottom: 1px solid var(--line); }
.pillars-line {
  font-family: var(--font-display); font-weight: 600; text-align: center;
  font-size: clamp(26px, 3.4vw, 38px); line-height: 1.15; color: var(--navy);
  margin: 0 0 clamp(36px, 5vw, 56px);
}
.pillars-line .g { color: var(--gold); }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); }
.pillar {
  display: grid; align-content: start; gap: 10px; text-align: center;
  padding: 6px clamp(18px, 3vw, 40px); text-decoration: none; color: inherit;
  border-left: 1px solid var(--line);
}
.pillar:first-child { border-left: 0; }
.pillar .p-n { font-family: var(--font-display); font-size: 22px; color: var(--gold); }
.pillar h3 { font-size: clamp(19px, 2vw, 23px); line-height: 1.2; color: var(--navy); margin: 0; }
.pillar p { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); }
.pillar .p-link {
  margin-top: 6px; font-size: 13.5px; font-weight: 600; color: var(--blue);
}
.pillar:hover .p-link { text-decoration: underline; }
.pillar:hover h3 { color: var(--blue); }

/* --- Publication details (annotations, seals, stamps) --- */
.detail-strip { display: grid; gap: 0; justify-items: center; max-width: 720px; }
.detail-strip img { width: min(100%, 560px); height: auto; }
.detail-strip--sm img { width: min(70%, 300px); }
.detail-inline { display: block; width: min(58%, 240px); height: auto; margin-top: 24px; }

/* --- Steprow verb tags (approved legend; tints are wayfinding-only) --- */
.steprow .sr i {
  font-style: normal; font-family: var(--font-sans); font-size: 9.5px;
  font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
}
.steprow .sr .t-feel { color: #3d6b4f; }
.steprow .sr .t-gather { color: #0044aa; }
.steprow .sr .t-plan { color: #3a4353; }
.steprow .sr .t-recognise { color: #5b4a72; }
.section--navy .steprow .sr i { opacity: .85; }

/* --- Organisations: the sealed individual vs the visible pattern --- */
.sealed {
  display: grid; grid-template-columns: 300px 1fr; gap: clamp(24px, 4vw, 48px);
  align-items: center; max-width: 980px; margin-inline: auto;
}
.sealed-individual {
  display: grid; gap: 12px; justify-items: center; text-align: center;
  border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 30px 26px; background: var(--surface-1);
}
.sealed-k {
  font-family: var(--font-sans); font-size: 10px; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft);
}
.sealed-note { margin: 0; font-family: var(--font-display); font-style: italic; font-size: 15px; color: var(--ink); }
.sealed-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.sealed-card {
  border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 22px 24px; background: var(--paper);
}
.sealed-card .sc-k {
  display: block; font-size: 10px; font-weight: 800; letter-spacing: .15em;
  text-transform: uppercase; color: var(--gold-dark); margin-bottom: 8px;
}
.sealed-card p { margin: 0; font-family: var(--font-display); font-size: 16px; line-height: 1.45; color: var(--ink); }

/* --- Platform: the cadence, in the publication's voice --- */
.cadence { max-width: 460px; margin-inline: auto; }
.cadence-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 18px;
  padding: 15px 0; border-bottom: 1px solid var(--line);
}
.cadence-row:last-child { border-bottom: 0; }
.cadence-row .cr-t { font-family: var(--font-display); font-weight: 600; font-size: 19px; color: var(--navy); }
.cadence-row .cr-k {
  font-family: var(--font-sans); font-size: 10px; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase; color: var(--gold-dark); white-space: nowrap;
}

/* --- Quiet scroll reveal (progressive enhancement; JS adds .reveal) --- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(4px); transition: opacity .42s var(--ease), transform .42s var(--ease); }
  .reveal.in { opacity: 1; transform: none; }
}
@media print { .reveal { opacity: 1 !important; transform: none !important; } }

/* --- Phase 8 mobile --- */
@media (max-width: 900px) {
  .sealed { grid-template-columns: 1fr; }
  .sealed-individual { max-width: 340px; margin-inline: auto; }
}
@media (max-width: 720px) {
  .eco-step-1, .eco-step-3, .eco-step-2 .eco-tag { display: none; }
  .eco-step + .eco-step { margin-top: 0; }
  .eco-step + .eco-step::before { content: none; }
  .eco-hero .cover, .eco-hero .cover:hover { transform: none; width: min(64vw, 260px); }
  .eco-caption { font-size: 15px; }
  .pillars { grid-template-columns: 1fr; gap: 26px; }
  .pillar { border-left: 0; border-top: 1px solid var(--line); padding-top: 26px; }
  .pillar:first-child { border-top: 0; padding-top: 6px; }
  .sealed-cards { grid-template-columns: 1fr; }
  .detail-inline { width: min(80%, 240px); }
}

/* =====================================================================
   V1.5.2 — Editorial testimonials (participant reflections)
   Publication voice: serif quotation, gold hairline, small-caps
   attribution. No cards, no bubbles, no carousels.
   ===================================================================== */
.testimonial { max-width: 720px; margin-inline: auto; text-align: center; }
.t-outcome {
  display: block; font-family: var(--font-sans); font-size: 11px; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase; color: var(--gold-dark);
  margin-bottom: 16px;
}
.t-quote {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(21px, 2.6vw, 30px); line-height: 1.45;
  color: var(--navy); margin: 0; text-wrap: balance;
}
.t-quote-lg { font-size: clamp(23px, 3vw, 34px); }
.t-rule { width: 46px; height: 1px; background: var(--gold); border: 0; margin: 22px auto 14px; }
.t-portrait {
  display: block; width: 84px; height: 84px; border-radius: 50%;
  object-fit: cover; margin: 0 auto 18px;
  box-shadow: 0 6px 16px rgba(0, 34, 85, .18);
}
.t-attr { font-family: var(--font-sans); }
.t-attr b { display: block; font-size: 13.5px; font-weight: 700; color: var(--navy); }
.t-attr span {
  display: block; margin-top: 4px; font-size: 10.5px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft);
}
.t-more { margin-top: 14px; }
.t-more summary {
  display: inline-block; cursor: pointer; list-style: none;
  font-size: 13px; font-weight: 600; color: var(--blue);
  border-bottom: 1px solid rgba(0, 68, 170, .3); padding-bottom: 1px;
}
.t-more summary::-webkit-details-marker { display: none; }
.t-more[open] summary { color: var(--ink-soft); border-color: var(--line); }
.t-more p {
  font-family: var(--font-display); font-size: 17.5px; line-height: 1.6;
  color: var(--ink); margin: 14px auto 0; max-width: 52ch;
}
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(32px, 4.5vw, 64px); align-items: start; }
.t-grid .testimonial, .t-pair .testimonial { max-width: none; }
.t-grid .t-quote { font-size: clamp(18px, 1.65vw, 21px); line-height: 1.5; }
.t-pair {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 4.5vw, 64px);
  align-items: start; max-width: 920px; margin-inline: auto;
}
.t-pair .t-quote { font-size: clamp(18px, 1.8vw, 22px); line-height: 1.5; }
.t-note {
  margin: clamp(32px, 4.5vw, 48px) auto 0; text-align: center;
  font-size: 12.5px; color: var(--ink-soft); max-width: 64ch;
}
.t-stack > * + * { margin-top: clamp(44px, 6vw, 72px); }
@media (max-width: 760px) {
  .t-grid, .t-pair { grid-template-columns: 1fr; gap: 40px; }
}

/* V1.5.3 — testimonial refinements: rotation + monograms */
.t-mono {
  display: flex; align-items: center; justify-content: center;
  width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 18px;
  border: 1px solid var(--gold); background: transparent;
  font-family: var(--font-display); font-weight: 600; font-size: 28px;
  letter-spacing: .04em; color: var(--navy);
}
.t-rotator { max-width: 760px; margin-inline: auto; display: grid; }
.t-rotator .ic-slide { grid-area: 1 / 1; display: block; visibility: hidden; }
.t-rotator .ic-slide.is-active { visibility: visible; }
.t-rotator .testimonial { max-width: none; align-content: start; }
.t-rotator + .ic-footer, .t-rotator .ic-footer { justify-content: center; }
.t-dots { display: flex; justify-content: center; gap: 8px; margin-top: clamp(24px, 3.5vw, 36px); }

/* V1.7 — breathing room before/within major transitions */
.section--navy { padding-block: clamp(76px, 10vw, 136px); }
.outcomes-section { padding-block: clamp(72px, 9.5vw, 128px); }

/* =====================================================================
   V1.8 — English release candidate: editorial breathing + new components
   ===================================================================== */
/* Brand belief — a standalone visual pause */
.belief-section { padding-block: clamp(100px, 15vw, 210px); text-align: center; }
.belief-mark { display: block; margin: 0 auto 28px; }
.belief {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(28px, 4.4vw, 52px); line-height: 1.24;
  color: var(--navy); margin: 0; text-wrap: balance;
}
.belief em { color: var(--gold); }

/* Employee / Employer gateways */
.gateway { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 32px); max-width: 1000px; margin-inline: auto; }
a.outcome-card.gate { text-decoration: none; color: inherit; gap: 12px; transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
a.outcome-card.gate:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.gate-h { font-size: clamp(22px, 2.4vw, 28px); line-height: 1.22; color: var(--navy); margin: 0; }
.gate-p { margin: 0; font-size: 15.5px; line-height: 1.62; color: var(--ink-soft); }
.gate .p-link { margin-top: auto; padding-top: 10px; font-weight: 600; color: var(--blue); font-size: 14.5px; }
.gate:hover .p-link { text-decoration: underline; }
@media (max-width: 760px) { .gateway { grid-template-columns: 1fr; } }

/* Hero breathing room — the visual is the explanation */
.hero { padding-bottom: clamp(64px, 9vw, 128px); }

/* Testimonials and final CTA breathing */
.t-stack > * + * { margin-top: clamp(56px, 8vw, 104px); }

/* Mobile: remove decorative chart detail from the hero visual */
@media (max-width: 640px) {
  .duo-app .duo-app-body > .ui-card:last-child { display: none; }
}

/* =====================================================================
   RC3 — connected-system flow, richer foundations, inner-page hero art
   ===================================================================== */
/* Product: the connected system, read top to bottom */
.system-flow { list-style: none; margin: clamp(40px,6vw,68px) auto 0; padding: 0; max-width: 560px; display: grid; justify-items: stretch; }
.system-flow .sf-node { display: block; }
.system-flow .sf-node > a, .system-flow .sf-node:not(:has(a)) {
  display: block; text-decoration: none; color: inherit;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 18px 22px; text-align: center;
  box-shadow: 0 8px 22px rgba(0,34,85,.06);
}
.system-flow a.sf-node { display: block; text-decoration: none; color: inherit;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 18px 22px; text-align: center; box-shadow: 0 8px 22px rgba(0,34,85,.06);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.system-flow a.sf-node:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.system-flow .is-plan > a, .system-flow a.sf-node.is-plan, .system-flow .is-plan:not(:has(a)) {
  background: var(--gold-soft); border-color: #e6d4ad;
}
.sf-k { display: block; font-family: var(--font-display); font-weight: 600; font-size: clamp(18px,2vw,22px); color: var(--navy); }
.sf-t { display: block; margin-top: 3px; font-size: 13px; color: var(--ink-soft); }
.sf-node.org .sf-k { color: var(--blue); }
.sf-arrow { justify-self: center; width: 1px; height: 26px; background: linear-gradient(var(--gold), rgba(184,150,79,.15)); margin: 8px 0; position: relative; }
.sf-arrow::after { content: ""; position: absolute; left: 50%; bottom: -1px; transform: translateX(-50%); border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 5px solid var(--gold); }
.sf-split { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .sf-split { grid-template-columns: 1fr; } }

/* Richer intellectual foundations */
.found-card { padding: 30px 26px; border-top: 3px solid var(--gold); transition: box-shadow .25s var(--ease), transform .25s var(--ease); }
.found-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.found-card .fc-n { font-size: 34px; display: block; margin-bottom: 4px; }
.found-card h3 { font-size: 20px; }
.found-card p { font-size: 15px; line-height: 1.62; }
@media (max-width: 900px){ .found-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .found-grid { grid-template-columns: 1fr; } }

/* Seven life areas — one line each */
.life-areas--oneline li { white-space: nowrap; }
.life-areas--oneline { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 860px){ .life-areas--oneline { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px){ .life-areas--oneline { grid-template-columns: 1fr; } }

/* Inner-page hero with a quiet, page-specific visual */
.page-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.page-hero-grid .ph-copy { min-width: 0; }
.page-hero-art { position: relative; display: flex; justify-content: center; align-items: center; }
.page-hero-art .duo-book { position: relative; width: min(78%, 300px); aspect-ratio: 148/210; }
.page-hero-art .duo-book .duo-tag { display: none; }
.page-hero-art .panel { width: 100%; max-width: 440px; }
.page-hero-art .mo-star { width: min(72%, 300px); height: auto; opacity: .96; }
@media (max-width: 860px) {
  .page-hero-grid { grid-template-columns: 1fr; gap: clamp(28px, 6vw, 40px); }
  .page-hero-art { order: 2; margin-top: 4px; }
  .page-hero-art .duo-book { width: min(56vw, 230px); }
}
@media (prefers-reduced-motion: no-preference) {
  .page-hero-art { animation: duo-in .7s var(--ease) both; }
}

/* =====================================================================
   RC4 — brand nowrap, atmospheric methodology hero, employer hero raise,
   simplified parallel, symmetric Resources feature
   ===================================================================== */
/* Protect the exact brand phrase (and where noted, product names) from breaks */
.nowrap { white-space: nowrap; }

/* Methodology hero — cinematic canonical diagram (transparent PNG, no canvas):
   large, bleeding off the right edge, lit by a soft glow, fading at the frame. */
.page-hero--methodology { position: relative; overflow: hidden; }
.page-hero--methodology .ph-copy { position: relative; z-index: 1; }
.page-hero--methodology .page-hero-art { position: relative; }
/* Living methodology artwork — sizing scoped to the hero art column.
   Animation CSS (.zlp-* keyframes/classes) is ported verbatim from the
   designer's drop-in (handover/methodology-hero-artwork.html) below. */
.page-hero--methodology .zlp-hero-art { margin: 0 auto; width: 100%; max-width: 520px; }
.page-hero--methodology .zlp-hero-art svg {
  display: block; width: 100%; height: auto; overflow: visible;
  filter: drop-shadow(0 26px 54px rgba(6, 25, 54, .16));
}
@media (max-width: 860px) {
  .page-hero--methodology .page-hero-art { margin-top: 6px; }
  .page-hero--methodology .zlp-hero-art { max-width: 360px; }
}

/* --- Methodology hero artwork animation (from the designer drop-in) --- */
@keyframes zlpDraw   { from { stroke-dashoffset: 1697; } to { stroke-dashoffset: 0; } }
@keyframes zlpFadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes zlpFade   { from { opacity: 0; } to { opacity: 1; } }
@keyframes zlpBreathe{ 0%, 100% { transform: scale(1); } 50% { transform: scale(1.016); } }
@keyframes zlpOrbit  { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes zlpGlow   { 0%, 100% { opacity: .35; } 50% { opacity: .7; } }
.zlp-halo { transform-box: view-box; transform-origin: 50% 50%; opacity: 0; animation: zlpFade 1.4s ease-out forwards, zlpBreathe 9s ease-in-out 1.4s infinite; }
.zlp-ring { stroke-dasharray: 1697; stroke-dashoffset: 1697; animation: zlpDraw 1.6s cubic-bezier(.4,0,.2,1) .3s forwards; }
.zlp-hairline { opacity: 0; animation: zlpFade 1.2s ease-out 1.4s forwards; }
.zlp-node { opacity: 0; animation: zlpFadeUp .7s cubic-bezier(.16,1,.3,1) forwards; }
.zlp-tag { opacity: 0; animation: zlpFadeUp .7s cubic-bezier(.16,1,.3,1) forwards; }
.zlp-purpose { opacity: 0; animation: zlpFadeUp .8s cubic-bezier(.16,1,.3,1) 2.2s forwards; }
.zlp-purpose-glow { animation: zlpGlow 5.5s ease-in-out 3s infinite; }
.zlp-orbit { transform-box: view-box; transform-origin: 50% 50%; animation: zlpOrbit 22s linear 2.6s infinite; }
.zlp-comet { opacity: 0; animation: zlpFade .9s ease-out 2.6s forwards; }
@media (prefers-reduced-motion: reduce) {
  .zlp-halo, .zlp-ring, .zlp-hairline, .zlp-node, .zlp-tag, .zlp-purpose, .zlp-comet { animation: none; opacity: 1; stroke-dashoffset: 0; }
  .zlp-orbit, .zlp-purpose-glow { animation: none; }
}

/* Employer hero — raise the dashboard nearer the headline block */
.page-hero--employer .page-hero-grid { align-items: start; }
.page-hero--employer .page-hero-art { margin-top: clamp(6px, 3vw, 40px); }
@media (max-width: 860px) {
  .page-hero--employer .page-hero-grid { align-items: stretch; }
  .page-hero--employer .page-hero-art { margin-top: 4px; }
}

/* Employer — simplified paired comparison (replaces the two long TOCs) */
.parallel-lite {
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: clamp(24px, 4.5vw, 60px); align-items: start;
  max-width: 840px; margin-inline: auto;
}
.pl-k { font-family: var(--font-sans); font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); margin: 0 0 16px; }
.pl-col.life .pl-k { color: var(--gold-dark); }
.pl-col ul { list-style: none; margin: 0; padding: 0; }
.pl-col li { font-family: var(--font-display); font-size: clamp(17px, 1.9vw, 21px); line-height: 1.3; color: var(--navy); padding: 13px 0; border-bottom: 1px solid var(--line); }
.pl-col li:first-child { padding-top: 0; }
.pl-col li:last-child { border-bottom: 0; }
.pl-div { width: 1px; background: linear-gradient(180deg, transparent, var(--gold), transparent); }
@media (max-width: 640px) {
  .parallel-lite { grid-template-columns: 1fr; gap: 30px; }
  .pl-div { display: none; }
}

/* Resources — symmetric Talks / Insights feature */
.resource-features { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); max-width: 980px; margin-inline: auto; }
.resource-feature { display: flex; flex-direction: column; align-items: flex-start; }
.resource-feature h2 { margin-bottom: 12px; }
.resource-feature .lead { max-width: 40ch; }
.resource-feature .resource-cta { margin-top: auto; }
/* RC5 — one subtle motif per column; equal reserved space keeps eyebrows aligned */
.rf-motif { display: block; height: 34px; margin-bottom: 18px; opacity: .9; }
.rf-motif--talks { position: relative; width: 46px; }
.rf-motif--talks i {
  position: absolute; left: 0; bottom: 2px; display: block;
  border: 1.5px solid var(--blue); border-bottom: 0; border-radius: 40px 40px 0 0;
  opacity: .55;
}
.rf-motif--talks i:nth-child(1) { width: 14px; height: 7px;  left: 16px; opacity: .9; }
.rf-motif--talks i:nth-child(2) { width: 28px; height: 14px; left: 9px; }
.rf-motif--talks i:nth-child(3) { width: 44px; height: 22px; left: 1px; opacity: .35; }
.rf-motif--insights { position: relative; width: 40px; }
.rf-motif--insights i {
  position: absolute; display: block; width: 26px; height: 32px;
  background: #fff; border: 1px solid var(--line); border-radius: 2px;
  box-shadow: var(--shadow-sm);
}
.rf-motif--insights i:nth-child(1) { left: 8px; top: 0; transform: rotate(4deg); }
.rf-motif--insights i:nth-child(2) {
  left: 2px; top: 2px; transform: rotate(-3deg);
  border-top: 3px solid var(--gold);
}
@media (max-width: 760px) {
  .resource-features { grid-template-columns: 1fr; gap: 40px; }
  .resource-feature .resource-cta { margin-top: 20px; }
}

/* =====================================================================
   RC5 — Resources editorial hero + curated "essential resources"
   ===================================================================== */

/* Hero: page-specific two-column editorial composition */
.page-hero--resources .page-hero-grid { grid-template-columns: 1fr .9fr; align-items: center; }
.page-hero--resources .lead { max-width: 46ch; }
.page-hero--resources .ph-actions { margin-top: 26px; }

.rc-composition { position: relative; min-height: clamp(300px, 32vw, 400px); display: block; }
.rc-obj { margin: 0; position: absolute; }
.rc-obj .rc-label {
  margin-top: 9px; font: 700 10.5px/1 var(--font-sans); letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-soft); text-align: left;
}
/* Object 1 — canonical methodology diagram, cropped in a paper frame */
.rc-obj--method { left: 0; top: 0; width: 43%; z-index: 1; transform: rotate(-1.6deg); }
/* Methodology as a full A4-portrait editorial page, matching the other page objects */
.rc-frame {
  background: #fff; border: 1px solid #ece9e2; border-radius: 3px;
  box-shadow: 0 20px 46px -20px rgba(0, 34, 85, .3);
  aspect-ratio: 3 / 4; overflow: hidden; display: grid; place-items: center; padding: 12% 9%;
}
.rc-frame img { width: 98%; height: auto; max-width: none; }
/* Object 2 — a Life Plan interior page (typographic, no competing diagram) */
.rc-obj--page { left: 31%; bottom: 0; width: 42%; z-index: 3; transform: rotate(1.8deg); }
.rc-page {
  background: linear-gradient(#fff, #fcfbf8);
  border: 1px solid #ece9e2; border-radius: 2px;
  box-shadow: 0 26px 54px -22px rgba(0, 34, 85, .34);
  aspect-ratio: 3 / 4; padding: 12% 12% 10%;
  display: flex; flex-direction: column; text-align: left;
}
.rc-page > span { display: block; }
.rc-page-eyebrow { font: 800 8px/1 var(--font-sans); letter-spacing: .18em; text-transform: uppercase; color: var(--gold-dark); }
.rc-page-h { margin-top: 9%; font-family: "Cormorant Garamond", serif; font-weight: 600; color: var(--navy); font-size: clamp(12px, 1.5vw, 17px); line-height: 1.15; }
.rc-page-rule { margin: 9% 0 8%; width: 26px; height: 2px; background: var(--gold); }
.rc-page-line { height: 3px; border-radius: 2px; background: #e7e4dd; margin-bottom: 7%; }
.rc-page-line.short { width: 62%; }
.rc-page-obj { margin-top: auto; font-size: clamp(8px, .95vw, 10.5px); color: var(--ink-soft); font-style: italic; }
.rc-page-foot { margin-top: 7%; font: 700 7.5px/1 var(--font-sans); letter-spacing: .14em; text-transform: uppercase; color: #9aa3b2; }
/* Object 3 — an "Insight" journal cover, extends past the right edge */
.rc-obj--insight { right: -6%; top: 2%; width: 38%; z-index: 2; transform: rotate(2.4deg); }
.rc-insight {
  background: radial-gradient(120% 100% at 22% 0%, #0a2f66 0%, var(--navy) 52%, #001536 100%);
  border-radius: 4px; aspect-ratio: 3 / 4;
  box-shadow: 0 26px 54px -20px rgba(0, 21, 54, .5);
  padding: 16% 15%; display: flex; flex-direction: column; text-align: left;
  border: 1px solid rgba(184, 150, 79, .35);
}
.rc-insight > span { display: block; }
.rc-insight-no { font: 800 8.5px/1 var(--font-sans); letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.rc-insight-rule { margin: 14% 0; width: 30px; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); }
.rc-insight-title { font-family: "Cormorant Garamond", serif; font-weight: 600; color: #fff; font-size: clamp(13px, 1.7vw, 20px); line-height: 1.15; }
.rc-insight-meta { margin-top: auto; font: 600 8px/1.3 var(--font-sans); letter-spacing: .06em; color: #b9c6de; }

@media (prefers-reduced-motion: no-preference) {
  .page-hero--resources .rc-composition { animation: duo-in .8s var(--ease) both; }
}
/* Tablet & below — copy first, simplified visual below, no overflow/clipping */
@media (max-width: 900px) {
  .page-hero--resources .page-hero-grid { grid-template-columns: 1fr; }
  .rc-composition { order: 2; min-height: 0; display: flex; justify-content: center; align-items: flex-end; gap: 4%; padding-top: 8px; }
  .rc-obj { position: relative; transform: none; }
  .rc-obj .rc-label { text-align: center; }
  .rc-obj--method { left: auto; top: auto; width: 46%; max-width: 300px; }
  .rc-obj--insight { right: auto; top: auto; width: 30%; max-width: 190px; }
  .rc-obj--page { display: none; }
}
@media (max-width: 520px) {
  .rc-composition { gap: 6%; }
  .rc-obj--method { width: 56%; }
  .rc-obj--insight { width: 34%; }
}

/* Curated "essential resources" — three featured cards + three quiet routes */
.ess-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 28px); }
.ess-card {
  display: flex; flex-direction: column; background: #fff;
  border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: box-shadow .25s var(--ease), transform .25s var(--ease), border-color .25s var(--ease);
}
.ess-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: #d7dbe2; }
/* Handoff 2a — artwork area on top, gradient ground + hairline */
.ess-visual { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: linear-gradient(165deg, #f7f6f3, #eef0f4); border-bottom: 1px solid var(--line); }
.ess-body { padding: clamp(20px, 2vw, 28px); display: flex; flex-direction: column; flex: 1; }
.ess-k { font: 800 10px/1 var(--font-sans); letter-spacing: .18em; text-transform: uppercase; color: #a07f3d; margin-bottom: 12px; }
.ess-body h3 { font-family: var(--font-display); font-weight: 600; font-size: 24px; color: var(--navy); margin-bottom: 9px; }
.ess-body p { color: var(--ink-soft); font-size: 15px; line-height: 1.65; margin-bottom: 18px; }
.ess-body .card-link { margin-top: auto; color: var(--blue); font-weight: 600; font-size: 15px; }
/* Card 1 — canonical methodology star, 210px */
.ess-visual--method { display: grid; place-items: center; }
.ess-visual--method img { width: min(58%, 210px); height: auto; }
/* Card 2 — connected product diagram (chips + gold connectors) */
.ess-visual--product { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0; }
.essp-chip { font: 800 10px/1 var(--font-sans); letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 7px 13px; box-shadow: var(--shadow-sm); }
.essp-conn { width: 1px; height: 18px; background: var(--gold); }
.essp-pill { font-family: var(--font-display); font-weight: 600; font-size: 16px; color: #fff; background: var(--navy); border-radius: 8px; padding: 8px 18px; box-shadow: var(--shadow-md); }
.essp-fork { position: relative; width: 132px; height: 20px; }
.essp-arm { position: absolute; top: -1px; left: 50%; width: 1px; height: 30px; background: var(--gold); transform-origin: top center; }
.essp-arm--l { transform: rotate(-26deg); }
.essp-arm--r { transform: rotate(26deg); }
.essp-chips { display: flex; gap: 20px; }
.essp-chips .essp-chip { color: var(--navy); }
/* Card 3 — private / aggregated split panel */
.ess-visual--privacy { display: flex; align-items: stretch; }
.essv-plane { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; padding: 0 6%; text-align: center; }
.essv-plane--private { background: linear-gradient(180deg, #fbfcfe, #f2f6fc); border-right: 1px solid var(--gold); }
.essv-plane--agg { background: linear-gradient(168deg, #0a2c66 0%, #002255 55%, #061936 100%); }
.essv-k { font: 800 9px/1 var(--font-sans); letter-spacing: .2em; text-transform: uppercase; }
.essv-plane--private .essv-k { color: var(--navy); }
.essv-plane--agg .essv-k { color: var(--gold); }
.essv-sub { font-family: var(--font-display); font-style: italic; font-size: 12px; }
.essv-plane--private .essv-sub { color: var(--ink-soft); }
.essv-plane--agg .essv-sub { color: rgba(255,255,255,.65); }
.essv-lock { width: 26px; height: 18px; border: 2px solid var(--navy); border-radius: 4px; position: relative; }
.essv-lock::before { content: ""; position: absolute; left: 50%; top: -9px; transform: translateX(-50%); width: 14px; height: 10px; border: 2px solid var(--navy); border-bottom: 0; border-radius: 7px 7px 0 0; }
.essv-lock::after { content: ""; position: absolute; left: 50%; top: 3px; transform: translateX(-50%); width: 4px; height: 6px; background: var(--gold); border-radius: 1px; }
.essv-bars { display: flex; align-items: flex-end; gap: 5px; height: 26px; }
.essv-bars i { width: 6px; background: var(--gold); border-radius: 2px; }
.essv-bars i:nth-child(1) { height: 54%; }
.essv-bars i:nth-child(2) { height: 100%; }
.essv-bars i:nth-child(3) { height: 77%; }

/* Three quieter secondary routes */
.ess-routes { list-style: none; margin: clamp(22px, 3vw, 34px) 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.ess-routes a {
  display: flex; align-items: center; gap: 10px; padding: 16px 20px;
  border: 1px solid var(--line); border-radius: var(--r-md); background: var(--surface-1);
  text-decoration: none; transition: border-color .2s var(--ease), background .2s var(--ease);
}
.ess-routes a:hover { border-color: #d3d8e0; background: #fff; }
.ess-route-k { font-weight: 700; color: var(--navy); font-size: 15px; white-space: nowrap; }
.ess-route-d { color: var(--ink-soft); font-size: 13.5px; flex: 1; }
.ess-routes .arrow { color: var(--blue); }
@media (max-width: 860px) {
  .ess-features { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .ess-routes { grid-template-columns: 1fr; }
  .ess-route-d { flex: 1; }
}

/* RC4 — a canonical-diagram "page" within the publication gallery */
.pub-gallery { grid-template-columns: 1fr 1fr; }
/* Methodology as a full A4-landscape SPREAD (matches sibling spreads exactly):
   left page = title, right page = the canonical diagram, filling the frame. */
.pub-diagram-page {
  margin: 0; position: relative; aspect-ratio: 1100 / 778;
  background: #fff; border: 1px solid #edeae3; border-radius: 2px;
  box-shadow: 0 16px 40px rgba(0, 34, 85, .16);
  display: grid; grid-template-columns: 0.92fr 1.08fr; overflow: hidden;
}
.pub-diagram-page .pdp-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 8% 7%; border-right: 1px solid #f1eee7;
}
.pub-diagram-page .pdp-right { display: grid; place-items: center; padding: 6% 7%; }
.pub-diagram-page .pdp-right img { width: 100%; height: auto; }
.pub-diagram-page .pdp-k {
  font: 800 clamp(8px, .8vw, 10px)/1 var(--font-sans); letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold-dark); margin-bottom: 12%;
}
.pub-diagram-page .pdp-h {
  font-family: var(--font-display); font-weight: 600; color: var(--navy);
  font-size: clamp(15px, 1.8vw, 24px); line-height: 1.18; margin: 0;
}
.pub-diagram-page .pdp-f {
  margin-top: auto; font: 700 clamp(7px, .7vw, 9px)/1 var(--font-sans);
  letter-spacing: .14em; text-transform: uppercase; color: #9aa3b2;
}

/* RC4 — tighten the desktop header between the hamburger breakpoint and
   ~1120px so tablet-landscape (e.g. 1024) never overflows horizontally. */
@media (min-width: 901px) and (max-width: 1120px) {
  .header-inner { gap: 12px; }
  .nav { gap: 0; }
  .nav a { padding: 9px 10px; font-size: 14.5px; }
  .header-cta { gap: 8px; }
  .header-cta .btn { padding-left: 16px; padding-right: 16px; }
}
/* --- V2 Free Demo page --- */
.container--narrow { max-width: 900px; }
.page-hero--demo .page-hero-grid { grid-template-columns: 1.05fr .95fr; align-items: start; }
.page-hero--demo .lead { max-width: 52ch; }
.page-hero--demo .ph-actions { margin-top: 26px; }
.demo-points { display: flex; flex-direction: column; gap: 14px; }
.demo-point { background: #fff; border: 1px solid var(--line); border-left: 3px solid var(--gold); border-radius: var(--r-md); padding: 18px 20px; }
.demo-k { display: block; font: 700 11px/1 var(--font-sans); letter-spacing: .1em; text-transform: uppercase; color: var(--blue); margin-bottom: 8px; }
.demo-point p { margin: 0; color: var(--ink-soft); font-size: 15px; }

.faq { max-width: 780px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 20px 44px 20px 4px; position: relative;
  font-family: "Cormorant Garamond", Georgia, serif; font-weight: 600;
  font-size: clamp(19px, 2vw, 23px); color: var(--navy); line-height: 1.2;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; position: absolute; right: 8px; top: 50%; width: 12px; height: 12px;
  margin-top: -6px; border-right: 2px solid var(--blue); border-bottom: 2px solid var(--blue);
  transform: rotate(45deg); transition: transform .25s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-a { padding: 0 44px 22px 4px; }
.faq-a p { margin: 0; color: var(--ink-soft); font-size: 15.5px; line-height: 1.55; }

.demo-book-card { text-align: center; max-width: 560px; margin: 0 auto; padding: clamp(28px, 4vw, 44px); background: var(--surface-1); border: 1px solid var(--line); border-radius: var(--r-lg); }

@media (max-width: 860px) {
  .page-hero--demo .page-hero-grid { grid-template-columns: 1fr; }
  .page-hero--demo .demo-points { margin-top: 6px; }
}

/* Dashboard numerals: lining + tabular figures (Cormorant defaults to oldstyle) */
.emp-kpi .ui-value, .signal-n { font-variant-numeric: lining-nums tabular-nums; font-feature-settings: "lnum" 1, "tnum" 1; }
/* Nav must never wrap — always single line (P3) */
.nav a { white-space: nowrap; }

/* =====================================================================
   P3 — Premium employer-first homepage (navy radial hero + intelligence)
   ===================================================================== */

/* Buttons: gold (on navy, navy text) + hero ghost */
.btn-gold { background: linear-gradient(100deg, #b8964f 0%, #cbaa6a 100%); color: var(--navy); border: none; font-weight: 700; box-shadow: 0 10px 26px -10px rgba(184,150,79,.55); }
.btn-gold:hover { filter: brightness(1.05); color: var(--navy); }
.btn-hero-ghost { background: rgba(255,255,255,.04); color: #fff; border: 1px solid rgba(255,255,255,.42); }
.btn-hero-ghost:hover { border-color: #fff; background: rgba(255,255,255,.10); color: #fff; }

/* Navy radial hero */
.hero-navy {
  position: relative; overflow: hidden; color: #fff; text-align: center;
  background: radial-gradient(120% 120% at 50% -10%, #0a3068 0%, #002255 46%, #061936 100%);
  padding: clamp(84px, 13vh, 150px) 0 clamp(72px, 10vh, 120px);
  min-height: min(86vh, 840px); display: flex; align-items: center;
}
.hn-inner { position: relative; z-index: 2; max-width: 920px; margin-inline: auto; }
.hn-symbol { display: block; width: 40px; height: 52px; margin: 0 auto 24px; background: center/contain no-repeat url("../img/zeno-symbol-white.svg"); opacity: .9; }
.hn-eyebrow { color: var(--gold-dark); font: 700 13px/1 var(--font-sans); letter-spacing: .18em; text-transform: uppercase; margin: 0 0 20px; }
.hn-title { font-family: "Cormorant Garamond", Georgia, serif; font-weight: 600; color: #fff; font-size: clamp(38px, 5.6vw, 74px); line-height: 1.05; letter-spacing: -.01em; margin: 0; }
.hn-title em { color: var(--gold-dark); font-style: italic; }
.hn-rule { display: block; width: 64px; height: 1px; margin: 30px auto; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.hn-sub { color: #c3cee1; font-size: clamp(16px, 1.5vw, 19px); line-height: 1.6; max-width: 60ch; margin: 0 auto; }
.hn-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
.hn-scroll { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 2; color: var(--gold-dark); font: 700 11px/1 var(--font-sans); letter-spacing: .22em; text-transform: uppercase; opacity: .8; }

/* Floating employee-questions constellation */
.hn-constellation { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hn-q {
  position: absolute; max-width: 210px; color: #c3cee1; font-size: 13.5px; line-height: 1.35;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: 13px; padding: 10px 15px; backdrop-filter: blur(2px);
}
.hn-q1 { top: 20%; left: 3%; }
.hn-q2 { bottom: 20%; left: 6%; }
.hn-q3 { top: 26%; right: 3%; }
.hn-q4 { top: 12%; right: 20%; }
.hn-q5 { bottom: 18%; right: 5%; }
@media (prefers-reduced-motion: no-preference) {
  .hn-q { animation: hnfloat 12s ease-in-out infinite; }
  .hn-q2 { animation-delay: -3s; } .hn-q3 { animation-delay: -6s; } .hn-q4 { animation-delay: -9s; } .hn-q5 { animation-delay: -1.5s; }
  @keyframes hnfloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
  .hero-navy .hn-inner { animation: duo-in .9s var(--ease) both; }
}
@media (max-width: 1080px) { .hn-q4 { display: none; } }
@media (max-width: 860px) { .hn-constellation { display: none; } }

/* Stat triad */
.stat-triad { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 4vw, 56px); max-width: 820px; margin: clamp(8px,2vw,20px) auto 0; text-align: center; }
.stat { position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: calc(-1 * clamp(10px,2vw,28px)); top: 8%; bottom: 8%; width: 1px; background: var(--line); }
.stat-n { display: block; font-family: "Cormorant Garamond", Georgia, serif; font-weight: 600; font-size: clamp(46px, 6vw, 72px); line-height: 1; color: var(--navy); font-variant-numeric: lining-nums; }
.stat-l { display: block; margin: 12px auto 0; max-width: 22ch; color: var(--ink-soft); font-size: 14.5px; line-height: 1.4; }

/* Intelligence section */
.intel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.intel-index { list-style: none; margin: 22px 0 26px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 2px 20px; }
.intel-index li { position: relative; padding: 8px 0 8px 20px; color: var(--navy); font-weight: 600; font-size: 14.5px; }
.intel-index li::before { content: ""; position: absolute; left: 0; top: 16px; width: 10px; height: 1px; background: var(--gold); }
.intel-cta { margin: 0; }

/* Workforce Clarity panel */
.wc-panel { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); padding: clamp(22px, 2.4vw, 32px); }
.wc-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.wc-kicker { font: 700 11px/1 var(--font-sans); letter-spacing: .16em; text-transform: uppercase; color: var(--gold-dark); }
.wc-index { display: flex; align-items: center; gap: 20px; margin: 20px 0 22px; padding-bottom: 24px; border-bottom: 1px solid var(--line-soft); }
.wc-index-n { font-family: "Cormorant Garamond", Georgia, serif; font-weight: 600; font-size: clamp(58px, 7vw, 84px); line-height: .9; color: var(--navy); font-variant-numeric: lining-nums tabular-nums; }
.wc-index-meta { color: var(--ink-soft); font-size: 14px; line-height: 1.45; }
.wc-delta { color: var(--blue); font-weight: 800; }
.wc-index-meta small { color: var(--ink-soft); font-size: 12.5px; }
.wc-signals { display: flex; flex-direction: column; gap: 15px; }
.wc-sig { display: grid; grid-template-columns: 116px 1fr 30px; align-items: center; gap: 14px; }
.wc-sig-l { font-size: 13px; color: var(--navy); font-weight: 600; }
.wc-sig-bar { height: 7px; background: var(--surface-1); border-radius: var(--r-pill); overflow: hidden; }
.wc-sig-bar i { display: block; height: 100%; border-radius: var(--r-pill); background: linear-gradient(90deg, var(--navy), var(--blue)); }
.wc-sig-v { text-align: right; font-weight: 700; color: var(--navy); font-size: 14px; font-variant-numeric: lining-nums tabular-nums; }
.wc-foot { margin: 20px 0 0; font: 600 10.5px/1.3 var(--font-sans); letter-spacing: .06em; text-transform: uppercase; color: #9aa3b2; }

/* For leaders (navy) */
.eyebrow--gold { color: var(--gold-dark); }
.on-navy { color: #fff; }
.leader-points { list-style: none; max-width: 780px; margin: 0 auto; padding: 0; }
.leader-points li { display: flex; align-items: center; gap: 16px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.13); color: #dbe3f0; font-size: clamp(15.5px, 1.6vw, 19px); }
.lp-rule { flex: none; width: 26px; height: 1px; background: var(--gold-dark); }
.leader-quote { text-align: center; max-width: 720px; margin: clamp(32px,5vw,48px) auto 0; font-family: "Cormorant Garamond", Georgia, serif; font-style: italic; font-weight: 500; font-size: clamp(21px, 2.6vw, 30px); line-height: 1.32; color: #fff; }

/* The engine */
.engine-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.engine-steps { list-style: none; margin: 24px 0; padding: 0; }
.engine-steps li { display: grid; grid-template-columns: auto 1fr; column-gap: 18px; row-gap: 3px; padding: 16px 0; border-top: 1px solid var(--line); align-items: baseline; }
.es-n { grid-row: span 2; font-family: "Cormorant Garamond", Georgia, serif; font-weight: 600; font-size: 22px; color: var(--gold-dark); font-variant-numeric: lining-nums; }
.es-t { font-weight: 700; color: var(--navy); font-size: 16px; }
.es-d { grid-column: 2; color: var(--ink-soft); font-size: 14.5px; line-height: 1.45; }
.engine-visual { display: flex; justify-content: center; }
.engine-visual .duo-book { position: relative; left: auto; bottom: auto; transform: rotate(-3deg); width: min(78%, 290px); margin: 0 auto; }
.engine-visual .duo-book .duo-tag { display: none; }

/* Social proof single */
.proof-single { max-width: 760px; margin: 0 auto; text-align: center; }
.cta-band .cta-sub { margin: 20px auto 0; color: var(--neutral); font-size: 10.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; opacity: .72; }

@media (max-width: 900px) {
  .intel-grid, .engine-grid { grid-template-columns: 1fr; }
  .engine-visual { order: -1; }
  .intel-index { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .stat-triad { grid-template-columns: 1fr; gap: 26px; }
  .stat + .stat::before { display: none; }
  .stat { padding-top: 26px; border-top: 1px solid var(--line); }
  .stat:first-child { padding-top: 0; border-top: 0; }
  .intel-index { grid-template-columns: 1fr; }
  .wc-sig { grid-template-columns: 100px 1fr 28px; }
}

/* =====================================================================
   P3 refine — product-led navy hero (2-col) + animated platform preview
   ===================================================================== */

/* Hero → two columns, left-aligned copy, product on the right */
.hero-navy { text-align: left; }
.hn-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.04fr .96fr; gap: clamp(32px, 5vw, 76px); align-items: center; }
.hn-copy { max-width: 620px; }
.hn-copy .hn-eyebrow { margin: 0 0 18px; }
.hn-copy .hn-rule { margin: 28px 0; }
.hn-copy .hn-sub { margin: 0; max-width: 54ch; }
.hn-cta { justify-content: flex-start; align-items: center; gap: 22px; }
.hn-textlink { color: var(--gold-dark); font-weight: 600; font-size: 15px; text-decoration: none; display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.hn-textlink:hover { color: #fff; }
.hn-textlink .arrow { transition: transform .2s var(--ease); }
.hn-textlink:hover .arrow { transform: translateY(3px); }
.hn-visual { position: relative; }
.hn-visual::before { content: ""; position: absolute; inset: -16% -10%; z-index: 0; pointer-events: none; background: radial-gradient(circle at 58% 42%, rgba(184,150,79,.22), rgba(10,48,104,0) 62%); }
.hn-visual .plat-preview { position: relative; z-index: 1; }
@media (max-width: 900px) {
  .hn-grid { grid-template-columns: 1fr; gap: clamp(28px,6vw,44px); }
  .hn-visual { order: 2; }
  .hn-copy { max-width: none; }
}

/* Animated Employer Platform preview */
.plat-preview { position: relative; width: 100%; max-width: 440px; margin-inline: auto; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: 0 40px 84px -32px rgba(0,21,54,.5); padding: clamp(16px,1.5vw,22px); }
.pp-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.pp-dots { display: inline-flex; gap: 5px; }
.pp-dots i { width: 8px; height: 8px; border-radius: 50%; background: var(--line-strong); }
.pp-priv { display: inline-flex; align-items: center; gap: 6px; font: 700 10px/1 var(--font-sans); letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); }
.pp-priv svg { color: var(--blue); }
.pp-stage { position: relative; min-height: 214px; }
.pp-screen { position: absolute; inset: 0; opacity: 0; }
.pp-s1 { opacity: 1; }
.pp-kicker { font: 700 11px/1 var(--font-sans); letter-spacing: .14em; text-transform: uppercase; color: var(--gold-dark); }
.pp-metric { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin: 12px 0 5px; }
.pp-n { font-family: "Cormorant Garamond", Georgia, serif; font-weight: 600; font-size: clamp(46px,5.4vw,62px); line-height: .85; color: var(--navy); font-variant-numeric: lining-nums tabular-nums; }
.pp-delta { color: var(--blue); font-weight: 700; font-size: 13px; }
.pp-delta--watch { color: var(--gold-dark); }
.pp-cap { color: var(--ink-soft); font-size: 13px; line-height: 1.45; margin: 0 0 18px; max-width: 36ch; }
.pp-bars { display: flex; flex-direction: column; gap: 12px; }
.pp-brow { display: grid; grid-template-columns: 108px 1fr 26px; align-items: center; gap: 12px; }
.pp-bl { font-size: 12px; color: var(--navy); font-weight: 600; }
.pp-track { height: 6px; background: var(--surface-1); border-radius: var(--r-pill); overflow: hidden; }
.pp-track i { display: block; height: 100%; border-radius: var(--r-pill); background: linear-gradient(90deg, var(--navy), var(--blue)); }
.pp-bv { text-align: right; font-weight: 700; font-size: 12.5px; color: var(--navy); font-variant-numeric: lining-nums tabular-nums; }
.pp-trend { display: flex; align-items: flex-end; gap: 12px; height: 116px; padding-bottom: 20px; }
.pp-col { flex: 1; height: var(--h); align-self: flex-end; background: linear-gradient(#dde5f1, #b7c5dd); border-radius: 6px 6px 0 0; position: relative; }
.pp-col--proj { background: linear-gradient(var(--gold-soft), var(--gold-dark)); }
.pp-col em { position: absolute; left: 0; right: 0; bottom: -18px; text-align: center; font-style: normal; font-size: 10px; letter-spacing: .04em; color: var(--ink-soft); }
.pp-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 2px; }
.pp-chip { font-size: 12px; color: var(--navy); background: var(--surface-1); border: 1px solid var(--line); border-radius: var(--r-pill); padding: 7px 13px; }
.pp-chip b { color: var(--blue); font-weight: 800; margin-right: 3px; }
.pp-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 16px; padding-top: 13px; border-top: 1px solid var(--line-soft); }
.pp-tabs { display: inline-flex; gap: 6px; flex: none; }
.pp-tabs i { width: 20px; height: 3px; border-radius: 2px; background: var(--gold); opacity: .28; }
.pp-note { font-size: 10px; line-height: 1.3; color: #9aa3b2; text-align: right; }

/* Large variant (mid-homepage) */
.plat-preview--lg { max-width: 780px; padding: clamp(24px,2.4vw,38px); }
.plat-preview--lg .pp-stage { min-height: 256px; }
.plat-preview--lg .pp-n { font-size: clamp(58px,7vw,88px); }
.plat-preview--lg .pp-brow { grid-template-columns: 150px 1fr 34px; }
.plat-preview--lg .pp-bl, .plat-preview--lg .pp-cap { font-size: 14.5px; }
.plat-preview--lg .pp-cap { max-width: 46ch; }
.plat-preview--lg .pp-trend { height: 150px; }
.plat-preview--lg .pp-chip { font-size: 13px; padding: 8px 15px; }

.plat-index-line { max-width: 880px; margin: clamp(22px,3vw,32px) auto 0; text-align: center; color: var(--ink-soft); font-size: 13.5px; line-height: 1.9; }
.plat-index-line + .center { margin-top: 22px; }

/* Auto-rotation — elegant, slow; static under reduced-motion */
@media (prefers-reduced-motion: no-preference) {
  .pp-screen { animation: pp-rot 18s ease-in-out infinite; }
  .pp-s2 { animation-delay: -6s; }
  .pp-s3 { animation-delay: -12s; }
  .pp-tabs i { animation: pp-tab 18s ease-in-out infinite; }
  .pp-tabs i:nth-child(2) { animation-delay: -6s; }
  .pp-tabs i:nth-child(3) { animation-delay: -12s; }
  /* offset the section preview so it never syncs with the hero one */
  .plat-preview--b .pp-s1 { animation-delay: -3s; }
  .plat-preview--b .pp-s2 { animation-delay: -9s; }
  .plat-preview--b .pp-s3 { animation-delay: -15s; }
  .plat-preview--b .pp-tabs i:nth-child(1) { animation-delay: -3s; }
  .plat-preview--b .pp-tabs i:nth-child(2) { animation-delay: -9s; }
  .plat-preview--b .pp-tabs i:nth-child(3) { animation-delay: -15s; }
}
@keyframes pp-rot {
  0%   { opacity: 0; transform: translateY(10px) scale(.992); }
  3.5% { opacity: 1; transform: none; }
  30%  { opacity: 1; transform: none; }
  33.5%{ opacity: 0; transform: translateY(-10px) scale(.992); }
  100% { opacity: 0; }
}
@keyframes pp-tab {
  0%    { opacity: .28; }
  3.5%, 30% { opacity: 1; }
  33.5%, 100% { opacity: .28; }
}

/* Resources Talks/Insights: reserve equal heading height so leads + CTAs align */
@media (min-width: 761px) {
  .resource-feature h2 { min-height: 2.15em; }
  .resource-feature .lead { min-height: 4.5em; }
}

/* Platform hero — two columns, product preview as artwork */
.page-hero--platform .page-hero-grid { grid-template-columns: 1.02fr .98fr; gap: clamp(32px,5vw,68px); align-items: center; }
.page-hero--platform .ph-actions { margin-top: 26px; }
.ph-visual { display: flex; justify-content: center; position: relative; }
@media (max-width: 900px) {
  .page-hero--platform .page-hero-grid { grid-template-columns: 1fr; gap: clamp(28px,6vw,40px); }
  .page-hero--platform .ph-visual { order: 2; }
}

/* Hero white ZLP symbol — inline before the eyebrow, sized to match Version 2 */
.hn-copy .hn-eyebrow { display: flex; align-items: center; justify-content: flex-start; gap: 12px; align-self: flex-start; }
.hn-copy .hn-symbol { display: inline-block; flex: none; width: 26px; height: auto; aspect-ratio: 335 / 529; background: center/contain no-repeat url("../img/zeno-symbol-white.svg"); opacity: .95; }
@media (max-width: 480px) { .hn-copy .hn-symbol { width: 22px; } }

/* Methodology spread — left page 01–04 step list (handoff 1a) */
.pub-diagram-page .pdp-h { margin: 0 0 8%; }
.pub-diagram-page .pdp-steps { list-style: none; margin: 0; padding: 0; }
.pub-diagram-page .pdp-steps li { display: flex; align-items: baseline; gap: 9px; padding: 4.5% 0; font: 600 clamp(8px, .9vw, 11px)/1 var(--font-sans); color: var(--navy); border-top: 1px solid #f1eee7; }
.pub-diagram-page .pdp-sn { font-family: var(--font-display); font-weight: 600; color: var(--gold-dark); font-size: clamp(10px, 1.1vw, 14px); }

/* =====================================================================
   Claude Design handoff 1a — Life Plan document (aligned & symmetric)
   ===================================================================== */
:root {
  --zeno-navy: var(--navy); --zeno-navy-deep: #061936; --zeno-blue: var(--blue);
  --zeno-gold: var(--gold); --zeno-gold-dark: #a07f3d; --zeno-ink: var(--ink);
  --zeno-white: #fff; --zeno-line: #e4e2dc; --zeno-cloud: #e9ecf1;
  --zeno-muted: #5a6b84; --text-muted: #5a6b84;
}
.lp-doc { display: flex; gap: clamp(28px, 4vw, 56px); justify-content: center; align-items: flex-start; flex-wrap: wrap; margin-top: clamp(40px, 6vw, 72px); }
.lp-doc .lp-cover-wrap { display: flex; flex-direction: column; align-items: center; gap: 16px; margin: 0; }
.lp-cover { width: 300px; height: 424px; background: linear-gradient(168deg, #0a2c66 0%, #002255 55%, #061936 100%); border-radius: 6px; box-shadow: 0 24px 48px -12px rgba(6,25,54,.45); display: flex; flex-direction: column; align-items: center; justify-content: space-between; padding: 44px 32px; text-align: center; box-sizing: border-box; }
.lp-cover-sym { width: 34px; height: 44px; background: center/contain no-repeat url("../img/zeno-symbol-white.svg"); opacity: .95; }
.lp-cover-mid { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.lp-cover-k { font: 800 9px/1 var(--font-sans); letter-spacing: .22em; text-transform: uppercase; color: #c7a765; }
.lp-cover-name { font-family: var(--font-display); font-weight: 600; font-size: 34px; color: #fff; line-height: 1.1; }
.lp-cover-rule { display: block; width: 44px; height: 1px; background: var(--gold); }
.lp-cover-tag { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: 14px; color: rgba(255,255,255,.75); }
.lp-cover-foot { display: flex; flex-direction: column; gap: 6px; }
.lp-cover-ed { font: 800 9px/1 var(--font-sans); letter-spacing: .18em; text-transform: uppercase; color: #c7a765; }
.lp-cover-priv { font: 400 8px/1.35 var(--font-sans); letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.45); }
.lp-cap { margin: 0; font: 800 11px/1.4 var(--font-sans); letter-spacing: .14em; text-transform: uppercase; color: var(--zeno-muted); }
.lp-cap .g { color: var(--zeno-gold-dark); }
.lp-spreads-wrap { display: flex; flex-direction: column; gap: 16px; margin: 0; }
.lp-grid { display: grid; grid-template-columns: repeat(2, max-content); grid-auto-rows: 198px; gap: 28px; }
.lp-spread { display: flex; box-shadow: 0 14px 32px -10px rgba(6,25,54,.28); border-radius: 4px; overflow: hidden; }
.lp-page { width: 140px; height: 198px; box-sizing: border-box; flex: 0 0 auto; overflow: hidden; background: #fdfcfa; border: 1px solid var(--zeno-line); padding: 14px 12px; display: flex; flex-direction: column; gap: 7px; }
.lp-page--l { border-right: none; }
.lp-page--r { border-left: 1px solid #efede8; }
.lp-page--center { align-items: center; justify-content: center; text-align: center; gap: 9px; }
.lp-k { font: 800 7px/1.3 var(--font-sans); letter-spacing: .18em; text-transform: uppercase; color: var(--zeno-gold-dark); }
.lp-row { display: flex; justify-content: space-between; align-items: baseline; font-size: 8px; color: var(--zeno-ink); }
.lp-row .v { font-family: var(--font-display); font-style: italic; color: var(--navy); }
.lp-row .m { color: var(--zeno-muted); }
.lp-num { font-family: var(--font-display); font-weight: 600; color: var(--zeno-gold-dark); }
.lp-h { font-family: var(--font-display); font-weight: 600; color: var(--navy); }
.lp-h--sm { font-size: 12px; line-height: 1.2; }
.lp-h--md { font-size: 13px; }
.lp-rule-g { display: block; width: 24px; height: 1px; background: var(--gold); }
.lp-rule-g--m { margin: 2px 0; }
.lp-greek { display: block; height: 3px; background: var(--zeno-cloud); border-radius: 2px; }
.lp-italic-blue { font-family: var(--font-display); font-style: italic; font-size: 9px; color: var(--blue); }
.lp-ded { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: 10px; color: var(--navy); line-height: 1.45; }
.lp-quote { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: 11px; color: var(--navy); line-height: 1.5; margin-top: 4px; }
.lp-sym-navy { width: 12px; height: 14px; background: center/contain no-repeat url("../img/zeno-symbol-navy.svg"); opacity: .8; }
.lp-steps { display: flex; flex-direction: column; gap: 4px; margin: 2px 0 0; list-style: none; padding: 0; }
.lp-steps li { display: flex; gap: 6px; align-items: baseline; }
.lp-steps .n { font-family: var(--font-display); font-weight: 600; font-size: 9px; color: var(--zeno-gold-dark); }
.lp-steps .t { font-size: 8px; color: var(--zeno-muted); }
.lp-star { width: 112px; height: auto; display: block; }
.lp-foot { margin-top: auto; font: 800 6.4px/1 var(--font-sans); letter-spacing: .12em; text-transform: uppercase; color: var(--zeno-muted); }
.lp-foot--r { text-align: right; }
@media (max-width: 820px) {
  .lp-doc { flex-direction: column; align-items: center; }
  .lp-grid { grid-template-columns: 1fr; justify-items: center; }
}

/* Mobile nav overlay is navy → Free Demo CTA is gold (matches gold-on-navy rule) */
@media (max-width: 900px) {
  #primary-nav .header-cta .btn-primary {
    background: linear-gradient(100deg, #b8964f 0%, #cbaa6a 100%);
    color: var(--navy);
    box-shadow: 0 10px 26px -10px rgba(184, 150, 79, .55);
  }
  #primary-nav .header-cta .btn-primary:hover { filter: brightness(1.05); background: linear-gradient(100deg, #b8964f 0%, #cbaa6a 100%); }
}

/* =====================================================================
   Hero intelligence composition (Claude Design handoff 3a)
   ===================================================================== */
/* Enlarged Zeno symbol (Version 2 proportions), inline before the eyebrow */
.hn-copy .hn-symbol { width: 20px; height: 26px; }

/* Two-column hero: ~440px text / 1fr artwork (the RC3 employer platform needs
   ~620px, so the art column takes the larger share — the intended asymmetry). */
.hero-navy .hn-grid { grid-template-columns: minmax(0, 520px) minmax(0, 1fr); gap: clamp(28px, 2.6vw, 44px); align-items: stretch; }
.hn-copy { display: flex; flex-direction: column; }
.hn-copy .hn-cta { margin-top: auto; padding-top: 36px; }
/* No nowrap: the <br> breaks set the intended lines, but longer localised lines
   (pt-BR/es-ES) wrap within the copy column instead of overflowing into the artwork. */
.hero-navy .hn-title { font-size: clamp(33px, 3.05vw, 44px); line-height: 1.15; letter-spacing: -.015em; }
.hn-title .d-br { display: inline; }
.hn-visual { display: flex; }

/* Artwork column — spans the text column height */
.hero-int { display: flex; flex-direction: column; width: 100%; min-height: 560px; }
.hi-panel { flex: 1; background: #fdfcfa; border-radius: 16px; box-shadow: 0 40px 90px -22px rgba(3,12,28,.6); padding: 30px 32px 48px; display: flex; flex-direction: column; }
.hi-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.hi-kicker { font: 800 11px/1.2 var(--font-sans); letter-spacing: .17em; text-transform: uppercase; color: var(--gold-dark); }
.hi-badge { display: inline-flex; align-items: center; gap: 6px; border: 1px solid var(--line); border-radius: var(--r-pill); padding: 4px 11px; font: 800 10px/1 var(--font-sans); letter-spacing: .13em; text-transform: uppercase; color: var(--ink-soft); white-space: nowrap; }
.hi-dot { width: 6px; height: 6px; border-radius: 50%; background: #2e7d5b; flex: none; }
.hi-index { display: flex; align-items: baseline; gap: 12px; margin-top: 14px; flex-wrap: wrap; }
.hi-score { font-family: var(--font-display); font-weight: 600; font-size: clamp(54px, 6vw, 72px); line-height: 1; color: var(--navy); font-variant-numeric: lining-nums tabular-nums; }
.hi-delta { font: 600 15px/1 var(--font-sans); color: var(--blue); }
.hi-sub { font-size: 13px; color: var(--ink-soft); margin: 6px 0 0; max-width: 250px; }
.hi-dims { display: flex; flex-direction: column; gap: 13px; margin-top: 22px; }
.hi-dim-top { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 5px; }
.hi-dim-top span:first-child { font-weight: 600; color: var(--ink); }
.hi-dim-v { color: var(--ink-soft); font-variant-numeric: lining-nums; }
.hi-track { height: 6px; border-radius: 3px; background: #e9ecf1; overflow: hidden; }
.hi-track--sm { height: 5px; }
.hi-fill { display: block; height: 100%; border-radius: 3px; background: var(--navy); }
.hi-fill--gold { background: var(--gold); }
.hi-fill--blue { background: var(--blue); }
.hi-asp-wrap { border-top: 1px solid var(--line); margin-top: 24px; padding-top: 20px; }
.hi-asps { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }
.hi-asp { display: grid; grid-template-columns: 150px 1fr 34px; align-items: center; gap: 12px; border-left: 2px solid transparent; padding-left: 10px; transition: border-color .5s var(--ease), background .5s var(--ease); }
.hi-asp-l { font-size: 13px; color: var(--ink); }
.hi-asp-v { font-size: 13px; font-weight: 600; color: var(--navy); text-align: right; font-variant-numeric: lining-nums; }
.hi-asp.is-hi { border-left-color: var(--gold); background: rgba(184,150,79,.07); }
.hi-foot { margin-top: auto; padding-top: 18px; display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.hi-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.hi-chip { border: 1px solid var(--line); border-radius: var(--r-pill); padding: 4px 12px; font: 600 11px/1 var(--font-sans); color: var(--navy); }
.hi-disclaimer { font-size: 11px; color: var(--ink-soft); }

/* Satellite cards — overlap only the panel's bottom padding */
.hi-sats { display: flex; gap: 20px; margin-top: -30px; padding: 0 22px; position: relative; z-index: 2; }
.hi-sat { flex: 1; border-radius: 12px; padding: 18px 20px; }
.hi-sat--light { background: #fff; border: 1px solid var(--line); box-shadow: 0 24px 56px -16px rgba(3,12,28,.5); }
.hi-sat--navy { background: linear-gradient(168deg, #0d3373 0%, #002255 100%); border: 1px solid rgba(255,255,255,.14); box-shadow: 0 24px 56px -16px rgba(3,12,28,.55); }
.hi-sat-k { font: 800 9px/1 var(--font-sans); letter-spacing: .16em; text-transform: uppercase; color: var(--gold-dark); }
.hi-sat--navy .hi-sat-k { color: var(--gold-dark); }
.hi-sat-h { font-family: var(--font-display); font-weight: 600; font-size: 17px; line-height: 1.35; color: var(--navy); margin: 8px 0 0; }
.hi-sat-p { font-size: 12px; color: var(--ink-soft); margin: 8px 0 0; }
.hi-sat-list { list-style: none; margin: 10px 0 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.hi-sat-list li { display: flex; gap: 8px; align-items: baseline; font-size: 13px; color: rgba(255,255,255,.85); }
.hi-dash { color: var(--gold); flex: none; }

/* Tablet & below — stack text above artwork. Raised to 1180px so the wide RC3
   employer platform keeps its room until there genuinely isn't space. */
@media (max-width: 1180px) {
  /* minmax(0,1fr), not 1fr: 1fr's implicit min-width:auto lets the wide platform
     panel's min-content blow the column out past the viewport (then overflow:hidden
     clips it). minmax(0,…) lets the column shrink so content wraps to fit. */
  .hero-navy .hn-grid { grid-template-columns: minmax(0, 1fr); }
  .hn-visual { order: 2; }
  .hn-copy .hn-cta { margin-top: 32px; padding-top: 0; }
  .hero-int { min-height: 0; max-width: 560px; margin-inline: auto; width: 100%; }
}
/* Belt-and-braces: the artwork and its platform panel must never exceed the column. */
.hn-visual, .zlp-art, .zlp-art-panel, .zlp-art-panel * { min-width: 0; }
.zlp-art-panel { max-width: 620px; }
/* Mobile — purpose-built: main panel primary, satellites stack, natural headline */
@media (max-width: 560px) {
  .hero-navy .hn-title { white-space: normal; }
  .hn-title .d-br { display: none; }
  .hi-panel { padding: 24px 22px 40px; }
  .hi-sats { flex-direction: column; margin-top: -24px; gap: 14px; padding: 0 14px; }
  .hi-asp { grid-template-columns: 116px 1fr 32px; gap: 10px; }
}

/* =====================================================================
   Hero "Two results" — Life Plan book + anonymised flow + intelligence panel
   (Claude Design handoff 6a). Replaces the single-panel hero artwork.
   ===================================================================== */
.h2r { display: flex; align-items: center; justify-content: center; gap: clamp(8px, 1.3vw, 20px); width: 100%; }
.h2r-result { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.h2r-bookwrap { flex: none; }
.h2r-panelwrap { flex: 1; min-width: 0; align-self: stretch; justify-content: center; }
.h2r-cap { background: #fff; border-radius: 12px; padding: 6px 13px; font: 700 10px/1.25 var(--font-sans); color: var(--navy); box-shadow: 0 12px 28px -8px rgba(3,12,28,.5); text-align: center; max-width: 200px; }

/* Result 1 — the Life Plan book */
.h2r-book { position: relative; width: 196px; height: 268px; background: #fdfcfa; border-radius: 5px 10px 10px 5px; transform: rotate(-3deg); box-shadow: 16px 26px 52px -14px rgba(3,12,28,.75); }
.h2r-book::before { content: ""; position: absolute; left: 4px; top: 0; bottom: 0; width: 2px; background: rgba(0,34,85,.08); border-radius: 5px 0 0 5px; }
.h2r-book-frame { position: absolute; inset: 8px; border: 1px solid rgba(184,150,79,.55); border-radius: 3px; }
.h2r-book-inner { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 20px 14px 14px; }
.h2r-bk-title { font-family: var(--font-display); font-weight: 600; font-size: 18px; letter-spacing: .16em; text-transform: uppercase; color: var(--navy); line-height: 1; }
.h2r-bk-sub { font-family: var(--font-display); font-style: italic; font-size: 10px; color: var(--ink-soft); margin-top: 5px; }
.h2r-bk-star { width: 136px; height: auto; margin: 6px 0 2px; }
.h2r-bk-rule { display: block; width: 22px; height: 1px; background: var(--gold); margin: 2px 0 6px; }
.h2r-bk-owner { font-family: var(--font-display); font-style: italic; font-size: 11px; color: var(--navy); }
.h2r-bk-ed { margin-top: auto; font: 800 7px/1 var(--font-sans); letter-spacing: .22em; text-transform: uppercase; color: var(--gold-dark); }

/* Flow — gold dotted "anonymised" seam */
.h2r-flow { flex: none; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.h2r-dots { display: flex; flex-direction: column; gap: 7px; align-items: center; }
.h2r-dots i { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.h2r-dots i:nth-child(1), .h2r-dots i:nth-child(5) { opacity: .45; }
.h2r-dots i:nth-child(2), .h2r-dots i:nth-child(4) { opacity: .7; }
.h2r-flowlabel { writing-mode: vertical-rl; font: 800 8px/1 var(--font-sans); letter-spacing: .14em; text-transform: uppercase; color: var(--gold-dark); }
@media (prefers-reduced-motion: no-preference) {
  .h2r-dots i { animation: h2rpulse 2.4s ease-in-out infinite; }
  .h2r-dots i:nth-child(2){animation-delay:.2s} .h2r-dots i:nth-child(3){animation-delay:.4s} .h2r-dots i:nth-child(4){animation-delay:.6s} .h2r-dots i:nth-child(5){animation-delay:.8s}
  @keyframes h2rpulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.5)} }
}

/* Result 2 — the intelligence panel (compact two-results proportions) */
.h2r .hi-panel { width: 100%; padding: 20px 24px 18px; box-shadow: 0 40px 90px -20px rgba(3,12,28,.65); }
.h2r .hi-index { margin-top: 10px; }
.h2r .hi-score { font-size: 44px; }
.h2r .hi-delta { font-size: 13px; }
.h2r .hi-dims { margin-top: 16px; gap: 11px; }
.h2r .hi-asp-wrap { margin-top: 18px; padding-top: 16px; }
.h2r .hi-asp { grid-template-columns: 128px 1fr 32px; }
.h2r .hi-disclaimer { margin-top: 14px; opacity: .8; }

@media (max-width: 980px) {
  .h2r { max-width: 640px; margin-inline: auto; }
}
/* Below 640: stack the two results vertically, panel readable full width */
@media (max-width: 640px) {
  .h2r { flex-direction: column; gap: 18px; }
  .h2r-panelwrap { align-self: stretch; width: 100%; }
  .h2r-flow { flex-direction: row; }
  .h2r-dots { flex-direction: row; }
  .h2r-flowlabel { writing-mode: horizontal-tb; }
  .h2r .hi-asp { grid-template-columns: 120px 1fr 32px; }
}

/* =====================================================================
   "Why it matters" — three rich stat cards (Claude Design handoff 4a)
   ===================================================================== */
.wim { position: relative; overflow: hidden; }
.wim-watermark { position: absolute; right: -50px; bottom: -90px; width: 420px; height: 420px; background: center/contain no-repeat url("../img/zeno-symbol-navy.svg"); opacity: .04; pointer-events: none; }
.wim .container { position: relative; z-index: 1; }
.wim-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: clamp(40px, 5vw, 64px); }
.wim-card { position: relative; border-radius: 12px; padding: 40px 36px 34px; display: flex; flex-direction: column; box-shadow: var(--shadow-md); transition: transform .28s var(--ease), box-shadow .28s var(--ease); }
.wim-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.wim-card--light { background: #fff; border: 1px solid var(--line); }
.wim-card--navy { background: linear-gradient(168deg, #0a2c66 0%, #002255 55%, #061936 100%); }
.wim-tab { position: absolute; top: 0; left: 36px; width: 44px; height: 3px; background: var(--gold); border-radius: 0 0 2px 2px; }
.wim-n { font-family: var(--font-display); font-weight: 600; font-size: 72px; line-height: 1; color: var(--navy); font-variant-numeric: lining-nums; }
.wim-card--navy .wim-n { color: #fff; }
.wim-k { margin-top: 14px; font: 800 11px/1 var(--font-sans); letter-spacing: .18em; text-transform: uppercase; color: var(--gold-dark); }
.wim-t { font-family: var(--font-display); font-weight: 600; font-size: 22px; color: var(--navy); margin: 8px 0 0; line-height: 1.2; }
.wim-card--navy .wim-t { color: #fff; }
.wim-b { font-size: 15px; line-height: 1.6; color: var(--ink-soft); margin: 12px 0 0; }
.wim-card--navy .wim-b { color: rgba(255,255,255,.72); }
.wim-motif { margin-top: auto; padding-top: 26px; display: flex; align-items: center; gap: 12px; }
.wim-motif-l { font-family: var(--font-display); font-style: italic; font-size: 14px; color: var(--ink-soft); }
/* card 1 — document */
.wim-doc { width: 34px; height: 44px; flex: none; background: #fff; border: 1px solid var(--line); border-radius: 3px; padding: 7px 5px; display: flex; flex-direction: column; gap: 3px; }
.wim-doc i { height: 2px; border-radius: 1px; background: #e9ecf1; }
.wim-doc i:first-child { background: var(--gold); width: 68%; }
.wim-doc i:nth-child(4) { width: 58%; }
/* card 2 — step indicator */
.wim-steps { display: flex; align-items: center; }
.wim-steps i { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 600; font-style: normal; font-size: 12px; border: 1px solid rgba(255,255,255,.35); color: rgba(255,255,255,.7); flex: none; }
.wim-steps i.on { background: var(--gold); border-color: var(--gold); color: var(--navy-900); }
.wim-steps i + i { margin-left: 14px; position: relative; }
.wim-steps i + i::before { content: ""; position: absolute; left: -14px; top: 50%; width: 14px; height: 1px; background: rgba(255,255,255,.3); }
/* card 3 — lock */
.wim-lock { position: relative; width: 22px; height: 27px; flex: none; }
.wim-lock::after { content: ""; position: absolute; bottom: 0; left: 0; width: 22px; height: 15px; background: var(--navy); border-radius: 3px; }
.wim-lock::before { content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 13px; height: 13px; border: 2px solid var(--navy); border-bottom: none; border-radius: 7px 7px 0 0; }
@media (max-width: 860px) {
  .wim-cards { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
}

/* ---- Hero "two results" corrections: cleaner captions + clearer anonymisation ---- */
/* Captions: flat, two-line, EMPLOYEE/EMPLOYER OUTPUT labels — minimal shadow */
.h2r-cap { display: flex; flex-direction: column; align-items: center; gap: 3px; background: rgba(255,255,255,.96); border: 1px solid rgba(255,255,255,.5); border-radius: 10px; padding: 9px 15px; box-shadow: 0 6px 16px -8px rgba(3,12,28,.35); text-align: center; max-width: 224px; }
.h2r-cap-k { font: 800 9px/1 var(--font-sans); letter-spacing: .16em; text-transform: uppercase; color: var(--blue); }
.h2r-cap-t { font: 600 12.5px/1.3 var(--font-sans); color: var(--navy); }
.h2r-panelwrap .h2r-cap-k { color: var(--gold-dark); }
/* Flow: directional cue toward the employer (individual → anonymised & aggregated → employer) */
.h2r-flow { justify-content: center; }
.h2r-arrow { display: block; width: 8px; height: 8px; border-top: 1.5px solid var(--gold); border-right: 1.5px solid var(--gold); transform: rotate(45deg); opacity: .9; }
@media (max-width: 640px) {
  .h2r-flow { flex-direction: row; gap: 8px; }
  .h2r-arrow { transform: rotate(135deg); }
  .h2r-cap { max-width: 280px; }
}


/* ===================================================================
   RC2 — Claude Design hero + connected-system artwork (.zlp-*)
   Inline styles carry the look; these rules only make it responsive
   inside the existing hero grid and Platform section.
   =================================================================== */
/* .hn-visual is a flex container; make .zlp-art fill the cell. */
.zlp-art { width: 100%; max-width: 100%; margin: 0 auto; align-self: stretch; }
/* Motion keyframes (see README): orbiting cycle dot, rising signal dots, live pulse. */
@keyframes zlpOrbit { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes zlpRise { 0% { opacity: 0; transform: translateY(14px); } 22% { opacity: 1; } 78% { opacity: 1; } 100% { opacity: 0; transform: translateY(-46px); } }
@keyframes zlpLive { 0%, 100% { opacity: 0.35; } 50% { opacity: 1; } }
/* When the hero stacks (<=1180px), reverse the art column so it reads top-to-bottom
   as employee -> anonymisation band -> employer (the narrative order). !important
   because the element carries an inline flex-direction: column. */
@media (max-width: 1180px) {
  .zlp-art { flex-direction: column-reverse !important; }
}
/* Phones: the six module tiles go to two columns; the orbit scales with its labels. */
@media (max-width: 720px) {
  .zlp-art-panel [style*="repeat(3, 1fr)"] { grid-template-columns: repeat(2, 1fr) !important; }
  .zlp-orbit { transform: scale(0.86); transform-origin: top center; }
}
/* Reduced motion: freeze the loops but keep signal dots visible (README). */
@media (prefers-reduced-motion: reduce) {
  [data-orbit], [data-rise], [data-live] { animation: none !important; }
  [data-rise] { opacity: 0.7 !important; transform: none !important; }
}

/* Connected-system (.zlp-system) — the section supplies its own inline layout;
   ensure it never overflows the page container and the grid can shrink. */
.zlp-system { max-width: 100%; }
.zlp-system-grid > * { min-width: 0; }

/* --- RC2: Connected-system (.zlp-system) base layout + responsive.
   (The handoff shipped this in its <style> head; the inline element styles
   carry the rest.) --------------------------------------------------------- */
.zlp-system { background: #f7f6f3; padding: 76px 72px 68px; }
.zlp-system-grid { display: grid; grid-template-columns: 1fr 180px 400px; align-items: stretch; margin-top: 52px; max-width: 1216px; margin-left: auto; margin-right: auto; }
.zlp-system-head { max-width: 1216px; margin: 0 auto; }
.zlp-system-grid > * { min-width: 0; }

/* Below 1080px the three columns stack; the membrane stays a COLUMN (flow still
   runs journey -> layer -> platform) and only the arrowheads rotate to point down. */
@media (max-width: 1080px) {
  .zlp-system { padding: 56px 32px; }
  .zlp-system-grid { grid-template-columns: 1fr; gap: 0; }
  .zlp-col-employee { padding-right: 0 !important; }
  .zlp-col-employer { padding-left: 0 !important; margin-top: 0; }
  .zlp-membrane { margin: 20px 0; }
  .zlp-membrane > span:nth-child(1) { top: 0 !important; bottom: auto !important; left: 0 !important; right: 0; border-left: none !important; border-top: 1px dashed rgba(184,150,79,0.75); }
  .zlp-membrane > span:nth-child(2) { top: auto !important; bottom: 0 !important; left: 0 !important; right: 0; border-left: none !important; border-top: 1px dashed rgba(184,150,79,0.75); }
  .zlp-membrane > div { flex: none !important; }
  .zlp-membrane > div[style*="space-evenly"] { flex-direction: row !important; justify-content: center !important; gap: 56px; padding: 14px 0 !important; }
  .zlp-membrane [data-flow] { flex-direction: column; gap: 7px !important; }
  .zlp-arrow { transform: rotate(90deg); }
  .zlp-membrane-label { padding: 16px 24px !important; }
  .zlp-membrane-label > span:last-child { max-width: 42ch; }
}
@media (max-width: 640px) {
  .zlp-system { padding: 44px 20px; }
  .zlp-system h2 { font-size: 2rem !important; }
  .zlp-cycle { grid-template-columns: 1fr !important; gap: 10px; }
  .zlp-cycle > span { display: none !important; }
}
@media (prefers-reduced-motion: reduce) {
  .zlp-system [data-anim], .zlp-system [data-draw] { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   New homepage hero — word-roll headline + WPI panel + Life Plan covers.
   Self-contained: all --zeno-* tokens are scoped to .zlp-hero so nothing
   leaks into other sections. Motion reuses the shared data-zlp-motion reveal
   in main.js; word-roll / rise / live are CSS-only (zlph* keyframes, namespaced
   to avoid collision with the retired hero's zlpRise/zlpLive).
   ============================================================ */
.zlp-hero {
  --zeno-navy: #002255; --zeno-navy-deep: #061936; --zeno-blue: #0044aa;
  --zeno-gold: #b8964f; --zeno-gold-dark: #cbaa6a; --zeno-muted: #647086;
  --zeno-ink: #14213d; --zeno-white: #ffffff; --zeno-paper: #f7f6f3; --zeno-line: #e4e2dc;
  --font-display: 'Cormorant Garamond','Cormorant',Georgia,'Times New Roman',serif;
  --font-sans: -apple-system,BlinkMacSystemFont,'Segoe UI','Helvetica Neue',Helvetica,Arial,sans-serif;
  background: linear-gradient(155deg,#0a2c66 0%,#002255 48%,#061936 100%);
  padding: 18px 56px;
}
.zlp-hero-inner { display: grid; grid-template-columns: 486px minmax(0, 1fr); gap: 44px; align-items: stretch; max-width: 1248px; margin: 0 auto; }
/* Grid-blowout guard: the art column must be allowed to shrink below its widest
   fixed child (the 604px divider), or it forces horizontal overflow when stacked. */
.zlp-hero-copy, .zlph-art, .zlph-panel { min-width: 0; }
.zlph-art *, .zlph-panel * { min-width: 0; }
.zlph-art [style*="width: 500px"] { max-width: 100%; }
/* Visible keyboard focus for the hero CTAs (they are inline-styled links). */
.zlp-hero a:focus-visible { outline: 2px solid var(--zeno-gold-dark); outline-offset: 3px; border-radius: 6px; }
@keyframes zlphWordRoll { 0%,13%{transform:translateY(0)} 16.67%,30%{transform:translateY(-16.667%)} 33.33%,46.67%{transform:translateY(-33.333%)} 50%,63.33%{transform:translateY(-50%)} 66.67%,80%{transform:translateY(-66.667%)} 83.33%,100%{transform:translateY(-83.333%)} }
@keyframes zlphRise { 0%{opacity:0;transform:translateY(14px)} 22%{opacity:1} 62%{opacity:1} 82%,100%{opacity:0;transform:translateY(-24px)} }
@keyframes zlphLive { 0%,100%{opacity:.35} 50%{opacity:1} }
@media (max-width: 1180px) {
  .zlp-hero { padding: 44px 36px; }
  .zlp-hero-inner { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .zlp-hero h1 { white-space: normal !important; font-size: 2.25rem !important; }
  .zlph-art { width: 100%; min-width: 0; }
}
@media (max-width: 760px) {
  .zlp-hero { padding: 36px 20px; }
  .zlp-hero h1 { font-size: 2rem !important; }
  .zlph-art [style*="repeat(3, 1fr)"] { grid-template-columns: repeat(2, 1fr) !important; }
  .zlph-plans { flex-wrap: wrap; justify-content: center; }
  /* Anonymisation band: drop the decorative side dot-columns and let the
     centred label wrap, so the nowrap legend can't force horizontal overflow. */
  .zlp-hero [data-delay="420"] > div { justify-content: center !important; gap: 0 !important; }
  .zlp-hero [data-delay="420"] > div > span:first-child,
  .zlp-hero [data-delay="420"] > div > span:last-child { display: none !important; }
  .zlp-hero [data-delay="420"] [style*="white-space: nowrap"] { white-space: normal !important; text-align: center; }
  /* Any remaining nowrap captions in the art shouldn't force overflow either. */
  .zlph-art [style*="white-space: nowrap"] { white-space: normal !important; }
}
@media (prefers-reduced-motion: reduce) {
  .zlp-hero [data-anim], .zlp-hero [data-bar] { opacity: 1 !important; transform: none !important; }
  .zlp-hero [data-rise], .zlp-hero [data-live], .zlp-hero [data-wordroll] { animation: none !important; }
  .zlp-hero [data-rise] { opacity: .7 !important; transform: none !important; }
}

/* ============================================================
   For Employer page (Claude Design) — scoped + self-contained.
   Tokens scoped to .zlp-emp so nothing leaks; header/footer come from the
   canonical shell; keyframes namespaced (zlpe*) to avoid collisions.
   ============================================================ */
.zlp-emp {
  --zeno-navy: #002255; --zeno-navy-deep: #061936; --zeno-blue: #0044aa;
  --zeno-gold: #b8964f; --zeno-gold-dark: #cbaa6a; --zeno-ink: #14213d; --zeno-muted: #647086;
  --zeno-paper: #f7f6f3; --zeno-line: #e4e6ea;
  --font-display: 'Cormorant Garamond','Cormorant',Georgia,'Times New Roman',serif;
  --font-sans: -apple-system,BlinkMacSystemFont,'Segoe UI','Helvetica Neue',Helvetica,Arial,sans-serif;
}
.zlp-emp a { color: #0044aa; text-decoration: none; }
.zlp-emp a:hover { color: #002255; }
.zlp-emp a:focus-visible { outline: 2px solid var(--zeno-gold-dark); outline-offset: 3px; border-radius: 8px; }
@keyframes zlpeLive { 0%,100%{opacity:.3} 50%{opacity:1} }
@keyframes zlpeFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-4px)} }
@media (max-width: 1180px) {
  .zlp-emp-hero { grid-template-columns: minmax(0, 1fr) !important; gap: 36px !important; padding: 32px 32px 40px !important; }
  .zlp-emp-hero h1 { font-size: 2.125rem !important; white-space: normal !important; }
  .zlp-emp section > div { padding-left: 32px !important; padding-right: 32px !important; }
}
@media (max-width: 900px) {
  .zlp-t blockquote { font-size: 1.3125rem !important; }
  .zlp-emp [style*="repeat(3, 1fr)"] { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important; }
  .zlp-emp [style*="repeat(4, 1fr)"] { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important; }
  .zlp-emp [style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: minmax(0, 1fr) !important; }
  .zlp-emp [style*="minmax(0, 400px)"] { grid-template-columns: minmax(0, 1fr) !important; gap: 34px !important; }
  .zlp-emp [style*="repeat(4, 1fr)"] > div { border-right: none !important; padding-left: 0 !important; padding-top: 8px !important; }
}
@media (max-width: 640px) {
  .zlp-emp [style*="repeat(3, 1fr)"], .zlp-emp [style*="repeat(4, 1fr)"] { grid-template-columns: minmax(0, 1fr) !important; }
  .zlp-emp h1 { font-size: 2rem !important; }
  .zlp-emp h2 { font-size: 1.75rem !important; }
  .zlp-emp section > div { padding-left: 20px !important; padding-right: 20px !important; }
}
@media (prefers-reduced-motion: reduce) {
  .zlp-emp [data-live], .zlp-emp [data-float] { animation: none !important; }
  .zlp-emp [data-anim], .zlp-emp [data-draw] { opacity: 1 !important; transform: none !important; }
}

/* For Employee page — extends the shared .zlp-emp system with its class-based hooks. */
@media (max-width: 900px) {
  .zlp-emp .zlp-split, .zlp-emp .zlp-privacy-strip, .zlp-emp .zlp-built { grid-template-columns: minmax(0, 1fr) !important; gap: 34px !important; }
}
@media (max-width: 640px) {
  .zlp-emp .zlp-artefact { width: min(62vw, 240px) !important; }
}

/* For Platform page — extends the shared .zlp-emp system with its class hooks + product-tour chrome. */
.zlp-emp .zlp-tab-short { display: none; }
@keyframes zlpeRise { 0% { transform: translateY(0); opacity: 0; } 18% { opacity: 1; } 82% { opacity: 1; } 100% { transform: translateY(-128px); opacity: 0; } }
@media (max-width: 1180px) {
  .zlp-emp .zlp-refine { grid-template-columns: repeat(3, 1fr) !important; }
  .zlp-emp .zlp-timeline { grid-template-columns: repeat(3, 1fr) !important; row-gap: 34px; }
  .zlp-emp .zlp-tl-rail { display: none !important; }
  .zlp-emp .zlp-views { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important; align-items: start !important; }
  .zlp-emp .zlp-views > div:first-child { grid-row: auto !important; }
}
@media (max-width: 900px) {
  .zlp-emp .zlp-tabs button { white-space: nowrap; padding: 7px 10px !important; }
  .zlp-emp .zlp-tab-long { display: none; }
  .zlp-emp .zlp-tab-short { display: inline; }
  .zlp-emp .zlp-lights { display: none !important; }
  .zlp-emp .zlp-chrome { justify-content: space-between; }
  .zlp-emp .zlp-specs { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important; }
  .zlp-emp .zlp-privacy { grid-template-columns: minmax(0, 1fr) !important; gap: 26px !important; }
  .zlp-emp .zlp-wall { flex-direction: row !important; flex-wrap: wrap; justify-content: center; gap: 14px 18px; padding: 22px 0 !important; }
  .zlp-emp .zlp-wall > span:nth-child(1) { top: 0 !important; bottom: auto !important; left: 0 !important; right: 0; border-left: none !important; border-top: 1px dashed rgba(184,150,79,0.6); }
  .zlp-emp .zlp-wall > span:nth-child(2) { top: auto !important; bottom: 0 !important; left: 0 !important; right: 0; border-left: none !important; border-top: 1px dashed rgba(184,150,79,0.6); }
}
@media (max-width: 640px) {
  .zlp-emp .zlp-livebadge { display: none !important; }
  .zlp-emp .zlp-chrome { justify-content: center !important; }
  .zlp-emp .zlp-tabs { max-width: 100%; overflow-x: auto; }
  .zlp-emp .zlp-refine, .zlp-emp .zlp-timeline, .zlp-emp .zlp-views, .zlp-emp .zlp-commit { grid-template-columns: minmax(0, 1fr) !important; }
}

/* For Methodology page — .zlp-met scope. Hero-art animation classes (.zlp-halo/.zlp-node/…)
   are already defined globally above; here we add sizing, staged reveals + responsive. */
.zlp-met .zlp-hero-art { margin: 0 auto; width: 100%; max-width: 520px; }
.zlp-met .zlp-hero-art svg { display: block; width: 100%; height: auto; overflow: visible; filter: drop-shadow(0 26px 54px rgba(6, 25, 54, .16)); }
@keyframes zlpMetIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.zlp-met [data-anim="in"] { animation: zlpMetIn 900ms cubic-bezier(0.16,1,0.3,1) both; }
.zlp-met [data-anim="in"][data-delay="80"] { animation-delay: 80ms; }
.zlp-met [data-anim="in"][data-delay="120"] { animation-delay: 120ms; }
.zlp-met [data-anim="in"][data-delay="200"] { animation-delay: 200ms; }
@media (max-width: 1180px) {
  .zlp-met .zlp-met-hero { grid-template-columns: minmax(0, 1fr) !important; gap: 40px !important; }
  .zlp-met .zlp-met-hero h1 { font-size: 2.5rem !important; }
  .zlp-met .zlp-steps { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; row-gap: 28px; }
  .zlp-met .zlp-steps-rail { display: none !important; }
  .zlp-met .zlp-official { grid-template-columns: minmax(0, 1fr) !important; }
  .zlp-met .zlp-detail { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .zlp-met .zlp-pillars { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; row-gap: 48px !important; }
  .zlp-met .zlp-pillars > div:nth-child(2n+1) { border-left: 0 !important; padding-left: 0 !important; }
  .zlp-met .zlp-wheel-grid { grid-template-columns: minmax(0, 1fr) !important; }
}
@media (max-width: 1024px) {
  .zlp-met .zlp-legends { grid-template-columns: minmax(0, 240px) minmax(0, 240px) !important; row-gap: 32px; align-items: start !important; }
  .zlp-met .zlp-legends > span:last-child { grid-column: 1 / -1; text-align: left !important; }
}
@media (max-width: 900px) {
  .zlp-met .zlp-legends { grid-template-columns: minmax(0, 1fr) !important; align-items: start !important; }
  .zlp-met .zlp-legends > span:last-child { text-align: left !important; }
  .zlp-met .zlp-loop { grid-template-columns: minmax(0, 1fr) !important; }
  .zlp-met .zlp-t-quote { font-size: 1.5rem !important; }
}
@media (max-width: 640px) {
  .zlp-met .zlp-steps, .zlp-met .zlp-detail, .zlp-met .zlp-pillars, .zlp-met .zlp-outputs { grid-template-columns: minmax(0, 1fr) !important; }
  .zlp-met .zlp-pillars > div { border-left: 0 !important; padding-left: 0 !important; padding-right: 0 !important; }
  .zlp-met h1 { font-size: 2rem !important; }
  .zlp-met h2 { font-size: 1.75rem !important; }
  .zlp-met section > div { padding-left: 20px !important; padding-right: 20px !important; }
}
@media (prefers-reduced-motion: reduce) {
  .zlp-met [data-anim] { animation: none !important; opacity: 1 !important; transform: none !important; }
}

/* For Resources page — extends the shared .zlp-emp system with its grid hooks. */
@media (max-width: 1180px) {
  .zlp-emp .zlp-start { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .zlp-emp .zlp-library { grid-template-columns: minmax(0, 1fr) !important; }
}
@media (max-width: 900px) {
  .zlp-emp .zlp-hero-art { grid-template-columns: minmax(0, 1fr) !important; }
  .zlp-emp .zlp-talks { grid-template-columns: minmax(0, 1fr) !important; gap: 34px !important; }
  .zlp-emp .zlp-route { grid-template-columns: minmax(0, 1fr) !important; gap: 6px !important; }
  .zlp-emp .zlp-route > span:last-child { justify-self: start !important; }
}
@media (max-width: 640px) {
  .zlp-emp .zlp-start { grid-template-columns: minmax(0, 1fr) !important; }
}
