/* ==========================================================================
   Premium Light Design System — Eternal Exports
   Light-first · Elegant · Motion-rich · Enterprise-grade
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap");

/* --------------------------------------------------------------------------
   1. Design tokens — Premium light palette
   -------------------------------------------------------------------------- */
:root {
  /* ---- Core light backgrounds ---- */
  --bg-base:      #ffffff;
  --bg-surface:   #f8fafc;
  --bg-elevated:  #f1f5fa;
  --bg-panel:     #ffffff;
  --bg-deep:      #0c1526;

  /* ---- Brand: Primary Blue (formerly Teal) ---- */
  --teal-900: #1e3a8a;
  --teal-800: #1e40af;
  --teal-700: #1d4ed8;
  --teal-600: #2563eb;
  --teal-500: #3b82f6;
  --teal-400: #60a5fa;
  --teal-300: #93c5fd;
  --teal-200: #bfdbfe;
  --teal-100: #dbeafe;
  --teal-50:  #eff6ff;

  /* ---- Brand: Indigo (secondary accent) ---- */
  --indigo-900: #1e1260;
  --indigo-800: #271880;
  --indigo-700: #311fa0;
  --indigo-600: #3d28c0;
  --indigo-500: #4c38e0;
  --indigo-400: #6455f0;
  --indigo-300: #8278f5;
  --indigo-200: #a89ef8;
  --indigo-100: #dbd8fe;
  --indigo-50:  #f0effe;

  /* ---- Brand: Deep Navy (hero & CTA surfaces) ---- */
  --navy-900: #071729;
  --navy-800: #0b1f3a;
  --navy-700: #122b4e;
  --navy-600: #1c3a63;
  --navy-500: #2a4e7e;

  /* ---- Corporate brand ---- */
  --brand-logo-navy: #161c52;
  --brand-indigo:    #25328a;
  --brand-blue:      #1577ea;
  --brand-blue-300:  #7db4f5;

  /* ---- Warm neutrals ---- */
  --neutral-0:   #ffffff;
  --neutral-25:  #fafbfd;
  --neutral-50:  #f4f7fb;
  --neutral-100: #e8edf5;
  --neutral-200: #d3dceb;
  --neutral-300: #b4c2d8;
  --neutral-400: #8fa3bf;
  --neutral-500: #6a85a3;
  --neutral-600: #4e6880;
  --neutral-700: #354e65;
  --neutral-800: #1f3449;
  --neutral-900: #101e30;

  /* ---- Semantic colours ---- */
  --success-700: #076042;
  --success-600: #0a8a5a;
  --success-500: #12b76a;
  --success-200: #a6f4c5;
  --success-100: #d1fadf;
  --success-50:  #ecfdf5;

  --warning-700: #7a4d00;
  --warning-600: #a05d00;
  --warning-500: #f09c00;
  --warning-200: #fde68a;
  --warning-100: #fef3c7;
  --warning-50:  #fffbeb;

  --error-700: #9b1c1c;
  --error-600: #c53030;
  --error-500: #e53e3e;
  --error-200: #fed7d7;
  --error-100: #fff5f5;
  --error-50:  #fff5f5;

  /* ---- Surfaces ---- */
  --surface-page:        var(--bg-base);
  --surface-canvas:      var(--bg-surface);
  --surface-band:        var(--bg-elevated);
  --surface-card:        var(--bg-panel);
  --surface-card-hover:  #f8fafc;
  --surface-inset:       var(--neutral-50);
  --surface-overlay:     rgba(7, 23, 41, 0.55);
  --surface-dark:        var(--navy-800);
  --surface-dark-raised: var(--navy-700);
  --surface-dark-deep:   var(--navy-900);
  --surface-glass-light: rgba(255, 255, 255, 0.80);
  --surface-glass-dark:  rgba(11, 31, 58, 0.82);
  --blur-glass: 20px;

  /* ---- Text ---- */
  --text-on-dark:           rgba(255, 255, 255, 0.96);
  --text-on-dark-secondary: rgba(255, 255, 255, 0.75);
  --text-on-dark-muted:     rgba(255, 255, 255, 0.50);

  /* ---- Gradient meshes (light-mode) ---- */
  --gradient-mesh-dark:
    radial-gradient(120% 90% at 12% -10%, rgba(0, 168, 168, 0.30), transparent 55%),
    radial-gradient(100% 85% at 105% 15%, rgba(21, 119, 234, 0.24), transparent 55%),
    radial-gradient(90% 75% at 45% 115%, rgba(37, 50, 138, 0.38), transparent 60%);
  --gradient-mesh-light:
    radial-gradient(85% 65% at 8% -5%, rgba(0, 168, 168, 0.07), transparent 60%),
    radial-gradient(75% 65% at 100% 10%, rgba(21, 119, 234, 0.05), transparent 60%);
  --gradient-mesh-card:
    radial-gradient(120% 120% at 100% 0%, rgba(0, 168, 168, 0.08), transparent 55%);
  --gradient-hero:
    radial-gradient(ellipse 120% 80% at 10% -20%, rgba(0, 168, 168, 0.32) 0%, transparent 55%),
    radial-gradient(ellipse 90% 70% at 90% 10%, rgba(76, 56, 224, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 80% 60% at 50% 110%, rgba(22, 28, 82, 0.45) 0%, transparent 60%),
    var(--navy-800);
  --gradient-cta:
    radial-gradient(ellipse 100% 80% at 20% 20%, rgba(0, 168, 168, 0.38), transparent 55%),
    radial-gradient(ellipse 80% 60% at 85% 80%, rgba(76, 56, 224, 0.28), transparent 55%),
    var(--navy-800);

  /* ---- Glow effects ---- */
  --glow-teal:   0 0 1px rgba(0, 168, 168, 0.4), 0 8px 32px -4px rgba(0, 168, 168, 0.45);
  --glow-indigo: 0 0 1px rgba(21, 119, 234, 0.4), 0 8px 32px -4px rgba(21, 119, 234, 0.45);
  --glow-mixed:  0 12px 48px -8px rgba(0, 168, 168, 0.32), 0 12px 48px -8px rgba(21, 119, 234, 0.28);
  --glow-card:   0 4px 24px rgba(0, 0, 0, 0.07), 0 1px 3px rgba(0, 0, 0, 0.06);
  --glow-card-hover: 0 16px 48px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 168, 168, 0.12);

  /* ---- Typography ---- */
  --font-display: "Outfit", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body:    "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --weight-regular:  400;
  --weight-medium:   500;
  --weight-semibold: 600;
  --weight-bold:     700;
  --weight-extrabold:800;
  --weight-black:    900;

  --text-display-1: clamp(2.75rem, 2.2rem + 2.2vw, 4rem);
  --text-display-2: clamp(2.25rem, 1.9rem + 1.4vw, 3.25rem);
  --text-h2:   clamp(1.75rem, 1.5rem + 1vw, 2.25rem);
  --text-h3:   clamp(1.25rem, 1.1rem + 0.6vw, 1.625rem);
  --text-h4:   1.125rem;
  --text-lead: clamp(1.0625rem, 1rem + 0.35vw, 1.25rem);
  --text-body: 1.0625rem;
  --text-body-sm: 0.9375rem;
  --text-caption: 0.875rem;
  --text-label:   0.75rem;

  /* ---- Spacing ---- */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-7:  2rem;
  --space-8:  2.5rem;
  --space-9:  3rem;
  --space-10: 4rem;
  --space-11: 5rem;
  --space-12: 6rem;
  --space-13: 8rem;
  --space-14: 10rem;

  --section-y-compact: clamp(3.5rem, 3rem + 1.25vw, 4.5rem);
  --section-y-default: clamp(4.5rem, 3.5rem + 4vw, 7rem);
  --section-y-emphatic: clamp(4.5rem, 3.5rem + 5vw, 8rem);
  --stack-gap: clamp(1.5rem, 1rem + 1.5vw, 2.5rem);

  /* ---- Radius / border / shadow ---- */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   14px;
  --radius-xl:   20px;
  --radius-2xl:  28px;
  --radius-pill: 999px;

  --border-hairline: 1px;
  --border-strong:   2px;
  --border-color:        #e2e9f0;
  --border-color-strong: #c8d5e2;
  --border-color-dark:   rgba(255, 255, 255, 0.14);
  --border-accent:       rgba(0, 168, 168, 0.35);

  --shadow-xs:  0 1px 2px rgba(15, 35, 60, 0.05);
  --shadow-sm:  0 1px 3px rgba(15, 35, 60, 0.08), 0 1px 2px rgba(15, 35, 60, 0.04);
  --shadow-md:  0 4px 16px -2px rgba(15, 35, 60, 0.10), 0 2px 6px rgba(15, 35, 60, 0.04);
  --shadow-lg:  0 16px 48px -8px rgba(15, 35, 60, 0.14), 0 4px 12px rgba(15, 35, 60, 0.06);
  --shadow-xl:  0 28px 72px -12px rgba(15, 35, 60, 0.18);
  --shadow-2xl: 0 48px 120px -24px rgba(7, 23, 41, 0.22);
  --shadow-inset: inset 0 1px 3px rgba(15, 35, 60, 0.06);
  --shadow-focus: 0 0 0 3px rgba(0, 148, 148, 0.28);

  /* ---- Layout ---- */
  --container-max:    1240px;
  --container-wide:   1440px;
  --container-narrow: 760px;
  --container-prose:  64ch;
  --gutter:    clamp(1.25rem, 0.75rem + 2vw, 2rem);
  --grid-gap:  clamp(1rem, 0.5rem + 1.5vw, 1.5rem);
  --header-height: 68px;

  /* ---- Z-index ---- */
  --z-base:            0;
  --z-raised:          10;
  --z-sticky-header:   100;
  --z-scroll-progress: 150;
  --z-mobile-nav:      200;
  --z-consent:         300;
  --z-skip-link:       400;

  /* ---- Motion ---- */
  --dur-instant:    150ms;
  --dur-fast:       350ms;
  --dur-base:       500ms;
  --dur-slow:       700ms;
  --dur-deliberate: 900ms;
  --dur-cinematic:  1200ms;
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:  cubic-bezier(0.65, 0, 0.35, 1);
  --ease-entry:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring:  cubic-bezier(0.16, 1, 0.3, 1);

  /* ---- Focus ---- */
  --focus-ring-light: 0 0 0 2px var(--neutral-0), 0 0 0 4px var(--teal-600);
  --focus-ring-dark:  0 0 0 2px var(--navy-800), 0 0 0 4px var(--teal-300);
  --focus-offset: 2px;

  /* ---- Breakpoints ---- */
  --bp-sm: 600px;
  --bp-md: 840px;
  --bp-lg: 1080px;
  --bp-xl: 1360px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  :root {
    --dur-instant: 1ms;
    --dur-fast: 1ms;
    --dur-base: 1ms;
    --dur-slow: 1ms;
    --dur-deliberate: 1ms;
    --dur-cinematic: 1ms;
  }
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

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

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.65;
  color: var(--neutral-800);
  background: var(--bg-base);
  overflow-x: clip;
}

body.is-nav-open,
body.is-consent-open { overflow: hidden; }

/* Reveal system */
html.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity var(--dur-slow) var(--ease-entry),
    transform var(--dur-slow) var(--ease-entry);
  will-change: opacity, transform;
}

html.reveal-ready .reveal.is-visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}

html.reveal-ready .reveal-stagger > .reveal:nth-child(1) { transition-delay: 0ms; }
html.reveal-ready .reveal-stagger > .reveal:nth-child(2) { transition-delay: 60ms; }
html.reveal-ready .reveal-stagger > .reveal:nth-child(3) { transition-delay: 120ms; }
html.reveal-ready .reveal-stagger > .reveal:nth-child(4) { transition-delay: 180ms; }
html.reveal-ready .reveal-stagger > .reveal:nth-child(n + 5) { transition-delay: 240ms; }

/* Hero entrance */
html.js .hero-enter > * {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity var(--dur-cinematic) var(--ease-entry),
    transform var(--dur-cinematic) var(--ease-entry);
}

html.js .hero-enter.is-ready > *:nth-child(1) { transition-delay: 0ms; }
html.js .hero-enter.is-ready > *:nth-child(2) { transition-delay: 100ms; }
html.js .hero-enter.is-ready > *:nth-child(3) { transition-delay: 200ms; }
html.js .hero-enter.is-ready > *:nth-child(4) { transition-delay: 300ms; }
html.js .hero-enter.is-ready > *:nth-child(5) { transition-delay: 380ms; }

html.js .hero-enter.is-ready > * {
  opacity: 1;
  transform: none;
}

html.js .hero__motif {
  opacity: 0;
  transition: opacity 1200ms var(--ease-entry);
  transition-delay: 400ms;
}

html.js .hero-enter.is-ready .hero__motif,
html.js .hero.is-ready .hero__motif { opacity: 0.22; }

@media (prefers-reduced-motion: reduce) {
  html.reveal-ready .reveal,
  html.js .hero-enter > *,
  html.js .hero__motif {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

.mobile-nav[hidden],
.consent-banner[hidden],
.consent-dialog[hidden],
.consent-overlay[hidden] { display: none !important; }

img, svg, video, table, pre { max-width: 100%; }
img { height: auto; display: block; }

a {
  color: var(--teal-700);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition:
    color var(--dur-fast) var(--ease-out),
    text-decoration-color var(--dur-fast) var(--ease-out);
}

a:hover  { color: var(--navy-800); }
a:active { color: var(--navy-900); }

:focus { outline: none; }
:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring-light);
  border-radius: var(--radius-sm);
}

.site-header a:focus-visible,
.site-footer a:focus-visible,
.btn:focus-visible,
.nav-toggle:focus-visible { box-shadow: var(--focus-ring-light); }

.hero a:focus-visible,
.cta-band a:focus-visible,
.site-footer a:focus-visible,
.site-footer .footer__cookie-btn:focus-visible,
.btn--on-dark:focus-visible { box-shadow: var(--focus-ring-dark); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--navy-800);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0 0 var(--space-4);
  font-weight: var(--weight-bold);
  text-wrap: balance;
}

h1 {
  font-size: var(--text-display-2);
  font-weight: var(--weight-extrabold);
  line-height: 1.06;
}

h2 { font-size: var(--text-h2); }
h3 { font-size: var(--text-h3); }
h4 { font-size: var(--text-h4); font-family: var(--font-body); letter-spacing: 0; }

p { margin: 0 0 var(--space-4); }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0 0 var(--space-4); padding-left: 1.25rem; }
li + li { margin-top: var(--space-2); }

strong { font-weight: 600; color: var(--neutral-900); }

hr { border: 0; border-top: var(--border-hairline) solid var(--border-color); margin: var(--space-8) 0; }

/* Gradient text */
.text-gradient {
  background: linear-gradient(135deg, var(--teal-600) 0%, var(--indigo-500) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.container--narrow { max-width: var(--container-narrow); }
.container--wide   { max-width: var(--container-wide); }
.prose             { max-width: var(--container-prose); }
.prose--lead       { max-width: 56ch; }

.section { padding-block: var(--section-y-default); }
.section--compact { padding-block: var(--section-y-compact); }

main > .section:has(.grid),
main > .section:has(.journey),
main > .section:has(.feature-list),
main > .section:has(.faq-list),
main > .section:has(.two-col),
main > .section:has(.support-band),
main > .section:has(.contact-layout),
main > .section:has(.doc-chain) { padding-block: var(--section-y-compact); }

main > .section:has(> .container > .statement) { padding-block: var(--section-y-emphatic); }

.section--band {
  background: var(--bg-elevated);
  border-block: var(--border-hairline) solid var(--border-color);
}

/* Stats / structure band */
.structure-band {
  background: var(--bg-elevated);
  border-block: var(--border-hairline) solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.structure-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 180% at 0% 50%, rgba(0, 168, 168, 0.06), transparent 60%),
    radial-gradient(ellipse 60% 180% at 100% 50%, rgba(100, 85, 240, 0.05), transparent 60%);
  pointer-events: none;
}

.structure-band__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  position: relative;
  z-index: 1;
}

.structure-band__item {
  min-width: 0;
  padding: var(--space-8) var(--space-6);
  text-align: center;
  position: relative;
}

.structure-band__item:nth-child(odd) { border-right: var(--border-hairline) solid var(--border-color); }
.structure-band__item:nth-child(n + 3) { border-top: var(--border-hairline) solid var(--border-color); }

.structure-band__number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: var(--weight-black);
  line-height: 1;
  background: linear-gradient(135deg, var(--teal-600), var(--indigo-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.structure-band__label {
  margin: var(--space-3) 0 0;
  color: var(--neutral-600);
  font-size: var(--text-caption);
  line-height: 1.5;
}

.structure-band__label strong,
.structure-band__label span { display: block; }

.structure-band__label strong {
  margin-bottom: var(--space-1);
  color: var(--navy-800);
  font-size: var(--text-body-sm);
}

@media (min-width: 840px) {
  .structure-band__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .structure-band__item:nth-child(odd) { border-right: 0; }
  .structure-band__item:nth-child(n + 3) { border-top: 0; }
  .structure-band__item + .structure-band__item { border-left: var(--border-hairline) solid var(--border-color); }
}

.section--dark {
  background: var(--surface-dark);
  color: var(--neutral-0);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--dark strong { color: var(--neutral-0); }

/* Domain texture section */
.domain-texture {
  padding-block: var(--section-y-compact);
  background: var(--neutral-25);
  border-block: var(--border-hairline) solid var(--border-color);
}

.domain-texture__inner { display: grid; gap: var(--space-8); }
.domain-texture__heading { max-width: 22rem; }
.domain-texture__heading h2 { max-width: 16ch; margin: 0; font-size: var(--text-h3); }

.domain-texture__field { border-top: var(--border-hairline) solid var(--border-color); }

.domain-texture__group {
  display: grid;
  gap: var(--space-3);
  padding-block: var(--space-5);
  border-bottom: var(--border-hairline) solid var(--border-color);
}

.domain-texture__group h3 {
  margin: 0;
  color: var(--neutral-500);
  font-family: var(--font-mono);
  font-size: var(--text-label);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.domain-texture__tokens {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.domain-texture__tokens li {
  margin: 0;
  padding: 0.3rem var(--space-3);
  color: var(--neutral-700);
  background: var(--surface-page);
  border: var(--border-hairline) solid var(--border-color);
  border-radius: var(--radius-pill);
  font-size: var(--text-caption);
  line-height: 1.45;
  white-space: nowrap;
  transition: border-color var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out);
}

.domain-texture__tokens li:hover {
  border-color: var(--teal-400);
  background: var(--teal-50);
  color: var(--teal-700);
}

@media (min-width: 600px) {
  .domain-texture__group {
    grid-template-columns: minmax(8rem, 0.4fr) minmax(0, 1.6fr);
    gap: var(--space-6);
    align-items: start;
  }
  .domain-texture__group h3 { padding-top: 0.45rem; }
}

@media (min-width: 840px) {
  .domain-texture__inner {
    grid-template-columns: minmax(14rem, 0.6fr) minmax(0, 1.75fr);
    gap: var(--space-12);
    align-items: start;
  }
}

.section__intro { max-width: var(--container-prose); margin-bottom: var(--stack-gap); }

.stack { display: flex; flex-direction: column; gap: var(--stack-gap); }
.stack--sm { gap: var(--space-4); }

.grid       { display: grid; gap: var(--grid-gap); }
.grid--2    { grid-template-columns: 1fr; }
.grid--4    { grid-template-columns: 1fr; }

@media (min-width: 600px) {
  .grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1080px) {
  .grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

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

/* --------------------------------------------------------------------------
   4. Skip link
   -------------------------------------------------------------------------- */
.skip-link {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  z-index: var(--z-skip-link);
  padding: var(--space-3) var(--space-4);
  background: var(--navy-800);
  color: var(--neutral-0);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transform: translateY(-200%);
  transition: transform var(--dur-fast) var(--ease-out);
}

.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
  color: var(--neutral-0);
  box-shadow: var(--focus-ring-light);
}

/* --------------------------------------------------------------------------
   5. Header & navigation
   -------------------------------------------------------------------------- */
.scroll-progress {
  position: fixed;
  inset: 0 0 auto 0;
  height: 3px;
  z-index: var(--z-scroll-progress);
  pointer-events: none;
}

.scroll-progress__bar {
  display: block;
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--teal-500), var(--indigo-500));
  box-shadow: var(--glow-mixed);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky-header);
  height: var(--header-height);
  background: var(--surface-glass-light);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: var(--border-hairline) solid transparent;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5);
  transition: border-color var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out),
              background-color var(--dur-fast) var(--ease-out);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--border-color);
  box-shadow: var(--shadow-sm), inset 0 -1px 0 rgba(255, 255, 255, 0.5);
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .site-header, .site-header.is-scrolled { background: rgba(255, 255, 255, 0.98); }
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  height: var(--header-height);
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* Wordmark */
.wordmark {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 44px;
  text-decoration: none;
  min-width: 0;
  flex-shrink: 1;
  transition: opacity var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
}

.wordmark:hover { opacity: 0.86; text-decoration: none; }
.wordmark:active { opacity: 1; transform: translateY(1px); }
.wordmark:focus-visible { text-decoration: none; }

.wordmark__logo {
  display: block;
  width: clamp(6.5rem, 18vw, 9.5rem);
  height: auto;
  max-width: 100%;
  flex: 0 1 auto;
}

.wordmark__descriptor {
  display: none;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-indigo);
  line-height: 1.2;
  padding-left: 0.6rem;
  border-left: var(--border-hairline) solid var(--neutral-300);
  white-space: nowrap;
}


.wordmark--on-dark .wordmark__logo { filter: brightness(0) invert(1); opacity: 0.96; }
.wordmark--on-dark .wordmark__descriptor { color: var(--teal-300); border-left-color: rgba(255, 255, 255, 0.28); }

.wordmark--inline { flex-direction: row; align-items: center; flex-wrap: wrap; gap: var(--space-2); }
.wordmark--inline .wordmark__logo { width: 9.5rem; }

.site-header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-left: auto;
}

/* Primary nav */
.primary-nav { display: none; }

.primary-nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-nav__list > li { margin: 0; }

.primary-nav__link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: var(--space-2) var(--space-3);
  color: var(--neutral-600);
  font-size: var(--text-body-sm);
  font-weight: 500;
  text-decoration: none;
  position: relative;
  border-radius: var(--radius-md);
  transition: color var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out);
}

.primary-nav__link::after {
  content: "";
  position: absolute;
  left: var(--space-3);
  right: var(--space-3);
  bottom: 0.55rem;
  height: 2px;
  background: var(--teal-500);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--dur-fast) var(--ease-out);
}

.primary-nav__link:hover { color: var(--navy-800); background: var(--neutral-50); text-decoration: none; }
.primary-nav__link:hover::after { transform: scaleX(1); }
.primary-nav__link:active { color: var(--navy-900); }

.primary-nav__link[aria-current="page"] { color: var(--navy-800); font-weight: 600; }
.primary-nav__link[aria-current="page"]::after { transform: scaleX(1); }
.primary-nav__link:focus-visible::after { transform: scaleX(0); }

/* Nav toggle */
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  padding: 0;
  border: var(--border-hairline) solid var(--border-color);
  border-radius: var(--radius-md);
  background: var(--surface-page);
  color: var(--navy-800);
  cursor: pointer;
  touch-action: manipulation;
  transition: background var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
}

.nav-toggle:hover { background: var(--neutral-50); border-color: var(--neutral-300); }
.nav-toggle:active { background: var(--neutral-100); transform: translateY(1px); }

.nav-toggle__icon { position: relative; width: 18px; height: 12px; display: block; }

.nav-toggle__icon span {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform var(--dur-fast) var(--ease-out),
              top var(--dur-fast) var(--ease-out),
              opacity var(--dur-fast) var(--ease-out);
}

.nav-toggle__icon span:first-child { top: 2px; }
.nav-toggle__icon span:last-child  { top: 8px; }

.nav-toggle[aria-expanded="true"] .nav-toggle__icon span:first-child { top: 5px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__icon span:last-child  { top: 5px; transform: rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: block;
  position: fixed;
  inset: var(--header-height) 0 0 0;
  z-index: var(--z-mobile-nav);
  background: var(--surface-glass-light);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  overflow-y: auto;
  padding: var(--space-4) var(--gutter) var(--space-8);
  border-top: var(--border-hairline) solid var(--border-color);
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity var(--dur-base) var(--ease-entry),
              transform var(--dur-base) var(--ease-entry);
}

.mobile-nav.is-open { opacity: 1; transform: translateY(0); }

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .mobile-nav { background: var(--surface-page); }
}

.mobile-nav__list { list-style: none; margin: 0 0 var(--space-6); padding: 0; }
.mobile-nav__list > li { margin: 0; border-bottom: var(--border-hairline) solid var(--border-color); }

.mobile-nav__link {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: var(--space-4) 0;
  color: var(--navy-800);
  font-size: var(--text-h4);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
}

.mobile-nav__link:hover { color: var(--teal-700); }
.mobile-nav__link:active { transform: translateY(1px); }
.mobile-nav__link[aria-current="page"] { color: var(--teal-700); }
.mobile-nav__cta { width: 100%; justify-content: center; }

.header-cta-label-short { display: inline; }
.header-cta-label-full  { display: none; }

@media (max-width: 399px) {
  .site-header__inner { gap: var(--space-2); }
  .site-header__actions { gap: var(--space-2); }
  .site-header__actions > .btn { min-width: 0; min-height: 44px; padding: 0.625rem; font-size: var(--text-caption); white-space: nowrap; }
}

@media (min-width: 400px) {
  .header-cta-label-short { display: none; }
  .header-cta-label-full  { display: inline; }
}

@media (min-width: 840px) {
  :root { --header-height: 76px; }
  .nav-toggle, .mobile-nav { display: none !important; }
  .primary-nav { display: block; }
  .site-header__actions { gap: var(--space-5); }
  .header-cta-label-short { display: none; }
  .header-cta-label-full  { display: inline; }
}

/* --------------------------------------------------------------------------
   6. Buttons & links
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 48px;
  min-width: 160px;
  padding: 0.875rem 1.875rem;
  border: var(--border-hairline) solid transparent;
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  touch-action: manipulation;
  position: relative;
  overflow: hidden;
  transition: transform var(--dur-fast) var(--ease-spring),
              box-shadow var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out);
}

.btn:hover { text-decoration: none; }

/* Shimmer hover on btn */
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.20), transparent);
  transition: left var(--dur-slow) var(--ease-out);
  pointer-events: none;
}
.btn:hover::before { left: 160%; }

/* Primary button — blue gradient */
.btn--primary {
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
  color: var(--neutral-0);
  border-color: #1e40af;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.30), inset 0 1px 0 rgba(255,255,255,0.18);
}

.btn--primary:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  color: var(--neutral-0);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.40), inset 0 1px 0 rgba(255,255,255,0.18);
}

.btn--primary:active { transform: translateY(0); box-shadow: 0 2px 8px rgba(37, 99, 235, 0.28); color: var(--neutral-0); }

/* Magnetic CTA */
[data-magnetic] { position: relative; isolation: isolate; }

[data-magnetic]::before {
  content: "";
  position: absolute;
  inset: -14px;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(60% 60% at 50% 50%, rgba(0, 168, 168, 0.35), transparent 72%);
  opacity: 0.18;
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  [data-magnetic]::before { animation: magnetic-glow-pulse 3.6s var(--ease-in-out) infinite; }
}

@keyframes magnetic-glow-pulse {
  0%, 100% { opacity: 0.14; transform: scale(0.94); }
  50%       { opacity: 0.32; transform: scale(1.06); }
}

/* On-dark button */
.btn--on-dark {
  background: var(--neutral-0);
  color: var(--navy-800);
  box-shadow: 0 4px 14px rgba(0,0,0,0.20), inset 0 1px 0 rgba(255,255,255,0.90);
}

.btn--on-dark:hover {
  background: var(--neutral-25);
  color: var(--navy-800);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--on-dark:active { transform: translateY(0); box-shadow: var(--shadow-sm); color: var(--navy-800); }

/* Secondary buttons */
.btn--secondary {
  background: transparent;
  border-color: var(--border-color-strong);
  color: var(--navy-800);
}

.btn--secondary:hover {
  background: var(--neutral-50);
  border-color: var(--teal-500);
  color: var(--teal-700);
  transform: translateY(-1px);
}

.btn--secondary:active { background: var(--neutral-100); border-color: var(--neutral-300); transform: translateY(0); }

.btn--secondary-on-dark {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.32);
  color: var(--neutral-0);
}

.btn--secondary-on-dark:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.50);
  color: var(--neutral-0);
  transform: translateY(-1px);
}

.btn--secondary-on-dark:active { background: rgba(255, 255, 255, 0.16); color: var(--neutral-0); transform: translateY(0); }
.btn--secondary-on-dark:focus-visible { box-shadow: var(--focus-ring-dark); }

.btn--full { width: 100%; }

.btn[aria-disabled="true"],
.btn:disabled {
  background: var(--neutral-100);
  color: var(--neutral-400);
  border-color: var(--border-color);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Text links */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  min-height: 44px;
  color: var(--teal-700);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-out),
              gap var(--dur-fast) var(--ease-out);
}

.text-link::after { content: "→"; transition: transform var(--dur-fast) var(--ease-out); }
.text-link:hover { color: var(--navy-800); gap: var(--space-3); }
.text-link:hover::after { transform: translateX(2px); }

.text-link--on-dark { color: var(--teal-300); }
.text-link--on-dark:hover { color: var(--neutral-0); }
.text-link--on-dark:active, .cta-band__support a:active { color: var(--teal-300); }

.cta-group { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-4) var(--space-6); }

/* --------------------------------------------------------------------------
   7. Eyebrow, hero, section chrome
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  margin: 0 0 var(--space-4);
  font-family: var(--font-mono);
  font-size: var(--text-label);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-700);
  line-height: 1.4;
}

.eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal-500), var(--teal-200));
  flex-shrink: 0;
  border-radius: 1px;
}

.eyebrow--on-dark { color: var(--teal-300); }

.lead { font-size: var(--text-lead); line-height: 1.65; color: var(--neutral-600); }
.muted   { color: var(--neutral-500); }
.caption { font-size: var(--text-caption); color: var(--neutral-500); line-height: 1.5; }

/* ---- Hero — dark surface ---- */
.hero {
  position: relative;
  background: var(--gradient-hero);
  color: var(--neutral-0);
  padding-block: var(--section-y-default);
  overflow: hidden;
}

/* Grid overlay on hero */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.hero__glow {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 140%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(38% 55% at 20% 15%, rgba(0, 168, 168, 0.42), transparent 70%),
    radial-gradient(32% 50% at 85% 75%, rgba(21, 119, 234, 0.30), transparent 70%);
  filter: blur(48px);
}

@media (prefers-reduced-motion: no-preference) {
  .hero__glow { animation: hero-glow-drift 16s var(--ease-in-out) infinite alternate; }
}

@keyframes hero-glow-drift {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(3%, -4%, 0) scale(1.08); }
}

.hero__accent { color: var(--teal-300); }
.hero--home    { padding-block: var(--section-y-compact); margin-bottom: var(--space-6); }
.hero--compact { padding-block: var(--section-y-compact); }
.hero__inner   { position: relative; z-index: 1; }

.hero__grid { display: grid; gap: var(--space-10); }

@media (min-width: 1024px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.1fr);
    align-items: center;
    gap: var(--space-12);
  }
  .hero__content h1 { max-width: none; }
}

.hero__visual { display: none; }
@media (min-width: 1024px) { .hero__visual { display: block; } }

/* Hero badge chip */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
  padding: 0.35rem var(--space-4) 0.35rem var(--space-3);
  background: rgba(0, 168, 168, 0.14);
  border: var(--border-hairline) solid rgba(0, 212, 212, 0.30);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: var(--text-label);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--teal-200);
}

.hero__badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal-300);
  flex-shrink: 0;
  animation: live-pulse 2.2s var(--ease-in-out) infinite;
}

.hero h1 {
  color: var(--neutral-0);
  font-size: var(--text-display-1);
  max-width: 16ch;
  margin-bottom: var(--space-5);
}

.hero--compact h1 { font-size: var(--text-display-2); max-width: 20ch; }
.hero .lead { color: var(--text-on-dark-secondary); max-width: 52ch; margin-bottom: var(--space-8); }

@media (max-width: 640px) {
  .hero--home { padding-block: var(--space-10); }
  .hero h1, .hero--compact h1 { font-size: 1.875rem; margin-bottom: var(--space-4); }
  .hero .lead, .hero--compact .lead { margin-bottom: var(--space-5); }
}

.hero__qualifier { margin-top: var(--space-6); font-size: var(--text-caption); color: var(--text-on-dark-muted); max-width: 48ch; }

.hero__motif {
  position: absolute;
  inset: auto -10% -20% auto;
  width: min(55vw, 520px);
  height: min(55vw, 520px);
  pointer-events: none;
  opacity: 0.22;
}
.hero__motif svg { width: 100%; height: 100%; }

.pullout {
  margin: var(--space-6) 0 0;
  padding: var(--space-5) var(--space-6);
  border-left: 2px solid var(--teal-500);
  background: var(--teal-50);
  color: var(--navy-800);
  font-weight: 600;
  max-width: var(--container-prose);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.statement {
  padding: var(--space-8);
  background: var(--bg-elevated);
  border: var(--border-hairline) solid var(--border-color);
  border-radius: var(--radius-xl);
}
.statement p { max-width: var(--container-prose); }

.credibility-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: var(--space-2) var(--space-5);
  max-width: var(--container-prose);
  padding: var(--space-4) var(--space-5);
  border: var(--border-hairline) solid var(--teal-200);
  border-radius: var(--radius-lg);
  background: var(--teal-50);
  color: var(--neutral-700);
  font-size: var(--text-body-sm);
}

.credibility-strip > strong {
  color: var(--teal-800);
  font-family: var(--font-mono);
  font-size: var(--text-label);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (min-width: 840px) {
  .section:has(.credibility-strip) > .container {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr);
    gap: var(--space-10);
    align-items: end;
  }
  .section:has(.credibility-strip) .section__intro { margin-bottom: 0; }
}

/* --------------------------------------------------------------------------
   8. Cards
   -------------------------------------------------------------------------- */
.card {
  background: var(--surface-card);
  border: var(--border-hairline) solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: var(--space-7);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-spring);
}

.card:hover {
  border-color: var(--teal-200);
  box-shadow: var(--glow-card-hover);
  transform: translateY(-3px);
}

.card h3 { margin-bottom: var(--space-3); }
.card p  { color: var(--neutral-700); }

/* Cost signal cards */
.cost-card {
  padding: var(--space-6);
  background: var(--surface-card);
  border: var(--border-hairline) solid var(--border-color);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: border-color var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-spring);
}

.cost-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-500), var(--indigo-400));
  opacity: 0.5;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.cost-card:hover {
  border-color: var(--neutral-300);
  box-shadow: var(--glow-card-hover);
  transform: translateY(-3px);
}

.cost-card:hover::before { opacity: 1; }

.cost-card h3 { font-family: var(--font-body); font-size: var(--text-h4); margin-bottom: var(--space-2); color: var(--navy-800); }
.cost-card p  { color: var(--neutral-600); margin: 0; }

@media (min-width: 840px) {
  .cost-signal-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* Feature list */
.feature-list { display: grid; gap: var(--space-3); }

.feature-list__item {
  display: grid;
  gap: var(--space-4);
  padding: var(--space-7);
  background: var(--surface-card);
  border: var(--border-hairline) solid var(--border-color);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-spring);
}

.feature-list__item:hover {
  border-color: var(--teal-200);
  box-shadow: var(--glow-card-hover);
  transform: translateY(-2px);
}

.feature-list__item h3 { margin: 0; }
.feature-list__item p  { margin: 0; color: var(--neutral-700); max-width: var(--container-prose); }

@media (min-width: 840px) {
  .feature-list__item {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.6fr);
    gap: var(--space-8);
    align-items: start;
  }
}

/* --------------------------------------------------------------------------
   9. Dashboard illustration
   -------------------------------------------------------------------------- */
.illus--hero { margin: 0; }

.illus--hero .illus__frame {
  background: var(--surface-card);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow-xl), var(--glow-teal);
}

.illus.illus--hero figcaption { color: var(--text-on-dark-secondary); }

.dashboard-preview__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-5);
  background: var(--neutral-50);
  border-bottom: var(--border-hairline) solid var(--border-color);
}

.dashboard-preview__title {
  font-family: var(--font-mono);
  font-size: var(--text-label);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--neutral-500);
}

.dashboard-preview__live {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--text-caption);
  font-weight: 500;
  color: var(--teal-700);
}

.dashboard-preview__live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal-500);
}

@media (prefers-reduced-motion: no-preference) {
  .dashboard-preview__live-dot { animation: live-pulse 2.2s var(--ease-in-out) infinite; }
}

@keyframes live-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 168, 168, 0.48); }
  50%       { box-shadow: 0 0 0 6px rgba(0, 168, 168, 0); }
}

.dashboard-preview__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-2);
  padding: var(--space-4) var(--space-5);
  border-bottom: var(--border-hairline) solid var(--border-color);
}

.dashboard-preview__metric { display: flex; flex-direction: column; gap: 0.1rem; }

.dashboard-preview__metric strong {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  color: var(--teal-700);
  line-height: 1;
  font-weight: var(--weight-bold);
}

.dashboard-preview__metric span { font-size: 0.6875rem; color: var(--neutral-500); }

.dashboard-preview__shell {
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 1fr);
  min-height: 18rem;
}

.dashboard-preview__sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-2);
  background: var(--navy-900);
  border-right: var(--border-hairline) solid rgba(255, 255, 255, 0.08);
}

.dashboard-preview__nav-item {
  display: block;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.12);
}

.dashboard-preview__nav-item.is-active {
  background: var(--teal-500);
  box-shadow: 0 0 0 3px rgba(0, 168, 168, 0.24);
}

.dashboard-preview__main {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--surface-card);
}

.dashboard-preview__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-5);
  border-bottom: var(--border-hairline) solid var(--border-color);
  background: var(--surface-card);
}

.dashboard-preview__search,
.dashboard-preview__filter {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0 var(--space-3);
  border-radius: var(--radius-md);
  font-size: var(--text-caption);
  color: var(--neutral-500);
  border: var(--border-hairline) solid var(--border-color);
  background: var(--neutral-50);
}

.dashboard-preview__search {
  flex: 1 1 auto;
  max-width: 14rem;
}

.dashboard-preview__filter {
  flex: 0 0 auto;
  font-weight: 500;
  color: var(--navy-700);
}

.dashboard-preview__table .illus__header,
.dashboard-preview__table .illus__row {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr) minmax(0, 1.1fr) minmax(0, 0.75fr);
}

.illus--dashboard { margin-top: var(--space-6); }

.illus--dashboard .illus__frame {
  box-shadow: var(--shadow-lg);
}

@media (max-width: 599px) {
  .dashboard-preview__shell { grid-template-columns: 2.5rem minmax(0, 1fr); }
  .dashboard-preview__sidebar { padding-inline: var(--space-1); gap: var(--space-2); }
  .dashboard-preview__nav-item { width: 1.35rem; height: 1.35rem; }
  .dashboard-preview__toolbar { padding-inline: var(--space-3); }
  .dashboard-preview__filter { display: none; }
  .dashboard-preview__table .illus__header,
  .dashboard-preview__table .illus__row { grid-template-columns: minmax(0, 1fr) auto; }
}

[data-status-cycle] { transition: opacity var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out); }
[data-status-cycle].is-cycling { opacity: 0.45; transform: scale(0.96); }

/* --------------------------------------------------------------------------
   10. Journey rail & status pills
   -------------------------------------------------------------------------- */
.journey { margin-top: var(--space-6); }

.journey__rail {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.journey__step {
  position: relative;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: var(--space-3);
  align-items: start;
  min-height: 48px;
  padding: 0 0 var(--space-5);
}

.journey__step + .journey__step { margin-top: 0; }

.journey__step:not(:last-child)::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 32px; bottom: 0; left: 15px;
  width: 2px;
  background: linear-gradient(180deg, var(--teal-400), var(--neutral-200));
}

.journey__marker {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: var(--text-label);
  font-weight: 600;
}

.journey__label { padding-top: 0.3rem; font-weight: 600; color: var(--navy-800); line-height: 1.35; }

.journey__note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  margin-top: var(--space-5);
  padding-top: var(--space-4);
  border-top: var(--border-hairline) solid var(--border-color);
}

.journey__note p,
.journey__note .exception-note { margin: 0; }

@media (min-width: 840px) {
  .journey__rail { grid-template-columns: repeat(11, minmax(0, 1fr)); }

  .journey__step {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: 36px auto;
    gap: var(--space-2);
    min-height: 0;
    padding: 0 var(--space-1);
    text-align: center;
  }

  .journey__step:not(:last-child)::before {
    top: 17px; bottom: auto; left: 50%;
    width: 100%; height: 2px;
    background: linear-gradient(90deg, var(--teal-400), var(--neutral-200));
  }

  .journey__marker { justify-self: center; }
  .journey__label  { padding-top: 0; font-size: var(--text-caption); line-height: 1.3; }
}

.exception-note {
  display: inline-flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-top: var(--space-5);
  padding: var(--space-4) var(--space-5);
  border: var(--border-hairline) solid var(--error-200);
  background: var(--error-100);
  border-radius: var(--radius-md);
  color: var(--error-700);
  font-size: var(--text-body-sm);
  font-weight: 500;
  max-width: var(--container-prose);
}

.exception-note::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 0.4rem;
  border-radius: 50%;
  background: var(--error-600);
  flex-shrink: 0;
}

/* Status pills */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 26px;
  max-width: 100%;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-pill);
  font-size: var(--text-caption);
  font-weight: 500;
  line-height: 1.3;
  white-space: normal;
  border: var(--border-hairline) solid transparent;
}

.status-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

.status-pill--complete  { color: var(--success-700); background: var(--success-100); border-color: var(--success-200); }
.status-pill--progress  { color: var(--teal-800);    background: var(--teal-50);     border-color: var(--teal-100); }
.status-pill--awaiting  { color: var(--warning-700); background: var(--warning-100); border-color: var(--warning-200); }
.status-pill--idle      { color: var(--neutral-600); background: var(--neutral-100); border-color: var(--border-color); }
.status-pill--cancelled { color: var(--error-700);   background: var(--error-100);   border-color: var(--error-200); }

/* Illustrative frames */
.illus { margin: var(--space-7) 0 0; }
.section__intro + .illus { margin-top: 0; }

.illus__frame {
  border: var(--border-hairline) solid var(--border-color);
  border-radius: var(--radius-xl);
  background: var(--surface-card);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.illus__header {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr 1fr 0.9fr;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  background: var(--neutral-50);
  border-bottom: var(--border-hairline) solid var(--border-color);
  font-family: var(--font-mono);
  font-size: var(--text-label);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neutral-500);
}

.illus__row {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr 1fr 0.9fr;
  gap: var(--space-3);
  align-items: center;
  padding: var(--space-4) var(--space-5);
  border-bottom: var(--border-hairline) solid var(--border-color);
  font-size: var(--text-body-sm);
  transition: background var(--dur-fast) var(--ease-out);
}

.illus__row:hover { background: var(--teal-50); }
.illus__row:last-child { border-bottom: 0; }

.illus--stages .illus__header,
.illus--stages .illus__row { grid-template-columns: minmax(0, 1fr) auto; padding-block: var(--space-3); }

.illus__ref  { font-family: var(--font-mono); font-weight: 500; color: var(--navy-800); }
.illus__meta { color: var(--neutral-600); }
.illus__hide-sm { display: none; }

.illus figcaption { margin-top: var(--space-3); text-align: center; font-size: var(--text-caption); color: var(--neutral-500); }

@media (min-width: 600px) { .illus__hide-sm { display: block; } }

@media (max-width: 599px) {
  .illus__header,
  .illus__row { grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); }
  .btn { min-width: 0; }
  .not-found__routes .btn { width: 100%; max-width: 18rem; }
}

/* Tables */
.step-table { width: 100%; border-collapse: collapse; margin: var(--space-6) 0; font-size: var(--text-body-sm); }

.step-table th,
.step-table td { text-align: left; padding: var(--space-4) var(--space-3); border-bottom: var(--border-hairline) solid var(--border-color); vertical-align: top; }

.step-table th {
  font-family: var(--font-mono);
  font-size: var(--text-label);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neutral-500);
  background: var(--neutral-50);
}

.step-table td:first-child { font-weight: 600; color: var(--navy-800); white-space: nowrap; }

.permission-table { width: 100%; border-collapse: collapse; font-size: var(--text-body-sm); }

.permission-table th,
.permission-table td { padding: var(--space-3) var(--space-4); border: var(--border-hairline) solid var(--border-color); text-align: center; }

.permission-table th[scope="row"] { text-align: left; font-weight: 600; color: var(--navy-800); background: var(--neutral-25); }

.permission-table thead th {
  font-family: var(--font-mono);
  font-size: var(--text-label);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--neutral-500);
  background: var(--neutral-100);
}

.permission-table .tick { color: var(--success-600); font-weight: 700; }
.permission-table .tick::before { content: "✓"; }
.permission-table .dash { color: var(--neutral-400); }
.permission-table .dash::before { content: "–"; }

/* Operations panels */
.operations-figure { margin: 0; }
.operations-grid   { display: grid; gap: var(--grid-gap); }

.operations-panel {
  min-width: 0;
  padding: var(--space-5);
  border: var(--border-hairline) solid var(--border-color);
  border-radius: var(--radius-xl);
  background: var(--surface-card);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-spring);
}

.operations-panel:hover {
  border-color: var(--teal-200);
  box-shadow: var(--glow-card-hover);
  transform: translateY(-2px);
}

.operations-panel__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}

.operations-panel__header h3 { margin: 0; font-size: var(--text-h4); }

.payment-order { padding: var(--space-4); border-radius: var(--radius-md); background: var(--neutral-50); }

.payment-milestones { margin: var(--space-4) 0 0; padding: 0; list-style: none; }

.payment-milestones li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  min-height: 44px;
  margin: 0;
  padding: var(--space-2) 0 var(--space-2) var(--space-5);
  border-bottom: var(--border-hairline) solid var(--border-color);
  color: var(--navy-800);
  font-size: var(--text-body-sm);
  font-weight: 600;
}

.payment-milestones li::before {
  content: "";
  position: absolute;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--success-600);
}

.payment-milestones li:last-child { border-bottom: 0; }

.payment-order__currency,
.operations-panel__note {
  margin: var(--space-3) 0 0;
  color: var(--neutral-500);
  font-family: var(--font-mono);
  font-size: var(--text-label);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.operations-panel__table { overflow-x: auto; }
.permission-table--compact th,
.permission-table--compact td { padding: var(--space-2) 0; }

.operations-figure figcaption { margin-top: var(--space-3); text-align: center; color: var(--neutral-500); font-size: var(--text-caption); }

@media (min-width: 840px) { .operations-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* --------------------------------------------------------------------------
   11. Document chain
   -------------------------------------------------------------------------- */
.doc-chain-wrap { margin-top: var(--space-6); }
.section__intro + .doc-chain-wrap { margin-top: 0; }

.doc-chain { display: grid; gap: var(--space-4); margin: 0; padding: 0; list-style: none; }

.doc-chain__item {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: var(--space-4);
  align-items: center;
  padding: var(--space-4) var(--space-5);
  border: var(--border-hairline) solid var(--border-color);
  border-radius: var(--radius-lg);
  background: var(--surface-card);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-spring);
}

.doc-chain__item:hover {
  border-color: var(--teal-200);
  box-shadow: var(--glow-card-hover);
  transform: translateY(-2px);
}

.doc-chain__item:not(:last-child)::after {
  content: "↓";
  position: absolute;
  top: 100%; left: 50%;
  z-index: 1;
  width: var(--space-4);
  height: var(--space-4);
  color: var(--teal-600);
  font-size: var(--text-body-sm);
  line-height: var(--space-4);
  text-align: center;
  transform: translateX(-50%);
}

.doc-chain__index {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-100);
  color: var(--teal-800);
  border: var(--border-hairline) solid var(--teal-200);
  font-family: var(--font-mono);
  font-size: var(--text-caption);
  font-weight: 600;
}

.doc-chain__title  { font-weight: 600; color: var(--navy-800); }
.doc-chain__hint   { display: block; margin-top: 0.15rem; font-size: var(--text-caption); color: var(--neutral-500); }

.doc-chain__attachment {
  width: max-content;
  max-width: 100%;
  margin: var(--space-5) auto 0;
  padding: var(--space-3) var(--space-5);
  border: var(--border-hairline) dashed var(--teal-300);
  border-radius: var(--radius-md);
  background: var(--teal-50);
  text-align: center;
  color: var(--teal-700);
}

.doc-chain__attachment::before { content: "↳"; margin-right: var(--space-2); color: var(--teal-600); font-family: var(--font-mono); }

@media (min-width: 840px) {
  .doc-chain { grid-template-columns: repeat(5, minmax(0, 1fr)); }

  .doc-chain__item {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: 124px;
    align-content: center;
  }

  .doc-chain__item:not(:last-child)::after {
    content: "→";
    top: 50%; left: 100%;
    width: var(--space-4); height: var(--space-6);
    line-height: var(--space-6);
    transform: translateY(-50%);
  }

  .doc-chain__index { margin-inline: auto; }
}

/* --------------------------------------------------------------------------
   12. FAQ
   -------------------------------------------------------------------------- */
.faq-list { border-top: var(--border-hairline) solid var(--border-color); }
.faq-item  { border-bottom: var(--border-hairline) solid var(--border-color); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  font-family: var(--font-body);
  font-size: var(--text-h4);
  font-weight: 600;
  color: var(--navy-800);
  line-height: 1.35;
  transition: color var(--dur-fast) var(--ease-out);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  margin-top: 0.45rem;
  border-right: 2px solid var(--neutral-400);
  border-bottom: 2px solid var(--neutral-400);
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: transform var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out);
}

.faq-item[open] summary::after { transform: rotate(225deg); margin-top: 0.65rem; border-color: var(--teal-600); }
.faq-item summary:hover { color: var(--navy-900); }
.faq-item[open] summary { color: var(--teal-800); }
.faq-item summary:active { background: var(--neutral-50); color: var(--navy-900); }

.faq-item__body { padding: 0 0 var(--space-6); color: var(--neutral-700); max-width: var(--container-prose); }
.faq-item__body p + p { margin-top: var(--space-4); }

/* --------------------------------------------------------------------------
   13. Forms
   -------------------------------------------------------------------------- */
.form { display: grid; gap: var(--space-5); }
.form__row { display: grid; gap: var(--space-2); }
.form__label { font-size: var(--text-body-sm); font-weight: 600; color: var(--navy-800); }
.form__required { color: var(--error-600); font-weight: 600; }
.form__help { font-size: var(--text-caption); color: var(--neutral-500); margin: 0; }

.form__control {
  width: 100%;
  min-height: 52px;
  padding: 0.875rem 1rem;
  border: var(--border-hairline) solid var(--border-color-strong);
  border-radius: var(--radius-md);
  background: var(--surface-page);
  color: var(--neutral-800);
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.4;
  transition: border-color var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out);
}

.form__control:hover { border-color: var(--neutral-400); }
.form__control:focus { border-color: var(--teal-600); box-shadow: var(--shadow-focus); outline: none; }
.form__control::placeholder { color: var(--neutral-400); }

textarea.form__control { min-height: 120px; resize: vertical; }

select.form__control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%234e6880' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.75rem;
}

.form__honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__actions  { display: grid; gap: var(--space-4); margin-top: var(--space-2); }
.form__privacy  { font-size: var(--text-caption); color: var(--neutral-500); margin: 0; }

.form-error-summary {
  display: none;
  padding: var(--space-4) var(--space-5);
  border-left: 3px solid var(--error-600);
  background: var(--error-100);
  border-radius: var(--radius-md);
  color: var(--error-700);
}

.form-error-summary.is-visible { display: block; }
.form-error-summary h3 { color: var(--error-700); font-family: var(--font-body); font-size: var(--text-body); margin-bottom: var(--space-2); }
.form-error-summary ul { margin: 0; padding-left: 1.1rem; }

.form-success {
  display: none;
  padding: var(--space-7);
  border-left: 3px solid var(--success-600);
  background: var(--success-50);
  border-radius: var(--radius-lg);
}

.form-success.is-visible { display: block; }
.form-success h2 { color: var(--success-700); font-size: var(--text-h3); }

.contact-layout { display: grid; gap: var(--space-10); }
.contact-form-panel { padding: var(--space-5); }
.contact-aside { display: grid; gap: var(--space-7); }
.contact-aside h2 { font-size: var(--text-h3); margin-bottom: var(--space-4); }

.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li { margin: 0 0 var(--space-3); padding-left: 0; position: relative; }
.contact-list li::before { content: "–"; color: var(--teal-700); margin-right: var(--space-2); }

.direct-contact { padding: var(--space-6); border: var(--border-hairline) solid var(--border-color); border-radius: var(--radius-xl); background: var(--teal-50); }
.direct-contact p { margin-bottom: var(--space-2); }
.direct-contact a { font-weight: 600; overflow-wrap: anywhere; }

@media (min-width: 840px) {
  .contact-layout { grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); align-items: start; }
  .contact-layout--swap { grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr); }
  .contact-layout--swap .contact-aside { order: -1; }
  .contact-layout--swap .contact-form-panel { order: 0; }
}

/* --------------------------------------------------------------------------
   14. CTA band & footer
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  background: var(--gradient-cta);
  color: var(--neutral-0);
  padding-block: var(--section-y-emphatic);
  overflow: hidden;
  text-align: center;
}

/* Floating orbs */
.cta-band::before {
  content: "";
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 168, 168, 0.22), transparent 70%);
  top: -200px; left: -100px;
  pointer-events: none;
}

.cta-band::after {
  content: "";
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(100, 85, 240, 0.20), transparent 70%);
  bottom: -150px; right: -100px;
  pointer-events: none;
}

.cta-band__inner { position: relative; z-index: 1; max-width: var(--container-narrow); margin-inline: auto; padding-inline: var(--gutter); }
.cta-band h2    { color: var(--neutral-0); font-size: var(--text-display-2); margin-bottom: var(--space-4); }
.cta-band .lead { color: var(--text-on-dark-secondary); margin-inline: auto; margin-bottom: var(--space-8); }
.cta-band .cta-group { justify-content: center; }
.cta-band__support { margin-top: var(--space-5); font-size: var(--text-caption); color: var(--text-on-dark-muted); }
.cta-band__support a { color: var(--teal-300); }

/* Footer */
.site-footer {
  background: var(--surface-dark-deep);
  color: var(--text-on-dark-secondary);
  padding-top: var(--space-6);
  padding-bottom: var(--space-4);
}

.site-footer a { color: var(--text-on-dark-secondary); text-decoration: none; }
.site-footer a:hover { color: var(--neutral-0); text-decoration: underline; }
.site-footer a:active { color: var(--teal-300); }

.footer__grid { display: grid; gap: var(--space-6); margin-bottom: var(--space-6); }
.footer__brand p { margin-top: var(--space-3); max-width: 32ch; color: var(--text-on-dark-muted); font-size: var(--text-caption); }
.footer__brand .footer__maker { margin-top: var(--space-2); color: var(--text-on-dark-muted); }
.footer__maker a { color: var(--neutral-0); font-weight: 600; text-decoration: underline; text-underline-offset: 0.18em; }

/* Brand origin */
.brand-origin {
  display: grid;
  gap: var(--space-8);
  align-items: center;
  padding: clamp(var(--space-7), 4vw, var(--space-10));
  border: var(--border-hairline) solid var(--neutral-200);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(21, 119, 234, 0.06), transparent 56%), var(--surface-page);
  box-shadow: var(--shadow-sm);
}

.brand-origin__mark {
  display: grid;
  place-items: center;
  min-height: 8rem;
  padding: var(--space-7);
  border: var(--border-hairline) solid rgba(37, 50, 138, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
}

.brand-origin__logo { display: block; width: min(100%, 15rem); height: auto; }
.brand-origin__copy h2 { margin-bottom: var(--space-4); }
.brand-origin__copy p:not(.eyebrow) { max-width: 62ch; }

@media (min-width: 760px) { .brand-origin { grid-template-columns: minmax(14rem, 0.75fr) minmax(0, 1.4fr); } }

.footer__heading { margin: 0 0 var(--space-3); font-family: var(--font-mono); font-size: var(--text-label); font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal-300); }
.footer__list { list-style: none; margin: 0; padding: 0; }
.footer__list li { margin: 0 0 var(--space-1); }
.footer__list a { display: inline-flex; min-width: 36px; min-height: 32px; align-items: center; }

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3) var(--space-5);
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-4);
  border-top: var(--border-hairline) solid var(--border-color-dark);
  font-size: var(--text-caption);
  color: var(--text-on-dark-muted);
}

.footer__legal-links { display: flex; flex-wrap: wrap; gap: var(--space-3) var(--space-5); align-items: center; }
.footer__legal-links a { display: inline-flex; align-items: center; min-width: 36px; min-height: 32px; }

.footer__cookie-btn {
  appearance: none;
  border: 0;
  background: none;
  padding: 0;
  margin: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  min-height: 44px;
  transition: color var(--dur-fast) var(--ease-out);
}

.footer__cookie-btn:hover { color: var(--neutral-0); }
.footer__cookie-btn:active { color: var(--teal-300); }

.footer__cookie-btn--inline {
  display: inline-flex;
  align-items: center;
  min-width: 44px;
  min-height: 44px;
  color: var(--teal-700);
  vertical-align: middle;
}

.footer__cookie-btn--inline:hover  { color: var(--navy-800); }
.footer__cookie-btn--inline:active { color: var(--navy-900); }

@media (min-width: 600px) { .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 840px) { .footer__grid { grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr)); } }

/* --------------------------------------------------------------------------
   15. Content helpers
   -------------------------------------------------------------------------- */
.two-col { display: grid; gap: var(--space-8); }

@media (min-width: 840px) { .two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-10); } }

.content-block + .content-block { margin-top: var(--stack-gap); }

.boundary-note {
  margin-top: var(--space-5);
  padding: var(--space-5) var(--space-6);
  border-left: 2px solid var(--navy-600);
  background: var(--indigo-50);
  color: var(--neutral-700);
  max-width: var(--container-prose);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.boundary-note strong { color: var(--navy-800); }

.bullet-list { margin: 0; padding-left: 1.1rem; color: var(--neutral-700); }
.bullet-list li + li { margin-top: var(--space-3); }

.not-found { text-align: center; padding-block: var(--section-y-emphatic); }
.not-found h1 { margin-bottom: var(--space-4); }
.not-found .lead { margin-inline: auto; margin-bottom: var(--space-8); }
.not-found__routes { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-4) var(--space-6); }

.privacy-section + .privacy-section { margin-top: var(--space-9); padding-top: var(--space-8); border-top: var(--border-hairline) solid var(--border-color); }
.privacy-section h2 { font-size: var(--text-h3); }
.legal-todo { font-family: var(--font-mono); font-size: var(--text-caption); color: var(--neutral-500); }

.legal-banner {
  margin-bottom: var(--space-9);
  padding: var(--space-5) var(--space-6);
  border-left: 3px solid var(--warning-600);
  background: var(--warning-100);
  border-radius: var(--radius-md);
}

.legal-banner strong { display: block; margin-bottom: var(--space-2); color: var(--warning-700); font-family: var(--font-body); }
.legal-banner p { margin: 0; color: var(--neutral-700); font-size: var(--text-body-sm); }

.feature-list__kicker {
  margin: 0 0 var(--space-2);
  font-family: var(--font-mono);
  font-size: var(--text-label);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-700);
}

.feature-evidence { margin: var(--space-4) 0 0; padding-left: 1.15rem; color: var(--neutral-700); }
.feature-evidence li + li { margin-top: var(--space-2); }

.support-band {
  display: grid;
  gap: var(--space-6);
  padding: var(--space-8);
  background: var(--teal-50);
  border: var(--border-hairline) solid var(--teal-100);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 840px) { .support-band { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr); gap: var(--space-10); align-items: start; } }

.section-follow, .section-cta { margin-top: var(--space-7); }

.journey__detail { margin: var(--space-1) 0 0; font-size: var(--text-body-sm); font-weight: 400; color: var(--neutral-500); max-width: 48ch; }

.journey__step.is-complete .journey__dot { border-color: var(--success-600); background: var(--success-600); box-shadow: inset 0 0 0 2px var(--neutral-0); }

/* Ship card */
.ship-card { margin: 0; }

.ship-card__frame { border: var(--border-hairline) solid var(--border-color); border-radius: var(--radius-xl); background: var(--surface-card); overflow: hidden; box-shadow: var(--shadow-sm); }

.ship-card__header { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--space-3); padding: var(--space-4) var(--space-5); background: var(--neutral-100); border-bottom: var(--border-hairline) solid var(--border-color); }

.ship-card__fields { margin: 0; padding: var(--space-2) 0; }

.ship-card__fields > div {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: var(--space-3);
  padding: var(--space-3) var(--space-5);
  border-bottom: var(--border-hairline) solid var(--border-color);
  font-size: var(--text-body-sm);
}

@media (max-width: 399px) { .ship-card__fields > div { grid-template-columns: 1fr; gap: var(--space-1); } }

.ship-card__fields > div:last-child { border-bottom: 0; }
.ship-card__fields dt { margin: 0; font-weight: 600; color: var(--navy-800); }
.ship-card__fields dd { margin: 0; color: var(--neutral-600); }

/* Form consent */
.form__consent { display: grid; grid-template-columns: auto 1fr; gap: var(--space-3); align-items: start; min-height: 44px; font-size: var(--text-body-sm); color: var(--neutral-700); cursor: pointer; }
.form__consent a { display: inline-flex; align-items: center; min-height: 44px; vertical-align: middle; }
.form__consent input { width: 1.15rem; height: 1.15rem; margin-top: 0.2rem; accent-color: var(--teal-700); }

.form__error { margin: 0; font-size: var(--text-caption); color: var(--error-600); }
.form__control[aria-invalid="true"] { border-color: var(--error-600); border-width: 2px; background: var(--error-100); }

.form-error-summary { outline: none; }
.form-success:focus { outline: none; box-shadow: var(--shadow-focus); }

/* --------------------------------------------------------------------------
   16. Cookie consent
   -------------------------------------------------------------------------- */
body.is-consent-open { overflow: hidden; }

.consent-banner { position: fixed; left: 0; right: 0; bottom: 0; z-index: var(--z-consent); padding: var(--space-4); pointer-events: none; }
.consent-banner.is-visible { pointer-events: auto; }

.consent-banner__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  gap: var(--space-5);
  padding: var(--space-5) var(--space-6);
  background: var(--surface-page);
  border: var(--border-hairline) solid var(--border-color);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.consent-banner__copy p { margin: 0 0 var(--space-2); color: var(--neutral-700); font-size: var(--text-body-sm); }
.consent-banner__copy p:last-child { margin-bottom: 0; }
.consent-banner__actions { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.consent-banner__actions .btn { min-width: 0; flex: 1 1 auto; }

@media (min-width: 840px) {
  .consent-banner__inner { grid-template-columns: minmax(0, 1.4fr) auto; align-items: center; }
  .consent-banner__actions { justify-content: flex-end; }
  .consent-banner__actions .btn { flex: 0 0 auto; }
}

.consent-overlay { position: fixed; inset: 0; z-index: calc(var(--z-consent) + 1); background: rgba(7, 23, 41, 0.48); }

.consent-dialog { position: fixed; inset: 0; z-index: calc(var(--z-consent) + 2); display: none; place-items: center; padding: var(--space-4); }
.consent-dialog.is-visible { display: grid; }
.consent-dialog[hidden] { display: none !important; }
.consent-banner[hidden], .consent-overlay[hidden] { display: none !important; }

.consent-dialog__panel {
  position: relative;
  width: min(100%, 520px);
  max-height: min(90vh, 640px);
  overflow: auto;
  padding: var(--space-7);
  background: var(--surface-page);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-2xl);
}

.consent-dialog__panel h2 { margin-bottom: var(--space-3); }
.consent-dialog__panel > p { color: var(--neutral-700); margin-bottom: var(--space-6); }

.consent-option { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); padding: var(--space-4) 0; border-top: var(--border-hairline) solid var(--border-color); }
.consent-option:last-of-type { border-bottom: var(--border-hairline) solid var(--border-color); margin-bottom: var(--space-6); }
.consent-option strong { display: block; margin-bottom: var(--space-1); }
.consent-option .caption { margin: 0; }

.consent-option__state { font-family: var(--font-mono); font-size: var(--text-label); letter-spacing: 0.12em; text-transform: uppercase; color: var(--neutral-500); }

.consent-switch { position: relative; display: inline-flex; width: 48px; height: 28px; cursor: pointer; }
.consent-switch input { position: absolute; opacity: 0; width: 1px; height: 1px; }

.consent-switch__ui { width: 48px; height: 28px; border-radius: var(--radius-pill); background: var(--neutral-300); position: relative; transition: background-color var(--dur-fast) var(--ease-out); }
.consent-switch__ui::after { content: ""; position: absolute; top: 3px; left: 3px; width: 22px; height: 22px; border-radius: 50%; background: var(--neutral-0); box-shadow: var(--shadow-sm); transition: transform var(--dur-fast) var(--ease-out); }

.consent-switch input:checked + .consent-switch__ui { background: var(--teal-700); }
.consent-switch input:checked + .consent-switch__ui::after { transform: translateX(20px); }
.consent-switch input:focus-visible + .consent-switch__ui { box-shadow: var(--focus-ring-light); }

.consent-dialog__actions { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.consent-dialog__actions .btn { flex: 1 1 auto; min-width: 0; }

.consent-dialog__close {
  position: absolute;
  top: var(--space-3); right: var(--space-3);
  width: 44px; height: 44px;
  border: 0;
  background: transparent;
  color: var(--neutral-600);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  border-radius: var(--radius-md);
  transition: background var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
}

.consent-dialog__close:hover { color: var(--navy-800); background: var(--neutral-100); }
.consent-dialog__close:active { background: var(--neutral-200); transform: translateY(1px); }

/* --------------------------------------------------------------------------
   17. Homepage extras
   -------------------------------------------------------------------------- */
.home-split { display: grid; gap: var(--space-8); align-items: start; }

@media (min-width: 840px) { .home-split { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-10); } }

/* Centre map */
.centre-map { margin: 0; }

.centre-map__stage {
  position: relative;
  min-height: 280px;
  border: var(--border-hairline) solid var(--border-color);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at center, var(--teal-50) 0, transparent 42%), var(--surface-card);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.centre-map__links { position: absolute; inset: 0; width: 100%; height: 100%; color: var(--teal-400); opacity: 0.50; }

.centre-map__node {
  position: absolute;
  z-index: 1;
  max-width: min(42%, 9.5rem);
  padding: 0.45rem 0.7rem;
  border: var(--border-hairline) solid var(--border-color);
  border-radius: var(--radius-pill);
  background: var(--neutral-0);
  color: var(--navy-800);
  font-size: var(--text-caption);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  white-space: normal;
  text-align: center;
  line-height: 1.25;
  transition: border-color var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out);
}

.centre-map__node:hover { border-color: var(--teal-300); box-shadow: var(--shadow-md); }

.centre-map__node--core {
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: var(--navy-800);
  color: var(--neutral-0);
  border-color: var(--navy-800);
  padding: 0.7rem 1rem;
  box-shadow: var(--glow-teal);
}

.centre-map__node:nth-of-type(2) { left: 8%;  top: 12%; }
.centre-map__node:nth-of-type(3) { right: 8%; top: 12%; }
.centre-map__node:nth-of-type(4) { left: 6%;  top: 58%; }
.centre-map__node:nth-of-type(5) { right: 6%; top: 58%; }
.centre-map__node:nth-of-type(6) { left: 50%; bottom: 10%; transform: translateX(-50%); }

.centre-map figcaption,
.ship-card figcaption { margin-top: var(--space-3); text-align: center; font-size: var(--text-caption); color: var(--neutral-500); }

/* --------------------------------------------------------------------------
   18. Premium elevation system — unified interactions
   -------------------------------------------------------------------------- */
:is(
  .card, .cost-card, .doc-chain__item, .illus__frame, .operations-panel,
  .feature-list__item, .contact-form-panel, .direct-contact, .ship-card__frame
),
.illus--hero .illus__frame {
  border: var(--border-hairline) solid var(--border-color);
  border-radius: var(--radius-xl);
  background: var(--surface-card);
  box-shadow: var(--shadow-sm);
  transition:
    border-color var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-fast) var(--ease-out),
    transform var(--dur-fast) var(--ease-spring);
}

@media (hover: hover) {
  :is(
    .card, .cost-card, .doc-chain__item, .illus__frame, .operations-panel,
    .feature-list__item, .contact-form-panel, .direct-contact, .ship-card__frame
  ):hover,
  .illus--hero .illus__frame:hover {
    border-color: var(--border-color-strong);
    box-shadow: var(--glow-card-hover);
  }

  :is(.card, .cost-card, .doc-chain__item, .operations-panel, .feature-list__item):hover {
    transform: translateY(-3px);
  }
}

:is(
  .card, .cost-card, .doc-chain__item, .illus__frame, .operations-panel,
  .feature-list__item, .contact-form-panel, .direct-contact, .ship-card__frame
):active,
.illus--hero .illus__frame:active {
  border-color: var(--border-color);
  box-shadow: var(--shadow-sm);
  transform: translateY(0);
}

:is(
  .card, .cost-card, .doc-chain__item, .illus__frame, .operations-panel,
  .feature-list__item, .contact-form-panel, .direct-contact, .ship-card__frame
):focus-visible,
.illus--hero .illus__frame:focus-visible {
  border-color: var(--teal-600);
  box-shadow: var(--focus-ring-light), var(--shadow-sm);
}

@media (min-width: 840px) { .contact-form-panel { padding: var(--space-7); } }

/* --------------------------------------------------------------------------
   19. Floating dashboard animation
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: no-preference) {
  .illus--hero .illus__frame {
    animation: float-card 6s var(--ease-in-out) infinite;
  }
}

@keyframes float-card {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(-10px) rotate(0.4deg); }
  66%       { transform: translateY(-5px) rotate(-0.25deg); }
}

/* --------------------------------------------------------------------------
   20. Shimmer / gradient text animation
   -------------------------------------------------------------------------- */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.shimmer-text {
  background: linear-gradient(90deg, var(--teal-600) 0%, var(--indigo-400) 25%, var(--teal-500) 50%, var(--teal-600) 75%, var(--indigo-400) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

/* --------------------------------------------------------------------------
   21. Print
   -------------------------------------------------------------------------- */
@media print {
  .skip-link, .site-header, .nav-toggle, .mobile-nav,
  .cta-band, .hero__motif, .footer__cookie-btn { display: none !important; }

  body { color: #000; background: #fff; font-size: 11pt; }

  .hero, .section--dark, .site-footer { background: #fff !important; color: #000 !important; }

  .hero h1, .section--dark h1, .section--dark h2,
  .site-footer, .site-footer a { color: #000 !important; }

  a[href]::after { content: " (" attr(href) ")"; font-size: 0.85em; color: #444; }
  .section { padding-block: 1.5rem; }
}
