/* ═══════════════════════════════════════════════════════════════════
   CIRVERIS PREVIEW HOMEPAGE — Brief v1.1
   Named-product architecture · Cinematic scroll · Interactive tools
   ═══════════════════════════════════════════════════════════════════ */

:root {
  /* Canonical light-mode palette (locked to brief §3.1) */
  --white: #FFFFFF;
  --ivory: #F5F5F0;
  --ink: #070F14;
  --ink-70: rgba(7, 15, 20, 0.70);
  --ink-50: rgba(7, 15, 20, 0.50);
  --ink-30: rgba(7, 15, 20, 0.30);
  --ink-10: rgba(7, 15, 20, 0.10);
  --ink-05: rgba(7, 15, 20, 0.05);
  --mint: #1FA37A;
  --mint-glow: rgba(31, 163, 122, 0.14);
  --mint-glow-soft: rgba(31, 163, 122, 0.06);
  --success: #027A48;
  --success-bg: #ECFDF3;
  --success-br: #ABEFC6;
  --warn: #B54708;
  --warn-bg: #FFFAEB;
  --warn-br: #FEDF89;

  --sans: "Geist", -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", sans-serif;
  --mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --radius: 16px;
  --shadow-soft: 0 24px 60px -30px rgba(7, 15, 20, 0.14);
  --shadow-lift: 0 32px 80px -30px rgba(7, 15, 20, 0.24);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html, body { overflow-x: hidden; max-width: 100%; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--white);
  font-feature-settings: "ss01", "ss03", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; }
img, svg { display: block; max-width: 100%; }

/* ═════════ RADIAL BACKGROUND GLOW ═════════ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(135% 125% at 100% 0%,
      rgba(31, 163, 122, 0.16) 0%,
      rgba(31, 163, 122, 0.10) 15%,
      rgba(31, 163, 122, 0.045) 33%,
      rgba(31, 163, 122, 0.014) 52%,
      transparent 70%);
  pointer-events: none;
  z-index: 0;
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(120% 115% at 0% 100%,
      rgba(31, 163, 122, 0.075) 0%,
      rgba(31, 163, 122, 0.032) 26%,
      rgba(31, 163, 122, 0.012) 46%,
      transparent 64%);
  pointer-events: none;
  z-index: 0;
}

/* ═════════ CONTAINER ═════════ */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

/* ═════════ TYPOGRAPHY ═════════ */
/* Unified eyebrow pill — same treatment as .hero-tag, used across all sections */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 12px;
  background: rgba(31, 163, 122, 0.08);
  border: 1px solid rgba(31, 163, 122, 0.20);
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  text-transform: none;
  color: var(--ink);
}
.eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 8px var(--mint);
  animation: toastPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

/* Card-internal small label — for use inside solutions/CTA cards */
.card-label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 16px;
}

/* Quieter H2 variant — for softer transitional sections (Zevero-style) */
.section-h2-quiet {
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.035em;
  font-weight: 500;
  max-width: 780px;
  margin: 0 auto 20px;
}

/* ═════════ PILLARS SECTION (Zevero "Software / Humans") ═════════ */
.pillars-section { padding: 96px 0; }
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 100%;
  margin: 0;
}
.pillar {
  background: var(--white);
  border: 1px solid var(--ink-10);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow-soft);
  transition: all 400ms var(--ease);
}
.pillar:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.pillar-eyebrow {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--mint);
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}
.pillar p { font-size: 16px; line-height: 1.6; margin: 0; }

/* ═════════ OUTCOMES LIST (Zevero "Built for every part") ═════════ */
.outcomes-section { padding: 96px 0; background: var(--ivory); border-top: 1px solid var(--ink-10); border-bottom: 1px solid var(--ink-10); }
.outcomes-list {
  max-width: 1080px;
  margin: 0;
  border-top: 1px solid var(--ink-10);
}
.outcome-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--ink-10);
  align-items: center;
  transition: background 300ms var(--ease);
}
.outcome-row:hover { background: rgba(31, 163, 122, 0.03); }
.outcome-num {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--mint);
  letter-spacing: 0.08em;
  font-weight: 500;
}
.outcome-body h3 {
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.25;
  margin: 0;
  letter-spacing: -0.03em;
  font-weight: 500;
}
.outcome-body h3 em { font-style: italic; color: var(--mint); font-weight: 400; }

/* ═════════ METRICS WALL (Zevero-style big numbers) ═════════ */
.metrics-wall-section { padding: 72px 0; }
.metrics-wall-header { text-align: left; margin-bottom: 40px; max-width: 560px; }
.metrics-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink-10);
  border-bottom: 1px solid var(--ink-10);
  max-width: 100%;
}
.mw-cell {
  padding: 40px 24px;
  text-align: left;
  border-right: 1px solid var(--ink-10);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mw-cell:last-child { border-right: 0; }
.mw-value {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500;
  color: var(--mint);
  letter-spacing: -0.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  display: flex;
  align-items: baseline;
}
.mw-plus {
  font-size: 0.6em;
  color: var(--mint);
  margin-left: 2px;
}
.mw-label {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-70);
  max-width: 200px;
}

/* ═════════ PROCESS SECTION (Zevero 3-step) ═════════ */
.process-section { padding: clamp(88px, 7vw, 104px) 0 96px; background: var(--ivory); border-top: 1px solid var(--ink-10); border-bottom: 1px solid var(--ink-10); }
.process-section .section-header .eyebrow { margin-bottom: clamp(40px, 4vw, 52px); }
.process-list {
  max-width: 1080px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.process-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  padding: 32px 36px;
  background: var(--white);
  border: 1px solid var(--ink-10);
  border-radius: var(--radius);
  transition: all 300ms var(--ease);
}
.process-row:hover { border-color: var(--mint); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.process-step {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--mint);
  letter-spacing: 0.08em;
  font-weight: 500;
  text-transform: uppercase;
  padding-top: 4px;
}
.process-body h3 {
  font-size: 22px;
  line-height: 1.25;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  font-weight: 500;
}
.process-body p { font-size: 15px; line-height: 1.6; margin: 0; color: var(--ink-70); }

/* ═════════ ONE DATASET ═════════ */
.one-dataset-section { padding: 96px 0; }
.dataset-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 100%;
  margin: 0;
}
.dataset-item {
  padding: 8px 4px;
}
.dataset-title {
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.dataset-item p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-70);
  margin: 0;
}

/* ═════════ TESTIMONIALS ═════════ */
.testimonials-section { padding: 88px 0; background: var(--ivory); border-top: 1px solid var(--ink-10); border-bottom: 1px solid var(--ink-10); }
.testimonials-section .section-header { margin-bottom: 40px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 100%;
  margin: 0;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--ink-10);
  border-radius: var(--radius);
  padding: 32px 32px 28px;
  box-shadow: var(--shadow-soft);
  margin: 0;
  transition: all 400ms var(--ease);
  position: relative;
}
.testimonial:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.testimonial::before {
  content: '“';
  position: absolute;
  top: 8px;
  left: 20px;
  font-size: 60px;
  color: var(--mint);
  line-height: 1;
  opacity: 0.4;
  font-family: Georgia, serif;
}
.testimonial p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 20px;
  font-weight: 400;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}
.testimonial cite {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 16px;
  border-top: 1px solid var(--ink-10);
}
.cite-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.cite-role {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-50);
  letter-spacing: 0.02em;
}

/* ═════════ TRUST SECTION ═════════ */
.trust-section { padding: 96px 0; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 100%;
  margin: 0;
}
.trust-item {
  padding: 32px 24px;
}
.trust-item h3 {
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--ink);
}
.trust-item p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-70);
  margin: 0;
}

/* Certification strip — subtle, monochrome */
.cert-strip {
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid var(--ink-10);
}
.cert-strip-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-50);
  margin-bottom: 24px;
  font-weight: 500;
}
.cert-strip-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cert-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid var(--ink-10);
  border-radius: 12px;
  transition: all 300ms var(--ease);
}
.cert-item:hover {
  border-color: var(--mint);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -12px rgba(31, 163, 122, 0.25);
}
.cert-mark {
  width: 32px;
  height: 32px;
  color: var(--mint);
  flex-shrink: 0;
}
.cert-mark svg { width: 100%; height: 100%; display: block; }
.cert-item--pending .cert-mark { color: var(--warn); }
.cert-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.cert-name {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.cert-role {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--ink-50);
  text-transform: uppercase;
  font-weight: 500;
}
.cert-item--pending .cert-role { color: var(--warn); }

h1, h2, h3, h4 { font-family: var(--sans); font-weight: 500; letter-spacing: -0.035em; }
h1 { font-size: clamp(46px, 6.8vw, 88px); font-weight: 500; line-height: 1.0; letter-spacing: -0.045em; }
h2 { font-size: clamp(34px, 4.2vw, 56px); line-height: 1.06; letter-spacing: -0.04em; font-weight: 500; }
h3 { font-size: clamp(20px, 2vw, 26px); line-height: 1.2; font-weight: 500; letter-spacing: -0.03em; }
h4 { font-size: 16px; line-height: 1.4; font-weight: 500; }
h1 em, h2 em, h3 em {
  font-family: var(--sans);
  font-style: italic;
  color: var(--mint);
  font-weight: 300;
  letter-spacing: -0.045em;
  font-feature-settings: "ss01", "ss03", "cv11";
}
p { font-size: 17px; line-height: 1.6; color: var(--ink-70); font-weight: 400; letter-spacing: -0.005em; }
.lede { font-size: 21px; line-height: 1.5; color: var(--ink-70); max-width: 640px; font-weight: 400; letter-spacing: -0.015em; }

/* ═════════ NAV ═════════ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--ink-10);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  max-width: 1240px;
  margin: 0 auto;
}
.nav-brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  line-height: 1;
  transition: opacity 200ms var(--ease);
}
.nav-brand:hover { opacity: 0.75; }
.nav-logo {
  height: 28px;
  width: auto;
  display: block;
}
.footer-brand .nav-logo { height: 32px; }
/* Nav links (list) */
.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
  list-style: none;
}
.nav-item { position: relative; }

/* Trigger buttons + plain links share same visual */
.nav-trigger,
.nav-link-plain {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-70);
  background: transparent;
  border: 0;
  border-radius: 100px;
  cursor: pointer;
  letter-spacing: -0.01em;
  transition: all 200ms var(--ease);
  line-height: 1;
}
.nav-trigger:hover,
.nav-link-plain:hover,
.nav-item--drop:hover .nav-trigger,
.nav-item:focus-within .nav-trigger {
  color: var(--ink);
  background: rgba(7, 15, 20, 0.04);
}
.nav-chev {
  transition: transform 200ms var(--ease);
  color: currentColor;
}
.nav-item--drop:hover .nav-chev,
.nav-item:focus-within .nav-chev {
  transform: rotate(180deg);
  color: var(--mint);
}

/* Dropdown panel */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 300px;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--ink-10);
  border-radius: 14px;
  box-shadow:
    0 20px 50px -20px rgba(7, 15, 20, 0.18),
    0 8px 20px -12px rgba(7, 15, 20, 0.10);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 220ms var(--ease);
  z-index: 120;
}
.nav-item--drop:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Small mint accent bar on dropdown top */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: 0; left: 12px;
  width: 24px; height: 2px;
  background: var(--mint);
  border-radius: 2px;
}

/* Bridge the gap between trigger and panel so hover stays open */
.nav-item--drop::after {
  content: '';
  position: absolute;
  top: 100%; left: 0; right: 0;
  height: 12px;
}

/* Dropdown items */
.drop-item {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  transition: background 180ms var(--ease);
  color: var(--ink);
}
.drop-item:hover {
  background: rgba(31, 163, 122, 0.06);
}
.drop-item-title {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin-bottom: 2px;
}
.drop-item:hover .drop-item-title { color: var(--mint); }
.drop-item-desc {
  font-size: 12px;
  color: var(--ink-50);
  line-height: 1.4;
  letter-spacing: -0.005em;
}
/* Nav right-side actions cluster */
.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-signin {
  padding: 10px 16px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  border-radius: 100px;
  transition: all 200ms var(--ease);
  display: inline-flex;
  align-items: center;
}
.nav-signin:hover { color: var(--mint); background: rgba(31, 163, 122, 0.06); }
.nav-cta {
  padding: 10px 20px;
  background: var(--ink);
  color: var(--white);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: all 200ms var(--ease);
}
.nav-cta:hover { background: var(--mint); transform: translateY(-1px); }
.nav-menu-toggle,
.mobile-nav-panel {
  display: none;
}

.preview-banner {
  background: var(--warn-bg);
  border-bottom: 1px solid var(--warn-br);
  padding: 10px 32px;
  text-align: center;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--warn);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ═════════ HERO ═════════ */
.hero {
  padding: 88px 0 112px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.home-hero-grid {
  column-gap: 60px;
  row-gap: 0;
}
.home-hero-grid .hero-text {
  grid-column: 1;
  grid-row: 1;
}
.home-hero-grid .hero-ctas {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
}
.hero-text .eyebrow { margin-bottom: 24px; opacity: 0; transform: translateY(12px); animation: fadeUp 600ms var(--ease) forwards 200ms; }

/* Hero tag — a pill above the H1 (Vercel/Linear/Cursor style) */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 12px;
  background: rgba(31, 163, 122, 0.08);
  border: 1px solid rgba(31, 163, 122, 0.20);
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 600ms var(--ease) forwards 200ms;
}
.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 8px var(--mint);
  animation: toastPulse 2s ease-in-out infinite;
}
.hero-text h1 { margin-bottom: 24px; opacity: 0; transform: translateY(16px); animation: fadeUp 800ms var(--ease) forwards 300ms; }
.hero-text .lede { margin-bottom: 40px; opacity: 0; transform: translateY(16px); animation: fadeUp 800ms var(--ease) forwards 500ms; }
.hero-ctas { display: flex; gap: 16px; opacity: 0; transform: translateY(16px); animation: fadeUp 800ms var(--ease) forwards 700ms; }
.hero-trust {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--ink-10);
  opacity: 0;
  animation: fade 800ms var(--ease) forwards 900ms;
}
.hero-trust .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-50);
  margin-bottom: 12px;
}
.trust-badges {
  display: flex; gap: 24px; flex-wrap: wrap; align-items: center;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-70);
  letter-spacing: 0.5px;
}
.trust-badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--mint);
}
.trust-badge.pending .dot { background: var(--warn); }

/* HERO VISUAL — floating product card */
.hero-visual {
  position: relative;
  perspective: 1200px;
}
.home-hero-grid .hero-visual {
  grid-column: 2;
  grid-row: 1 / span 2;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-lift);
  border: 1px solid var(--ink-10);
  position: relative;
  overflow: hidden;
  transform: rotateY(-6deg) rotateX(2deg);
  opacity: 0;
  animation: floatIn 1200ms var(--ease) forwards 500ms;
}
.product-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--mint) 0%, transparent 60%);
}
.product-card-header {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 16px; border-bottom: 1px solid var(--ink-10); margin-bottom: 16px;
}
.product-card-title {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--ink-50);
  text-transform: uppercase;
}
.pill-mint {
  display: inline-block;
  padding: 3px 10px;
  background: var(--success-bg);
  color: var(--success);
  border: 1px solid var(--success-br);
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.pill-warn {
  display: inline-block;
  padding: 3px 10px;
  background: var(--warn-bg);
  color: var(--warn);
  border: 1px solid var(--warn-br);
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.metric-block { padding: 12px 0; }
.metric-block .label {
  font-family: var(--mono); font-size: 10px; letter-spacing: 1px;
  text-transform: uppercase; color: var(--ink-50); margin-bottom: 4px;
}
.metric-block .value {
  font-size: 32px; font-weight: 800; color: var(--mint);
  letter-spacing: -0.5px; line-height: 1;
}
.metric-block .sub {
  font-size: 12px; color: var(--ink-50); margin-top: 4px;
}
.product-card-body {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}

/* ═════════ CTA BUTTONS ═════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: all 200ms var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--mint);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -10px rgba(31, 163, 122, 0.5);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink-30);
}
.btn-ghost:hover {
  border-color: var(--ink);
  background: var(--ink-05);
}
.btn-mint {
  background: var(--mint);
  color: var(--white);
}
.btn-mint:hover {
  background: var(--success);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -10px rgba(31, 163, 122, 0.5);
}
.btn .arrow { transition: transform 200ms var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ═════════ METRICS STRIP ═════════ */
.metrics-strip {
  padding: 40px 0;
  border-top: 1px solid var(--ink-10);
  border-bottom: 1px solid var(--ink-10);
  background: var(--ivory);
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.metric-item { text-align: center; }
.metric-item .value {
  font-size: 44px;
  font-weight: 800;
  color: var(--mint);
  letter-spacing: -1px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.metric-item .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink-50);
  margin-top: 8px;
}

/* ═════════ SECTIONS ═════════ */
section { padding: 96px 0; position: relative; z-index: 1; }
/* Default: LEFT-ALIGNED section headers (flowing, mature) */
.section-header {
  text-align: left;
  margin-bottom: 56px;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.section-header .eyebrow { margin-bottom: 24px; }
.section-header h2 { max-width: 720px; margin: 0 0 20px; }
.section-header p { max-width: 560px; margin: 0; font-size: 18px; line-height: 1.55; }

/* Explicit centred variant for hero-anchor sections only */
.section-header--center {
  text-align: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}
.section-header--center h2 { margin: 0 auto 20px; }
.section-header--center p { margin: 0 auto; }

/* ═════════ NAMED-SERVICE TRIAD ═════════ */
.triad {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.triad-card {
  background: var(--white);
  border: 1px solid var(--ink-10);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 400ms var(--ease);
  box-shadow: var(--shadow-soft);
}
.triad-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--mint) 0%, transparent 60%);
}
.triad-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
.triad-num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--mint);
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}
.triad-card h3 { margin-bottom: 12px; }
.triad-card .desc { font-size: 15px; margin-bottom: 20px; }
.triad-card .named-product {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-50);
  letter-spacing: 0.5px;
  padding-top: 16px;
  border-top: 1px solid var(--ink-10);
}
.triad-card .named-product strong { color: var(--ink); font-weight: 700; }

/* ═════════ NAMED PRODUCTS GRID ═════════ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.product-tile {
  background: var(--white);
  border: 1px solid var(--ink-10);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: all 300ms var(--ease);
  cursor: pointer;
}
.product-tile:hover {
  transform: translateY(-2px);
  border-color: var(--mint);
  box-shadow: var(--shadow-soft);
}
.product-tile-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.product-tile-name {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.3px;
}
.product-tile-name .cirveris {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  color: var(--mint);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}
.product-tile p {
  font-size: 14px;
  color: var(--ink-70);
  line-height: 1.5;
}

/* ═════════ LIVE-DATA OVERLAY SYSTEM ═════════ */
.live-badge {
  margin-left: 12px;
  color: var(--mint);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 1px;
  animation: livePulse 1.8s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.screenshot-image-wrap {
  position: relative;
  overflow: visible;
}

/* Floating toast notifications on hero */
.live-toast {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--ink-10);
  border-radius: 100px;
  padding: 8px 14px 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 12px 40px -12px rgba(7, 15, 20, 0.25);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(8px);
  animation: toastPop 800ms var(--ease) forwards;
  z-index: 5;
}
.toast-1 { top: 20%; left: -8%; animation-delay: 1400ms; }
.toast-2 { top: 48%; right: -6%; animation-delay: 2200ms; }
.toast-3 { bottom: 15%; left: -4%; animation-delay: 3000ms; }
.toast-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 8px var(--mint);
  animation: toastPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes toastPop {
  0% { opacity: 0; transform: translateY(12px) scale(0.9); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes toastPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 8px var(--mint); }
  50% { transform: scale(1.3); box-shadow: 0 0 16px var(--mint); }
}

/* Hero ping ripples — subtle indicators of "live" on real numbers */
.hero-ping {
  position: absolute;
  z-index: 5;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 12px var(--mint);
  pointer-events: none;
}
.hero-ping::before, .hero-ping::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100%; height: 100%;
  border-radius: 50%;
  border: 2px solid var(--mint);
  animation: pingRipple 2.4s ease-out infinite;
}
.hero-ping::after { animation-delay: 1.2s; }
/* positioned near actual KPI tiles on the real dashboard */
.ping-h1 { top: 18%; left: 12%; }         /* Total Revenue tile */
.ping-h2 { top: 18%; left: 62%; }         /* Units Processed tile */
.ping-h3 { top: 55%; right: 10%; }        /* Attention Needed area */

/* Live pill on showcase frames */
.live-pill {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  background: var(--white);
  border: 1px solid var(--ink-10);
  border-radius: 100px;
  padding: 6px 12px 6px 10px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 8px 24px -8px rgba(7, 15, 20, 0.15);
}
.live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 8px var(--mint);
  animation: toastPulse 1.8s ease-in-out infinite;
}

/* Overlay KPI values positioned over screenshot numbers */
.overlay-kpi {
  position: absolute;
  z-index: 4;
  pointer-events: none;
}
.overlay-value {
  font-family: var(--sans);
  font-weight: 800;
  color: var(--mint);
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 20px rgba(31, 163, 122, 0.4);
  filter: drop-shadow(0 0 12px rgba(31, 163, 122, 0.3));
  animation: overlayGlow 3s ease-in-out infinite;
}
@keyframes overlayGlow {
  0%, 100% { filter: drop-shadow(0 0 12px rgba(31, 163, 122, 0.3)); }
  50% { filter: drop-shadow(0 0 20px rgba(31, 163, 122, 0.6)); }
}

/* Approximate placement — matches dashboard KPI tile positions */
.kpi-revenue { top: 8.5%; left: 4%; font-size: clamp(18px, 2.5vw, 32px); }
.kpi-carbon  { top: 8.5%; left: 28%; font-size: clamp(18px, 2.5vw, 32px); }
.kpi-units   { top: 8.5%; left: 52%; font-size: clamp(18px, 2.5vw, 32px); }
.kpi-reuse   { top: 8.5%; left: 78%; font-size: clamp(18px, 2.5vw, 32px); }

/* Score orbs on part detail */
.score-orb {
  position: absolute;
  z-index: 4;
  width: 84px; height: 84px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--white) 0%, var(--ivory) 100%);
  box-shadow:
    0 0 0 3px var(--mint),
    0 20px 40px -10px rgba(31, 163, 122, 0.4),
    inset 0 0 20px rgba(31, 163, 122, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: orbFloat 4s ease-in-out infinite;
}
.orb-confidence { top: 15%; right: 6%; animation-delay: 0s; }
.orb-completeness { bottom: 25%; right: 4%; animation-delay: 1.5s; }
@keyframes orbFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.orb-value {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 800;
  color: var(--mint);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.orb-label {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--ink-50);
  margin-top: 4px;
  font-weight: 600;
}

/* Verified badges floating on knowledge base */
.verified-badge-fx {
  position: absolute;
  z-index: 4;
  background: var(--white);
  color: var(--mint);
  border: 1.5px solid var(--mint);
  border-radius: 100px;
  padding: 5px 12px 5px 8px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 8px 24px -8px rgba(31, 163, 122, 0.4);
  animation: badgePop 600ms var(--ease) forwards, badgeFloat 3s ease-in-out infinite 600ms;
  opacity: 0;
  transform: scale(0.6);
}
.verified-badge-fx span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px; height: 16px;
  background: var(--mint);
  color: var(--white);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
}
.vb-1 { top: 22%; left: 32%; animation-delay: 200ms, 800ms; }
.vb-2 { top: 44%; left: 58%; animation-delay: 500ms, 1100ms; }
.vb-3 { bottom: 28%; left: 20%; animation-delay: 800ms, 1400ms; }
@keyframes badgePop {
  to { opacity: 1; transform: scale(1); }
}
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-6px) scale(1.05); }
}

/* Ping ripples */
.ping {
  position: absolute;
  z-index: 3;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 12px var(--mint);
}
.ping::before, .ping::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100%; height: 100%;
  border-radius: 50%;
  border: 2px solid var(--mint);
  animation: pingRipple 2.4s ease-out infinite;
}
.ping::after { animation-delay: 1.2s; }
@keyframes pingRipple {
  0% { opacity: 0.8; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(4); }
}
.ping-1 { top: 35%; left: 45%; }
.ping-2 { bottom: 20%; right: 15%; }
.ping-3 { top: 40%; left: 15%; }
.ping-4 { top: 60%; left: 30%; }

/* Catalogue counter flash on increment */
.counter-flash {
  animation: counterFlash 400ms ease-out;
}
@keyframes counterFlash {
  0% { color: var(--mint); text-shadow: 0 0 12px rgba(31, 163, 122, 0.7); transform: scale(1.06); }
  100% { color: inherit; text-shadow: none; transform: scale(1); }
}

/* Live green sweep line across the frame (like a scanning effect) */
.screenshot-frame::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 30%; height: 100%;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(31, 163, 122, 0.10) 50%,
    transparent 100%);
  animation: scanSweep 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}
@keyframes scanSweep {
  0% { left: -30%; }
  100% { left: 130%; }
}

@media (prefers-reduced-motion: reduce) {
  .live-badge, .toast-dot, .live-dot, .overlay-value, .score-orb, .verified-badge-fx, .ping, .ping::before, .ping::after, .screenshot-frame::after { animation: none !important; }
  .verified-badge-fx { opacity: 1; transform: scale(1); }
  .live-toast { opacity: 1; transform: none; }
  .hero-video-card { opacity: 1; transform: none; animation: none !important; }
  .hero-video-card:hover { transform: none; }
}

/* ═════════ HERO VIDEO ═════════ */
.hero-video-card {
  background: var(--white);
  border-radius: 18px;
  box-shadow:
    0 40px 100px -30px rgba(7, 15, 20, 0.30),
    0 20px 50px -30px rgba(31, 163, 122, 0.20),
    0 0 0 1px var(--ink-10);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  transform: perspective(1400px) rotateY(-4deg) rotateX(2deg) translateY(0);
  transform-origin: center left;
  opacity: 0;
  animation: floatInVideo 1200ms var(--ease) forwards 400ms;
  transition: transform 600ms var(--ease);
  position: relative;
}
.hero-video-card:hover {
  transform: perspective(1400px) rotateY(-2deg) rotateX(1deg) translateY(-4px);
}
.hero-video-card::after {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(7, 15, 20, 0.06), inset 0 -60px 90px -80px rgba(7, 15, 20, 0.35);
}
.hero-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: var(--ivory);
}
@keyframes floatInVideo {
  to {
    opacity: 1;
    transform: perspective(1400px) rotateY(-4deg) rotateX(2deg) translateY(0);
  }
}

/* ═════════ PLATFORM SHOWCASE (real screenshots) ═════════ */
.platform-showcase {
  background: var(--ivory);
}
.showcase-block {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 72px;
}
.showcase-block:last-child { margin-bottom: 0; }
.showcase-block.reverse {
  grid-template-columns: 7fr 5fr;
}
.showcase-block.reverse .showcase-content {
  order: 2;
}
.showcase-block.reverse .showcase-visual {
  order: 1;
}
.showcase-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mint);
  font-weight: 700;
  margin-bottom: 20px;
}
.showcase-content h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.showcase-content h3 em {
  color: var(--mint);
  font-style: italic;
  font-weight: 400;
}
.showcase-content p {
  font-size: 16px;
  margin-bottom: 24px;
  line-height: 1.6;
}
.showcase-content p em {
  color: var(--mint);
  font-style: italic;
  font-weight: 500;
}
.showcase-features {
  list-style: none;
  padding: 0;
  border-top: 1px solid var(--ink-10);
  padding-top: 20px;
}
.showcase-features li {
  position: relative;
  padding-left: 28px;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 14px;
  color: var(--ink-70);
}
.showcase-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--mint);
  font-weight: 700;
  font-size: 14px;
}
.showcase-visual {
  perspective: 1400px;
}
.screenshot-frame {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 30px 80px -30px rgba(7, 15, 20, 0.25),
    0 15px 40px -20px rgba(31, 163, 122, 0.15),
    0 0 0 1px var(--ink-10);
  transition: all 600ms var(--ease);
  position: relative;
}
.screenshot-frame::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--mint) 0%, transparent 60%);
  z-index: 2;
}
.screenshot-frame:hover {
  transform: translateY(-6px);
  box-shadow:
    0 40px 100px -30px rgba(7, 15, 20, 0.30),
    0 20px 50px -20px rgba(31, 163, 122, 0.20),
    0 0 0 1px var(--mint);
}
.screenshot-frame img {
  width: 100%;
  height: auto;
  display: block;
}

/* ═════════ HERO SIGNAL LINE ═════════ */
.hero-signal {
  margin-top: 28px;
  padding: 10px 16px;
  background: rgba(31, 163, 122, 0.06);
  border-left: 2px solid var(--mint);
  border-radius: 0 8px 8px 0;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-70);
  letter-spacing: -0.005em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fade 800ms var(--ease) forwards 900ms;
}
.signal-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 12px var(--mint);
  animation: pulse 2s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 12px var(--mint); }
  50% { box-shadow: 0 0 24px var(--mint); }
}

/* ═════════ ECOSYSTEM STRIP — ANIMATED MARQUEE ═════════ */
.ecosystem-strip {
  background: var(--ivory);
  border-top: 1px solid var(--ink-10);
  border-bottom: 1px solid var(--ink-10);
  padding: 40px 0;
  overflow: hidden;
}
.ecosystem-container { width: 100%; max-width: 100%; overflow: hidden; }
.ecosystem-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-50);
  text-align: center;
  margin-bottom: 24px;
  font-weight: 500;
}

/* Marquee track with soft edge fade */
.marquee {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%);
  mask-image: linear-gradient(90deg,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 42s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}
.marquee-group {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 14px;
  flex-shrink: 0;
}
.marquee .player {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: var(--white);
  border: 1px solid var(--ink-10);
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: all 300ms var(--ease);
  box-shadow: 0 2px 8px -4px rgba(7, 15, 20, 0.08);
  cursor: default;
}
.marquee .player:hover {
  border-color: var(--mint);
  color: var(--mint);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -10px rgba(31, 163, 122, 0.40);
}
.marquee .player-icon {
  width: 16px;
  height: 16px;
  color: var(--ink-50);
  transition: color 300ms var(--ease), transform 300ms var(--ease);
  flex-shrink: 0;
}
.marquee .player:hover .player-icon {
  color: var(--mint);
  transform: scale(1.1);
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ═════════ PROBLEM GRID ═════════ */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.problem-card {
  background: var(--white);
  border: 1px solid var(--ink-10);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: all 400ms var(--ease);
  box-shadow: var(--shadow-soft);
  text-align: left;
}
.problem-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--mint) 0%, transparent 60%);
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
.problem-figure {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  color: var(--mint);
  letter-spacing: -1.5px;
  line-height: 1;
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}
.problem-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-70);
  font-weight: 600;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--ink-10);
}
.problem-card p {
  font-size: 14px;
  line-height: 1.55;
}

/* ═════════ HOW IT WORKS ═════════ */
.how-it-works {
  background: var(--white);
  border-top: 1px solid var(--ink-10);
}
.platform-showcase { padding: 96px 0 clamp(96px, 8vw, 120px); }
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 20px;
  align-items: stretch;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--ink-10);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  transition: all 400ms var(--ease);
}
.step-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--mint) 0%, transparent 60%);
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.step-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mint);
  font-weight: 700;
  margin-bottom: 16px;
}
.step-card h3 { margin-bottom: 12px; }
.step-card p { font-size: 14px; }
.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mint);
  font-size: 24px;
  font-weight: 300;
  opacity: 0.5;
}

/* ═════════ DIFFERENTIATOR BAND ═════════ */
.differentiator-band {
  background: var(--ink);
  color: var(--white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.differentiator-band::before {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 60%; height: 180%;
  background: radial-gradient(circle, rgba(31, 163, 122, 0.16) 0%, transparent 50%);
  pointer-events: none;
}
.differentiator-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.differentiator-eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--mint);
  font-weight: 600;
  margin-bottom: 20px;
}
.differentiator-band h2 {
  color: var(--white);
  margin-bottom: 24px;
  font-size: clamp(28px, 3.6vw, 44px);
}
.differentiator-band h2 em {
  color: var(--mint);
  font-style: italic;
  font-weight: 400;
}
.differentiator-band > .container > .differentiator-inner > p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 48px;
  line-height: 1.55;
}
.differentiator-band .differentiator-inner p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 48px;
  line-height: 1.55;
}
.differentiator-band .differentiator-inner p em {
  color: var(--mint);
  font-style: italic;
  font-weight: 500;
}
.differentiator-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  text-align: left;
}
.diff-point {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 24px;
  backdrop-filter: blur(20px);
  transition: all 300ms var(--ease);
}
.diff-point:hover {
  border-color: var(--mint);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}
.diff-point-title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15px;
  color: var(--mint);
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}
.diff-point-body {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* ═════════ SOLUTIONS GRID (6-card personas + use cases) ═════════ */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.split-card {
  background: var(--white);
  border: 1px solid var(--ink-10);
  border-radius: var(--radius);
  padding: 32px 28px 28px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  transition: all 400ms var(--ease);
  display: flex;
  flex-direction: column;
}
.split-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--mint) 0%, transparent 70%);
}
.split-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.split-card h3 {
  font-size: 20px;
  line-height: 1.25;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
  font-weight: 500;
  color: var(--ink);
}
.split-card > p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-70);
  margin: 0 0 20px 0;
}
.check-list {
  list-style: none;
  padding: 0;
  border-top: 1px solid var(--ink-10);
  padding-top: 20px;
  margin-top: auto;
}
.check-list li {
  position: relative;
  padding-left: 24px;
  padding-top: 6px;
  padding-bottom: 6px;
  font-size: 13.5px;
  color: var(--ink-70);
  line-height: 1.5;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--mint);
  font-weight: 700;
  font-size: 14px;
}

/* ═════════ CASE CARDS ═════════ */
.case-card {
  background: var(--white);
  border: 1px solid var(--ink-10);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 400ms var(--ease);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}
.case-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--mint) 0%, transparent 60%);
}
.case-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.case-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--mint);
  font-weight: 700;
  margin-bottom: 20px;
}
.case-card h3 { margin-bottom: 12px; }
.case-card p { font-size: 15px; margin-bottom: 24px; flex: 1; }
.case-link {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink);
  padding-top: 16px;
  border-top: 1px solid var(--ink-10);
  transition: color 200ms var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.case-link:hover { color: var(--mint); }
.case-link .arrow { transition: transform 200ms var(--ease); }
.case-link:hover .arrow { transform: translateX(4px); }

/* ═════════ ENTERPRISE PAGE ═════════ */
.enterprise-page .hero {
  padding: 76px 0 84px;
}
.enterprise-hero-grid {
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
}
@media (min-width: 769px) {
  .enterprise-page .hero-text h1 {
    font-size: clamp(44px, 5.7vw, 76px);
  }
}
.enterprise-visual {
  min-width: 0;
}
.enterprise-console {
  background: var(--white);
  border: 1px solid var(--ink-10);
  border-radius: 14px;
  box-shadow:
    0 40px 100px -36px rgba(7, 15, 20, 0.30),
    0 18px 48px -32px rgba(31, 163, 122, 0.25);
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 900ms var(--ease) forwards 500ms;
}
.enterprise-console-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  background: var(--ivory);
  border-bottom: 1px solid var(--ink-10);
}
.console-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-50);
  margin-bottom: 4px;
}
.console-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.console-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border: 1px solid rgba(31, 163, 122, 0.22);
  border-radius: 100px;
  background: rgba(31, 163, 122, 0.07);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  white-space: nowrap;
}
.console-status span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--mint);
  box-shadow: 0 0 10px rgba(31, 163, 122, 0.8);
}
.enterprise-console-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--ink-10);
}
.console-metric {
  min-width: 0;
  padding: 22px;
  border-right: 1px solid var(--ink-10);
}
.console-metric:last-child {
  border-right: 0;
}
.console-metric span,
.panel-label {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-50);
  margin-bottom: 10px;
}
.console-metric strong {
  display: block;
  color: var(--mint);
  font-size: clamp(30px, 4.4vw, 46px);
  line-height: 1;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.console-metric small {
  display: block;
  margin-top: 8px;
  color: var(--ink-70);
  font-size: 12px;
  line-height: 1.4;
}
.enterprise-route {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  padding: 18px 22px;
  border-bottom: 1px solid var(--ink-10);
}
.route-step {
  position: relative;
  min-width: 0;
  padding-left: 18px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-50);
  white-space: nowrap;
}
.route-step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  transform: translateY(-50%);
  border-radius: 999px;
  border: 1px solid var(--ink-30);
  background: var(--white);
}
.route-step-active {
  color: var(--ink);
}
.route-step-active::before {
  border-color: var(--mint);
  background: var(--mint);
  box-shadow: 0 0 12px rgba(31, 163, 122, 0.55);
}
.enterprise-console-main {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 0;
  min-height: 270px;
}
.console-panel {
  min-width: 0;
  padding: 22px;
}
.console-panel + .console-panel {
  border-left: 1px solid var(--ink-10);
}
.decision-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--ink-10);
}
.decision-row:last-child {
  border-bottom: 0;
}
.decision-row span {
  min-width: 0;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.35;
}
.decision-row strong {
  flex: 0 0 auto;
  color: var(--success);
  background: var(--success-bg);
  border: 1px solid var(--success-br);
  border-radius: 999px;
  padding: 4px 8px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.decision-row strong.hold {
  color: var(--warn);
  background: var(--warn-bg);
  border-color: var(--warn-br);
}
.console-panel-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 245, 240, 0.68);
  overflow: hidden;
}
.console-panel-image img {
  width: 118%;
  max-width: none;
  border-radius: 10px;
  box-shadow: 0 20px 60px -34px rgba(7, 15, 20, 0.45);
}
.enterprise-signal-section {
  padding: 34px 0;
  background: var(--ivory);
  border-top: 1px solid var(--ink-10);
  border-bottom: 1px solid var(--ink-10);
}
.enterprise-signal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink-10);
  border-bottom: 1px solid var(--ink-10);
}
.enterprise-signal {
  padding: 22px 24px;
  border-right: 1px solid var(--ink-10);
}
.enterprise-signal:last-child {
  border-right: 0;
}
.enterprise-signal span {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 8px;
}
.enterprise-signal strong {
  display: block;
  color: var(--ink);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.enterprise-scale-section,
.enterprise-capabilities-section,
.enterprise-proof-section {
  padding: 96px 0;
}
.enterprise-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.enterprise-card {
  background: var(--white);
  border: 1px solid var(--ink-10);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  transition: all 360ms var(--ease);
}
.enterprise-card:hover {
  transform: translateY(-3px);
  border-color: rgba(31, 163, 122, 0.36);
  box-shadow: var(--shadow-lift);
}
.enterprise-card h3 {
  margin-bottom: 12px;
}
.enterprise-card p {
  font-size: 15px;
  margin: 0;
}
.enterprise-workflow-section {
  padding: 96px 0;
  background: var(--ivory);
  border-top: 1px solid var(--ink-10);
  border-bottom: 1px solid var(--ink-10);
}
.workflow-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.workflow-stage {
  min-height: 210px;
  background: var(--white);
  border: 1px solid var(--ink-10);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: all 320ms var(--ease);
}
.workflow-stage:hover {
  border-color: rgba(31, 163, 122, 0.40);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}
.workflow-stage span {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--mint);
  letter-spacing: 0.14em;
  margin-bottom: 18px;
}
.workflow-stage strong {
  color: var(--ink);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.workflow-stage p {
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}
.enterprise-capability-grid {
  border-top: 1px solid var(--ink-10);
}
.capability-row {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--ink-10);
  align-items: start;
}
.capability-index {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(31, 163, 122, 0.28);
  background: rgba(31, 163, 122, 0.07);
  color: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
}
.capability-row h3 {
  margin-bottom: 10px;
}
.capability-row p {
  max-width: 860px;
  margin: 0;
  font-size: 16px;
}
.governance-band {
  background: var(--ink);
  color: var(--white);
  padding: 104px 0;
  overflow: hidden;
}
.governance-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.governance-eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 20px;
}
.governance-copy h2 {
  color: var(--white);
  margin-bottom: 22px;
}
.governance-copy p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}
.governance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.governance-item {
  min-height: 178px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
}
.governance-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(31, 163, 122, 0.18);
  color: var(--mint);
  font-size: 13px;
  margin-bottom: 18px;
}
.governance-item strong {
  display: block;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.governance-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.55;
}
.proof-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.proof-copy h2 {
  margin: 22px 0 18px;
}
.proof-copy p {
  margin-bottom: 28px;
  font-size: 18px;
}
.proof-frame {
  border: 1px solid var(--ink-10);
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-lift);
}
.proof-frame img {
  width: 100%;
  height: auto;
  display: block;
}

/* ═════════ PRICING PAGE ═════════ */
.pricing-page .hero {
  padding: 76px 0 84px;
}
.pricing-hero-grid {
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
}
@media (min-width: 769px) {
  .pricing-page .hero-text h1 {
    font-size: clamp(44px, 5.5vw, 74px);
  }
}
.pricing-visual {
  min-width: 0;
}
.pricing-console {
  background: var(--white);
  border: 1px solid var(--ink-10);
  border-radius: 14px;
  box-shadow:
    0 40px 100px -36px rgba(7, 15, 20, 0.30),
    0 18px 48px -32px rgba(31, 163, 122, 0.25);
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 900ms var(--ease) forwards 500ms;
}
.pricing-console-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  background: var(--ivory);
  border-bottom: 1px solid var(--ink-10);
}
.pricing-scope-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--ink-10);
}
.pricing-scope-grid > div {
  min-width: 0;
  padding: 20px 22px;
  border-right: 1px solid var(--ink-10);
}
.pricing-scope-grid > div:last-child {
  border-right: 0;
}
.pricing-scope-grid span,
.pricing-scenario span {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-50);
  margin-bottom: 8px;
}
.pricing-scope-grid strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.pricing-console-body {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  min-height: 312px;
}
.pricing-scenario-list {
  padding: 22px;
  border-right: 1px solid var(--ink-10);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-scenario {
  padding: 16px;
  border: 1px solid var(--ink-10);
  border-radius: 12px;
  background: var(--white);
}
.pricing-scenario.active {
  border-color: rgba(31, 163, 122, 0.34);
  background: rgba(31, 163, 122, 0.06);
}
.pricing-scenario strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.pricing-dashboard-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 26px;
  background: rgba(245, 245, 240, 0.68);
  overflow: hidden;
}
.pricing-dashboard-frame img {
  width: 118%;
  max-width: none;
  border-radius: 10px;
  box-shadow: 0 20px 60px -34px rgba(7, 15, 20, 0.45);
}
.pricing-signal-section {
  padding: 34px 0;
  background: var(--ivory);
  border-top: 1px solid var(--ink-10);
  border-bottom: 1px solid var(--ink-10);
}
.pricing-signal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink-10);
  border-bottom: 1px solid var(--ink-10);
}
.pricing-signal {
  padding: 22px 24px;
  border-right: 1px solid var(--ink-10);
}
.pricing-signal:last-child {
  border-right: 0;
}
.pricing-signal span {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 8px;
}
.pricing-signal strong {
  display: block;
  color: var(--ink);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.pricing-tier-section,
.pricing-driver-section,
.pricing-addon-section {
  padding: 96px 0;
}
.pricing-tier-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}
.pricing-card {
  position: relative;
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--ink-10);
  border-radius: var(--radius);
  padding: 30px 24px 26px;
  box-shadow: var(--shadow-soft);
  transition: transform 360ms var(--ease), border-color 360ms var(--ease), box-shadow 360ms var(--ease);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--mint) 0%, transparent 70%);
}
.pricing-card:hover {
  transform: translateY(-3px);
  border-color: rgba(31, 163, 122, 0.36);
  box-shadow: var(--shadow-lift);
}
.pricing-card-featured {
  border-color: rgba(31, 163, 122, 0.44);
  box-shadow:
    0 28px 72px -34px rgba(7, 15, 20, 0.24),
    0 18px 48px -34px rgba(31, 163, 122, 0.35);
}
.pricing-card-ribbon {
  align-self: flex-start;
  margin-bottom: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(31, 163, 122, 0.10);
  border: 1px solid rgba(31, 163, 122, 0.22);
  color: var(--mint);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.pricing-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.pricing-card h3 {
  font-size: 24px;
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.03em;
}
.pricing-badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 9px;
  border-radius: 999px;
  border: 1px solid var(--ink-10);
  background: var(--ivory);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-70);
}
.pricing-fit {
  color: var(--ink-70);
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 20px;
}
.pricing-price {
  padding: 16px 0;
  border-top: 1px solid var(--ink-10);
  border-bottom: 1px solid var(--ink-10);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.pricing-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-feature-list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-70);
  font-size: 13.5px;
  line-height: 1.45;
}
.pricing-feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--mint);
  font-weight: 700;
}
.pricing-card .case-link {
  margin-top: auto;
}
.pricing-driver-section,
.pricing-comparison-section {
  background: var(--ivory);
  border-top: 1px solid var(--ink-10);
  border-bottom: 1px solid var(--ink-10);
}
.pricing-driver-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink-10);
  border-bottom: 1px solid var(--ink-10);
}
.pricing-driver {
  padding: 30px 24px;
  border-right: 1px solid var(--ink-10);
}
.pricing-driver:last-child {
  border-right: 0;
}
.pricing-driver span {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--mint);
  letter-spacing: 0.14em;
  margin-bottom: 20px;
}
.pricing-driver h3 {
  font-size: 20px;
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.pricing-driver p {
  font-size: 14px;
  margin: 0;
}
.pricing-comparison-section {
  padding: 96px 0;
}
.pricing-matrix {
  overflow: hidden;
  border: 1px solid var(--ink-10);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.pricing-matrix-row {
  display: grid;
  grid-template-columns: 0.8fr repeat(4, 1fr);
  border-bottom: 1px solid var(--ink-10);
}
.pricing-matrix-row:last-child {
  border-bottom: 0;
}
.pricing-matrix-row > div {
  min-width: 0;
  padding: 18px 16px;
  border-right: 1px solid var(--ink-10);
  font-size: 13.5px;
  color: var(--ink-70);
  line-height: 1.45;
}
.pricing-matrix-row > div:last-child {
  border-right: 0;
}
.pricing-matrix-row > div:first-child {
  color: var(--ink);
  font-weight: 600;
}
.pricing-matrix-head {
  background: var(--ivory);
}
.pricing-matrix-head > div {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}
.pricing-addon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.pricing-addon {
  min-height: 86px;
  display: flex;
  align-items: center;
  padding: 22px 24px;
  border: 1px solid var(--ink-10);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

/* ═════════ FINAL CTA ═════════ */
.final-cta {
  text-align: center;
  padding: 112px 0 128px;
}
.final-cta .eyebrow { margin: 0 auto 24px; }
.final-cta h2 { margin-bottom: 24px; max-width: 720px; margin-left: auto; margin-right: auto; }
.final-cta p { max-width: 560px; margin: 0 auto 40px; font-size: 18px; line-height: 1.55; }
.final-cta-buttons { display: inline-flex; gap: 12px; }

/* ═════════ FOOTER ═════════ */
.footer {
  background: var(--ivory);
  padding: 80px 0 40px;
  border-top: 1px solid var(--ink-10);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-brand { max-width: 300px; }
.footer-brand p { font-size: 14px; margin-top: 16px; }
.footer h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-50);
  margin-bottom: 16px;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; }
.footer li a {
  font-size: 14px;
  color: var(--ink-70);
  transition: color 200ms var(--ease);
}
.footer li a:hover { color: var(--mint); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--ink-10);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-50);
}

/* ═════════ ANIMATIONS ═════════ */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fade {
  to { opacity: 1; }
}
@keyframes floatIn {
  to {
    opacity: 1;
    transform: rotateY(-6deg) rotateX(2deg) translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ═════════ RESPONSIVE ═════════ */
/* ═════════ TABLET (≤ 1100px) ═════════ */
@media (max-width: 1100px) {
  .container { padding: 0 32px; }
  .nav-inner { padding: 16px 32px; }
  .nav-trigger,
  .nav-link-plain { padding-left: 10px; padding-right: 10px; }
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .metrics-wall { grid-template-columns: repeat(2, 1fr); }
  .mw-cell:nth-child(2) { border-right: 0; }
  .mw-cell:nth-child(1), .mw-cell:nth-child(2) { border-bottom: 1px solid var(--ink-10); }
  .dataset-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: 1fr; gap: 8px; max-width: 700px; }
  .trust-item { padding: 24px 4px; border-bottom: 1px solid var(--ink-10); }
  .trust-item:last-child { border-bottom: 0; }
  .cert-strip-items { grid-template-columns: repeat(2, 1fr); }
  .enterprise-hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .enterprise-visual { max-width: 820px; margin: 0 auto; width: 100%; }
  .pricing-hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .pricing-visual { max-width: 820px; margin: 0 auto; width: 100%; }
  .pricing-tier-grid,
  .pricing-driver-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-driver:nth-child(2) { border-right: 0; }
  .pricing-driver:nth-child(1),
  .pricing-driver:nth-child(2) { border-bottom: 1px solid var(--ink-10); }
  .pricing-signal-grid,
  .pricing-addon-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-signal:nth-child(2) { border-right: 0; }
  .pricing-signal:nth-child(1),
  .pricing-signal:nth-child(2) { border-bottom: 1px solid var(--ink-10); }
  .pricing-matrix { overflow-x: auto; }
  .pricing-matrix-row { min-width: 920px; }
  .enterprise-signal-grid,
  .enterprise-card-grid,
  .workflow-track,
  .governance-grid { grid-template-columns: repeat(2, 1fr); }
  .enterprise-signal:nth-child(2) { border-right: 0; }
  .enterprise-signal:nth-child(1),
  .enterprise-signal:nth-child(2) { border-bottom: 1px solid var(--ink-10); }
  .governance-inner,
  .proof-grid { grid-template-columns: 1fr; gap: 40px; }
  h1 { font-size: clamp(40px, 5.5vw, 64px); }
  h2, .section-h2-quiet { font-size: clamp(28px, 3.6vw, 40px); }
}

/* ═════════ MOBILE (≤ 768px) ═════════ */
@media (max-width: 768px) {
  /* Typography scaling */
  html { font-size: 15px; }
  body { font-size: 15px; }
  h1 { font-size: clamp(32px, 8vw, 40px); letter-spacing: -0.035em; line-height: 1.08; }
  h2, .section-h2-quiet { font-size: clamp(26px, 6.5vw, 32px); letter-spacing: -0.03em; line-height: 1.15; }
  h3 { font-size: 19px; line-height: 1.25; }
  p { font-size: 15px; line-height: 1.55; }
  .lede { font-size: 17px; line-height: 1.5; }

  /* Container */
  .container { padding: 0 20px; }

  /* Nav */
  .nav-inner { padding: 12px 20px; gap: 14px; }
  .nav-brand,
  .nav-actions { flex: 0 0 auto; }
  .nav-logo { height: 24px; }
  .footer-brand .nav-logo { height: 28px; }
  .nav-links { display: none; }
  .nav-signin { padding: 8px 12px; font-size: 13px; }
  .nav-cta { padding: 8px 14px; font-size: 13px; }
  .nav-actions { gap: 6px; }
  .nav-menu-toggle {
    width: 38px;
    height: 38px;
    border: 1px solid var(--ink-10);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 12px 28px -22px rgba(7, 15, 20, 0.40);
    transition: background 200ms var(--ease), border-color 200ms var(--ease), transform 200ms var(--ease);
  }
  .nav-menu-toggle span {
    width: 15px;
    height: 1.5px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 220ms var(--ease), opacity 180ms var(--ease);
  }
  .nav-menu-toggle[aria-expanded="true"] {
    border-color: rgba(31, 163, 122, 0.35);
    background: rgba(31, 163, 122, 0.10);
    color: var(--mint);
  }
  .nav-menu-toggle:focus-visible {
    outline: 2px solid rgba(31, 163, 122, 0.45);
    outline-offset: 3px;
  }
  .nav-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
  .nav-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
  .mobile-nav-panel {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    z-index: 140;
    padding: 10px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: saturate(180%) blur(22px);
    -webkit-backdrop-filter: saturate(180%) blur(22px);
    border: 1px solid var(--ink-10);
    border-radius: 18px;
    box-shadow:
      0 30px 80px -36px rgba(7, 15, 20, 0.30),
      0 12px 28px -20px rgba(31, 163, 122, 0.18);
  }
  .mobile-nav-panel:not([hidden]) {
    display: grid;
    gap: 4px;
  }
  .mobile-nav-link,
  .mobile-nav-signin {
    display: grid;
    gap: 2px;
    padding: 12px 14px;
    border-radius: 12px;
    color: var(--ink);
    transition: background 180ms var(--ease), color 180ms var(--ease);
  }
  .mobile-nav-link:hover,
  .mobile-nav-signin:hover {
    background: rgba(31, 163, 122, 0.07);
    color: var(--mint);
  }
  .mobile-nav-link span,
  .mobile-nav-signin {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.015em;
  }
  .mobile-nav-link small {
    color: var(--ink-50);
    font-size: 12px;
    line-height: 1.35;
    letter-spacing: -0.005em;
  }
  .mobile-nav-signin {
    margin-top: 4px;
    border-top: 1px solid var(--ink-10);
  }

  /* Preview banner */
  .preview-banner { padding: 8px 16px; font-size: 10px; }

  /* Hero */
  .hero { padding: 96px 0 84px; }
  .hero-grid { grid-template-columns: 1fr; gap: 64px; }
  .home-hero-grid { row-gap: 0; }
  .home-hero-grid .hero-text,
  .home-hero-grid .hero-visual,
  .home-hero-grid .hero-ctas {
    grid-column: 1;
    grid-row: auto;
  }
  .home-hero-grid .hero-text { order: 1; }
  .home-hero-grid .hero-visual {
    order: 2;
    margin-bottom: 34px;
  }
  .home-hero-grid .hero-ctas { order: 3; }
  .hero-text { text-align: center; }
  .hero-tag { font-size: 12px; padding: 5px 12px 5px 10px; margin-bottom: 34px; }
  .hero-text h1 { line-height: 1.16; margin-bottom: 30px; }
  .hero-text .lede { margin-bottom: 44px; margin-left: auto; margin-right: auto; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 14px; width: 100%; }
  .hero-ctas .btn { width: 100%; justify-content: center; padding: 17px 20px; }
  .hero-screenshot { transform: none; }
  .hero-video-card { transform: none; animation-name: fadeUp; }

  /* Enterprise page */
  .enterprise-page .hero { padding: 88px 0 72px; }
  .enterprise-hero-grid { gap: 42px; }
  .enterprise-console-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 18px;
  }
  .console-title { font-size: 18px; }
  .enterprise-console-grid { grid-template-columns: 1fr; }
  .console-metric {
    border-right: 0;
    border-bottom: 1px solid var(--ink-10);
    padding: 18px;
  }
  .console-metric:last-child { border-bottom: 0; }
  .console-metric strong { font-size: 36px; }
  .enterprise-route {
    grid-template-columns: 1fr;
    gap: 8px;
    overflow-x: visible;
    padding: 16px 18px;
  }
  .route-step { font-size: 11px; padding-left: 16px; }
  .enterprise-console-main { grid-template-columns: 1fr; min-height: auto; }
  .console-panel { padding: 18px; }
  .console-panel + .console-panel {
    border-left: 0;
    border-top: 1px solid var(--ink-10);
  }
  .console-panel-image img { width: 110%; }
  .enterprise-signal-section { padding: 28px 0; }
  .enterprise-signal-grid { grid-template-columns: 1fr; }
  .enterprise-signal {
    border-right: 0;
    border-bottom: 1px solid var(--ink-10);
    padding: 18px 0;
  }
  .enterprise-signal:last-child { border-bottom: 0; }
  .enterprise-scale-section,
  .enterprise-capabilities-section,
  .enterprise-proof-section,
  .enterprise-workflow-section,
  .governance-band { padding: 64px 0; }
  .enterprise-card-grid,
  .workflow-track,
  .governance-grid { grid-template-columns: 1fr; }
  .enterprise-card,
  .workflow-stage,
  .governance-item { padding: 24px 20px; }
  .workflow-stage { min-height: auto; }
  .capability-row {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px 0;
  }
  .capability-index { width: 38px; height: 38px; }
  .capability-row p { font-size: 15px; }
  .governance-copy p,
  .proof-copy p { font-size: 16px; }
  .proof-grid { gap: 28px; }

  /* Pricing page */
  .pricing-page .hero { padding: 88px 0 72px; }
  .pricing-hero-grid { gap: 42px; }
  .pricing-console-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 18px;
  }
  .pricing-scope-grid { grid-template-columns: 1fr; }
  .pricing-scope-grid > div {
    border-right: 0;
    border-bottom: 1px solid var(--ink-10);
    padding: 18px;
  }
  .pricing-scope-grid > div:last-child { border-bottom: 0; }
  .pricing-console-body { grid-template-columns: 1fr; min-height: auto; }
  .pricing-scenario-list {
    border-right: 0;
    border-bottom: 1px solid var(--ink-10);
    padding: 18px;
  }
  .pricing-dashboard-frame { padding: 20px; }
  .pricing-dashboard-frame img { width: 110%; }
  .pricing-signal-section { padding: 28px 0; }
  .pricing-signal-grid { grid-template-columns: 1fr; }
  .pricing-signal {
    border-right: 0;
    border-bottom: 1px solid var(--ink-10);
    padding: 18px 0;
  }
  .pricing-signal:last-child { border-bottom: 0; }
  .pricing-tier-section,
  .pricing-driver-section,
  .pricing-comparison-section,
  .pricing-addon-section { padding: 64px 0; }
  .pricing-tier-grid,
  .pricing-driver-grid,
  .pricing-addon-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 26px 20px 24px; }
  .pricing-card-top { align-items: flex-start; }
  .pricing-driver {
    border-right: 0;
    border-bottom: 1px solid var(--ink-10);
    padding: 24px 0;
  }
  .pricing-driver:last-child { border-bottom: 0; }
  .pricing-matrix {
    border-radius: 12px;
    overflow: visible;
  }
  .pricing-matrix-row {
    min-width: 0;
    grid-template-columns: 1fr;
  }
  .pricing-matrix-head {
    display: none;
  }
  .pricing-matrix-row > div {
    border-right: 0;
    border-bottom: 1px solid var(--ink-10);
    padding: 14px 16px;
  }
  .pricing-matrix-row > div:last-child {
    border-bottom: 0;
  }
  .pricing-matrix-row > div:first-child {
    background: var(--ivory);
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .pricing-matrix-row:not(.pricing-matrix-head) > div:nth-child(n+2)::before {
    display: block;
    margin-bottom: 6px;
    font-family: var(--mono);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mint);
  }
  .pricing-matrix-row:not(.pricing-matrix-head) > div:nth-child(2)::before { content: "Regional Operator"; }
  .pricing-matrix-row:not(.pricing-matrix-head) > div:nth-child(3)::before { content: "Tier 1 Operator"; }
  .pricing-matrix-row:not(.pricing-matrix-head) > div:nth-child(4)::before { content: "Enterprise"; }
  .pricing-matrix-row:not(.pricing-matrix-head) > div:nth-child(5)::before { content: "Partner Network"; }
  .pricing-addon { min-height: auto; padding: 20px; font-size: 15px; }

  /* Ecosystem marquee */
  .ecosystem-strip { padding: 32px 0; }
  .ecosystem-label { font-size: 10px; margin-bottom: 16px; letter-spacing: 0.12em; }
  .marquee-track { animation-duration: 28s; }
  .marquee .player { padding: 8px 14px; font-size: 13px; gap: 8px; }
  .marquee .player-icon { width: 14px; height: 14px; }
  .marquee-group { gap: 10px; padding-right: 10px; }

  /* Sections — unified mobile padding */
  section,
  .pillars-section,
  .outcomes-section,
  .metrics-wall-section,
  .one-dataset-section,
  .testimonials-section,
  .trust-section,
  .platform-showcase { padding: 64px 0; }

  .platform-showcase { padding-bottom: clamp(72px, 10vw, 96px); }
  .process-section { padding: clamp(72px, 10vw, 96px) 0 64px; }
  .process-section .section-header .eyebrow { margin-bottom: 40px; }

  .section-header { margin-bottom: 36px; }
  .section-header .eyebrow { margin-bottom: 18px; }
  .section-header h2 { margin-bottom: 14px; }

  /* Pillars */
  .pillars-grid { grid-template-columns: 1fr; gap: 14px; }
  .pillar { padding: 28px 24px; }
  .pillar-eyebrow { font-size: 14px; margin-bottom: 10px; }
  .pillar p { font-size: 15px; }

  /* Outcomes list */
  .outcome-row { grid-template-columns: 44px 1fr; gap: 14px; padding: 20px 0; }
  .outcome-num { font-size: 12px; padding-top: 4px; }
  .outcome-body h3 { font-size: 18px; line-height: 1.3; }

  /* Metrics wall */
  .metrics-wall-section { padding: 56px 0; }
  .metrics-wall-header { margin-bottom: 28px; }
  .metrics-wall { grid-template-columns: 1fr; }
  .mw-cell { border-right: 0; border-bottom: 1px solid var(--ink-10); padding: 24px 0; }
  .mw-cell:last-child { border-bottom: 0; }
  .mw-value { font-size: 44px; letter-spacing: -0.03em; }
  .mw-label { font-size: 14px; max-width: 100%; }

  /* Platform showcase */
  .showcase-block, .showcase-block.reverse {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
  }
  .showcase-block.reverse .showcase-content { order: 1; }
  .showcase-block.reverse .showcase-visual { order: 2; }
  .showcase-num { font-size: 10px; margin-bottom: 14px; }
  .showcase-content h3 { font-size: 22px; margin-bottom: 14px; }
  .showcase-content p { font-size: 15px; margin-bottom: 20px; }
  .live-pill { font-size: 9px; padding: 4px 10px 4px 8px; top: 10px; right: 10px; }
  .score-orb { width: 60px; height: 60px; }
  .orb-value { font-size: 14px; }
  .orb-label { font-size: 7px; }

  /* Process */
  .process-list { gap: 12px; }
  .process-row { grid-template-columns: 1fr; gap: 8px; padding: 24px 20px; }
  .process-step { font-size: 11px; padding-top: 0; }
  .process-body h3 { font-size: 19px; margin-bottom: 8px; }
  .process-body p { font-size: 14px; }

  /* One dataset */
  .dataset-grid { grid-template-columns: 1fr; gap: 20px; }
  .dataset-title { font-size: 16px; }

  /* Testimonials */
  .testimonials-section { padding: 64px 0; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 12px; }
  .testimonial { padding: 24px 20px; }
  .testimonial::before { font-size: 44px; top: 4px; left: 14px; }
  .testimonial p { font-size: 15px; margin-bottom: 16px; }
  .cite-name { font-size: 12px; }
  .cite-role { font-size: 10px; }

  /* Trust */
  .trust-grid { gap: 4px; }
  .trust-item { padding: 20px 0; }
  .trust-item h3 { font-size: 18px; }
  .trust-item p { font-size: 14px; }

  /* Cert strip mobile */
  .cert-strip { margin-top: 48px; padding-top: 32px; }
  .cert-strip-items { grid-template-columns: 1fr; gap: 10px; }
  .cert-item { padding: 16px 18px; gap: 12px; }
  .cert-mark { width: 28px; height: 28px; }
  .cert-name { font-size: 14px; }
  .cert-role { font-size: 9px; }

  /* Final CTA */
  .final-cta { padding: 64px 0 72px; }
  .final-cta h2 { margin-bottom: 16px; }
  .final-cta p { font-size: 16px; margin-bottom: 28px; }
  .final-cta-buttons { flex-direction: column; width: 100%; gap: 10px; }
  .final-cta-buttons .btn { width: 100%; justify-content: center; }

  /* Footer */
  .footer { padding: 56px 0 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 40px; }
  .footer-brand { grid-column: 1 / -1; max-width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; text-align: left; padding-top: 24px; }

  /* Solutions */
  .solutions-grid { grid-template-columns: 1fr; gap: 12px; }
  .split-card { padding: 28px 24px; }
}

/* ═════════ SMALL MOBILE (≤ 420px) ═════════ */
@media (max-width: 420px) {
  html { font-size: 14px; }
  h1 { font-size: 32px; }
  h2, .section-h2-quiet { font-size: 26px; }
  .container { padding: 0 16px; }
  .nav-inner { padding-left: 16px; padding-right: 16px; }
  .nav-logo { height: 22px; }
  .nav-signin { display: none; }
  .nav-cta { padding: 8px 13px; font-size: 12.5px; }
  .nav-menu-toggle { width: 36px; height: 36px; }
  .mobile-nav-panel { left: 12px; right: 12px; }
  .hero { padding: 64px 0 56px; }
  .mw-value { font-size: 40px; }
  .marquee .player { padding: 7px 12px; font-size: 12.5px; }
}

/* (Legacy 900px breakpoint removed — superseded by 768px + 1100px above) */
