:root {
  color-scheme: dark;
  --black: #030407;
  --carbon: #070a10;
  --carbon-2: #0c111a;
  --surface: rgba(246, 241, 226, 0.075);
  --surface-2: rgba(246, 241, 226, 0.12);
  --paper: #f8f0dc;
  --paper-soft: rgba(248, 240, 220, 0.72);
  --muted: #969da9;
  --muted-2: #646d7b;
  --line: rgba(248, 240, 220, 0.14);
  --line-strong: rgba(248, 240, 220, 0.26);
  --gold: #e5b95e;
  --saffron: #d77c38;
  --aqua: #70f0df;
  --blue: #75b6ff;
  --rose: #ff7d8f;
  --green: #77e69f;
  --shadow: 0 34px 120px rgba(0, 0, 0, 0.42);
  --soft-shadow: 0 20px 70px rgba(0, 0, 0, 0.34);
  --max: 1220px;
  --header: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    linear-gradient(90deg, rgba(248, 240, 220, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(248, 240, 220, 0.026) 1px, transparent 1px),
    linear-gradient(180deg, #030407 0%, #080b12 48%, #0a1018 100%);
  background-size: 72px 72px, 72px 72px, auto;
  color: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.55;
  margin: 0;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
}

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

.skip-link {
  background: var(--paper);
  color: var(--black);
  left: 16px;
  padding: 10px 14px;
  position: fixed;
  top: 10px;
  transform: translateY(-140%);
  z-index: 100;
}

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

.site-header {
  align-items: center;
  backdrop-filter: blur(22px);
  background:
    linear-gradient(90deg, rgba(3, 4, 7, 0.94), rgba(8, 12, 18, 0.82)),
    rgba(3, 4, 7, 0.86);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.26);
  display: grid;
  gap: 20px;
  grid-template-columns: auto 1fr auto;
  left: 0;
  min-height: var(--header);
  padding: 12px 28px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 50;
}

.site-header.is-scrolled {
  background: rgba(3, 4, 7, 0.94);
  border-color: rgba(112, 240, 223, 0.24);
}

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

.brand-mark {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(112, 240, 223, 0.16), rgba(229, 185, 94, 0.14)),
    rgba(248, 240, 220, 0.05);
  border: 1px solid rgba(229, 185, 94, 0.62);
  border-radius: 8px;
  color: var(--gold);
  display: inline-flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.16rem;
  font-weight: 700;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--paper);
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.75rem;
}

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

.nav a,
.header-link,
.site-footer nav a {
  color: rgba(248, 240, 220, 0.73);
  font-size: 0.92rem;
  font-weight: 760;
}

.nav a {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 8px 2px;
}

.nav a:hover,
.header-link:hover,
.site-footer nav a:hover {
  color: var(--aqua);
}

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

.menu-toggle {
  align-items: center;
  background: rgba(248, 240, 220, 0.04);
  border: 1px solid var(--line-strong);
  cursor: pointer;
  display: none;
  height: 42px;
  justify-content: center;
  padding: 0;
  position: relative;
  width: 46px;
}

.menu-toggle span {
  background: var(--paper);
  display: block;
  height: 2px;
  position: absolute;
  transition: transform 160ms ease;
  width: 18px;
}

.menu-toggle span:first-child {
  transform: translateY(-5px);
}

.menu-toggle span:last-child {
  transform: translateY(5px);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 850;
  justify-content: center;
  min-height: 52px;
  padding: 13px 20px;
  text-align: center;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

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

.button.primary {
  background: linear-gradient(135deg, #f0c66c, #d77c38);
  color: #0f0904;
}

.button.secondary,
.button.ghost {
  background: rgba(248, 240, 220, 0.045);
  border-color: var(--line-strong);
  color: var(--paper);
}

.button.small {
  font-size: 0.9rem;
  min-height: 42px;
  padding: 10px 15px;
}

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

h1,
h2 {
  color: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-weight: 860;
  letter-spacing: 0;
  line-height: 0.92;
}

h1 {
  font-size: 6.9rem;
  margin-bottom: 16px;
}

h2 {
  font-size: 4.4rem;
  margin-bottom: 18px;
  max-width: 980px;
}

h3 {
  color: var(--paper);
  font-size: 1.05rem;
  letter-spacing: 0;
  line-height: 1.25;
  margin-bottom: 10px;
}

p {
  color: var(--paper-soft);
}

.eyebrow {
  color: var(--aqua);
  font-size: 0.76rem;
  font-weight: 920;
  letter-spacing: 0;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.hero-os {
  display: flex;
  align-items: center;
  isolation: isolate;
  min-height: 94svh;
  overflow: hidden;
  padding: 126px 28px 64px;
  position: relative;
}

#signalCanvas,
.hero-art,
.hero-grid {
  inset: 0;
  position: absolute;
}

.hero-art {
  filter: saturate(1.04) contrast(1.08);
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center right;
  width: 100%;
  z-index: -4;
}

#signalCanvas {
  height: 100%;
  mix-blend-mode: screen;
  opacity: 0.16;
  width: 100%;
  z-index: -3;
}

.hero-grid {
  background:
    radial-gradient(circle at 78% 42%, rgba(112, 240, 223, 0.1), transparent 34%),
    linear-gradient(90deg, rgba(3, 4, 7, 0.99) 0%, rgba(3, 4, 7, 0.93) 31%, rgba(3, 4, 7, 0.62) 55%, rgba(3, 4, 7, 0.14) 100%),
    linear-gradient(180deg, rgba(3, 4, 7, 0.14) 0%, rgba(3, 4, 7, 0.22) 56%, rgba(3, 4, 7, 0.98) 100%);
  z-index: -2;
}

.system-visual {
  inset: 110px 24px 46px 44%;
  opacity: 0.96;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.system-chrome {
  align-items: center;
  background: rgba(12, 17, 26, 0.8);
  border: 1px solid var(--line);
  color: var(--muted);
  display: grid;
  font-size: 0.78rem;
  font-weight: 780;
  gap: 1px;
  grid-template-columns: 1fr auto auto;
  min-height: 42px;
}

.system-chrome span {
  border-right: 1px solid var(--line);
  padding: 12px 16px;
}

.system-chrome span:last-child {
  border-right: 0;
  color: var(--aqua);
}

.system-shell {
  background:
    linear-gradient(135deg, rgba(248, 240, 220, 0.12), rgba(112, 240, 223, 0.04)),
    rgba(6, 10, 16, 0.84);
  border: 1px solid rgba(112, 240, 223, 0.22);
  box-shadow: var(--shadow);
  display: grid;
  gap: 1px;
  grid-template-columns: 118px minmax(0, 1fr) 270px;
  min-height: 600px;
}

.system-rail,
.system-panel,
.system-core {
  background: rgba(6, 9, 14, 0.72);
}

.system-rail {
  display: grid;
  gap: 14px;
  grid-auto-rows: min-content;
  padding: 22px 14px;
}

.system-rail span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 820;
}

.rail-dot {
  background: var(--aqua);
  box-shadow: 0 0 28px rgba(112, 240, 223, 0.7);
  display: block;
  height: 9px;
  width: 9px;
}

.system-core {
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 24px;
  position: relative;
}

.intent-terminal {
  background: rgba(3, 4, 7, 0.72);
  border: 1px solid rgba(248, 240, 220, 0.18);
  max-width: 560px;
  padding: 22px;
}

.intent-terminal span,
.system-panel span,
.os-layers span,
.employee-board span,
.workflow-console span,
.signal-band span {
  color: var(--gold);
  display: block;
  font-size: 0.74rem;
  font-weight: 920;
  text-transform: uppercase;
}

.intent-terminal strong {
  color: var(--paper);
  display: block;
  font-size: 1.55rem;
  margin: 7px 0 9px;
}

.intent-terminal p {
  margin-bottom: 0;
  max-width: 520px;
}

.agent-map {
  min-height: 305px;
  position: relative;
}

.agent-map::before {
  border: 1px solid rgba(112, 240, 223, 0.18);
  content: "";
  height: 220px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 220px;
}

.agent-map i {
  background: linear-gradient(90deg, transparent, rgba(112, 240, 223, 0.28), transparent);
  height: 1px;
  left: 12%;
  position: absolute;
  right: 12%;
  top: 50%;
}

.agent-map i:nth-of-type(2) {
  transform: rotate(60deg);
}

.agent-map i:nth-of-type(3) {
  transform: rotate(-60deg);
}

.node {
  background: rgba(248, 240, 220, 0.07);
  border: 1px solid rgba(248, 240, 220, 0.18);
  color: var(--paper);
  font-size: 0.75rem;
  font-weight: 820;
  padding: 9px 11px;
  position: absolute;
  white-space: nowrap;
}

.node-orchestrator {
  background: rgba(112, 240, 223, 0.14);
  border-color: rgba(112, 240, 223, 0.42);
  left: 50%;
  top: 44%;
  transform: translate(-50%, -50%);
}

.node-product { left: 8%; top: 12%; }
.node-architecture { right: 8%; top: 18%; }
.node-ai { left: 16%; bottom: 20%; }
.node-backend { right: 15%; bottom: 15%; }
.node-frontend { left: 42%; bottom: 4%; }
.node-security { left: 46%; top: 6%; }
.node-qa { right: 4%; top: 50%; }

.execution-lane {
  border-top: 1px solid rgba(248, 240, 220, 0.16);
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding-top: 16px;
}

.execution-lane span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 820;
  text-align: center;
}

.system-panel {
  border-left: 1px solid var(--line);
  padding: 24px;
}

.system-panel strong {
  color: var(--paper);
  display: block;
  font-size: 1.4rem;
  line-height: 1.12;
  margin: 10px 0 22px;
}

.system-panel ul {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.system-panel li {
  border-left: 2px solid var(--rose);
  color: var(--paper-soft);
  font-size: 0.9rem;
  padding-left: 10px;
}

.hero-copy {
  max-width: 920px;
  position: relative;
  z-index: 2;
}

.hero-statement {
  color: var(--paper);
  font-size: 1.34rem;
  font-weight: 760;
  line-height: 1.26;
  margin-bottom: 16px;
  max-width: 780px;
}

.hero-subcopy {
  font-size: 1.04rem;
  max-width: 760px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 22px;
}

.hero-pathfinder {
  backdrop-filter: blur(18px);
  background:
    linear-gradient(145deg, rgba(248, 240, 220, 0.13), rgba(248, 240, 220, 0.045)),
    rgba(4, 7, 12, 0.78);
  border: 1px solid rgba(112, 240, 223, 0.28);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  display: grid;
  gap: 14px;
  margin: 18px 0;
  max-width: 940px;
  padding: 16px;
}

.pathfinder-top {
  align-items: start;
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.pathfinder-top span,
.path-button span {
  color: var(--aqua);
  display: block;
  font-size: 0.7rem;
  font-weight: 920;
  line-height: 1.2;
  text-transform: uppercase;
}

.pathfinder-top strong {
  color: var(--paper);
  display: block;
  font-size: 1.1rem;
  line-height: 1.2;
  margin-top: 4px;
}

.pathfinder-top p {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 760;
  margin: 0;
  max-width: 300px;
  text-align: right;
}

.pathfinder-options {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.path-button {
  background: rgba(3, 4, 7, 0.52);
  border: 1px solid rgba(248, 240, 220, 0.16);
  border-radius: 6px;
  color: inherit;
  cursor: pointer;
  display: grid;
  gap: 7px;
  grid-column: span 2;
  min-height: 104px;
  padding: 13px;
  text-align: left;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.path-button:hover,
.path-button:focus-visible {
  background: rgba(112, 240, 223, 0.11);
  border-color: rgba(112, 240, 223, 0.44);
  outline: 0;
  transform: translateY(-2px);
}

.path-button.accent {
  border-color: rgba(229, 185, 94, 0.42);
}

.path-button strong {
  color: var(--paper);
  display: block;
  font-size: 1rem;
  line-height: 1.12;
}

.path-button small {
  color: var(--paper-soft);
  display: block;
  font-size: 0.78rem;
  line-height: 1.32;
}

.pathfinder-steps {
  border-top: 1px solid rgba(248, 240, 220, 0.12);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-top: 12px;
}

.pathfinder-steps span {
  color: rgba(248, 240, 220, 0.76);
  font-size: 0.83rem;
  font-weight: 780;
}

.pathfinder-steps strong {
  align-items: center;
  background: rgba(112, 240, 223, 0.12);
  border: 1px solid rgba(112, 240, 223, 0.28);
  border-radius: 999px;
  color: var(--aqua);
  display: inline-flex;
  font-size: 0.74rem;
  height: 22px;
  justify-content: center;
  margin-right: 8px;
  width: 22px;
}

.hero-proof {
  border-left: 2px solid var(--aqua);
  color: rgba(248, 240, 220, 0.74);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 17px;
  padding-left: 14px;
}

.hero-proof span {
  font-size: 0.9rem;
  font-weight: 780;
}

.hero-route-bar {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 24px;
  max-width: 690px;
}

.hero-route-bar a {
  background: rgba(3, 4, 7, 0.52);
  border: 1px solid rgba(248, 240, 220, 0.18);
  border-radius: 6px;
  min-height: 82px;
  padding: 14px;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.hero-route-bar a:hover {
  background: rgba(112, 240, 223, 0.11);
  border-color: rgba(112, 240, 223, 0.38);
  transform: translateY(-2px);
}

.hero-route-bar span {
  color: var(--aqua);
  display: block;
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.hero-route-bar strong {
  color: var(--paper);
  display: block;
  font-size: 0.98rem;
  line-height: 1.18;
}

.signal-band {
  background:
    linear-gradient(90deg, #f9f1dd, #efe4c8);
  color: #10131a;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.signal-band article {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(3, 4, 7, 0.035));
  border-right: 1px solid rgba(16, 19, 26, 0.09);
  min-height: 176px;
  padding: 28px;
}

.signal-band strong {
  color: #0f1116;
  display: block;
  font-size: 1.08rem;
  margin: 16px 0 8px;
}

.signal-band p {
  color: #333945;
  margin-bottom: 0;
}

.visual-showcase-section {
  background:
    linear-gradient(180deg, #080c13, #060910);
}

.visual-showcase-section .section-kicker {
  margin-bottom: 30px;
}

.visual-showcase-section .section-kicker h2 {
  font-size: 3.25rem;
  max-width: 760px;
}

.visual-showcase-grid,
.service-image-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: var(--max);
}

.visual-card,
.service-image-card {
  background:
    linear-gradient(145deg, rgba(248, 240, 220, 0.1), rgba(248, 240, 220, 0.035)),
    rgba(8, 12, 18, 0.82);
  border: 1px solid rgba(112, 240, 223, 0.2);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  display: grid;
  min-width: 0;
  overflow: hidden;
  transition:
    border-color 160ms ease,
    transform 160ms ease,
    background 160ms ease;
}

.visual-card:hover,
.service-image-card:hover {
  background:
    linear-gradient(145deg, rgba(112, 240, 223, 0.1), rgba(248, 240, 220, 0.045)),
    rgba(8, 12, 18, 0.94);
  border-color: rgba(112, 240, 223, 0.44);
  transform: translateY(-3px);
}

.visual-card.accent {
  border-color: rgba(229, 185, 94, 0.38);
}

.visual-card img,
.service-image-card img {
  aspect-ratio: 16 / 10;
  border-bottom: 1px solid rgba(248, 240, 220, 0.12);
  height: auto;
  object-fit: cover;
  width: 100%;
}

.visual-card div {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.visual-card span,
.service-image-card span {
  color: var(--aqua);
  display: block;
  font-size: 0.72rem;
  font-weight: 920;
  line-height: 1.2;
  text-transform: uppercase;
}

.visual-card h3 {
  font-size: 1.22rem;
  margin: 0;
}

.visual-card p {
  margin-bottom: 0;
}

.visual-card a {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 860;
  margin-top: 4px;
}

.service-image-grid {
  margin-bottom: 18px;
}

.service-image-card {
  color: inherit;
  gap: 12px;
  padding-bottom: 18px;
}

.service-image-card span,
.service-image-card strong {
  margin-left: 18px;
  margin-right: 18px;
}

.service-image-card strong {
  color: var(--paper);
  display: block;
  font-size: 1.02rem;
  line-height: 1.24;
}

.order-desk-section {
  background:
    radial-gradient(circle at 18% 16%, rgba(112, 240, 223, 0.11), transparent 30%),
    linear-gradient(180deg, #060910, #0c111a);
}

.order-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  max-width: var(--max);
}

.order-card {
  background:
    linear-gradient(145deg, rgba(248, 240, 220, 0.105), rgba(248, 240, 220, 0.035)),
    rgba(8, 12, 18, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: inherit;
  cursor: pointer;
  display: grid;
  gap: 16px;
  grid-template-rows: auto auto 1fr;
  min-height: 218px;
  padding: 22px;
  text-align: left;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.order-card:hover,
.order-card:focus-visible {
  background:
    linear-gradient(145deg, rgba(112, 240, 223, 0.12), rgba(248, 240, 220, 0.045)),
    rgba(8, 12, 18, 0.92);
  border-color: rgba(112, 240, 223, 0.42);
  outline: 0;
  transform: translateY(-3px);
}

.order-card.accent {
  border-color: rgba(229, 185, 94, 0.42);
}

.order-card span {
  color: var(--aqua);
  display: block;
  font-size: 0.74rem;
  font-weight: 920;
  line-height: 1.25;
  text-transform: uppercase;
}

.order-card strong {
  color: var(--paper);
  display: block;
  font-size: 1.18rem;
  line-height: 1.2;
  margin: 0;
}

.order-card small {
  align-self: start;
  color: var(--paper-soft);
  font-size: 0.92rem;
  line-height: 1.45;
}

.order-trust {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 18px auto 0;
  max-width: var(--max);
}

.order-trust span {
  background: rgba(248, 240, 220, 0.075);
  border: 1px solid var(--line);
  color: var(--paper);
  font-size: 0.88rem;
  font-weight: 820;
  padding: 16px;
}

.advanced-proof-section {
  background:
    linear-gradient(180deg, #f7efd9, #e8d4aa);
  color: #10131a;
}

.advanced-proof-section h2,
.advanced-proof-section p:not(.eyebrow) {
  color: #10131a;
}

.advanced-proof-section .eyebrow {
  color: #a95524;
}

.proof-ladder {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  max-width: var(--max);
}

.proof-ladder article {
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(16, 19, 26, 0.13);
  border-radius: 8px;
  display: grid;
  min-height: 284px;
  padding: 24px;
}

.proof-ladder span {
  color: #a95524;
  display: block;
  font-size: 0.74rem;
  font-weight: 920;
  text-transform: uppercase;
}

.proof-ladder h3 {
  color: #10131a;
  font-size: 1.18rem;
  line-height: 1.2;
  margin-top: 44px;
}

.proof-ladder p {
  color: #343944;
  margin-bottom: 0;
}

.order-assistant {
  bottom: 22px;
  position: fixed;
  right: 22px;
  z-index: 80;
}

.assistant-launcher {
  align-items: center;
  background:
    linear-gradient(135deg, #f0c66c, #d77c38);
  border: 0;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.48);
  color: #100903;
  cursor: pointer;
  display: inline-flex;
  gap: 12px;
  min-height: 58px;
  padding: 12px 18px;
}

.assistant-launcher span {
  align-items: center;
  background: rgba(3, 4, 7, 0.16);
  border: 1px solid rgba(3, 4, 7, 0.24);
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 920;
  height: 34px;
  justify-content: center;
  text-transform: uppercase;
  width: 34px;
}

.assistant-launcher strong {
  display: block;
  font-size: 0.96rem;
}

.assistant-launcher[aria-expanded="true"] {
  display: none;
}

.assistant-panel {
  background:
    linear-gradient(145deg, rgba(248, 240, 220, 0.105), rgba(248, 240, 220, 0.04)),
    rgba(7, 10, 16, 0.98);
  border: 1px solid rgba(112, 240, 223, 0.3);
  bottom: 74px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
  max-height: min(720px, calc(100vh - 110px));
  padding: 16px;
  position: absolute;
  right: 0;
  width: min(420px, calc(100vw - 36px));
}

.assistant-panel[aria-hidden="true"] {
  display: none;
}

.assistant-panel header {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 14px;
  justify-content: space-between;
  padding-bottom: 12px;
}

.assistant-panel header span,
.assistant-message span {
  color: var(--gold);
  display: block;
  font-size: 0.7rem;
  font-weight: 920;
  text-transform: uppercase;
}

.assistant-panel header strong {
  color: var(--paper);
  display: block;
  line-height: 1.2;
}

.assistant-panel header button {
  background: rgba(248, 240, 220, 0.045);
  border: 1px solid var(--line);
  color: var(--paper);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 820;
  padding: 8px 10px;
}

.assistant-messages {
  display: grid;
  gap: 10px;
  max-height: 310px;
  overflow-y: auto;
  padding-right: 4px;
}

.assistant-message {
  border: 1px solid var(--line);
  padding: 12px;
}

.assistant-message.bot {
  background: rgba(112, 240, 223, 0.08);
}

.assistant-message.user {
  background: rgba(248, 240, 220, 0.08);
}

.assistant-message p {
  color: var(--paper);
  font-size: 0.92rem;
  margin: 7px 0 0;
  white-space: pre-wrap;
}

.assistant-actions {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.assistant-actions .button {
  min-height: 44px;
  padding: 10px 12px;
}

.assistant-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.assistant-quick button {
  background: rgba(248, 240, 220, 0.045);
  border: 1px solid var(--line);
  color: var(--paper);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 820;
  padding: 9px 10px;
}

.assistant-quick button:hover,
.assistant-quick button:focus-visible,
.assistant-panel header button:hover,
.assistant-panel header button:focus-visible {
  border-color: rgba(112, 240, 223, 0.42);
  color: var(--aqua);
  outline: 0;
}

.assistant-form {
  display: grid;
  gap: 10px;
}

.assistant-form label span {
  color: var(--paper);
  font-size: 0.86rem;
}

.assistant-form textarea {
  min-height: 72px;
}

.assistant-form .button {
  min-height: 46px;
}

.assistant-note {
  color: var(--muted);
  font-size: 0.78rem;
  margin: 0;
}

.section {
  padding: 108px 28px;
}

.section-kicker {
  margin: 0 auto 42px;
  max-width: 860px;
}

.section-kicker.wide {
  max-width: var(--max);
}

.section-kicker.center {
  text-align: center;
}

.section-kicker p:not(.eyebrow) {
  max-width: 820px;
}

.section-kicker.center p:not(.eyebrow) {
  margin-left: auto;
  margin-right: auto;
}

.system-section {
  background:
    linear-gradient(180deg, rgba(10, 16, 24, 0.72), rgba(3, 4, 7, 0.94)),
    var(--carbon);
}

.client-machine-section {
  background:
    linear-gradient(180deg, #070a10, #0b1018),
    var(--carbon);
}

.machine-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  max-width: var(--max);
}

.machine-grid article {
  background:
    linear-gradient(145deg, rgba(248, 240, 220, 0.105), rgba(248, 240, 220, 0.035)),
    rgba(8, 12, 18, 0.82);
  border: 1px solid var(--line);
  display: grid;
  min-height: 305px;
  padding: 24px;
}

.machine-grid span,
.machine-cta span {
  color: var(--gold);
  display: block;
  font-size: 0.74rem;
  font-weight: 920;
  text-transform: uppercase;
}

.machine-grid h3 {
  font-size: 1.25rem;
  margin-top: 48px;
}

.machine-grid p {
  margin-bottom: 18px;
}

.machine-grid a {
  align-self: end;
  color: var(--aqua);
  font-size: 0.9rem;
  font-weight: 850;
}

.machine-cta {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(112, 240, 223, 0.13), rgba(229, 185, 94, 0.1)),
    rgba(3, 4, 7, 0.68);
  border: 1px solid rgba(112, 240, 223, 0.28);
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin: 18px auto 0;
  max-width: var(--max);
  padding: 28px;
}

.machine-cta h3 {
  font-size: 1.65rem;
  margin: 10px 0 0;
  max-width: 760px;
}

.machine-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.intent-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(112, 240, 223, 0.09), transparent 28%),
    linear-gradient(180deg, #080b12, #06080e);
}

.intent-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  max-width: var(--max);
}

.intent-grid a {
  background:
    linear-gradient(145deg, rgba(248, 240, 220, 0.105), rgba(248, 240, 220, 0.035)),
    rgba(8, 12, 18, 0.8);
  border: 1px solid var(--line);
  min-height: 250px;
  padding: 24px;
  transition:
    border-color 160ms ease,
    transform 160ms ease,
    background 160ms ease;
}

.intent-grid a:hover {
  background:
    linear-gradient(145deg, rgba(248, 240, 220, 0.14), rgba(248, 240, 220, 0.05)),
    rgba(8, 12, 18, 0.9);
  border-color: rgba(112, 240, 223, 0.4);
  transform: translateY(-3px);
}

.intent-grid span {
  color: var(--aqua);
  display: block;
  font-size: 0.74rem;
  font-weight: 920;
  margin-bottom: 54px;
  text-transform: uppercase;
}

.plain-service-grid,
.depth-grid {
  display: grid;
  gap: 14px;
  margin: 0 auto;
  max-width: var(--max);
}

.plain-service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.plain-service-grid a {
  background:
    linear-gradient(145deg, rgba(248, 240, 220, 0.11), rgba(248, 240, 220, 0.04)),
    rgba(8, 12, 18, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  grid-template-rows: auto auto 1fr auto;
  min-height: 286px;
  padding: 24px;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.plain-service-grid a:hover {
  background:
    linear-gradient(145deg, rgba(112, 240, 223, 0.12), rgba(248, 240, 220, 0.05)),
    rgba(8, 12, 18, 0.93);
  border-color: rgba(112, 240, 223, 0.4);
  transform: translateY(-3px);
}

.plain-service-grid span,
.depth-grid span {
  color: var(--aqua);
  display: block;
  font-size: 0.74rem;
  font-weight: 920;
  text-transform: uppercase;
}

.plain-service-grid h3 {
  font-size: 1.35rem;
  line-height: 1.16;
  margin: 24px 0 0;
}

.plain-service-grid p {
  margin-bottom: 0;
}

.plain-service-grid p strong {
  color: var(--paper);
}

.plain-service-grid small {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 760;
  line-height: 1.4;
}

.advanced-depth-section {
  background:
    linear-gradient(180deg, #f7efd9, #ead7ae);
  color: #10131a;
}

.advanced-depth-section h2,
.advanced-depth-section p:not(.eyebrow) {
  color: #10131a;
}

.advanced-depth-section .eyebrow {
  color: #a95524;
}

.depth-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.depth-grid article {
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(16, 19, 26, 0.13);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  grid-template-rows: auto auto 1fr;
  min-height: 272px;
  padding: 24px;
}

.depth-grid span {
  color: #a95524;
}

.depth-grid h3 {
  color: #10131a;
  font-size: 1.22rem;
  line-height: 1.18;
  margin: 34px 0 0;
}

.depth-grid p {
  color: #343944;
  margin-bottom: 0;
}

.feature-console-section {
  background:
    linear-gradient(120deg, rgba(229, 185, 94, 0.09), transparent 36%),
    radial-gradient(circle at 86% 18%, rgba(112, 240, 223, 0.1), transparent 28%),
    #070a10;
}

.feature-console {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
  margin: 0 auto;
  max-width: var(--max);
}

.console-form,
.console-output {
  background:
    linear-gradient(145deg, rgba(248, 240, 220, 0.11), rgba(248, 240, 220, 0.035)),
    rgba(8, 12, 18, 0.88);
  border: 1px solid rgba(112, 240, 223, 0.22);
  box-shadow: var(--shadow);
  min-width: 0;
  padding: 24px;
}

.console-form {
  display: grid;
  gap: 20px;
}

.console-group {
  display: grid;
  gap: 12px;
}

.console-label,
.score-panel span,
.recommendation-panel span,
.decision-strip span,
.packet-panel span,
.output-grid span,
.plan-panel span {
  color: var(--gold);
  display: block;
  font-size: 0.74rem;
  font-weight: 920;
  text-transform: uppercase;
}

.option-grid,
.check-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.option-grid label,
.check-grid label {
  align-items: center;
  background: rgba(3, 4, 7, 0.48);
  border: 1px solid var(--line);
  cursor: pointer;
  display: flex;
  flex-direction: row;
  gap: 10px;
  min-height: 50px;
  padding: 12px;
}

.option-grid input,
.check-grid input {
  accent-color: var(--aqua);
  min-height: auto;
}

.option-grid label:has(input:checked),
.check-grid label:has(input:checked) {
  background: rgba(112, 240, 223, 0.12);
  border-color: rgba(112, 240, 223, 0.42);
}

.console-row {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.range-readout {
  color: var(--aqua);
  font-size: 0.86rem;
  font-weight: 780;
}

input[type="range"] {
  accent-color: var(--aqua);
  padding: 0;
}

.console-output {
  display: grid;
  gap: 14px;
}

.score-panel,
.recommendation-panel,
.output-grid article,
.plan-panel {
  background: rgba(3, 4, 7, 0.5);
  border: 1px solid var(--line);
  padding: 20px;
}

.score-panel {
  display: grid;
  gap: 12px;
}

.score-panel strong {
  color: var(--paper);
  font-size: 4rem;
  line-height: 0.9;
}

.score-track {
  background: rgba(248, 240, 220, 0.08);
  height: 10px;
  overflow: hidden;
}

.score-track i {
  background: linear-gradient(90deg, var(--aqua), var(--gold), var(--saffron));
  display: block;
  height: 100%;
  width: 42%;
}

.recommendation-panel h3 {
  font-size: 1.55rem;
  margin-top: 12px;
}

.recommendation-panel .button {
  margin-top: 10px;
}

.recommendation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.recommendation-actions .button {
  margin-top: 0;
}

.decision-strip,
.packet-grid {
  display: grid;
  gap: 14px;
}

.decision-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.packet-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 14px;
}

.decision-strip article,
.packet-panel,
.packet-grid article {
  background: rgba(3, 4, 7, 0.5);
  border: 1px solid var(--line);
  min-width: 0;
  padding: 18px;
}

.packet-grid article {
  background: rgba(248, 240, 220, 0.045);
}

.decision-strip strong,
.packet-grid strong {
  color: var(--paper);
  display: block;
  font-size: 1.02rem;
  line-height: 1.25;
  margin-top: 10px;
}

.decision-strip p {
  color: var(--paper-soft);
  font-size: 0.92rem;
  margin-bottom: 0;
}

.packet-grid ul {
  display: grid;
  gap: 8px;
  margin-bottom: 0;
  padding-left: 18px;
}

.packet-grid li {
  color: var(--paper-soft);
}

.output-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.output-grid ul,
.plan-panel ol {
  display: grid;
  gap: 8px;
  margin-bottom: 0;
  padding-left: 18px;
}

.output-grid li,
.plan-panel li {
  color: var(--paper-soft);
}

.plan-panel {
  display: grid;
  gap: 16px;
}

.copy-status {
  color: var(--aqua);
  font-size: 0.9rem;
  margin: 0;
  white-space: pre-wrap;
}

.os-layers,
.employee-board,
.gate-wall,
.fracture-grid,
.stack-orbit,
.citadel-grid,
.scenario-grid,
.trust-grid,
.case-grid,
.industry-grid,
.page-grid,
.services-grid,
.role-grid,
.offer-grid,
.os-grid,
.platform-grid,
.playbook-grid {
  display: grid;
  gap: 14px;
  margin: 0 auto;
  max-width: var(--max);
}

.os-layers {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.os-layers article,
.employee-board article,
.gate-wall article,
.fracture-grid article,
.stack-orbit article,
.citadel-grid a,
.scenario-grid article,
.content-card,
.landing-card,
.pricing-card,
.industry-grid article,
.trust-grid article,
.case-grid article,
.service-card,
.role-card,
.offer-grid article,
.os-grid article,
.platform-grid article,
.play-step {
  background:
    linear-gradient(145deg, rgba(248, 240, 220, 0.095), rgba(248, 240, 220, 0.035)),
    rgba(8, 12, 18, 0.78);
  border: 1px solid var(--line);
  min-height: 226px;
  padding: 24px;
  transition:
    border-color 160ms ease,
    transform 160ms ease,
    background 160ms ease;
}

.os-layers article:hover,
.employee-board article:hover,
.gate-wall article:hover,
.fracture-grid article:hover,
.stack-orbit article:hover,
.citadel-grid a:hover,
.scenario-grid article:hover,
.content-card:hover,
.landing-card:hover,
.pricing-card:hover,
.industry-grid article:hover {
  background:
    linear-gradient(145deg, rgba(248, 240, 220, 0.13), rgba(248, 240, 220, 0.048)),
    rgba(8, 12, 18, 0.9);
  border-color: rgba(112, 240, 223, 0.38);
  transform: translateY(-3px);
}

.os-layers span,
.employee-board span {
  margin-bottom: 52px;
}

.employee-section {
  background: #070a10;
}

.employee-board {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.employee-board article:nth-child(1) {
  border-color: rgba(112, 240, 223, 0.45);
}

.workflow-section {
  background: #f7efd9;
  color: #10131a;
}

.workflow-section h2,
.workflow-section h3,
.workflow-section p:not(.eyebrow) {
  color: #10131a;
}

.workflow-section .eyebrow {
  color: #a95524;
}

.workflow-console {
  margin: 0 auto;
  max-width: var(--max);
}

.workflow-console ol {
  counter-reset: steps;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.workflow-console li {
  background: rgba(3, 4, 7, 0.055);
  border: 1px solid rgba(3, 4, 7, 0.12);
  min-height: 230px;
  padding: 22px;
}

.workflow-console span {
  color: #a95524;
}

.workflow-console strong {
  color: #11131a;
  display: block;
  margin: 46px 0 8px;
}

.workflow-console p {
  color: #3c4350;
  margin-bottom: 0;
}

.gate-section {
  background:
    linear-gradient(180deg, rgba(8, 10, 15, 0.98), rgba(12, 18, 27, 0.98)),
    var(--carbon-2);
}

.gate-wall {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gate-wall article {
  border-color: rgba(255, 125, 143, 0.24);
  min-height: 150px;
}

.gate-wall strong {
  display: block;
  margin-bottom: 12px;
}

.gate-wall span {
  color: var(--rose);
  font-size: 0.88rem;
  font-weight: 780;
}

.brief-section {
  background:
    linear-gradient(90deg, rgba(112, 240, 223, 0.07), transparent 42%),
    #060910;
}

.brief-shell {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.8fr) minmax(0, 1fr);
  margin: 0 auto;
  max-width: var(--max);
}

.brief-copy {
  padding-right: 18px;
}

.brief-form,
.brief-output {
  background:
    linear-gradient(145deg, rgba(248, 240, 220, 0.11), rgba(248, 240, 220, 0.035)),
    rgba(8, 12, 18, 0.86);
  border: 1px solid rgba(112, 240, 223, 0.22);
  padding: 24px;
}

.brief-form {
  display: grid;
  gap: 14px;
}

label {
  color: var(--paper);
  display: grid;
  font-weight: 780;
  gap: 8px;
}

input,
select,
textarea {
  background: rgba(3, 4, 7, 0.58);
  border: 1px solid var(--line);
  color: var(--paper);
  min-height: 48px;
  padding: 12px 14px;
}

textarea {
  line-height: 1.5;
  min-height: 122px;
  resize: vertical;
}

select option {
  background: #0b0f17;
  color: var(--paper);
}

.brief-output {
  display: block;
  min-height: 100%;
  white-space: pre-wrap;
}

.brief-output span {
  color: var(--aqua);
  display: block;
  font-size: 0.76rem;
  font-weight: 920;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.brief-output p {
  margin-bottom: 0;
}

.contact-section {
  background:
    linear-gradient(120deg, rgba(112, 240, 223, 0.08), transparent 35%),
    linear-gradient(180deg, #060910, #0b1018);
}

.contact-layout {
  align-items: start;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(290px, 0.76fr) minmax(0, 1.24fr);
}

.contact-side,
.contact-form,
.contact-primer article {
  background:
    linear-gradient(145deg, rgba(248, 240, 220, 0.105), rgba(248, 240, 220, 0.035)),
    rgba(8, 12, 18, 0.86);
  border: 1px solid rgba(112, 240, 223, 0.22);
}

.contact-side {
  display: grid;
  gap: 18px;
  padding: 28px;
  position: sticky;
  top: 96px;
}

.contact-side h2 {
  font-size: 2.65rem;
}

.contact-proof {
  border-left: 2px solid var(--aqua);
  padding-left: 16px;
}

.contact-proof span,
.contact-primer span {
  color: var(--gold);
  display: block;
  font-size: 0.74rem;
  font-weight: 920;
  text-transform: uppercase;
}

.contact-proof strong {
  color: var(--paper);
  display: block;
  line-height: 1.35;
}

.contact-main {
  display: grid;
  gap: 14px;
}

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

.contact-primer article {
  min-height: 150px;
  padding: 20px;
}

.contact-primer strong {
  color: var(--paper);
  display: block;
  font-size: 1.05rem;
  margin: 32px 0 8px;
}

.contact-primer p {
  font-size: 0.92rem;
  margin-bottom: 0;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.form-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-grid label:nth-child(9),
.form-grid label:nth-child(10) {
  grid-column: 1 / -1;
}

.form-status,
.form-note {
  color: var(--aqua);
  font-size: 0.92rem;
  margin: 0;
}

.faq-section {
  background: #090d14;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin: 0 auto;
  max-width: 940px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
}

.faq-item button {
  align-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: flex;
  font-weight: 900;
  justify-content: space-between;
  min-height: 68px;
  padding: 18px 22px;
  text-align: left;
  width: 100%;
}

.faq-item button::after {
  color: var(--aqua);
  content: "+";
  font-size: 1.35rem;
}

.faq-item button[aria-expanded="true"]::after {
  content: "-";
}

.faq-item div {
  display: none;
  padding: 0 22px 20px;
}

.faq-item.is-open div {
  display: block;
}

.faq-item p {
  margin-bottom: 0;
}

.final-cta {
  align-items: center;
  background:
    linear-gradient(90deg, #f7efd9, #e6d1a7);
  color: #10131a;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 62px 28px;
}

.final-cta > div:first-child {
  max-width: 820px;
}

.final-cta h2,
.final-cta p {
  color: #10131a;
}

.final-cta .eyebrow {
  color: #a95524;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.site-footer {
  align-items: start;
  background: #030407;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 40px 28px;
}

.footer-brand {
  margin-bottom: 16px;
}

.site-footer p {
  margin-bottom: 0;
  max-width: 560px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.page-hero {
  background:
    linear-gradient(90deg, rgba(3, 4, 7, 0.98) 0%, rgba(3, 4, 7, 0.86) 42%, rgba(3, 4, 7, 0.52) 72%, rgba(3, 4, 7, 0.38) 100%),
    linear-gradient(180deg, rgba(3, 4, 7, 0.12), rgba(3, 4, 7, 0.92)),
    url("assets/dharmarth-client-hero.png") center right / cover no-repeat,
    #05070c;
  border-bottom: 1px solid var(--line);
  min-height: 520px;
  overflow: hidden;
  padding: 154px 28px 90px;
  position: relative;
}

.page-hero::after {
  background:
    linear-gradient(90deg, rgba(248, 240, 220, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(248, 240, 220, 0.045) 1px, transparent 1px);
  background-size: 92px 92px;
  content: "";
  inset: 0;
  opacity: 0.28;
  pointer-events: none;
  position: absolute;
}

.page-hero-inner,
.page-section-inner {
  margin: 0 auto;
  max-width: var(--max);
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: 4.8rem;
  max-width: 980px;
}

.page-hero p {
  font-size: 1.08rem;
  max-width: 790px;
}

.page-grid,
.services-grid,
.offer-grid,
.os-grid,
.platform-grid,
.playbook-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.role-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.statement {
  background: #f7efd9;
  color: #10131a;
}

.statement-panel {
  border-left: 2px solid #a95524;
  margin: 0 auto;
  max-width: var(--max);
  padding-left: 34px;
}

.statement-panel h2,
.statement-panel p {
  color: #10131a;
}

.statement-panel .eyebrow {
  color: #a95524;
}

.statement-panel p:not(.eyebrow) {
  font-size: 1.12rem;
  max-width: 880px;
}

.section-heading {
  margin: 0 auto 42px;
  max-width: 860px;
}

.section-heading.wide {
  max-width: 1080px;
}

.section-heading.center {
  text-align: center;
}

.role-card p,
.offer-grid p,
.os-grid p,
.platform-grid p,
.play-step p,
.content-card p,
.landing-card p,
.pricing-card p,
.industry-grid p {
  color: var(--paper-soft);
}

.content-card,
.landing-card,
.pricing-card,
.industry-grid article,
.case-grid article,
.employees-section article {
  border-radius: 8px;
  position: relative;
}

.content-card::before,
.landing-card::before,
.pricing-card::before,
.industry-grid article::before,
.case-grid article::before,
.employees-section article::before {
  background: linear-gradient(90deg, rgba(112, 240, 223, 0.72), rgba(229, 185, 94, 0.64), transparent);
  content: "";
  height: 2px;
  left: 18px;
  opacity: 0.72;
  position: absolute;
  right: 18px;
  top: 0;
}

.role-card span,
.offer-kicker,
.play-step span {
  color: var(--gold);
  display: block;
  font-size: 0.76rem;
  font-weight: 900;
  margin-bottom: 42px;
  text-transform: uppercase;
}

.reveal {
  opacity: 1;
  transform: none;
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

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

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto 1fr;
  }

  .nav {
    background: rgba(3, 4, 7, 0.98);
    border-top: 1px solid var(--line);
    display: none;
    flex-direction: column;
    grid-column: 1 / -1;
    padding: 18px 0 8px;
  }

  .nav.is-open {
    display: flex;
  }

  .header-actions {
    justify-self: end;
  }

  .menu-toggle {
    display: inline-flex;
  }

  h1 {
    font-size: 5.4rem;
  }

  h2 {
    font-size: 3.6rem;
  }

  .system-visual {
    inset: 150px 24px 54px 34%;
    opacity: 0.54;
  }

  .system-shell {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .system-panel {
    display: none;
  }

  .os-layers,
  .pathfinder-options,
  .hero-route-bar,
  .order-grid,
  .order-trust,
  .proof-ladder,
  .machine-grid,
  .intent-grid,
  .plain-service-grid,
  .depth-grid,
  .visual-showcase-grid,
  .service-image-grid,
  .feature-console,
  .employee-board,
  .gate-wall,
  .page-grid,
  .services-grid,
  .role-grid,
  .offer-grid,
  .os-grid,
  .platform-grid,
  .playbook-grid,
  .fracture-grid,
  .stack-orbit,
  .citadel-grid,
  .scenario-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .workflow-console ol {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .brief-shell {
    grid-template-columns: 1fr;
  }

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

  .contact-side {
    position: static;
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: center;
    display: flex;
    gap: 12px;
    justify-content: flex-start;
    min-height: 68px;
    padding: 10px 18px;
  }

  .brand {
    gap: 10px;
    min-width: 0;
    overflow: hidden;
  }

  .brand strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand small,
  .header-link,
  .header-actions .button {
    display: none;
  }

  .header-actions {
    gap: 0;
    margin-left: 8px;
    min-width: 46px;
  }

  .menu-toggle {
    border-color: rgba(112, 240, 223, 0.34);
    display: inline-flex;
    flex: 0 0 46px;
  }

  .nav {
    left: 0;
    padding: 18px;
    position: fixed;
    right: 0;
    top: 68px;
  }

  .hero-os {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    min-height: auto;
    max-width: 100vw;
    overflow-x: hidden;
    padding: 118px 18px 44px;
  }

  h1,
  .page-hero h1 {
    font-size: 3.85rem;
    line-height: 0.96;
  }

  h2 {
    font-size: 2.45rem;
    line-height: 1;
  }

  .visual-showcase-section .section-kicker h2 {
    font-size: 2.45rem;
  }

  .hero-statement {
    font-size: 1.16rem;
  }

  .hero-subcopy {
    font-size: 1rem;
  }

  .hero-copy {
    max-width: 100%;
    min-width: 0;
    order: 1;
    width: 100%;
  }

  .hero-statement,
  .hero-subcopy {
    overflow-wrap: break-word;
    word-break: normal;
  }

  .hero-actions,
  .cta-actions {
    align-items: stretch;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

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

  .hero-proof {
    display: grid;
  }

  .hero-actions,
  .hero-proof {
    max-width: 620px;
    width: 100%;
  }

  .hero-pathfinder {
    max-width: 620px;
    width: 100%;
  }

  .pathfinder-top {
    grid-template-columns: 1fr;
  }

  .pathfinder-top p {
    max-width: none;
    text-align: left;
  }

  .pathfinder-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .path-button {
    grid-column: auto;
  }

  .system-visual {
    inset: auto;
    align-self: flex-start;
    margin-top: 34px;
    max-width: 100%;
    min-width: 0;
    opacity: 1;
    order: 2;
    overflow: hidden;
    position: relative;
    width: calc(100vw - 36px);
    z-index: 1;
  }

  .system-chrome {
    grid-template-columns: 1fr;
  }

  .system-chrome span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .system-chrome span:nth-child(n + 2) {
    display: none;
  }

  .system-shell {
    grid-template-columns: 1fr;
    max-width: 100%;
    min-height: 0;
    min-width: 0;
  }

  .system-rail {
    display: none;
  }

  .system-core {
    max-width: 100%;
    min-width: 0;
    padding: 16px;
  }

  .intent-terminal {
    max-width: 100%;
    min-width: 0;
    padding: 18px;
  }

  .intent-terminal strong {
    font-size: 1.25rem;
    overflow-wrap: break-word;
  }

  .intent-terminal p {
    overflow-wrap: break-word;
  }

  .agent-map {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 0;
    overflow: hidden;
    padding: 16px 0;
  }

  .agent-map::before,
  .agent-map i {
    display: none;
  }

  .node {
    font-size: 0.68rem;
    padding: 7px 8px;
    position: static;
    text-align: center;
    transform: none;
    white-space: normal;
  }

  .node-orchestrator {
    grid-column: 1 / -1;
  }

  .execution-lane {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .section,
  .page-hero,
  .final-cta,
  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .signal-band,
  .pathfinder-options,
  .pathfinder-steps,
  .hero-route-bar,
  .order-grid,
  .order-trust,
  .proof-ladder,
  .machine-grid,
  .machine-cta,
  .contact-primer,
  .intent-grid,
  .plain-service-grid,
  .depth-grid,
  .visual-showcase-grid,
  .service-image-grid,
  .feature-console,
  .console-row,
  .decision-strip,
  .packet-grid,
  .output-grid,
  .os-layers,
  .employee-board,
  .gate-wall,
  .workflow-console ol,
  .final-cta,
  .site-footer,
  .page-grid,
  .page-grid.two,
  .services-grid,
  .role-grid,
  .offer-grid,
  .os-grid,
  .platform-grid,
  .playbook-grid,
  .fracture-grid,
  .stack-orbit,
  .citadel-grid,
  .scenario-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-grid label:nth-child(9),
  .form-grid label:nth-child(10) {
    grid-column: auto;
  }

  .signal-band article,
  .path-button,
  .hero-route-bar a,
  .order-card,
  .proof-ladder article,
  .machine-grid article,
  .visual-card,
  .service-image-card,
  .intent-grid a,
  .plain-service-grid a,
  .depth-grid article,
  .os-layers article,
  .employee-board article,
  .gate-wall article,
  .workflow-console li,
  .content-card,
  .landing-card,
  .pricing-card,
  .industry-grid article {
    min-height: 0;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .machine-actions {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .machine-actions .button {
    width: 100%;
  }

  .machine-grid h3 {
    margin-top: 28px;
  }

  .machine-cta h3 {
    font-size: 1.35rem;
  }

  .recommendation-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .recommendation-actions .button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  h1,
  .page-hero h1 {
    font-size: clamp(1.95rem, 8vw, 2.12rem);
    line-height: 1.05;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  h2,
  .section-kicker h2,
  .section-heading h2 {
    font-size: clamp(1.86rem, 8vw, 2.08rem);
    line-height: 1.02;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .page-hero p,
  .section-kicker p,
  .section-heading p,
  .service-image-card strong,
  .plain-service-grid p,
  .plain-service-grid small,
  .depth-grid p,
  .proof-ladder p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .page-hero h1,
  .page-hero p,
  .page-hero .hero-actions {
    max-width: min(100%, 312px);
  }

  .section,
  .page-hero {
    overflow-x: hidden;
  }

  .page-hero-inner,
  .page-section-inner {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }

  .hero-copy,
  .hero-actions,
  .hero-pathfinder,
  .hero-proof,
  .hero-route-bar,
  .order-grid,
  .order-trust,
  .proof-ladder,
  .system-visual,
  .signal-band article,
  .section-kicker,
  .machine-grid,
  .machine-cta,
  .intent-grid,
  .plain-service-grid,
  .depth-grid,
  .visual-showcase-grid,
  .service-image-grid,
  .feature-console,
  .os-layers,
  .employee-board,
  .workflow-console,
  .gate-wall,
  .brief-shell,
  .brief-copy,
  .brief-form,
  .brief-output,
  .contact-layout,
  .contact-side,
  .contact-main,
  .contact-primer,
  .contact-form {
    max-width: none;
    width: calc(100% - 18px);
  }

  .section-kicker,
  .section-kicker.wide,
  .section-kicker.center,
  .section-heading,
  .section-heading.wide,
  .section-heading.center,
  .service-image-grid,
  .visual-showcase-grid,
  .plain-service-grid,
  .depth-grid,
  .proof-ladder,
  .intent-grid,
  .machine-grid,
  .order-grid,
  .order-trust {
    max-width: 312px;
    width: 100%;
  }

  .hero-statement,
  .hero-subcopy {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-copy,
  .hero-actions,
  .hero-pathfinder,
  .hero-proof {
    max-width: 330px;
    width: calc(100vw - 60px);
  }

  .pathfinder-steps {
    grid-template-columns: 1fr;
  }

  .pathfinder-options {
    grid-template-columns: 1fr;
  }

  .intent-terminal strong,
  .intent-terminal p {
    max-width: 286px;
  }

  .intent-terminal strong {
    font-size: 1.08rem;
  }

  .option-grid,
  .check-grid {
    grid-template-columns: 1fr;
  }

  .console-form,
  .console-output,
  .hero-pathfinder,
  .path-button,
  .order-card,
  .proof-ladder article,
  .contact-side,
  .contact-form,
  .contact-primer article,
  .plain-service-grid a,
  .depth-grid article,
  .score-panel,
  .recommendation-panel,
  .decision-strip article,
  .packet-panel,
  .packet-grid article,
  .output-grid article,
  .plan-panel {
    padding: 18px;
  }

  .path-button {
    min-height: 98px;
    padding: 12px;
  }

  .button {
    padding-left: 14px;
    padding-right: 14px;
  }

  .order-card strong {
    font-size: 1.08rem;
    margin-top: 30px;
  }

  .order-trust span {
    padding: 14px;
  }

  .order-assistant {
    bottom: 14px;
    left: auto;
    right: 12px;
    width: auto;
  }

  .assistant-launcher {
    justify-content: center;
    min-height: 52px;
    padding: 8px;
    width: 52px;
  }

  .assistant-launcher strong {
    display: none;
  }

  .assistant-panel {
    bottom: 64px;
    max-height: calc(100vh - 86px);
    padding: 14px;
    width: calc(100vw - 28px);
  }

  .assistant-messages {
    max-height: 260px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  #signalCanvas {
    display: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
