:root {
  --bg: #0b0d0f;
  --bg-soft: #101317;
  --surface: #15191e;
  --surface-2: #1b2026;
  --surface-light: #f2f0eb;
  --text: #f5f3ee;
  --text-dark: #17191c;
  --muted: #969da5;
  --muted-dark: #646970;
  --gold: #e1b15c;
  --gold-light: #f2ce87;
  --gold-dark: #765b2d;
  --danger: #e07462;
  --line: rgba(255, 255, 255, 0.11);
  --line-dark: rgba(23, 25, 28, 0.13);
  --radius: 22px;
  --radius-small: 13px;
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.38);
  --container: 1180px;
  --header-height: 94px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, Manrope, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

button {
  color: inherit;
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  transform: translateY(-150%);
  padding: 10px 14px;
  color: var(--text-dark);
  background: var(--gold-light);
  border-radius: 8px;
}

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

:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(11, 13, 15, 0.66);
  backdrop-filter: blur(18px);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.site-header.scrolled {
  background: rgba(11, 13, 15, 0.94);
  border-color: var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

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

.brand-logo {
  flex: 0 0 auto;
  width: 59px;
  height: 63px;
  object-fit: contain;
}

.footer-brand-logo {
  width: 54px;
  height: 57px;
}

.brand-copy {
  display: grid;
  gap: 6px;
}

.brand-copy strong {
  font-size: 19px;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 29px;
  color: #c8cbd0;
  font-size: 14px;
}

.site-nav > a:not(.button) {
  transition: color 0.2s ease;
}

.site-nav > a:not(.button):hover {
  color: var(--text);
}

.site-nav .login-link {
  color: var(--gold-light);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 12px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 1px;
  margin-block: 5px;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border: 1px solid var(--gold);
  color: #18150f;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 12px;
  box-shadow: 0 12px 36px rgba(225, 177, 92, 0.14);
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(225, 177, 92, 0.22);
}

.button-small {
  min-height: 48px;
  padding: 12px 19px;
  border-radius: 11px;
  font-size: 13px;
}

.button-ghost,
.button-outline {
  color: var(--text);
  background: transparent;
  border-color: rgba(225, 177, 92, 0.42);
  box-shadow: none;
}

.button-ghost:hover,
.button-outline:hover {
  background: rgba(225, 177, 92, 0.08);
}

.hero {
  position: relative;
  min-height: 860px;
  padding: 150px 0 104px;
  overflow: hidden;
  background:
    radial-gradient(circle at 73% 35%, rgba(199, 145, 60, 0.13), transparent 30%),
    radial-gradient(circle at 18% 25%, rgba(79, 89, 104, 0.12), transparent 28%),
    linear-gradient(180deg, #0b0d0f 0%, #0d1013 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 84%);
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(225, 177, 92, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit-one {
  width: 750px;
  height: 750px;
  top: -350px;
  right: -250px;
}

.hero-orbit-two {
  width: 460px;
  height: 460px;
  bottom: -280px;
  left: 25%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  align-items: center;
  gap: 54px;
}

.hero-copy {
  padding-bottom: 22px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  background: #77ba85;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(119, 186, 133, 0.1);
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.08;
}

h1 {
  max-width: 650px;
  margin-bottom: 24px;
  font-size: clamp(43px, 5.2vw, 72px);
  letter-spacing: -0.055em;
}

h1 span {
  color: var(--gold-light);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 4vw, 54px);
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 12px;
  font-size: 24px;
  letter-spacing: -0.025em;
}

.descriptor {
  max-width: 590px;
  margin: 0 0 18px;
  color: #f0e4cc;
  font-size: 20px;
  line-height: 1.45;
}

.hero-lead {
  max-width: 580px;
  margin: 0 0 30px;
  color: #a9afb6;
  font-size: 16px;
}

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

.hero-actions .button-ghost {
  gap: 10px;
}

.hero-actions .button small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
}

.play-icon {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  color: var(--gold-light);
  border: 1px solid rgba(225, 177, 92, 0.44);
  border-radius: 50%;
  font-size: 9px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 22px;
  margin: 27px 0 0;
  padding: 0;
  color: #bfc3c8;
  font-size: 12px;
  list-style: none;
}

.hero-points li::before {
  content: "✓";
  margin-right: 7px;
  color: var(--gold);
}

.product-window {
  position: relative;
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #101317;
  border-radius: 20px;
  box-shadow: var(--shadow), 0 0 0 12px rgba(255, 255, 255, 0.014);
  overflow: hidden;
  transform: perspective(1100px) rotateY(-2deg) rotateX(1deg);
}

.window-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 9px 15px;
  border-bottom: 1px solid var(--line);
  background: #15191e;
  font-size: 11px;
}

.window-brand,
.window-status {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mini-mark {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--gold-light);
  border: 1px solid rgba(225, 177, 92, 0.48);
  background: rgba(225, 177, 92, 0.08);
  border-radius: 9px;
  font-size: 9px;
  font-weight: 800;
}

.window-status {
  color: var(--muted);
}

.window-status span {
  width: 6px;
  height: 6px;
  background: #72b882;
  border-radius: 50%;
}

.window-body {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  min-height: 515px;
}

.graph-toolbar {
  position: absolute;
  z-index: 4;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
  padding: 6px;
  color: var(--muted);
  background: rgba(20, 24, 29, 0.92);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 8px;
}

.tool {
  padding: 5px 7px;
  border-radius: 5px;
}

.tool.active {
  color: var(--text);
  background: #292f36;
}

.tool-icon {
  padding: 4px 7px;
  color: var(--gold-light);
  font-size: 13px;
}

.graph-canvas {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(225, 177, 92, 0.08), transparent 35%),
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    #0e1115;
  background-size: auto, 26px 26px, 26px 26px, auto;
}

.graph-lines {
  position: absolute;
  inset: 4% 0 0;
  width: 100%;
  height: 90%;
}

.graph-lines path {
  fill: none;
  stroke: #3e464f;
  stroke-width: 1.4;
  stroke-dasharray: 4 5;
}

.graph-lines .accent-line {
  stroke: url(#lineGold);
  stroke-width: 2;
  stroke-dasharray: none;
}

.graph-node {
  position: absolute;
  z-index: 3;
  top: var(--y);
  left: var(--x);
  display: grid;
  min-width: 102px;
  padding: 8px 10px;
  color: var(--text);
  border: 1px solid #39414a;
  background: #1a2026;
  border-radius: 11px;
  transform: translate(-50%, -50%);
  text-align: left;
  cursor: pointer;
  box-shadow: 0 9px 25px rgba(0, 0, 0, 0.28);
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

button.graph-node:hover,
button.graph-node.active {
  z-index: 5;
  border-color: var(--gold);
  background: #25251f;
  transform: translate(-50%, -50%) scale(1.04);
}

.graph-node strong {
  font-size: 9px;
  line-height: 1.2;
}

.graph-node small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 7px;
}

.node-icon {
  position: absolute;
  top: -11px;
  left: 8px;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: var(--gold-light);
  border: 1px solid var(--gold-dark);
  background: #191a18;
  border-radius: 7px;
  font-size: 7px;
}

.node-main {
  min-width: 120px;
  padding: 12px;
  border-color: var(--gold-dark);
  background: #26231c;
}

.node-person .node-icon {
  color: #b9d3ff;
  border-color: #4a6080;
}

.node-risk {
  border-color: rgba(224, 116, 98, 0.5);
}

.node-risk .node-icon {
  color: #ffb1a3;
  border-color: #7d4138;
}

.node-small {
  min-width: auto;
  padding: 5px 7px;
  color: #808993;
  background: #14181d;
  border-radius: 7px;
  font-size: 7px;
  cursor: default;
}

.entity-panel {
  position: relative;
  z-index: 6;
  border-left: 1px solid var(--line);
  background: #15191e;
}

.panel-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 7px;
  border-bottom: 1px solid var(--line);
}

.panel-tab {
  padding: 7px 4px;
  color: var(--muted);
  border: 0;
  background: transparent;
  border-radius: 7px;
  font-size: 9px;
  cursor: pointer;
}

.panel-tab.active {
  color: var(--text);
  background: #242a31;
}

.panel-content {
  padding: 12px;
}

.panel-search input {
  width: 100%;
  padding: 8px 10px;
  color: var(--muted);
  border: 1px solid var(--line);
  background: #101317;
  border-radius: 8px;
  font-size: 8px;
}

.entity-card {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  padding: 9px;
  border: 1px solid rgba(225, 177, 92, 0.3);
  background: rgba(225, 177, 92, 0.06);
  border-radius: 9px;
}

.entity-avatar {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--gold-light);
  background: #27231a;
  border-radius: 8px;
  font-size: 9px;
}

.entity-card strong,
.entity-card small {
  display: block;
}

.entity-card strong {
  font-size: 8px;
}

.entity-card small {
  color: var(--muted);
  font-size: 6px;
}

.risk-chip {
  padding: 3px 5px;
  color: #f2b4a9;
  background: rgba(224, 116, 98, 0.12);
  border-radius: 5px;
  font-size: 6px;
}

.entity-facts {
  margin: 12px 0 0;
}

.entity-facts div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 7px;
}

.entity-facts dt {
  color: var(--muted);
}

.entity-facts dd {
  margin: 0;
  text-align: right;
}

.evidence-note {
  margin-top: 12px;
  padding: 10px;
  color: var(--muted);
  border: 1px solid var(--line);
  background: #11151a;
  border-radius: 9px;
  font-size: 7px;
}

.evidence-note span {
  color: var(--gold-light);
  font-weight: 700;
}

.evidence-note p {
  margin: 5px 0 0;
}

.chat-intro {
  padding: 12px;
  text-align: center;
}

.chat-spark {
  display: block;
  margin-bottom: 5px;
  color: var(--gold-light);
  font-size: 18px;
}

.chat-intro strong {
  font-size: 10px;
}

.chat-intro p {
  color: var(--muted);
  font-size: 7px;
}

.chat-message,
.chat-answer {
  margin-top: 10px;
  padding: 9px;
  border-radius: 9px;
  font-size: 7px;
}

.chat-message {
  margin-left: 20px;
  background: #2a3037;
}

.chat-answer {
  margin-right: 12px;
  color: #d2d5d9;
  border: 1px solid rgba(225, 177, 92, 0.23);
  background: rgba(225, 177, 92, 0.05);
}

.chat-answer span {
  display: block;
  margin-bottom: 4px;
  color: var(--gold-light);
  font-weight: 700;
}

.chat-input {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: flex;
  justify-content: space-between;
  padding: 9px;
  color: var(--muted);
  border: 1px solid var(--line);
  background: #101317;
  border-radius: 8px;
  font-size: 7px;
}

.window-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
  padding: 8px 14px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: #111419;
  font-size: 8px;
}

.window-caption button {
  padding: 0;
  color: var(--gold-light);
  border: 0;
  background: transparent;
  font-size: 8px;
  cursor: pointer;
}

.proof-strip {
  border-block: 1px solid var(--line);
  background: #0e1114;
}

.proof-strip-first {
  padding-top: var(--header-height);
}

.proof-grid {
  display: grid;
  grid-template-columns: 0.9fr 0.9fr 1.35fr;
}

.proof-grid div {
  display: grid;
  align-content: center;
  min-height: 112px;
  padding: 28px 31px;
  border-right: 1px solid var(--line);
}

.proof-grid div:first-child {
  border-left: 1px solid var(--line);
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  margin-bottom: 7px;
  font-size: 16px;
  line-height: 1.25;
}

.proof-grid span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

@media (min-width: 1000px) {
  .proof-grid div:nth-child(3) span {
    white-space: nowrap;
  }
}

.section {
  padding: 112px 0;
}

.section-heading {
  max-width: 750px;
  margin-bottom: 50px;
}

.section-heading p:not(.eyebrow),
.split-heading > p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
}

.centered {
  margin-inline: auto;
  text-align: center;
}

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

.centered-text {
  text-align: center;
}

.contrast-section,
.steps-section,
.scenarios-section,
.video-section,
.faq-section {
  color: var(--text-dark);
  background: var(--surface-light);
}

.contrast-section .section-heading {
  max-width: 900px;
}

.contrast-section .section-heading > p {
  max-width: none;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .contrast-section .section-heading > p {
    white-space: normal;
  }
}

.contrast-grid {
  display: grid;
  grid-template-columns: 1fr 62px 1fr;
  align-items: stretch;
  max-width: 1000px;
  margin: 0 auto;
}

.contrast-card {
  padding: 35px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
}

.muted-card {
  background: #e8e5de;
}

.accent-card {
  color: var(--text);
  border-color: rgba(225, 177, 92, 0.24);
  background: #191c20;
  box-shadow: 0 24px 50px rgba(21, 23, 25, 0.13);
}

.card-number {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--muted-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.accent-card .card-number {
  color: var(--gold-light);
}

.contrast-card ul,
.price-card ul {
  display: grid;
  gap: 13px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.contrast-card li {
  position: relative;
  padding-left: 24px;
  color: var(--muted-dark);
}

.contrast-card li::before {
  content: "—";
  position: absolute;
  left: 0;
}

.muted-card li::before {
  top: 0.62em;
  width: 6px;
  height: 6px;
  content: "";
  border: 1px solid #73777d;
  border-radius: 50%;
}

.accent-card li {
  color: #c8ccd1;
}

.accent-card li::before {
  content: "✓";
  color: var(--gold);
}

.contrast-arrow {
  display: grid;
  place-items: center;
  color: var(--gold-dark);
  font-size: 28px;
}

.fine-print {
  color: var(--muted);
  font-size: 11px;
}

.contrast-section .fine-print {
  margin-top: 25px;
  color: var(--muted-dark);
}

.dark-section {
  background:
    radial-gradient(circle at 82% 20%, rgba(225, 177, 92, 0.08), transparent 24%),
    #0d1013;
}

.dark-section .section-heading {
  max-width: 100%;
}

.capabilities-summary {
  white-space: nowrap;
}

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

.capability-card {
  min-height: 265px;
  padding: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #15191e, #111419);
  border-radius: var(--radius-small);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.capability-card:hover {
  transform: translateY(-4px);
  border-color: rgba(225, 177, 92, 0.33);
}

.featured-capability {
  position: relative;
  grid-column: span 2;
  overflow: hidden;
  background: linear-gradient(140deg, #1b1b17, #12161b);
}

.capability-icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 25px;
  place-items: center;
  color: var(--gold-light);
  border: 1px solid rgba(225, 177, 92, 0.28);
  background: linear-gradient(145deg, rgba(225, 177, 92, 0.12), rgba(225, 177, 92, 0.025));
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045), 0 10px 28px rgba(0, 0, 0, 0.14);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.capability-icon svg {
  width: 25px;
  height: 25px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.capability-card:hover .capability-icon {
  transform: translateY(-2px);
  border-color: rgba(225, 177, 92, 0.52);
  background: linear-gradient(145deg, rgba(225, 177, 92, 0.17), rgba(225, 177, 92, 0.045));
}

.capability-card h3 {
  font-size: 22px;
}

.capability-card p {
  max-width: 470px;
  color: var(--muted);
  font-size: 13px;
}

.capability-points {
  position: relative;
  z-index: 1;
  max-width: 480px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.capability-points li {
  position: relative;
  padding-left: 16px;
  color: var(--muted);
  font-size: 13px;
}

.capability-points li + li {
  margin-top: 8px;
}

.capability-points li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.capability-kicker {
  margin: 0 0 8px;
  color: var(--gold-light) !important;
  font-size: 10px !important;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mini-graph {
  position: absolute;
  width: 390px;
  height: 230px;
  right: -10px;
  bottom: -20px;
  color: #c99b50;
  opacity: 0.52;
  mask-image: linear-gradient(90deg, transparent 0%, black 24%, black 100%);
}

.mini-graph-links {
  fill: none;
  stroke: rgba(225, 177, 92, 0.48);
  stroke-width: 1.25;
}

.mini-graph-relations {
  fill: #15191e;
  stroke: rgba(225, 177, 92, 0.72);
  stroke-width: 1.2;
}

.mini-graph-node {
  fill: #1c1c19;
  stroke: currentColor;
  stroke-width: 1.35;
}

.mini-graph-node path,
.mini-graph-node circle:not(:first-child) {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mini-graph-primary {
  fill: #242017;
  filter: drop-shadow(0 0 16px rgba(225, 177, 92, 0.2));
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.steps-grid li {
  position: relative;
  padding: 34px 28px 0 0;
}

.steps-grid li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: -4px;
  right: 25px;
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
}

.steps-grid span {
  display: block;
  margin-bottom: 42px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
}

.steps-grid h3 {
  font-size: 20px;
}

.steps-grid p {
  color: var(--muted-dark);
  font-size: 13px;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  max-width: none;
  gap: 70px;
}

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

.scenario-card {
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--line-dark);
  background: #ebe8e1;
  border-radius: var(--radius);
  overflow: hidden;
}

.scenario-visual {
  position: relative;
  height: 220px;
  border-bottom: 1px solid var(--line-dark);
  overflow: hidden;
  background: #171b20;
}

.scenario-copy {
  display: flex;
  flex-direction: column;
  padding: 27px;
}

.scenario-label {
  display: block;
  margin-bottom: 17px;
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scenario-copy h3 {
  font-size: 22px;
}

.scenario-copy p {
  min-height: 65px;
  color: var(--muted-dark);
  font-size: 13px;
}

.scenario-points {
  display: grid;
  gap: 11px;
  margin: 0 0 24px;
  padding: 0;
  color: var(--muted-dark);
  font-size: 12px;
  line-height: 1.45;
  list-style: none;
}

.scenario-points li {
  position: relative;
  padding-left: 17px;
}

.scenario-points li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--gold-dark);
  border-radius: 50%;
}

.scenario-copy strong {
  display: block;
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid var(--line-dark);
  font-size: 11px;
}

.supplier-visual {
  background:
    radial-gradient(circle at 50% 50%, rgba(225, 177, 92, 0.075), transparent 34%),
    #151a20;
}

.supplier-visual svg {
  width: 100%;
  height: 100%;
}

.supplier-visual text {
  font-family: Inter, Manrope, "Segoe UI", Arial, sans-serif;
  font-size: 9px;
  text-anchor: middle;
}

.supplier-grid {
  fill: none;
  stroke: rgba(255, 255, 255, 0.025);
  stroke-width: 1;
}

.supplier-boundary {
  fill: rgba(225, 177, 92, 0.018);
  stroke: rgba(225, 177, 92, 0.22);
  stroke-width: 1;
  stroke-dasharray: 6 7;
}

.supplier-links {
  fill: none;
  stroke: #596572;
  stroke-width: 1.2;
}

.supplier-relations {
  fill: #171b20;
  stroke: #a78347;
  stroke-width: 1.2;
}

.supplier-entity {
  fill: #20262d;
  stroke: #687581;
  stroke-width: 1.25;
}

.supplier-entity path,
.supplier-entity circle:not(:first-child) {
  fill: none;
  stroke: #c2cad2;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.supplier-entity text {
  fill: #aeb8c1;
  stroke: none;
}

.supplier-primary {
  fill: #29241a;
  stroke: #b28747;
  filter: drop-shadow(0 0 18px rgba(225, 177, 92, 0.13));
}

.supplier-primary path {
  stroke: var(--gold-light);
}

.supplier-primary text {
  fill: var(--gold-light);
  font-weight: 700;
}

.supplier-risk circle {
  fill: rgba(224, 116, 98, 0.16);
  stroke: var(--danger);
  stroke-width: 1.2;
}

.supplier-risk text {
  fill: #f0a091;
  font-size: 13px;
  font-weight: 800;
}

.chain-visual {
  background:
    radial-gradient(circle at 50% 46%, rgba(225, 177, 92, 0.08), transparent 34%),
    #151a20;
}

.chain-visual svg {
  width: 100%;
  height: 100%;
}

.chain-visual text {
  font-family: Inter, Manrope, "Segoe UI", Arial, sans-serif;
  font-size: 9px;
  text-anchor: middle;
}

.claim-grid {
  fill: none;
  stroke: rgba(255, 255, 255, 0.025);
  stroke-width: 1;
}

.claim-links {
  fill: none;
  stroke: #596572;
  stroke-width: 1.2;
}

.claim-strategy-path {
  stroke: rgba(225, 177, 92, 0.5);
  stroke-dasharray: 4 5;
}

.claim-relations {
  fill: #171b20;
  stroke: #a78347;
  stroke-width: 1.2;
}

.claim-entity {
  fill: #20262d;
  stroke: #687581;
  stroke-width: 1.25;
}

.claim-entity path,
.claim-entity circle:not(:first-child) {
  fill: none;
  stroke: #c2cad2;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.claim-entity text {
  fill: #aeb8c1;
  stroke: none;
}

.claim-document {
  fill: #29241a;
  stroke: #b28747;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 18px rgba(225, 177, 92, 0.14));
}

.claim-document path:not(:first-child) {
  fill: none;
  stroke: var(--gold-light);
  stroke-width: 1.25;
}

.claim-document text {
  fill: var(--gold-light);
  stroke: none;
  font-weight: 700;
}

.claim-check {
  stroke-width: 1.8 !important;
}

.claim-deadline circle {
  fill: rgba(224, 116, 98, 0.14);
  stroke: var(--danger);
  stroke-width: 1.2;
}

.claim-deadline path {
  fill: none;
  stroke: #f0a091;
  stroke-width: 1.3;
  stroke-linecap: round;
}

.claim-deadline text {
  fill: #f0a091;
}

.claim-strategy rect {
  fill: #242017;
  stroke: #9b773e;
  stroke-width: 1.1;
}

.claim-strategy text {
  fill: var(--gold-light);
  font-weight: 700;
}

.knowledge-visual {
  background:
    radial-gradient(circle at 50% 52%, rgba(225, 177, 92, 0.085), transparent 35%),
    #151a20;
}

.knowledge-visual svg {
  width: 100%;
  height: 100%;
}

.knowledge-visual text {
  font-family: Inter, Manrope, "Segoe UI", Arial, sans-serif;
  font-size: 9px;
  text-anchor: middle;
}

.knowledge-grid {
  fill: none;
  stroke: rgba(255, 255, 255, 0.025);
  stroke-width: 1;
}

.knowledge-core-links {
  fill: none;
  stroke: rgba(178, 135, 71, 0.56);
  stroke-width: 1.15;
  stroke-linecap: round;
}

.knowledge-hierarchy-arrows {
  fill: none;
  stroke: #b28747;
  stroke-width: 1.25;
  stroke-linecap: round;
  marker-end: url(#knowledge-arrow);
  opacity: 0.72;
}

#knowledge-arrow path {
  fill: #b28747;
}

.knowledge-relations {
  fill: #171b20;
  stroke: #a78347;
  stroke-width: 1.2;
}

.knowledge-source {
  fill: #20262d;
  stroke: #687581;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.knowledge-source path:not(:first-child),
.knowledge-graph path {
  fill: none;
  stroke: #c2cad2;
}

.knowledge-source text {
  fill: #aeb8c1;
  stroke: none;
}

.knowledge-core {
  fill: #29241a;
  stroke: #b28747;
  stroke-width: 1.35;
  filter: drop-shadow(0 0 18px rgba(225, 177, 92, 0.14));
}

.knowledge-core path {
  fill: none;
}

.knowledge-core text {
  fill: var(--gold-light);
  stroke: none;
  font-weight: 700;
}

.knowledge-monitor {
  fill: #151a20;
  stroke: #9b773e;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.knowledge-monitor path {
  fill: none;
  stroke: var(--gold-light);
}

.knowledge-monitor text {
  fill: #c7a667;
  stroke: none;
}

.security-section {
  position: relative;
  overflow: hidden;
  background: #101317;
}

.security-section::before {
  content: "";
  position: absolute;
  width: 800px;
  height: 800px;
  left: -500px;
  top: -350px;
  border: 1px solid rgba(225, 177, 92, 0.1);
  border-radius: 50%;
}

.security-grid {
  display: grid;
  gap: 34px;
}

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

.security-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: end;
  gap: clamp(38px, 7vw, 100px);
}

.security-intro h2 {
  max-width: 770px;
  margin-bottom: 0;
}

.security-intro p {
  margin: 0 0 4px;
  color: #aab0b7;
  font-size: 16px;
}

.security-showcase {
  position: relative;
  z-index: 1;
  margin: 8px 0 0;
  overflow: hidden;
  border: 1px solid rgba(83, 109, 132, 0.58);
  background: #0d1420;
  border-radius: 18px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(255, 255, 255, 0.015) inset;
}

.security-showcase::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 44px 0 auto;
  height: 110px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(41, 190, 225, 0.035), transparent);
}

.security-showcase-bar {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 17px;
  color: #b8c6d4;
  border-bottom: 1px solid rgba(83, 109, 132, 0.42);
  background: #111a27;
  font-size: 11px;
  letter-spacing: 0.015em;
}

.security-showcase-bar span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.security-showcase-bar i {
  width: 7px;
  height: 7px;
  background: #1cbad8;
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(28, 186, 216, 0.7);
}

.security-showcase-bar small {
  color: #718294;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.security-showcase-actions {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.security-showcase-actions a {
  color: #9fdbe8;
  font-size: 10px;
  text-decoration: none;
  white-space: nowrap;
}

.security-showcase-actions a:hover {
  color: #d5f6fc;
}

.security-showcase img {
  display: block;
  width: 84%;
  height: auto;
  margin: 28px auto;
  border: 1px solid rgba(83, 109, 132, 0.42);
  border-radius: 10px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.security-showcase figcaption {
  display: flex;
  align-items: baseline;
  gap: 9px;
  padding: 16px 18px 17px;
  color: #8f9ba7;
  border-top: 1px solid rgba(83, 109, 132, 0.42);
  background: #111923;
  font-size: 12px;
}

.security-showcase figcaption strong {
  flex: 0 0 auto;
  color: #dbe5ee;
}

.security-workflow {
  position: relative;
  z-index: 1;
}

.security-workflow .check-list {
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #d5d8dc;
  font-size: 13px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.legal-note {
  margin-top: 24px;
  padding: 15px 17px;
  color: #838b94;
  border-left: 2px solid var(--gold-dark);
  background: rgba(255, 255, 255, 0.025);
  font-size: 10px;
}

.share-section {
  background: #0c0f12;
}

.share-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: 85px;
}

.soon-badge {
  display: inline-flex;
  margin-bottom: 25px;
  padding: 6px 10px;
  color: var(--gold-light);
  border: 1px solid rgba(225, 177, 92, 0.34);
  background: rgba(225, 177, 92, 0.06);
  border-radius: 100px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.share-copy > p:not(.eyebrow, .fine-print) {
  color: var(--muted);
}

.compact-list {
  margin-bottom: 16px;
}

.share-preview {
  border: 1px solid var(--line);
  background: #13171c;
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.share-top {
  display: flex;
  justify-content: space-between;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
}

.share-top small {
  color: #8cc298;
}

.share-canvas {
  display: grid;
  grid-template-columns: 1fr 145px;
  min-height: 335px;
}

.share-network {
  position: relative;
  background:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px),
    #0e1114;
  background-size: 24px 24px;
}

.share-network i,
.share-network b {
  position: absolute;
}

.share-network i {
  z-index: 2;
  width: 28px;
  height: 28px;
  border: 1px solid #53606d;
  background: #1c232a;
  border-radius: 50%;
}

.share-network i:nth-child(1) { left: 43%; top: 40%; width: 42px; height: 42px; border-color: var(--gold-dark); background: #2b261d; }
.share-network i:nth-child(2) { left: 14%; top: 18%; }
.share-network i:nth-child(3) { right: 15%; top: 16%; }
.share-network i:nth-child(4) { right: 20%; bottom: 17%; }
.share-network b { z-index: 1; width: 130px; height: 1px; background: #514936; transform-origin: left; }
.share-network b:nth-of-type(1) { left: 18%; top: 23%; transform: rotate(23deg); }
.share-network b:nth-of-type(2) { left: 51%; top: 44%; transform: rotate(-30deg); }
.share-network b:nth-of-type(3) { left: 51%; top: 49%; transform: rotate(29deg); }

.share-list {
  display: grid;
  align-content: start;
  gap: 7px;
  padding: 15px 12px;
  border-left: 1px solid var(--line);
  background: #171b20;
  font-size: 8px;
}

.share-list strong {
  margin-bottom: 4px;
  color: var(--muted);
}

.share-list span {
  padding: 8px;
  border: 1px solid var(--line);
  background: #111419;
  border-radius: 7px;
}

.video-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr;
  gap: 14px;
}

.video-card {
  position: relative;
  display: grid;
  min-height: 310px;
  padding: 20px;
  color: var(--text);
  border: 0;
  background:
    radial-gradient(circle at 40% 42%, rgba(225, 177, 92, 0.15), transparent 22%),
    linear-gradient(145deg, #22272d, #111419);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: left;
  cursor: pointer;
}

.video-card::before,
.video-card::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(225, 177, 92, 0.15);
  border-radius: 50%;
}

.video-card::before { width: 300px; height: 300px; right: -150px; top: -160px; }
.video-card::after { width: 120px; height: 120px; left: -60px; bottom: -60px; }

.video-card-main {
  min-height: 390px;
  background:
    radial-gradient(circle at 50% 42%, rgba(225, 177, 92, 0.19), transparent 24%),
    linear-gradient(145deg, #282720, #12161b);
}

.video-duration {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 5px 8px;
  color: var(--muted);
  border: 1px solid var(--line);
  background: rgba(0,0,0,.25);
  border-radius: 7px;
  font-size: 9px;
}

.video-play {
  align-self: center;
  justify-self: center;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--gold-light);
  border: 1px solid var(--gold-dark);
  background: rgba(225, 177, 92, 0.07);
  border-radius: 50%;
  font-size: 15px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.video-card:hover .video-play {
  transform: scale(1.08);
  background: rgba(225, 177, 92, 0.13);
}

.video-title {
  align-self: end;
}

.video-title strong,
.video-title small {
  display: block;
}

.video-title strong {
  font-size: 17px;
}

.video-title small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
}

.pricing-section {
  background: #0d1013;
}

.pricing-heading {
  margin-bottom: 35px;
}

.pricing-heading-secondary {
  display: block;
  margin-top: 4px;
  font-size: 0.66em;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.pricing-heading .pricing-license-note {
  max-width: none;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .pricing-heading .pricing-license-note {
    white-space: normal;
  }
}

.billing-toggle {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-top: 27px;
  padding: 5px;
  border: 1px solid var(--line);
  background: #111419;
  border-radius: 12px;
}

.billing-toggle button {
  padding: 9px 15px;
  color: var(--muted);
  border: 0;
  background: transparent;
  border-radius: 8px;
  font-size: 11px;
  cursor: pointer;
}

.billing-toggle button.active {
  color: var(--text);
  background: #252a30;
}

.billing-toggle span {
  margin-left: 5px;
  color: var(--gold-light);
  font-size: 8px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 14px;
  padding-top: 20px;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--line);
  background: #14181d;
  border-radius: var(--radius);
}

.price-card.recommended {
  border-color: rgba(225, 177, 92, 0.5);
  background: linear-gradient(160deg, #211f19, #15191e 45%);
  transform: translateY(-12px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.24);
}

.recommend-label {
  position: absolute;
  top: -13px;
  left: 50%;
  padding: 6px 12px;
  color: #18150f;
  background: var(--gold-light);
  border-radius: 100px;
  transform: translateX(-50%);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card-head {
  min-height: 128px;
}

.plan-index {
  display: block;
  margin-bottom: 14px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 800;
}

.price-card h3 {
  margin-bottom: 8px;
  font-size: 27px;
}

.price-card-head p {
  color: var(--muted);
  font-size: 12px;
}

.price {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  padding: 24px 0 6px;
  border-top: 1px solid var(--line);
}

.price strong {
  font-size: clamp(32px, 3vw, 43px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.price > span {
  display: flex;
  align-items: baseline;
  gap: 5px;
  color: var(--gold-light);
  font-size: 15px;
}

.price small {
  color: var(--muted);
  font-size: 9px;
}

.price-note {
  margin: 6px 0 8px;
  color: var(--gold-light);
  font-size: 10px;
}

.person-request-price {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}

.person-request-price strong {
  color: var(--text);
}

.price-card ul {
  flex: 1;
  margin: 22px 0 30px;
}

.price-card li {
  position: relative;
  padding-left: 20px;
  color: #aeb4bb;
  font-size: 11px;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.price-card li strong {
  color: var(--text);
}

.price-card li.plan-feature-unavailable {
  color: #737b84;
}

.price-card li.plan-feature-unavailable::before {
  content: "×";
  color: #e26666;
  font-size: 15px;
  font-weight: 700;
  line-height: 0.8;
}

.plan-button {
  width: 100%;
}

.pricing-footnotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 10px;
}

.pricing-footnotes p {
  margin: 0;
}

.enterprise-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  margin-top: 35px;
  padding: 34px;
  border: 1px solid rgba(225, 177, 92, 0.3);
  background:
    radial-gradient(circle at 85% 10%, rgba(225,177,92,.1), transparent 27%),
    #171a1e;
  border-radius: var(--radius);
}

.enterprise-card h3 {
  margin-bottom: 8px;
}

.enterprise-card p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.enterprise-action {
  display: grid;
  justify-items: end;
  gap: 14px;
}

.enterprise-action strong {
  font-size: 14px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 90px;
}

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

.faq-list details {
  border-bottom: 1px solid var(--line-dark);
}

.faq-list summary {
  position: relative;
  padding: 22px 42px 22px 0;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 18px;
  right: 0;
  color: var(--gold-dark);
  font-size: 25px;
  font-weight: 300;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: -4px 0 24px;
  padding-right: 42px;
  color: var(--muted-dark);
  font-size: 13px;
}

.request-section {
  padding: 112px 0;
  background:
    radial-gradient(circle at 10% 40%, rgba(225,177,92,.1), transparent 26%),
    #0c0f12;
}

.request-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  gap: 85px;
}

.request-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.request-steps {
  display: grid;
  gap: 13px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.request-steps li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #c1c6cb;
  font-size: 12px;
}

.request-steps span {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  color: var(--gold-light);
  border: 1px solid var(--gold-dark);
  border-radius: 50%;
  font-size: 8px;
}

.lead-form {
  display: grid;
  gap: 17px;
  padding: 32px;
  border: 1px solid var(--line);
  background: #15191e;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.lead-form label:not(.consent-label) {
  display: grid;
  gap: 7px;
}

.lead-form label > span {
  color: #c6cbd0;
  font-size: 10px;
  font-weight: 650;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--text);
  border: 1px solid #343b43;
  background: #0f1216;
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(225, 177, 92, 0.07);
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: #646c75;
}

.lead-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #737b84 50%), linear-gradient(135deg, #737b84 50%, transparent 50%);
  background-position: calc(100% - 18px) 52%, calc(100% - 13px) 52%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.lead-form textarea {
  resize: vertical;
}

.consent-label {
  display: grid;
  grid-template-columns: 17px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 9px;
}

.consent-label input {
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: var(--gold);
}

.consent-label a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-submit {
  width: 100%;
}

.form-status {
  min-height: 20px;
  margin: -5px 0 0;
  color: var(--gold-light);
  font-size: 10px;
  text-align: center;
}

.form-status.error {
  color: #ffb1a3;
}

.form-status.success {
  color: #a9dfb6;
}

.lead-form .field-invalid > input,
.lead-form .field-invalid > select,
.lead-form .field-invalid > textarea,
.lead-form .field-invalid.consent-label input {
  border-color: #d76f60;
  box-shadow: 0 0 0 3px rgba(215, 111, 96, 0.08);
}

.honeypot {
  position: absolute;
  left: -10000px;
}

.site-footer {
  padding: 62px 0 25px;
  border-top: 1px solid var(--line);
  background: #090b0d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.7fr 0.85fr 0.9fr;
  gap: 50px;
}

.footer-brand p {
  max-width: 320px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 11px;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 9px;
  color: var(--muted);
  font-size: 10px;
}

.footer-links strong,
.footer-cta strong {
  margin-bottom: 7px;
  color: var(--text);
  font-size: 11px;
}

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

.footer-cta {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 10px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  padding-top: 20px;
  color: #656c74;
  border-top: 1px solid var(--line);
  font-size: 9px;
}

.video-dialog {
  width: min(700px, calc(100% - 32px));
  padding: 0;
  color: var(--text);
  border: 1px solid rgba(225, 177, 92, 0.25);
  background: #14181d;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.video-dialog::backdrop {
  background: rgba(5, 7, 9, 0.82);
  backdrop-filter: blur(8px);
}

.dialog-close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--text);
  border: 1px solid var(--line);
  background: #1c2127;
  border-radius: 10px;
  font-size: 22px;
  cursor: pointer;
}

.video-placeholder {
  display: grid;
  min-height: 430px;
  place-content: center;
  padding: 50px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(225, 177, 92, 0.12), transparent 26%),
    #111419;
}

.video-placeholder .large {
  margin: 0 auto 25px;
}

.video-placeholder h2 {
  margin-bottom: 8px;
  font-size: 32px;
}

.video-placeholder p {
  max-width: 430px;
  color: var(--muted);
}

@media (max-width: 1080px) {
  .site-nav { gap: 20px; }
  .site-nav a:not(.button, .login-link) { display: none; }
  .hero { padding-top: 130px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .product-window { max-width: 820px; transform: none; }
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
  .scenario-grid { grid-template-columns: 1fr 1fr; }
  .scenario-card:last-child { grid-column: span 2; }
  .video-grid { grid-template-columns: 1fr 1fr; }
  .video-card-main { grid-column: span 2; }
  .price-card { padding: 24px; }
  .price strong { font-size: 32px; }
  .footer-grid { grid-template-columns: 1.3fr 0.7fr 0.8fr; }
  .footer-cta { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  :root { --header-height: 78px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .menu-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 16px 20px 24px;
    border-bottom: 1px solid var(--line);
    background: rgba(11, 13, 15, 0.98);
  }
  .site-nav.open { display: grid; }
  .site-nav a:not(.button) { display: block !important; padding: 13px 4px; border-bottom: 1px solid var(--line); }
  .site-nav .button { margin-top: 14px; }
  .hero { min-height: 0; padding: 120px 0 75px; }
  .hero-grid { gap: 40px; }
  h1 { font-size: clamp(40px, 12vw, 65px); }
  .descriptor { font-size: 18px; }
  .window-body { grid-template-columns: 1fr 180px; min-height: 470px; }
  .proof-grid { grid-template-columns: repeat(3, 1fr); }
  .proof-grid div { min-height: 108px; padding: 22px 18px; }
  .proof-grid strong { font-size: 14px; }
  .proof-grid span { font-size: 11px; }
  .section, .request-section { padding: 82px 0; }
  .contrast-grid { grid-template-columns: 1fr; gap: 12px; }
  .contrast-arrow { transform: rotate(90deg); }
  .capability-grid { grid-template-columns: 1fr; }
  .capabilities-summary { white-space: normal; }
  .featured-capability { grid-column: auto; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 35px 20px; border: 0; }
  .steps-grid li { padding: 0; border-top: 1px solid var(--line-dark); }
  .steps-grid li:not(:last-child)::after { right: 0; }
  .split-heading { grid-template-columns: 1fr; gap: 15px; }
  .scenario-grid { grid-template-columns: 1fr; }
  .scenario-card:last-child { grid-column: auto; }
  .security-grid, .share-grid, .request-grid { grid-template-columns: 1fr; gap: 55px; }
  .security-intro { grid-template-columns: 1fr; gap: 20px; }
  .security-workflow .check-list { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .video-card-main { grid-column: auto; }
  .pricing-grid { grid-template-columns: 1fr; gap: 24px; }
  .price-card.recommended { transform: none; }
  .price-card-head { min-height: 0; }
  .pricing-footnotes { grid-template-columns: 1fr; }
  .enterprise-card { grid-template-columns: 1fr; }
  .enterprise-action { justify-items: start; }
  .faq-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .brand-logo { width: 48px; height: 51px; }
  .footer-brand-logo { width: 48px; height: 51px; }
  .brand-copy { gap: 4px; }
  .brand-copy strong { font-size: 16px; }
  .brand-copy small { font-size: 9px; }
  .hero-actions { align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .hero-points { display: grid; }
  .product-window { border-radius: 14px; overflow: visible; }
  .window-bar { border-radius: 14px 14px 0 0; }
  .window-status { display: none; }
  .window-body { display: block; min-height: 0; }
  .graph-canvas { min-height: 410px; }
  .entity-panel { border-top: 1px solid var(--line); border-left: 0; }
  .panel-content { min-height: 280px; }
  .chat-input { position: static; margin-top: 40px; }
  .window-caption { border-radius: 0 0 14px 14px; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-grid div { min-height: 0; padding: 22px 20px; border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
  .proof-grid div:first-child { border-top: 0; }
  .proof-grid strong { font-size: 16px; }
  .proof-grid span { font-size: 12px; }
  .contrast-card { padding: 27px 23px; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid span { margin-bottom: 20px; }
  .mini-graph { opacity: 0.25; right: -50px; }
  .security-showcase { border-radius: 12px; }
  .security-showcase-bar { padding: 0 12px; }
  .security-showcase-bar small { display: none; }
  .security-showcase img { width: calc(100% - 24px); margin: 14px auto; border-radius: 7px; }
  .security-showcase figcaption { display: grid; gap: 4px; }
  .share-canvas { grid-template-columns: 1fr 115px; min-height: 270px; }
  .form-row { grid-template-columns: 1fr; }
  .lead-form { padding: 22px 18px; }
  .billing-toggle { width: 100%; }
  .price-card { padding: 25px 21px; }
  .enterprise-card { padding: 27px 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { display: grid; gap: 7px; }
  .video-placeholder { min-height: 350px; padding: 35px 22px; }
}

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

/* Product-accurate, read-only MindPlaces graph demonstration. */
.hero {
  padding-top: 118px;
}

.hero.graph-showcase {
  min-height: 0;
  padding: 22px 0 56px;
}

.hero .hero-grid {
  width: min(1660px, calc(100% - 28px));
  max-width: none;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
}

.hero .hero-copy {
  max-width: 1340px;
  padding-bottom: 0;
}

.hero .hero-copy h1 {
  max-width: 1320px;
  margin-bottom: 16px;
  font-size: clamp(42px, 4.35vw, 64px);
}

.hero .hero-copy .descriptor,
.hero .hero-copy .hero-lead {
  max-width: 1120px;
}

.hero .hero-copy .descriptor {
  margin-bottom: 10px;
  font-size: 18px;
}

.hero .hero-copy .hero-lead {
  margin-bottom: 20px;
  font-size: 14px;
}

.hero .hero-copy .hero-points {
  margin-top: 18px;
}

.live-demo {
  min-width: 0;
}

.service-screenshot-viewport {
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.48), 0 0 0 10px rgba(255, 255, 255, 0.012);
}

.service-gallery {
  position: relative;
  padding-bottom: 34px;
}

.service-gallery-track {
  display: flex;
  transform: translate3d(0, 0, 0);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
  touch-action: pan-y;
  will-change: transform;
}

.service-screenshot-frame {
  flex: 0 0 100%;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid #334155;
  border-radius: 16px;
  background: #020617;
}

.service-screenshot-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.service-gallery-arrow {
  position: absolute;
  top: calc(50% - 17px);
  z-index: 2;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  padding: 0 0 4px;
  color: #f8fafc;
  border: 1px solid rgba(148, 163, 184, 0.5);
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.86);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.34);
  font: 300 38px/1 Inter, "Segoe UI", sans-serif;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.service-gallery-arrow:hover {
  color: #fff;
  border-color: rgba(225, 177, 92, 0.78);
  background: rgba(28, 38, 56, 0.96);
}

.service-gallery-arrow:focus-visible,
.service-gallery-dots button:focus-visible {
  outline: 3px solid rgba(96, 165, 250, 0.85);
  outline-offset: 3px;
}

.service-gallery-prev {
  left: 18px;
}

.service-gallery-next {
  right: 18px;
}

.service-gallery-footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
}

.service-gallery-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-gallery-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #475569;
  cursor: pointer;
  transition: width 180ms ease, background-color 180ms ease;
}

.service-gallery-dots button[aria-current="true"] {
  width: 26px;
  background: var(--gold-light);
}

.service-gallery-status {
  position: absolute;
  right: 2px;
  color: #94a3b8;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 640px) {
  .service-gallery-arrow {
    top: calc(50% - 14px);
    width: 38px;
    height: 38px;
    font-size: 30px;
  }

  .service-gallery-prev {
    left: 8px;
  }

  .service-gallery-next {
    right: 8px;
  }
}

.demo-disclosure {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 42px;
  padding: 9px 14px;
  color: #aeb8c8;
  border: 1px solid #334155;
  border-bottom: 0;
  background: #111827;
  border-radius: 14px 14px 0 0;
  font-size: 11px;
}

.demo-disclosure span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #dbeafe;
  font-weight: 700;
}

.demo-disclosure i {
  width: 7px;
  height: 7px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.demo-disclosure strong {
  color: #f1f5f9;
}

.demo-disclosure small {
  margin-left: auto;
  color: #7f8ca1;
}

.mp-preview-viewport {
  width: 100%;
  overflow: auto hidden;
  border-radius: 16px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.48), 0 0 0 10px rgba(255, 255, 255, 0.012);
  scrollbar-color: #475569 #111827;
  scrollbar-width: thin;
}

.mp-frame {
  position: relative;
  display: grid;
  width: 100%;
  min-width: 1040px;
  height: clamp(720px, 78vh, 960px);
  grid-template-rows: minmax(0, 1fr);
  color: #e5e7eb;
  border: 1px solid #334155;
  background: #111827;
  overflow: hidden;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

.mp-frame:fullscreen {
  width: 100vw;
  min-width: 0;
  height: 100vh;
  grid-template-rows: minmax(0, 1fr);
  border: 0;
}

.mp-content-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid #334155;
  background: #1f2937;
}

.mp-content-title strong {
  font-size: 17px;
}

.mp-content-title button {
  display: grid;
  width: 44px;
  height: 42px;
  place-items: center;
  color: #64748b;
  border: 1px solid #475569;
  background: #172033;
  border-radius: 9px;
  cursor: not-allowed;
}

.mp-content-tabs {
  display: flex;
  align-items: stretch;
  gap: 2px;
  padding: 0 16px;
  border-bottom: 1px solid #334155;
  background: #1f2937;
  overflow-x: auto;
}

.mp-content-tabs button {
  position: relative;
  min-width: max-content;
  padding: 0 19px;
  color: #8c98a9;
  border: 0;
  background: transparent;
  font-size: 12px;
}

.mp-content-tabs button.active {
  color: #60a5fa;
}

.mp-content-tabs button.active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: #3b82f6;
}

.mp-content-tabs button:disabled {
  opacity: 1;
  cursor: default;
}

.mp-workspace {
  display: grid;
  min-height: 0;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 26.5%);
}

.mp-graph-surface {
  position: relative;
  min-width: 0;
  min-height: 0;
  background: #020617;
  overflow: hidden;
}

.mp-graph-3d {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  background: #020617;
}

.mp-graph-3d[hidden] {
  display: none;
}

.mp-graph-3d > div,
.mp-graph-3d .scene-container {
  width: 100%;
  height: 100%;
}

.mp-graph-surface canvas {
  display: block;
  width: 100%;
  height: 100%;
  outline: 0;
  cursor: grab;
  touch-action: none;
}

.mp-graph-surface canvas:active {
  cursor: grabbing;
}

.mp-graph-surface canvas:focus-visible {
  box-shadow: inset 0 0 0 2px #60a5fa;
}

.mp-graph-controls {
  position: absolute;
  z-index: 5;
  top: 16px;
  right: 18px;
  display: flex;
  gap: 8px;
}

.mp-graph-controls button {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  padding: 0;
  color: #cbd5e1;
  border: 1px solid #334155;
  background: rgba(30, 41, 59, 0.92);
  border-radius: 9px;
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.26);
  font-size: 16px;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.mp-graph-controls button:hover:not(:disabled) {
  color: #fff;
  border-color: #64748b;
  background: #273449;
}

.mp-graph-controls button.active {
  color: #c4b5fd;
  border-color: #7c3aed;
  background: rgba(76, 29, 149, 0.48);
}

.mp-graph-controls button.data-control {
  color: #34d399;
}

.mp-graph-controls button:disabled {
  color: #64748b;
  cursor: default;
}

.mp-graph-controls .mode-control {
  width: 42px;
  font-size: 13px;
  font-weight: 800;
}

.mp-view-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  padding: 6px 9px;
  color: #94a3b8;
  border: 1px solid rgba(71, 85, 105, 0.7);
  background: rgba(15, 23, 42, 0.82);
  border-radius: 7px;
  font-size: 10px;
  pointer-events: none;
}

.mp-synthetic-badge {
  position: absolute;
  z-index: 4;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  color: #cbd5e1;
  border: 1px solid rgba(71, 85, 105, 0.75);
  background: rgba(15, 23, 42, 0.86);
  border-radius: 8px;
  font-size: 10px;
  pointer-events: none;
}

.mp-synthetic-badge i {
  width: 7px;
  height: 7px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.mp-details-sidebar {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 0;
  grid-template-rows: 56px minmax(0, 1fr) 50px;
  border-left: 1px solid #334155;
  background: #1f2937;
}

.mp-sidebar-head {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  border-bottom: 1px solid #334155;
  font-size: 12px;
}

.mp-sidebar-head strong {
  overflow: hidden;
  color: #f3f4f6;
  font-size: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mp-sidebar-head > span {
  color: #9aa6b5;
  font-size: 19px;
}

.mp-entity-list-view,
.mp-entity-card-view {
  min-height: 0;
  overflow: hidden;
}

.mp-entity-list-view[hidden],
.mp-entity-card-view[hidden] {
  display: none !important;
}

.mp-entity-list-view {
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
}

.mp-sidebar-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 40px;
  gap: 8px;
  padding: 12px 10px 5px;
}

.mp-sidebar-search label {
  min-width: 0;
}

.mp-sidebar-search input {
  width: 100%;
  height: 38px;
  padding: 0 12px 0 34px;
  color: #e5e7eb;
  border: 1px solid #475569;
  background:
    radial-gradient(circle at 18px 50%, transparent 0 4px, #64748b 4.5px 5.5px, transparent 6px),
    linear-gradient(45deg, transparent 48%, #64748b 49% 52%, transparent 53%) 22px 23px / 8px 8px no-repeat,
    #111827;
  border-radius: 7px;
  outline: 0;
  font-size: 12px;
}

.mp-sidebar-search input:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.12);
}

.mp-sidebar-search button {
  color: #94a3b8;
  border: 1px solid #475569;
  background: #111827;
  border-radius: 7px;
  cursor: pointer;
}

.mp-sidebar-search button.active {
  color: #dbeafe;
  border-color: #3b82f6;
  background: #1e3a8a;
}

.mp-entity-count {
  margin: 0;
  padding: 3px 10px 10px;
  color: #94a3b8;
  border-bottom: 1px solid #334155;
  font-size: 11px;
}

.mp-entity-list {
  display: grid;
  align-content: start;
  gap: 7px;
  min-height: 0;
  padding: 9px;
  overflow-y: auto;
  scrollbar-color: #475569 #1f2937;
  scrollbar-width: thin;
}

.mp-entity-row {
  display: grid;
  min-height: 50px;
  grid-template-columns: 25px 28px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 7px;
  padding: 7px 9px;
  color: #e5e7eb;
  border: 1px solid #37465b;
  background: rgba(30, 41, 59, 0.6);
  border-radius: 7px;
  cursor: pointer;
  transition: border-color 0.16s ease, background 0.16s ease;
}

.mp-entity-row:hover,
.mp-entity-row.focused {
  border-color: #64748b;
  background: #273449;
}

.mp-entity-row.selected {
  border-color: rgba(59, 130, 246, 0.75);
  background: rgba(30, 64, 175, 0.22);
}

.mp-entity-row input {
  width: 16px;
  height: 16px;
  accent-color: #2563eb;
  cursor: pointer;
}

.mp-entity-row .entity-type-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #c4b5fd;
  font-size: 18px;
}

.mp-entity-row strong {
  overflow: hidden;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mp-entity-row .row-chevron {
  color: #7c8999;
  font-size: 17px;
}

.mp-sidebar-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 5px;
  padding: 5px 8px;
  border-top: 1px solid #334155;
  background: #1f2937;
}

.mp-sidebar-bottom button {
  height: 38px;
  color: #94a3b8;
  border: 0;
  background: transparent;
  border-radius: 7px;
  font-size: 11px;
}

.mp-sidebar-bottom button.active {
  color: #eff6ff;
  background: #1e40af;
}

.mp-sidebar-bottom button:disabled {
  opacity: 1;
}

.mp-entity-card-view:not([hidden]) {
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
}

.mp-card-heading {
  display: grid;
  grid-template-columns: 32px 32px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  padding: 12px 10px;
  border-bottom: 1px solid #334155;
}

.mp-card-heading > button {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #cbd5e1;
  border: 1px solid #475569;
  background: #111827;
  border-radius: 6px;
  cursor: pointer;
}

.mp-card-heading > span {
  font-size: 21px;
}

.mp-card-heading strong,
.mp-card-heading small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mp-card-heading strong {
  color: #f8fafc;
  font-size: 12px;
}

.mp-card-heading small {
  margin-top: 3px;
  color: #94a3b8;
  font-size: 9px;
}

.mp-card-tabs {
  display: flex;
  min-width: 0;
  gap: 2px;
  padding: 7px;
  border-bottom: 1px solid #334155;
  overflow-x: auto;
}

.mp-card-tabs button {
  min-width: max-content;
  padding: 7px 8px;
  color: #94a3b8;
  border: 0;
  background: transparent;
  border-radius: 6px;
  font-size: 9px;
  cursor: pointer;
}

.mp-card-tabs button.active {
  color: #eff6ff;
  background: #334155;
}

.mp-card-scroll {
  min-height: 0;
  padding: 12px;
  overflow-y: auto;
  scrollbar-color: #475569 #1f2937;
  scrollbar-width: thin;
}

.synthetic-flag {
  margin: 0 0 12px;
  padding: 8px 9px;
  color: #a7f3d0;
  border: 1px solid rgba(16, 185, 129, 0.35);
  background: rgba(6, 78, 59, 0.22);
  border-radius: 7px;
  font-size: 9px;
  line-height: 1.45;
}

.mp-summary-section {
  margin-bottom: 11px;
  padding: 11px;
  border: 1px solid #374151;
  background: rgba(17, 24, 39, 0.54);
  border-radius: 8px;
}

.mp-summary-section:last-child {
  margin-bottom: 0;
}

.mp-summary-section h4 {
  margin: 0 0 8px;
  color: #bfdbfe;
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.mp-summary-section p {
  margin: 0 0 7px;
  color: #cbd5e1;
  font-size: 10px;
  line-height: 1.45;
}

.mp-summary-section p:last-child {
  margin-bottom: 0;
}

.mp-summary-section strong {
  color: #f8fafc;
}

.mp-param-list {
  margin: 0;
}

.mp-param-list div {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #334155;
  font-size: 9px;
}

.mp-param-list dt {
  color: #94a3b8;
}

.mp-param-list dd {
  margin: 0;
  color: #f1f5f9;
  text-align: right;
  overflow-wrap: anywhere;
}

.mp-file-row,
.mp-relation-row {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  margin-bottom: 7px;
  padding: 9px;
  color: #dbe4ef;
  border: 1px solid #374151;
  background: #111827;
  border-radius: 7px;
  font-size: 9px;
}

.mp-file-row strong,
.mp-file-row small,
.mp-relation-row strong,
.mp-relation-row small {
  display: block;
}

.mp-file-row small,
.mp-relation-row small {
  margin-top: 2px;
  color: #94a3b8;
}

.legal-page {
  min-height: 100vh;
  padding: 72px 0;
  background: #f8fafc;
  color: #172033;
}

.legal-content {
  max-width: 880px;
}

.legal-back {
  display: inline-block;
  margin-bottom: 32px;
  color: #233fba;
  font-weight: 700;
  text-decoration: none;
}

.legal-back:hover {
  text-decoration: underline;
}

.legal-content h1 {
  max-width: 680px;
  margin: 0 0 12px;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.16;
}

.legal-content h2 {
  margin: 36px 0 12px;
  font-size: 20px;
  line-height: 1.25;
}

.legal-content p,
.legal-content li {
  max-width: 780px;
  color: #43506a;
  font-size: 16px;
  line-height: 1.65;
}

.legal-content ul {
  padding-left: 22px;
}

.legal-content a {
  color: #233fba;
}

.legal-content code {
  overflow-wrap: anywhere;
}

.legal-meta {
  margin: 0;
  color: #64748b !important;
}

@media (max-width: 820px) {
  .hero .hero-grid {
    width: min(100% - 20px, 1660px);
  }

  .demo-disclosure {
    display: grid;
    gap: 4px;
  }

  .demo-disclosure small {
    margin-left: 0;
  }

  .mp-frame {
    height: 760px;
  }

  .legal-page {
    padding: 40px 0;
  }
}
