:root {
  --bg: #090b0f;
  --bg-soft: #0d1015;
  --panel: #11151b;
  --panel-bright: #161b22;
  --line: rgba(229, 241, 239, 0.14);
  --line-strong: rgba(229, 241, 239, 0.24);
  --text: #f2f6f3;
  --text-soft: #c0c9c7;
  --muted: #899492;
  --mythril: #bfe8e3;
  --mythril-bright: #e6fffb;
  --violet: #a8a8e6;
  --copper: #d8ae84;
  --lime: #c8d78e;
  --danger: #e0a492;
  --display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --shell: min(1240px, calc(100vw - 48px));
  --radius-sm: 10px;
  --radius: 20px;
  --radius-lg: 34px;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 13% -4%, rgba(168, 168, 230, 0.08), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--mythril);
  color: var(--bg);
}

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

button,
input,
textarea {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
}

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

h1,
h2,
h3,
p,
dl,
dd,
ol,
ul {
  margin-top: 0;
}

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

p {
  text-wrap: pretty;
}

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

.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: 200;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--mythril-bright);
  color: var(--bg);
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition:
    background 200ms ease,
    border-color 200ms ease,
    backdrop-filter 200ms ease;
}

.site-header[data-scrolled="true"] {
  border-color: var(--line);
  background: rgba(9, 11, 15, 0.82);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
}

.brand {
  display: inline-flex;
  min-height: 44px;
  gap: 11px;
  align-items: center;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 760;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.brand-mark {
  width: 32px;
  height: 32px;
  overflow: visible;
}

.brand-mark path:first-child {
  fill: none;
  stroke: var(--mythril);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5;
}

.brand-mark path:last-child {
  fill: none;
  stroke: var(--violet);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  opacity: 0.7;
}

.site-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 640;
  letter-spacing: 0.05em;
}

.site-nav > a {
  position: relative;
}

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

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

.nav-action {
  padding: 10px 15px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--text);
  transition:
    border-color 180ms ease,
    background 180ms ease;
}

.nav-action:hover {
  border-color: rgba(191, 232, 227, 0.5);
  background: rgba(191, 232, 227, 0.08);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--bg-soft);
}

.nav-toggle i {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--text);
  transition: transform 180ms ease;
}

.nav-toggle[aria-expanded="true"] i:first-of-type {
  transform: translateY(3px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] i:last-of-type {
  transform: translateY(-3px) rotate(-45deg);
}

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.hero-grid,
.closing-grid {
  position: absolute;
  z-index: -3;
  inset: 0;
  background-image:
    linear-gradient(rgba(231, 245, 242, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(231, 245, 242, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black 0%, rgba(0, 0, 0, 0.7) 70%, transparent 100%);
}

.hero-mesh {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.94;
  pointer-events: none;
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: -180px;
  bottom: -310px;
  width: 760px;
  height: 760px;
  border: 1px solid rgba(191, 232, 227, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(191, 232, 227, 0.025),
    0 0 0 140px rgba(168, 168, 230, 0.02);
  content: "";
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(440px, 0.92fr);
  gap: clamp(50px, 7vw, 120px);
  align-items: center;
  padding-top: 144px;
  padding-bottom: 120px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow,
.kicker {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 24px;
  color: var(--mythril);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mythril);
  box-shadow: 0 0 0 5px rgba(191, 232, 227, 0.08), 0 0 20px rgba(191, 232, 227, 0.55);
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 30px;
  font-family: var(--display);
  font-size: clamp(4.4rem, 7.4vw, 7.7rem);
  font-weight: 430;
  letter-spacing: -0.065em;
  line-height: 0.88;
}

.hero h1 em {
  display: block;
  margin-top: 0.16em;
  background: linear-gradient(115deg, var(--text) 2%, var(--mythril) 35%, var(--violet) 67%, var(--copper));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 410;
}

.hero-lede {
  max-width: 670px;
  margin-bottom: 34px;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.4vw, 1.17rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  gap: 16px;
  align-items: center;
  justify-content: center;
  padding: 13px 19px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 730;
  letter-spacing: 0.03em;
  line-height: 1;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

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

.button-primary {
  background: var(--mythril-bright);
  color: var(--bg);
  box-shadow: 0 12px 40px rgba(191, 232, 227, 0.12);
}

.button-primary:hover {
  background: white;
}

.button-quiet {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.018);
  color: var(--text);
}

.button-quiet:hover {
  border-color: rgba(191, 232, 227, 0.48);
  background: rgba(191, 232, 227, 0.06);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 650px;
  margin: 54px 0 0;
  border-top: 1px solid var(--line);
}

.hero-proof div {
  padding: 22px 22px 0 0;
}

.hero-proof div + div {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.hero-proof dt {
  color: var(--text);
  font-family: var(--display);
  font-size: 2.1rem;
  line-height: 1;
}

.hero-proof dd {
  max-width: 130px;
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  line-height: 1.45;
}

.constellation {
  position: relative;
  width: min(100%, 570px);
  aspect-ratio: 1;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(191, 232, 227, 0.075), transparent 34%),
    rgba(7, 9, 12, 0.36);
  box-shadow:
    inset 0 0 80px rgba(169, 168, 230, 0.03),
    0 0 80px rgba(0, 0, 0, 0.24);
}

.constellation::before,
.constellation::after {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.constellation::before {
  inset: 13%;
  border-style: dashed;
  opacity: 0.68;
  animation: orbit 70s linear infinite;
}

.constellation::after {
  inset: 29%;
  opacity: 0.5;
}

.constellation-field {
  position: absolute;
  inset: 0;
}

.constellation-field i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(191, 232, 227, 0.22), transparent);
  transform-origin: left;
}

.constellation-field i:nth-child(1) { transform: rotate(-76deg); }
.constellation-field i:nth-child(2) { transform: rotate(-7deg); }
.constellation-field i:nth-child(3) { transform: rotate(57deg); }
.constellation-field i:nth-child(4) { transform: rotate(144deg); }

.constellation-center {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  display: flex;
  width: 168px;
  aspect-ratio: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(191, 232, 227, 0.25);
  border-radius: 50%;
  background: rgba(13, 16, 21, 0.9);
  box-shadow:
    0 0 0 10px rgba(191, 232, 227, 0.02),
    0 22px 70px rgba(0, 0, 0, 0.4);
  text-align: center;
  transform: translate(-50%, -50%);
}

.center-kicker {
  margin-bottom: 7px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.52rem;
  letter-spacing: 0.12em;
}

.constellation-center strong {
  max-width: 130px;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.1;
}

.constellation-center small {
  margin-top: 8px;
  color: var(--mythril);
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-node {
  position: absolute;
  z-index: 5;
  display: grid;
  min-width: 126px;
  gap: 1px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(12, 15, 20, 0.92);
  box-shadow: 0 15px 34px rgba(0, 0, 0, 0.26);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.product-node:hover,
.product-node:focus-visible,
.product-node[data-active="true"] {
  border-color: rgba(191, 232, 227, 0.48);
  background: rgba(21, 27, 33, 0.98);
}

.product-node:hover,
.product-node:focus-visible {
  transform: translateY(-3px);
}

.product-node span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.5rem;
  letter-spacing: 0.1em;
}

.product-node b {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 520;
}

.product-node small {
  color: var(--muted);
  font-size: 0.6rem;
}

.node-hoplon { top: 3%; left: 35%; }
.node-owd { top: 24%; right: -2%; }
.node-readiness { right: 3%; bottom: 17%; }
.node-goalie { bottom: 2%; left: 19%; }
.node-chamba { top: 32%; left: -5%; }

.hero-foot {
  position: absolute;
  right: 0;
  bottom: 22px;
  left: 0;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signal-strip {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--mythril);
  color: #0c1114;
}

.signal-track {
  display: flex;
  min-width: max-content;
  gap: 24px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  margin-inline: auto;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signal-track i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.45;
}

.section {
  position: relative;
  padding: clamp(92px, 12vw, 160px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.6fr);
  gap: 80px;
  align-items: end;
  margin-bottom: clamp(50px, 7vw, 84px);
}

.section-heading h2,
.thesis-statement h2,
.company-card h2,
.closing-inner h2,
.case-hero h1,
.legal-hero h1 {
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(3.3rem, 6.2vw, 6.5rem);
  font-weight: 430;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.section-heading > p {
  max-width: 470px;
  margin-bottom: 4px;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.75;
}

.work-section {
  background:
    radial-gradient(circle at 85% 8%, rgba(168, 168, 230, 0.06), transparent 28rem),
    var(--bg);
}

.flagship-card {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(470px, 1.18fr);
  gap: clamp(32px, 5vw, 72px);
  padding: clamp(28px, 4vw, 54px);
  overflow: hidden;
  border: 1px solid rgba(191, 232, 227, 0.22);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(191, 232, 227, 0.055), transparent 38%),
    var(--panel);
  box-shadow: var(--shadow);
}

.card-topline {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 42px;
}

.status {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 4px 8px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.status-live { color: var(--mythril); }
.status-beta { color: var(--violet); }
.status-alpha { color: var(--lime); }
.status-build { color: var(--copper); }

.card-index {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
}

.product-label {
  margin-bottom: 12px;
  color: var(--mythril);
  font-family: var(--mono);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.flagship-copy h3,
.product-card h3 {
  margin-bottom: 20px;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 450;
  letter-spacing: -0.045em;
  line-height: 1;
}

.flagship-copy > p:not(.product-label),
.product-card > p:not(.product-label) {
  color: var(--text-soft);
  line-height: 1.75;
}

.now-line {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  padding-top: 22px;
  margin-top: 28px;
  border-top: 1px solid var(--line);
}

.now-line > span {
  color: var(--mythril);
  font-family: var(--mono);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.now-line p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-top: 32px;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  gap: 10px;
  align-items: center;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 700;
}

.text-link span {
  color: var(--mythril);
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(3px);
}

.hoplon-visual {
  align-self: center;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: #0a0d11;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.36),
    0 0 60px rgba(191, 232, 227, 0.045);
  transform: perspective(1100px) rotateY(-2deg) rotateX(1deg);
}

.visual-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 45px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.52rem;
  letter-spacing: 0.08em;
}

.visual-state {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: var(--mythril);
}

.visual-state i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 10px currentColor;
}

.visual-body {
  display: grid;
  grid-template-columns: 150px 1fr;
  min-height: 390px;
}

.visual-body > aside {
  padding: 24px 18px;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.015);
}

.visual-body > aside > span,
.model-row article > span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.48rem;
  letter-spacing: 0.09em;
}

.visual-body > aside > b {
  display: block;
  margin: 12px 0 20px;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.2;
}

.visual-body ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.visual-body li {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 9px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.6rem;
}

.visual-body li i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mythril);
}

.compare-panel {
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.compare-panel > p {
  max-width: 340px;
  margin-bottom: 24px;
  color: var(--text-soft);
  font-family: var(--display);
  font-size: 1.35rem;
  line-height: 1.25;
}

.model-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.model-row article {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.018);
}

.model-row article b {
  display: block;
  margin: 10px 0 14px;
  color: var(--mythril);
  font-family: var(--mono);
  font-size: 0.68rem;
}

.model-row article i {
  display: block;
  height: 5px;
  margin-top: 7px;
  border-radius: 999px;
  background: rgba(191, 232, 227, 0.2);
}

.model-row article i:nth-of-type(2) { width: 84%; }
.model-row article i:nth-of-type(3) { width: 62%; }

.model-row article small {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.52rem;
}

.evidence-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 15px;
  margin-top: auto;
  border: 1px solid rgba(191, 232, 227, 0.2);
  border-radius: 9px;
  background: rgba(191, 232, 227, 0.045);
  font-size: 0.57rem;
}

.evidence-bar span { color: var(--muted); }
.evidence-bar b { color: var(--mythril); font-weight: 650; }

.tech-ribbon {
  display: flex;
  gap: 10px;
  padding: 12px 14px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.012);
}

.tech-ribbon span {
  flex: 1;
  padding: 5px 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.46rem;
  text-align: center;
  white-space: nowrap;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.product-card {
  position: relative;
  display: flex;
  min-height: 620px;
  flex-direction: column;
  padding: clamp(26px, 4vw, 46px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  transition:
    border-color 200ms ease,
    transform 200ms ease,
    background 200ms ease;
}

.product-card:hover {
  border-color: var(--line-strong);
  background: var(--panel-bright);
  transform: translateY(-3px);
}

.product-card::before {
  position: absolute;
  top: -160px;
  right: -140px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--card-glow, rgba(191, 232, 227, 0.09)), transparent 68%);
  content: "";
  pointer-events: none;
}

.card-owd { --card-glow: rgba(191, 232, 227, 0.11); }
.card-readiness { --card-glow: rgba(168, 168, 230, 0.12); }
.card-goalie { --card-glow: rgba(200, 215, 142, 0.1); }
.card-chamba { --card-glow: rgba(216, 174, 132, 0.12); }

.product-card h3 {
  max-width: 590px;
  font-size: clamp(2.2rem, 3.6vw, 3.55rem);
}

.product-card > p:not(.product-label) {
  max-width: 590px;
}

.project-glyph {
  position: relative;
  display: flex;
  min-height: 118px;
  align-items: center;
  margin-bottom: 38px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.glyph-owd {
  gap: 8px;
}

.glyph-owd span {
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.018);
}

.glyph-owd i {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--line), var(--mythril), var(--line));
}

.glyph-readiness {
  justify-content: space-between;
}

.glyph-readiness span {
  position: relative;
  display: grid;
  width: 72px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.glyph-readiness span:last-child {
  border-color: rgba(168, 168, 230, 0.45);
  color: var(--violet);
}

.glyph-readiness i {
  flex: 1;
  height: 1px;
  background: var(--line-strong);
}

.glyph-goalie svg {
  width: 100%;
  height: 78px;
}

.glyph-goalie path {
  fill: none;
  stroke: var(--lime);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.glyph-goalie circle {
  fill: var(--bg);
  stroke: var(--lime);
  stroke-width: 2;
}

.glyph-chamba {
  justify-content: space-between;
}

.glyph-chamba > div {
  width: 76%;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.glyph-chamba > div i {
  display: block;
  height: 5px;
  margin-top: 7px;
  border-radius: 999px;
  background: rgba(216, 174, 132, 0.22);
}

.glyph-chamba > div i:nth-child(2) { width: 72%; }
.glyph-chamba > div i:nth-child(3) { width: 47%; }

.glyph-chamba > span {
  position: absolute;
  bottom: 18px;
  left: 13px;
  color: var(--copper);
}

.glyph-chamba > b {
  color: var(--copper);
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
}

.product-card .now-line {
  margin-top: auto;
}

.card-footer {
  display: flex;
  min-height: 42px;
  gap: 12px;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.04em;
}

.card-footer a {
  display: inline-flex;
  min-height: 44px;
  flex: 0 0 auto;
  align-items: center;
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
}

.thesis-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(110deg, rgba(191, 232, 227, 0.045), transparent 38%),
    var(--bg-soft);
}

.thesis-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  gap: clamp(60px, 10vw, 150px);
}

.thesis-statement {
  position: sticky;
  top: 130px;
  align-self: start;
}

.thesis-statement h2 {
  margin-bottom: 30px;
}

.thesis-statement h2 em {
  color: var(--mythril);
  font-weight: 420;
}

.thesis-statement > p:not(.kicker) {
  max-width: 560px;
  margin-bottom: 28px;
  color: var(--text-soft);
  font-size: 1.06rem;
  line-height: 1.8;
}

.principle-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.principle-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.principle-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.principle-list li > span {
  padding-top: 5px;
  color: var(--mythril);
  font-family: var(--mono);
  font-size: 0.58rem;
}

.principle-list h3 {
  margin-bottom: 12px;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 450;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.principle-list p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
}

.cloudflare-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 45%, rgba(191, 232, 227, 0.055), transparent 30rem),
    var(--bg);
}

.cloudflare-orbit {
  position: absolute;
  top: 10%;
  left: -390px;
  width: 780px;
  height: 780px;
  border: 1px solid rgba(191, 232, 227, 0.055);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(191, 232, 227, 0.016),
    0 0 0 160px rgba(168, 168, 230, 0.012);
}

.cloudflare-heading h2 {
  max-width: 760px;
}

.fabric-layout {
  display: grid;
  grid-template-columns: minmax(490px, 1fr) minmax(0, 0.82fr);
  gap: clamp(70px, 10vw, 150px);
  align-items: center;
}

.fabric-core {
  position: relative;
  width: min(100%, 590px);
  aspect-ratio: 1;
  margin-inline: auto;
}

.fabric-ring {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.ring-one {
  inset: 8%;
  border-style: dashed;
  animation: orbit 80s linear infinite reverse;
}

.ring-two {
  inset: 28%;
  opacity: 0.6;
}

.fabric-center {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  width: 184px;
  aspect-ratio: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(191, 232, 227, 0.26);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(191, 232, 227, 0.08), var(--panel) 67%);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.35);
  transform: translate(-50%, -50%);
}

.fabric-center span,
.fabric-center small {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fabric-center strong {
  margin: 7px 0;
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 450;
}

.fabric-node {
  position: absolute;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--panel);
  color: var(--text-soft);
  font-family: var(--mono);
  font-size: 0.56rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.fabric-workers { top: 5%; left: 41%; }
.fabric-data { top: 24%; right: 1%; }
.fabric-state { right: 1%; bottom: 21%; }
.fabric-jobs { right: 32%; bottom: 2%; }
.fabric-ai { bottom: 17%; left: 3%; }
.fabric-security { top: 25%; left: 0; }

.fabric-copy article {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.fabric-copy article:last-child {
  border-bottom: 1px solid var(--line);
}

.fabric-copy article > span {
  color: var(--mythril);
  font-family: var(--mono);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.fabric-copy h3 {
  margin: 12px 0;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 450;
  letter-spacing: -0.035em;
}

.fabric-copy p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-ledger {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  padding: 26px;
  margin-top: 88px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.012);
}

.service-ledger span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.54rem;
  letter-spacing: 0.05em;
}

.gates-section {
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
}

.gate-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.gate-track::before {
  position: absolute;
  top: 10px;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--mythril), var(--violet), var(--copper));
  content: "";
  opacity: 0.38;
}

.gate-track article {
  position: relative;
  padding: 50px 44px 0 0;
}

.gate-track article + article {
  padding-left: 44px;
  border-left: 1px solid var(--line);
}

.gate-dot {
  position: absolute;
  z-index: 2;
  top: 4px;
  left: 0;
  width: 13px;
  height: 13px;
  border: 3px solid var(--bg-soft);
  border-radius: 50%;
  background: var(--mythril);
  box-shadow: 0 0 0 1px var(--mythril);
}

.gate-track article + article .gate-dot {
  left: 44px;
}

.gate-track article:nth-child(2) .gate-dot {
  background: var(--violet);
  box-shadow: 0 0 0 1px var(--violet);
}

.gate-track article:nth-child(3) .gate-dot {
  background: var(--copper);
  box-shadow: 0 0 0 1px var(--copper);
}

.gate-track small {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.52rem;
  letter-spacing: 0.1em;
}

.gate-track h3 {
  margin: 12px 0;
  font-family: var(--display);
  font-size: 2.7rem;
  font-weight: 440;
  letter-spacing: -0.04em;
}

.gate-track p {
  color: var(--muted);
}

.gate-track b {
  color: var(--text-soft);
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.company-section {
  padding-top: 0;
  background: var(--bg-soft);
}

.company-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 0.9fr) minmax(330px, 0.6fr);
  gap: clamp(30px, 5vw, 80px);
  align-items: start;
  padding: clamp(34px, 6vw, 76px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 15%, rgba(191, 232, 227, 0.07), transparent 24rem),
    var(--panel);
  box-shadow: var(--shadow);
}

.company-number {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
}

.company-card h2 {
  font-size: clamp(3rem, 5vw, 5.4rem);
}

.company-copy {
  padding-top: 40px;
}

.company-copy p {
  margin-bottom: 26px;
  color: var(--text-soft);
  line-height: 1.8;
}

.closing-section {
  position: relative;
  display: flex;
  min-height: 700px;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid var(--line);
  isolation: isolate;
}

.closing-section::before {
  position: absolute;
  z-index: -2;
  top: 50%;
  left: 50%;
  width: 820px;
  height: 820px;
  border: 1px solid rgba(191, 232, 227, 0.09);
  border-radius: 50%;
  box-shadow:
    0 0 0 110px rgba(191, 232, 227, 0.02),
    0 0 0 220px rgba(168, 168, 230, 0.015);
  content: "";
  transform: translate(-50%, -50%);
}

.closing-inner {
  max-width: 1020px;
  text-align: center;
}

.closing-inner .kicker {
  justify-content: center;
}

.closing-inner h2 {
  margin-bottom: 28px;
  font-size: clamp(4rem, 8vw, 8rem);
}

.closing-inner > p:not(.kicker) {
  max-width: 710px;
  margin: 0 auto 34px;
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.8;
}

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

.site-footer {
  border-top: 1px solid var(--line);
  background: #07090c;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 54px 0;
}

.brand-footer .brand-mark {
  width: 38px;
  height: 38px;
}

.footer-main > p {
  margin-bottom: 0;
  color: var(--muted);
  font-family: var(--display);
  font-size: 1.05rem;
  font-style: italic;
}

.footer-main nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 0.68rem;
}

.footer-main nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 18px 0 28px;
  border-top: 1px solid var(--line);
  color: #7b8784;
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Shared product, principles, contact, and legal pages */
.simple-page,
.case-page {
  background:
    radial-gradient(circle at 82% 2%, rgba(191, 232, 227, 0.07), transparent 30rem),
    var(--bg);
}

.subpage-header {
  border-bottom-color: var(--line);
  background: rgba(9, 11, 15, 0.88);
  backdrop-filter: blur(18px);
}

.subpage-main {
  padding-top: 80px;
}

.case-hero,
.legal-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(90px, 12vw, 160px) 0 clamp(80px, 10vw, 130px);
  border-bottom: 1px solid var(--line);
}

.case-hero::after,
.legal-hero::after {
  position: absolute;
  z-index: -1;
  top: -330px;
  right: -300px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(191, 232, 227, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(191, 232, 227, 0.015);
  content: "";
}

.case-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-bottom: 56px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.57rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-breadcrumb a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.case-breadcrumb a:hover {
  color: var(--text);
}

.case-breadcrumb span {
  color: var(--line-strong);
}

.case-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.55fr);
  gap: clamp(50px, 9vw, 130px);
  align-items: end;
}

.case-hero h1,
.legal-hero h1 {
  max-width: 980px;
  margin: 18px 0 26px;
  font-size: clamp(4rem, 8.6vw, 9rem);
}

.case-hero h1 em {
  display: block;
  color: var(--mythril);
  font-weight: 430;
}

.case-lede {
  max-width: 800px;
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.75;
}

.case-meta {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.018);
}

.case-meta dl {
  margin: 0;
}

.case-meta div {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.case-meta div:last-child {
  border-bottom: 0;
}

.case-meta dt {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.52rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-meta dd {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.73rem;
}

.case-meta .button {
  width: 100%;
  margin-top: 22px;
}

.case-section {
  padding: clamp(80px, 10vw, 130px) 0;
  border-bottom: 1px solid var(--line);
}

.case-section-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
  gap: clamp(50px, 10vw, 150px);
}

.case-section-label {
  color: var(--mythril);
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-section-content h2 {
  max-width: 820px;
  margin-bottom: 26px;
  font-family: var(--display);
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  font-weight: 430;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.case-section-content > p {
  max-width: 820px;
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.85;
}

.case-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 0;
  margin: 42px 0 0;
  list-style: none;
}

.case-points li {
  min-height: 150px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.014);
}

.case-points span {
  color: var(--mythril);
  font-family: var(--mono);
  font-size: 0.52rem;
}

.case-points h3 {
  margin: 13px 0 8px;
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 460;
  letter-spacing: -0.025em;
}

.case-points p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.architecture-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 38px;
}

.architecture-strip span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-soft);
  font-family: var(--mono);
  font-size: 0.55rem;
}

.boundary-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.boundary-card > div {
  padding: clamp(28px, 5vw, 54px);
}

.boundary-card > div + div {
  border-left: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
}

.boundary-card small {
  color: var(--mythril);
  font-family: var(--mono);
  font-size: 0.53rem;
  letter-spacing: 0.1em;
}

.boundary-card h3 {
  margin: 16px 0;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 440;
  letter-spacing: -0.04em;
}

.boundary-card p,
.boundary-card li {
  color: var(--muted);
}

.boundary-card ul {
  padding-left: 18px;
  margin-bottom: 0;
}

.case-next {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 54px 0;
}

.case-next p {
  margin-bottom: 0;
  color: var(--muted);
}

.case-next a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--mythril);
  font-family: var(--display);
  font-size: 1.4rem;
}

.legal-hero {
  padding-bottom: 80px;
}

.legal-hero h1 {
  max-width: 900px;
  font-size: clamp(4rem, 8vw, 8rem);
}

.legal-hero > .shell > p:last-child {
  max-width: 740px;
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: 1.12rem;
}

.legal-content {
  display: grid;
  grid-template-columns: 240px minmax(0, 760px);
  gap: clamp(50px, 10vw, 150px);
  padding: 90px 0 130px;
}

.legal-toc {
  position: sticky;
  top: 130px;
  align-self: start;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.06em;
}

.legal-toc p {
  margin-bottom: 10px;
  color: var(--mythril);
}

.legal-copy section {
  padding: 0 0 42px;
  margin-bottom: 42px;
  border-bottom: 1px solid var(--line);
}

.legal-copy h2 {
  margin-bottom: 18px;
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 450;
  letter-spacing: -0.035em;
}

.legal-copy h3 {
  margin: 28px 0 10px;
  font-size: 1rem;
}

.legal-copy p,
.legal-copy li {
  color: var(--text-soft);
}

.legal-copy a {
  color: var(--mythril);
  text-decoration: underline;
  text-decoration-color: rgba(191, 232, 227, 0.35);
  text-underline-offset: 4px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(380px, 0.55fr);
  gap: clamp(60px, 10vw, 150px);
  padding: 100px 0 140px;
}

.contact-intro h2 {
  max-width: 720px;
  margin-bottom: 28px;
  font-family: var(--display);
  font-size: clamp(3rem, 5.6vw, 6rem);
  font-weight: 430;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.contact-intro > p {
  max-width: 670px;
  color: var(--text-soft);
  line-height: 1.85;
}

.contact-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 42px;
}

.contact-types article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.contact-types span {
  color: var(--mythril);
  font-family: var(--mono);
  font-size: 0.52rem;
}

.contact-types h3 {
  margin: 10px 0 0;
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 450;
}

.contact-card {
  align-self: start;
  padding: 34px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.contact-card > span {
  color: var(--mythril);
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.1em;
}

.contact-card h2 {
  margin: 15px 0 12px;
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 440;
  letter-spacing: -0.04em;
}

.contact-card p {
  color: var(--muted);
  font-size: 0.85rem;
}

.contact-address {
  display: block;
  padding: 17px 0;
  margin: 26px 0 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--mythril-bright);
  font-family: var(--mono);
  font-size: 0.78rem;
  word-break: break-word;
}

.contact-card .button {
  width: 100%;
}

.contact-note {
  margin-top: 14px;
  color: #7b8784;
  font-size: 0.7rem;
}

.error-shell {
  display: flex;
  width: min(760px, calc(100vw - 48px));
  min-height: 100svh;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-inline: auto;
}

.brand-large {
  margin-bottom: 70px;
}

.error-code {
  color: var(--mythril);
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
}

.error-shell h1 {
  margin-bottom: 20px;
  font-family: var(--display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 430;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.error-shell > p:not(.error-code) {
  margin-bottom: 32px;
  color: var(--muted);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 700ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 1100px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 840px;
  }

  .constellation {
    width: min(82vw, 580px);
    margin: 20px auto 60px;
  }

  .flagship-card {
    grid-template-columns: 1fr;
  }

  .hoplon-visual {
    transform: none;
  }

  .fabric-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .fabric-copy {
    min-width: 0;
  }

  .company-card {
    grid-template-columns: 80px 1fr;
  }

  .company-copy {
    grid-column: 2;
    padding-top: 0;
  }
}

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 36px, 1240px);
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #0c0f14;
    box-shadow: var(--shadow);
  }

  .site-nav[data-open="true"] {
    display: flex;
  }

  .site-nav a {
    min-height: 48px;
    padding: 14px;
  }

  .site-nav .nav-action {
    margin-top: 6px;
    text-align: center;
  }

  .section-heading,
  .thesis-layout,
  .case-hero-grid,
  .case-section-grid,
  .legal-content,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 28px;
  }

  .section-heading > p {
    max-width: 650px;
  }

  .thesis-statement,
  .legal-toc {
    position: static;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 0;
  }

  .gate-track {
    grid-template-columns: 1fr;
  }

  .gate-track::before {
    top: 0;
    right: auto;
    bottom: 0;
    left: 6px;
    width: 1px;
    height: auto;
  }

  .gate-track article,
  .gate-track article + article {
    padding: 12px 0 42px 42px;
    border-left: 0;
  }

  .gate-track article .gate-dot,
  .gate-track article + article .gate-dot {
    top: 7px;
    left: 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-main nav {
    flex-wrap: wrap;
  }

  .case-section-grid {
    gap: 24px;
  }

  .contact-layout,
  .legal-content {
    gap: 60px;
  }
}

@media (max-width: 680px) {
  :root {
    --shell: min(100% - 28px, 1240px);
  }

  .header-inner {
    min-height: 70px;
  }

  .brand {
    font-size: 0.74rem;
  }

  .hero-layout {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .hero h1 {
    font-size: clamp(3.65rem, 18vw, 5.6rem);
  }

  .hero-lede {
    font-size: 0.98rem;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .card-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    width: 100%;
  }

  .card-actions .button,
  .card-actions .text-link {
    width: 100%;
    justify-content: space-between;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-proof div {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 15px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-proof div + div {
    padding-left: 0;
    border-left: 0;
  }

  .hero-proof dt {
    font-size: 1.5rem;
  }

  .hero-proof dd {
    max-width: none;
    margin: 0;
  }

  .constellation {
    width: min(100%, 420px);
    aspect-ratio: auto;
    min-height: 500px;
    margin: 20px auto;
    border-radius: 38px;
  }

  .constellation::before {
    inset: 18%;
  }

  .constellation::after {
    inset: 34%;
  }

  .constellation-center {
    width: 135px;
  }

  .product-node {
    min-width: 110px;
  }

  .node-hoplon { top: 3%; left: 30%; }
  .node-owd { top: 19%; right: 2%; }
  .node-readiness { right: 2%; bottom: 10%; }
  .node-goalie { bottom: 2%; left: 2%; }
  .node-chamba { top: 19%; left: 1%; }

  .hero-foot {
    display: none;
  }

  .signal-track {
    justify-content: flex-start;
    animation: ticker 28s linear infinite;
  }

  .section {
    padding: 86px 0;
  }

  .section-heading h2,
  .thesis-statement h2,
  .company-card h2,
  .closing-inner h2 {
    font-size: clamp(3.1rem, 15vw, 5rem);
  }

  .flagship-card {
    padding: 24px;
    border-radius: 20px;
  }

  .card-topline {
    align-items: flex-start;
    margin-bottom: 32px;
  }

  .status {
    max-width: calc(100% - 42px);
    padding: 5px 8px;
    border-radius: 8px;
    font-size: 0.6rem;
    line-height: 1.35;
  }

  .card-index {
    font-size: 0.62rem;
  }

  .flagship-copy h3,
  .product-card h3 {
    font-size: 2.5rem;
  }

  .visual-body {
    grid-template-columns: 1fr;
  }

  .visual-body > aside {
    display: none;
  }

  .compare-panel {
    min-height: 350px;
    padding: 20px;
  }

  .model-row {
    grid-template-columns: 1fr;
  }

  .model-row article {
    padding: 12px;
  }

  .model-row article small {
    margin-top: 10px;
  }

  .tech-ribbon {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
  }

  .tech-ribbon span {
    min-width: 0;
    font-size: 0.58rem;
  }

  .product-card {
    padding: 24px;
  }

  .project-glyph {
    min-height: 100px;
  }

  .glyph-owd {
    gap: 4px;
    justify-content: space-between;
  }

  .glyph-owd span {
    padding: 8px 7px;
    font-size: 0.48rem;
  }

  .glyph-owd i {
    display: none;
  }

  .glyph-readiness span {
    width: 62px;
    font-size: 0.48rem;
  }

  .now-line {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .card-footer {
    gap: 18px;
    align-items: center;
    font-size: 0.62rem;
    line-height: 1.5;
  }

  .card-footer > span {
    min-width: 0;
  }

  .principle-list li {
    grid-template-columns: 38px 1fr;
  }

  .fabric-core {
    width: min(100%, 420px);
    min-height: 0;
    aspect-ratio: 1;
  }

  .fabric-center {
    width: 130px;
  }

  .fabric-node {
    font-size: 0.54rem;
  }

  .fabric-workers {
    top: 2%;
    left: 50%;
    transform: translateX(-50%);
  }

  .fabric-data {
    top: 18%;
    right: 0;
  }

  .fabric-state {
    right: 0;
    bottom: 18%;
  }

  .fabric-jobs {
    right: 50%;
    bottom: 0;
    transform: translateX(50%);
  }

  .fabric-ai {
    bottom: 18%;
    left: 0;
  }

  .fabric-security {
    top: 18%;
    left: 0;
  }

  .service-ledger {
    justify-content: flex-start;
  }

  .company-card {
    grid-template-columns: 1fr;
    padding: 28px;
    border-radius: 20px;
  }

  .company-copy {
    grid-column: 1;
  }

  .closing-section {
    min-height: 650px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .footer-main nav {
    gap: 4px 16px;
  }

  .case-hero,
  .legal-hero {
    padding-top: 75px;
  }

  .case-hero h1,
  .legal-hero h1 {
    font-size: clamp(3.5rem, 17vw, 6rem);
  }

  .case-points,
  .boundary-card {
    grid-template-columns: 1fr;
  }

  .boundary-card > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .case-next {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }

  .contact-types {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 26px;
  }

  .legal-content {
    padding-top: 60px;
  }
}

@media (min-width: 380px) and (max-width: 680px) {
  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .hero-actions .button {
    width: auto;
    min-width: 0;
    gap: 10px;
    padding-inline: 14px;
    white-space: nowrap;
  }
}

@media (max-width: 360px) {
  .case-meta {
    padding: 20px;
  }

  .case-meta div {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 12px;
  }
}

@keyframes ticker {
  to { transform: translateX(-38%); }
}

@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;
  }

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

  .hero-mesh {
    opacity: 0.58;
  }
}

@media (hover: none), (pointer: coarse) {
  .hero-mesh {
    opacity: 0.58;
  }

  .button:hover,
  .product-card:hover,
  .product-node:hover {
    transform: none;
  }

  .product-card:hover {
    border-color: var(--line);
    background: var(--panel);
  }
}

@media (forced-colors: active) {
  .hero-mesh {
    display: none;
  }

  .status,
  .button,
  .product-card,
  .flagship-card,
  .case-meta,
  .contact-card {
    border: 1px solid CanvasText;
  }
}
