/* =========================================================
   MetaVersity XR — landing page styles
   ========================================================= */

:root {
  --bg: #f6f8fb;
  --bg-soft: #ffffff;
  --bg-tint: #eaf3fb;
  --ink: #0b1b34;
  --ink-soft: #324d70;
  --muted: #5d7795;
  --line: rgba(11, 27, 52, 0.08);
  --line-strong: rgba(11, 27, 52, 0.14);
  --blue: #2e95df;
  --blue-2: #1d6fb8;
  --blue-deep: #134a83;
  --blue-sky: #aedcff;
  --blue-glow: rgba(46, 149, 223, 0.45);
  --shadow-sm: 0 4px 14px rgba(11, 27, 52, 0.05);
  --shadow-md: 0 12px 36px rgba(11, 27, 52, 0.08);
  --shadow-lg: 0 24px 70px rgba(11, 27, 52, 0.12);
  --radius: 18px;
  --radius-lg: 26px;
  --max: 1240px;
  --t: cubic-bezier(.2,.7,.2,1);
  --serif-fallback: 'Space Grotesk', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --sans-fallback: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  /* Reserve scrollbar space on every page so layout doesn't shift when
     navigating from a long page (homepage, with scrollbar) to a short one (and back). */
  scrollbar-gutter: stable;
  overflow-y: scroll; /* Safari fallback: always show the scrollbar gutter */
}
body {
  margin: 0;
  font-family: var(--sans-fallback);
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

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

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--t), transform .9s var(--t); }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   Logo
   ========================================================= */
.logo {
  display: inline-flex;
  align-items: center;
  height: 38px;
  transition: transform .3s var(--t);
}
.logo:hover { transform: translateY(-1px); }
.logo img {
  height: 100%;
  width: auto;
  display: block;
}
.nav.scrolled .logo { height: 32px; }

/* =========================================================
   Nav
   ========================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(246, 248, 251, 0.78);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, padding .3s var(--t);
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 28px;
  transition: padding .3s var(--t);
}
.nav.scrolled .nav-inner { padding: 10px 28px; }

.nav-links { display: flex; align-items: center; gap: 6px; }
/* General nav-link styles - exclude .nav-cta so it keeps its dark pill look */
.nav-links > a:not(.nav-cta), .nav-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 8px 12px;
  border-radius: 10px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  transition: color .25s var(--t), background .25s;
}
.nav-links > a:not(.nav-cta):hover,
.nav-links > a:not(.nav-cta).active,
.nav-trigger:hover, .nav-item.open .nav-trigger,
.nav-item:hover .nav-trigger { color: var(--blue); background: var(--bg-tint); }
.nav-links > a:not(.nav-cta).active { color: var(--blue); }
.nav-trigger .caret { font-size: 11px; transition: transform .25s; }
.nav-item:hover .nav-trigger .caret,
.nav-item.open .nav-trigger .caret { transform: rotate(180deg); }

/* Dropdown menu */
.nav-item { position: relative; }
/* Invisible hover bridge that fills the gap between trigger & menu,
   so moving the cursor down from the trigger to the menu doesn't break :hover */
.nav-item.has-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -8px;
  right: -8px;
  height: 14px;
  pointer-events: auto;
  background: transparent;
}
/* Only show the bridge when this dropdown is the one being hovered/focused,
   otherwise a different item's bridge could block clicks elsewhere */
.nav-item.has-dropdown:not(:hover):not(:focus-within):not(.open)::after {
  pointer-events: none;
}
.nav-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  width: max-content;
  min-width: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(11, 27, 52, 0.14);
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s var(--t), transform .25s var(--t), visibility .25s;
  z-index: 110;
}
.nav-menu::before {
  content: "";
  position: absolute;
  top: -7px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px;
  background: #fff;
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
}
.nav-item:hover .nav-menu,
.nav-item.open .nav-menu,
.nav-item:focus-within .nav-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-menu a {
  display: block;
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: 10px;
  white-space: nowrap;
  text-align: center;
  transition: background .2s, color .2s;
}
.nav-menu a:hover, .nav-menu a.active {
  background: var(--bg-tint);
  color: var(--blue);
}
/* Use border instead of bold for active state - avoids width changes */
.nav-menu a.active {
  font-weight: 500;
  box-shadow: inset 0 0 0 1px var(--blue);
}

.nav-links > a.nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--ink);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  border: none;
  text-decoration: none;
  transition: background .3s, transform .3s var(--t), box-shadow .3s;
  margin-left: 6px;
  flex-shrink: 0;
  white-space: nowrap;
}
.nav-links > a.nav-cta:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px var(--blue-glow);
}
.nav-links > a.nav-cta::after { display: none; }

.hamburger {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
  transition: background .3s;
}
.hamburger span {
  width: 18px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .3s var(--t), opacity .2s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform .3s var(--t), box-shadow .3s, background .3s, color .3s;
  white-space: nowrap;
}
.btn-primary { background: var(--ink); color: #fff; box-shadow: 0 12px 30px rgba(11, 27, 52, 0.22); }
.btn-primary:hover { background: var(--blue); transform: translateY(-3px); box-shadow: 0 18px 40px var(--blue-glow); }
.btn-secondary { background: var(--blue); color: #fff; box-shadow: 0 12px 30px var(--blue-glow); }
.btn-secondary:hover { background: var(--blue-deep); transform: translateY(-3px); box-shadow: 0 18px 40px rgba(19, 74, 131, 0.45); }
.btn-ghost { background: rgba(255,255,255,0.6); color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { background: #fff; border-color: var(--blue); color: var(--blue); transform: translateY(-3px); }
.btn-white { background: #fff; color: var(--ink); }
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,0.18); }
.btn-outline { border-color: rgba(255,255,255,0.4); color: #fff; background: transparent; }
.btn-outline:hover { background: rgba(255,255,255,0.12); transform: translateY(-3px); }

/* =========================================================
   Section helpers
   ========================================================= */
.section { padding: 100px 0; position: relative; }
.section-head {
  text-align: center;
  margin-bottom: 56px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--blue);
  background: var(--bg-tint);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.section-tag.mini { padding: 6px 12px; font-size: 11px; letter-spacing: 1.8px; }
.section-tag.white { background: rgba(255,255,255,0.18); color: #fff; }
.section h2 {
  font-family: var(--serif-fallback);
  font-size: clamp(28px, 4.5vw, 48px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -1px;
  margin: 0 0 14px;
}
.section-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--muted);
  font-style: italic;
  margin: 0;
}
.grad-text {
  background: linear-gradient(120deg, var(--blue) 0%, var(--blue-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* =========================================================
   HERO — fixed
   ========================================================= */
.hero {
  position: relative;
  padding: 130px 0 70px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
  animation: float 12s var(--t) infinite alternate;
}
.orb-1 { top: -10%; left: -8%; width: 480px; height: 480px; background: radial-gradient(circle, var(--blue-sky), transparent 70%); }
.orb-2 { top: 25%; right: -10%; width: 520px; height: 520px; background: radial-gradient(circle, #cbe8ff, transparent 70%); animation-delay: -4s; }
.orb-3 { bottom: -20%; left: 30%; width: 600px; height: 600px; background: radial-gradient(circle, #e3f2ff, transparent 70%); animation-delay: -7s; }
@keyframes float {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(40px, 50px) scale(1.1); }
}
.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(46,149,223,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,149,223,0.08) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 50px;
  align-items: center;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff;
  padding: 8px 16px 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  margin-bottom: 22px;
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(46,149,223,0.18);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(46,149,223,0.18); }
  50%      { box-shadow: 0 0 0 8px rgba(46,149,223,0); }
}

.hero-logo {
  display: block;
  height: clamp(60px, 9vw, 96px);
  width: auto;
  margin-bottom: 18px;
}
.hero-headline {
  font-family: var(--serif-fallback);
  font-style: italic;
  font-size: clamp(22px, 3.4vw, 36px);
  line-height: 1.15;
  font-weight: 500;
  color: var(--blue-2);
  margin: 0 0 18px;
  max-width: 580px;
}
.hero-tag {
  font-size: clamp(16px, 1.8vw, 20px);
  font-style: italic;
  font-weight: 600;
  color: var(--ink-soft);
  margin: 0 0 14px;
}
.hero-tag .dots { letter-spacing: 4px; color: var(--blue); }
.hero-sub {
  color: var(--muted);
  font-size: 16px;
  max-width: 540px;
  margin: 0 0 28px;
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }

.hero-stats { display: flex; gap: 32px; }
.hero-stats > div { display: flex; flex-direction: column; border-left: 2px solid var(--blue); padding-left: 14px; }
.hero-stats b {
  font-family: var(--serif-fallback);
  font-size: 30px;
  line-height: 1;
  color: var(--ink);
  font-weight: 700;
}
.hero-stats span { font-size: 13px; color: var(--muted); margin-top: 6px; }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 460px;
}
.headset {
  width: 92%;
  max-width: 560px;
  filter: drop-shadow(0 30px 60px rgba(46,149,223,0.18));
  animation: hover 6s var(--t) infinite alternate;
  position: relative;
  z-index: 1;
}
.headset-glow {
  position: absolute;
  width: 90%;
  height: 70%;
  background: radial-gradient(circle, var(--blue-sky), transparent 65%);
  filter: blur(60px);
  opacity: .8;
  z-index: 0;
  animation: pulse-glow 5s ease-in-out infinite alternate;
}
@keyframes hover {
  0%   { transform: translateY(-10px) rotate(-1deg); }
  100% { transform: translateY(10px) rotate(2deg); }
}
@keyframes pulse-glow {
  0%   { opacity: .55; transform: scale(1); }
  100% { opacity: .85; transform: scale(1.08); }
}

.scroll-cue {
  position: absolute;
  bottom: 24px; left: 50%; transform: translateX(-50%);
  width: 24px; height: 38px;
  border: 2px solid var(--ink-soft);
  border-radius: 14px;
  display: flex; justify-content: center; padding-top: 6px;
  opacity: .55;
  transition: opacity .3s;
}
.scroll-cue:hover { opacity: 1; }
.scroll-cue span {
  width: 3px; height: 8px;
  background: var(--ink-soft);
  border-radius: 2px;
  animation: scroll-cue 1.8s var(--t) infinite;
}
@keyframes scroll-cue {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* =========================================================
   ABOUT
   ========================================================= */
.about { background: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.vm-stack { display: flex; flex-direction: column; gap: 22px; }
.vm-card, .vm-banner, .goals-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--t), box-shadow .4s, border-color .4s;
}
.vm-card:hover, .goals-card:hover { transform: translateY(-4px); border-color: var(--blue); box-shadow: var(--shadow-md); }
.vm-icon {
  width: 64px; height: 64px;
  background: var(--bg-tint);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.vm-icon img { width: 52px; height: 52px; object-fit: contain; }
.vm-card h3, .goals-card h3 { font-size: 22px; margin: 0 0 12px; font-weight: 700; }
.vm-card p { margin: 0; color: var(--ink-soft); }
.vm-banner { background: linear-gradient(135deg, var(--blue), var(--blue-2)); color: #fff; text-align: center; border: none; }
.vm-banner p { margin: 0; font-size: 17px; line-height: 1.45; }
.inline-icon { display: inline-block; width: 32px; height: 32px; vertical-align: middle; margin-right: 6px; }
.goals-title { display: flex; align-items: center; gap: 8px; }
.goals-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 22px; }
.goals-list li { padding-left: 18px; border-left: 3px solid var(--blue); }
.goals-list h4 { margin: 0 0 6px; font-style: italic; color: var(--blue-2); font-size: 18px; font-weight: 700; }
.goals-list p { margin: 0; color: var(--ink-soft); font-size: 15px; }

/* =========================================================
   PROBLEM
   ========================================================= */
.problem { background: var(--bg); }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}
.problem-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--t), box-shadow .4s, border-color .4s;
}
.problem-card:hover { transform: translateY(-6px); border-color: var(--blue); box-shadow: var(--shadow-md); }
.pc-icon {
  width: 110px; height: 110px;
  background: var(--bg-tint);
  border-radius: 26px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition: transform .4s var(--t);
}
.pc-icon img { width: 72px; height: 72px; object-fit: contain; }
.problem-card:hover .pc-icon { transform: scale(1.06) rotate(-4deg); }
.problem-card h3 { font-size: 24px; margin: 0 0 10px; font-weight: 800; letter-spacing: -0.5px; }
.problem-card p { color: var(--ink-soft); margin: 0; }

/* Challenges */
.challenges {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.challenges-visual { position: relative; border-radius: 22px; overflow: hidden; }
.challenges-visual img { width: 100%; height: 100%; object-fit: cover; min-height: 380px; }
.challenges-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px;
  background: linear-gradient(transparent, rgba(11,27,52,0.85));
  color: #fff;
}
.challenges-overlay span { display: block; font-style: italic; opacity: .8; }
.challenges-overlay strong { font-size: 22px; font-weight: 800; display: block; margin-top: 4px; }
.challenges-list { display: grid; gap: 14px; }
.ch-head h3 { font-size: 28px; margin: 0; letter-spacing: -0.6px; line-height: 1.15; }
.ch-card {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--bg-tint);
  border-radius: 14px;
  padding: 16px 20px;
  border-left: 4px solid var(--blue);
}
.ch-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  object-fit: contain;
  background: rgba(255,255,255,0.7);
  border-radius: 10px;
  padding: 5px;
}
.ch-card h4 { margin: 0 0 4px; color: var(--blue-2); font-style: italic; font-size: 16px; }
.ch-card p { margin: 0; color: var(--ink-soft); font-size: 14px; }
.ch-quote {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #fff;
  padding: 20px;
  border-radius: 14px;
  margin: 0;
  font-style: italic;
}
.ch-quote b { font-size: 22px; }
.ch-quote cite { display: block; margin-top: 6px; font-size: 13px; opacity: .85; font-style: normal; }

/* =========================================================
   SOLUTION
   ========================================================= */
.solution { background: #fff; }
.tabs { max-width: 1080px; margin: 0 auto; }
.tab-buttons {
  display: flex; gap: 10px; justify-content: center;
  padding: 8px;
  background: var(--bg-tint);
  border-radius: 999px;
  margin: 0 auto 36px;
  width: fit-content;
  flex-wrap: wrap;
}
.tab-btn {
  border: none; background: transparent;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-soft);
  transition: background .3s, color .3s;
}
.tab-btn.active { background: var(--ink); color: #fff; }
.tab-btn:not(.active):hover { background: rgba(255,255,255,0.6); color: var(--blue); }
.tab-panel { display: none; animation: fadeUp .5s var(--t); }
.tab-panel.active { display: block; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
.tab-content {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: center;
  background: var(--bg-tint);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--line);
}
.tab-content img {
  border-radius: 18px;
  background: #fff;
  padding: 24px;
  box-shadow: var(--shadow-md);
  width: 100%;
  max-height: 360px;
  object-fit: contain;
}
.tab-text h3 { font-size: 26px; margin: 0 0 12px; font-style: italic; color: var(--blue-2); font-weight: 700; }
.tab-text > p { color: var(--ink-soft); margin: 0 0 16px; font-size: 16px; }
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.check-list li { padding-left: 28px; position: relative; color: var(--ink); font-size: 14.5px; }
.check-list li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  width: 20px; height: 20px;
  background: var(--blue); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
}

.provides-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin: 36px auto 0;
  max-width: 1080px;
}
.provides { background: #fff; border-radius: var(--radius); padding: 26px; border: 1px solid var(--line); }
.provides h4 { margin: 0 0 18px; color: var(--blue-2); font-size: 16px; font-weight: 700; }
.provides-row { display: flex; gap: 14px; flex-wrap: wrap; }
.provides-item {
  flex: 1; min-width: 130px;
  background: var(--bg-tint);
  border-radius: 14px;
  padding: 18px 12px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-align: center;
  font-size: 13px; font-weight: 500;
}
.provides-item img { width: 86px; height: 86px; object-fit: contain; }
.provides-list { list-style: none; padding: 0; margin: 0 0 18px; }
.provides-list li {
  padding: 8px 0 8px 26px; position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.92);
  font-size: 14px;
}
.provides-list li:last-child { border-bottom: none; }
.provides-list li::before { content: "→"; position: absolute; left: 0; color: var(--blue-sky); font-weight: 700; }
.provides.alt { background: linear-gradient(135deg, var(--ink), var(--blue-deep)); color: #fff; }
.provides.alt h4 { color: #fff; }

.stores-row { display: flex; flex-wrap: wrap; gap: 10px; }
.store-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px; font-weight: 600;
  color: #fff;
  transition: background .3s, transform .3s var(--t);
}
.store-pill:hover { background: rgba(255,255,255,0.22); transform: translateY(-2px); }
.store-pill img { width: 20px; height: 20px; object-fit: contain; }

/* =========================================================
   WHY NOW — equalized cards
   ========================================================= */
.whynow { background: var(--bg); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.why-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 28px 30px;
  border: 1px solid var(--line);
  position: relative;
  transition: transform .4s var(--t), box-shadow .4s, border-color .4s;
  display: flex; flex-direction: column;
  text-align: center;
}
.why-card:hover { transform: translateY(-6px); border-color: var(--blue); box-shadow: var(--shadow-md); }
.why-num {
  position: absolute;
  top: 18px; left: 18px;
  background: var(--bg-tint);
  color: var(--blue);
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px;
}
.why-illustration {
  height: 180px;
  display: flex; align-items: center; justify-content: center;
  margin: 8px auto 22px;
  transition: transform .4s var(--t);
}
.why-illustration img { max-height: 170px; max-width: 100%; width: auto; object-fit: contain; }
.why-card:hover .why-illustration { transform: scale(1.05); }
.why-card h3 { margin: 0 0 10px; font-size: 18px; font-style: italic; color: var(--blue-2); font-weight: 700; }
.why-card p { margin: 0; color: var(--ink-soft); font-size: 14.5px; flex: 1; }

/* =========================================================
   ENGINE
   ========================================================= */
.engine { background: #fff; }
.loop {
  position: relative;
  max-width: 980px;
  margin: 0 auto 60px;
  padding: 60px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 32px;
}
.loop-center {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.loop-pill {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #fff;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 12px 40px var(--blue-glow);
  animation: rotate-pulse 8s linear infinite;
}
@keyframes rotate-pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }

.loop-step {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex; gap: 14px; align-items: flex-start;
  transition: transform .4s var(--t), border-color .3s;
}
.loop-step:hover { border-color: var(--blue); transform: translateY(-4px); }
.loop-step-1 { grid-column: 1; grid-row: 1; }
.loop-step-2 { grid-column: 2; grid-row: 1; }
.loop-step-3 { grid-column: 2; grid-row: 2; }
.loop-step-4 { grid-column: 1; grid-row: 2; }
.ls-icon {
  width: 50px; height: 50px;
  flex-shrink: 0;
  object-fit: contain;
  padding: 6px;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}
.ls-num { display: inline-block; font-family: var(--serif-fallback); color: var(--blue); font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.loop-step h4 { font-size: 20px; margin: 0 0 6px; color: var(--blue-2); font-style: italic; }
.loop-step p { margin: 0; color: var(--ink-soft); font-size: 14px; }

.engine-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}
.ef {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 22px 24px;
  border-top: 4px solid var(--blue);
  transition: transform .3s var(--t), box-shadow .3s;
}
.ef:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.ef h4 { margin: 0 0 6px; color: var(--blue-2); font-style: italic; font-size: 16px; }
.ef p { margin: 0; color: var(--ink-soft); font-size: 14px; }

/* =========================================================
   ANCHORS
   ========================================================= */
.anchors { background: var(--bg); }
.anchors-hub {
  display: flex; flex-direction: column; align-items: center;
  gap: 10px;
  margin: -20px 0 32px;
}
.anchors-hub img { width: 160px; height: auto; }
.anchors-hub span {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #fff;
  padding: 8px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: var(--shadow-md);
}
.anchors-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.anchor-col {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--line);
  transition: transform .4s var(--t), box-shadow .4s;
}
.anchor-col:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.anchor-head {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #fff;
  border-radius: 14px;
  margin-bottom: 22px;
}
.anchor-head img { width: 72px; height: 72px; object-fit: contain; background: #fff; border-radius: 14px; padding: 8px; flex-shrink: 0; }
.anchor-head h3 { margin: 0; font-size: 19px; font-style: italic; font-weight: 700; line-height: 1.2; }
.ah-sub { opacity: .85; font-size: 12px; }
.anchor-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.anchor-list li {
  background: var(--bg-tint);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--ink-soft);
  transition: background .3s, transform .3s var(--t);
}
.anchor-list li:hover { background: #d6ecff; transform: translateX(4px); }
.anchor-list strong { color: var(--blue-2); font-weight: 700; font-style: italic; }
.anchor-serves { margin: 20px 0 0; font-size: 13px; color: var(--muted); font-style: italic; }
.anchor-note {
  background: linear-gradient(135deg, var(--ink), var(--blue-deep));
  color: #fff;
  text-align: center;
  border-radius: var(--radius-lg);
  padding: 26px;
  margin-top: 28px;
}
.anchor-note p { margin: 0; font-size: 16px; }
.anchor-note strong { color: var(--blue-sky); }

/* =========================================================
   MVP — fixed cropping
   ========================================================= */
.mvp { background: #fff; }
.mvp-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 32px; }
.mvp-meta { display: flex; flex-direction: column; gap: 16px; }
.mvp-stat { background: var(--bg); border-radius: var(--radius); padding: 22px; border: 1px solid var(--line); }
.ms-icons {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 14px;
  min-height: 96px;
  justify-content: flex-start;
}
.ms-icons.engines img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}
.ms-icons.platforms img {
  height: 88px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
  margin-left: 0;
  transform: scale(1.15);
  transform-origin: left center;
}
.ms-icons:not(.engines):not(.platforms) img {
  width: 88px; height: 88px;
  object-fit: contain;
}
.mvp-stat h4 { margin: 0 0 6px; color: var(--blue-2); font-style: italic; font-size: 16px; }
.mvp-stat p { margin: 0; color: var(--ink-soft); font-size: 13.5px; }

.mvp-timeline {
  display: flex; flex-direction: column; gap: 10px;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  border-radius: var(--radius);
  padding: 22px;
  color: #fff;
}
.tl-step {
  position: relative;
  padding: 10px 14px 10px 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  font-weight: 600;
  font-size: 13.5px;
  opacity: .7;
}
.tl-step::before {
  content: "";
  position: absolute;
  left: 14px; top: 50%;
  width: 10px; height: 10px;
  background: rgba(255,255,255,0.6);
  border-radius: 50%;
  transform: translateY(-50%);
}
.tl-step.active { background: rgba(255,255,255,0.25); opacity: 1; }
.tl-step.active::before { background: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,0.3); }

.mvp-builds { display: flex; flex-direction: column; gap: 22px; }
.build-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .4s var(--t), box-shadow .4s, border-color .4s;
}
.build-card:hover { transform: translateY(-4px); border-color: var(--blue); box-shadow: var(--shadow-md); }
.build-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  background: var(--line);
}
.build-imgs img {
  width: 100%; height: 160px;
  object-fit: cover;
  object-position: center;
  background: #fff;
}
/* MVP build images — both now fill the space evenly */
.build-imgs img { object-fit: cover; object-position: center; height: 180px; background: #fff; }
.build-imgs.cataract img { object-position: center 30%; }
.build-imgs.cabg img { object-position: center; }
.build-body { padding: 22px 26px; }
.build-title { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.build-emoji { width: 36px; height: 36px; object-fit: contain; background: var(--bg-tint); border-radius: 10px; padding: 4px; }
.build-body h3 { margin: 0; flex: 1; font-size: 19px; font-style: italic; color: var(--blue-2); }
.build-body h3 span { color: var(--muted); font-style: normal; font-size: 13px; font-weight: 400; }
.build-body ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 6px; }
.build-body li { padding-left: 18px; position: relative; font-size: 13.5px; color: var(--ink-soft); }
.build-body li::before { content: "•"; position: absolute; left: 0; color: var(--blue); font-weight: 800; }

/* =========================================================
   MARKET — TAM/SAM/SOM with dashed lines
   ========================================================= */
.market { background: var(--bg); }

.market-diagram {
  position: relative;
  margin-bottom: 36px;
}
.mkt-svg {
  width: 100%;
  height: auto;
  display: block;
}
.mkt-svg .mkt-card {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow-sm);
  font-family: var(--sans-fallback);
  height: 100%;
}
.mkt-svg .mkt-card h4 { margin: 0 0 4px; font-style: italic; color: var(--blue-2); font-size: 16px; font-weight: 700; }
.mkt-svg .mkt-card p { margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.45; }

.mkt-rows-fallback { display: none; }
.mkt-rows-fallback .mkt-card {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  border-radius: 14px;
  padding: 16px 20px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
}
.mkt-rows-fallback .mkt-card h4 { margin: 0 0 6px; font-style: italic; color: var(--blue-2); font-size: 17px; font-weight: 700; }
.mkt-rows-fallback .mkt-card p { margin: 0; color: var(--ink-soft); font-size: 13.5px; }

/* Budgets pill row */
.budgets {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #fff;
  border-radius: 14px;
  padding: 18px 28px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
  justify-content: center;
  margin-bottom: 50px;
}
.budget-tag {
  font-weight: 700;
  font-style: italic;
  font-size: 15px;
  margin-right: 4px;
}
.budget-item { font-size: 14.5px; color: rgba(255,255,255,0.95); }
.budget-item b { color: #fff; font-weight: 700; }
.budget-sep {
  width: 6px; height: 6px;
  background: rgba(255,255,255,0.6);
  border-radius: 50%;
  display: inline-block;
}

/* Forces — 5 variable flower with labels */
.forces {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-top: 30px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--line);
  align-items: center;
}
.forces-viz {
  position: relative;
  aspect-ratio: 1;
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}
.forces-flower {
  position: absolute;
  inset: 16%;
  width: 68%;
  height: 68%;
  margin: 0;
  object-fit: contain;
  filter: drop-shadow(0 12px 30px rgba(46,149,223,0.22));
}
.petal {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px 12px 8px 30px;
  font-size: 12.5px;
  line-height: 1.25;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  min-width: 130px;
  max-width: 180px;
  text-align: left;
}
.petal b {
  position: absolute;
  left: 6px; top: 50%;
  transform: translateY(-50%);
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 800;
  font-style: normal;
}
.petal strong { display: block; color: var(--blue-2); font-style: italic; font-weight: 700; font-size: 13px; }
.petal em { display: block; color: var(--muted); font-size: 11.5px; font-style: italic; margin-top: 2px; }

.petal-1 { top: -2%; left: 50%; transform: translateX(-50%); }
.petal-2 { top: 32%; right: -4%; }
.petal-3 { bottom: -2%; right: 12%; }
.petal-4 { bottom: -2%; left: 12%; }
.petal-5 { top: 32%; left: -4%; }

.forces-models { display: grid; gap: 16px; }
.fm-card {
  border-radius: 14px;
  padding: 20px 22px;
  border: 1px solid transparent;
}
.fm-card h5 {
  margin: 0 0 8px;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  background: var(--ink);
  display: inline-block;
  padding: 6px 12px;
  border-radius: 8px;
}
.fm-card.b2g h5 { background: var(--blue); }
.fm-card p { margin: 0 0 8px; font-size: 13.5px; color: var(--ink-soft); }
.fm-card p:last-child { margin-bottom: 0; }
.fm-active { color: var(--blue) !important; font-style: italic; font-weight: 600; font-size: 13px !important; }
.market-foot {
  text-align: center;
  font-size: 15px;
  color: var(--ink-soft);
  font-style: italic;
  margin: 36px 0 0;
}

/* =========================================================
   TRACTION
   ========================================================= */
.traction { background: #fff; }
.uni-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-bottom: 32px;
}
.uni-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--line);
  transition: transform .4s var(--t), box-shadow .4s, border-color .4s;
  position: relative;
}
.uni-card:hover { transform: translateY(-6px); border-color: var(--blue); box-shadow: var(--shadow-md); }
.uni-logo {
  height: 56px;
  width: auto;
  max-width: 180px;
  margin: 0 auto 16px;
  display: block;
  object-fit: contain;
}
.uni-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 18px;
}
.uni-photos img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  object-position: center;
  transition: transform .5s var(--t);
}
.uni-card:hover .uni-photos img { transform: scale(1.04); }
.uni-card header { margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px dashed var(--line-strong); }
.uni-card h3 { margin: 0 0 4px; font-size: 20px; font-style: italic; color: var(--blue-2); }
.uni-card header span { display: block; color: var(--muted); font-size: 13px; }
.uni-card ul { list-style: none; padding: 0; margin: 0; }
.uni-card li {
  font-size: 13.5px;
  color: var(--ink-soft);
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}
.uni-card li:last-child { border-bottom: none; }
.uni-card li b { color: var(--ink); font-weight: 600; }

.traction-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  background: linear-gradient(135deg, var(--ink), var(--blue-deep));
  border-radius: var(--radius-lg);
  padding: 28px;
  color: #fff;
}
.traction-summary > div {
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.12);
  padding: 4px 6px;
}
.traction-summary > div:last-child { border-right: none; }
.traction-summary b {
  font-family: var(--serif-fallback);
  font-size: 34px;
  display: block;
  color: var(--blue-sky);
  font-weight: 800;
}
.traction-summary span { font-size: 13px; opacity: .8; font-style: italic; }

/* =========================================================
   ROI / BUSINESS MODEL — redesigned (flow diagram)
   ========================================================= */
.roi { background: var(--bg); }
.roi-flow {
  margin-bottom: 36px;
}
.roi-svg-full {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 30px rgba(11, 27, 52, 0.08));
}
.svg-foot {
  font-family: var(--sans-fallback);
  font-size: 12px;
  line-height: 1.45;
  color: #fff;
  height: 100%;
  display: flex;
  align-items: flex-start;
}
.svg-foot.dark { color: rgba(255,255,255,0.92); }
.svg-foot.blue { color: rgba(255,255,255,0.95); }
.svg-split {
  font-family: var(--sans-fallback);
  color: #fff;
  font-size: 15px;
  line-height: 1.45;
  height: 100%;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.svg-split strong { font-size: 18px; font-weight: 800; display: block; margin-top: 2px; }

/* Fallback stacked version for narrow screens */
.roi-fallback {
  display: none;
  gap: 16px;
  flex-direction: column;
  align-items: stretch;
}
.roi-fallback .roi-card {
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  border: none;
  color: #fff;
}
.roi-fallback .roi-card.dark { background: linear-gradient(135deg, #364d6e, #1f3357); }
.roi-fallback .roi-card.blue { background: linear-gradient(135deg, var(--blue), var(--blue-2)); }
.roi-fallback .roi-card h4 { margin: 0; font-size: 15px; letter-spacing: 1.3px; text-transform: uppercase; font-weight: 700; }
.roi-fallback .roi-card .roi-sub { display: block; font-style: italic; font-size: 12px; margin: 4px 0 10px; opacity: .8; }
.roi-fallback .roi-card p { margin: 0; font-size: 13px; }
.roi-fallback .roi-platform-mobile {
  width: 140px; height: 140px;
  background: #fff;
  border: 3px solid var(--blue);
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px;
  box-shadow: 0 16px 40px var(--blue-glow);
  text-align: center;
  padding: 14px;
  margin: 0 auto;
}
.roi-fallback .roi-platform-mobile img { width: 80%; height: auto; }
.roi-fallback .roi-platform-mobile span {
  font-style: italic; font-weight: 700; color: var(--blue-2); font-size: 13px;
  background: var(--bg-tint); padding: 3px 10px; border-radius: 999px;
}

.roi-fallback .roi-split {
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14.5px;
  line-height: 1.4;
  min-height: 88px;
  color: #fff;
  text-align: center;
}
.roi-fallback .roi-split strong { font-size: 16px; }
.roi-fallback .roi-split.dark { background: linear-gradient(135deg, #364d6e, #1f3357); }
.roi-fallback .roi-split.blue { background: linear-gradient(135deg, var(--blue), var(--blue-2)); }

.roi-extras {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 28px;
}
.roi-rev, .roi-math {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--line);
}
.roi-rev h4, .roi-math h4 {
  margin: 0 0 12px;
  font-style: italic;
  color: var(--blue-2);
  font-size: 18px;
}
.roi-rev p { margin: 0; color: var(--ink-soft); font-size: 14.5px; }
.roi-eq {
  font-family: var(--serif-fallback);
  font-size: 17px;
  background: var(--bg-tint);
  padding: 14px 18px;
  border-radius: 12px;
  margin: 0 0 12px;
  text-align: center;
  color: var(--ink);
}
.roi-eq b { font-size: 22px; color: var(--blue-2); }
.roi-split-line { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
.rsl {
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 13px;
  text-align: center;
  color: #fff;
}
.rsl.dark { background: linear-gradient(135deg, #364d6e, #1f3357); }
.rsl.blue { background: linear-gradient(135deg, var(--blue), var(--blue-2)); }
.roi-note { margin: 0; font-size: 13px; color: var(--muted); font-style: italic; text-align: center; }
.roi-foot { text-align: center; font-size: 17px; color: var(--ink-soft); font-style: italic; margin: 0; }
.roi-foot strong { color: var(--ink); }

/* =========================================================
   MOAT
   ========================================================= */
.moat { background: #fff; }
.moat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.moat-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--t), box-shadow .4s, border-color .4s;
}
.moat-card:hover { transform: translateY(-6px); border-color: var(--blue); box-shadow: var(--shadow-md); }
.moat-img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  object-position: center;
  margin-bottom: 22px;
  filter: drop-shadow(0 12px 28px rgba(46,149,223,0.28));
  transform: scale(1.15);
  transform-origin: center;
  transition: transform .4s var(--t);
}
.moat-card:hover .moat-img { transform: scale(1.22); }
.moat-num {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #fff;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px;
  margin-bottom: 14px;
  box-shadow: 0 8px 24px var(--blue-glow);
}
.moat-card h3 { margin: 0 0 8px; font-size: 18px; font-style: italic; color: var(--blue-2); }
.moat-card p { margin: 0; color: var(--ink-soft); font-size: 14px; }

/* =========================================================
   ROADMAP
   ========================================================= */
.roadmap { background: var(--bg); }
.roadmap-tabs {
  display: flex; gap: 8px; justify-content: center;
  padding: 6px;
  background: #fff;
  border-radius: 999px;
  margin: 0 auto 36px;
  width: fit-content;
  border: 1px solid var(--line);
}
.rm-tab {
  border: none; background: transparent;
  padding: 10px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-soft);
}
.rm-tab.active { background: var(--ink); color: #fff; }
.rm-panel { display: none; animation: fadeUp .5s var(--t); }
.rm-panel.active { display: block; }
.rm-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 36px; align-items: center; }
.rm-map { width: 100%; max-width: 460px; margin: 0 auto; filter: drop-shadow(0 12px 30px rgba(46,149,223,0.16)); }
.timeline { display: grid; gap: 18px; }
.tl-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  transition: transform .3s var(--t), box-shadow .3s;
}
.tl-item:hover { transform: translateX(6px); box-shadow: var(--shadow-sm); }
.tl-year {
  display: inline-block;
  background: var(--bg-tint);
  color: var(--blue-2);
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 10px;
}
.tl-item h4 { margin: 0 0 6px; font-size: 18px; font-style: italic; color: var(--ink); }
.tl-item p { margin: 0; color: var(--ink-soft); font-size: 14px; }

/* =========================================================
   TEAM — line by line layout
   ========================================================= */
.team {
  background: linear-gradient(180deg, #fff 0%, #fff 78%, #f6f8fb 100%);
}
.team-row-block {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 26px;
  align-items: center;
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  border: 1px solid var(--line);
  margin-bottom: 18px;
  transition: box-shadow .3s;
}
.team-row-block:hover { box-shadow: var(--shadow-md); }
.trb-label {
  font-family: var(--serif-fallback);
  font-size: 22px;
  font-style: italic;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.1;
}
.trb-label em { font-style: italic; }
.trb-people {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  justify-items: center;
}
.trb-people.three { grid-template-columns: repeat(3, 1fr); }
.trb-people.four { grid-template-columns: repeat(4, 1fr); }
.member {
  text-align: center;
  width: 100%;
}
.avatar-img {
  width: 90px; height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 10px;
  display: block;
  border: 3px solid #fff;
  box-shadow: 0 8px 22px var(--blue-glow);
  background: var(--bg-tint);
  transition: transform .3s var(--t);
}
.member:hover .avatar-img { transform: scale(1.06); }
.member.featured .avatar-img { border-color: var(--blue); box-shadow: 0 10px 28px rgba(46,149,223,0.6); }
.member b { display: block; font-size: 13.5px; font-style: italic; color: var(--blue-2); line-height: 1.2; }
.member span { display: block; font-size: 11.5px; color: var(--muted); margin-top: 4px; line-height: 1.25; }

/* Ambassadors row */
.amb-block { align-items: flex-start; }
.amb-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-items: flex-start;
}
.amb-country {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--line);
  padding: 14px;
  position: relative;
}
.amb-flag {
  position: absolute;
  top: -16px; left: 14px;
  width: 36px; height: 36px;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center;
}
.amb-flag img { width: 100%; height: 100%; object-fit: cover; }
.amb-flag.jordan { background: #fff; font-size: 22px; }
.amb-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
  gap: 8px;
  margin-top: 24px;
}
.amb-member { text-align: center; }
.amb-member img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 4px;
  display: block;
  border: 2px solid #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--t);
}
.amb-member:hover img { transform: scale(1.1); }
.amb-member span { display: block; font-size: 10.5px; color: var(--ink-soft); line-height: 1.2; }

/* =========================================================
   AUDIENCE FORK - B2B vs B2G doors
   ========================================================= */
.fork { background: linear-gradient(180deg, var(--bg) 0%, #fff 100%); }
.fork-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.fork-door {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px 32px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .4s var(--t), border-color .3s, box-shadow .4s;
  position: relative;
  overflow: hidden;
  color: var(--ink);
}
.fork-door::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(46,149,223,0.05) 100%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.fork-door:hover {
  transform: translateY(-8px);
  border-color: var(--blue);
  box-shadow: 0 24px 60px rgba(46,149,223,0.18);
}
.fork-door:hover::before { opacity: 1; }
.fork-door.gov { background: linear-gradient(135deg, var(--ink) 0%, var(--blue-deep) 100%); color: #fff; border-color: transparent; }
.fork-door.gov:hover { box-shadow: 0 24px 60px rgba(11,27,52,0.4); }
.fd-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--bg-tint);
  border: 2px solid var(--blue);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fork-door.gov .fd-icon { background: rgba(255,255,255,0.12); border-color: var(--blue-sky); }
.fd-icon img { width: 30px; height: 30px; object-fit: contain; }
.fork-door.gov .fd-icon img { filter: brightness(0) invert(1); }
.fd-tag {
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  color: var(--blue);
  background: var(--bg-tint);
  padding: 5px 12px;
  border-radius: 999px;
  align-self: flex-start;
}
.fork-door.gov .fd-tag { background: rgba(174,220,255,0.15); color: var(--blue-sky); }
.fork-door h3 {
  font-family: var(--serif-fallback);
  font-size: clamp(24px, 3vw, 30px);
  font-style: italic;
  margin: 0;
  line-height: 1.2;
}
.fd-pitch { margin: 0; font-size: 15.5px; line-height: 1.55; }
.fork-door.gov .fd-pitch { color: rgba(255,255,255,0.92); }
.fd-bullets { list-style: none; padding: 0; margin: 6px 0 14px; display: grid; gap: 8px; }
.fd-bullets li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  color: var(--ink-soft);
}
.fork-door.gov .fd-bullets li { color: rgba(255,255,255,0.85); }
.fd-bullets li::before {
  content: "›";
  position: absolute; left: 0; top: -2px;
  color: var(--blue);
  font-weight: 700;
  font-size: 18px;
}
.fork-door.gov .fd-bullets li::before { color: var(--blue-sky); }
.fd-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700;
  font-size: 15px;
  color: var(--blue);
  margin-top: auto;
  padding-top: 6px;
  border-top: 1px dashed var(--line-strong);
}
.fork-door.gov .fd-cta { color: var(--blue-sky); border-top-color: rgba(255,255,255,0.18); }
.fork-door:hover .fd-cta { transform: translateX(4px); transition: transform .3s; }
.fork-note {
  text-align: center;
  font-size: 14.5px;
  color: var(--muted);
  margin: 28px 0 0;
}
.fork-note a { color: var(--blue); font-weight: 600; }
.fork-note a:hover { text-decoration: underline; }

/* =========================================================
   SOLUTION — always-visible chamber summary cards
   ========================================================= */
.solution-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto 28px;
}
.ss-card {
  background: var(--bg-tint);
  border-radius: 14px;
  padding: 18px 22px;
  border-left: 4px solid var(--blue);
}
.ss-card h4 { margin: 0 0 6px; color: var(--blue-2); font-style: italic; font-size: 16px; font-weight: 700; }
.ss-card p { margin: 0; color: var(--ink-soft); font-size: 13.5px; line-height: 1.5; }

/* =========================================================
   LEAD-CAPTURE FORM (Netlify Forms compatible)
   ========================================================= */
.lead-form { display: grid; gap: 16px; text-align: left; margin-top: 20px; }
.lf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lf-field { display: flex; flex-direction: column; gap: 6px; }
.lf-field > span {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--blue-2);
}
.lf-field input, .lf-field select, .lf-field textarea {
  font: inherit;
  font-size: 14.5px;
  color: var(--ink);
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  background: #fff;
  border-radius: 10px;
  transition: border-color .25s, box-shadow .25s;
  resize: vertical;
  width: 100%;
}
.lf-field input:focus, .lf-field select:focus, .lf-field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(46,149,223,0.15);
}
.lead-form .btn { align-self: flex-start; margin-top: 4px; }
.lf-alt { margin: 8px 0 0; font-size: 13px; color: var(--muted); text-align: center; }
.lf-alt a { color: var(--blue); font-weight: 600; }
.lf-alt a:hover { text-decoration: underline; }
.hp { position: absolute; left: -9999px; }

/* =========================================================
   SUB-PAGE STYLES (universities, ministries, case-studies, security, how-to-buy)
   ========================================================= */
.page-sub .sub-hero {
  position: relative;
  padding: 150px 0 80px;
  overflow: hidden;
  text-align: center;
}
.sub-hero-inner { position: relative; z-index: 2; max-width: 920px; margin: 0 auto; }
.sub-hero-title {
  font-family: var(--serif-fallback);
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -1.2px;
  margin: 18px 0 22px;
  color: var(--ink);
}
.sub-hero-sub {
  font-size: clamp(16px, 1.9vw, 19px);
  color: var(--ink-soft);
  margin: 0 auto 32px;
  max-width: 760px;
  line-height: 1.55;
}
.sub-hero .hero-cta { justify-content: center; }
.sub-hero.gov { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-tint) 100%); }

/* Pilot → Prove → Scale flow */
.pilot-flow { background: var(--bg); }
.flow-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: stretch;
  max-width: 1080px; margin: 0 auto;
}
.flow-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  position: relative;
  transition: transform .4s var(--t), border-color .3s, box-shadow .4s;
}
.flow-step:hover { transform: translateY(-6px); border-color: var(--blue); box-shadow: var(--shadow-md); }
.fs-num {
  display: inline-block;
  font-family: var(--serif-fallback);
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 10px;
  background: var(--bg-tint);
  padding: 4px 12px;
  border-radius: 999px;
}
.flow-step h3 { font-size: 19px; font-style: italic; color: var(--blue-2); margin: 0 0 8px; }
.flow-step p { margin: 0; font-size: 14px; color: var(--ink-soft); line-height: 1.55; }
.flow-arrow {
  align-self: center;
  font-size: 30px;
  color: var(--blue);
  font-weight: 800;
  opacity: .55;
}

/* Codesign 2-col */
.codesign { background: #fff; }
.codesign-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}
.codesign-grid h2 { font-size: clamp(28px, 4vw, 40px); margin: 12px 0 16px; line-height: 1.15; }
.codesign-grid p { color: var(--ink-soft); margin: 0 0 14px; font-size: 16px; }
.codesign-visual { display: flex; align-items: center; justify-content: center; }
.codesign-visual img {
  border-radius: var(--radius-lg);
  background: var(--bg-tint);
  padding: 30px;
  width: 100%; max-width: 460px;
  box-shadow: var(--shadow-md);
}

/* Earn 2-col + revenue split bar */
.earn { background: var(--bg); }
.earn-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  max-width: 980px; margin: 0 auto 28px;
}
.earn-card {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--ink-soft);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.earn-card h3 { margin: 0 0 10px; color: var(--ink); font-size: 20px; font-style: italic; }
.earn-card p { margin: 0; color: var(--ink-soft); font-size: 15px; }
.earn-card.blue { border-left-color: var(--blue); }
.earn-card.blue h3 { color: var(--blue-2); }

.rev-split { max-width: 980px; margin: 36px auto 0; text-align: center; }
.rs-label { font-size: 12px; font-weight: 700; letter-spacing: 2px; color: var(--blue); }
.rs-bar {
  display: flex; gap: 6px;
  margin: 14px 0 10px;
  background: var(--line);
  border-radius: 999px;
  padding: 6px;
}
.rs-uni, .rs-mv {
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14.5px;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.rs-uni { background: linear-gradient(135deg, #364d6e, #1f3357); }
.rs-mv { background: linear-gradient(135deg, var(--blue), var(--blue-2)); }
.rs-uni strong, .rs-mv strong { margin-left: 6px; font-size: 16px; }
.rs-note { font-size: 13px; color: var(--muted); font-style: italic; margin: 6px 0 0; }

/* ROI Calculator */
.roi-calc { background: #fff; }
.calc {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  max-width: 1080px;
  margin: 0 auto;
}
.calc-inputs { display: flex; flex-direction: column; gap: 22px; }
.calc-field { display: flex; flex-direction: column; gap: 6px; }
.calc-field > span { font-size: 13.5px; color: var(--ink-soft); }
.calc-field > span b { color: var(--ink); font-weight: 700; }
.calc-field input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--bg-tint) 0%);
  outline: none;
  cursor: pointer;
}
.calc-field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--blue);
  cursor: grab;
  box-shadow: 0 4px 12px var(--blue-glow);
}
.calc-field input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--blue);
  cursor: grab;
}
.calc-field output {
  font-family: var(--serif-fallback);
  font-size: 18px;
  font-weight: 700;
  color: var(--blue-2);
  margin-top: 2px;
}

.calc-output { display: flex; flex-direction: column; gap: 20px; }
.co-total {
  background: linear-gradient(135deg, var(--ink), var(--blue-deep));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  text-align: center;
}
.co-label { display: block; font-size: 12px; letter-spacing: 1.8px; color: rgba(255,255,255,0.75); text-transform: uppercase; }
.co-value {
  display: block;
  font-family: var(--serif-fallback);
  font-size: clamp(34px, 5vw, 48px);
  font-weight: 800;
  color: var(--blue-sky);
  letter-spacing: -1px;
  margin: 4px 0;
}
.co-formula { display: block; font-size: 13px; color: rgba(255,255,255,0.7); font-style: italic; }

.co-bar {
  display: flex; gap: 5px;
  background: var(--line);
  border-radius: 999px;
  padding: 5px;
}
.co-uni-bar, .co-mv-bar {
  padding: 14px 18px;
  border-radius: 999px;
  color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: flex 0.3s;
}
.co-uni-bar { background: linear-gradient(135deg, #364d6e, #1f3357); }
.co-mv-bar { background: linear-gradient(135deg, var(--blue), var(--blue-2)); }
.co-bar-label { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; opacity: .85; }
.co-bar-value { font-family: var(--serif-fallback); font-size: 17px; font-weight: 800; margin-top: 2px; }
.co-note { font-size: 12.5px; color: var(--muted); font-style: italic; margin: 6px 0 0; text-align: center; }

.co-payback {
  background: var(--bg-tint);
  border-radius: 14px;
  padding: 16px 22px;
  text-align: center;
}
.co-payback span { display: block; font-size: 12.5px; letter-spacing: 1.5px; color: var(--blue); text-transform: uppercase; font-weight: 700; }
.co-payback strong { display: block; font-family: var(--serif-fallback); font-size: 22px; color: var(--ink); margin: 4px 0; }
.co-payback em { display: block; font-size: 13px; color: var(--ink-soft); }
.calc-foot { text-align: center; margin: 24px 0 0; font-size: 14px; color: var(--muted); font-style: italic; }
.calc-foot a { color: var(--blue); font-weight: 700; }

/* Proof strip card */
.proof-strip { background: var(--bg); }
.proof-card {
  background: linear-gradient(135deg, var(--ink), var(--blue-deep));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  align-items: center;
}
.proof-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.proof-stats > div {
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.12);
  padding: 4px 6px;
}
.proof-stats > div:last-child { border-right: none; }
.proof-stats b {
  font-family: var(--serif-fallback);
  font-size: 30px;
  display: block;
  color: var(--blue-sky);
  font-weight: 800;
}
.proof-stats span { font-size: 12.5px; opacity: .82; font-style: italic; line-height: 1.3; display: block; margin-top: 4px; }

.proof-cta h3 { margin: 0 0 8px; font-style: italic; font-size: 22px; color: #fff; }
.proof-cta p { margin: 0 0 14px; color: rgba(255,255,255,0.85); font-size: 14px; }
.proof-cta .btn-ghost { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); color: #fff; }
.proof-cta .btn-ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* "Book / Brief" CTA section */
.book {
  background: linear-gradient(135deg, #051a35 0%, var(--blue-deep) 60%, var(--blue-2) 100%);
  color: #fff;
  text-align: center;
}
.book h2 { color: #fff; }
.book .section-sub.light { color: rgba(255,255,255,0.85); }
.book-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }

/* Cascade diagram */
.cascade { background: #fff; border-radius: var(--radius-lg); padding: 28px; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.cascade-svg { width: 100%; height: auto; display: block; }

/* Strategy alignment */
.strategy { background: var(--bg); }
.strategy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.strat-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  transition: transform .4s var(--t), box-shadow .4s, border-color .4s;
}
.strat-card:hover { transform: translateY(-5px); border-color: var(--blue); box-shadow: var(--shadow-md); }
.strat-flag { display: block; font-size: 32px; margin-bottom: 14px; }
.strat-card h3 { margin: 0 0 10px; font-size: 19px; font-style: italic; color: var(--blue-2); }
.strat-card p { margin: 0; color: var(--ink-soft); font-size: 14.5px; line-height: 1.55; }
.strat-card strong { color: var(--ink); }

/* Equity 2-col */
.equity { background: #fff; }
.equity-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}
.equity-grid h2 { font-size: clamp(28px, 4vw, 40px); margin: 12px 0 16px; line-height: 1.15; }
.equity-grid p { color: var(--ink-soft); margin: 0 0 14px; font-size: 16px; }
.equity-visual { display: flex; align-items: center; justify-content: center; }
.equity-visual img { width: 100%; max-width: 320px; height: auto; }

/* Outcomes 3-col */
.outcomes { background: var(--bg); }
.out-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.out-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--blue);
  transition: transform .3s var(--t), box-shadow .3s;
}
.out-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.out-card h3 { margin: 0 0 8px; font-size: 17px; font-style: italic; color: var(--blue-2); }
.out-card p { margin: 0; font-size: 14px; color: var(--ink-soft); }

/* Sovereignty */
.sovereignty { background: #fff; }
.sov-card {
  background: linear-gradient(135deg, var(--ink), var(--blue-deep));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
.sov-text h3 { margin: 12px 0 8px; font-style: italic; font-size: 24px; color: #fff; }
.sov-text p { margin: 0; color: rgba(255,255,255,0.85); font-size: 15px; }

/* Quotes */
.quotes { background: var(--bg); }
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto;
}
.quote-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  margin: 0;
  position: relative;
}
.quote-card::before {
  content: """;
  position: absolute;
  top: -10px; left: 22px;
  font-family: serif;
  font-size: 80px;
  color: var(--blue);
  line-height: 1;
  opacity: 0.5;
}
.quote-card.placeholder { background: repeating-linear-gradient(45deg, #fff, #fff 10px, var(--bg) 10px, var(--bg) 20px); border-style: dashed; }
.quote-card p { font-style: italic; color: var(--ink); font-size: 15.5px; line-height: 1.55; margin: 0 0 12px; }
.quote-card cite { font-style: normal; font-weight: 700; color: var(--blue-2); font-size: 13.5px; }
.quotes-note { text-align: center; color: var(--muted); font-size: 13px; font-style: italic; margin: 24px 0 0; }

/* Security accordions */
.sec-grid { background: var(--bg); }
.acc-wrap { display: grid; gap: 12px; max-width: 920px; margin: 0 auto; }
.acc-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
}
.acc-item[open] { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.acc-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex; align-items: center; gap: 14px;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
}
.acc-item summary::-webkit-details-marker { display: none; }
.acc-num {
  font-family: var(--serif-fallback);
  color: var(--blue);
  font-weight: 800;
  font-size: 14px;
  background: var(--bg-tint);
  padding: 4px 10px;
  border-radius: 999px;
  flex-shrink: 0;
}
.acc-title { flex: 1; font-style: italic; color: var(--blue-2); }
.acc-tag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  padding: 3px 10px;
  border-radius: 999px;
}
.acc-tag.confirm { background: #fef3e3; color: #b87a16; }
.acc-tag.confirmed { background: #e3f5e8; color: #1b7a3c; }
.acc-tag.roadmap { background: var(--bg-tint); color: var(--blue-2); }
.acc-arrow { color: var(--ink-soft); transition: transform .3s; }
.acc-item[open] .acc-arrow { transform: rotate(180deg); }
.acc-body {
  padding: 0 22px 22px 60px;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.acc-body p { margin: 0 0 12px; }
.acc-body ul { margin: 0 0 12px; padding-left: 20px; }
.acc-body li { margin-bottom: 4px; }
.acc-todo {
  background: #fef9e8;
  border-left: 3px solid #d6a514;
  padding: 8px 14px;
  font-size: 12.5px;
  font-style: italic;
  color: #7a5d0d;
  border-radius: 6px;
  margin-top: 14px;
}

/* How-to-buy 2-col B2B/B2G */
.buy-cols { background: #fff; }
.buy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.buy-col {
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex; flex-direction: column;
  gap: 20px;
  border: 1px solid var(--line);
  transition: box-shadow .4s, border-color .4s;
}
.buy-col.uni { background: var(--bg); }
.buy-col.gov { background: linear-gradient(135deg, var(--ink), var(--blue-deep)); color: #fff; border-color: transparent; }
.buy-col:hover { box-shadow: var(--shadow-lg); }
.buy-col h2 { font-size: clamp(24px, 3vw, 32px); margin: 6px 0 4px; line-height: 1.15; color: inherit; }
.buy-col.gov h2 { color: #fff; }
.bc-tag {
  font-size: 11.5px; font-weight: 700; letter-spacing: 2px;
  background: var(--bg-tint); color: var(--blue);
  padding: 6px 12px; border-radius: 999px; align-self: flex-start;
}
.buy-col.gov .bc-tag { background: rgba(174,220,255,0.15); color: var(--blue-sky); }
.bc-lead { margin: 0; font-size: 15px; color: var(--ink-soft); font-style: italic; }
.buy-col.gov .bc-lead { color: rgba(255,255,255,0.85); }
.bc-section { padding-top: 12px; border-top: 1px solid var(--line-strong); }
.buy-col.gov .bc-section { border-top-color: rgba(255,255,255,0.15); }
.bc-section h3 {
  margin: 0 0 10px;
  font-size: 13.5px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 700;
}
.buy-col.gov .bc-section h3 { color: var(--blue-sky); }
.bc-section p { margin: 0; color: var(--ink-soft); font-size: 14.5px; }
.buy-col.gov .bc-section p { color: rgba(255,255,255,0.92); }
.bc-list, .bc-steps { margin: 0; padding-left: 0; list-style: none; display: grid; gap: 8px; }
.bc-list li, .bc-steps li {
  padding-left: 26px;
  position: relative;
  font-size: 14px;
  color: var(--ink-soft);
}
.buy-col.gov .bc-list li, .buy-col.gov .bc-steps li { color: rgba(255,255,255,0.92); }
.bc-list li::before {
  content: "✓";
  position: absolute; left: 0; top: 1px;
  width: 18px; height: 18px;
  background: var(--blue); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700;
}
.bc-steps { counter-reset: step; }
.bc-steps li { counter-increment: step; }
.bc-steps li::before {
  content: counter(step);
  position: absolute; left: 0; top: 0;
  width: 20px; height: 20px;
  background: var(--blue-2); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800;
}
.bc-rfp {
  background: rgba(174,220,255,0.12);
  border: 1px dashed var(--blue-sky);
  border-radius: 14px;
  padding: 16px 18px;
}
.bc-rfp h4 { margin: 0 0 6px; font-size: 14px; color: var(--blue-sky); }
.bc-rfp p { margin: 0 0 10px; font-size: 13px; color: rgba(255,255,255,0.85); }
.bc-rfp .btn-ghost { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.3); }
.bc-rfp .btn-ghost:hover { background: #fff; color: var(--ink); }

/* Scope recap (5 steps) */
.scope-recap { background: var(--bg); }
.scope-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  max-width: 1100px; margin: 0 auto;
  counter-reset: scopeNum;
}
.scope-steps li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 18px 18px;
  text-align: center;
  position: relative;
  transition: transform .3s var(--t), border-color .3s;
}
.scope-steps li:hover { transform: translateY(-4px); border-color: var(--blue); }
.scope-steps li b {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #fff;
  border-radius: 50%;
  font-family: var(--serif-fallback);
  font-size: 14px;
  margin-bottom: 12px;
  box-shadow: 0 6px 16px var(--blue-glow);
}
.scope-steps li h4 { margin: 0 0 6px; font-size: 15px; color: var(--blue-2); font-style: italic; }
.scope-steps li p { margin: 0; font-size: 12.5px; color: var(--muted); }

/* =========================================================
   FOOTER COLUMNS (replaces single-row links)
   ========================================================= */
.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  width: 100%;
  max-width: 900px;
  margin: 18px auto 26px;
  text-align: left;
}
.fc-col { display: flex; flex-direction: column; gap: 8px; }
.fc-col h5 {
  margin: 0 0 6px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--blue-sky);
}
.fc-col a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.72);
  transition: color .25s;
}
.fc-col a:hover { color: var(--blue-sky); }

/* Footer social icons */
.footer-social {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 4px 0 22px;
}
.footer-social a {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75);
  transition: background .3s, color .3s, transform .3s var(--t), border-color .3s;
}
.footer-social a:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px var(--blue-glow);
}
.footer-social svg { display: block; }

/* =========================================================
   SCOPE — 5 variable section CTA
   ========================================================= */
.scope { background: var(--bg); }
.scope-cta {
  margin-top: 36px;
  background: linear-gradient(135deg, var(--ink), var(--blue-deep));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
}
.scope-cta p { margin: 0; font-size: 16px; max-width: 720px; }
.scope-cta strong { color: var(--blue-sky); }
.scope-cta .btn-primary { background: #fff; color: var(--ink); }
.scope-cta .btn-primary:hover { background: var(--blue-sky); color: var(--ink); }

/* =========================================================
   CONTACT — dual CTA + secondary blocks
   ========================================================= */
.contact { background: linear-gradient(180deg, #f6f8fb 0%, #f0f6fc 50%, #eaf3fb 100%); position: relative; overflow: hidden; padding: 110px 0; }

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 40px auto 0;
  max-width: 1080px;
  text-align: left;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  position: relative;
  transition: transform .4s var(--t), box-shadow .4s, border-color .4s;
  display: flex; flex-direction: column; gap: 14px;
}
.contact-card:hover { transform: translateY(-6px); border-color: var(--blue); box-shadow: var(--shadow-lg); }
.cc-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--bg-tint);
  border: 2px solid var(--blue);
  display: flex; align-items: center; justify-content: center;
}
.cc-icon img { width: 30px; height: 30px; object-fit: contain; }
.cc-tag {
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  color: var(--blue);
  background: var(--bg-tint);
  padding: 5px 12px;
  border-radius: 999px;
  align-self: flex-start;
}
.contact-card h3 {
  font-family: var(--serif-fallback);
  font-size: clamp(22px, 2.6vw, 28px);
  font-style: italic;
  color: var(--ink);
  margin: 0;
  line-height: 1.2;
}
.contact-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.contact-card li {
  position: relative;
  padding-left: 26px;
  color: var(--ink-soft);
  font-size: 14.5px;
}
.contact-card li::before {
  content: "✓";
  position: absolute; left: 0; top: 1px;
  width: 18px; height: 18px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
}
.contact-card .btn { margin-top: 8px; align-self: flex-start; }

.contact-secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 36px auto 30px;
  max-width: 1080px;
  text-align: left;
}
.contact-block {
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  display: flex; align-items: flex-start; gap: 16px;
}
.cb-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-tint);
  border: 1.5px solid var(--blue);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cb-icon img { width: 22px; height: 22px; object-fit: contain; }
.contact-block h4 { margin: 0 0 4px; font-style: italic; color: var(--blue-2); font-size: 16px; font-weight: 700; }
.contact-block p { margin: 0; color: var(--ink-soft); font-size: 13.5px; line-height: 1.5; }

.contact-form-wrap {
  max-width: 720px;
  margin: 20px auto 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 36px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.contact-form-wrap h4 { margin: 0 0 8px; font-style: italic; color: var(--blue-2); font-size: 19px; }
.contact-form-wrap p { color: var(--ink-soft); font-size: 14.5px; margin: 0 0 16px; }

/* =========================================================
   CLOSING (legacy class — now used by .contact)
   ========================================================= */
.closing {
  background: linear-gradient(180deg, #f6f8fb 0%, #f0f6fc 50%, #eaf3fb 100%);
  position: relative;
  overflow: hidden;
  padding: 110px 0 110px;
}
.closing-bg { position: absolute; inset: 0; pointer-events: none; }
.dot-globe {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(46,149,223,0.18) 1px, transparent 1.5px);
  background-size: 28px 28px;
  background-position: 0 0;
  mask-image: radial-gradient(ellipse 70% 60% at center, rgba(0,0,0,0.7) 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at center, rgba(0,0,0,0.7) 30%, transparent 80%);
  opacity: .7;
}
.closing-bg::before, .closing-bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.closing-bg::before {
  top: -10%; left: -8%;
  width: 55%; height: 70%;
  background: radial-gradient(circle, rgba(174,220,255,0.35), transparent 65%);
  filter: blur(80px);
}
.closing-bg::after {
  bottom: -10%; right: -8%;
  width: 50%; height: 65%;
  background: radial-gradient(circle, rgba(174,220,255,0.3), transparent 65%);
  filter: blur(80px);
}

.closing-inner { position: relative; z-index: 1; text-align: center; }
.closing-logo {
  height: clamp(64px, 9vw, 110px);
  width: auto;
  margin: 0 auto 20px;
  display: block;
}
.closing-title {
  font-family: var(--serif-fallback);
  font-size: clamp(28px, 4.6vw, 54px);
  font-weight: 700;
  font-style: italic;
  margin: 0 0 18px;
  letter-spacing: -1px;
  color: var(--blue-2);
  line-height: 1.1;
}
.closing-title .dots { color: var(--blue); letter-spacing: 6px; }
.closing-strong { color: var(--ink); }
.closing-sub {
  font-size: clamp(16px, 2vw, 22px);
  color: var(--blue-2);
  font-weight: 600;
  max-width: 760px;
  margin: 0 auto 46px;
  line-height: 1.4;
}
.closing-sub strong { color: var(--ink); }

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 0 auto 40px;
  max-width: 1100px;
}
.pillar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  text-align: left;
  transition: transform .4s var(--t), box-shadow .4s, border-color .4s;
}
.pillar:hover { transform: translateY(-6px); border-color: var(--blue); box-shadow: var(--shadow-md); }
.pillar-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--bg-tint);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  border: 2px solid var(--blue);
  transition: transform .4s var(--t), background .3s;
}
.pillar:hover .pillar-icon { transform: scale(1.08); background: #fff; }
.pillar-icon img { width: 32px; height: 32px; object-fit: contain; }
.pillar h4 {
  margin: 0 0 10px;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue-2);
  font-style: italic;
  font-weight: 700;
  line-height: 1.25;
}
.pillar p { margin: 0; color: var(--ink-soft); font-size: 13.5px; line-height: 1.5; }

.closing-closer {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  margin: 0 auto 30px;
  max-width: 720px;
}
.closing-closer em {
  font-size: clamp(16px, 2vw, 20px);
  font-style: italic;
  color: var(--blue-2);
  font-weight: 600;
}
.cc-line {
  flex: 0 0 50px;
  height: 2px;
  background: var(--blue-2);
  border-radius: 2px;
}

.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =========================================================
   FOOTER — centered
   ========================================================= */
.footer {
  background: #051022;
  color: rgba(255,255,255,0.78);
  padding: 56px 0 28px;
  text-align: center;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; }
.footer-logo {
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0;
}
.footer-logo img { height: 44px; width: auto; display: block; margin: 0 auto; }
.footer-tag { margin: 14px 0 22px; font-size: 14px; color: rgba(255,255,255,0.6); font-style: italic; text-align: center; }
.footer-links { display: flex; gap: 22px 28px; justify-content: center; flex-wrap: wrap; margin-bottom: 26px; max-width: 700px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.78); transition: color .3s; }
.footer-links a:hover { color: var(--blue-sky); }
.footer-copy { font-size: 12.5px; opacity: .55; margin: 0; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .roi-svg-full { display: none; }
  .roi-fallback { display: flex; }
  .market-diagram .mkt-svg { display: none; }
  .mkt-rows-fallback { display: block; }
}

@media (max-width: 980px) {
  .nav-links {
    position: fixed;
    top: 70px; left: 16px; right: 16px;
    background: #fff;
    border-radius: 22px;
    flex-direction: column;
    align-items: stretch;
    padding: 22px;
    gap: 6px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--line);
    transform: translateY(-12px) scale(.97);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s var(--t), transform .3s var(--t);
  }
  .nav-links.open { opacity: 1; transform: none; pointer-events: auto; }
  .nav-links > a:not(.nav-cta), .nav-trigger { padding: 12px 14px; font-size: 15.5px; border-radius: 12px; width: 100%; justify-content: space-between; text-align: left; }
  .nav-links > a:not(.nav-cta):hover { background: var(--bg-tint); }
  .nav-links > a.nav-cta {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 14px 18px;
    margin: 10px 0 0;
    font-size: 15.5px;
  }
  .hamburger { display: flex; }

  /* Mobile: dropdowns collapse inline (accordion), not floating */
  .nav-item { width: 100%; }
  .nav-menu,
  .nav-item.open .nav-menu,
  .nav-item:hover .nav-menu,
  .nav-item:focus-within .nav-menu {
    position: static;
    transform: none !important;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
    background: transparent;
    width: 100%;
    min-width: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: max-height .3s var(--t);
  }
  .nav-menu::before { display: none; }
  /* Mobile: only .open shows the menu (hover does nothing on touch) */
  .nav-item:hover .nav-menu { max-height: 0; }
  .nav-item.open .nav-menu { max-height: 500px; padding: 4px 0 8px; }
  .nav-menu a {
    display: block;
    padding: 11px 14px 11px 28px;
    margin: 2px 0;
    font-size: 14.5px;
    text-align: left;
    border-left: 3px solid var(--line-strong);
    border-radius: 0;
    color: var(--ink-soft);
    box-shadow: none;
    background: transparent;
  }
  .nav-menu a:hover {
    background: var(--bg-tint);
    border-left-color: var(--blue);
    color: var(--blue);
  }
  .nav-menu a.active {
    border-left-color: var(--blue);
    color: var(--blue);
    background: var(--bg-tint);
    box-shadow: none;
  }

  .hero { padding: 120px 0 60px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .hero-headline, .hero-sub, .hero-stats { margin-left: auto; margin-right: auto; }
  .hero-logo { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { min-height: 340px; order: -1; }

  .about-grid { grid-template-columns: 1fr; }
  .problem-grid, .moat-grid, .engine-features { grid-template-columns: 1fr; }
  .challenges { grid-template-columns: 1fr; padding: 24px; }
  .anchors-grid, .mvp-grid { grid-template-columns: 1fr; }
  .tab-content { grid-template-columns: 1fr; padding: 24px; }
  .provides-grid { grid-template-columns: 1fr; }
  .uni-grid { grid-template-columns: 1fr; }
  .traction-summary { grid-template-columns: repeat(2, 1fr); }
  .traction-summary > div:nth-child(2) { border-right: none; }
  .why-grid { grid-template-columns: 1fr; }
  .market-diagram { grid-template-columns: 1fr; gap: 30px; }
  .mkt-row::before { display: none; }
  .mkt-row { padding-left: 0; }
  .mkt-dot { display: none; }
  .forces { grid-template-columns: 1fr; }
  .roi-extras { grid-template-columns: 1fr; }
  .rm-layout { grid-template-columns: 1fr; }
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-cards, .contact-secondary { grid-template-columns: 1fr; }
  .fork-grid { grid-template-columns: 1fr; }
  .solution-summary { grid-template-columns: 1fr; }
  .lf-row { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; max-width: 480px; }
  .flow-steps { grid-template-columns: 1fr; }
  .flow-arrow { transform: rotate(90deg); justify-self: center; }
  .codesign-grid, .equity-grid { grid-template-columns: 1fr; gap: 32px; }
  .earn-grid { grid-template-columns: 1fr; }
  .calc { grid-template-columns: 1fr; padding: 26px; }
  .proof-card { grid-template-columns: 1fr; }
  .proof-stats { grid-template-columns: repeat(2, 1fr); }
  .proof-stats > div:nth-child(2) { border-right: none; }
  .strategy-grid, .out-grid, .quote-grid { grid-template-columns: 1fr; }
  .sov-card { grid-template-columns: 1fr; text-align: center; }
  .buy-grid { grid-template-columns: 1fr; }
  .scope-steps { grid-template-columns: repeat(2, 1fr); }
  .acc-body { padding-left: 22px; }
  .scope-cta { flex-direction: column; align-items: flex-start; padding: 22px 24px; text-align: left; }

  .team-row-block { grid-template-columns: 1fr; }
  .trb-label { text-align: center; }
  .trb-people, .trb-people.three, .trb-people.four {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  }
  .amb-strip { grid-template-columns: 1fr 1fr; }

  .loop { grid-template-columns: 1fr; grid-template-rows: auto; padding: 20px 0; }
  .loop-center { position: static; transform: none; display: flex; justify-content: center; margin: 14px 0; }
  .loop-step { grid-column: 1 !important; grid-row: auto !important; }

  .section { padding: 80px 0; }
  .section-head { margin-bottom: 40px; }
}

@media (max-width: 600px) {
  .container { padding: 0 18px; }
  .nav-inner { padding: 14px 18px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
  .hero-stats { gap: 18px; }
  .hero-stats b { font-size: 24px; }
  .traction-summary { grid-template-columns: 1fr 1fr; }
  .budgets { flex-direction: column; align-items: flex-start; }
  .budget-sep { display: none; }
  .pillar-grid { grid-template-columns: 1fr; }
  .amb-strip { grid-template-columns: 1fr; }
  .forces-viz { aspect-ratio: 1.2; }
  .petal { font-size: 11px; min-width: 110px; max-width: 150px; padding: 6px 10px 6px 28px; }
  .petal b { width: 18px; height: 18px; font-size: 10px; }
  .petal strong { font-size: 12px; }
  .petal em { font-size: 10.5px; }
  .build-imgs img { height: 130px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    transition-duration: 0.1s !important;
  }
}
