:root {
  --ink: #071B2C;
  --navy-950: #031626;
  --navy-900: #05233B;
  --navy-800: #083858;
  --blue-700: #1261A6;
  --blue-600: #2477C9;
  --blue-500: #4396E6;
  --blue-300: #9CCCF5;
  --blue-200: #C9E3FA;
  --blue-100: #E4F2FD;
  --blue-50: #F3F9FE;
  --surface: #F8FBFE;
  --surface-warm: #F4F6F8;
  --white: #FFFFFF;
  --muted: #647789;
  --border: rgba(34, 85, 125, 0.16);
  --container: 920px;
  --nav-max: 600px;
  --gutter: 20px;
  --s1: 4px;
  --s2: 8px;
  --s3: 12px;
  --s4: 16px;
  --s5: 24px;
  --s6: 32px;
  --s7: 48px;
  --section-y: var(--s7);
  --stack-sm: var(--s3);
  --stack-md: var(--s4);
  --stack-lg: var(--s5);
  --stack-xl: var(--s6);
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --font: "Inter", system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; font-size: 15px; }
body {
  font-family: var(--font);
  background: var(--surface);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.mt-sm { margin-top: var(--s3); }
.mt-md { margin-top: var(--s4); }
.mt-lg { margin-top: var(--s5); }

.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: var(--s3);
}

.section-title {
  font-size: clamp(28px, 2.8vw, 40px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.02;
}
.section-title .muted { color: var(--muted); }
.section-title .accent { color: var(--blue-500); }

.body-large { font-size: 15px; color: var(--muted); line-height: 1.6; max-width: 32rem; }
.body { font-size: 14px; color: var(--muted); line-height: 1.55; }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 500;
  color: var(--blue-700);
  transition: gap 0.2s ease;
}
.arrow-link:hover { gap: 10px; }
.arrow-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.5; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s, border-color 0.2s, gap 0.2s;
}
.btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.btn:hover svg { transform: translate(2px, -2px); }
.btn-primary { background: var(--blue-500); color: var(--white); }
.btn-primary:hover { background: var(--blue-600); }
.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--ink);
}
.btn-outline:hover { border-color: var(--blue-500); color: var(--blue-700); }
.btn-dark { background: var(--navy-800); color: var(--white); }
.btn-dark:hover { background: var(--blue-700); }
.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--white);
}
.btn-ghost:hover { border-color: var(--blue-300); color: var(--blue-200); }

.dot-grid {
  background-color: var(--surface);
  background-image: radial-gradient(circle, rgba(34, 85, 125, 0.09) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(ellipse 85% 70% at 50% 40%, #000 30%, transparent 85%);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ── Announcement + floating nav ── */
.announce {
  background: var(--navy-950);
  color: rgba(255,255,255,0.55);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 0;
}
.announce .container { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.announce a { color: rgba(255,255,255,0.75); }
.announce a:hover { color: var(--blue-200); }

.nav-float-wrap {
  position: fixed;
  top: 12px;
  left: 0;
  right: 0;
  z-index: 200;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.25s, transform 0.25s;
}
.nav-float-wrap.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.nav-float {
  width: min(var(--nav-max), calc(100% - 40px));
  margin-inline: auto;
  height: 52px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: 0 16px 40px -20px rgba(8, 56, 88, 0.22);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px 0 22px;
  gap: 16px;
}
.nav-float .nav-links { display: flex; gap: 28px; font-size: 14px; color: var(--muted); }
.nav-float .nav-links a:hover { color: var(--ink); }
.nav-menu-btn { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; }

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.logo-mark {
  width: 22px;
  height: 22px;
  position: relative;
  flex-shrink: 0;
}
.logo-mark::before,
.logo-mark::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  transform: rotate(45deg);
}
.logo-mark::before { left: 1px; top: 5px; background: var(--blue-500); }
.logo-mark::after { right: 1px; top: 1px; background: var(--navy-800); }
.logo--light .logo-mark::after { background: var(--blue-200); }

/* ── Hero ── */
.hero {
  background:
    radial-gradient(circle at 73% 47%, rgba(45, 139, 220, 0.22), transparent 34%),
    linear-gradient(
      105deg,
      #031625 0%,
      #041b2e 32%,
      #073456 70%,
      #0b4b79 100%
    );
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -8% -4%;
  background: linear-gradient(
    118deg,
    transparent 14%,
    rgba(255, 255, 255, 0.018) 14.2%,
    rgba(255, 255, 255, 0.018) 28%,
    transparent 28.2%,
    transparent 46%,
    rgba(120, 190, 255, 0.035) 46.2%,
    rgba(120, 190, 255, 0.035) 62%,
    transparent 62.2%,
    transparent 78%,
    rgba(255, 255, 255, 0.012) 78.2%,
    rgba(255, 255, 255, 0.012) 88%,
    transparent 88.2%
  );
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    105deg,
    transparent 0,
    transparent 96px,
    rgba(255, 255, 255, 0.012) 96px,
    rgba(255, 255, 255, 0.012) 97px
  );
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.15) 35%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
  z-index: 0;
}
.hero-nav,
.hero-grid {
  position: relative;
  z-index: 1;
}
.hero-nav {
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--s4);
  gap: var(--s4);
  flex-wrap: wrap;
}
.hero-nav .nav-links {
  display: flex;
  gap: var(--s5);
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}
.hero-nav .nav-links a:hover { color: var(--white); }

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--s6);
  padding: var(--s6) 0 var(--s5);
  align-items: start;
}
.hero-visual-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.hero-title {
  font-size: clamp(32px, 3.6vw, 48px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.02;
  margin: var(--s3) 0 var(--s4);
}
.hero-title .accent { color: var(--blue-300); }
.hero-lead {
  font-size: 15px;
  color: rgba(255,255,255,0.68);
  line-height: 1.6;
  max-width: 26rem;
  margin-bottom: var(--s5);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--s3); margin-bottom: var(--s5); }
.hero-note {
  display: flex;
  align-items: center;
  gap: var(--s3);
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}
.hero-note-icons { display: flex; gap: 6px; }
.hero-note-icons span {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}

.network-visual {
  position: relative;
  width: min(100%, 340px);
  aspect-ratio: 1;
  flex-shrink: 0;
  overflow: visible;
}
.network-glow {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle at 58% 52%, rgba(22, 132, 214, 0.22), transparent 70%);
  pointer-events: none;
}
.interactive-globe {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: grab;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
}
.interactive-globe.is-dragging { cursor: grabbing; }
.interactive-globe.is-dragging .globe-label { transition: none; }
.interactive-globe canvas {
  display: block;
  width: 100%;
  height: 100%;
}
.globe-labels {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.globe-label {
  position: absolute;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(210, 235, 255, 0.82);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7), 0 0 12px rgba(22, 132, 214, 0.25);
  transform: translate(-50%, -100%);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.14s linear;
  font-family: var(--font);
}
.globe-label--hub {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(240, 250, 255, 0.96);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.75), 0 0 16px rgba(134, 200, 255, 0.35);
}
.globe-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.globe-fallback {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}
.globe-fallback__sphere {
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(134, 200, 255, 0.18), rgba(3, 27, 49, 0.95) 62%);
  box-shadow: 0 0 60px rgba(22, 132, 214, 0.22);
}

.hero-metrics {
  width: min(100%, 340px);
  margin-top: var(--s4);
  padding-top: var(--s4);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-metrics-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s4);
  margin-bottom: var(--s3);
}
.hero-metric b {
  display: block;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.hero-metric span { font-size: 13px; color: rgba(255,255,255,0.5); }
.hero-bottom {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-bottom-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-bottom b { display: block; font-size: 15px; font-weight: 500; margin-bottom: 4px; }
.hero-bottom p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.5; }

/* ── Connected operations ── */
.section { padding: var(--section-y) 0; }
.section-head { margin-bottom: var(--s6); max-width: 40rem; }
.section-head .body-large { margin-top: var(--s3); }

.ops-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-template-rows: auto auto;
  gap: var(--s3);
}
.ops-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--s5);
  background: var(--white);
  transition: border-color 0.2s;
}
.ops-card:hover { border-color: rgba(36, 119, 201, 0.35); }
.ops-card--large {
  grid-row: span 2;
  background: var(--navy-900);
  color: var(--white);
  border-color: transparent;
  display: flex;
  flex-direction: column;
}
.ops-card--sky { background: var(--blue-100); border-color: transparent; }
.ops-card__label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: var(--s4);
}
.ops-card h3 {
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: var(--s2);
}
.ops-card p { font-size: 14px; opacity: 0.78; line-height: 1.55; }
.ops-card--large .link { color: var(--blue-300); margin-top: auto; padding-top: var(--s4); }
.ops-card--large .link:hover { color: var(--blue-200); }

.storefront-diagram {
  margin: var(--s4) 0;
  aspect-ratio: 1;
  max-height: 160px;
  position: relative;
}
.storefront-diagram svg { width: 100%; height: 100%; }

.ops-stat {
  font-size: clamp(24px, 2vw, 28px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--navy-800);
  margin-bottom: 8px;
}
.ops-stat small { display: block; font-size: 14px; letter-spacing: 0.02em; color: var(--muted); margin-top: 4px; }

.ops-card--wide {
  grid-column: span 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
}
.bar-chart {
  display: flex;
  align-items: flex-end;
  gap: var(--s2);
  height: 52px;
}
.bar-chart i {
  display: block;
  width: 14px;
  border-radius: 4px 4px 0 0;
  background: var(--blue-300);
}
.bar-chart i:nth-child(odd) { background: var(--blue-500); }
.bar-chart i:nth-child(3) { background: var(--blue-600); }
.bar-chart i:nth-child(5) { background: var(--navy-800); }

/* ── Workspace ── */
.workspace-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: var(--s6);
  align-items: center;
}
.workspace-note { font-size: 12px; color: var(--muted); margin-top: var(--s3); }

.dashboard-mock {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
}
.dashboard-mock__bar {
  display: flex;
  gap: 6px;
  padding: 12px 16px;
  background: var(--blue-50);
  border-bottom: 1px solid var(--border);
}
.dashboard-mock__bar i { width: 8px; height: 8px; border-radius: 50%; background: var(--blue-200); }
.dashboard-mock__body {
  display: grid;
  grid-template-columns: 120px 1fr;
  min-height: 260px;
}
.dashboard-sidebar {
  padding: 16px 12px;
  border-right: 1px solid var(--border);
  background: var(--surface);
  font-size: 12px;
  color: var(--muted);
}
.dashboard-sidebar div {
  padding: 8px 10px;
  border-radius: 8px;
  margin-bottom: 4px;
}
.dashboard-sidebar div.on {
  background: var(--white);
  color: var(--ink);
  font-weight: 500;
  border: 1px solid var(--border);
}
.dashboard-main { padding: 18px; }
.dashboard-greet { font-size: 13px; color: var(--muted); margin-bottom: 4px; }
.dashboard-greet b { display: block; font-size: 18px; font-weight: 500; color: var(--ink); margin-top: 2px; }
.dashboard-kpis {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 16px 0;
}
.dashboard-kpi {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px;
  font-size: 11px;
  color: var(--muted);
}
.dashboard-kpi b { display: block; font-size: 20px; font-weight: 400; color: var(--ink); margin-top: 4px; letter-spacing: -0.03em; }
.dashboard-table {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  font-size: 11px;
}
.dashboard-table-head {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  padding: 8px 12px;
  background: var(--blue-50);
  color: var(--muted);
  font-weight: 500;
}
.dashboard-table-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  padding: 10px 12px;
  border-top: 1px solid var(--border);
}
.dashboard-table-row span:last-child { color: var(--blue-700); }

.feature-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s3);
  margin-top: var(--s6);
}
.feature-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--s4);
  background: var(--white);
  position: relative;
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: rgba(36, 119, 201, 0.35); }
.feature-card svg { width: 22px; height: 22px; stroke: var(--blue-600); fill: none; stroke-width: 1.5; margin-bottom: 16px; }
.feature-card b { display: block; font-size: 16px; font-weight: 500; margin-bottom: 6px; letter-spacing: -0.02em; }
.feature-card span { font-size: 13px; color: var(--muted); line-height: 1.45; }
.feature-card .card-arrow {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 14px;
  height: 14px;
  stroke: var(--muted);
  fill: none;
  stroke-width: 1.5;
}

/* ── Journey comparison ── */
.journey-wrap {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
}
.journey-head {
  padding: var(--s5) var(--s5) var(--s4);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}
.journey-head h3 {
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-top: var(--s2);
}
.journey-head-aside { max-width: 20rem; font-size: 14px; color: var(--muted); line-height: 1.6; text-align: right; }

.route-panel { padding: var(--s5); }
.route-panel--miro { background: var(--blue-100); }
.route-panel--old { background: var(--surface-warm); border-top: 1px solid var(--border); }

.route-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: var(--s5);
  flex-wrap: wrap;
}
.route-top h4 { font-size: 14px; font-weight: 500; margin-bottom: var(--s1); }
.route-metric { text-align: right; }
.route-metric b {
  display: block;
  font-size: clamp(24px, 2vw, 30px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}
.route-metric span { font-size: 13px; color: var(--muted); }

.workflow {
  display: flex;
  gap: 0;
  overflow-x: auto;
  padding-bottom: 8px;
}
.workflow-step {
  flex: 1;
  min-width: 110px;
  text-align: center;
  position: relative;
}
.workflow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 22px;
  left: calc(50% + 24px);
  width: calc(100% - 48px);
  height: 1px;
  background: var(--blue-500);
  opacity: 0.45;
}
.route-panel--old .workflow-step:not(:last-child)::after {
  background: var(--muted);
  opacity: 0.25;
}
.route-panel--old .workflow-step:nth-child(n+4):not(:last-child)::after {
  background: repeating-linear-gradient(90deg, var(--muted) 0 4px, transparent 4px 8px);
  opacity: 0.35;
  height: 0;
  border-top: 1px dashed rgba(100,119,137,0.45);
}
.workflow-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.workflow-icon svg { width: 18px; height: 18px; stroke: var(--blue-700); fill: none; stroke-width: 1.5; }
.workflow-icon.is-brand {
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
}
.route-panel--old .workflow-icon svg { stroke: var(--muted); }
.workflow-step b { display: block; font-size: 13px; font-weight: 500; margin-bottom: 4px; }
.workflow-step span { font-size: 11px; color: var(--muted); line-height: 1.4; display: block; padding: 0 4px; }
.workflow-step.is-lit .workflow-icon {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(67, 150, 230, 0.15);
}

.route-note {
  margin-top: 20px;
  font-size: 14px;
  color: var(--muted);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.route-note svg { width: 16px; height: 16px; stroke: var(--blue-700); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 2px; }

/* ── Advantage cards ── */
.advantage-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--s4);
  margin-bottom: var(--s5);
  flex-wrap: wrap;
}
.advantage-head aside { font-size: 14px; color: var(--muted); }

.dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s3);
}
.dual-card {
  border-radius: var(--radius-lg);
  padding: var(--s5);
  min-height: 220px;
  border: 1px solid var(--border);
}
.dual-card--sky { background: var(--blue-100); border-color: transparent; }
.dual-card--dark {
  background: linear-gradient(160deg, var(--navy-800), var(--navy-950));
  color: var(--white);
  border-color: transparent;
}
.dual-card h3 {
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: var(--s3) 0;
}
.dual-card p { font-size: 15px; opacity: 0.78; line-height: 1.6; }

.mini-flow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.mini-flow span {
  font-size: 12px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--border);
}
.dual-card--dark .mini-flow span { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.12); color: rgba(255,255,255,0.85); }

.compound-stat {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  margin: 20px 0 12px;
}
.compound-stat b {
  font-size: clamp(36px, 3vw, 48px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.9;
  color: var(--blue-300);
}
.compound-stat div { font-size: 15px; line-height: 1.45; opacity: 0.85; padding-bottom: 8px; }

.chart-wrap {
  margin-top: var(--s4);
  height: 96px;
  position: relative;
}
.chart-wrap canvas { width: 100%; height: 100%; }
.chart-legend {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 11px;
  color: rgba(255,255,255,0.45);
}

.card-footnote {
  margin-top: 16px;
  font-size: 12px;
  color: var(--muted);
  max-width: 28rem;
}

/* ── Customer updates ── */
.updates-module {
  margin-top: var(--s4);
  border-radius: var(--radius-lg);
  background: var(--blue-100);
  border: 1px solid rgba(34, 85, 125, 0.1);
  padding: var(--s5);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s6);
  align-items: center;
}
.updates-module h3 {
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 400;
  letter-spacing: -0.03em;
  margin: var(--s2) 0 var(--s3);
}
.updates-preview {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.updates-tabs {
  display: flex;
  gap: 4px;
  padding: 10px 10px 0;
  overflow-x: auto;
  border-bottom: 1px solid var(--border);
}
.updates-tabs button {
  padding: 8px 12px;
  font-size: 11px;
  color: var(--muted);
  border-radius: 8px 8px 0 0;
  white-space: nowrap;
}
.updates-tabs button.is-active {
  background: var(--blue-50);
  color: var(--blue-700);
  font-weight: 500;
}
.updates-message { padding: 18px; }
.updates-message-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.updates-message-head .icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--blue-500);
  display: flex;
  align-items: center;
  justify-content: center;
}
.updates-message-head .icon svg { width: 16px; height: 16px; stroke: white; fill: none; stroke-width: 1.5; }
.updates-message b { display: block; font-size: 14px; font-weight: 500; }
.updates-message small { font-size: 11px; color: var(--muted); }
.updates-message p { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ── FAQ + CTA ── */
.faq-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--s6);
  align-items: start;
}
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
}
.faq-trigger svg {
  width: 18px;
  height: 18px;
  stroke: var(--muted);
  fill: none;
  stroke-width: 1.5;
  transition: transform 0.25s;
  flex-shrink: 0;
}
.faq-item.is-open .faq-trigger svg { transform: rotate(180deg); }
.faq-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}
.faq-panel-inner {
  padding: 0 0 20px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 36rem;
}

.cta-panel {
  max-width: 560px;
  margin: 0 auto var(--s7);
  text-align: center;
  padding: var(--s7) var(--s5);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(196, 227, 250, 0.55), transparent 70%);
  pointer-events: none;
}
.cta-panel > * { position: relative; }
.cta-panel h2 { margin: 12px 0 16px; }
.cta-panel p { margin: 0 auto 28px; max-width: 28rem; }

/* ── Footer ── */
.site-footer {
  background: var(--navy-950);
  color: rgba(255,255,255,0.55);
  padding: var(--s7) 0 var(--s6);
  font-size: 13px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: var(--s6);
  margin-bottom: var(--s6);
}
.footer-grid h4 {
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 500;
}
.footer-grid a {
  display: block;
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-grid a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── Mobile nav drawer ── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(3, 22, 38, 0.45);
}
.mobile-nav.is-open { display: block; }
.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100%;
  background: var(--white);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: -8px 0 32px rgba(0,0,0,0.12);
}
.mobile-nav-panel a {
  padding: 14px 0;
  font-size: 16px;
  border-bottom: 1px solid var(--border);
}
.mobile-nav-close {
  align-self: flex-end;
  width: 44px;
  height: 44px;
  margin-bottom: 8px;
}

@media (max-width: 1100px) {
  .ops-grid { grid-template-columns: 1fr 1fr; }
  .ops-card--large { grid-column: span 2; grid-row: auto; }
  .ops-card--wide { grid-column: span 2; }
  .feature-row { grid-template-columns: repeat(2, 1fr); }
  .dual-grid, .updates-module, .workspace-grid, .faq-grid { grid-template-columns: 1fr; }
  .journey-head-aside { text-align: left; }
}

@media (max-width: 768px) {
  html { font-size: 15px; }
  .container { width: calc(100% - 32px); }
  .hero-nav .nav-links, .nav-float .nav-links { display: none; }
  .nav-menu-btn { display: inline-flex; }
  .hero-grid { grid-template-columns: 1fr; padding: var(--s5) 0; gap: var(--s5); }
  .hero-visual-col { align-items: center; }
  .network-visual { width: min(78vw, 300px); }
  .hero-metrics { width: min(78vw, 300px); margin-top: var(--s3); padding-top: var(--s3); }
  .globe-label { font-size: 10px; }
  .hero-title { font-size: clamp(28px, 8vw, 36px); }
  .section { padding: var(--s6) 0; }
  :root { --section-y: var(--s6); }
  .ops-grid { grid-template-columns: 1fr; }
  .ops-card--large, .ops-card--wide { grid-column: auto; }
  .ops-card--wide { flex-direction: column; align-items: flex-start; }
  .workflow { flex-direction: column; gap: 16px; }
  .workflow-step { min-width: 0; text-align: left; display: flex; gap: 14px; align-items: flex-start; }
  .workflow-step:not(:last-child)::after { display: none; }
  .workflow-icon { margin: 0; flex-shrink: 0; }
  .dashboard-mock__body { grid-template-columns: 1fr; }
  .dashboard-sidebar { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-float { height: 60px; padding: 0 8px 0 16px; }
}

@media (max-width: 480px) {
  .network-visual { width: min(84vw, 280px); }
  .hero-metrics { width: min(84vw, 280px); }
  .hero-metrics-row { gap: var(--s3); }
  .hero-metric b { font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
