:root {
  --ink: #101827;
  --ink-soft: #344258;
  --muted: #627087;
  --paper: #ffffff;
  --paper-soft: #f5f7fb;
  --line: #d9deea;
  --line-dark: #334158;
  --violet: #6f5cf6;
  --violet-dark: #5541dd;
  --violet-soft: #eeecff;
  --green: #0b8a5c;
  --green-soft: #e5f6ee;
  --max-width: 1180px;
  --header-height: 72px;
  color-scheme: light;
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
  letter-spacing: 0;
}

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

:focus-visible {
  outline: 3px solid #1f70ff;
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 4px;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.header-inner {
  width: min(calc(100% - 48px), var(--max-width));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
  color: var(--ink);
  text-decoration: none;
  font-size: 19px;
  font-weight: 750;
  line-height: 1.1;
}

.brand img {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
}

.brand-name {
  white-space: nowrap;
}

.brand-name strong {
  color: var(--violet-dark);
  font-weight: 780;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  font-size: 15px;
  font-weight: 650;
}

.site-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a:hover {
  color: var(--violet-dark);
}

.site-nav .nav-login {
  color: var(--violet-dark);
  font-weight: 750;
}

.site-nav .nav-cta {
  padding: 10px 16px;
  color: var(--paper);
  background: var(--violet);
  border-radius: 6px;
}

.site-nav .nav-cta:hover {
  color: var(--paper);
  background: var(--violet-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.hero {
  position: relative;
  min-height: 680px;
  height: calc(100svh - 120px);
  max-height: 800px;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
  isolation: isolate;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -3;
  object-fit: cover;
  object-position: center 18%;
  filter: saturate(0.78) contrast(1.05);
}

.hero-shade {
  z-index: -2;
  background: rgba(7, 14, 27, 0.82);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: -1;
  width: 58%;
  background: rgba(10, 17, 31, 0.78);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-inner {
  width: min(calc(100% - 48px), var(--max-width));
  height: 100%;
  margin: 0 auto;
  padding: 70px 0 150px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--violet-dark);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #c9c2ff;
}

.status-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  background: #38d59a;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(56, 213, 154, 0.16);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: 76px;
  font-weight: 820;
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.hero h1 .product-prefix {
  display: block;
  color: inherit;
}

.hero h1 .product-suffix {
  display: block;
  color: #9a8cff;
}

.hero-lead {
  max-width: 690px;
  margin: 28px 0 0;
  color: #e0e6f0;
  font-size: 20px;
  line-height: 1.58;
}

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

.button {
  min-height: 50px;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 750;
  line-height: 1.25;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 6px;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.button-primary {
  color: var(--paper);
  background: var(--violet);
}

.button-primary:hover {
  background: var(--violet-dark);
}

.button-ghost {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.42);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.72);
}

.button-light {
  color: var(--violet-dark);
  background: var(--paper);
  border-color: var(--paper);
}

.button-light:hover {
  color: var(--ink);
  background: #f4f3ff;
}

.button-cta-outline {
  color: var(--paper);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.68);
}

.button-cta-outline:hover {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--paper);
}

.hero-note {
  margin: 16px 0 0;
  color: #b5c0d0;
  font-size: 14px;
}

.hero-evidence {
  position: absolute;
  right: max(24px, calc((100% - var(--max-width)) / 2));
  bottom: 24px;
  left: max(24px, calc((100% - var(--max-width)) / 2));
  min-height: 92px;
  padding: 16px 20px;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) 2fr;
  align-items: center;
  gap: 28px;
  background: rgba(11, 20, 35, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
}

.hero-evidence > span {
  color: #cdd5e1;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-evidence dl {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.hero-evidence dl div {
  padding: 0 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-evidence dt {
  color: #aeb8c8;
  font-size: 12px;
}

.hero-evidence dd {
  margin: 2px 0 0;
  color: var(--paper);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 24px;
  font-weight: 750;
}

.section {
  padding: 112px 0;
}

.section-inner {
  width: min(calc(100% - 48px), var(--max-width));
  margin: 0 auto;
}

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

.section-heading h2,
.risk-intro h2,
.proof-heading h2,
.limits-layout h2,
.request-copy h2,
.legal-intro h1 {
  margin: 0;
  color: inherit;
  font-size: 52px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.section-heading > p:last-child,
.risk-intro > p:last-child,
.proof-heading > p:last-child,
.limits-layout > div > p:last-child,
.request-copy > p,
.legal-intro > p {
  max-width: 790px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.62;
}

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  column-gap: 72px;
}

.split-heading .eyebrow {
  grid-column: 1 / -1;
}

.split-heading h2 {
  max-width: 520px;
}

.split-heading > p:last-child {
  margin: 0;
}

.problem-section {
  background: var(--paper);
}

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

.problem-grid article {
  min-width: 0;
  padding: 30px 28px 34px;
  border-left: 1px solid var(--line);
}

.problem-grid article:first-child {
  border-left: 0;
}

.problem-number,
.capability-grid article > span {
  display: block;
  color: var(--violet-dark);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  font-weight: 800;
}

.problem-grid h3,
.solution-principles h3,
.capability-grid h3 {
  margin: 20px 0 10px;
  font-size: 21px;
  line-height: 1.25;
}

.problem-grid p,
.solution-principles p,
.capability-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.problem-statement {
  margin-top: 44px;
  padding: 28px 0 0 28px;
  border-top: 4px solid var(--violet);
}

.problem-statement p {
  max-width: 970px;
  margin: 0;
  font-size: 24px;
  font-weight: 680;
  line-height: 1.45;
}

.risk-section {
  color: var(--paper);
  background: var(--ink);
}

.risk-intro {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 78px;
  align-items: end;
}

.risk-intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -48px;
}

.risk-intro > p:last-child {
  margin: 0;
  color: #bdc7d6;
}

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

.risk-list article {
  padding: 26px 0;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 70px;
  border-bottom: 1px solid var(--line-dark);
}

.risk-list h3 {
  margin: 0;
  font-size: 20px;
}

.risk-list p {
  margin: 0;
  color: #bdc7d6;
}

.risk-rule {
  margin-top: 50px;
  padding: 28px;
  color: #dce3ef;
  background: #172236;
  border-left: 4px solid #8f7eff;
}

.risk-rule span,
.risk-rule strong {
  display: block;
}

.risk-rule span {
  margin-bottom: 8px;
  color: #9eaac0;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.risk-rule strong {
  font-size: 20px;
  line-height: 1.45;
}

.solution-section {
  background: var(--paper-soft);
}

.product-figure {
  margin: 0;
}

.wide-figure {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(16, 24, 39, 0.12);
}

.wide-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.product-figure figcaption,
.tour-panel figcaption {
  padding: 18px 22px;
  color: var(--muted);
  background: var(--paper);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.product-figure figcaption span {
  margin-right: 12px;
  color: var(--green);
  font-weight: 800;
  text-transform: uppercase;
}

.solution-principles {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px;
}

.solution-principles > div {
  padding-top: 24px;
  border-top: 3px solid var(--ink);
}

.solution-principles > div:last-child {
  border-color: var(--green);
}

.principle-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.solution-principles h3 {
  margin-top: 12px;
  font-size: 28px;
}

.solution-principles p {
  max-width: 520px;
  font-size: 17px;
}

.flow-section {
  background: var(--paper);
}

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

.flow-list li {
  min-height: 238px;
  padding: 28px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.flow-list li > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--violet-dark);
  background: var(--violet-soft);
  border-radius: 50%;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 850;
}

.flow-list h3 {
  margin: 4px 0 10px;
  font-size: 18px;
  line-height: 1.3;
}

.flow-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.88em;
  overflow-wrap: anywhere;
}

.workspace-section {
  background: var(--paper-soft);
}

.product-tour {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(16, 24, 39, 0.1);
}

.tour-tabs {
  min-height: 68px;
  padding: 0 22px;
  display: flex;
  align-items: stretch;
  gap: 8px;
  background: #eef1f6;
  border-bottom: 1px solid var(--line);
}

.tour-tabs button {
  min-width: 160px;
  padding: 14px 18px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  font-weight: 750;
}

.tour-tabs button:hover {
  color: var(--ink);
}

.tour-tabs button[aria-selected="true"] {
  color: var(--violet-dark);
  background: var(--paper);
  border-bottom-color: var(--violet);
}

.tour-panel figure {
  margin: 0;
}

.tour-panel img {
  width: 100%;
  height: auto;
  display: block;
}

.tour-panel figcaption strong {
  color: var(--ink);
}

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

.capability-grid article {
  min-width: 0;
  min-height: 240px;
  padding: 26px;
  background: var(--paper);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capability-grid h3 {
  margin-top: 28px;
  font-size: 18px;
}

.proof-section {
  color: var(--paper);
  background: #0d1727;
}

.proof-heading {
  max-width: 900px;
}

.proof-heading > p:last-child {
  color: #bdc7d6;
}

.proof-metrics {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.proof-metrics div {
  min-height: 150px;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--line-dark);
}

.proof-metrics div:first-child {
  border-left: 0;
}

.proof-metrics strong {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 34px;
  line-height: 1.1;
}

.proof-metrics span {
  margin-top: 10px;
  color: #aeb8c8;
  font-size: 14px;
}

.proof-grid {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.proof-grid article {
  padding: 38px;
  background: #121e31;
}

.proof-grid article:last-child {
  background: #17253a;
}

.proof-label {
  margin: 0 0 20px;
  color: #a99dff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.proof-grid ul {
  margin: 0;
  padding-left: 20px;
}

.proof-grid li {
  margin: 10px 0;
  color: #d4dce8;
}

.proof-grid article > p:last-child {
  margin: 24px 0 0;
  color: #aeb8c8;
  font-size: 14px;
}

.proof-disclaimer {
  margin: 34px 0 0;
  padding-left: 18px;
  color: #9eaac0;
  border-left: 3px solid #8f7eff;
  font-size: 14px;
}

.limits-section {
  background: var(--paper);
}

.limits-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  align-items: start;
}

.limits-layout h2 {
  font-size: 44px;
}

.limits-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.limits-list li {
  padding: 22px 0;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.limits-list strong {
  color: var(--ink);
}

.demo-request-section {
  padding: 112px 0;
  color: var(--paper);
  background: #101827;
  border-top: 1px solid #2a3850;
}

.demo-request-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 88px;
  align-items: start;
}

.request-copy {
  min-width: 0;
  padding-top: 18px;
}

.request-copy .eyebrow {
  color: #c9c2ff;
}

.request-copy h2 {
  max-width: 540px;
}

.request-copy > p {
  color: #bdc7d6;
}

.approval-steps {
  margin: 46px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.approval-steps li {
  padding: 22px 0;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  border-bottom: 1px solid var(--line-dark);
}

.approval-steps li > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #b8adff;
  background: #1a2540;
  border: 1px solid #3e4c68;
  border-radius: 50%;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 800;
}

.approval-steps strong,
.approval-steps small {
  display: block;
}

.approval-steps strong {
  color: var(--paper);
  font-size: 17px;
}

.approval-steps small {
  margin-top: 4px;
  color: #9eabbe;
  font-size: 14px;
  line-height: 1.5;
}

.request-assurance {
  margin-top: 34px;
  padding: 22px 24px;
  background: #142b2b;
  border-left: 4px solid #39c895;
}

.request-assurance strong {
  color: #bdeedb;
}

.request-assurance p {
  margin: 6px 0 0;
  color: #c6d8d3;
  font-size: 14px;
  line-height: 1.55;
}

.existing-access {
  margin: 24px 0 0;
  color: #9eabbe;
  font-size: 14px;
}

.existing-access a {
  color: var(--paper);
  font-weight: 750;
}

.request-form-shell {
  min-width: 0;
  padding: 38px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid #cdd4e1;
  border-radius: 8px;
  box-shadow: 0 30px 76px rgba(0, 0, 0, 0.24);
}

.form-heading {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.form-kicker {
  color: var(--violet-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.form-heading h3 {
  margin: 8px 0 0;
  font-size: 30px;
  line-height: 1.2;
}

.form-heading p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

#demo-request-form {
  position: relative;
  margin-top: 28px;
}

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

.form-field {
  min-width: 0;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 750;
}

.form-field .optional {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.form-field input,
.form-field textarea {
  width: 100%;
  min-width: 0;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid #b7c0d0;
  border-radius: 5px;
}

.form-field input {
  min-height: 50px;
  padding: 10px 13px;
}

.form-field textarea {
  min-height: 138px;
  padding: 12px 13px;
  resize: vertical;
  line-height: 1.5;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #7a8699;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--violet-dark);
  box-shadow: 0 0 0 3px rgba(85, 65, 221, 0.13);
  outline: 0;
}

.form-field > small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.honeypot-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consent-field {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 11px;
  align-items: start;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.52;
}

.consent-field input {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--violet-dark);
}

.consent-field a,
.noscript-note a {
  color: var(--violet-dark);
  font-weight: 700;
}

.request-privacy-note {
  margin: 18px 0 0;
  padding-top: 16px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 12px;
  line-height: 1.5;
}

.form-status {
  margin-top: 20px;
  padding: 14px 16px;
  border-left: 4px solid;
  font-size: 14px;
  line-height: 1.5;
}

.form-status[data-state="pending"] {
  color: #4332b5;
  background: var(--violet-soft);
  border-color: var(--violet);
}

.form-status[data-state="success"] {
  color: #075d3f;
  background: var(--green-soft);
  border-color: var(--green);
}

.form-status[data-state="error"] {
  color: #8a2431;
  background: #fff0f2;
  border-color: #c63d4d;
}

.request-submit {
  width: 100%;
  margin-top: 22px;
  color: var(--paper);
  background: var(--violet-dark);
  border-color: var(--violet-dark);
  cursor: pointer;
}

.request-submit:hover {
  background: #4431c5;
  border-color: #4431c5;
}

.request-submit:disabled {
  color: #e4e1ff;
  background: #7265c8;
  border-color: #7265c8;
  cursor: wait;
  transform: none;
}

.noscript-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  padding: 56px 0 34px;
  color: #c3ccda;
  background: #0b1422;
}

.footer-inner {
  width: min(calc(100% - 48px), var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr;
  gap: 60px;
  align-items: start;
}

.brand-footer {
  color: var(--paper);
}

.brand-footer .brand-name strong {
  color: #a99dff;
}

.footer-brand p {
  max-width: 380px;
  margin: 16px 0 0;
  color: #94a1b4;
  font-size: 14px;
}

.site-footer nav,
.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer a {
  color: #c3ccda;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--paper);
}

.footer-meta {
  text-align: right;
  font-size: 14px;
}

.legal-main {
  min-height: calc(100vh - var(--header-height));
  background: var(--paper-soft);
}

.legal-hero {
  padding: 86px 0 64px;
  color: var(--paper);
  background: var(--ink);
}

.legal-intro {
  width: min(calc(100% - 48px), 900px);
  margin: 0 auto;
}

.legal-intro h1 {
  font-size: 54px;
}

.legal-intro > p {
  color: #bdc7d6;
}

.legal-content {
  width: min(calc(100% - 48px), 900px);
  margin: 0 auto;
  padding: 72px 0 100px;
}

.legal-content section {
  padding: 32px 0;
  border-top: 1px solid var(--line);
}

.legal-content section:first-child {
  padding-top: 0;
  border-top: 0;
}

.legal-content h2 {
  margin: 0 0 14px;
  font-size: 26px;
  line-height: 1.25;
}

.legal-content h3 {
  margin: 24px 0 8px;
  font-size: 18px;
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
}

.legal-content p {
  margin: 10px 0;
}

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

.legal-content address {
  font-style: normal;
}

.legal-content a {
  color: var(--violet-dark);
}

.not-found-label {
  margin-top: 54px;
}

.legal-note {
  padding: 18px 20px;
  background: var(--violet-soft);
  border-left: 3px solid var(--violet);
}

@media (max-width: 1080px) {
  .hero {
    min-height: 540px;
    height: calc(100svh - 104px);
    max-height: 660px;
  }

  .hero-inner {
    padding-top: 38px;
    padding-bottom: 122px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero-lead {
    max-width: 620px;
    margin-top: 18px;
    font-size: 17px;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .hero-note {
    margin-top: 10px;
  }

  .hero-evidence {
    bottom: 16px;
    min-height: 78px;
    padding: 10px 14px;
  }

  .hero-evidence dd {
    font-size: 20px;
  }

  .problem-grid,
  .capability-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .problem-grid article:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .problem-grid article:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .flow-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-metrics div:nth-child(3) {
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .proof-metrics div:nth-child(4) {
    border-top: 1px solid var(--line-dark);
  }
}

@media (max-width: 1080px) {
  :root {
    --header-height: 64px;
  }

  .header-inner,
  .section-inner,
  .footer-inner,
  .legal-intro,
  .legal-content,
  .hero-inner {
    width: min(calc(100% - 36px), var(--max-width));
  }

  .nav-toggle {
    display: block;
  }

  .nav-toggle[aria-expanded="true"] > span:nth-of-type(2) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] > span:nth-of-type(3) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] > span:nth-of-type(4) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    bottom: auto;
    left: 0;
    height: calc(100dvh - var(--header-height));
    padding: 32px 24px;
    display: none;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
    background: var(--paper);
  }

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

  .site-nav a {
    padding: 18px 4px;
    font-size: 20px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav .nav-cta {
    margin-top: 20px;
    padding: 15px 18px;
    text-align: center;
    border-bottom: 0;
  }

  .site-nav .nav-login {
    color: var(--ink-soft);
  }

  .hero::after {
    width: 72%;
  }

  .hero-inner {
    padding-top: 34px;
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero-lead {
    max-width: 570px;
    font-size: 16px;
  }

  .hero-evidence {
    right: 18px;
    left: 18px;
    grid-template-columns: 150px 1fr;
    gap: 12px;
  }

  .hero-evidence dl div {
    padding: 0 10px;
  }

  .hero-evidence dt {
    font-size: 10px;
  }

  .section {
    padding: 88px 0;
  }

  .section-heading h2,
  .risk-intro h2,
  .proof-heading h2,
  .request-copy h2,
  .legal-intro h1 {
    font-size: 42px;
  }

  .split-heading,
  .risk-intro,
  .limits-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .split-heading h2,
  .risk-intro h2 {
    max-width: 700px;
  }

  .split-heading > p:last-child,
  .risk-intro > p:last-child {
    margin-top: 0;
  }

  .risk-intro .eyebrow {
    margin-bottom: -6px;
  }

  .risk-list article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .solution-principles {
    gap: 34px;
  }

  .flow-list li {
    min-height: 220px;
  }

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

  .limits-layout {
    gap: 50px;
  }

  .demo-request-section {
    padding: 88px 0;
  }

  .demo-request-layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .request-copy {
    max-width: 820px;
    padding-top: 0;
  }

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

  .footer-meta {
    grid-column: 1 / -1;
    padding-top: 24px;
    text-align: left;
    border-top: 1px solid var(--line-dark);
  }
}

@media (max-width: 640px) {
  .header-inner,
  .section-inner,
  .footer-inner,
  .legal-intro,
  .legal-content,
  .hero-inner {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .brand {
    font-size: 16px;
  }

  .brand img {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .hero {
    min-height: 680px;
    height: 680px;
    max-height: 680px;
  }

  .hero::after {
    width: 100%;
    background: rgba(10, 17, 31, 0.84);
    border-right: 0;
  }

  .hero-image {
    object-position: 32% top;
  }

  .hero-inner {
    padding-top: 40px;
    padding-bottom: 170px;
    justify-content: flex-start;
  }

  .hero h1 {
    max-width: 360px;
    font-size: 44px;
    line-height: 1.02;
  }

  .hero-lead {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.5;
  }

  .hero-actions {
    width: 100%;
    margin-top: 24px;
    flex-direction: column;
  }

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

  .hero-note {
    font-size: 12px;
  }

  .hero-evidence {
    bottom: 14px;
    min-height: 132px;
    padding: 12px;
    display: block;
  }

  .hero-evidence > span {
    display: block;
    margin-bottom: 10px;
    font-size: 11px;
  }

  .hero-evidence dl div {
    padding: 0 8px;
  }

  .hero-evidence dl div:first-child {
    padding-left: 0;
    border-left: 0;
  }

  .hero-evidence dt {
    min-height: 30px;
    line-height: 1.25;
  }

  .hero-evidence dd {
    font-size: 18px;
  }

  .section {
    padding: 72px 0;
  }

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

  .section-heading h2,
  .risk-intro h2,
  .proof-heading h2,
  .request-copy h2,
  .legal-intro h1 {
    font-size: 34px;
    line-height: 1.12;
  }

  .limits-layout h2 {
    font-size: 34px;
  }

  .section-heading > p:last-child,
  .risk-intro > p:last-child,
  .proof-heading > p:last-child,
  .limits-layout > div > p:last-child,
  .request-copy > p,
  .legal-intro > p {
    margin-top: 18px;
    font-size: 17px;
  }

  .problem-grid,
  .flow-list,
  .capability-grid,
  .proof-metrics,
  .solution-principles,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .problem-grid article,
  .problem-grid article:nth-child(3),
  .problem-grid article:nth-child(4) {
    padding: 24px 20px 28px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .problem-grid article:first-child {
    border-top: 0;
  }

  .problem-statement {
    padding-left: 18px;
  }

  .problem-statement p {
    font-size: 20px;
  }

  .risk-list {
    margin-top: 48px;
  }

  .risk-rule {
    padding: 22px;
  }

  .risk-rule strong {
    font-size: 17px;
  }

  .solution-principles {
    margin-top: 50px;
  }

  .solution-principles h3 {
    font-size: 24px;
  }

  .flow-list li {
    min-height: 0;
    padding: 24px 20px;
  }

  .tour-tabs {
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
  }

  .tour-tabs button {
    min-width: 0;
    padding: 14px 1px;
    font-size: 12px;
    overflow-wrap: anywhere;
  }

  .product-figure figcaption,
  .tour-panel figcaption {
    padding: 16px;
  }

  .product-figure figcaption span {
    display: block;
    margin: 0 0 5px;
  }

  .capability-grid {
    margin-top: 50px;
  }

  .capability-grid article {
    min-height: 0;
    padding: 24px 20px;
  }

  .proof-metrics div,
  .proof-metrics div:nth-child(3),
  .proof-metrics div:nth-child(4) {
    min-height: 110px;
    padding: 22px 8px;
    text-align: center;
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .proof-metrics div:first-child {
    border-top: 0;
  }

  .proof-grid article {
    padding: 28px 22px;
  }

  .limits-list li {
    padding: 18px 0;
  }

  .demo-request-section {
    padding: 72px 0;
  }

  .demo-request-layout {
    gap: 44px;
  }

  .approval-steps {
    margin-top: 34px;
  }

  .request-form-shell {
    padding: 26px 20px;
  }

  .form-heading h3 {
    font-size: 25px;
  }

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

  .form-field-wide {
    grid-column: auto;
  }

  .consent-field {
    font-size: 13px;
  }

  .footer-inner {
    gap: 34px;
  }

  .footer-meta {
    grid-column: auto;
  }

  .legal-hero {
    padding: 62px 0 46px;
  }

  .legal-content {
    padding: 54px 0 72px;
  }
}

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