:root {
  color-scheme: dark;
  --bg: #071018;
  --bg-deep: #040a0f;
  --surface: #0d1923;
  --surface-2: #111f2b;
  --surface-3: #162733;
  --line: #223440;
  --line-strong: #304754;
  --text: #edf4f7;
  --muted: #91a5b1;
  --subtle: #607580;
  --mint: #54d7ad;
  --cyan: #72d4eb;
  --danger: #ff7688;
  --warning: #efc365;
  --page: min(1180px, calc(100vw - 48px));
  --shadow: 0 30px 90px #0009;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 15px/1.65 Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 72% 7%, #1d6a6520, transparent 29%),
    radial-gradient(circle at 17% 52%, #18567612, transparent 34%),
    var(--bg);
  content: "";
}

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

button,
input,
textarea {
  font: inherit;
}

img {
  max-width: 100%;
}

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

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 em,
h2 em {
  color: var(--mint);
  font-style: normal;
}

.sr-only {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(0, 0, 0, 0);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 9px 14px;
  border-radius: 7px;
  background: var(--mint);
  color: #04110d;
  font-weight: 800;
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  height: 76px;
  padding: 0 max(28px, calc((100vw - 1320px) / 2));
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
  transform: translateX(-50%);
}

.site-header[data-elevated="true"] {
  border-color: #20313db8;
  background: #071018df;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 9px;
  width: max-content;
  color: var(--text);
  font-size: 15px;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.brand img {
  object-fit: contain;
  filter: drop-shadow(0 4px 12px #54d7ad24);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  color: #b9c8cf;
  font-size: 13px;
  font-weight: 650;
}

.site-nav a,
.footer-links a {
  transition: color 150ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"],
.footer-links a:hover {
  color: var(--mint);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
}

.header-cta,
.header-playground {
  justify-self: end;
  padding: 10px 16px;
  border: 1px solid #4f766f;
  border-radius: 7px;
  color: #d9fff2;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.02em;
  transition: background 150ms ease, border-color 150ms ease;
}

.header-playground {
  border-color: #2c4653;
  color: #b9d5df;
}

.header-cta:hover,
.header-playground:hover {
  border-color: var(--mint);
  background: #54d7ad12;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(500px, 0.98fr);
  gap: clamp(48px, 7vw, 110px);
  align-items: center;
  min-height: 790px;
  padding: 150px max(32px, calc((100vw - 1320px) / 2)) 92px;
  overflow: hidden;
}

.hero-grid,
.cta-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.17;
  background-image:
    linear-gradient(#34536144 1px, transparent 1px),
    linear-gradient(90deg, #34536144 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, #000 15%, transparent 88%);
}

.hero::after {
  position: absolute;
  top: 17%;
  right: -10%;
  z-index: -1;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: radial-gradient(circle, #54d7ad12, transparent 66%);
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--mint);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow > span {
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--mint);
  box-shadow: 0 0 10px var(--mint);
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 27px;
  font-size: clamp(52px, 5.3vw, 82px);
  font-weight: 720;
  letter-spacing: -0.057em;
}

.hero-lead {
  max-width: 670px;
  margin-bottom: 34px;
  color: #afc0c9;
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.58;
}

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

.button {
  display: inline-flex;
  gap: 22px;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 21px;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  font-size: 13px;
  font-weight: 800;
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease, background 150ms ease;
}

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

.button.primary {
  border-color: var(--mint);
  background: var(--mint);
  color: #03130e;
  box-shadow: 0 12px 36px #54d7ad19;
}

.button.primary:hover {
  box-shadow: 0 16px 42px #54d7ad31;
}

.button.ghost {
  background: #0c1820d9;
  color: var(--text);
}

.button.ghost:hover {
  border-color: #56717f;
  background: #12232d;
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 21px;
  margin: 30px 0 0;
  padding: 0;
  color: #8297a2;
  font-size: 11px;
  list-style: none;
}

.trust-line li::before {
  margin-right: 7px;
  color: var(--mint);
  content: "✓";
}

.hero-console {
  position: relative;
  border: 1px solid #2a414d;
  border-radius: 12px;
  background: linear-gradient(145deg, #0c1922f4, #08131bf7);
  box-shadow: var(--shadow), 0 0 0 1px #fff0 inset;
  overflow: hidden;
}

.hero-console::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, #fff0 45%, #72d4eb0a 54%, #fff0 63%);
  content: "";
}

.console-bar,
.console-foot,
.sim-head {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0 17px;
  border-bottom: 1px solid #243641;
  background: #0b171f;
  color: #7f949f;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.console-bar > div {
  display: flex;
  gap: 5px;
  margin-right: auto;
}

.console-bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2d424e;
}

.console-bar > span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.console-bar b,
.sim-head b {
  margin-left: auto;
  color: var(--mint);
  font-size: 8px;
}

.console-bar b::before,
.sim-head b::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 9px var(--mint);
  content: "";
}

.flow-map {
  display: grid;
  grid-template-columns: 1fr 48px 1fr 48px 1fr;
  align-items: center;
  min-height: 260px;
  padding: 24px 20px;
  background-image:
    linear-gradient(#22384330 1px, transparent 1px),
    linear-gradient(90deg, #22384330 1px, transparent 1px);
  background-size: 28px 28px;
}

.flow-node,
.flow-core {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 116px;
  padding: 12px;
  border: 1px solid #29404b;
  border-radius: 7px;
  background: #0b1820e8;
  text-align: center;
}

.flow-node small,
.flow-core small,
.pipe-box small,
.pipe-entrovik small {
  color: #6f8490;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.flow-node strong,
.flow-core strong {
  margin: 8px 0 2px;
  font-size: 11px;
}

.flow-node span {
  color: #708691;
  font: 9px ui-monospace, SFMono-Regular, Menlo, monospace;
}

.flow-core {
  border-color: #3f7c6c;
  background: radial-gradient(circle at 50% 34%, #193932, #0a171e 70%);
  box-shadow: 0 0 28px #54d7ad0d;
}

.flow-core img {
  width: 72px;
  height: 72px;
  margin: -13px 0 -4px;
  object-fit: contain;
}

.flow-core small {
  color: var(--mint);
}

.flow-line {
  position: relative;
  height: 1px;
  background: #41636a;
}

.flow-line i {
  position: absolute;
  top: -3px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 11px var(--cyan);
  animation: packet 2.7s linear infinite;
}

.flow-line span {
  position: absolute;
  top: 9px;
  left: 50%;
  color: #59717c;
  font-size: 7px;
  text-transform: uppercase;
  transform: translateX(-50%);
}

@keyframes packet {
  from { left: 0; }
  to { left: calc(100% - 7px); }
}

.decision-feed {
  padding: 4px 18px 10px;
}

.decision-feed > div {
  display: grid;
  grid-template-columns: 12px 1fr auto;
  gap: 8px;
  align-items: center;
  min-height: 38px;
  border-bottom: 1px solid #1d2e37;
  color: #8ea1ab;
  font-size: 10px;
}

.decision-feed i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
}

.decision-feed i.redact { background: var(--warning); }
.decision-feed i.audit { background: var(--cyan); }
.decision-feed b { color: #cbd8de; font-weight: 650; }
.decision-feed time { color: #617681; font: 9px ui-monospace, monospace; }

.console-foot {
  gap: 9px;
  border-top: 1px solid #243641;
  border-bottom: 0;
}

.console-foot strong { color: var(--warning); font-size: 9px; }
.console-foot code { margin-left: auto; color: #7b919b; }

.provider-rail {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 34px;
  align-items: center;
  padding: 28px max(32px, calc((100vw - 1180px) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #08131b;
}

.provider-rail p {
  margin: 0;
  color: #637985;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.provider-rail div {
  display: flex;
  justify-content: space-between;
  gap: 23px;
  color: #bac9d0;
  font-size: 13px;
  font-weight: 700;
}

.section {
  width: var(--page);
  margin: 0 auto;
  padding: 120px 0;
}

.section-heading {
  margin-bottom: 54px;
}

.section-heading h2,
.simulator-copy h2,
.assurance h2,
.final-cta h2,
.page-hero h1 {
  margin-bottom: 22px;
  font-size: clamp(39px, 4vw, 58px);
  font-weight: 680;
}

.section-heading > p:last-child,
.simulator-copy > p,
.assurance > div > p,
.final-cta > p {
  color: #9db0ba;
  font-size: 17px;
  line-height: 1.7;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 90px;
  align-items: end;
}

.split-heading > p {
  margin-bottom: 7px;
}

.centered {
  max-width: 830px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.centered .eyebrow {
  justify-content: center;
}

.narrow { max-width: 760px; }

.outcome-grid,
.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.outcome-grid article,
.platform-grid article {
  position: relative;
  min-height: 330px;
  padding: 31px 27px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(145deg, #0d1923, #0a151d);
  transition: background 170ms ease, transform 170ms ease;
}

.outcome-grid article:hover,
.platform-grid article:hover {
  z-index: 2;
  background: #11212b;
  transform: translateY(-4px);
}

.card-index {
  position: absolute;
  top: 18px;
  right: 19px;
  color: #50646e;
  font: 9px ui-monospace, monospace;
}

.signal-icon,
.platform-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 46px;
  border: 1px solid #3a675d;
  border-radius: 6px;
  background: #143129;
  color: var(--mint);
  font: 18px ui-monospace, monospace;
}

.signal-icon.danger {
  border-color: #75414b;
  background: #311a22;
  color: var(--danger);
}

.outcome-grid h3,
.platform-grid h3 {
  margin-bottom: 15px;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.outcome-grid p,
.platform-grid p {
  color: #8fa3ae;
  font-size: 13px;
}

.outcome-grid strong {
  position: absolute;
  bottom: 28px;
  color: #c8d6dc;
  font-size: 11px;
}

.outcome-grid strong::before {
  margin-right: 7px;
  color: var(--mint);
  content: "→";
}

.control-plane {
  width: 100%;
  padding-right: max(32px, calc((100vw - 1180px) / 2));
  padding-left: max(32px, calc((100vw - 1180px) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #08131b;
}

.pipeline-visual {
  display: grid;
  grid-template-columns: 1fr 100px 1.25fr 100px 1fr;
  align-items: center;
  max-width: 1050px;
  margin: 0 auto 55px;
  padding: 37px;
  border: 1px solid #27404b;
  border-radius: 10px;
  background:
    linear-gradient(#2037422b 1px, transparent 1px),
    linear-gradient(90deg, #2037422b 1px, transparent 1px),
    #0a161e;
  background-size: 28px 28px;
}

.pipe-box,
.pipe-entrovik {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 114px;
  padding: 18px;
  border: 1px solid #2e4652;
  border-radius: 7px;
  background: #0e1b24;
  text-align: center;
}

.pipe-box strong,
.pipe-entrovik strong {
  margin-top: 9px;
  font-size: 12px;
}

.pipe-entrovik {
  flex-direction: row;
  gap: 7px;
  border-color: #43796d;
  background: radial-gradient(circle at 30% 50%, #173b32, #0c1921 66%);
}

.pipe-entrovik img { object-fit: contain; }
.pipe-entrovik small { color: var(--mint); }
.pipe-entrovik > div { display: flex; flex-direction: column; align-items: flex-start; text-align: left; }

.pipe-arrow {
  position: relative;
  height: 1px;
  background: #3d5e66;
}

.pipe-arrow i::after {
  position: absolute;
  top: -3px;
  right: -1px;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--cyan);
  border-right: 1px solid var(--cyan);
  content: "";
  transform: rotate(45deg);
}

.pipe-arrow span {
  position: absolute;
  bottom: 10px;
  left: 50%;
  color: #5c737e;
  font-size: 7px;
  letter-spacing: 0.12em;
  transform: translateX(-50%);
}

.platform-grid article { min-height: 284px; }
.platform-icon { margin-bottom: 34px; border-color: #365a67; background: #102a34; color: var(--cyan); }

.section-action { margin-top: 38px; text-align: center; }

.text-link {
  display: inline-flex;
  gap: 28px;
  align-items: center;
  padding-bottom: 5px;
  border-bottom: 1px solid #4b756d;
  color: #d7eee7;
  font-size: 13px;
  font-weight: 800;
}

.text-link span { color: var(--mint); }

.topic-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: var(--page);
  margin: 0 auto;
}

.topic-links a {
  padding: 9px 13px;
  border: 1px solid #2b4650;
  border-radius: 999px;
  background: #0b1921;
  color: #a9bbc3;
  font-size: 11px;
  font-weight: 700;
  transition: border-color 150ms ease, color 150ms ease, background 150ms ease;
}

.topic-links a:hover {
  border-color: #4f8275;
  background: #10251f;
  color: var(--mint);
}

.home-topic-links {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.related-intents {
  border-top: 1px solid var(--line);
  background: #08131b;
}

.guide-source-list {
  display: grid;
  gap: 13px;
  margin-top: 30px;
}

.guide-source-list a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.simulator-band,
.assurance {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(60px, 9vw, 130px);
  align-items: center;
}

.check-list {
  margin: 27px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  margin: 11px 0;
  color: #b2c1c8;
  font-size: 13px;
}

.check-list li::before {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  border: 1px solid #3b6b5f;
  border-radius: 50%;
  color: var(--mint);
  font-size: 9px;
  content: "✓";
}

.simulator-card {
  border: 1px solid #2c454f;
  border-radius: 10px;
  background: #0b171f;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.sim-score {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 30px 30px 18px;
}

.sim-score div { display: flex; flex-direction: column; }
.sim-score small,
.sim-metrics small { color: #657b86; font-size: 8px; font-weight: 800; letter-spacing: 0.14em; }
.sim-score strong { color: var(--mint); font: 42px/1 ui-monospace, SFMono-Regular, monospace; letter-spacing: -0.07em; }
.sim-score > span { color: #687f8a; font-size: 10px; }

.sim-bars { padding: 8px 30px 30px; }
.sim-bars > div { margin: 17px 0; }
.sim-bars label { display: flex; justify-content: space-between; margin-bottom: 6px; color: #97abb4; font-size: 10px; }
.sim-bars label b { color: #c6d5db; }
.sim-bars i { display: block; height: 6px; border-radius: 10px; background: #192a33; overflow: hidden; }
.sim-bars i span { display: block; height: 100%; border-radius: inherit; }
.sim-bars .pass { width: 94.2%; background: var(--mint); }
.sim-bars .redacted { width: 41%; background: var(--warning); }
.sim-bars .blocked { width: 17%; background: var(--danger); }

.sim-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #263a44;
}

.sim-metrics span {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 19px 23px;
  border-right: 1px solid #263a44;
}

.sim-metrics span:last-child { border: 0; }
.sim-metrics b { font: 15px ui-monospace, monospace; }

.deployment {
  width: 100%;
  padding-right: max(32px, calc((100vw - 1180px) / 2));
  padding-left: max(32px, calc((100vw - 1180px) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #08131b;
}

.deployment-grid {
  display: grid;
  grid-template-columns: 1fr 150px 1fr;
  align-items: center;
  max-width: 930px;
  margin: auto;
}

.deployment-grid article {
  min-height: 270px;
  padding: 34px;
  border: 1px solid #2a414c;
  border-radius: 9px;
  background: #0d1a23;
}

.deployment-grid article.enterprise-card {
  border-color: #3c7568;
  background: linear-gradient(145deg, #123028, #0c1a22 70%);
  box-shadow: 0 22px 70px #54d7ad0c;
}

.deployment-label {
  color: var(--mint);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.17em;
}

.deployment-grid h3 { margin: 24px 0 13px; font-size: 28px; }
.deployment-grid p { color: #8fa3ae; font-size: 13px; }
.deployment-grid code { display: block; margin-top: 26px; padding: 11px 13px; border: 1px solid #293f49; border-radius: 5px; background: #071118; color: #9dddc8; font-size: 10px; white-space: nowrap; }

.deployment-route { position: relative; height: 1px; background: #35535b; }
.deployment-route i::after { position: absolute; top: -4px; right: 0; width: 8px; height: 8px; border-top: 1px solid var(--mint); border-right: 1px solid var(--mint); content: ""; transform: rotate(45deg); }
.deployment-route span { position: absolute; bottom: 11px; left: 50%; width: max-content; color: #647b86; font-size: 8px; letter-spacing: 0.08em; text-transform: uppercase; transform: translateX(-50%); }

.assurance > div > p { margin-bottom: 28px; }

.assurance-list {
  border-top: 1px solid var(--line);
}

.assurance-list span {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  min-height: 68px;
  border-bottom: 1px solid var(--line);
}

.assurance-list i { color: #566e78; font: 9px ui-monospace, monospace; font-style: normal; }
.assurance-list b { font-size: 13px; font-weight: 650; }

.faq {
  width: 100%;
  padding-right: max(32px, calc((100vw - 900px) / 2));
  padding-left: max(32px, calc((100vw - 900px) / 2));
  border-top: 1px solid var(--line);
  background: #08131b;
}

.faq-list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { position: relative; padding: 25px 45px 25px 0; font-size: 17px; font-weight: 650; cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { position: absolute; top: 25px; right: 4px; color: var(--mint); content: "+"; }
.faq details[open] summary::after { content: "−"; }
.faq details p { max-width: 760px; padding: 0 50px 23px 0; color: #91a5af; }

.final-cta {
  position: relative;
  padding: 130px 32px;
  border-top: 1px solid var(--line);
  background: radial-gradient(circle at 50% 35%, #174b401c, transparent 44%), #060e14;
  text-align: center;
  overflow: hidden;
}

.final-cta > img { margin-bottom: 4px; object-fit: contain; filter: drop-shadow(0 12px 30px #54d7ad28); }
.final-cta .eyebrow { justify-content: center; }
.final-cta h2 { margin-bottom: 17px; font-size: clamp(44px, 5vw, 70px); }
.final-cta > p:not(.eyebrow) { max-width: 670px; margin: 0 auto 32px; }
.final-cta .hero-actions { justify-content: center; }

.contact-section {
  position: relative;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(55px, 8vw, 120px);
  align-items: center;
  padding: 125px max(32px, calc((100vw - 1180px) / 2));
  border-top: 1px solid var(--line);
  background: radial-gradient(circle at 20% 35%, #174b401d, transparent 38%), #060e14;
  overflow: hidden;
}
.contact-copy, .contact-form { position: relative; z-index: 1; }
.contact-copy > img { margin-bottom: 15px; filter: drop-shadow(0 12px 30px #54d7ad28); }
.contact-copy h2 { margin-bottom: 19px; font-size: clamp(42px, 4.5vw, 64px); }
.contact-copy > p:not(.eyebrow) { color: #98abb4; font-size: 16px; }
.contact-promises { display: grid; gap: 11px; margin-top: 28px; border-top: 1px solid var(--line); padding-top: 20px; }
.contact-promises span { color: #a7b8bf; font-size: 12px; }
.contact-promises i { margin-right: 11px; color: var(--mint); font: 9px ui-monospace, monospace; font-style: normal; }
.contact-form { padding: clamp(28px, 4vw, 45px); border: 1px solid #2d4650; border-radius: 10px; background: #0b1821; box-shadow: var(--shadow); }
.contact-form .section-head { align-items: flex-end; margin-bottom: 28px; }
.contact-form .section-head small { color: var(--mint); font-size: 8px; letter-spacing: .15em; }
.contact-form .section-head h3 { margin: 7px 0 0; font-size: 26px; }
.contact-form .section-head > span { color: #617681; font-size: 9px; }
.contact-fields { display: grid; grid-template-columns: repeat(2, 1fr); gap: 17px; }
.contact-fields label { color: #aebfc6; font-size: 10px; font-weight: 700; letter-spacing: .02em; }
.contact-fields label.full { grid-column: 1 / -1; }
.contact-fields input, .contact-fields select, .contact-fields textarea { width: 100%; margin-top: 7px; padding: 11px 12px; border: 1px solid #2b414c; border-radius: 5px; outline: 0; background: #060f15; color: var(--text); font: inherit; font-size: 12px; line-height: 1.5; }
.contact-fields select { color-scheme: dark; }
.contact-fields textarea { min-height: 125px; resize: vertical; }
.contact-fields input:focus, .contact-fields select:focus, .contact-fields textarea:focus { border-color: #4da78d; box-shadow: 0 0 0 3px #54d7ad0e; }
.contact-fields .hp { position: absolute; left: -10000px; width: 1px; height: 1px; opacity: 0; }
.contact-form > .button { margin-top: 20px; border: 0; cursor: pointer; }
.contact-form > .button:disabled { cursor: wait; opacity: .65; }
.form-status { min-height: 20px; margin: 13px 0 0; font-size: 11px; font-weight: 700; }
.form-status.ok { color: var(--mint); }
.form-status.error { color: var(--danger); }
.form-privacy { margin: 4px 0 0; color: #526873; font-size: 9px; }
.form-privacy a { color: #7d9992; text-decoration: underline; text-underline-offset: 2px; }

.not-found {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.not-found h1 {
  margin-bottom: 17px;
  font-size: clamp(44px, 5vw, 70px);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 72px max(32px, calc((100vw - 1180px) / 2)) 30px;
  border-top: 1px solid var(--line);
  background: var(--bg-deep);
}

.footer-brand p { margin-top: 12px; color: #6e838e; font-size: 12px; }
.footer-links { display: flex; justify-content: flex-end; gap: 90px; }
.footer-links div { display: flex; flex-direction: column; gap: 8px; min-width: 120px; }
.footer-links strong { margin-bottom: 6px; color: #b6c6cd; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; }
.footer-links a { color: #738994; font-size: 12px; }
.footer-bottom { display: flex; grid-column: 1 / -1; justify-content: space-between; padding-top: 27px; border-top: 1px solid #1c2b34; color: #526873; font-size: 10px; }

/* Interior pages */
.page-hero {
  position: relative;
  min-height: 590px;
  padding: 165px max(32px, calc((100vw - 1180px) / 2)) 95px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.page-hero::after {
  position: absolute;
  top: -120px;
  right: -80px;
  z-index: -1;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, #54d7ad15, transparent 65%);
  content: "";
}

.page-hero h1 { max-width: 940px; font-size: clamp(50px, 6vw, 84px); }
.page-hero > p:not(.eyebrow) { max-width: 760px; margin-bottom: 33px; color: #a5b7c0; font-size: 20px; }

.architecture-flow {
  display: grid;
  grid-template-columns: 1fr 40px 1.2fr 40px 1fr 40px 1.2fr 40px 1fr;
  align-items: center;
  padding: 32px;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  background: #09151d;
}

.architecture-flow div:not(.arch-arrow) {
  min-height: 100px;
  padding: 18px 11px;
  border: 1px solid #2b424d;
  border-radius: 6px;
  text-align: center;
}

.architecture-flow small { display: block; color: #6b818c; font-size: 8px; letter-spacing: .12em; }
.architecture-flow strong { display: block; margin: 10px 0 4px; font-size: 12px; }
.architecture-flow span { color: #718792; font-size: 9px; }
.architecture-flow .arch-policy { border-color: #40766a !important; background: #102921; }
.arch-arrow { height: 1px; background: #38555e; }

.technical-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.technical-grid article { min-height: 270px; padding: 30px; background: #0c1922; }
.technical-grid code { color: var(--cyan); font-size: 10px; }
.technical-grid h3 { margin: 38px 0 14px; font-size: 20px; }
.technical-grid p { color: #8fa3ae; font-size: 13px; }

.code-window {
  overflow: hidden;
  border: 1px solid #2c454f;
  border-radius: 9px;
  background: #061017;
  box-shadow: var(--shadow);
}

.code-bar { display: flex; align-items: center; min-height: 42px; padding: 0 15px; border-bottom: 1px solid #223640; color: #667d88; font-size: 9px; letter-spacing: .1em; }
.code-bar span { margin-left: auto; color: var(--mint); }
.code-window pre { margin: 0; padding: 27px; color: #b5c8d0; font: 12px/1.8 ui-monospace, SFMono-Regular, Menlo, monospace; white-space: pre-wrap; }
.code-window .syntax { color: var(--cyan); }
.code-window .value { color: var(--mint); }

.two-column {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 95px;
  align-items: start;
}

.sticky-copy { position: sticky; top: 115px; }
.sticky-copy h2 { font-size: clamp(38px, 4vw, 56px); }
.sticky-copy > p { color: #95a8b2; font-size: 16px; }

.detail-stack { border-top: 1px solid var(--line); }
.detail-stack article { padding: 29px 0; border-bottom: 1px solid var(--line); }
.detail-stack article h3 { font-size: 19px; }
.detail-stack article p { margin-bottom: 0; color: #8fa3ae; }
.detail-stack article span { display: block; margin-bottom: 10px; color: var(--mint); font: 9px ui-monospace, monospace; }
.detail-stack .detail-link { display: inline-flex; margin-top: 16px; font: 11px/1.5 Inter, ui-sans-serif, sans-serif; }
.detail-stack .detail-link span { display: inline; margin: 0; font: inherit; }

.security-principles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.security-principles article { min-height: 250px; padding: 33px; border: 1px solid var(--line); background: #0b1820; }
.security-principles span { color: var(--mint); font: 11px ui-monospace, monospace; }
.security-principles h3 { margin: 39px 0 13px; font-size: 22px; }
.security-principles p { color: #8fa3ae; font-size: 13px; }

/* Policy developer guide */
.developer-hero { padding-bottom: 58px; }
.developer-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  width: min(900px, 100%);
  margin-top: 54px;
  border: 1px solid var(--line);
  background: var(--line);
}
.developer-facts span {
  flex: 1 1 180px;
  padding: 13px 17px;
  background: #09151d;
  color: #92a5af;
  font: 10px/1.4 ui-monospace, SFMono-Regular, Menlo, monospace;
}
.developer-facts b { margin-right: 8px; color: var(--mint); font-size: 8px; letter-spacing: .1em; }
.developer-workbench {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 22px;
  align-items: stretch;
}
.developer-steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}
.developer-steps li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 17px;
  min-height: 102px;
  padding: 20px 5px;
  border-bottom: 1px solid var(--line);
}
.developer-steps li > span { color: var(--mint); font: 9px ui-monospace, SFMono-Regular, Menlo, monospace; }
.developer-steps strong { display: block; margin-bottom: 6px; font-size: 15px; }
.developer-steps p { margin: 0; color: #81959f; font-size: 11px; }
.developer-note {
  display: grid;
  grid-template-columns: minmax(160px, .3fr) 1fr;
  gap: 30px;
  margin-top: 22px;
  padding: 21px 24px;
  border: 1px solid #31564e;
  border-left: 3px solid var(--mint);
  background: #0e211c;
}
.developer-note strong { color: #d7eee7; font-size: 12px; }
.developer-note span { color: #8fa8a0; font-size: 11px; }
.developer-note code { color: var(--cyan); }
.package-layout {
  display: grid;
  grid-template-columns: .76fr 1.24fr;
  gap: 24px;
  align-items: stretch;
  max-width: 1050px;
  margin: 0 auto;
}
.file-tree {
  overflow: hidden;
  border: 1px solid #2c454f;
  border-radius: 9px;
  background: #09151d;
  box-shadow: var(--shadow);
}
.file-tree-head {
  display: flex;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid #223640;
  color: #b7c8cf;
  font: 11px ui-monospace, SFMono-Regular, Menlo, monospace;
}
.file-tree-head b { color: var(--mint); font-size: 9px; }
.file-tree ul { margin: 0; padding: 18px; list-style: none; }
.file-tree li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 2px 8px;
  padding: 15px 8px;
  border-bottom: 1px solid #1e3039;
}
.file-tree li:last-child { border-bottom: 0; }
.file-tree i { grid-row: 1 / 3; color: var(--cyan); font: normal 9px ui-monospace, monospace; }
.file-tree strong { font: 11px ui-monospace, SFMono-Regular, Menlo, monospace; }
.file-tree li > span { color: #6f838d; font-size: 9px; }
.policy-code { margin-bottom: 18px; }
.sdk-options { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.sdk-options article { padding: 22px; border: 1px solid var(--line); background: #0b1820; }
.sdk-options article > span { color: var(--mint); font: 8px ui-monospace, monospace; letter-spacing: .12em; }
.sdk-options strong { display: block; margin: 19px 0 9px; color: var(--cyan); font-size: 12px; }
.sdk-options p { margin: 0; color: #81959f; font-size: 10px; }
.sdk-options p code { color: #b8cbd3; }
.abi-grid {
  display: grid;
  grid-template-columns: .72fr .72fr 1.56fr;
  gap: 18px;
  align-items: stretch;
}
.abi-grid > article { padding: 27px; border: 1px solid var(--line); background: #0b1820; }
.abi-grid > article > span { color: var(--mint); font: 8px ui-monospace, monospace; letter-spacing: .13em; }
.abi-grid h3 { margin: 37px 0 18px; font-size: 18px; }
.abi-grid ul { display: grid; gap: 9px; margin: 0; padding: 0; color: #8da0aa; font-size: 10px; list-style: none; }
.abi-grid li::before { margin-right: 8px; color: var(--mint); content: "→"; }
.abi-grid code { color: var(--cyan); font-size: 9px; }
.developer-security article { min-height: 285px; }
.developer-security code { color: var(--cyan); font-size: 11px; }

/* Public policy playground */
.demo-page { width: var(--page); margin: 0 auto; padding: 145px 0 110px; }
.demo-intro { max-width: 930px; margin-bottom: 58px; }
.demo-intro h1 { margin-bottom: 24px; font-size: clamp(48px, 5.4vw, 78px); }
.demo-intro > p:not(.eyebrow) { max-width: 770px; color: #a9bbc4; font-size: 19px; }
.live-playground { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 650px; border: 1px solid var(--line-strong); border-radius: 12px; background: #07131b; box-shadow: 0 35px 100px #0008; overflow: hidden; }
.demo-controls, .demo-result { padding: clamp(25px, 3.3vw, 46px); }
.demo-controls { border-right: 1px solid var(--line); background: #0b1821; }
.demo-controls .section-head { align-items: flex-start; margin-bottom: 24px; }
.demo-controls .eyebrow { margin-bottom: 9px; }
.demo-controls h2 { margin: 0; font-size: 30px; }
.live-badge { display: inline-flex; align-items: center; gap: 7px; padding: 6px 9px; border: 1px solid #305c52; border-radius: 30px; color: #a8e9d4; font-size: 9px; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; }
.live-badge i { width: 6px; height: 6px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 8px var(--mint); }
.demo-presets { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 22px; }
.demo-presets button { padding: 7px 10px; border: 1px solid #2b414c; border-radius: 5px; background: #0a141c; color: #99adb7; font-size: 10px; cursor: pointer; }
.demo-presets button:hover, .demo-presets button:focus-visible { border-color: var(--mint); color: var(--text); outline: none; }
.policy-builder { margin: 0 0 24px; padding: 0; border: 0; }
.policy-builder legend { margin-bottom: 8px; color: #c4d2d8; font-size: 12px; font-weight: 700; }
.policy-builder-heading { display: flex; justify-content: space-between; gap: 15px; margin-bottom: 10px; color: #667b85; font-size: 9px; }
.policy-builder-heading strong { color: var(--mint); font-size: 9px; text-transform: uppercase; }
.demo-policy-stack { display: grid; gap: 7px; }
.demo-policy-card { display: grid; grid-template-columns: 25px minmax(120px, 1fr) auto; gap: 9px 11px; align-items: center; padding: 11px; border: 1px solid #293f4a; border-radius: 7px; background: #071119; }
.policy-order { display: grid; place-items: center; width: 23px; height: 23px; border: 1px solid #315347; border-radius: 50%; color: var(--mint); font: 9px ui-monospace, monospace; }
.demo-policy-card > div:nth-child(2) { min-width: 0; }
.demo-policy-card strong, .demo-policy-card small { display: block; }
.demo-policy-card strong { color: #c8d8de; font-size: 11px; }
.demo-policy-card small { margin-top: 2px; color: #657983; font-size: 8px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.demo-policy-card select { min-width: 82px; padding: 6px 22px 6px 8px; border: 1px solid #35515d; border-radius: 5px; outline: none; background: #0b1921; color: #a9c6d0; font-size: 9px; }
.demo-policy-card select:focus-visible { border-color: var(--mint); }
.policy-card-actions { grid-column: 2 / -1; display: flex; justify-content: flex-end; gap: 5px; }
.policy-card-actions button, .policy-library button { border: 1px solid #2a414c; border-radius: 4px; background: transparent; color: #77909b; font-size: 8px; cursor: pointer; }
.policy-card-actions button { min-width: 25px; height: 23px; padding: 0 6px; }
.policy-card-actions button:last-child { margin-left: 3px; }
.policy-card-actions button:hover:not(:disabled), .policy-card-actions button:focus-visible, .policy-library button:hover, .policy-library button:focus-visible { border-color: var(--mint); color: #d4eee5; outline: none; }
.policy-card-actions button:disabled { cursor: default; opacity: .28; }
.policy-library { margin-top: 13px; padding-top: 12px; border-top: 1px solid #20333d; }
.policy-library > span { display: block; margin-bottom: 8px; color: #647983; font-size: 9px; }
.policy-library > div { display: flex; flex-wrap: wrap; gap: 6px; }
.policy-library button { padding: 6px 9px; }
.policy-library button span { margin-right: 5px; color: var(--mint); }
.policy-library small { color: #647983; font-size: 9px; }
.policy-error { margin: 9px 0 0; color: var(--danger); font-size: 9px; }
#demo-form > label { display: block; margin-bottom: 8px; color: #c4d2d8; font-size: 12px; font-weight: 700; }
#demo-form textarea { width: 100%; min-height: 190px; padding: 15px; border: 1px solid #2c444f; border-radius: 7px; outline: none; resize: vertical; background: #050d13; color: #d9e7eb; font: 12px/1.7 ui-monospace, SFMono-Regular, Menlo, monospace; transition: border-color 150ms ease, box-shadow 150ms ease; }
#demo-form textarea:focus { border-color: #4ea98e; box-shadow: 0 0 0 3px #54d7ad10; }
.demo-policy-row { display: flex; justify-content: space-between; gap: 15px; margin: 15px 0 21px; color: #6f848f; font-size: 10px; }
.demo-policy-row code { color: var(--cyan); }
#demo-form .button { border: 0; cursor: pointer; }
#demo-form .button:disabled { cursor: wait; opacity: .65; }
.demo-privacy { margin: 18px 0 0; color: #667b85; font-size: 10px; }
.demo-result { display: flex; flex-direction: column; gap: 15px; background: radial-gradient(circle at 50% 25%, #12382f22, transparent 48%), #061017; }
.result-empty, .result-loading, .result-error { display: flex; flex: 1; flex-direction: column; align-items: center; justify-content: center; min-height: 420px; text-align: center; }
.result-empty img { margin-bottom: 18px; opacity: .75; filter: drop-shadow(0 9px 20px #54d7ad20); }
.result-empty strong, .result-loading strong, .result-error strong { margin-bottom: 6px; font-size: 17px; }
.result-empty span, .result-loading small, .result-error p { color: #6f858f; font-size: 11px; }
.demo-spinner { display: inline-block; width: 13px; height: 13px; border: 1px solid #4a6e67; border-top-color: var(--mint); border-radius: 50%; animation: demo-spin .8s linear infinite; vertical-align: -2px; }
.result-loading .demo-spinner { width: 28px; height: 28px; margin-bottom: 16px; }
@keyframes demo-spin { to { transform: rotate(360deg); } }
.result-head { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 3px 20px; padding: 18px 20px; border: 1px solid #2c4b44; border-radius: 7px; background: #10251f; }
.result-head small { color: #78968c; font-size: 8px; letter-spacing: .13em; }
.result-head strong { grid-row: 2; color: var(--mint); font-size: 20px; }
.result-head span { grid-row: 1 / 3; color: #759087; font-size: 9px; text-transform: uppercase; }
.result-head.action-deny { border-color: #713d48; background: #2a151c; }
.result-head.action-deny strong { color: var(--danger); }
.decision-card { padding: 18px 20px; border: 1px solid #253a44; border-radius: 7px; background: #09151d; }
.decision-card > div { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 9px; margin-bottom: 15px; }
.decision-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--mint); }
.decision-card.action-deny .decision-dot { background: var(--danger); }
.decision-card.action-redact .decision-dot { background: var(--warning); }
.decision-card > div strong { font-size: 12px; }
.decision-card > div b { color: #90a5af; font-size: 9px; letter-spacing: .06em; text-transform: uppercase; }
.decision-card dl { display: grid; grid-template-columns: 75px 1fr; gap: 7px 12px; margin: 0; font-size: 10px; }
.decision-card dt { color: #5f747e; }
.decision-card dd { margin: 0; color: #aabac1; overflow-wrap: anywhere; }
.decision-card code { color: var(--cyan); font-size: 9px; }
.mutation-view { margin-top: auto; padding-top: 5px; }
.mutation-view small { display: block; margin-bottom: 7px; color: #617681; font-size: 8px; letter-spacing: .12em; }
.mutation-view pre { min-height: 66px; margin: 0; padding: 13px; border: 1px solid #223741; border-radius: 6px; background: #040b10; color: #a9c0c9; font: 10px/1.6 ui-monospace, monospace; white-space: pre-wrap; overflow-wrap: anywhere; }
.result-error button { padding: 8px 13px; border: 1px solid #4a6e67; border-radius: 5px; background: transparent; color: var(--text); cursor: pointer; }
.demo-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 28px; border: 1px solid var(--line); background: var(--line); }
.demo-proof article { min-height: 190px; padding: 27px; background: #0b1820; }
.demo-proof small { color: var(--mint); font-size: 8px; letter-spacing: .13em; }
.demo-proof strong { display: block; margin: 35px 0 10px; font-size: 17px; }
.demo-proof p { margin: 0; color: #7f949e; font-size: 11px; }
.copyright { align-self: end; justify-self: end; margin: 0; color: #526873; font-size: 10px; }

/* Pricing and trust */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.pricing-grid > article { position: relative; display: flex; flex-direction: column; min-height: 610px; padding: 34px; border: 1px solid var(--line); border-radius: 8px; background: #0b1820; }
.pricing-grid > article.featured { border-color: #4a8d7d; background: linear-gradient(180deg, #112a23, #0b1820 50%); box-shadow: 0 25px 70px #0006; transform: translateY(-10px); }
.plan-ribbon { position: absolute; top: 0; right: 24px; padding: 7px 10px; background: var(--mint); color: #04110d; font-size: 7px; font-weight: 900; letter-spacing: .1em; }
.plan-head { min-height: 172px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.plan-head small { color: var(--mint); font-size: 8px; font-weight: 800; letter-spacing: .14em; }
.plan-head h3 { margin: 24px 0 31px; font-size: 22px; }
.plan-head strong { display: block; font-size: 29px; }
.plan-head span { color: #718690; font-size: 9px; }
.pricing-grid article > p { min-height: 88px; margin: 24px 0 16px; color: #8ca0aa; font-size: 12px; }
.pricing-grid ul { display: grid; gap: 11px; margin: 0 0 30px; padding: 0; color: #b0c0c7; font-size: 11px; list-style: none; }
.pricing-grid li::before { margin-right: 9px; color: var(--mint); content: "✓"; }
.pricing-grid .button { margin-top: auto; }
.buying-model { border-top: 1px solid var(--line); background: #08131b; }
.trust-status { display: grid; grid-template-columns: auto 1fr; gap: 5px 30px; align-items: center; width: var(--page); margin: -34px auto 0; padding: 22px 28px; border: 1px solid #34564e; border-radius: 7px; background: #10241f; box-shadow: 0 18px 45px #0005; }
.trust-status > span { grid-row: 1 / 3; color: #8ab7a8; font-size: 9px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.trust-status i { display: inline-block; width: 7px; height: 7px; margin-right: 7px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 8px var(--mint); }
.trust-status strong { font-size: 14px; }
.trust-status small { color: #71858f; font-size: 9px; }
.trust-control-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; border: 1px solid var(--line); background: var(--line); }
.trust-control-grid article { display: flex; flex-direction: column; min-height: 280px; padding: 27px; background: #0b1820; }
.trust-control-grid span { color: var(--mint); font: 8px ui-monospace, monospace; letter-spacing: .13em; }
.trust-control-grid h3 { margin: 34px 0 13px; font-size: 18px; }
.trust-control-grid p { color: #879ba5; font-size: 11px; }
.trust-control-grid b { margin-top: auto; color: #a9c1b9; font-size: 9px; text-transform: uppercase; }
.responsibility-table { border-top: 1px solid var(--line); }
.responsibility-table > div { display: grid; grid-template-columns: .65fr 1fr 1fr; gap: 25px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.responsibility-table strong { color: #657a84; font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.responsibility-table span { color: var(--mint); font-size: 11px; font-weight: 700; }
.responsibility-table p { margin: 0; color: #8ea2ac; font-size: 11px; }
.trust-artifacts { border-top: 1px solid var(--line); background: #08131b; }

/* Solution and provider intent pages */
.intent-hero { min-height: 660px; }
.intent-problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.intent-problem-grid article { min-height: 300px; padding: 33px; border: 1px solid var(--line); background: #0b1820; }
.intent-problem-grid small { color: var(--mint); font-size: 8px; font-weight: 800; letter-spacing: .14em; }
.intent-problem-grid h3 { margin: 55px 0 17px; font-size: 23px; }
.intent-problem-grid p { color: #899da7; font-size: 12px; }
.intent-controls { border-top: 1px solid var(--line); background: #08131b; }
.intent-controls .technical-grid { grid-template-columns: repeat(4, 1fr); }
.workflow-list { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.workflow-list li { display: grid; grid-template-columns: 55px 1fr; align-items: center; min-height: 88px; border-bottom: 1px solid var(--line); }
.workflow-list span { color: var(--mint); font: 9px ui-monospace, monospace; }
.workflow-list p { margin: 0; color: #a0b2ba; font-size: 12px; }
.notice-meta { display: flex; gap: 25px; color: #718690; font-size: 10px; text-transform: uppercase; }
.legal-copy { max-width: 860px; }
.legal-copy h2 { margin: 55px 0 16px; font-size: 30px; }
.legal-copy h2:first-child { margin-top: 0; }
.legal-copy p, .legal-copy li { color: #96aab4; font-size: 14px; }
.legal-copy ul { display: grid; gap: 9px; padding-left: 20px; }

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 1fr auto auto; }
  .site-nav { gap: 18px; margin-right: 25px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { max-width: 820px; }
  .hero-console { width: min(720px, 100%); }
  .outcome-grid, .platform-grid { grid-template-columns: repeat(2, 1fr); }
  .split-heading { gap: 50px; }
  .architecture-flow { grid-template-columns: 1fr 25px 1fr 25px 1fr; }
  .architecture-flow > :nth-child(n + 6) { display: none; }
	.live-playground { grid-template-columns: 1fr; }
	.demo-controls { border-right: 0; border-bottom: 1px solid var(--line); }
	.trust-control-grid { grid-template-columns: repeat(2, 1fr); }
	.pricing-grid { grid-template-columns: 1fr; }
	.pricing-grid > article, .pricing-grid > article.featured { min-height: auto; transform: none; }
	.intent-controls .technical-grid { grid-template-columns: repeat(2, 1fr); }
	.abi-grid { grid-template-columns: 1fr 1fr; }
	.abi-grid .code-window { grid-column: 1 / -1; }
}

@media (max-width: 800px) {
  :root { --page: min(100% - 34px, 680px); }
  .site-header { height: 68px; padding: 0 18px; }
  .header-actions { display: none; }
  .nav-toggle { display: flex; flex-direction: column; gap: 4px; justify-content: center; width: 40px; height: 40px; margin-left: 10px; padding: 0 10px; border: 1px solid var(--line); border-radius: 6px; background: #0c1922; }
  .nav-toggle > span:not(.sr-only) { display: block; width: 18px; height: 1px; background: #b8c8cf; }
  .site-nav { position: fixed; top: 67px; right: 0; left: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; margin: 0; padding: 12px 18px 20px; border-bottom: 1px solid var(--line); background: #071018f7; backdrop-filter: blur(18px); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 13px 8px; border-bottom: 1px solid #1d2d36; }
  .hero { grid-template-columns: minmax(0, 1fr); gap: 55px; padding: 125px 18px 70px; }
  .hero h1 { font-size: clamp(46px, 13vw, 67px); }
  .hero-console { width: 100%; }
  .flow-map { grid-template-columns: 1fr 25px 1.15fr; }
  .flow-map > :nth-child(n + 4) { display: none; }
  .provider-rail { grid-template-columns: 1fr; gap: 12px; padding: 22px 18px; }
  .provider-rail div { flex-wrap: wrap; justify-content: flex-start; }
  .section { padding: 85px 0; }
  .split-heading, .simulator-band, .assurance, .two-column { grid-template-columns: 1fr; gap: 45px; }
	.contact-section { grid-template-columns: 1fr; gap: 50px; padding-right: 18px; padding-left: 18px; }
  .sticky-copy { position: static; }
  .pipeline-visual { grid-template-columns: 1fr; gap: 18px; padding: 22px; }
  .pipe-arrow { width: 1px; height: 30px; margin: auto; }
  .pipe-arrow span { display: none; }
  .pipe-arrow i::after { top: auto; right: -3px; bottom: 0; transform: rotate(135deg); }
  .deployment-grid { grid-template-columns: 1fr; gap: 24px; }
  .deployment-route { width: 1px; height: 35px; margin: auto; }
  .deployment-route span { display: none; }
  .deployment-route i::after { top: auto; right: -3px; bottom: 0; transform: rotate(135deg); }
  .site-footer { grid-template-columns: 1fr; gap: 35px; }
  .footer-links { justify-content: flex-start; }
  .page-hero { min-height: auto; padding: 130px 18px 75px; }
  .technical-grid { grid-template-columns: 1fr; }
	.demo-page { width: min(100% - 34px, 680px); padding-top: 120px; }
	.demo-proof { grid-template-columns: 1fr; }
	.copyright { justify-self: start; }
	.trust-status { grid-template-columns: 1fr; width: min(100% - 34px, 680px); }
	.trust-status > span { grid-row: auto; }
	.responsibility-table > div { grid-template-columns: 1fr; gap: 7px; }
  .intent-problem-grid { grid-template-columns: 1fr; }
	.developer-workbench, .package-layout { grid-template-columns: 1fr; }
	.developer-note { grid-template-columns: 1fr; gap: 8px; }
	.abi-grid { grid-template-columns: 1fr; }
	.abi-grid .code-window { grid-column: auto; }
}

@media (max-width: 560px) {
  .brand span { font-size: 13px; }
  .hero { padding-top: 112px; }
  .hero h1 { font-size: 48px; }
  .hero-lead { font-size: 17px; }
  .button { width: 100%; }
  .trust-line { flex-direction: column; gap: 6px; }
  .console-bar > span { display: none; }
  .flow-map { grid-template-columns: 1fr; gap: 15px; }
  .flow-map .flow-line { width: 1px; height: 25px; margin: auto; }
  .flow-line i { animation: none; }
  .flow-map > :nth-child(3) { display: flex; }
  .decision-feed > div { grid-template-columns: 12px 1fr; }
  .decision-feed time { display: none; }
  .console-foot { flex-wrap: wrap; padding: 8px 13px; }
  .provider-rail div { gap: 10px 17px; }
  .outcome-grid, .platform-grid { grid-template-columns: 1fr; }
  .split-heading { gap: 25px; }
  .section-heading h2, .simulator-copy h2, .assurance h2 { font-size: 38px; }
  .sim-metrics span { padding: 14px 10px; }
  .deployment { padding-right: 17px; padding-left: 17px; }
  .footer-links { gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .security-principles { grid-template-columns: 1fr; }
  .architecture-flow { grid-template-columns: 1fr; gap: 12px; }
  .architecture-flow .arch-arrow { width: 1px; height: 18px; margin: auto; }
  .page-hero h1 { font-size: 48px; }
	.contact-fields { grid-template-columns: 1fr; }
	.contact-fields label.full { grid-column: auto; }
	.contact-form { padding: 22px; }
	.contact-form .section-head > span { display: none; }
	.demo-intro h1 { font-size: 45px; }
	.demo-controls, .demo-result { padding: 21px; }
	.demo-controls .section-head { gap: 15px; }
	.live-badge { display: none; }
	.demo-policy-row { flex-direction: column; gap: 4px; }
	.demo-policy-card { grid-template-columns: 25px minmax(0, 1fr); }
	.demo-policy-card > label { grid-column: 2; }
	.demo-policy-card select { width: 100%; }
	.result-head { grid-template-columns: 1fr; }
	.result-head span { grid-row: auto; }
	.trust-control-grid { grid-template-columns: 1fr; }
	.intent-controls .technical-grid { grid-template-columns: 1fr; }
	.sdk-options { grid-template-columns: 1fr; }
	.developer-facts span { flex-basis: 100%; }
}

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