/* ==========================================================
   TRUSTED PATH · LANDING PAGE STYLES
   ========================================================== */

/* =====================================================
   DESIGN TOKENS
   ===================================================== */
:root {
  /* Neutrals */
  --ink: #0E1116;
  --ink-2: #1B2028;
  --ink-3: #353A44;
  --muted: #6B7280;
  --hairline: #E7E3D8;
  --paper: #FAF8F3;
  --paper-2: #F2EEE3;
  --paper-3: #EAE5D4;

  /* Brand accents (from brand palette) */
  --sky: #5BC0EB;
  --sun: #FDE74C;
  --grass: #9BC53D;
  --brick: #E55934;
  --flame: #FA7921;

  /* Value colours (from values triangle) */
  --empathy: #7B3FD9;
  --transparency: #FA7921;
  --trust: #3A9FE8;

  /* Typography */
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body: "Instrument Sans", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  /* Layout */
  --container: 1240px;
  --radius-s: 6px;
  --radius-m: 14px;
  --radius-l: 22px;
  --shadow-soft: 0 1px 2px rgba(14,17,22,0.04), 0 8px 24px rgba(14,17,22,0.06);
  --shadow-lift: 0 2px 4px rgba(14,17,22,0.06), 0 24px 48px -12px rgba(14,17,22,0.18);
}

/* =====================================================
   RESET + BASE
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 450; letter-spacing: -0.02em; margin: 0; }
p { margin: 0; }

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

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  left: 12px;
  top: -64px;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 8px;
  font-size: 14px;
  z-index: 100;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; outline: 2px solid var(--flame); outline-offset: 2px; }

/* =====================================================
   UTILITIES
   ===================================================== */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 18px; height: 1px;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn--primary { background: var(--ink); color: var(--paper); }
.btn--primary:hover { background: var(--flame); color: var(--ink); }
.btn--ghost { border: 1px solid var(--ink); color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--light { background: var(--paper); color: var(--ink); }
.btn--light:hover { background: var(--flame); }
.btn--outline-light { border: 1px solid rgba(250,248,243,0.24); color: var(--paper); }
.btn--outline-light:hover { border-color: var(--flame); color: var(--flame); }
.btn svg { width: 14px; height: 14px; transition: transform .2s ease; }
.btn:hover svg { transform: translateX(3px); }

/* =====================================================
   NAV
   ===================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250,248,243,0.82);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}
.nav.is-scrolled { border-bottom-color: var(--hairline); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}
.nav__brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.nav__brand img { width: 30px; height: 30px; }
.nav__links { display: flex; gap: 28px; }
.nav__links a {
  font-size: 14px;
  color: var(--ink-3);
  transition: color .15s ease;
  position: relative;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -4px;
  height: 1px;
  background: var(--flame);
  transition: right .25s ease;
}
.nav__links a:hover::after { right: 0; }
.nav__cta { display: flex; gap: 10px; align-items: center; }
.nav__burger {
  display: none;
  width: 44px; height: 44px;
  padding: 0;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}
.nav__burger svg { width: 20px; height: 20px; }

.nav__mobile {
  display: none;
  padding: 16px 32px 24px;
  border-top: 1px solid var(--hairline);
  flex-direction: column;
  gap: 14px;
  background: var(--paper);
}
.nav__mobile[hidden] { display: none !important; }
.nav__mobile a {
  font-size: 16px;
  color: var(--ink);
  padding: 8px 0;
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  padding: 88px 0 120px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 360px at 12% 12%, rgba(91,192,235,0.14), transparent 60%),
    radial-gradient(520px 320px at 90% 30%, rgba(250,121,33,0.10), transparent 60%),
    radial-gradient(600px 280px at 50% 100%, rgba(155,197,61,0.10), transparent 60%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero__eyebrow { margin-bottom: 28px; }
.hero__headline {
  font-size: clamp(46px, 6.4vw, 84px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.hero__headline em {
  font-style: italic;
  font-variation-settings: "SOFT" 100;
  background: linear-gradient(100deg, var(--flame) 0%, var(--brick) 50%, var(--empathy) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__sub {
  margin-top: 28px;
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-3);
  max-width: 540px;
}
.hero__ctas {
  margin-top: 40px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero__meta {
  margin-top: 44px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}
.hero__meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero__meta span::before {
  content: "";
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--grass);
}

/* Hero visual */
.hero__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 520px;
  margin-left: auto;
  width: 100%;
}
.hero__shield {
  position: absolute;
  inset: 18%;
  z-index: 3;
  animation: float 7s ease-in-out infinite;
  filter: drop-shadow(0 30px 40px rgba(14,17,22,0.18));
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(1.5deg); }
}
.hero__orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed var(--hairline);
  animation: spin 40s linear infinite;
}
.hero__orbit--2 { inset: 12%; animation-duration: 30s; animation-direction: reverse; }
.hero__orbit--3 { inset: 6%; border-style: solid; border-color: rgba(14,17,22,0.05); }
@keyframes spin { to { transform: rotate(360deg); } }

.hero__tag {
  position: absolute;
  display: flex; align-items: center; gap: 8px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  padding: 10px 14px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow-soft);
  animation: float 8s ease-in-out infinite;
}
.hero__tag .dot { width: 8px; height: 8px; border-radius: 999px; }
.hero__tag--1 { top: 4%; left: -4%; animation-delay: -1s; }
.hero__tag--1 .dot { background: var(--sky); }
.hero__tag--2 { top: 42%; right: -10%; animation-delay: -3s; }
.hero__tag--2 .dot { background: var(--flame); }
.hero__tag--3 { bottom: 2%; left: 10%; animation-delay: -5s; }
.hero__tag--3 .dot { background: var(--grass); }

/* =====================================================
   FRAMEWORK STRIP
   ===================================================== */
.strip {
  padding: 28px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: var(--paper-2);
}
.strip__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.strip__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.strip__items {
  display: flex;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--ink-3);
}
.strip__items span { opacity: 0.82; transition: color .2s ease, opacity .2s ease; }
.strip__items span:hover { opacity: 1; color: var(--ink); }

/* =====================================================
   SECTION
   ===================================================== */
.section { padding: 120px 0; }
.section--tight { padding-top: 0; }
.section__head { max-width: 780px; margin-bottom: 72px; }
.section__kicker { margin-bottom: 20px; }
.section__title {
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -0.025em;
}
.section__lede {
  margin-top: 22px;
  font-size: 20px;
  line-height: 1.5;
  color: var(--ink-3);
}

/* =====================================================
   SHIFT NARRATIVE
   ===================================================== */
.shift {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-l);
  padding: 80px;
  position: relative;
  overflow: hidden;
}
.shift::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(500px 300px at 100% 0%, rgba(250,121,33,0.18), transparent 60%),
    radial-gradient(400px 260px at 0% 100%, rgba(91,192,235,0.14), transparent 60%);
  pointer-events: none;
}
.shift__eyebrow { color: var(--flame); margin-bottom: 24px; }
.shift__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-top: 56px;
}
.shift__col { position: relative; padding-top: 24px; border-top: 1px solid rgba(250,248,243,0.18); }
.shift__col h3 {
  font-size: 28px;
  color: var(--paper);
  margin-bottom: 14px;
}
.shift__col p { color: rgba(250,248,243,0.72); font-size: 15px; line-height: 1.6; }
.shift__num {
  position: absolute;
  top: -10px;
  left: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: 0.08em;
}
.shift__title {
  font-size: clamp(36px, 4.5vw, 52px);
  color: var(--paper);
  max-width: 780px;
}
.shift__title em {
  font-style: italic;
  color: var(--flame);
  font-variation-settings: "SOFT" 100;
}

/* =====================================================
   PLATFORM PILLARS
   ===================================================== */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pillar {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-l);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); border-color: transparent; }
.pillar__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.pillar__title {
  font-size: 34px;
  line-height: 1;
  margin-bottom: 16px;
}
.pillar__desc { color: var(--ink-3); font-size: 15px; margin-bottom: 28px; line-height: 1.55; }
.pillar__list { display: flex; flex-direction: column; gap: 10px; font-size: 14px; color: var(--ink-2); }
.pillar__list li { display: flex; gap: 10px; align-items: flex-start; }
.pillar__list li::before {
  content: ""; flex: none;
  width: 14px; height: 14px;
  border-radius: 4px;
  background: var(--accent, var(--flame));
  margin-top: 3px;
}
.pillar__bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent, var(--flame));
}
.pillar--security { --accent: var(--sky); }
.pillar--privacy { --accent: var(--empathy); }
.pillar--resilience { --accent: var(--flame); }

/* =====================================================
   MISSION & VISION
   ===================================================== */
.mv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-l);
  overflow: hidden;
  background: var(--hairline);
}
.mv__card {
  background: var(--paper);
  padding: 64px 56px;
  position: relative;
  overflow: hidden;
}
.mv__card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.mv__card--mission::before {
  background: radial-gradient(420px 260px at 0% 0%, rgba(91,192,235,0.14), transparent 60%);
}
.mv__card--vision::before {
  background: radial-gradient(420px 260px at 100% 100%, rgba(250,121,33,0.14), transparent 60%);
}
.mv__icon {
  position: relative;
  width: 56px;
  height: 56px;
  border: 1px solid var(--hairline);
  border-radius: 14px;
  background: var(--paper-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}
.mv__icon svg { width: 30px; height: 30px; }
.mv__card--mission .mv__icon { color: var(--sky); }
.mv__card--vision .mv__icon { color: var(--flame); }

.mv__label {
  position: relative;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.mv__statement {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-weight: 400;
}
.mv__statement em {
  font-style: italic;
  font-variation-settings: "SOFT" 100;
  color: var(--flame);
}
.mv__card--mission .mv__statement em { color: var(--sky); }
.mv__body {
  position: relative;
  margin-top: 22px;
  font-size: 15.5px;
  color: var(--ink-3);
  line-height: 1.6;
  max-width: 520px;
}

/* =====================================================
   FRAMEWORK (interactive levels)
   ===================================================== */
.framework { background: var(--paper-2); border-radius: var(--radius-l); padding: 72px; }
.framework__head { margin-bottom: 16px; }
.levels {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 56px;
  margin-top: 48px;
}
.levels__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-left: 1px solid var(--hairline);
  padding-left: 0;
}
.level-btn {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 12px;
  padding: 14px 18px 14px 22px;
  text-align: left;
  color: var(--ink-3);
  border-left: 2px solid transparent;
  margin-left: -1px;
  transition: color .15s ease, border-color .15s ease, background .15s ease;
  border-radius: 0 8px 8px 0;
}
.level-btn:hover { color: var(--ink); background: rgba(14,17,22,0.03); }
.level-btn.is-active {
  color: var(--ink);
  border-left-color: var(--flame);
  background: rgba(250,121,33,0.06);
}
.level-btn__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
  padding: 4px 6px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  text-align: center;
}
.level-btn.is-active .level-btn__num { border-color: var(--flame); color: var(--flame); }
.level-btn__name { font-family: var(--font-display); font-size: 18px; font-weight: 500; letter-spacing: -0.01em; }

.level-panel {
  background: var(--paper);
  border-radius: var(--radius-m);
  padding: 44px;
  border: 1px solid var(--hairline);
  min-height: 360px;
}
.level-panel__meta {
  display: flex; gap: 20px; align-items: center;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--hairline);
}
.level-panel__stage {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.1em;
}
.level-panel__track {
  display: flex;
  gap: 4px;
  flex: 1;
}
.level-panel__track span {
  flex: 1;
  height: 6px;
  background: var(--paper-3);
  border-radius: 3px;
}
.level-panel__track span.on { background: var(--flame); }
.level-panel h3 {
  font-size: 38px;
  line-height: 1.05;
  margin-bottom: 16px;
}
.level-panel p { color: var(--ink-3); font-size: 17px; line-height: 1.55; margin-bottom: 28px; max-width: 620px; }
.level-panel__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.level-panel__col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
  font-weight: 500;
}
.level-panel__col ul { display: flex; flex-direction: column; gap: 10px; font-size: 14.5px; color: var(--ink-2); }
.level-panel__col li { display: flex; gap: 10px; align-items: flex-start; line-height: 1.5; }
.level-panel__col li::before {
  content: ""; flex: none;
  margin-top: 8px;
  width: 5px; height: 5px;
  background: var(--ink-3);
  border-radius: 999px;
}

/* =====================================================
   BUILT FOR
   ===================================================== */
.roles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.role {
  padding: 32px 28px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-m);
  transition: transform .2s ease, box-shadow .2s ease;
}
.role:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.role__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.role__title { font-family: var(--font-display); font-size: 24px; letter-spacing: -0.015em; line-height: 1.1; margin-bottom: 14px; }
.role__desc { font-size: 14px; color: var(--ink-3); line-height: 1.55; }

/* =====================================================
   VALUES
   ===================================================== */
.values-section {
  background: linear-gradient(180deg, var(--paper-2) 0%, var(--paper) 100%);
}

.values-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.values__figure {
  margin: 0;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-l);
  padding: 32px 24px 20px;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.values__figure img {
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}
.values__figure figcaption {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-top: 8px;
}

.values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-l);
  overflow: hidden;
  background: var(--hairline);
}
.value {
  padding: 36px 40px;
  background: var(--paper);
  position: relative;
  transition: background .25s ease;
}
.value:hover { background: var(--paper-2); }
.value__num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--val, var(--ink));
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.value__title {
  font-size: 34px;
  line-height: 1;
  color: var(--val, var(--ink));
  margin-bottom: 14px;
  font-style: italic;
  font-variation-settings: "SOFT" 100;
}
.value__body { color: var(--ink-2); font-size: 15px; line-height: 1.55; }
.value--empathy { --val: var(--empathy); }
.value--transparency { --val: var(--transparency); }
.value--trust { --val: var(--trust); }
.value__bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--val);
}

/* =====================================================
   DIFFERENTIATION
   ===================================================== */
.compare {
  border: 1px solid var(--hairline);
  border-radius: var(--radius-l);
  overflow: hidden;
  background: var(--paper);
}
.compare__head,
.compare__row {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
}
.compare__head {
  background: var(--ink);
  color: var(--paper);
}
.compare__head > div {
  padding: 22px 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.compare__head > div:first-child { color: rgba(250,248,243,0.55); }
.compare__head .pill {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid rgba(250,248,243,0.2);
  border-radius: 4px;
  font-size: 11px;
}
.compare__head .pill--us {
  background: var(--flame);
  color: var(--ink);
  border-color: var(--flame);
}
.compare__row { border-top: 1px solid var(--hairline); }
.compare__row > div { padding: 22px 24px; font-size: 14.5px; color: var(--ink-2); line-height: 1.5; }
.compare__row > div:first-child { font-family: var(--font-display); font-size: 18px; color: var(--ink); font-weight: 500; letter-spacing: -0.01em; }
.compare__row > div.us { background: rgba(250,121,33,0.07); color: var(--ink); font-weight: 500; }
.compare__row > div .tick { color: var(--grass); font-weight: 600; margin-right: 6px; }
.compare__row > div .dash { color: var(--brick); font-weight: 600; margin-right: 6px; }

/* =====================================================
   CTA
   ===================================================== */
.cta-section {
  padding: 0 0 120px;
}
.cta {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-l);
  padding: 96px;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 400px at 0% 0%, rgba(91,192,235,0.18), transparent 60%),
    radial-gradient(500px 300px at 100% 100%, rgba(250,121,33,0.18), transparent 60%);
  pointer-events: none;
}
.cta__eyebrow { color: var(--flame); margin-bottom: 24px; }
.cta__inner { position: relative; display: grid; grid-template-columns: 1.3fr 1fr; gap: 64px; align-items: center; }
.cta__title {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.02;
  color: var(--paper);
  letter-spacing: -0.03em;
}
.cta__title em {
  font-style: italic;
  color: var(--flame);
  font-variation-settings: "SOFT" 100;
}
.cta__sub {
  margin-top: 22px;
  font-size: 18px;
  color: rgba(250,248,243,0.7);
  max-width: 520px;
  line-height: 1.55;
}
.cta__ctas { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }
.cta__right {
  background: rgba(250,248,243,0.04);
  border: 1px solid rgba(250,248,243,0.12);
  border-radius: var(--radius-m);
  padding: 32px;
}
.cta__right h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,248,243,0.6);
  margin-bottom: 16px;
  font-weight: 500;
}
.cta__list { display: flex; flex-direction: column; gap: 14px; }
.cta__list li { display: flex; gap: 12px; align-items: flex-start; color: rgba(250,248,243,0.82); font-size: 14.5px; line-height: 1.5; }
.cta__list li::before {
  content: ""; flex: none;
  margin-top: 7px;
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--flame);
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  border-top: 1px solid var(--hairline);
  padding: 48px 0 32px;
  background: var(--paper);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer__brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; font-family: var(--font-display); font-size: 20px; font-weight: 500; }
.footer__brand img { width: 28px; height: 28px; }
.footer__tag { font-size: 13.5px; color: var(--muted); max-width: 320px; line-height: 1.55; }
.footer h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
  font-weight: 500;
}
.footer ul { display: flex; flex-direction: column; gap: 10px; }
.footer ul a { font-size: 14px; color: var(--ink-2); transition: color .15s ease; }
.footer ul a:hover { color: var(--flame); }
.footer__bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  gap: 12px;
  flex-wrap: wrap;
}

/* =====================================================
   REVEAL ANIMATION
   ===================================================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .values-layout { grid-template-columns: 1fr; gap: 40px; }
  .values__figure { max-width: 520px; margin: 0 auto; }
}

@media (max-width: 960px) {
  .container { padding: 0 24px; }
  .nav__links { display: none; }
  .nav__cta .btn--primary { display: none; }
  .nav__burger { display: inline-flex; }
  .nav__mobile:not([hidden]) { display: flex; }
  .hero { padding: 56px 0 72px; }
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { max-width: 380px; margin: 0 auto; }
  .hero__meta { gap: 16px; }
  .section { padding: 80px 0; }
  .section__head { margin-bottom: 48px; }
  .shift, .framework, .cta { padding: 48px 32px; }
  .shift__grid, .pillars, .roles { grid-template-columns: 1fr; }
  .mv { grid-template-columns: 1fr; }
  .mv__card { padding: 48px 36px; }
  .levels { grid-template-columns: 1fr; gap: 24px; }
  .levels__list { flex-direction: row; overflow-x: auto; border-left: 0; border-bottom: 1px solid var(--hairline); padding-bottom: 8px; gap: 4px; }
  .level-btn { flex: none; border-left: 0; border-bottom: 2px solid transparent; border-radius: 0; padding: 10px 14px; }
  .level-btn.is-active { border-left-color: transparent; border-bottom-color: var(--flame); }
  .level-panel { padding: 32px 24px; min-height: 0; }
  .level-panel__cols { grid-template-columns: 1fr; }
  .compare__head, .compare__row { grid-template-columns: 1fr; }
  .compare__head > div:not(:first-child), .compare__row > div:not(:first-child) { border-top: 1px solid var(--hairline); }
  .compare__head > div { padding: 14px 20px; }
  .cta { padding: 56px 32px; }
  .cta__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 8px; }
  .roles { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer__inner { grid-template-columns: 1fr; }
  .roles { grid-template-columns: 1fr; }
  .strip__items { gap: 18px; font-size: 16px; }
  .shift { padding: 40px 24px; }
  .framework { padding: 32px 20px; }
  .mv__card { padding: 40px 28px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  html { scroll-behavior: auto; }
}
