:root {
  color-scheme: dark;
  --ink: #07110f;
  --ink-deep: #040a09;
  --ink-soft: #0c1916;
  --ink-raised: #11231e;
  --paper: #eef3e9;
  --paper-soft: #dce7df;
  --paper-muted: #a9bbb2;
  --line: rgba(218, 247, 230, 0.13);
  --line-strong: rgba(218, 247, 230, 0.24);
  --lime: #c9ff73;
  --lime-soft: #e2ffad;
  --mint: #72e6bc;
  --sky: #7bc9ee;
  --amber: #ffba7a;
  --cream: #f3f0df;
  --light-bg: #e8eee5;
  --light-text: #132019;
  --light-muted: #4f6359;
  --light-line: rgba(19, 32, 25, 0.16);
  --radius-sm: 0.7rem;
  --radius-md: 1.1rem;
  --radius-lg: 1.8rem;
  --radius-xl: 2.5rem;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  --shell: min(1180px, calc(100vw - 3rem));
  --header-height: 4.8rem;
  font-synthesis: none;
}

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

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

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

a {
  color: inherit;
}

button,
select,
input {
  font: inherit;
}

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

button {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.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;
  z-index: 1000;
  top: 0.8rem;
  left: 0.8rem;
  padding: 0.7rem 1rem;
  transform: translateY(-180%);
  border-radius: 0.6rem;
  background: var(--lime);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease;
}

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

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

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(7, 17, 15, 0.82);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
}

.header-inner {
  display: flex;
  width: var(--shell);
  height: 100%;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  color: var(--paper);
  font-size: 0.84rem;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 1.65rem;
  height: 1.65rem;
  padding: 0.25rem;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 0.15rem;
  border: 1px solid rgba(201, 255, 115, 0.32);
  border-radius: 0.45rem;
  background: rgba(201, 255, 115, 0.07);
}

.brand-mark span {
  display: block;
  border-radius: 999px;
  background: var(--lime);
}

.brand-mark span:nth-child(1) { height: 42%; opacity: 0.62; }
.brand-mark span:nth-child(2) { height: 70%; opacity: 0.82; }
.brand-mark span:nth-child(3) { height: 100%; }

.brand-name {
  font-weight: 840;
  letter-spacing: 0.07em;
}

.brand-product {
  color: var(--paper-muted);
  font-weight: 560;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav > a {
  position: relative;
  color: var(--paper-muted);
  font-size: 0.82rem;
  font-weight: 650;
  text-decoration: none;
  transition: color 160ms ease;
}

.site-nav > a::after {
  position: absolute;
  right: 0;
  bottom: -0.42rem;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: var(--lime);
  transition: transform 180ms ease;
}

.site-nav > a:hover,
.site-nav > a:focus-visible {
  color: var(--paper);
}

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.15rem;
  height: 1px;
  margin: 0.32rem auto;
  background: var(--paper);
  transition: transform 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(0.19rem) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-0.19rem) rotate(-45deg); }

.button {
  display: inline-flex;
  min-height: 3.3rem;
  padding: 0.8rem 1.2rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border: 1px solid transparent;
  border-radius: 0.72rem;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 760;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

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

.button:active {
  transform: translateY(0);
}

.button--small {
  min-height: 2.65rem;
  padding: 0.65rem 0.95rem;
  font-size: 0.78rem;
}

.button--solid {
  background: var(--lime);
  color: var(--ink-deep);
  box-shadow: 0 12px 35px rgba(201, 255, 115, 0.12);
}

.button--solid:hover {
  background: var(--lime-soft);
  box-shadow: 0 18px 45px rgba(201, 255, 115, 0.18);
}

.button--ghost {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.025);
  color: var(--paper);
}

.button--ghost:hover {
  border-color: rgba(201, 255, 115, 0.42);
  background: rgba(201, 255, 115, 0.06);
}

.button-arrow {
  font-size: 1.15rem;
  font-weight: 500;
  transition: transform 180ms ease;
}

.button:hover .button-arrow {
  transform: translate(0.15rem, -0.15rem);
}

.hero {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--header-height) + 5.5rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 35%, rgba(114, 230, 188, 0.08), transparent 28%),
    linear-gradient(180deg, var(--ink-deep), var(--ink) 62%, var(--ink));
}

.hero-grid,
.cta-grid {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(218, 247, 230, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(218, 247, 230, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 80%);
  pointer-events: none;
}

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

.hero-glow--one {
  top: 10%;
  right: -12rem;
  width: 32rem;
  height: 32rem;
  background: radial-gradient(circle, rgba(123, 201, 238, 0.1), transparent 68%);
}

.hero-glow--two {
  bottom: 8%;
  left: -16rem;
  width: 30rem;
  height: 30rem;
  background: radial-gradient(circle, rgba(201, 255, 115, 0.07), transparent 70%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(520px, 1.07fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.eyebrow {
  display: flex;
  margin-bottom: 1.3rem;
  align-items: center;
  gap: 0.6rem;
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.25;
  text-transform: uppercase;
}

.eyebrow--dark {
  color: #466254;
}

.signal-dot {
  position: relative;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 0.3rem rgba(201, 255, 115, 0.1);
}

.signal-dot::after {
  position: absolute;
  inset: -0.35rem;
  border: 1px solid rgba(201, 255, 115, 0.22);
  border-radius: 50%;
  content: "";
  animation: signal 2.4s ease-out infinite;
}

@keyframes signal {
  0% { transform: scale(0.7); opacity: 0; }
  25% { opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 1.6rem;
  color: var(--paper);
  font-size: clamp(3.45rem, 6.4vw, 6.4rem);
  font-weight: 760;
  letter-spacing: -0.064em;
  line-height: 0.92;
}

.hero h1 span {
  display: block;
  margin-top: 0.14em;
  color: var(--lime);
  font-weight: 570;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 2rem;
  color: var(--paper-muted);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  margin-bottom: 1.7rem;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-actions--center {
  justify-content: center;
}

.hero-proof {
  display: flex;
  margin-bottom: 0;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  color: #7f948a;
  font-size: 0.75rem;
}

.hero-proof span:nth-child(even) {
  color: rgba(201, 255, 115, 0.5);
}

.hero-console {
  position: relative;
  transform: perspective(1300px) rotateY(-2deg) rotateX(1deg);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: rgba(12, 25, 22, 0.74);
  box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-console::before {
  position: absolute;
  z-index: -1;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(201, 255, 115, 0.16), transparent 28%, transparent 72%, rgba(123, 201, 238, 0.12));
  content: "";
  filter: blur(1px);
}

.console-bar {
  display: grid;
  min-height: 3.2rem;
  padding: 0 1rem;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--paper-muted);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.console-bar p {
  margin: 0;
}

.console-lights {
  display: flex;
  gap: 0.35rem;
}

.console-lights span {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: rgba(238, 243, 233, 0.18);
}

.console-lights span:first-child { background: var(--lime); opacity: 0.8; }

.live-label {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: 0.35rem;
  color: var(--mint);
}

.live-label i,
.governance-state i {
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 0.2rem rgba(114, 230, 188, 0.08);
}

.console-content {
  padding: 1.5rem;
}

.console-heading {
  display: flex;
  margin-bottom: 1.4rem;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.console-heading > div {
  display: flex;
  flex-direction: column;
}

.console-kicker {
  color: #71877d;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.console-heading strong {
  margin-top: 0.2rem;
  font-size: 1rem;
  letter-spacing: -0.015em;
}

.console-period {
  padding: 0.35rem 0.55rem;
  border: 1px solid var(--line);
  border-radius: 0.45rem;
  color: var(--paper-muted);
  font-size: 0.6rem;
}

.control-map {
  display: grid;
  min-height: 290px;
  padding: 1.2rem;
  grid-template-columns: minmax(0, 0.85fr) minmax(220px, 1.15fr);
  align-items: center;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(rgba(218, 247, 230, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(218, 247, 230, 0.025) 1px, transparent 1px),
    rgba(3, 10, 8, 0.46);
  background-size: 30px 30px;
}

.hierarchy-list {
  position: relative;
  display: grid;
  margin: 0;
  padding: 0;
  gap: 0.7rem;
  list-style: none;
}

.hierarchy-list::before {
  position: absolute;
  top: 1.2rem;
  bottom: 1.2rem;
  left: 1rem;
  width: 1px;
  background: linear-gradient(var(--lime), rgba(201, 255, 115, 0.08));
  content: "";
}

.hierarchy-node {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 3.9rem;
  padding: 0.65rem;
  align-items: center;
  gap: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  background: rgba(13, 27, 23, 0.86);
}

.hierarchy-node--owner {
  border-color: rgba(201, 255, 115, 0.24);
  background: rgba(201, 255, 115, 0.055);
}

.node-index {
  display: grid;
  width: 2.05rem;
  height: 2.05rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--ink-soft);
  color: var(--lime);
  font-size: 0.58rem;
  font-weight: 800;
}

.hierarchy-node > span:last-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.hierarchy-node strong { font-size: 0.72rem; }
.hierarchy-node small { color: #72877d; font-size: 0.58rem; }

.module-cluster {
  position: relative;
  display: grid;
  min-height: 230px;
  place-items: center;
}

.core-orbit {
  position: absolute;
  width: 165px;
  height: 165px;
  border: 1px solid rgba(201, 255, 115, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(114, 230, 188, 0.06);
}

.core-orbit::before,
.core-orbit::after {
  position: absolute;
  content: "";
}

.core-orbit::before {
  inset: 1.7rem;
  border: 1px dashed rgba(123, 201, 238, 0.16);
  border-radius: 50%;
  animation: rotate 30s linear infinite;
}

.core-orbit::after {
  top: 50%;
  right: -0.22rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--sky);
  box-shadow: 0 0 18px var(--sky);
}

@keyframes rotate { to { transform: rotate(360deg); } }

.core-tile {
  position: relative;
  z-index: 2;
  display: flex;
  width: 94px;
  height: 94px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 255, 115, 0.28);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 25%, #1a352a, #09120f 68%);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), inset 0 0 25px rgba(201, 255, 115, 0.06);
}

.core-tile small,
.core-tile span { color: #7e9589; font-size: 0.45rem; text-transform: uppercase; letter-spacing: 0.1em; }
.core-tile strong { margin: 0.08rem 0; color: var(--lime); font-size: 1.15rem; letter-spacing: 0.08em; }

.core-pulse {
  position: absolute;
  top: 0.65rem;
  right: 1rem;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 10px var(--mint);
}

.orbit-chip {
  position: absolute;
  z-index: 3;
  padding: 0.28rem 0.45rem;
  border: 1px solid var(--line);
  border-radius: 0.35rem;
  background: #0d1c18;
  color: #a9bbb2;
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.orbit-chip--payroll { top: 1rem; left: 50%; transform: translateX(-50%); color: var(--lime); }
.orbit-chip--people { top: 50%; right: 0; transform: translateY(-50%); }
.orbit-chip--finance { bottom: 1rem; left: 50%; transform: translateX(-50%); }
.orbit-chip--stock { top: 50%; left: 0; transform: translateY(-50%); }

.console-events {
  display: grid;
  margin-top: 0.9rem;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.console-events > div {
  display: flex;
  padding: 0.65rem;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.018);
}

.event-icon {
  width: 0.42rem;
  height: 0.42rem;
  flex: 0 0 auto;
  border-radius: 50%;
}

.event-icon--mint { background: var(--mint); box-shadow: 0 0 10px rgba(114, 230, 188, 0.5); }
.event-icon--blue { background: var(--sky); box-shadow: 0 0 10px rgba(123, 201, 238, 0.5); }
.event-icon--amber { background: var(--amber); box-shadow: 0 0 10px rgba(255, 186, 122, 0.5); }

.console-events p { display: flex; margin: 0; flex-direction: column; line-height: 1.2; }
.console-events strong { font-size: 0.62rem; }
.console-events small { color: #7c9187; font-size: 0.5rem; }

.capability-rail {
  position: relative;
  z-index: 2;
  display: grid;
  margin-top: 6rem;
  padding-bottom: 2rem;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.capability-rail > div {
  display: grid;
  min-height: 7.8rem;
  padding: 1.25rem 1.1rem;
  grid-template-columns: auto 1fr;
  column-gap: 0.85rem;
  align-content: center;
  border-right: 1px solid var(--line);
}

.capability-rail > div:last-child { border-right: 0; }
.capability-rail span { grid-row: 1 / span 2; color: var(--lime); font-size: 0.62rem; font-weight: 800; }
.capability-rail strong { font-size: 0.78rem; }
.capability-rail small { color: #73887e; font-size: 0.65rem; }

.section {
  position: relative;
  padding: clamp(6rem, 10vw, 9.5rem) 0;
}

.section-heading {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  align-items: end;
  gap: 5rem;
}

.section-heading h2 {
  max-width: 850px;
  margin-bottom: 0;
  color: var(--light-text);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 690;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.section-heading > p,
.section-heading--split > p {
  margin-bottom: 0.15rem;
  color: var(--light-muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.section-heading--light h2 { color: var(--paper); }
.section-heading--light > p,
.section-heading--light > div + p { color: var(--paper-muted); }

.section-heading--center {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading--center .eyebrow { justify-content: center; }
.section-heading--center h2 { margin-right: auto; margin-left: auto; }
.section-heading--center > p:last-child { max-width: 650px; margin: 1.4rem auto 0; }

.section--problem {
  overflow: hidden;
  background: var(--light-bg);
  color: var(--light-text);
}

.section--problem::after {
  position: absolute;
  top: -15rem;
  right: -20rem;
  width: 42rem;
  height: 42rem;
  border: 1px solid rgba(19, 32, 25, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 5rem rgba(19, 32, 25, 0.018), 0 0 0 10rem rgba(19, 32, 25, 0.012);
  content: "";
  pointer-events: none;
}

.problem-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--light-line);
  border-bottom: 1px solid var(--light-line);
}

.problem-card {
  min-height: 350px;
  padding: 2rem;
  border-right: 1px solid var(--light-line);
}

.problem-card:last-child { border-right: 0; }
.problem-number { color: #53675d; font-size: 0.65rem; font-weight: 800; letter-spacing: 0.12em; }

.problem-line {
  position: relative;
  width: 100%;
  height: 7rem;
  margin: 1.8rem 0 2.1rem;
  overflow: hidden;
}

.problem-line::before,
.problem-line::after {
  position: absolute;
  content: "";
}

.problem-line::before {
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(19, 32, 25, 0.16);
}

.problem-line::after {
  top: calc(50% - 0.28rem);
  left: var(--line-pos, 22%);
  width: 0.56rem;
  height: 0.56rem;
  border: 2px solid var(--light-bg);
  border-radius: 50%;
  background: #517061;
  box-shadow: 0 0 0 1px rgba(19, 32, 25, 0.28);
}

.problem-card:nth-child(2) .problem-line { --line-pos: 51%; }
.problem-card:nth-child(3) .problem-line { --line-pos: 78%; }

.problem-card h3 {
  margin-bottom: 0.7rem;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.problem-card p { color: var(--light-muted); font-size: 0.92rem; }
.problem-result { display: inline-block; margin-top: 1rem; color: #53675d; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }

.problem-statement {
  display: flex;
  max-width: 900px;
  margin: 5rem auto 0;
  align-items: flex-start;
  justify-content: center;
  gap: 1.2rem;
  text-align: center;
}

.problem-statement span {
  color: #81a08f;
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 0.8;
}

.problem-statement p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3.5vw, 3.1rem);
  font-style: italic;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.section--platform {
  background: var(--ink);
}

.bento-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1rem;
}

.bento-card {
  position: relative;
  min-height: 340px;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--ink-soft);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.02);
}

.bento-card h3 {
  max-width: 480px;
  margin: 1.8rem 0 0.75rem;
  font-size: clamp(1.5rem, 2.7vw, 2.2rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.bento-card > p:not(.outcome-kicker):not(.outcome-note) {
  max-width: 500px;
  color: var(--paper-muted);
  font-size: 0.9rem;
}

.card-label {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #7f958a;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.card-label span {
  color: var(--lime);
}

.bento-card--map { min-height: 570px; }

.topology {
  position: absolute;
  right: 2.4rem;
  bottom: 2.2rem;
  left: 2.4rem;
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  background:
    linear-gradient(rgba(218, 247, 230, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(218, 247, 230, 0.025) 1px, transparent 1px),
    #091511;
  background-size: 36px 36px;
}

.topology-line {
  position: absolute;
  height: 1px;
  transform-origin: left;
  background: linear-gradient(90deg, rgba(201, 255, 115, 0.8), rgba(201, 255, 115, 0.08));
}

.topology-line--one { top: 49%; left: 24%; width: 27%; transform: rotate(-17deg); }
.topology-line--two { top: 35%; left: 53%; width: 24%; transform: rotate(30deg); }

.topology-node {
  position: absolute;
  display: flex;
  min-width: 7.5rem;
  padding: 0.85rem 1rem;
  flex-direction: column;
  border: 1px solid var(--line-strong);
  border-radius: 0.75rem;
  background: rgba(17, 35, 30, 0.94);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.topology-node::before {
  position: absolute;
  top: -0.23rem;
  right: -0.23rem;
  width: 0.45rem;
  height: 0.45rem;
  border: 2px solid var(--ink-soft);
  border-radius: 50%;
  background: var(--lime);
  content: "";
}

.topology-node small { color: #71857b; font-size: 0.52rem; letter-spacing: 0.07em; text-transform: uppercase; }
.topology-node strong { margin-top: 0.1rem; font-size: 0.8rem; }
.topology-node--control { top: 22%; left: 7%; border-color: rgba(201, 255, 115, 0.28); }
.topology-node--operator { top: 9%; left: 42%; }
.topology-node--company { right: 7%; bottom: 15%; }

.topology-modules {
  position: absolute;
  bottom: 9%;
  left: 18%;
  display: flex;
  gap: 0.35rem;
}

.topology-modules span {
  display: grid;
  width: 2.1rem;
  height: 2.1rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: #0e1d19;
  color: #84988e;
  font-size: 0.48rem;
  font-weight: 800;
}

.bento-card--modules {
  background: linear-gradient(155deg, #14261f, #0b1714);
}

.stack-visual {
  position: absolute;
  right: 1.8rem;
  bottom: 1.8rem;
  left: 1.8rem;
  display: grid;
  gap: 0.5rem;
}

.stack-visual div {
  display: grid;
  min-height: 3.7rem;
  padding: 0.6rem 0.8rem;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  background: rgba(4, 12, 10, 0.6);
}

.stack-visual div:first-child { border-color: rgba(201, 255, 115, 0.25); }
.stack-visual span { color: var(--lime); font-size: 0.55rem; }
.stack-visual strong { font-size: 0.72rem; }
.stack-visual small { color: #74887e; font-size: 0.55rem; text-transform: uppercase; }

.bento-card--ownership { min-height: 410px; }

.ownership-meter {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  left: 2rem;
  display: grid;
  gap: 0.65rem;
}

.ownership-meter span {
  position: relative;
  display: flex;
  height: 2.3rem;
  padding: 0 0.7rem;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0.55rem;
  color: #cad6d0;
  font-size: 0.62rem;
  font-weight: 700;
}

.ownership-meter span::before {
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  width: var(--meter);
  background: linear-gradient(90deg, rgba(114, 230, 188, 0.18), rgba(114, 230, 188, 0.02));
  content: "";
}

.bento-card--outcome {
  display: flex;
  min-height: 410px;
  flex-direction: column;
  justify-content: space-between;
  background: var(--lime);
  color: var(--ink);
}

.bento-card--outcome::after {
  position: absolute;
  right: -10rem;
  bottom: -11rem;
  width: 24rem;
  height: 24rem;
  border: 1px solid rgba(7, 17, 15, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 3.5rem rgba(7, 17, 15, 0.035), 0 0 0 7rem rgba(7, 17, 15, 0.02);
  content: "";
}

.outcome-kicker {
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bento-card blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  font-weight: 730;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.bento-card blockquote em {
  font-family: Georgia, serif;
  font-weight: 400;
}

.outcome-note { position: relative; z-index: 1; margin: 0; font-size: 0.72rem; font-weight: 700; }

.section--modules {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 20%, rgba(114, 230, 188, 0.055), transparent 32%),
    var(--ink-deep);
}

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

.module-card {
  position: relative;
  display: flex;
  min-height: 275px;
  padding: 1.6rem;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(14, 29, 25, 0.74);
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}

.module-card::after {
  position: absolute;
  right: -5rem;
  bottom: -6rem;
  width: 10rem;
  height: 10rem;
  border: 1px solid rgba(201, 255, 115, 0.08);
  border-radius: 50%;
  content: "";
  transition: transform 260ms ease;
}

.module-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 255, 115, 0.25);
  background: rgba(18, 37, 31, 0.92);
}

.module-card:hover::after { transform: scale(1.35); }

.module-card--featured {
  border-color: rgba(201, 255, 115, 0.26);
  background: linear-gradient(145deg, rgba(201, 255, 115, 0.11), rgba(14, 29, 25, 0.72));
}

.module-card--governance {
  background: linear-gradient(145deg, rgba(123, 201, 238, 0.06), rgba(14, 29, 25, 0.74));
}

.module-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.module-glyph {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.025);
  color: var(--lime);
  font-size: 0.8rem;
  font-weight: 850;
}

.status-pill {
  display: inline-flex;
  min-height: 1.7rem;
  padding: 0.28rem 0.52rem;
  align-items: center;
  border: 1px solid rgba(123, 201, 238, 0.22);
  border-radius: 999px;
  background: rgba(123, 201, 238, 0.06);
  color: var(--sky);
  font-size: 0.52rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.status-pill--available {
  border-color: rgba(201, 255, 115, 0.25);
  background: rgba(201, 255, 115, 0.08);
  color: var(--lime);
}

.status-pill--control {
  border-color: rgba(114, 230, 188, 0.22);
  background: rgba(114, 230, 188, 0.06);
  color: var(--mint);
}

.module-card h3 {
  margin: 2.1rem 0 0.65rem;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
}

.module-card p {
  margin-bottom: 1.6rem;
  color: var(--paper-muted);
  font-size: 0.85rem;
}

.module-link {
  position: relative;
  z-index: 1;
  display: flex;
  margin-top: auto;
  align-items: center;
  justify-content: space-between;
  color: #778c82;
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.module-link i { color: var(--lime); font-size: 0.9rem; font-style: normal; }

.availability-note {
  max-width: 700px;
  margin: 2rem auto 0;
  color: #70837a;
  font-size: 0.7rem;
  text-align: center;
}

.section--control {
  background: var(--cream);
  color: var(--light-text);
}

.control-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(440px, 0.95fr);
  align-items: start;
  gap: clamp(4rem, 8vw, 8rem);
}

.control-copy h2 {
  margin-bottom: 1.4rem;
  font-size: clamp(2.8rem, 5.4vw, 5.5rem);
  font-weight: 690;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.control-lede {
  max-width: 650px;
  margin-bottom: 3.4rem;
  color: var(--light-muted);
  font-size: 1.05rem;
}

.control-principles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--light-line);
}

.control-principles article {
  display: flex;
  min-height: 150px;
  padding: 1.25rem 1rem 1.25rem 0;
  gap: 0.8rem;
  border-bottom: 1px solid var(--light-line);
}

.control-principles article:nth-child(odd) { border-right: 1px solid var(--light-line); }
.control-principles article:nth-child(even) { padding-left: 1.1rem; }
.control-principles article > span { color: #53675d; font-size: 0.58rem; font-weight: 850; }
.control-principles h3 { margin-bottom: 0.35rem; font-size: 0.92rem; }
.control-principles p { margin: 0; color: var(--light-muted); font-size: 0.75rem; line-height: 1.55; }

.governance-panel {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  overflow: hidden;
  border: 1px solid rgba(19, 32, 25, 0.2);
  border-radius: var(--radius-lg);
  background: var(--ink-soft);
  color: var(--paper);
  box-shadow: 0 35px 80px rgba(19, 32, 25, 0.19);
}

.governance-panel__top {
  display: flex;
  min-height: 3.6rem;
  padding: 0 1.2rem;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  color: #7a8e84;
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.governance-state { display: flex; align-items: center; gap: 0.4rem; color: var(--mint); }

.governance-core {
  position: relative;
  padding: 2rem 1.4rem;
  background:
    linear-gradient(rgba(218, 247, 230, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(218, 247, 230, 0.02) 1px, transparent 1px);
  background-size: 32px 32px;
}

.governance-axis {
  position: absolute;
  top: 3.8rem;
  bottom: 3.8rem;
  left: 3.05rem;
  width: 1px;
  background: linear-gradient(var(--lime), rgba(201, 255, 115, 0.06));
}

.governance-core ol { position: relative; z-index: 1; display: grid; margin: 0; padding: 0; gap: 0.9rem; list-style: none; }

.governance-core li {
  display: grid;
  min-height: 6rem;
  padding: 0.9rem;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  background: rgba(7, 17, 15, 0.88);
}

.governance-core li:first-child { border-color: rgba(201, 255, 115, 0.24); }

.governance-icon {
  display: grid;
  width: 3.2rem;
  height: 3.2rem;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--ink-soft);
  color: var(--lime);
  font-size: 0.56rem;
  font-weight: 850;
}

.governance-core li > div { display: flex; min-width: 0; flex-direction: column; }
.governance-core small { color: #6c8177; font-size: 0.5rem; letter-spacing: 0.08em; text-transform: uppercase; }
.governance-core strong { font-size: 0.79rem; }
.governance-core p { margin: 0.18rem 0 0; color: #82968c; font-size: 0.6rem; line-height: 1.4; }

.governance-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.governance-footer div { display: flex; min-height: 5rem; flex-direction: column; align-items: center; justify-content: center; border-right: 1px solid var(--line); }
.governance-footer div:last-child { border-right: 0; }
.governance-footer span { color: #6e8278; font-size: 0.5rem; text-transform: uppercase; }
.governance-footer strong { margin-top: 0.18rem; color: var(--lime); font-size: 0.7rem; }

.section--audiences {
  overflow: hidden;
  background: var(--ink);
}

.audience-explorer {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--ink-soft);
  box-shadow: var(--shadow);
}

.audience-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid var(--line);
}

.audience-tabs button {
  min-height: 4.5rem;
  padding: 0.8rem;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: #788d82;
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 750;
  transition: background 160ms ease, color 160ms ease;
}

.audience-tabs button:last-child { border-right: 0; }
.audience-tabs button:hover { color: var(--paper); }
.audience-tabs button[aria-selected="true"] { background: rgba(201, 255, 115, 0.08); color: var(--lime); }

.audience-panel {
  display: grid;
  min-height: 490px;
  grid-template-columns: 1fr 0.86fr;
}

.audience-panel[hidden] { display: none; }

.audience-content {
  display: flex;
  padding: clamp(2rem, 5vw, 5rem);
  flex-direction: column;
  justify-content: center;
}

.audience-index { color: var(--lime); font-size: 0.62rem; font-weight: 850; letter-spacing: 0.1em; text-transform: uppercase; }
.audience-content h3 { max-width: 630px; margin-bottom: 1.3rem; font-size: clamp(2rem, 4vw, 3.8rem); letter-spacing: -0.05em; line-height: 1; }
.audience-content > p:not(.audience-index) { max-width: 580px; color: var(--paper-muted); font-size: 0.94rem; }
.audience-content ul { display: flex; margin: 1.3rem 0 0; padding: 0; flex-wrap: wrap; gap: 0.55rem; list-style: none; }
.audience-content li { padding: 0.4rem 0.65rem; border: 1px solid var(--line); border-radius: 999px; color: #92a69c; font-size: 0.6rem; font-weight: 700; }

.audience-visual {
  position: relative;
  display: grid;
  min-height: 100%;
  place-items: center;
  overflow: hidden;
  border-left: 1px solid var(--line);
  background:
    linear-gradient(rgba(218, 247, 230, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(218, 247, 230, 0.025) 1px, transparent 1px),
    #091410;
  background-size: 38px 38px;
}

.audience-orbit {
  position: relative;
  display: grid;
  width: 13rem;
  height: 13rem;
  place-items: center;
  border: 1px solid rgba(201, 255, 115, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 3rem rgba(201, 255, 115, 0.018), 0 0 0 6rem rgba(201, 255, 115, 0.01);
}

.audience-orbit > span {
  display: grid;
  width: 6.2rem;
  height: 6.2rem;
  place-items: center;
  border: 1px solid rgba(201, 255, 115, 0.3);
  border-radius: 50%;
  background: #10241d;
  color: var(--lime);
  font-size: 0.8rem;
  font-weight: 800;
}

.audience-orbit i {
  position: absolute;
  padding: 0.35rem 0.5rem;
  border: 1px solid var(--line);
  border-radius: 0.4rem;
  background: var(--ink-soft);
  color: #8da197;
  font-size: 0.55rem;
  font-style: normal;
}

.audience-orbit i:nth-child(2) { top: -0.8rem; }
.audience-orbit i:nth-child(3) { right: -2rem; bottom: 1.7rem; }
.audience-orbit i:nth-child(4) { bottom: 1.7rem; left: -2rem; }

.operator-branches,
.company-stack {
  display: grid;
  width: min(80%, 310px);
  gap: 0.65rem;
}

.operator-branches span,
.operator-branches i,
.company-stack span,
.company-stack i {
  display: flex;
  min-height: 3.4rem;
  padding: 0.6rem 1rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  background: var(--ink-soft);
  color: #8ea298;
  font-size: 0.68rem;
  font-style: normal;
}

.operator-branches span,
.company-stack span { border-color: rgba(201, 255, 115, 0.28); color: var(--lime); font-weight: 800; }
.operator-branches i:nth-child(2) { margin-left: -2rem; }
.operator-branches i:nth-child(4) { margin-right: -2rem; }

.company-stack i:nth-child(2) { border-color: rgba(201, 255, 115, 0.22); color: var(--lime); }

.executive-bars {
  display: flex;
  width: min(76%, 300px);
  height: 230px;
  padding: 1.6rem;
  align-items: end;
  justify-content: center;
  gap: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(12, 25, 22, 0.82);
}

.executive-bars span { width: 3rem; height: var(--bar); border-radius: 0.5rem 0.5rem 0 0; background: linear-gradient(var(--lime), rgba(114, 230, 188, 0.12)); }
.executive-bars i { position: absolute; bottom: 4rem; color: #81958b; font-size: 0.6rem; font-style: normal; }

.team-grid {
  display: grid;
  width: min(74%, 290px);
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.team-grid span { display: grid; aspect-ratio: 1.15; place-items: center; border: 1px solid var(--line); border-radius: 1rem; background: var(--ink-soft); color: #92a69b; font-size: 0.75rem; font-weight: 800; }
.team-grid span:first-child { border-color: rgba(201, 255, 115, 0.26); color: var(--lime); }

.section--difference {
  background: var(--light-bg);
  color: var(--light-text);
}

.comparison-wrap {
  overflow-x: auto;
  border: 1px solid var(--light-line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.25);
}

.comparison-table {
  width: 100%;
  min-width: 740px;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: 1.25rem 1.4rem;
  border-right: 1px solid var(--light-line);
  border-bottom: 1px solid var(--light-line);
  font-size: 0.78rem;
}

.comparison-table th:last-child,
.comparison-table td:last-child { border-right: 0; }
.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td { border-bottom: 0; }
.comparison-table thead th { background: rgba(19, 32, 25, 0.04); color: #667a70; font-size: 0.61rem; letter-spacing: 0.08em; text-transform: uppercase; }
.comparison-table thead th:last-child { background: #1a2b23; color: var(--lime); }
.comparison-table tbody th { width: 25%; font-weight: 800; }
.comparison-table tbody td { color: var(--light-muted); }
.comparison-table tbody td:last-child { background: rgba(19, 32, 25, 0.035); color: #1c3327; font-weight: 700; }

.final-cta {
  position: relative;
  padding: clamp(7rem, 13vw, 12rem) 0;
  overflow: hidden;
  background: var(--lime);
  color: var(--ink-deep);
}

.cta-grid {
  opacity: 0.22;
  background-image: linear-gradient(rgba(7, 17, 15, 0.16) 1px, transparent 1px), linear-gradient(90deg, rgba(7, 17, 15, 0.16) 1px, transparent 1px);
  mask-image: radial-gradient(circle at center, black, transparent 72%);
}

.cta-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 38rem;
  height: 38rem;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(7, 17, 15, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 6rem rgba(7, 17, 15, 0.025), 0 0 0 12rem rgba(7, 17, 15, 0.018);
}

.final-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.final-cta .eyebrow { justify-content: center; color: #3c5a46; }
.final-cta h2 { max-width: 920px; margin: 0 auto 1.4rem; font-size: clamp(3rem, 7vw, 7rem); font-weight: 730; letter-spacing: -0.065em; line-height: 0.9; }
.final-cta__inner > p:not(.eyebrow):not(.cta-microcopy) { max-width: 650px; margin: 0 auto 2.2rem; color: #385043; font-size: 1.05rem; }
.button--light { background: var(--ink); color: var(--paper); box-shadow: 0 20px 45px rgba(7, 17, 15, 0.18); }
.button--light:hover { background: #14241d; }
.button--ghost-light { border-color: rgba(7, 17, 15, 0.3); background: rgba(255, 255, 255, 0.12); color: var(--ink); }
.button--ghost-light:hover { border-color: rgba(7, 17, 15, 0.5); background: rgba(255, 255, 255, 0.25); }
.cta-microcopy { margin: -0.6rem 0 0; color: #4d6758; font-size: 0.68rem; font-weight: 700; }

.site-footer {
  padding: 4.5rem 0 1.5rem;
  border-top: 1px solid var(--line);
  background: var(--ink-deep);
}

.footer-grid {
  display: grid;
  padding-bottom: 4rem;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.brand--footer { margin-bottom: 1.2rem; }
.footer-grid > div:first-child > p { max-width: 340px; color: #778a80; font-size: 0.82rem; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.footer-links > div { display: flex; flex-direction: column; align-items: flex-start; gap: 0.55rem; }
.footer-links strong { margin-bottom: 0.35rem; color: var(--paper); font-size: 0.68rem; }
.footer-links a { color: #788c82; font-size: 0.72rem; text-decoration: none; transition: color 160ms ease; }
.footer-links a:hover { color: var(--lime); }

.footer-bottom {
  display: flex;
  padding-top: 1.3rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  color: #788c82;
  font-size: 0.62rem;
}

.planner-dialog {
  width: min(740px, calc(100vw - 2rem));
  max-height: min(880px, calc(100dvh - 2rem));
  padding: 0;
  overflow: auto;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--ink-soft);
  color: var(--paper);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.6);
}

.planner-dialog::backdrop {
  background: rgba(2, 7, 6, 0.78);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

.planner-shell { padding: clamp(1.4rem, 4vw, 2.5rem); }
.planner-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.planner-header .eyebrow { margin-bottom: 0.7rem; }
.planner-header h2 { margin-bottom: 0; font-size: clamp(2rem, 5vw, 3.3rem); letter-spacing: -0.05em; line-height: 0.98; }

.dialog-close {
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  flex: 0 0 auto;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 0.65rem;
  background: transparent;
  color: var(--paper-muted);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

.planner-form { margin-top: 2.4rem; }
.planner-form fieldset { padding: 0; border: 0; }
.planner-form legend { font-size: 0.88rem; font-weight: 800; }
.planner-form fieldset > p { margin: 0.25rem 0 1rem; color: var(--paper-muted); font-size: 0.7rem; }

.planner-options--checks { display: grid; grid-template-columns: 1fr 1fr; gap: 0.55rem; }
.planner-options label { position: relative; cursor: pointer; }
.planner-options input { position: absolute; opacity: 0; pointer-events: none; }
.planner-options label span { display: flex; min-height: 3.2rem; padding: 0.65rem 0.85rem; align-items: center; border: 1px solid var(--line); border-radius: 0.7rem; background: rgba(255, 255, 255, 0.018); color: #8ea298; font-size: 0.72rem; font-weight: 700; transition: border-color 160ms ease, background 160ms ease, color 160ms ease; }
.planner-options input:focus-visible + span { outline: 3px solid var(--lime); outline-offset: 3px; }
.planner-options input:checked + span { border-color: rgba(201, 255, 115, 0.3); background: rgba(201, 255, 115, 0.08); color: var(--lime); }
.planner-options input:checked + span::after { margin-left: auto; content: "✓"; }

.planner-fields { display: grid; margin-top: 1.3rem; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.planner-fields label { display: flex; flex-direction: column; gap: 0.45rem; }
.planner-fields label > span { color: #8ca097; font-size: 0.65rem; font-weight: 750; }
.planner-fields select { width: 100%; min-height: 3.2rem; padding: 0.6rem 2.2rem 0.6rem 0.75rem; border: 1px solid var(--line); border-radius: 0.7rem; background: #0a1713; color: var(--paper); font-size: 0.72rem; }
.planner-submit { width: 100%; margin-top: 1.2rem; }

.planner-result { margin-top: 1.4rem; padding: 1rem; border: 1px solid rgba(201, 255, 115, 0.22); border-radius: 0.8rem; background: rgba(201, 255, 115, 0.045); }
.planner-result__top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.planner-result__top span { color: var(--lime); font-size: 0.62rem; font-weight: 850; letter-spacing: 0.08em; text-transform: uppercase; }
.planner-result__top button { padding: 0.38rem 0.55rem; border: 1px solid var(--line-strong); border-radius: 0.45rem; background: transparent; color: var(--paper); cursor: pointer; font-size: 0.58rem; font-weight: 750; }
.planner-result pre { margin: 0.8rem 0; overflow: auto; color: #c2d0c9; font-family: ui-monospace, "SFMono-Regular", Consolas, monospace; font-size: 0.68rem; line-height: 1.6; white-space: pre-wrap; }
.planner-result > p { margin: 0; color: #7c9187; font-size: 0.58rem; }
.planner-privacy { margin: 1.2rem 0 0; color: #7c9187; font-size: 0.62rem; }
.planner-privacy span { margin-right: 0.35rem; color: var(--mint); }

[data-reveal] {
  opacity: 1;
  transform: none;
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-ready [data-reveal][data-reveal-delay="1"] { transition-delay: 90ms; }
.reveal-ready [data-reveal][data-reveal-delay="2"] { transition-delay: 180ms; }
.reveal-ready [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  :root { --shell: min(100% - 2.5rem, 960px); }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-copy { max-width: 820px; }
  .hero h1 { max-width: 900px; }
  .hero-console { width: min(760px, 100%); transform: none; }
  .capability-rail { grid-template-columns: 1fr 1fr; }
  .capability-rail > div:nth-child(2) { border-right: 0; }
  .capability-rail > div:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .section-heading--split { gap: 3rem; }
  .control-layout { grid-template-columns: 1fr; }
  .governance-panel { position: relative; top: 0; width: min(620px, 100%); }
  .audience-panel { grid-template-columns: 1fr 0.72fr; }
}

@media (max-width: 820px) {
  :root { --header-height: 4.25rem; --shell: min(100% - 2rem, 720px); }
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 1rem;
    left: 1rem;
    display: flex;
    padding: 1rem;
    transform: translateY(-1rem) scale(0.98);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line-strong);
    border-radius: 1rem;
    background: rgba(7, 17, 15, 0.98);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }
  .site-nav.is-open { transform: translateY(0) scale(1); opacity: 1; visibility: visible; }
  .site-nav > a { display: flex; min-height: 3rem; padding: 0 0.7rem; align-items: center; border-bottom: 1px solid var(--line); font-size: 0.9rem; }
  .site-nav > a::after { display: none; }
  .site-nav .button { margin-top: 0.8rem; }
  .hero { padding-top: calc(var(--header-height) + 4.2rem); }
  .hero h1 { font-size: clamp(3.3rem, 13vw, 5.8rem); }
  .control-map { grid-template-columns: 1fr; }
  .module-cluster { min-height: 260px; }
  .section-heading--split { grid-template-columns: 1fr; align-items: start; gap: 1.5rem; }
  .section-heading--split > p { max-width: 620px; }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-card { min-height: auto; border-right: 0; border-bottom: 1px solid var(--light-line); }
  .problem-card:last-child { border-bottom: 0; }
  .problem-line { height: 3rem; }
  .bento-grid { grid-template-columns: 1fr; }
  .module-grid { grid-template-columns: 1fr 1fr; }
  .audience-tabs { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; }
  .audience-tabs button { min-width: 150px; flex: 1 0 auto; scroll-snap-align: start; }
  .audience-panel { grid-template-columns: 1fr; }
  .audience-visual { min-height: 380px; border-top: 1px solid var(--line); border-left: 0; }
}

@media (max-width: 560px) {
  :root { --shell: min(100% - 1.25rem, 520px); }
  .brand-product { display: none; }
  .hero { min-height: auto; }
  .hero h1 { font-size: clamp(3rem, 17vw, 4.6rem); }
  .hero-lede { font-size: 1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-proof { align-items: flex-start; flex-direction: column; }
  .hero-proof span:nth-child(even) { display: none; }
  .console-bar { grid-template-columns: 1fr 1fr; }
  .console-bar p { display: none; }
  .console-content { padding: 0.8rem; }
  .console-heading { padding: 0.3rem; }
  .console-period { display: none; }
  .control-map { padding: 0.75rem; }
  .console-events { grid-template-columns: 1fr; }
  .capability-rail { margin-top: 4rem; grid-template-columns: 1fr; }
  .capability-rail > div { min-height: 6.7rem; border-right: 0; border-bottom: 1px solid var(--line); }
  .capability-rail > div:last-child { border-bottom: 0; }
  .section { padding: 5.5rem 0; }
  .section-heading h2 { font-size: clamp(2.4rem, 12vw, 3.6rem); }
  .problem-card { padding: 1.5rem 0.7rem; }
  .problem-statement { gap: 0.5rem; }
  .problem-statement span { font-size: 3.5rem; }
  .bento-card { min-height: 340px; padding: 1.4rem; }
  .bento-card--map { min-height: 570px; }
  .topology { right: 1rem; bottom: 1rem; left: 1rem; }
  .topology-node { min-width: 6.3rem; padding: 0.65rem; }
  .topology-node--control { left: 4%; }
  .topology-node--operator { left: 35%; }
  .topology-node--company { right: 4%; }
  .topology-modules { left: 7%; }
  .module-grid { grid-template-columns: 1fr; }
  .module-card { min-height: 250px; }
  .control-principles { grid-template-columns: 1fr; }
  .control-principles article:nth-child(odd) { border-right: 0; }
  .control-principles article:nth-child(even) { padding-left: 0; }
  .governance-core { padding: 1.1rem 0.8rem; }
  .governance-axis { left: 2.42rem; }
  .governance-core li { padding: 0.7rem; gap: 0.7rem; }
  .governance-icon { width: 2.6rem; height: 2.6rem; }
  .governance-footer div { min-height: 4rem; }
  .audience-content { padding: 2rem 1.4rem; }
  .audience-content h3 { font-size: 2.25rem; }
  .audience-visual { min-height: 320px; }
  .final-cta h2 { font-size: clamp(3.1rem, 15vw, 5rem); }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .planner-options--checks,
  .planner-fields { grid-template-columns: 1fr; }
}

/*
 * Unscaled high-resolution displays need physical-size compensation, not an
 * endlessly wide layout. These steps enlarge type, controls, spacing, and the
 * content shell together while preserving comfortable reading line lengths.
 * Browser zoom naturally reduces the CSS viewport, so user-selected scaling
 * continues to take precedence.
 */
@media (min-width: 2400px) {
  :root {
    --shell: min(78rem, calc(100vw - 8rem));
    font-size: 112.5%;
  }

  :focus-visible { outline-width: 0.18rem; }
}

@media (min-width: 3600px) {
  :root {
    --shell: min(78rem, calc(100vw - 10rem));
    font-size: 150%;
  }
}

@media (min-width: 5200px) {
  :root {
    --shell: min(80rem, calc(100vw - 12rem));
    font-size: 200%;
  }
}

@media (min-width: 7000px) {
  :root {
    --shell: min(82rem, calc(100vw - 14rem));
    font-size: 275%;
  }
}

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

@media (forced-colors: active) {
  .signal-dot,
  .live-label i,
  .governance-state i,
  .event-icon { forced-color-adjust: none; }
  .button,
  .module-card,
  .bento-card,
  .problem-card { border: 1px solid ButtonText; }
}
