@font-face {
  font-family: "LetItDoIt Sans";
  src: local("Inter"), local("Segoe UI Variable"), local("Segoe UI");
  font-display: swap;
}

:root {
  --ink: #07111f;
  --ink-soft: #0d1b2c;
  --ink-raised: #12243a;
  --paper: #f4f6f1;
  --paper-bright: #fbfcf8;
  --muted: #657080;
  --muted-light: #a4afbd;
  --line: rgba(7, 17, 31, 0.14);
  --line-light: rgba(255, 255, 255, 0.13);
  --blue: #2678ff;
  --blue-bright: #4f94ff;
  --lime: #b8ff60;
  --lime-dark: #92d73e;
  --white: #ffffff;
  --shell: 1240px;
  --radius: 22px;
  --header-height: 82px;
  --ease: cubic-bezier(0.2, 0.72, 0.18, 1);
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "LetItDoIt Sans", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--lime);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--blue-bright);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

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

.section {
  padding: 128px 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: background 240ms ease, border-color 240ms ease, backdrop-filter 240ms ease;
}

.site-header.scrolled {
  background: rgba(7, 17, 31, 0.88);
  border-color: var(--line-light);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 42px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
}

.brand-mark {
  display: grid;
  grid-template-columns: repeat(3, 4px);
  align-items: end;
  gap: 3px;
  width: 18px;
  height: 23px;
}

.brand-mark i {
  display: block;
  height: 60%;
  border-radius: 3px;
  background: var(--lime);
}

.brand-mark i:nth-child(2) { height: 90%; }
.brand-mark i:nth-child(3) { height: 43%; }

.brand-word {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.brand-word span {
  color: var(--lime);
}

.primary-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

.primary-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: color 180ms ease;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--lime);
  transition: right 220ms var(--ease);
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--white);
}

.primary-nav a:hover::after {
  right: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.language-switcher {
  display: flex;
  align-items: center;
  padding: 3px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
}

.language-switcher button {
  min-width: 34px;
  height: 30px;
  padding: 0 8px;
  color: rgba(255, 255, 255, 0.62);
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.language-switcher button[aria-pressed="true"] {
  background: var(--white);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  width: 17px;
  height: 1px;
  background: var(--white);
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(4px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-4px) rotate(-45deg); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  transition: transform 200ms var(--ease), background 200ms ease, border-color 200ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-small {
  min-height: 38px;
  padding: 0 16px;
  font-size: 0.68rem;
}

.button-ghost {
  border-color: var(--line-light);
  color: var(--white);
}

.button-ghost:hover {
  border-color: var(--lime);
  color: var(--lime);
}

.button-primary {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 14px 38px rgba(184, 255, 96, 0.13);
}

.button-primary:hover {
  background: #c7ff82;
}

.hero {
  position: relative;
  min-height: 900px;
  padding: calc(var(--header-height) + 80px) 0 80px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,.032) 1px, transparent 1px) 0 0 / 86px 86px,
    linear-gradient(rgba(255,255,255,.032) 1px, transparent 1px) 0 0 / 86px 86px,
    var(--ink);
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 130px;
  background: linear-gradient(to bottom, transparent, rgba(7, 17, 31, 0.8));
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-one {
  width: 620px;
  height: 620px;
  right: -120px;
  top: 70px;
  background: radial-gradient(circle, rgba(38, 120, 255, 0.2), transparent 68%);
}

.hero-glow-two {
  width: 430px;
  height: 430px;
  left: 18%;
  bottom: -260px;
  background: radial-gradient(circle, rgba(184, 255, 96, 0.09), transparent 68%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(480px, 0.97fr);
  align-items: center;
  gap: 54px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 24px;
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
}

.eyebrow > span:first-child {
  width: 28px;
  height: 1px;
  background: var(--lime);
}

.hero h1,
.statement h2,
.section-heading h2,
.roadmap-copy h2,
.cta-card h2 {
  margin: 0;
  font-weight: 620;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3.5rem, 6.2vw, 6.3rem);
}

h1 em,
h2 em {
  color: var(--lime);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero-lead {
  max-width: 650px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 42px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 2px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.text-link span:last-child {
  color: var(--lime);
  transition: transform 180ms ease;
}

.text-link:hover span:last-child {
  transform: translateX(5px);
}

.hero-signals {
  display: flex;
  gap: 42px;
  margin: 70px 0 0;
  padding: 26px 0 0;
  list-style: none;
  border-top: 1px solid var(--line-light);
}

.hero-signals li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 9px;
}

.hero-signals span {
  color: var(--lime);
  font: 700 0.6rem/1 monospace;
}

.hero-signals strong {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.platform-visual {
  position: relative;
  min-height: 610px;
  isolation: isolate;
}

.visual-grid {
  position: absolute;
  inset: 5%;
  z-index: -2;
  opacity: 0.42;
  background:
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px) center / 42px 42px,
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px) center / 42px 42px;
  -webkit-mask-image: radial-gradient(circle, #000 20%, transparent 69%);
  mask-image: radial-gradient(circle, #000 20%, transparent 69%);
}

.orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-12deg);
}

.orbit::after {
  content: "";
  position: absolute;
  top: 49%;
  right: -4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 18px var(--lime);
}

.orbit-one { width: 420px; height: 420px; }
.orbit-two { width: 565px; height: 565px; transform: translate(-50%, -50%) rotate(26deg); }
.orbit-two::after { background: var(--blue-bright); box-shadow: 0 0 18px var(--blue-bright); }

.platform-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 190px;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid rgba(184, 255, 96, 0.5);
  border-radius: 50%;
  background: radial-gradient(circle at 38% 28%, #1c3650, #0b1929 62%);
  box-shadow: 0 0 0 15px rgba(184,255,96,.025), 0 28px 70px rgba(0,0,0,.38), inset 0 1px 0 rgba(255,255,255,.08);
  transform: translate(-50%, -50%);
}

.platform-core::before {
  content: "";
  position: absolute;
  inset: 15px;
  border: 1px dashed rgba(255,255,255,.12);
  border-radius: inherit;
  animation: spin 28s linear infinite;
}

.core-kicker {
  margin-bottom: 6px;
  color: var(--lime);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.platform-core strong {
  font-size: 1.22rem;
  letter-spacing: -0.045em;
}

.platform-core strong span { color: var(--lime); }
.platform-core small { margin-top: 8px; color: var(--muted-light); font-size: 0.63rem; }

.module-node {
  position: absolute;
  width: 132px;
  min-height: 104px;
  display: grid;
  grid-template-columns: 27px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  padding: 15px;
  border: 1px solid var(--line-light);
  border-radius: 12px;
  background: rgba(14, 31, 50, 0.88);
  box-shadow: 0 18px 45px rgba(0,0,0,.24);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  animation: float 6s ease-in-out infinite;
}

.module-node > span {
  grid-row: 1 / 3;
  color: var(--lime);
  font-size: 1.2rem;
}

.module-node strong { font-size: 0.75rem; }
.module-node small { color: var(--muted-light); font-size: 0.56rem; line-height: 1.3; }
.node-crm { top: 9%; left: 7%; }
.node-finance { top: 17%; right: -1%; animation-delay: -1.5s; }
.node-stock { bottom: 12%; left: 4%; animation-delay: -3s; }
.node-production { right: 3%; bottom: 8%; animation-delay: -4.5s; }

.data-pulse {
  position: absolute;
  width: 9px;
  height: 9px;
  border: 2px solid var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 16px var(--lime);
}

.pulse-one { left: 27%; top: 43%; animation: pulse-path-one 5s var(--ease) infinite; }
.pulse-two { right: 27%; bottom: 42%; animation: pulse-path-two 5s var(--ease) 1.6s infinite; }

.scroll-cue {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 26px;
  width: 1px;
  height: 46px;
  background: rgba(255,255,255,.14);
}

.scroll-cue span {
  display: block;
  width: 1px;
  height: 18px;
  background: var(--lime);
  animation: scroll-cue 2s ease-in-out infinite;
}

.section-index {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-index span:first-child { color: var(--blue); }

.statement {
  background: var(--paper-bright);
}

.statement-grid {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr) 280px;
  gap: 60px;
  align-items: start;
}

.statement-copy .section-kicker,
.section-heading .section-kicker,
.roadmap-copy .section-kicker {
  margin-bottom: 18px;
  color: var(--blue);
}

.statement h2 {
  max-width: 800px;
  font-size: clamp(2.8rem, 5.1vw, 5.1rem);
}

.statement h2 em { color: var(--blue); }

.statement-copy > p:last-child {
  max-width: 760px;
  margin: 35px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.vision-note {
  margin-top: 110px;
}

.vision-note .note-line {
  display: block;
  width: 100%;
  height: 4px;
  margin-bottom: 26px;
  background: linear-gradient(90deg, var(--lime-dark) 28%, var(--line) 28%);
}

.vision-note p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.65;
}

.platform-section {
  background: #e9eee8;
}

.section-heading {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr) 360px;
  gap: 60px;
  align-items: end;
  margin-bottom: 60px;
}

.section-heading h2,
.roadmap-copy h2 {
  font-size: clamp(2.4rem, 4.2vw, 4.3rem);
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: repeat(2, 270px);
  gap: 16px;
}

.bento-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid rgba(7, 17, 31, 0.11);
  border-radius: var(--radius);
  background: rgba(255,255,255,.7);
}

.bento-large {
  grid-row: 1 / 3;
  min-height: 556px;
  background: var(--ink-soft);
  color: var(--white);
}

.accent-card {
  background: var(--blue);
  color: var(--white);
}

.card-number {
  color: var(--muted);
  font: 700 0.62rem/1 monospace;
  letter-spacing: 0.08em;
}

.bento-large .card-number,
.accent-card .card-number { color: rgba(255,255,255,.55); }

.bento-copy {
  position: relative;
  z-index: 2;
}

.bento-copy h3 {
  margin: 0 0 10px;
  font-size: 1.5rem;
  letter-spacing: -0.035em;
}

.bento-copy p {
  max-width: 490px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.bento-large .bento-copy p,
.accent-card .bento-copy p { color: rgba(255,255,255,.66); }

.foundation-map {
  position: absolute;
  inset: 48px 28px 120px;
}

.foundation-map svg {
  width: 100%;
  height: 100%;
}

.foundation-map path {
  fill: none;
  stroke: rgba(255,255,255,.14);
  stroke-width: .35;
  stroke-dasharray: 1.5 2;
}

.foundation-center {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(184,255,96,.5);
  border-radius: 50%;
  background: rgba(184,255,96,.08);
  color: var(--lime);
  font: 800 0.65rem/1 monospace;
  letter-spacing: .16em;
  transform: translate(-50%, -50%);
}

.foundation-map i {
  position: absolute;
  z-index: 2;
  width: 19px;
  height: 19px;
  border: 4px solid var(--ink-soft);
  border-radius: 50%;
  background: var(--blue-bright);
  box-shadow: 0 0 0 1px rgba(255,255,255,.16);
}

.foundation-map i:nth-of-type(1) { left: 17%; top: 18%; }
.foundation-map i:nth-of-type(2) { left: 78%; top: 22%; }
.foundation-map i:nth-of-type(3) { left: 20%; top: 76%; }
.foundation-map i:nth-of-type(4) { left: 82%; top: 72%; }

.line-icon {
  position: absolute;
  right: 32px;
  top: 36px;
  width: 100px;
  height: 70px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.line-icon span {
  flex: 1;
  border: 1px solid rgba(38,120,255,.35);
  border-radius: 4px 4px 0 0;
  background: rgba(38,120,255,.08);
}

.line-icon span:nth-child(1) { height: 40%; }
.line-icon span:nth-child(2) { height: 72%; }
.line-icon span:nth-child(3) { height: 100%; background: var(--lime); border-color: var(--lime-dark); }

.signal-art {
  position: absolute;
  right: -8px;
  top: 18px;
  width: 190px;
  height: 130px;
}

.signal-art i {
  position: absolute;
  right: 0;
  bottom: 0;
  border: 1px solid rgba(255,255,255,.23);
  border-radius: 100% 0 0 0;
}

.signal-art i:nth-child(1) { width: 55px; height: 45px; }
.signal-art i:nth-child(2) { width: 95px; height: 75px; }
.signal-art i:nth-child(3) { width: 140px; height: 104px; }
.signal-art i:nth-child(4) { width: 185px; height: 130px; border-color: rgba(184,255,96,.42); }

.modules-section {
  background: var(--paper-bright);
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.module-card {
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper-bright);
  transition: color 240ms ease, background 240ms ease, transform 240ms var(--ease), border-color 240ms ease;
}

.module-card::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -75px;
  bottom: -75px;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: transform 420ms var(--ease), border-color 240ms ease;
}

.module-card:hover {
  color: var(--white);
  background: var(--ink-soft);
  border-color: var(--ink-soft);
  transform: translateY(-5px);
}

.module-card:hover::after { transform: scale(1.7); border-color: var(--line-light); }
.module-card:hover p { color: rgba(255,255,255,.65); }
.module-card.featured { background: #edfbdc; border-color: rgba(146,215,62,.4); }
.module-card.featured:hover { color: var(--ink); background: var(--lime); border-color: var(--lime); }
.module-card.featured:hover p { color: rgba(7,17,31,.68); }

.module-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.module-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--blue);
  font-size: 1.15rem;
}

.status {
  padding: 6px 9px;
  border-radius: 4px;
  background: rgba(7,17,31,.055);
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.status-progress { color: #4d741c; background: rgba(146,215,62,.16); }

.module-card h3 {
  margin: 54px 0 13px;
  font-size: 1.4rem;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.module-card p {
  max-width: 330px;
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  transition: color 240ms ease;
}

.module-code {
  margin-top: auto;
  padding-top: 28px;
  color: var(--muted);
  font: 700 .6rem/1 monospace;
  letter-spacing: .08em;
}

.module-disclaimer {
  max-width: 720px;
  margin: 28px 0 0 auto;
  color: var(--muted);
  font-size: .75rem;
  text-align: right;
}

.principles-section {
  background: var(--ink);
  color: var(--white);
}

.principles-section .section-heading {
  grid-template-columns: 140px 1fr;
}

.principles-section .section-kicker { color: var(--lime); }
.principles-section .section-index { color: var(--muted-light); }
.principles-section .section-index span:first-child { color: var(--lime); }

.principles-list {
  margin: 20px 0 0 200px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-light);
}

.principles-list li {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 20px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line-light);
}

.principles-list li > span {
  padding-top: 6px;
  color: var(--lime);
  font: 700 .63rem/1 monospace;
}

.principles-list div {
  display: grid;
  grid-template-columns: minmax(220px, .7fr) 1fr;
  gap: 40px;
}

.principles-list h3 {
  margin: 0;
  font-size: 1.38rem;
  letter-spacing: -.025em;
}

.principles-list p {
  max-width: 520px;
  margin: 0;
  color: rgba(255,255,255,.57);
}

.roadmap-section {
  background: #e9eee8;
}

.roadmap-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 120px;
}

.roadmap-copy {
  position: sticky;
  top: 130px;
  align-self: start;
}

.roadmap-copy > p:last-child {
  max-width: 440px;
  margin: 30px 0 0;
  color: var(--muted);
}

.roadmap-steps {
  position: relative;
}

.roadmap-steps::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 30px;
  bottom: 30px;
  width: 1px;
  background: var(--line);
}

.roadmap-step {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 30px;
  min-height: 180px;
}

.roadmap-step > span {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #e9eee8;
  color: var(--muted);
  font: 700 .62rem/1 monospace;
}

.roadmap-step.active > span {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 0 0 8px rgba(38,120,255,.1);
}

.roadmap-step small {
  color: var(--blue);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.roadmap-step h3 {
  margin: 7px 0 8px;
  font-size: 1.4rem;
  letter-spacing: -.03em;
}

.roadmap-step p { margin: 0; color: var(--muted); }

.cta-section {
  padding: 28px 0;
  background: var(--paper-bright);
}

.cta-card {
  position: relative;
  min-height: 570px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: clamp(40px, 8vw, 110px);
  overflow: hidden;
  border-radius: 28px;
  background: var(--blue);
  color: var(--white);
}

.cta-card::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  top: 50%;
  right: -130px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.018);
  transform: translateY(-50%);
}

.cta-grid {
  position: absolute;
  inset: 0;
  opacity: .25;
  background:
    linear-gradient(90deg, rgba(255,255,255,.13) 1px, transparent 1px) 0 0 / 64px 64px,
    linear-gradient(rgba(255,255,255,.13) 1px, transparent 1px) 0 0 / 64px 64px;
  -webkit-mask-image: linear-gradient(90deg, #000, transparent 80%);
  mask-image: linear-gradient(90deg, #000, transparent 80%);
}

.cta-card > *:not(.cta-grid) { position: relative; z-index: 2; }
.cta-card .eyebrow { color: var(--lime); }
.cta-card h2 { max-width: 780px; font-size: clamp(3rem, 5.5vw, 5.7rem); }
.cta-card p:not(.eyebrow) { max-width: 590px; margin: 30px 0 38px; color: rgba(255,255,255,.72); }
.button-light { background: var(--white); color: var(--ink); }
.button-light:hover { background: var(--lime); }

.site-footer {
  padding: 80px 0 24px;
  background: var(--ink);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: .7fr 1fr .6fr;
  gap: 60px;
  align-items: start;
  padding-bottom: 70px;
}

.footer-main > p {
  max-width: 440px;
  margin: 0;
  color: rgba(255,255,255,.56);
}

.footer-main nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 13px;
  font-size: .82rem;
  font-weight: 700;
}

.footer-main nav a:hover { color: var(--lime); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line-light);
  color: rgba(255,255,255,.4);
  font-size: .7rem;
  letter-spacing: .04em;
}

noscript {
  position: fixed;
  z-index: 200;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 14px;
  border-radius: 8px;
  background: var(--lime);
  color: var(--ink);
  text-align: center;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 720ms var(--ease), transform 720ms var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes scroll-cue { 0% { transform: translateY(0); opacity: 0; } 30% { opacity: 1; } 100% { transform: translateY(28px); opacity: 0; } }
@keyframes pulse-path-one { 0%, 15% { transform: translate(0, 0); opacity: 0; } 25% { opacity: 1; } 75% { opacity: 1; } 90%, 100% { transform: translate(112px, 45px); opacity: 0; } }
@keyframes pulse-path-two { 0%, 15% { transform: translate(0, 0); opacity: 0; } 25% { opacity: 1; } 75% { opacity: 1; } 90%, 100% { transform: translate(-112px, -45px); opacity: 0; } }

@media (max-width: 1100px) {
  .header-inner { gap: 22px; }
  .primary-nav { gap: 20px; }
  .button-ghost { display: none; }
  .hero-layout { grid-template-columns: 1fr 430px; gap: 24px; }
  .platform-visual { transform: scale(.88); transform-origin: center; }
  .statement-grid,
  .section-heading { grid-template-columns: 100px minmax(0, 1fr); gap: 40px; }
  .statement-copy { grid-column: 2; }
  .vision-note { grid-column: 2; margin-top: 0; max-width: 500px; }
  .section-heading > p { grid-column: 2; }
  .principles-section .section-heading { grid-template-columns: 100px 1fr; }
  .principles-list { margin-left: 140px; }
}

@media (max-width: 860px) {
  :root { --header-height: 72px; }
  .shell { width: min(calc(100% - 32px), var(--shell)); }
  .section { padding: 92px 0; }
  .header-inner { grid-template-columns: 1fr auto auto; }
  .menu-toggle { display: flex; grid-column: 3; }
  .header-actions { grid-column: 2; grid-row: 1; }
  .primary-nav {
    position: fixed;
    inset: var(--header-height) 0 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    padding: 40px 30px 100px;
    background: rgba(7,17,31,.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }
  .primary-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .primary-nav a { width: 100%; padding: 16px 0; border-bottom: 1px solid var(--line-light); font-size: 1.35rem; }
  .hero { min-height: auto; padding-top: 150px; }
  .hero-layout { min-height: 0; grid-template-columns: 1fr; }
  .platform-visual { width: min(100%, 590px); min-height: 570px; margin: 20px auto 0; transform: none; }
  .hero-signals { margin-top: 50px; }
  .scroll-cue { display: none; }
  .statement-grid,
  .section-heading,
  .principles-section .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .statement-copy,
  .vision-note,
  .section-heading > p { grid-column: 1; }
  .section-index { flex-direction: row; gap: 10px; }
  .vision-note { max-width: 620px; }
  .bento-grid { grid-template-columns: 1fr; grid-template-rows: 480px repeat(2, 260px); }
  .bento-large { grid-row: auto; min-height: 0; }
  .module-grid { grid-template-columns: repeat(2, 1fr); }
  .principles-list { margin-left: 0; }
  .roadmap-layout { grid-template-columns: 1fr; gap: 60px; }
  .roadmap-copy { position: static; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-main > p { grid-column: 1; }
  .footer-main nav { grid-column: 2; grid-row: 1 / 3; }
}

@media (max-width: 600px) {
  .language-switcher button { min-width: 30px; padding: 0 5px; }
  .hero { padding-top: 126px; }
  .hero h1 { font-size: clamp(3rem, 14vw, 4.5rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 14px; }
  .hero-signals { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .hero-signals li { display: flex; align-items: flex-start; flex-direction: column; }
  .platform-visual { min-height: 460px; transform: scale(.82); transform-origin: center top; margin-bottom: -80px; }
  .orbit-one { width: 350px; height: 350px; }
  .orbit-two { width: 465px; height: 465px; }
  .platform-core { width: 160px; height: 160px; }
  .module-node { width: 116px; min-height: 90px; padding: 11px; grid-template-columns: 23px 1fr; }
  .node-crm { left: -3%; }
  .node-finance { right: -7%; }
  .node-stock { left: -5%; }
  .node-production { right: -5%; }
  .statement h2,
  .section-heading h2,
  .roadmap-copy h2 { font-size: 2.65rem; }
  .bento-grid { grid-template-rows: 430px repeat(2, 260px); }
  .foundation-map { inset: 48px 0 125px; }
  .module-grid { grid-template-columns: 1fr; }
  .module-card { min-height: 270px; }
  .module-disclaimer { text-align: left; }
  .principles-list li { grid-template-columns: 42px 1fr; gap: 12px; }
  .principles-list div { grid-template-columns: 1fr; gap: 10px; }
  .roadmap-step { gap: 20px; }
  .cta-card { min-height: 540px; padding: 38px 26px; }
  .cta-card h2 { font-size: clamp(2.7rem, 13vw, 4rem); }
  .cta-card::after { right: -360px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-main > p,
  .footer-main nav { grid-column: 1; grid-row: auto; }
  .footer-main nav { align-items: flex-start; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .page-noise, .scroll-cue, .hero-actions, .cta-section { display: none; }
  .hero { min-height: auto; padding: 50px 0; background: var(--white); color: var(--ink); }
  .hero-lead { color: var(--ink); }
  .platform-visual { display: none; }
  .hero-layout { min-height: auto; grid-template-columns: 1fr; }
  .section { padding: 50px 0; }
  .reveal { opacity: 1; transform: none; }
}
