* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #12231c;
  --ink-2: #20382f;
  --sage: #dce2d9;
  --paper: #edf1eb;
  --paper-2: #f5f6f1;
  --line: #718078;
  --line-soft: rgba(18, 35, 28, 0.18);
  --muted: #53665d;
  --gold: #b58e18;
  --green: #178568;
  --orange: #d46c2f;
  --blue: #245ee8;
  --violet: #8c4bc2;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --sans: "Avenir Next", "Helvetica Neue", Inter, Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--sage);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

img {
  max-width: 100%;
}

h1,
h2,
h3 {
  overflow-wrap: break-word;
  hyphens: auto;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-150%);
}

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

.shell {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding-right: 48px;
  padding-left: 48px;
}

.grid-field {
  background-color: var(--sage);
  background-image:
    repeating-linear-gradient(0deg, rgba(20, 35, 29, 0.045) 0, rgba(20, 35, 29, 0.045) 1px, transparent 1px, transparent 22px),
    repeating-linear-gradient(90deg, rgba(20, 35, 29, 0.045) 0, rgba(20, 35, 29, 0.045) 1px, transparent 1px, transparent 22px);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(18, 35, 28, 0.22);
  background: rgba(220, 226, 217, 0.92);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.brand img {
  width: 31px;
  height: 31px;
  object-fit: contain;
}

.brand span {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.brand em {
  color: var(--gold);
  font-style: normal;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 31px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
  color: #33483f;
  font-size: 16px;
}

.nav-flyout {
  position: relative;
}

.nav-flyout-trigger {
  position: relative;
  display: flex;
  gap: 7px;
  align-items: center;
  padding: 10px 0;
  border: 0;
  background: transparent;
  color: #33483f;
  cursor: pointer;
  font-size: 16px;
}

.nav-flyout-trigger span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 13px;
  transition: transform 180ms ease;
}

.nav-flyout-trigger::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-flyout-trigger:hover::after,
.nav-flyout-trigger:focus-visible::after,
.nav-flyout-trigger.is-current::after,
.nav-flyout.is-open .nav-flyout-trigger::after,
.nav-flyout:focus-within .nav-flyout-trigger::after {
  transform: scaleX(1);
}

.nav-flyout.is-open .nav-flyout-trigger span,
.nav-flyout:focus-within .nav-flyout-trigger span {
  transform: rotate(180deg);
}

.nav-flyout-panel {
  position: absolute;
  z-index: 120;
  top: calc(100% + 22px);
  left: 50%;
  display: grid;
  width: 570px;
  grid-template-columns: 1fr 1fr 0.92fr;
  visibility: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 16px 18px 0 rgba(18, 35, 28, 0.1);
  opacity: 0;
  pointer-events: none;
  transform: translate(-44%, -8px);
  transition: opacity 170ms ease, transform 170ms ease, visibility 170ms ease;
}

.nav-flyout-panel::before {
  position: absolute;
  top: -23px;
  right: 0;
  left: 0;
  height: 23px;
  content: "";
}

.nav-flyout.is-open .nav-flyout-panel,
.nav-flyout:hover .nav-flyout-panel,
.nav-flyout:focus-within .nav-flyout-panel {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translate(-44%, 0);
}

.nav-flyout-group {
  min-height: 230px;
  padding: 19px 17px 17px;
  border-right: 1px solid var(--line-soft);
}

.nav-flyout-group:last-child {
  border-right: 0;
  background: var(--sage);
}

.nav-flyout-group > span {
  display: block;
  margin-bottom: 33px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.desktop-nav .nav-flyout-link {
  display: grid;
  gap: 4px;
  margin: 0 0 15px;
  padding: 0 0 13px;
  border-bottom: 1px solid var(--line-soft);
}

.desktop-nav .nav-flyout-link::after {
  display: none;
}

.nav-flyout-link strong {
  color: var(--ink);
  font-size: 16px;
  font-weight: 650;
}

.nav-flyout-link small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.nav-flyout-link:hover strong,
.nav-flyout-link:focus-visible strong,
.nav-flyout-link.is-current strong {
  color: var(--green);
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a.is-current::after {
  transform: scaleX(1);
}

.header-cta {
  min-width: 151px;
  margin-left: 37px;
  padding: 13px 14px;
  background: var(--ink);
  color: #f4f6f1;
  font-size: 15px;
  font-weight: 650;
}

.header-cta span {
  float: right;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 0;
}

.hero::before,
.legal-hero::before {
  position: absolute;
  top: 70px;
  right: -180px;
  width: 580px;
  height: 580px;
  border: 1px solid rgba(18, 35, 28, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 72px rgba(18, 35, 28, 0.03),
    0 0 0 144px rgba(18, 35, 28, 0.02);
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: center;
}

.hero-grid > *,
.beta-grid > *,
.brain-grid > *,
.section-heading > * {
  min-width: 0;
}

.hero-copy {
  min-width: 0;
  padding-bottom: 46px;
}

.overline {
  display: flex;
  max-width: 600px;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding-bottom: 11px;
  border-bottom: 1px solid var(--line);
  color: #4c6056;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.09em;
}

.overline i {
  font-style: normal;
}

.hero h1,
.legal-hero h1 {
  max-width: 730px;
  margin: 27px 0 27px;
  font-size: clamp(40px, 4.35vw, 64px);
  font-weight: 590;
  letter-spacing: -0.074em;
  line-height: 0.94;
}

.hero h1 em,
.legal-hero h1 em {
  color: var(--green);
  font-style: normal;
}

.hero-lead {
  max-width: 600px;
  margin: 0;
  color: #40534a;
  font-size: 19px;
  line-height: 1.63;
}

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

.button {
  display: inline-flex;
  min-height: 49px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  cursor: pointer;
  font-size: 16px;
  font-weight: 650;
  transition: box-shadow 170ms ease, transform 170ms ease, background 170ms ease;
}

.button-primary {
  background: var(--ink);
  color: #f4f6f1;
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 5px 5px 0 var(--line);
  outline: 0;
  transform: translate(-2px, -2px);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(237, 241, 235, 0.36);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--paper);
  outline: 0;
}

.hero-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 22px;
  color: #4b5f55;
  font-size: 13px;
}

.hero-assurance span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-assurance i {
  width: 5px;
  height: 5px;
  background: var(--ink);
  border-radius: 50%;
}

.audit-demo {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(237, 241, 235, 0.74);
  box-shadow: 13px 13px 0 rgba(113, 128, 120, 0.36);
}

.audit-demo::before,
.audit-demo::after,
.legal-case::before,
.legal-case::after {
  position: absolute;
  z-index: 8;
  width: 13px;
  height: 13px;
  border-color: var(--line);
  content: "";
  pointer-events: none;
}

.audit-demo::before,
.legal-case::before {
  top: 7px;
  left: 7px;
  border-top: 1px solid;
  border-left: 1px solid;
}

.audit-demo::after,
.legal-case::after {
  right: 7px;
  bottom: 7px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.demo-topbar {
  display: grid;
  grid-template-columns: 1fr 1.25fr 0.7fr;
  min-height: 45px;
  align-items: center;
  padding: 0 17px;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
}

.demo-topbar > span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.demo-topbar > span b {
  font-weight: 500;
}

.demo-topbar > span i {
  width: 6px;
  height: 6px;
  background: #49b884;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(73, 184, 132, 0.14);
}

.demo-topbar strong {
  text-align: center;
}

.demo-topbar small {
  color: var(--muted);
  font-size: 11px;
  text-align: right;
}

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

.demo-tabs button {
  position: relative;
  min-height: 59px;
  padding: 10px 11px;
  border: 0;
  border-right: 1px solid rgba(113, 128, 120, 0.7);
  background: transparent;
  color: #4d5f56;
  cursor: pointer;
  font-size: 12px;
  text-align: left;
}

.demo-tabs button:last-child {
  border-right: 0;
}

.demo-tabs button span {
  display: block;
  margin-bottom: 4px;
  color: #66776f;
  font-family: var(--mono);
  font-size: 11px;
}

.demo-tabs button::after {
  position: absolute;
  right: 10px;
  bottom: 8px;
  left: 10px;
  height: 2px;
  background: var(--active-module, var(--green));
  content: "";
  transform: scaleX(0.22);
  transform-origin: left;
  transition: transform 180ms ease;
}

.demo-tabs button.is-active {
  background: var(--active-soft, #dff3eb);
  color: var(--ink);
}

.demo-tabs button.is-active::after {
  transform: scaleX(1);
}

.demo-flow {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  min-height: 31px;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(113, 128, 120, 0.7);
  background: rgba(220, 226, 217, 0.7);
  color: #52655b;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.07em;
  text-align: center;
  text-transform: uppercase;
}

.demo-flow i {
  color: #718078;
  font-style: normal;
}

.demo-flow b {
  position: absolute;
  top: 50%;
  left: 7%;
  width: 5px;
  height: 5px;
  background: var(--active-module, var(--green));
  border-radius: 50%;
  box-shadow: 0 0 8px var(--active-module, var(--green));
  opacity: 0;
  transform: translateY(-50%);
}

.audit-demo.is-processing .demo-flow b {
  animation: demo-flow 950ms ease-out;
}

@keyframes demo-flow {
  0% { left: 7%; opacity: 0; }
  12% { opacity: 1; }
  88% { opacity: 1; }
  100% { left: 92%; opacity: 0; }
}

.demo-stage {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  min-height: 405px;
}

.demo-document {
  position: relative;
  overflow: hidden;
  padding: 22px 21px;
  border-right: 1px solid var(--line);
  background-color: rgba(237, 241, 235, 0.68);
  background-image:
    linear-gradient(rgba(18, 35, 28, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 35, 28, 0.055) 1px, transparent 1px);
  background-size: 22px 22px;
}

.object-meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.07em;
}

.demo-document h2 {
  margin: 57px 0 24px;
  font-size: 27px;
  font-weight: 590;
  letter-spacing: -0.05em;
}

.passages p {
  margin: 0 0 8px;
  padding: 7px 8px;
  color: #42544b;
  font-size: 12px;
  line-height: 1.45;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.passages p.is-active {
  background: var(--active-module, var(--green));
  color: #fff;
  transform: translateX(4px);
}

.scan-line,
.case-scan {
  position: absolute;
  z-index: 5;
  top: 0;
  bottom: 0;
  left: -2px;
  width: 2px;
  background: var(--active-module, var(--green));
  box-shadow: 0 0 17px var(--active-module, var(--green));
  opacity: 0;
}

.audit-demo.is-processing .scan-line {
  animation: content-scan 760ms ease-out;
}

@keyframes content-scan {
  0% { left: 0; opacity: 0; }
  14% { opacity: 0.85; }
  86% { opacity: 0.85; }
  100% { left: 100%; opacity: 0; }
}

.demo-finding {
  min-width: 0;
  padding: 23px 25px;
  background: var(--ink);
  color: #eef2ec;
}

.demo-finding.is-refreshing > * {
  animation: finding-refresh 420ms ease both;
}

.demo-finding.is-refreshing > *:nth-child(2) { animation-delay: 55ms; }
.demo-finding.is-refreshing > *:nth-child(3) { animation-delay: 95ms; }
.demo-finding.is-refreshing > *:nth-child(4) { animation-delay: 135ms; }
.demo-finding.is-refreshing > *:nth-child(5) { animation-delay: 175ms; }

@keyframes finding-refresh {
  from { opacity: 0.16; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

.finding-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(238, 242, 236, 0.18);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
}

.finding-head > span {
  color: #a3b0aa;
}

.finding-head b {
  padding: 5px 7px;
  background: var(--active-soft, #dff3eb);
  color: var(--ink);
  font-size: 11px;
  font-weight: 500;
}

.demo-finding blockquote {
  margin: 27px 0 0;
  font-size: 21px;
  font-weight: 620;
  line-height: 1.32;
}

.finding-source {
  margin-top: 17px !important;
  color: var(--active-module, var(--green)) !important;
  font-family: var(--mono);
  font-size: 12px !important;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.demo-finding > p {
  margin: 15px 0 0;
  color: #bec9c3;
  font-size: 13px;
  line-height: 1.55;
}

.finding-next {
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid rgba(238, 242, 236, 0.18);
}

.finding-next span {
  color: #81928a;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
}

.finding-next p {
  margin: 7px 0 0;
  font-size: 12px;
  line-height: 1.5;
}

.demo-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 39px;
  align-items: center;
  border-top: 1px solid var(--line);
  color: #4d5f56;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
}

.demo-footer span + span {
  border-left: 1px solid var(--line);
}

.demo-view {
  min-height: 475px;
}

.demo-view .demo-result > *,
.demo-view .seo-panel > *,
.demo-view .readiness-panel > * {
  animation: finding-refresh 420ms ease both;
}

.demo-view .demo-result > *:nth-child(2) { animation-delay: 55ms; }
.demo-view .demo-result > *:nth-child(3) { animation-delay: 95ms; }
.demo-view .demo-result > *:nth-child(4) { animation-delay: 135ms; }
.demo-view .demo-result > *:nth-child(5) { animation-delay: 175ms; }

.crawl-workspace,
.editor-document,
.health-document {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 20px;
  border-right: 1px solid var(--line);
  background-color: rgba(237, 241, 235, 0.72);
  background-image:
    linear-gradient(rgba(18, 35, 28, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 35, 28, 0.045) 1px, transparent 1px);
  background-size: 22px 22px;
}

.crawl-summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 11px;
  align-items: center;
  margin-top: 17px;
  padding: 11px;
  border: 1px solid var(--line);
  background: rgba(237, 241, 235, 0.76);
}

.crawl-summary > span {
  font-size: 24px;
  font-weight: 650;
  letter-spacing: -0.05em;
}

.crawl-summary div {
  display: grid;
  gap: 2px;
}

.crawl-summary strong {
  font-size: 12px;
}

.crawl-summary small,
.crawl-summary > i {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  font-style: normal;
}

.asset-list {
  margin-top: 12px;
  border: 1px solid var(--line);
  background: rgba(237, 241, 235, 0.62);
}

.asset-list > div {
  display: grid;
  grid-template-columns: 8px 1fr auto;
  gap: 8px;
  align-items: center;
  min-height: 29px;
  padding: 0 9px;
  border-bottom: 1px solid rgba(113, 128, 120, 0.4);
  font-size: 11px;
}

.asset-list > div:last-child {
  border-bottom: 0;
}

.asset-list > div.is-selected {
  background: var(--active-soft);
}

.asset-list small {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
}

.asset-state {
  width: 6px;
  height: 6px;
  background: #6b7b73;
  border-radius: 50%;
}

.asset-state.is-ok { background: #49b884; }
.asset-state.is-check { background: var(--active-module); box-shadow: 0 0 0 3px rgba(212, 108, 47, 0.14); }

.asset-preview {
  position: relative;
  display: grid;
  min-height: 128px;
  align-content: end;
  margin-top: 12px;
  padding: 15px;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(18, 35, 28, 0.94) 0 42%, transparent 42%),
    repeating-linear-gradient(135deg, #d8c7aa 0 14px, #ead9bd 14px 28px);
  color: #eef2ec;
}

.asset-preview::after {
  position: absolute;
  top: -36px;
  right: 28px;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(18, 35, 28, 0.45);
  border-radius: 50%;
  content: "";
}

.asset-preview span {
  font-family: var(--mono);
  font-size: 10px;
}

.asset-preview strong {
  margin-top: 5px;
  font-size: 19px;
  line-height: 0.9;
}

.asset-preview > i {
  position: absolute;
  top: 9px;
  right: 9px;
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 1px solid var(--ink);
  background: var(--active-soft);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  font-style: normal;
}

.crawl-finding blockquote {
  font-size: 19px;
}

.evidence-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 16px;
  border-top: 1px solid rgba(238, 242, 236, 0.18);
  border-left: 1px solid rgba(238, 242, 236, 0.18);
}

.evidence-grid > span {
  display: grid;
  gap: 4px;
  padding: 8px;
  border-right: 1px solid rgba(238, 242, 236, 0.18);
  border-bottom: 1px solid rgba(238, 242, 236, 0.18);
  color: #dbe2de;
  font-family: var(--mono);
  font-size: 10px;
}

.evidence-grid small {
  color: #81928a;
  font-size: 10px;
  text-transform: uppercase;
}

.demo-stage-editor,
.demo-stage-ai-search {
  grid-template-columns: 1.05fr 0.95fr;
}

.editor-toolbar {
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 10px;
}

.editor-toolbar div {
  display: flex;
  gap: 4px;
}

.editor-toolbar i {
  padding: 3px 5px;
  border: 1px solid var(--line);
  font-style: normal;
}

.keyword-brief {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 10px;
  margin-top: 14px;
  padding: 9px 10px;
  border-left: 3px solid var(--active-module);
  background: var(--active-soft);
}

.keyword-brief span {
  grid-row: 1 / 3;
  align-self: center;
  font-family: var(--mono);
  font-size: 10px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.keyword-brief strong { font-size: 13px; }
.keyword-brief small { color: var(--muted); font-size: 10px; }

.editor-copy {
  padding: 21px 10px 0;
}

.editor-copy > small,
.health-document > small {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
}

.editor-copy h2,
.editor-copy h3 {
  position: relative;
  margin: 6px 0 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(36, 94, 232, 0.38);
  letter-spacing: -0.035em;
}

.editor-copy h2 { font-size: 20px; }
.editor-copy h3 { font-size: 15px; }

.editor-copy h2 i,
.editor-copy h3 i {
  position: absolute;
  right: 0;
  bottom: -7px;
  padding: 3px 5px;
  background: var(--active-module);
  color: #fff;
  font-family: var(--mono);
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
}

.editor-copy p {
  margin: 9px 0 17px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.seo-panel,
.readiness-panel {
  min-width: 0;
  padding: 20px;
  background: var(--ink);
  color: #eef2ec;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(238, 242, 236, 0.18);
  font-family: var(--mono);
  font-size: 10px;
}

.panel-head span { color: #a3b0aa; }
.panel-head b { padding: 4px 6px; background: var(--active-soft); color: var(--ink); font-weight: 500; }

.seo-score {
  display: flex;
  gap: 13px;
  align-items: center;
  padding: 17px 0;
}

.score-ring {
  position: relative;
  display: grid;
  width: 70px;
  height: 70px;
  place-content: center;
  background: conic-gradient(var(--active-module) calc(var(--score) * 1%), rgba(238, 242, 236, 0.12) 0);
  border-radius: 50%;
  text-align: center;
}

.score-ring::before {
  position: absolute;
  inset: 7px;
  background: var(--ink);
  border-radius: inherit;
  content: "";
}

.score-ring strong,
.score-ring small { position: relative; z-index: 1; }
.score-ring strong { font-size: 19px; line-height: 1; }
.score-ring small { color: #a3b0aa; font-size: 10px; }

.seo-score > div:last-child { display: grid; gap: 3px; }
.seo-score > div:last-child strong { font-size: 14px; }
.seo-score > div:last-child span { color: var(--active-module); font-family: var(--mono); font-size: 10px; text-transform: uppercase; }
.seo-score > div:last-child small { color: #a3b0aa; font-size: 11px; }

.seo-suggestions {
  border-top: 1px solid rgba(238, 242, 236, 0.18);
}

.seo-suggestions article,
.readiness-checks article {
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 9px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(238, 242, 236, 0.14);
}

.seo-suggestions article > span,
.readiness-checks article > i {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border: 1px solid rgba(238, 242, 236, 0.28);
  color: var(--active-module);
  font-family: var(--mono);
  font-size: 10px;
  font-style: normal;
}

.seo-suggestions article div,
.readiness-checks article div { display: grid; gap: 4px; }
.seo-suggestions strong,
.readiness-checks strong { font-size: 12px; line-height: 1.35; }
.seo-suggestions small,
.readiness-checks small { color: #a3b0aa; font-size: 10px; line-height: 1.35; }

.query-chip {
  display: grid;
  gap: 5px;
  margin: 15px 0 23px;
  padding: 9px 10px;
  border-left: 3px solid var(--active-module);
  background: var(--active-soft);
}

.query-chip span { font-family: var(--mono); font-size: 10px; }
.query-chip strong { font-size: 14px; }

.health-document h2 {
  margin: 6px 0 11px;
  font-size: 20px;
  letter-spacing: -0.04em;
}

.health-intro {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.missing-answer {
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 9px;
  margin-top: 16px;
  padding: 10px;
  border: 1px solid rgba(140, 75, 194, 0.45);
  background: rgba(238, 226, 246, 0.72);
}

.missing-answer > i {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  background: var(--active-module);
  color: #fff;
  border-radius: 50%;
  font-style: normal;
}

.missing-answer div { display: grid; gap: 4px; }
.missing-answer strong { font-size: 12px; }
.missing-answer span { color: var(--muted); font-size: 10px; line-height: 1.4; }

.health-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 17px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.health-meta span {
  display: grid;
  gap: 5px;
  padding: 9px 7px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
}

.health-meta small { color: var(--ink); font-family: var(--mono); font-size: 10px; text-transform: uppercase; }

.readiness-score {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
}

.readiness-score > strong { color: var(--active-module); font-size: 36px; letter-spacing: -0.06em; }
.readiness-score div { display: grid; gap: 3px; }
.readiness-score span { font-family: var(--mono); font-size: 10px; text-transform: uppercase; }
.readiness-score small { max-width: 150px; color: #a3b0aa; font-size: 10px; line-height: 1.35; }

.readiness-checks { border-top: 1px solid rgba(238, 242, 236, 0.18); }

.guideline-note {
  margin: 11px 0 0;
  color: #a3b0aa;
  font-size: 10px;
  line-height: 1.45;
}

.module-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 74px;
}

.module-rail a {
  position: relative;
  min-height: 98px;
  padding: 18px 18px 16px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  background: rgba(237, 241, 235, 0.32);
  transition: background 180ms ease;
}

.module-rail a:first-child {
  border-left: 1px solid var(--line);
}

.module-rail a::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--module);
  content: "";
  transform: scaleX(0.15);
  transform-origin: left;
  transition: transform 180ms ease;
}

.module-rail a:hover {
  background: var(--paper);
}

.module-rail a:hover::before {
  transform: scaleX(1);
}

.module-rail span,
.module-rail strong {
  display: block;
}

.module-rail span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
}

.module-rail strong {
  margin-top: 14px;
  font-size: 18px;
}

.module-rail i {
  position: absolute;
  right: 17px;
  bottom: 16px;
  font-style: normal;
}

.section {
  position: relative;
  padding: 112px 0;
}

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

.section-heading {
  display: grid;
  grid-template-columns: 0.72fr 2.28fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}

.section-index {
  margin: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.section-heading h2,
.brain-copy h2,
.method-copy h2,
.beta-copy h2,
.faq-grid h2,
.problem-grid h2,
.trust-grid h2 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 580;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.section-heading > div > p {
  max-width: 690px;
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.core-questions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 12px;
}

.core-questions article {
  min-height: 250px;
  padding: 20px 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.core-questions article:first-child {
  border-left: 1px solid var(--line);
}

.core-questions span,
.module-meta span {
  font-family: var(--mono);
  font-size: 13px;
}

.core-questions h3 {
  margin: 75px 0 12px;
  font-size: 21px;
  letter-spacing: -0.04em;
}

.core-questions p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 11px;
  margin-top: 12px;
}

.module-card {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  /* Unten Platz fuer den absolut gesetzten "Mehr erfahren"-Link (18px Abstand +
     31px Hoehe), sonst laeuft dreizeiliger Beschreibungstext darunter. */
  padding: 18px 18px 64px;
  border: 1px solid var(--line);
  background: rgba(237, 241, 235, 0.52);
  transition: background 180ms ease, transform 180ms ease;
}

.module-card::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 45px;
  height: 4px;
  background: var(--module);
  content: "";
  transition: width 180ms ease;
}

.module-card:hover {
  background: var(--soft);
  transform: translateY(-5px);
}

.module-card:hover::after {
  width: 100%;
}

.module-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.module-meta i {
  width: 8px;
  height: 8px;
  background: var(--module);
}

.module-card > small {
  display: block;
  margin-top: 55px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.module-card h3 {
  margin: 9px 0 11px;
  font-size: 24px;
  letter-spacing: -0.045em;
}

.module-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.56;
}

.module-card > a {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  justify-content: space-between;
  padding-top: 13px;
  border-top: 1px solid rgba(18, 35, 28, 0.25);
  font-family: var(--mono);
  font-size: 13px;
  text-transform: uppercase;
}

.next-modules {
  margin-top: 66px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.next-modules-head {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr 1fr;
  gap: 32px;
  align-items: start;
}

.next-modules-head > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.next-modules-head span,
.next-modules-head b,
.next-module-meta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
}

.next-modules-head span {
  color: var(--muted);
}

.next-modules-head b,
.next-module-meta b {
  padding: 5px 7px;
  border: 1px solid var(--line);
  background: rgba(237, 241, 235, 0.58);
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.next-modules-head h3 {
  margin: 0;
  font-size: 23px;
  letter-spacing: -0.04em;
  line-height: 1.06;
}

.next-modules-head > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.next-module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  margin-top: 26px;
}

.next-module-grid > article {
  position: relative;
  min-height: 290px;
  /* wie .module-card: 18px Abstand + 29px Linkhoehe reservieren */
  padding: 19px 19px 62px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, var(--soft) 0, rgba(237, 241, 235, 0.66) 42%),
    rgba(237, 241, 235, 0.54);
  transition: border-color 180ms ease, transform 180ms ease;
}

.next-module-grid > article::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--module);
  content: "";
  transform: scaleX(0.2);
  transform-origin: right;
  transition: transform 180ms ease;
}

.next-module-grid > article:hover {
  border-color: var(--module);
  transform: translateY(-4px);
}

.next-module-grid > article:hover::before {
  transform: scaleX(1);
}

.next-module-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
}

.next-module-meta b {
  border-color: color-mix(in srgb, var(--module) 55%, transparent);
  background: var(--soft);
  color: var(--module);
}

.next-module-grid h3 {
  margin: 49px 0 12px;
  font-size: 25px;
  letter-spacing: -0.045em;
}

.next-module-grid p {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.next-module-grid article > div:nth-of-type(2) {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 24px;
}

.next-module-grid article > div:nth-of-type(2) i {
  padding: 5px 7px;
  border: 1px solid rgba(18, 35, 28, 0.22);
  font-family: var(--mono);
  font-size: 11px;
  font-style: normal;
  text-transform: uppercase;
}

.next-module-grid a {
  position: absolute;
  right: 19px;
  bottom: 18px;
  left: 19px;
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid rgba(18, 35, 28, 0.25);
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
}

.lifecycle-section,
.legal-method-section {
  overflow: hidden;
  background: var(--ink);
  color: #eef2ec;
}

.on-dark {
  border-color: rgba(238, 242, 236, 0.24);
}

.on-dark .section-index,
.on-dark > div > p {
  color: #a8b5ae;
}

.lifecycle {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 12px;
  border-top: 1px solid rgba(238, 242, 236, 0.24);
  border-bottom: 1px solid rgba(238, 242, 236, 0.24);
}

.lifecycle::before {
  position: absolute;
  right: 10%;
  bottom: 26px;
  left: 10%;
  height: 1px;
  background: rgba(238, 242, 236, 0.28);
  content: "";
}

.lifecycle article {
  position: relative;
  z-index: 2;
  min-height: 260px;
  padding: 20px 18px;
  border-right: 1px solid rgba(238, 242, 236, 0.2);
}

.lifecycle article:first-child {
  border-left: 1px solid rgba(238, 242, 236, 0.2);
}

.lifecycle article::after {
  position: absolute;
  bottom: 20px;
  left: 50%;
  width: 10px;
  height: 10px;
  border: 2px solid var(--ink);
  background: #c8d1cb;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #718078;
  content: "";
  transform: translateX(-50%);
}

.lifecycle span,
.lifecycle-pulse,
.workflow-board span {
  font-family: var(--mono);
}

.lifecycle article > span {
  color: #9daaa4;
  font-size: 13px;
}

.lifecycle h3 {
  margin: 69px 0 12px;
  font-size: 19px;
  letter-spacing: -0.035em;
}

.lifecycle p {
  margin: 0;
  color: #aeb9b4;
  font-size: 15px;
  line-height: 1.55;
}

.lifecycle-pulse {
  position: absolute;
  z-index: 3;
  bottom: 20px;
  left: 10%;
  width: 10px;
  height: 10px;
  background: #eef2ec;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(238, 242, 236, 0.16);
  opacity: 0;
  transform: translateX(-50%);
  animation: lifecycle-travel 9s ease-in-out 1.2s infinite;
}

@keyframes lifecycle-travel {
  0%, 4% { left: 10%; opacity: 0; }
  8%, 18% { left: 10%; opacity: 1; }
  25%, 35% { left: 30%; opacity: 1; }
  42%, 52% { left: 50%; opacity: 1; }
  59%, 69% { left: 70%; opacity: 1; }
  76%, 92% { left: 90%; opacity: 1; }
  100% { left: 90%; opacity: 0; }
}

.brain-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 78px;
  align-items: center;
}

.brain-copy h2,
.method-copy h2,
.beta-copy h2,
.faq-grid h2,
.problem-grid h2,
.trust-grid h2 {
  margin-top: 24px;
}

.brain-copy > p:not(.section-index),
.method-copy > p:not(.section-index),
.beta-copy > p:not(.section-index) {
  max-width: 610px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  gap: 34px;
  margin-top: 28px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 14px;
  text-transform: uppercase;
}

.brain-map {
  position: relative;
  min-height: 555px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(220, 226, 217, 0.58);
}

.brain-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(18, 35, 28, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 35, 28, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(circle at center, #000 12%, transparent 84%);
}

.brain-map::before,
.brain-map::after {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(18, 35, 28, 0.2);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.brain-map::before {
  width: 390px;
  height: 390px;
}

.brain-map::after {
  width: 260px;
  height: 260px;
}

.brain-core {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  display: grid;
  width: 180px;
  min-height: 138px;
  align-content: center;
  padding: 22px;
  border: 1px solid var(--ink);
  background: var(--paper);
  transform: translate(-50%, -50%);
}

.brain-core small,
.brain-node small,
.brain-node > span,
.brain-output span {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
}

.brain-core strong {
  margin-top: 9px;
  font-size: 20px;
  letter-spacing: -0.045em;
  line-height: 1;
}

.brain-core i {
  position: absolute;
  right: -7px;
  bottom: -7px;
  width: 14px;
  height: 14px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 5px var(--paper);
  animation: brain-pulse 2.4s ease-in-out infinite;
}

@keyframes brain-pulse {
  0%, 100% { box-shadow: 0 0 0 5px var(--paper); }
  50% { box-shadow: 0 0 0 9px rgba(23, 133, 104, 0.18); }
}

.brain-node {
  position: absolute;
  z-index: 3;
  display: grid;
  grid-template-columns: 30px auto;
  column-gap: 9px;
  min-width: 220px;
  padding: 14px;
  border: 1px solid var(--line);
  background: rgba(237, 241, 235, 0.86);
}

.brain-node > span {
  grid-row: 1 / 3;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.brain-node strong {
  font-size: 16px;
}

.brain-node small {
  margin-top: 3px;
  color: var(--muted);
}

.brain-node-product {
  top: 62px;
  left: 45px;
}

.brain-node-brand {
  right: 45px;
  bottom: 72px;
}

.brain-node::after {
  position: absolute;
  z-index: -1;
  width: 180px;
  height: 1px;
  background: var(--line);
  content: "";
}

.brain-node-product::after {
  top: 70px;
  left: 175px;
  transform: rotate(28deg);
  transform-origin: left;
}

.brain-node-brand::after {
  right: 175px;
  bottom: 68px;
  transform: rotate(28deg);
  transform-origin: right;
}

.brain-output {
  position: absolute;
  z-index: 4;
  right: 32px;
  bottom: 28px;
  left: 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: var(--sage);
}

.brain-output span {
  padding: 8px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.brain-output span:last-child {
  border-right: 0;
}

.os-section .section-heading p:not(.section-index) {
  max-width: 760px;
}

.os-pipeline {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 46px 1.05fr 46px 1.05fr;
  min-height: 520px;
  margin-top: 54px;
  overflow: hidden;
  border: 1px solid var(--line);
  background-color: rgba(220, 226, 217, 0.46);
  background-image:
    linear-gradient(rgba(18, 35, 28, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 35, 28, 0.05) 1px, transparent 1px);
  background-size: 24px 24px;
}

.os-inputs,
.os-core,
.os-workflows {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding: 20px;
  background: rgba(237, 241, 235, 0.72);
}

.os-core {
  background: var(--ink);
  color: #eef2ec;
}

.os-column-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 9px;
  align-items: center;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
}

.os-core .os-column-head {
  border-color: rgba(238, 242, 236, 0.2);
}

.os-column-head > span,
.os-column-head > small {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
}

.os-core .os-column-head > span,
.os-core .os-column-head > small {
  color: #91a098;
}

.os-column-head strong {
  font-size: 16px;
}

.os-input-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-content: center;
  min-height: 310px;
  padding: 24px 0;
}

.os-input-cloud span {
  padding: 9px 10px;
  border: 1px solid var(--line);
  background: rgba(237, 241, 235, 0.88);
  font-size: 13px;
  box-shadow: 3px 3px 0 rgba(113, 128, 120, 0.16);
}

.os-input-cloud span:nth-child(2),
.os-input-cloud span:nth-child(6) { transform: translateY(9px); }
.os-input-cloud span:nth-child(3),
.os-input-cloud span:nth-child(7) { transform: translateY(-6px); }

.os-inputs > p {
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.os-core-stack {
  display: grid;
  gap: 9px;
  align-content: center;
  min-height: 422px;
}

.os-core-stack article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(238, 242, 236, 0.21);
  background: rgba(238, 242, 236, 0.045);
}

.os-core-stack article > span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(238, 242, 236, 0.34);
  color: #50c79f;
  font-family: var(--mono);
  font-size: 12px;
}

.os-core-stack article div {
  display: grid;
  gap: 4px;
}

.os-core-stack strong { font-size: 15px; }
.os-core-stack small { color: #96a49d; font-size: 11px; }

.os-transfer {
  position: relative;
  z-index: 3;
  display: grid;
  place-content: center;
  background: rgba(220, 226, 217, 0.8);
}

.os-transfer::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  border-left: 1px solid var(--line);
  content: "";
}

.os-transfer i {
  position: relative;
  z-index: 2;
  width: 23px;
  height: 23px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.os-transfer i::after {
  position: absolute;
  top: 7px;
  left: 6px;
  content: "→";
  font-family: var(--mono);
  font-size: 12px;
}

.os-transfer span {
  position: relative;
  z-index: 2;
  margin-top: 7px;
  padding: 4px 0;
  background: var(--sage);
  font-family: var(--mono);
  font-size: 10px;
  writing-mode: vertical-rl;
}

.os-workflows {
  display: grid;
  align-content: start;
  gap: 11px;
}

.os-workflows > article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 11px;
  min-height: 108px;
  align-items: center;
  padding: 13px;
  border: 1px solid var(--line);
  background: rgba(237, 241, 235, 0.8);
  transition: border-color 180ms ease, transform 180ms ease;
}

.os-workflows > article:first-of-type {
  margin-top: 26px;
}

.os-workflows > article:hover {
  border-color: var(--green);
  transform: translateX(3px);
}

.os-workflows > article > span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  background: var(--ink);
  color: #eef2ec;
  font-family: var(--mono);
  font-size: 12px;
}

.os-workflows h3 {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.os-workflows p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.os-pulse {
  position: absolute;
  z-index: 5;
  top: 48px;
  left: 2%;
  width: 7px;
  height: 7px;
  background: #50c79f;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(80, 199, 159, 0.14);
  opacity: 0;
  animation: os-travel 5.8s ease-in-out infinite;
}

@keyframes os-travel {
  0% { left: 2%; opacity: 0; }
  8%, 38% { opacity: 1; }
  48% { left: 48%; opacity: 1; }
  90% { left: 95%; opacity: 1; }
  100% { left: 98%; opacity: 0; }
}

.integration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.integration-card {
  min-height: 335px;
  padding: 21px;
  border: 1px solid var(--line);
  background: rgba(237, 241, 235, 0.52);
}

.integration-card > span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.07em;
}

.integration-card h3 {
  margin: 77px 0 14px;
  font-size: 25px;
  letter-spacing: -0.045em;
}

.integration-card p {
  max-width: 370px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.integration-card > div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 34px;
}

.integration-card i {
  padding: 6px 8px;
  border: 1px solid var(--line);
  border-radius: 20px;
  font-family: var(--mono);
  font-size: 12px;
  font-style: normal;
  text-transform: uppercase;
}

.method-section,
.legal-trust-section {
  background: var(--paper);
}

.method-grid,
.trust-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: start;
}

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

.method-list li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}

.method-list li > span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 13px;
}

.method-list strong {
  font-size: 18px;
}

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

.enterprise-security {
  overflow: hidden;
  background: var(--ink);
  color: #eef2ec;
}

.enterprise-security::before {
  position: absolute;
  top: -310px;
  right: -170px;
  width: 760px;
  height: 760px;
  border: 1px solid rgba(80, 199, 159, 0.14);
  border-radius: 50%;
  box-shadow:
    0 0 0 95px rgba(80, 199, 159, 0.025),
    0 0 0 190px rgba(80, 199, 159, 0.02);
  content: "";
  pointer-events: none;
}

.enterprise-kicker {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 7px 9px;
  border: 1px solid rgba(80, 199, 159, 0.5);
  background: rgba(80, 199, 159, 0.08);
  color: #70d6b3;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.trust-layer-head {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.72fr 2.28fr;
  gap: 48px;
  margin-top: 54px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(238, 242, 236, 0.24);
}

.trust-layer-head > span {
  color: #70d6b3;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.07em;
}

.trust-layer-head h3 {
  margin: 0;
  font-size: 25px;
  letter-spacing: -0.045em;
}

.trust-layer-head p {
  max-width: 680px;
  margin: 10px 0 0;
  color: #a8b5ae;
  font-size: 15px;
  line-height: 1.55;
}

.trust-layer-system {
  margin-top: 72px;
}

.evidence-record {
  position: relative;
  z-index: 2;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(238, 242, 236, 0.45);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 13px 13px 0 rgba(80, 199, 159, 0.16);
}

.evidence-record::before,
.evidence-record::after {
  position: absolute;
  z-index: 8;
  width: 13px;
  height: 13px;
  border-color: var(--line);
  content: "";
  pointer-events: none;
}

.evidence-record::before {
  top: 7px;
  left: 7px;
  border-top: 1px solid;
  border-left: 1px solid;
}

.evidence-record::after {
  right: 7px;
  bottom: 7px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.evidence-record-head {
  display: grid;
  grid-template-columns: 1fr 1fr 0.7fr;
  min-height: 50px;
  align-items: center;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
}

.evidence-record-head > span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.evidence-record-head > span i {
  width: 7px;
  height: 7px;
  background: #50c79f;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(80, 199, 159, 0.14);
}

.evidence-record-head strong {
  text-align: center;
}

.evidence-record-head small {
  justify-self: end;
  padding: 5px 7px;
  background: #dff3eb;
  color: var(--green);
  font-size: 11px;
}

.evidence-record-body {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  min-height: 330px;
}

.evidence-content {
  padding: 28px 30px;
  border-right: 1px solid var(--line);
  background-color: rgba(237, 241, 235, 0.8);
  background-image:
    linear-gradient(rgba(18, 35, 28, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 35, 28, 0.045) 1px, transparent 1px);
  background-size: 24px 24px;
}

.evidence-content > div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11px;
}

.evidence-content > div small {
  color: var(--muted);
  font-size: 11px;
}

.evidence-content > p {
  margin: 38px 0 8px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
}

.evidence-content h3 {
  margin: 0 0 22px;
  font-size: 27px;
  letter-spacing: -0.05em;
}

.evidence-content blockquote {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.evidence-content mark {
  padding: 3px 4px;
  background: var(--green);
  color: #fff;
}

.evidence-content footer {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 33px;
}

.evidence-content footer span {
  padding: 6px 8px;
  border: 1px solid var(--line);
  background: rgba(237, 241, 235, 0.82);
  font-family: var(--mono);
  font-size: 11px;
}

.evidence-ledger {
  padding: 26px 28px;
  background: var(--ink-2);
  color: #eef2ec;
}

.evidence-ledger-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(238, 242, 236, 0.2);
  font-family: var(--mono);
  font-size: 11px;
}

.evidence-ledger-head span {
  color: #9eaea6;
}

.evidence-ledger-head b {
  padding: 5px 7px;
  background: #dff3eb;
  color: var(--green);
  font-size: 10px;
  font-weight: 600;
}

.evidence-ledger dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 17px 0 0;
  border-top: 1px solid rgba(238, 242, 236, 0.17);
  border-left: 1px solid rgba(238, 242, 236, 0.17);
}

.evidence-ledger dl > div {
  display: grid;
  gap: 6px;
  min-height: 66px;
  align-content: center;
  padding: 10px;
  border-right: 1px solid rgba(238, 242, 236, 0.17);
  border-bottom: 1px solid rgba(238, 242, 236, 0.17);
}

.evidence-ledger dt {
  color: #8fa098;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.evidence-ledger dd {
  margin: 0;
  font-size: 12px;
}

.evidence-ledger > p {
  margin: 17px 0 0;
  color: #aebbb5;
  font-size: 11px;
  line-height: 1.5;
}

.evidence-ledger > p span {
  display: block;
  margin-bottom: 5px;
  color: #70d6b3;
  font-family: var(--mono);
  font-size: 10px;
}

.evidence-route {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  min-height: 112px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: var(--sage);
}

.evidence-route::before {
  position: absolute;
  top: 37px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: var(--line);
  content: "";
}

.evidence-route article {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 5px;
  align-content: end;
  padding: 16px 15px;
  border-right: 1px solid var(--line);
}

.evidence-route article:last-of-type {
  border-right: 0;
}

.evidence-route article > span {
  position: absolute;
  top: 27px;
  left: 50%;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 10px;
  transform: translateX(-50%);
}

.evidence-route strong {
  font-size: 15px;
}

.evidence-route small {
  color: var(--green);
  font-family: var(--mono);
  font-size: 10px;
}

.evidence-route > i {
  position: absolute;
  z-index: 4;
  top: 33px;
  left: 10%;
  width: 9px;
  height: 9px;
  background: #50c79f;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(80, 199, 159, 0.17);
  opacity: 0;
  animation: evidence-travel 6.2s ease-in-out 0.8s infinite;
}

@keyframes evidence-travel {
  0% { left: 10%; opacity: 0; }
  7%, 90% { opacity: 1; }
  100% { left: 90%; opacity: 0; }
}

.evidence-record-foot {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 45px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.evidence-record-foot span {
  display: flex;
  min-height: 45px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
}

.evidence-record-foot span:last-child {
  border-right: 0;
}

.evidence-record-foot i {
  width: 5px;
  height: 5px;
  background: var(--green);
  border-radius: 50%;
}

.security-console {
  position: relative;
  z-index: 2;
  margin-top: 48px;
  border: 1px solid rgba(238, 242, 236, 0.42);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 13px 13px 0 rgba(80, 199, 159, 0.16);
}

.security-console::before,
.security-console::after {
  position: absolute;
  z-index: 5;
  width: 13px;
  height: 13px;
  border-color: var(--line);
  content: "";
  pointer-events: none;
}

.security-console::before {
  top: 7px;
  left: 7px;
  border-top: 1px solid;
  border-left: 1px solid;
}

.security-console::after {
  right: 7px;
  bottom: 7px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.security-console-head {
  display: grid;
  grid-template-columns: 1fr 1fr 0.7fr;
  min-height: 50px;
  align-items: center;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
}

.security-console-head > span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.security-console-head > span i {
  width: 7px;
  height: 7px;
  background: #50c79f;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(80, 199, 159, 0.14);
}

.security-console-head strong {
  text-align: center;
}

.security-console-head small {
  color: var(--muted);
  font-size: 11px;
  text-align: right;
}

.security-path {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 365px;
  background-color: rgba(237, 241, 235, 0.78);
  background-image:
    linear-gradient(rgba(18, 35, 28, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 35, 28, 0.045) 1px, transparent 1px);
  background-size: 24px 24px;
}

.security-path article {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding: 21px 20px 55px;
  border-right: 1px solid var(--line);
  background: rgba(237, 241, 235, 0.38);
}

.security-path article:last-of-type {
  border-right: 0;
}

.security-step {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.security-step > span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
}

.security-step > i {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 7px var(--paper);
  font-family: var(--mono);
  font-size: 11px;
  font-style: normal;
  font-weight: 650;
}

.security-path article > small {
  display: block;
  margin-top: 55px;
  color: var(--green);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
}

.security-path h3 {
  margin: 11px 0 13px;
  font-size: 23px;
  letter-spacing: -0.045em;
}

.security-path p {
  max-width: 260px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.security-path article > b {
  position: absolute;
  right: 20px;
  bottom: 19px;
  left: 20px;
  padding-top: 10px;
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.security-line {
  position: absolute;
  z-index: 1;
  top: 39px;
  right: 12.5%;
  left: 12.5%;
  height: 1px;
  background: var(--line);
}

.security-line > i {
  position: absolute;
  top: -4px;
  left: 0;
  width: 9px;
  height: 9px;
  background: #50c79f;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(80, 199, 159, 0.16);
  opacity: 0;
  animation: security-travel 5.2s ease-in-out 0.8s infinite;
}

@keyframes security-travel {
  0% { left: 0; opacity: 0; }
  8%, 88% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

.security-console-foot {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 48px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.security-console-foot span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 48px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.security-console-foot span:last-child {
  border-right: 0;
}

.security-console-foot i {
  width: 5px;
  height: 5px;
  background: var(--green);
  border-radius: 50%;
}

.security-handoff {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 33px;
  padding-top: 24px;
  border-top: 1px solid rgba(238, 242, 236, 0.24);
}

.security-handoff p {
  display: grid;
  gap: 7px;
  margin: 0;
}

.security-handoff p strong {
  font-size: 18px;
}

.security-handoff p span {
  color: #a8b5ae;
  font-size: 14px;
}

.security-handoff > a {
  display: flex;
  min-width: 300px;
  align-items: center;
  justify-content: space-between;
  padding: 15px 17px;
  border: 1px solid rgba(238, 242, 236, 0.45);
  background: rgba(238, 242, 236, 0.05);
  font-size: 14px;
  font-weight: 650;
  transition: background 180ms ease, color 180ms ease;
}

.security-handoff > a:hover,
.security-handoff > a:focus-visible {
  background: #eef2ec;
  color: var(--ink);
  outline: 0;
}

.beta-section {
  border-top: 1px solid var(--line);
}

.beta-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 80px;
  align-items: start;
}

.beta-copy ul {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.beta-copy li {
  position: relative;
  margin: 11px 0;
  padding-left: 18px;
  color: #40534a;
  font-size: 16px;
}

.beta-copy li::before {
  position: absolute;
  top: 5px;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--ink);
  border-radius: 50%;
  content: "";
}

.lead-form {
  position: relative;
  display: grid;
  gap: 15px;
  padding: 25px;
  border: 1px solid var(--line);
  background: rgba(237, 241, 235, 0.82);
  box-shadow: 10px 10px 0 rgba(113, 128, 120, 0.34);
}

.form-head {
  display: flex;
  justify-content: space-between;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
}

.form-head small {
  color: var(--muted);
  font-size: 12px;
}

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

.lead-form label {
  display: grid;
  gap: 7px;
  color: #40534a;
  font-size: 14px;
}

.lead-form input,
.lead-form textarea,
.lead-form select {
  width: 100%;
  min-height: 44px;
  padding: 10px 11px;
  border: 1px solid rgba(113, 128, 120, 0.7);
  border-radius: 0;
  outline: none;
  background: var(--paper-2);
  color: var(--ink);
  font-size: 16px;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input:focus,
.lead-form textarea:focus,
.lead-form select:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 2px rgba(18, 35, 28, 0.1);
}

.lead-form .consent {
  display: flex;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 9px;
}

.lead-form .consent input {
  flex: 0 0 auto;
  width: 15px;
  min-height: 15px;
  margin: 1px 0 0;
}

.lead-form .button {
  width: 100%;
}

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

.form-success {
  position: absolute;
  z-index: 4;
  inset: 0;
  display: grid;
  place-content: center;
  padding: 50px;
  background: var(--ink);
  color: #eef2ec;
  text-align: center;
}

.form-success[hidden] {
  display: none;
}

.form-error {
  margin: 0;
  color: var(--orange);
  font-size: 16px;
  line-height: 1.5;
}

.form-error[hidden] {
  display: none;
}

.legal-hero h1 {
  margin: 10px 0 6px;
}

.legal-callout {
  margin: 24px 0 0;
  padding: 16px 18px;
  border: 1px solid var(--orange);
  background: rgba(212, 108, 47, 0.08);
  font-size: 16px;
  line-height: 1.6;
}

.legal-body section {
  max-width: 760px;
  margin: 0 0 40px;
}

.legal-body h2 {
  font-size: 20px;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
}

.legal-body h3 {
  font-size: 18px;
  margin: 22px 0 8px;
}

.legal-body p,
.legal-body li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.legal-body address {
  font-style: normal;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.7;
}

.legal-body ul,
.legal-body ol {
  margin: 0 0 12px;
  padding-left: 20px;
}

.legal-placeholder {
  color: var(--orange);
  font-weight: 650;
}

.form-success strong {
  font-size: 34px;
  letter-spacing: -0.05em;
}

.form-success span {
  max-width: 420px;
  margin-top: 13px;
  color: #b9c5bf;
  font-size: 16px;
  line-height: 1.55;
}

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

.faq-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 90px;
}

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

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

.faq-list summary {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 620;
  list-style: none;
}

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

.faq-list summary span {
  font-family: var(--mono);
  font-size: 19px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 700px;
  margin: -4px 0 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.site-footer {
  padding: 66px 0 22px;
  background: var(--ink);
  color: #eef2ec;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
}

.footer-brand span {
  color: #eef2ec;
}

.footer-grid > div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-grid > div:first-child p {
  color: #98aaa1;
  font-size: 15px;
}

.footer-grid strong {
  margin-bottom: 7px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-grid > div:not(:first-child) a {
  color: #aebbb5;
  font-size: 15px;
}

.footer-grid > div:not(:first-child) a:hover {
  color: #fff;
}

.footer-base {
  display: flex;
  justify-content: space-between;
  margin-top: 58px;
  padding-top: 17px;
  border-top: 1px solid rgba(238, 242, 236, 0.18);
  color: #81938a;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.05em;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

/* Legal landing page */
.legal-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 0;
}

.legal-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(610px, 1.08fr);
  gap: 58px;
  align-items: center;
}

.legal-hero-copy {
  padding-bottom: 48px;
}

.legal-hero h1 {
  font-size: clamp(52px, 4.85vw, 72px);
}

.legal-scope {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px 14px;
  margin-top: 24px;
  color: #40534a;
  font-size: 14px;
}

.legal-scope > span,
.legal-scope small {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.05em;
}

.legal-scope i {
  width: 20px;
  height: 1px;
  background: var(--line);
}

.legal-scope small {
  width: 100%;
  color: var(--muted);
}

.legal-case {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(237, 241, 235, 0.76);
  box-shadow: 13px 13px 0 rgba(113, 128, 120, 0.36);
}

.case-frame {
  display: grid;
  grid-template-columns: 1fr 1.2fr 0.8fr;
  min-height: 44px;
  align-items: center;
  padding: 0 17px;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
}

.case-frame strong {
  text-align: center;
}

.case-frame small {
  color: var(--muted);
  font-size: 11px;
  text-align: right;
}

.case-document {
  position: relative;
  min-height: 264px;
  padding: 29px 30px;
  border-bottom: 1px solid var(--line);
  background-image:
    linear-gradient(rgba(18, 35, 28, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 35, 28, 0.045) 1px, transparent 1px);
  background-size: 22px 22px;
}

.case-label {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.07em;
}

.case-document h2 {
  margin: 38px 0 19px;
  font-size: 30px;
  letter-spacing: -0.05em;
}

.case-document > p {
  max-width: 560px;
  margin: 0;
  color: #3e5248;
  font-size: 14px;
  line-height: 1.7;
}

.case-document mark {
  padding: 3px 4px;
  background: #178568;
  color: #fff;
}

.case-marker {
  position: absolute;
  right: 25px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
}

.case-marker span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  background: var(--green);
  color: #fff;
}

.case-finding {
  padding: 24px 28px 25px;
  background: var(--ink);
  color: #eef2ec;
}

.case-finding > div {
  display: flex;
  justify-content: space-between;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(238, 242, 236, 0.18);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.05em;
}

.case-finding > div span {
  color: #a7b4ae;
}

.case-finding > div b {
  padding: 4px 6px;
  background: #dff3eb;
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
}

.case-finding blockquote {
  margin: 23px 0 14px;
  font-size: 20px;
  font-weight: 620;
}

.case-finding > strong {
  color: #49b884;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
}

.case-finding > p {
  margin: 14px 0 0;
  color: #bdc8c3;
  font-size: 15px;
  line-height: 1.55;
}

.case-finding footer {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  margin-top: 19px;
  padding-top: 13px;
  border-top: 1px solid rgba(238, 242, 236, 0.18);
}

.case-finding footer span {
  color: #81928a;
  font-family: var(--mono);
  font-size: 12px;
}

.case-finding footer p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.case-scan {
  animation: legal-case-scan 5.6s ease-in-out 1.2s infinite;
}

@keyframes legal-case-scan {
  0%, 8% { left: 0; opacity: 0; }
  12% { opacity: 0.72; }
  28% { left: 100%; opacity: 0.72; }
  33%, 100% { left: 100%; opacity: 0; }
}

.legal-trust-rail {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  gap: 17px;
  margin-top: 72px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
}

.legal-trust-rail i {
  color: var(--line);
  font-style: normal;
}

.problem-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 55px 78px;
}

.problem-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.problem-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.problem-contrast {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
}

.problem-contrast article {
  min-height: 245px;
  padding: 21px 24px;
}

.problem-contrast article + article {
  border-left: 1px solid var(--line);
  background: var(--ink);
  color: #eef2ec;
}

.problem-contrast article > span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.problem-contrast article + article > span {
  color: #9dadA5;
}

.problem-contrast ul {
  margin: 45px 0 0;
  padding: 0;
  list-style: none;
}

.problem-contrast li {
  position: relative;
  margin: 11px 0;
  padding-left: 18px;
  font-size: 16px;
}

.problem-contrast li::before {
  position: absolute;
  top: 5px;
  left: 0;
  width: 6px;
  height: 6px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
}

.legal-module-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.legal-module {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  padding: 25px;
  border: 1px solid var(--line);
  background: rgba(237, 241, 235, 0.54);
}

.legal-module::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: var(--module);
  content: "";
}

.legal-module-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.07em;
}

.legal-module-head i {
  width: 9px;
  height: 9px;
  background: var(--module);
}

.legal-module h3 {
  max-width: 570px;
  margin: 86px 0 17px;
  font-size: clamp(29px, 3vw, 42px);
  letter-spacing: -0.055em;
  line-height: 1;
}

.legal-module > p {
  max-width: 570px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.legal-module ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 24px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.legal-module li {
  position: relative;
  padding-left: 16px;
  font-size: 15px;
  line-height: 1.45;
}

.legal-module li::before {
  position: absolute;
  top: 5px;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--module);
  border-radius: 50%;
  content: "";
}

.legal-module > a {
  position: absolute;
  right: 25px;
  bottom: 25px;
  left: 25px;
  display: flex;
  justify-content: space-between;
  padding: 15px 17px;
  background: var(--ink);
  color: #eef2ec;
  font-size: 15px;
  font-weight: 650;
}

.domain-roadmap {
  display: grid;
  grid-template-columns: 0.8fr 2fr auto;
  gap: 22px;
  align-items: center;
  margin-top: 12px;
  padding: 17px 20px;
  border: 1px solid var(--line);
  background: rgba(237, 241, 235, 0.4);
}

.domain-roadmap > span,
.domain-roadmap small {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
}

.domain-roadmap > div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.domain-roadmap i {
  padding: 6px 8px;
  border: 1px solid var(--line);
  border-radius: 20px;
  font-size: 13px;
  font-style: normal;
}

.method-pipeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 12px;
}

.method-pipeline article {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 13px;
  min-height: 290px;
  padding: 22px 18px;
  border-right: 1px solid rgba(238, 242, 236, 0.22);
  border-bottom: 1px solid rgba(238, 242, 236, 0.22);
}

.method-pipeline article:first-child {
  border-left: 1px solid rgba(238, 242, 236, 0.22);
}

.method-pipeline article > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid #718078;
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 12px;
}

.method-pipeline small {
  color: #93a29a;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.07em;
}

.method-pipeline h3 {
  margin: 65px 0 12px;
  font-size: 19px;
  letter-spacing: -0.035em;
}

.method-pipeline p {
  margin: 0;
  color: #aeb9b4;
  font-size: 15px;
  line-height: 1.55;
}

.method-pipeline article:not(:last-child)::after {
  position: absolute;
  z-index: 3;
  top: 31px;
  right: -8px;
  width: 16px;
  height: 16px;
  background: var(--ink);
  color: #718078;
  content: "→";
  font-size: 16px;
  text-align: center;
}

.method-principle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 24px;
  padding: 20px 22px;
  border: 1px solid rgba(238, 242, 236, 0.25);
}

.method-principle strong {
  font-size: 18px;
}

.method-principle p {
  margin: 0;
  color: #aeb9b4;
  font-size: 15px;
  line-height: 1.55;
}

.workflow-board {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  align-items: stretch;
  margin-top: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.workflow-board article {
  position: relative;
  z-index: 2;
  min-height: 230px;
  padding: 19px 16px;
  background: rgba(237, 241, 235, 0.56);
}

.workflow-board > i {
  position: relative;
  z-index: 2;
  display: grid;
  width: 32px;
  place-items: center;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--sage);
  color: var(--line);
  font-style: normal;
}

.workflow-board article > span {
  color: var(--muted);
  font-size: 13px;
}

.workflow-board h3 {
  margin: 66px 0 10px;
  font-size: 19px;
  letter-spacing: -0.035em;
}

.workflow-board p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.workflow-board > b {
  position: absolute;
  z-index: 5;
  top: 26px;
  left: 4%;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(23, 133, 104, 0.14);
  opacity: 0;
  animation: workflow-travel 8.5s ease-in-out 1s infinite;
}

@keyframes workflow-travel {
  0%, 6% { left: 4%; opacity: 0; }
  10%, 22% { left: 4%; opacity: 1; }
  30%, 42% { left: 27%; opacity: 1; }
  50%, 62% { left: 50%; opacity: 1; }
  70%, 80% { left: 73%; opacity: 1; }
  88%, 95% { left: 96%; opacity: 1; }
  100% { left: 96%; opacity: 0; }
}

.access-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.access-grid article {
  min-height: 310px;
  padding: 21px;
  border: 1px solid var(--line);
  background: rgba(237, 241, 235, 0.5);
}

.access-grid article > span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 13px;
}

.access-grid h3 {
  margin: 76px 0 13px;
  font-size: 23px;
  letter-spacing: -0.04em;
}

.access-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.58;
}

.access-grid small {
  display: block;
  margin-top: 32px;
  color: #40534a;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.05em;
}

.trust-principles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.trust-principles article {
  min-height: 205px;
  padding: 19px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-principles span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 13px;
}

.trust-principles h3 {
  margin: 49px 0 10px;
  font-size: 19px;
}

.trust-principles p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

/* Enterprise pricing */
.pricing-hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 92px;
}

.pricing-hero::before {
  position: absolute;
  top: -220px;
  right: -110px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(18, 35, 28, 0.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 96px rgba(18, 35, 28, 0.025),
    0 0 0 194px rgba(18, 35, 28, 0.02);
  content: "";
  pointer-events: none;
}

.pricing-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr);
  gap: 76px;
  align-items: center;
}

.pricing-hero-copy {
  padding: 28px 0;
}

.pricing-hero .overline {
  display: flex;
  justify-content: space-between;
  margin: 0 0 34px;
  padding-bottom: 11px;
  border-bottom: 1px solid var(--line);
  color: #3d5148;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.pricing-hero .overline i {
  font-style: normal;
}

.pricing-hero h1 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(56px, 5.5vw, 86px);
  font-weight: 600;
  letter-spacing: -0.075em;
  line-height: 0.94;
}

.pricing-hero h1 em {
  display: block;
  color: var(--green);
  font-style: normal;
}

.pricing-hero .hero-lead {
  max-width: 690px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.6;
}

.pricing-hero .hero-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin-top: 25px;
}

.pricing-hero .hero-assurance span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.pricing-hero .hero-assurance i {
  width: 5px;
  height: 5px;
  background: var(--ink);
  border-radius: 50%;
}

.pricing-offer-card {
  position: relative;
  min-height: 650px;
  padding: 30px 32px 26px;
  overflow: hidden;
  border: 1px solid #1d3c30;
  background:
    linear-gradient(rgba(238, 242, 236, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(238, 242, 236, 0.035) 1px, transparent 1px),
    var(--ink);
  background-size: 24px 24px;
  box-shadow: 18px 18px 0 rgba(18, 35, 28, 0.1);
  color: #eef2ec;
}

.pricing-offer-card::before {
  position: absolute;
  right: -14%;
  bottom: 0;
  width: 74%;
  height: 112px;
  background: repeating-linear-gradient(90deg, transparent 0 14px, rgba(54, 195, 151, 0.26) 14px 16px);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  content: "";
  opacity: 0.62;
}

.pricing-offer-card::after {
  position: absolute;
  top: 21px;
  right: 21px;
  width: 9px;
  height: 9px;
  border-top: 1px solid #79d2b5;
  border-right: 1px solid #79d2b5;
  content: "";
}

.pricing-offer-head {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  padding-bottom: 17px;
  border-bottom: 1px solid rgba(238, 242, 236, 0.22);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.pricing-offer-head b {
  color: #79d2b5;
  font-weight: 500;
}

.pricing-offer-card > p {
  position: relative;
  z-index: 1;
  margin: 34px 0 11px;
  color: #7fcfb5;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.pricing-offer-card h2 {
  position: relative;
  z-index: 1;
  max-width: 430px;
  margin: 0;
  font-size: 34px;
  font-weight: 580;
  letter-spacing: -0.055em;
  line-height: 1.03;
}

.pricing-offer-card > a,
.pricing-start-card > a {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  margin: 24px 0 0;
  padding: 15px 16px;
  background: #82e0c0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 650;
  transition: background 180ms ease, transform 180ms ease;
}

.pricing-offer-card > a:hover,
.pricing-start-card > a:hover {
  background: #a0efd4;
  transform: translateY(-2px);
}

.pricing-offer-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  margin: 24px 0 92px;
  padding: 0;
  list-style: none;
}

.pricing-offer-card li {
  position: relative;
  padding: 9px 0 9px 21px;
  border-bottom: 1px solid rgba(238, 242, 236, 0.12);
  color: #d8e0db;
  font-size: 15px;
  line-height: 1.35;
}

.pricing-offer-card li::before {
  position: absolute;
  top: 12px;
  left: 1px;
  width: 8px;
  height: 4px;
  border-bottom: 1px solid #82e0c0;
  border-left: 1px solid #82e0c0;
  content: "";
  transform: rotate(-45deg);
}

.pricing-offer-card footer {
  position: absolute;
  z-index: 1;
  right: 32px;
  bottom: 25px;
  left: 32px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #8fa39a;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
}

.pricing-offer-card footer small {
  font-size: inherit;
}

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

.pricing-fit-grid article {
  min-height: 275px;
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pricing-fit-grid span,
.pricing-feature-group > div,
.pricing-start-head {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
}

.pricing-fit-grid h3 {
  margin: 88px 0 14px;
  font-size: 22px;
  letter-spacing: -0.045em;
}

.pricing-fit-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

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

.pricing-feature-group {
  position: relative;
  min-height: 500px;
  padding: 22px 20px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(237, 241, 235, 0.44);
}

.pricing-feature-group::before {
  position: absolute;
  top: -1px;
  right: 20px;
  width: 44px;
  height: 4px;
  background: var(--green);
  content: "";
}

.pricing-feature-group > div,
.pricing-start-head {
  display: flex;
  justify-content: space-between;
}

.pricing-feature-group > div b,
.pricing-start-head b {
  color: var(--green);
  font-weight: 500;
}

.pricing-feature-group h3 {
  margin: 88px 0 21px;
  font-size: 24px;
  letter-spacing: -0.05em;
}

.pricing-feature-group ul,
.pricing-start-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-feature-group li,
.pricing-start-card li {
  position: relative;
  padding: 11px 0 11px 16px;
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.pricing-feature-group li::before,
.pricing-start-card li::before {
  position: absolute;
  top: 15px;
  left: 0;
  width: 5px;
  height: 5px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
}

.pricing-logic {
  overflow: hidden;
  background: var(--ink);
  color: #eef2ec;
}

.pricing-configurator {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 52px;
  border-top: 1px solid rgba(238, 242, 236, 0.25);
  border-left: 1px solid rgba(238, 242, 236, 0.25);
}

.pricing-configurator article {
  position: relative;
  z-index: 1;
  min-height: 350px;
  padding: 20px;
  border-right: 1px solid rgba(238, 242, 236, 0.25);
  border-bottom: 1px solid rgba(238, 242, 236, 0.25);
  background: rgba(238, 242, 236, 0.02);
}

.pricing-configurator article > span,
.pricing-configurator article > small {
  display: block;
  color: #799187;
  font-family: var(--mono);
  font-size: 13px;
}

.pricing-configurator article > small {
  margin-top: 65px;
  color: #73d3b2;
  letter-spacing: 0.08em;
}

.pricing-configurator h3 {
  max-width: 230px;
  margin: 13px 0;
  font-size: 20px;
  letter-spacing: -0.045em;
  line-height: 1.12;
}

.pricing-configurator p {
  min-height: 58px;
  margin: 0;
  color: #9daca5;
  font-size: 14px;
  line-height: 1.58;
}

.pricing-configurator article > div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 25px;
}

.pricing-configurator article i {
  padding: 6px 8px;
  border: 1px solid rgba(238, 242, 236, 0.18);
  color: #b8c5bf;
  font-family: var(--mono);
  font-size: 12px;
  font-style: normal;
}

.pricing-configurator > b {
  position: absolute;
  z-index: 3;
  top: -4px;
  left: 0;
  width: 9px;
  height: 9px;
  background: #82e0c0;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(130, 224, 192, 0.12);
  animation: pricing-travel 8s ease-in-out infinite;
}

@keyframes pricing-travel {
  0%, 7% { left: 0; opacity: 0; }
  12%, 24% { left: 0; opacity: 1; }
  34%, 46% { left: 25%; opacity: 1; }
  56%, 68% { left: 50%; opacity: 1; }
  78%, 92% { left: calc(100% - 9px); opacity: 1; }
  100% { left: calc(100% - 9px); opacity: 0; }
}

.pricing-result {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  margin-top: 12px;
  border: 1px solid rgba(238, 242, 236, 0.25);
}

.pricing-result > div {
  display: grid;
  grid-template-columns: 0.55fr 1.35fr 1.5fr;
  gap: 18px;
  align-items: center;
  padding: 21px;
}

.pricing-result span,
.pricing-result small {
  color: #80968c;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
}

.pricing-result strong {
  font-size: 18px;
}

.pricing-result > a {
  align-self: stretch;
  display: flex;
  min-width: 210px;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background: #82e0c0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 650;
}

.pricing-start-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 52px;
}

.pricing-start-card {
  position: relative;
  min-height: 610px;
  padding: 27px 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(18, 35, 28, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 35, 28, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 22px 22px;
}

.pricing-start-card.is-enterprise {
  border-color: var(--ink);
  background:
    linear-gradient(rgba(238, 242, 236, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(238, 242, 236, 0.035) 1px, transparent 1px),
    var(--ink);
  background-size: 22px 22px;
  color: #eef2ec;
}

.pricing-start-card.is-enterprise .pricing-start-head,
.pricing-start-card.is-enterprise p,
.pricing-start-card.is-enterprise li {
  color: #aebbb5;
}

.pricing-start-card.is-enterprise li {
  border-color: rgba(238, 242, 236, 0.14);
}

.pricing-start-card h3 {
  max-width: 560px;
  margin: 98px 0 18px;
  font-size: 34px;
  letter-spacing: -0.06em;
  line-height: 1.04;
}

.pricing-start-card > p {
  max-width: 570px;
  margin: 0 0 29px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.pricing-start-card > a {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
}

.pricing-start-card:not(.is-enterprise) > a {
  background: var(--ink);
  color: #eef2ec;
}

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

.pricing-assurance-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  align-items: end;
}

.pricing-assurance h2 {
  max-width: 620px;
  margin: 28px 0 19px;
  font-size: 48px;
  letter-spacing: -0.065em;
  line-height: 0.99;
}

.pricing-assurance p {
  max-width: 600px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

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

.pricing-assurance-list span {
  display: grid;
  grid-template-columns: 15px 1fr;
  gap: 13px;
  align-items: center;
  padding: 17px 4px;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
}

.pricing-assurance-list i {
  width: 8px;
  height: 8px;
  border: 1px solid var(--green);
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px var(--sage);
  background: var(--green);
}

/* Module detail pages */
.module-detail-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 88px;
}

.module-detail-hero::before {
  position: absolute;
  top: -210px;
  right: -110px;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(18, 35, 28, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 95px rgba(18, 35, 28, 0.024),
    0 0 0 190px rgba(18, 35, 28, 0.018);
  content: "";
  pointer-events: none;
}

.module-detail-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(450px, 0.95fr);
  gap: 70px;
  align-items: center;
}

.module-detail-hero-copy {
  padding: 24px 0;
}

.module-detail-hero .overline {
  display: flex;
  justify-content: space-between;
  margin: 0 0 33px;
  padding-bottom: 11px;
  border-bottom: 1px solid var(--line);
  color: #3d5148;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.module-detail-hero .overline i {
  font-style: normal;
}

.module-detail-hero h1 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(56px, 5.2vw, 82px);
  font-weight: 600;
  letter-spacing: -0.075em;
  line-height: 0.95;
}

.module-detail-hero h1 em {
  display: block;
  color: var(--page-accent);
  font-style: normal;
}

.module-detail-hero .hero-lead {
  max-width: 720px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.62;
}

.module-detail-hero .hero-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 25px;
  margin-top: 25px;
}

.module-detail-hero .hero-assurance span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
}

.module-detail-hero .hero-assurance i {
  width: 5px;
  height: 5px;
  background: var(--page-accent);
  border-radius: 50%;
}

.module-signal-card {
  position: relative;
  min-height: 645px;
  overflow: hidden;
  border: 1px solid var(--ink);
  background:
    linear-gradient(rgba(238, 242, 236, 0.034) 1px, transparent 1px),
    linear-gradient(90deg, rgba(238, 242, 236, 0.034) 1px, transparent 1px),
    var(--ink);
  background-size: 22px 22px;
  box-shadow: 17px 17px 0 rgba(18, 35, 28, 0.11);
  color: #eef2ec;
}

.module-signal-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: var(--page-accent);
  content: "";
}

.module-signal-head {
  display: flex;
  justify-content: space-between;
  padding: 24px 25px 17px;
  border-bottom: 1px solid rgba(238, 242, 236, 0.22);
  color: #93a59d;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
}

.module-signal-head b {
  color: #eef2ec;
  font-weight: 500;
}

.module-score {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 15px;
  align-items: end;
  padding: 20px 25px 0;
}

.module-score span,
.module-score small {
  color: #7f948a;
  font-family: var(--mono);
  font-size: 12px;
}

.module-score strong {
  grid-row: 1 / 3;
  grid-column: 2;
  color: var(--page-accent);
  font-size: 48px;
  font-weight: 550;
  letter-spacing: -0.06em;
  line-height: 0.85;
}

.module-signal-document {
  position: relative;
  min-height: 220px;
  padding: 42px 27px 28px;
  overflow: hidden;
  border-bottom: 1px solid rgba(238, 242, 236, 0.2);
  background: rgba(238, 242, 236, 0.96);
  color: var(--ink);
}

.module-signal-seo .module-signal-document,
.module-signal-ai .module-signal-document {
  min-height: 190px;
  padding-top: 27px;
}

.module-signal-document small {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
}

.module-signal-document h2 {
  margin: 45px 0 17px;
  font-size: 27px;
  letter-spacing: -0.055em;
}

.module-signal-seo .module-signal-document h2,
.module-signal-ai .module-signal-document h2 {
  margin-top: 24px;
}

.module-signal-document p {
  max-width: 490px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.module-signal-document mark,
.module-example-content mark {
  padding: 3px 5px;
  background: var(--page-accent);
  color: #fff;
}

.module-signal-document > i {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 18%;
  width: 1px;
  background: var(--page-accent);
  box-shadow: 0 0 10px var(--page-accent);
  opacity: 0;
  animation: module-scan 6.5s ease-in-out 1.2s infinite;
}

@keyframes module-scan {
  0%, 10% { left: 8%; opacity: 0; }
  15%, 76% { opacity: 0.72; }
  82%, 100% { left: 92%; opacity: 0; }
}

.module-signal-result {
  padding: 24px 27px 28px;
}

.module-signal-result > span {
  color: var(--page-accent);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
}

.module-signal-result h3 {
  max-width: 500px;
  margin: 15px 0 13px;
  font-size: 20px;
  letter-spacing: -0.04em;
  line-height: 1.16;
}

.module-signal-result p {
  margin: 0;
  color: #aebbb5;
  font-size: 14px;
  line-height: 1.55;
}

.module-signal-result > div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  margin-top: 19px;
  padding-top: 13px;
  border-top: 1px solid rgba(238, 242, 236, 0.17);
  font-size: 13px;
}

.module-signal-result > div small {
  color: #7f948a;
  font-family: var(--mono);
}

.module-signal-card > footer,
.roadmap-console > footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 17px;
  padding: 14px 20px;
  border-top: 1px solid rgba(238, 242, 236, 0.2);
  color: #81948b;
  font-family: var(--mono);
  font-size: 12px;
}

.module-problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 50px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.module-problem-grid article {
  min-height: 270px;
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.module-problem-grid span,
.module-capability-grid span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 13px;
}

.module-problem-grid h3 {
  margin: 80px 0 13px;
  font-size: 22px;
  letter-spacing: -0.045em;
}

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

.module-source-note {
  display: grid;
  grid-template-columns: 0.35fr 1.25fr auto;
  gap: 25px;
  align-items: center;
  margin-top: 12px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: var(--page-soft);
}

.module-source-note > span {
  color: var(--page-accent);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
}

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

.module-source-note a {
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 13px;
  white-space: nowrap;
}

.module-source-note > div {
  display: flex;
  gap: 17px;
}

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

.module-capability-grid article {
  position: relative;
  min-height: 250px;
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(237, 241, 235, 0.52);
}

.module-capability-grid article::before {
  position: absolute;
  top: -1px;
  right: 20px;
  width: 36px;
  height: 4px;
  background: var(--page-accent);
  content: "";
}

.module-capability-grid h3 {
  margin: 68px 0 13px;
  font-size: 20px;
  letter-spacing: -0.045em;
}

.module-example-section {
  overflow: hidden;
  background: var(--ink);
  color: #eef2ec;
}

.module-example-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 50px;
  border: 1px solid rgba(238, 242, 236, 0.25);
}

.module-example-content {
  min-height: 410px;
  padding: 26px 28px;
  border-right: 1px solid rgba(238, 242, 236, 0.25);
  background:
    linear-gradient(rgba(18, 35, 28, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 35, 28, 0.04) 1px, transparent 1px),
    var(--paper);
  background-size: 22px 22px;
  color: var(--ink);
}

.module-example-content > div,
.module-example-finding > div {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
}

.module-example-content h3 {
  margin: 105px 0 32px;
  font-size: 34px;
  letter-spacing: -0.06em;
}

.module-example-content > p {
  max-width: 600px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.module-example-content footer {
  display: flex;
  gap: 20px;
  margin-top: 65px;
  padding-top: 13px;
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
}

.module-example-finding {
  min-height: 410px;
  padding: 26px 28px;
}

.module-example-finding > div b {
  color: var(--page-accent);
  font-weight: 500;
}

.module-example-finding blockquote {
  margin: 60px 0 28px;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.12;
}

.module-example-finding dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  border-top: 1px solid rgba(238, 242, 236, 0.18);
  border-left: 1px solid rgba(238, 242, 236, 0.18);
}

.module-example-finding dl > div {
  padding: 12px;
  border-right: 1px solid rgba(238, 242, 236, 0.18);
  border-bottom: 1px solid rgba(238, 242, 236, 0.18);
}

.module-example-finding dt {
  color: #7f948a;
  font-family: var(--mono);
  font-size: 11px;
}

.module-example-finding dd {
  margin: 8px 0 0;
  font-size: 12px;
}

.module-example-finding > p {
  margin: 27px 0 0;
  color: #aebbb5;
  font-size: 12px;
  line-height: 1.6;
}

.module-example-route {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 22px;
  padding: 17px 20px;
  border-top: 1px solid rgba(238, 242, 236, 0.25);
  color: #83958c;
  font-family: var(--mono);
  font-size: 11px;
}

.module-workflow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  margin-top: 50px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.module-workflow article {
  min-height: 260px;
  padding: 19px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.module-workflow > i {
  display: grid;
  width: 32px;
  place-items: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--page-soft);
  color: var(--page-accent);
  font-style: normal;
}

.module-workflow span {
  color: var(--page-accent);
  font-family: var(--mono);
  font-size: 13px;
}

.module-workflow h3 {
  margin: 78px 0 12px;
  font-size: 19px;
  letter-spacing: -0.04em;
}

.module-workflow p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.56;
}

.module-os-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.module-os-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 90px;
  align-items: center;
}

.module-os-grid h2 {
  max-width: 700px;
  margin: 27px 0 19px;
  font-size: 48px;
  letter-spacing: -0.065em;
  line-height: 0.99;
}

.module-os-grid p {
  max-width: 640px;
  margin: 0 0 25px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.module-os-map {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  border: 1px solid var(--line);
  background: rgba(237, 241, 235, 0.72);
}

.module-os-map > div {
  display: grid;
  min-height: 260px;
  align-content: end;
  padding: 20px;
}

.module-os-map > div:last-child {
  background: var(--ink);
  color: #eef2ec;
}

.module-os-map > i {
  display: grid;
  width: 38px;
  place-items: center;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--page-soft);
  color: var(--page-accent);
  font-style: normal;
}

.module-os-map span,
.module-os-map small {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
}

.module-os-map strong {
  margin: 12px 0 7px;
  font-size: 19px;
}

/* Module roadmap */
.roadmap-console {
  position: relative;
  min-height: 520px;
  padding-bottom: 55px;
  border: 1px solid var(--ink);
  background:
    linear-gradient(rgba(238, 242, 236, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(238, 242, 236, 0.035) 1px, transparent 1px),
    var(--ink);
  background-size: 22px 22px;
  box-shadow: 17px 17px 0 rgba(18, 35, 28, 0.11);
  color: #eef2ec;
}

.roadmap-console > div {
  display: flex;
  justify-content: space-between;
  padding: 23px;
  border-bottom: 1px solid rgba(238, 242, 236, 0.22);
  color: #879a90;
  font-family: var(--mono);
  font-size: 11px;
}

.roadmap-console > div b {
  color: #eef2ec;
  font-weight: 500;
}

.roadmap-console article {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 2px 18px;
  align-items: center;
  margin: 20px 23px 0;
  padding: 24px 20px;
  border: 1px solid rgba(238, 242, 236, 0.2);
}

.roadmap-console article::before {
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: -1px;
  width: 4px;
  background: var(--roadmap);
  content: "";
}

.roadmap-console article span {
  grid-row: 1 / 3;
  color: var(--roadmap);
  font-family: var(--mono);
  font-size: 18px;
}

.roadmap-console article strong {
  font-size: 18px;
}

.roadmap-console article small {
  color: #80938a;
  font-family: var(--mono);
  font-size: 11px;
}

.roadmap-module {
  display: grid;
  grid-template-columns: 0.4fr 0.95fr 1.15fr 0.6fr;
  gap: 35px;
  align-items: center;
  margin-top: 12px;
  padding: 29px;
  border: 1px solid var(--line);
  background: linear-gradient(90deg, var(--roadmap-soft), rgba(237, 241, 235, 0.6) 34%);
}

.roadmap-module-number {
  display: grid;
  align-content: space-between;
  min-height: 190px;
  border-right: 1px solid var(--line-soft);
}

.roadmap-module-number span {
  color: var(--roadmap);
  font-family: var(--mono);
  font-size: 34px;
}

.roadmap-module-number b,
.roadmap-module small {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.roadmap-module > div:nth-child(2) h3 {
  margin: 45px 0 12px;
  font-size: 28px;
  letter-spacing: -0.05em;
}

.roadmap-module > div:nth-child(2) p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.roadmap-module ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.roadmap-module li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 14px;
}

.roadmap-module > a {
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 13px;
}

.roadmap-architecture {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  margin-top: 50px;
  border: 1px solid rgba(238, 242, 236, 0.24);
}

.roadmap-architecture > div {
  display: grid;
  min-height: 280px;
  align-content: center;
  gap: 9px;
  padding: 25px;
}

.roadmap-architecture > div.is-core {
  background: #82e0c0;
  color: var(--ink);
}

.roadmap-architecture > b {
  display: grid;
  width: 42px;
  place-items: center;
  border-right: 1px solid rgba(238, 242, 236, 0.24);
  border-left: 1px solid rgba(238, 242, 236, 0.24);
  color: #7f948a;
  font-weight: 400;
}

.roadmap-architecture span,
.roadmap-architecture small {
  color: #7f948a;
  font-family: var(--mono);
  font-size: 12px;
}

.roadmap-architecture i {
  padding: 10px 12px;
  border: 1px solid rgba(238, 242, 236, 0.18);
  color: #bac6c0;
  font-size: 15px;
  font-style: normal;
}

.roadmap-architecture strong {
  margin: 14px 0 4px;
  font-size: 22px;
}

@media (max-width: 1180px) {
  .shell {
    padding-right: 30px;
    padding-left: 30px;
  }

  .hero-grid,
  .legal-hero-grid,
  .pricing-hero-grid,
  .module-detail-hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .legal-hero-copy {
    padding-bottom: 0;
  }

  .audit-demo,
  .legal-case {
    max-width: 820px;
  }

  .pricing-offer-card {
    width: min(100%, 820px);
    min-height: 620px;
  }

  .module-signal-card,
  .roadmap-console {
    width: min(100%, 820px);
  }

  .brain-grid,
  .beta-grid {
    grid-template-columns: 1fr;
  }

  .brain-map {
    min-height: 520px;
  }

  .lifecycle article {
    min-height: 285px;
  }

  .workflow-board {
    grid-template-columns: 1fr;
  }

  .workflow-board > i {
    width: auto;
    min-height: 32px;
    border: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .workflow-board article {
    min-height: 160px;
  }

  .workflow-board h3 {
    margin-top: 35px;
  }

  .workflow-board > b {
    display: none;
  }
}

@media (max-width: 900px) {
  /* backdrop-filter würde den Header zum Containing Block für das
     position:fixed Mobile-Menü machen – das Panel kollabiert dann auf
     Header-Höhe und wirkt transparent. */
  .site-header {
    background: var(--sage);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
    min-width: 44px;
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    font-family: var(--mono);
    font-size: 13px;
    text-transform: uppercase;
  }

  .mobile-nav {
    position: fixed;
    z-index: 99;
    top: 76px;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    overflow-y: auto;
    align-content: start;
    padding: 25px 30px;
    background: var(--sage);
    overscroll-behavior: contain;
    transform: translateX(100%);
    transition: transform 220ms ease;
  }

  .mobile-nav.is-open {
    transform: translateX(0);
  }

  .mobile-nav a {
    padding: 19px 0;
    border-bottom: 1px solid var(--line);
    font-size: 21px;
    letter-spacing: -0.04em;
  }

  .mobile-module-menu {
    border-bottom: 1px solid var(--line);
  }

  .mobile-module-menu summary {
    display: flex;
    justify-content: space-between;
    padding: 19px 0;
    cursor: pointer;
    font-size: 21px;
    letter-spacing: -0.04em;
    list-style: none;
  }

  .mobile-module-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-module-menu summary span {
    font-family: var(--mono);
    font-size: 16px;
  }

  .mobile-module-menu[open] summary span {
    transform: rotate(180deg);
  }

  .mobile-module-links {
    display: grid;
    padding: 0 0 13px 17px;
  }

  .mobile-module-links a {
    padding: 11px 0;
    border-bottom: 1px solid var(--line-soft);
    font-size: 18px;
  }

  .module-rail,
  .core-questions,
  .module-grid,
  .method-pipeline {
    grid-template-columns: 1fr 1fr;
  }

  .module-rail a:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .integration-grid,
  .access-grid {
    grid-template-columns: 1fr;
  }

  .pricing-fit-grid,
  .pricing-feature-grid,
  .pricing-configurator {
    grid-template-columns: 1fr 1fr;
  }

  .module-capability-grid {
    grid-template-columns: 1fr 1fr;
  }

  .module-source-note,
  .module-os-grid,
  .roadmap-module {
    grid-template-columns: 1fr;
  }

  .module-source-note > div {
    flex-wrap: wrap;
  }

  .module-example-board {
    grid-template-columns: 1fr;
  }

  .module-example-content {
    border-right: 0;
    border-bottom: 1px solid rgba(238, 242, 236, 0.25);
  }

  .module-workflow {
    grid-template-columns: 1fr;
  }

  .module-workflow > i {
    width: auto;
    min-height: 32px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .module-workflow article {
    min-height: 180px;
  }

  .module-workflow h3 {
    margin-top: 35px;
  }

  .roadmap-module-number {
    min-height: auto;
    grid-template-columns: 1fr auto;
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
    padding-bottom: 18px;
  }

  .roadmap-architecture {
    grid-template-columns: 1fr;
  }

  .roadmap-architecture > b {
    width: auto;
    min-height: 38px;
    border: 0;
    border-top: 1px solid rgba(238, 242, 236, 0.24);
    border-bottom: 1px solid rgba(238, 242, 236, 0.24);
  }

  .pricing-result,
  .pricing-result > div,
  .pricing-assurance-grid {
    grid-template-columns: 1fr;
  }

  .pricing-result > a {
    min-height: 64px;
  }

  .pricing-assurance-grid {
    gap: 55px;
  }

  .next-modules-head {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .next-module-grid {
    grid-template-columns: 1fr;
  }

  .os-pipeline {
    grid-template-columns: 1fr;
  }

  .os-transfer {
    min-height: 48px;
  }

  .os-transfer::before {
    top: 50%;
    right: 0;
    bottom: auto;
    left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .os-transfer span {
    position: absolute;
    right: 20px;
    margin: 0;
    padding: 3px 6px;
    writing-mode: initial;
  }

  .os-input-cloud,
  .os-core-stack {
    min-height: auto;
  }

  .os-input-cloud {
    padding: 38px 0;
  }

  .os-pulse {
    display: none;
  }

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

  .lifecycle::before,
  .lifecycle-pulse,
  .lifecycle article::after {
    display: none;
  }

  .lifecycle article {
    min-height: 170px;
    border-left: 1px solid rgba(238, 242, 236, 0.2);
    border-bottom: 1px solid rgba(238, 242, 236, 0.2);
  }

  .lifecycle h3 {
    margin-top: 35px;
  }

  .method-grid,
  .faq-grid,
  .trust-grid,
  .problem-grid {
    grid-template-columns: 1fr;
  }

  .security-path {
    grid-template-columns: 1fr 1fr;
  }

  .security-path article:nth-of-type(2) {
    border-right: 0;
  }

  .security-path article:nth-of-type(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .security-line {
    display: none;
  }

  .security-console-foot {
    grid-template-columns: 1fr 1fr;
  }

  .security-console-foot span:nth-child(2) {
    border-right: 0;
  }

  .security-console-foot span:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .security-handoff {
    align-items: stretch;
    flex-direction: column;
  }

  .security-handoff > a {
    width: 100%;
    min-width: 0;
  }

  .trust-layer-head {
    grid-template-columns: 1fr;
    gap: 15px;
  }

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

  .evidence-content {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .legal-module-grid {
    grid-template-columns: 1fr;
  }

  .domain-roadmap {
    grid-template-columns: 1fr;
  }

  .problem-contrast {
    grid-template-columns: 1fr;
  }

  .problem-contrast article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 650px) {
  .shell {
    padding-right: 20px;
    padding-left: 20px;
  }

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

  .brand img {
    width: 28px;
    height: 28px;
  }

  .mobile-nav {
    top: 68px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .hero,
  .legal-hero,
  .pricing-hero,
  .module-detail-hero {
    padding-top: 50px;
  }

  .hero h1,
  .legal-hero h1,
  .pricing-hero h1,
  .module-detail-hero h1 {
    font-size: clamp(34px, 9vw, 44px);
    line-height: 0.96;
  }

  .module-detail-hero {
    padding-bottom: 62px;
  }

  .module-detail-hero-grid {
    gap: 45px;
  }

  .module-detail-hero .overline i {
    display: none;
  }

  .module-detail-hero .hero-lead {
    font-size: 18px;
  }

  .module-signal-card,
  .roadmap-console {
    min-height: 670px;
    box-shadow: 9px 9px 0 rgba(18, 35, 28, 0.1);
  }

  .module-signal-head {
    gap: 10px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .module-signal-document,
  .module-signal-result {
    padding-right: 20px;
    padding-left: 20px;
  }

  .module-problem-grid,
  .module-capability-grid {
    grid-template-columns: 1fr;
  }

  .module-problem-grid article,
  .module-capability-grid article {
    min-height: 220px;
  }

  .module-problem-grid h3,
  .module-capability-grid h3 {
    margin-top: 50px;
  }

  .module-source-note {
    gap: 15px;
  }

  .module-source-note a {
    white-space: normal;
  }

  .module-example-content,
  .module-example-finding {
    min-height: 440px;
    padding: 22px 20px;
  }

  .module-example-content h3 {
    margin-top: 70px;
  }

  .module-example-finding blockquote {
    margin-top: 45px;
    font-size: 22px;
  }

  .module-example-finding dl {
    grid-template-columns: 1fr;
  }

  .module-example-route {
    align-items: center;
    flex-direction: column;
    gap: 8px;
  }

  .module-example-route i {
    transform: rotate(90deg);
  }

  .module-os-grid {
    gap: 46px;
  }

  .module-os-grid h2 {
    font-size: 38px;
  }

  .module-os-map {
    grid-template-columns: 1fr;
  }

  .module-os-map > i {
    width: auto;
    min-height: 38px;
    border: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .module-os-map > div {
    min-height: 190px;
  }

  .roadmap-console article {
    margin-right: 18px;
    margin-left: 18px;
    padding-right: 15px;
    padding-left: 15px;
  }

  .roadmap-module {
    gap: 23px;
    padding: 22px 20px;
  }

  .roadmap-module > div:nth-child(2) h3 {
    margin-top: 30px;
  }

  .pricing-hero {
    padding-bottom: 62px;
  }

  .pricing-hero-grid {
    gap: 46px;
  }

  .pricing-hero .overline i {
    display: none;
  }

  .pricing-hero .hero-lead {
    font-size: 18px;
  }

  .pricing-offer-card {
    min-height: 680px;
    padding: 24px 20px;
    box-shadow: 9px 9px 0 rgba(18, 35, 28, 0.1);
  }

  .pricing-offer-card h2 {
    font-size: 29px;
  }

  .pricing-offer-card footer {
    right: 20px;
    left: 20px;
    flex-direction: column;
  }

  .pricing-fit-grid,
  .pricing-feature-grid,
  .pricing-configurator,
  .pricing-start-grid {
    grid-template-columns: 1fr;
  }

  .pricing-fit-grid article {
    min-height: 220px;
  }

  .pricing-fit-grid h3,
  .pricing-feature-group h3 {
    margin-top: 52px;
  }

  .pricing-feature-group {
    min-height: auto;
  }

  .pricing-configurator article {
    min-height: 300px;
  }

  .pricing-configurator article > small {
    margin-top: 42px;
  }

  .pricing-configurator > b {
    display: none;
  }

  .pricing-result > div {
    gap: 10px;
  }

  .pricing-start-card {
    min-height: 640px;
    padding: 22px 20px;
  }

  .pricing-start-card h3 {
    margin-top: 62px;
    font-size: 30px;
  }

  .pricing-start-card > a {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .pricing-assurance h2 {
    font-size: 38px;
  }

  .hero-lead {
    font-size: 18px;
  }

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

  .demo-topbar {
    grid-template-columns: 1fr auto;
  }

  .demo-topbar strong {
    display: none;
  }

  .demo-tabs {
    grid-template-columns: 1fr 1fr;
  }

  .demo-tabs button:nth-child(2) {
    border-right: 0;
  }

  .demo-tabs button:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .demo-flow {
    display: none;
  }

  .demo-stage {
    grid-template-columns: 1fr;
  }

  .demo-document,
  .crawl-workspace,
  .editor-document,
  .health-document {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .demo-view {
    min-height: 0;
  }

  .health-meta {
    grid-template-columns: 1fr;
  }

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

  .security-console-head {
    grid-template-columns: 1fr auto;
  }

  .security-console-head strong {
    display: none;
  }

  .evidence-record-head {
    grid-template-columns: 1fr auto;
  }

  .evidence-record-head strong {
    display: none;
  }

  .evidence-ledger dl {
    grid-template-columns: 1fr;
  }

  .evidence-route {
    grid-template-columns: 1fr;
  }

  .evidence-route::before,
  .evidence-route > i {
    display: none;
  }

  .evidence-route article {
    grid-template-columns: 28px 1fr auto;
    gap: 10px;
    min-height: 58px;
    align-items: center;
    align-content: center;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .evidence-route article:last-of-type {
    border-bottom: 0;
  }

  .evidence-route article > span {
    position: static;
    width: 24px;
    height: 24px;
    transform: none;
  }

  .evidence-record-foot {
    grid-template-columns: 1fr 1fr;
  }

  .evidence-record-foot span:nth-child(2) {
    border-right: 0;
  }

  .evidence-record-foot span:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .security-path {
    grid-template-columns: 1fr;
  }

  .security-path article,
  .security-path article:nth-of-type(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .security-path article:last-of-type {
    border-bottom: 0;
  }

  .security-path article > small {
    margin-top: 28px;
  }

  .security-console-foot {
    grid-template-columns: 1fr;
  }

  .security-console-foot span,
  .security-console-foot span:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .security-console-foot span:last-child {
    border-bottom: 0;
  }

  .module-rail,
  .core-questions,
  .module-grid,
  .method-pipeline,
  .legal-module ul,
  .trust-principles,
  .form-row,
  .problem-copy,
  .method-principle {
    grid-template-columns: 1fr;
  }

  .module-rail a {
    border-left: 1px solid var(--line);
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .section-heading h2,
  .brain-copy h2,
  .method-copy h2,
  .beta-copy h2,
  .faq-grid h2,
  .problem-grid h2,
  .trust-grid h2 {
    font-size: 38px;
  }

  .brain-map {
    min-height: 570px;
  }

  .brain-node {
    min-width: 190px;
  }

  .brain-node-product {
    top: 35px;
    left: 18px;
  }

  .brain-node-brand {
    right: 18px;
    bottom: 82px;
  }

  .brain-output {
    grid-template-columns: 1fr 1fr;
  }

  .brain-output span:nth-child(2) {
    border-right: 0;
  }

  .brain-output span:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .lead-form {
    padding: 20px;
  }

  .legal-trust-rail {
    flex-wrap: wrap;
    justify-content: flex-start;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .case-frame {
    grid-template-columns: 1fr auto;
  }

  .case-frame strong {
    display: none;
  }

  .case-document {
    padding: 24px 20px;
  }

  .case-marker {
    position: static;
    margin-top: 24px;
  }

  .case-finding {
    padding-right: 20px;
    padding-left: 20px;
  }

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

  .legal-module {
    min-height: 600px;
    padding: 21px;
  }

  .method-pipeline article {
    min-height: 230px;
    border-left: 1px solid rgba(238, 242, 236, 0.22);
  }

  .method-pipeline article:not(:last-child)::after {
    display: none;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-base {
    display: grid;
    gap: 9px;
  }

  /* Lesbarkeitsuntergrenze: Mikro-Typografie (5–9px) auf Mobile anheben.
     Mono-Labels auf 10px, Fließtext und Links auf 11px. */
  .overline span,
  .overline i,
  .section-index,
  .enterprise-kicker,
  .menu-toggle,
  .module-rail a span,
  .core-questions article > span,
  .module-meta span,
  .module-card > small,
  .module-card > a,
  .next-modules-head span,
  .next-modules-head b,
  .next-module-meta span,
  .next-module-meta b,
  .next-module-grid article > a,
  .lifecycle article > span,
  .os-column-head span,
  .os-column-head small,
  .os-transfer span,
  .os-core-stack article > span,
  .os-core-stack article small,
  .os-workflows article > span,
  .integration-card > span,
  .method-list li > span,
  .trust-layer-head > span,
  .evidence-record-head span,
  .evidence-record-head strong,
  .evidence-record-head small,
  .evidence-content span,
  .evidence-content small,
  .evidence-content > p,
  .evidence-content footer span,
  .evidence-ledger-head span,
  .evidence-ledger-head b,
  .evidence-ledger dt,
  .evidence-ledger dd,
  .evidence-ledger > p,
  .evidence-ledger > p span,
  .evidence-route article > span,
  .evidence-route article > small,
  .evidence-record-foot span,
  .security-console-head span,
  .security-console-head strong,
  .security-console-head small,
  .security-step span,
  .security-step i,
  .security-path article > small,
  .security-path article > b,
  .security-console-foot span,
  .demo-topbar span b,
  .demo-topbar small,
  .demo-tabs button span,
  .demo-flow span,
  .demo-flow i,
  .object-meta span,
  .finding-head span,
  .finding-head b,
  .finding-source,
  .finding-next span,
  .demo-footer span,
  .form-head span,
  .form-head small,
  .form-note,
  .footer-grid strong,
  .footer-base {
    font-size: 15px;
  }

  .nav-flyout-link small,
  .hero-assurance span,
  .demo-tabs button,
  .passages p,
  .demo-finding > p,
  .finding-next p,
  .lifecycle article p,
  .next-modules-head > div p,
  .next-module-grid article > p,
  .os-inputs p,
  .os-input-cloud span,
  .os-workflows article > div p,
  .security-path article > p,
  .security-handoff p span,
  .security-handoff a,
  .trust-layer-head > div p,
  .lead-form label,
  .lead-form .consent span,
  .footer-grid > div:first-child p,
  .footer-grid > div:not(:first-child) a {
    font-size: 16px;
  }

  /* Dieselbe Untergrenze für die Komponenten der Unterseiten. */
  .nav-flyout-trigger > span,
  .nav-flyout-group > span,
  .legal-trust-rail > span,
  .legal-trust-rail > i,
  .legal-case > .case-frame > span,
  .legal-case > .case-frame > strong,
  .legal-case > .case-frame > small,
  .case-label,
  .case-marker,
  .case-marker > span,
  .case-finding > div > span,
  .case-finding > div > b,
  .case-finding > strong,
  .case-finding > footer > span,
  .problem-contrast article > span,
  .legal-module-head > span,
  .domain-roadmap > span,
  .domain-roadmap > small,
  .domain-roadmap > div > i,
  .method-pipeline article > span,
  .method-pipeline article small,
  .workflow-board article > span,
  .access-grid article > span,
  .access-grid article > small,
  .evidence-content > div > small,
  .pricing-offer-head > span,
  .pricing-offer-head > b,
  .pricing-offer-card > p,
  .pricing-offer-card > footer > span,
  .pricing-offer-card > footer > small,
  .pricing-fit-grid article > span,
  .pricing-feature-group > div > span,
  .pricing-feature-group > div > b,
  .pricing-configurator article > span,
  .pricing-configurator article > small,
  .pricing-configurator article > div > i,
  .pricing-result > div > span,
  .pricing-result > div > small,
  .pricing-result > a > span,
  .pricing-start-head > span,
  .pricing-start-head > b,
  .module-signal-head > span,
  .module-signal-head > b,
  .module-score > span,
  .module-score > small,
  .module-signal-document > small,
  .module-signal-result > span,
  .module-signal-result > b,
  .module-signal-result > small,
  .module-signal-card > footer > span,
  .module-signal-card > footer > i,
  .module-problem-grid article > span,
  .module-capability-grid article > span,
  .module-source-note > span,
  .module-source-note > a > span,
  .module-example-content > div > span,
  .module-example-content > div > small,
  .module-example-content > footer > span,
  .module-example-finding > div > span,
  .module-example-finding > div > b,
  .module-example-finding dt,
  .module-example-route > span,
  .module-example-route > i,
  .module-workflow article > span,
  .module-os-map > div > span,
  .module-os-map > div > small,
  .roadmap-console > div > span,
  .roadmap-console > div > b,
  .roadmap-console article > small,
  .roadmap-console > footer > span,
  .roadmap-console > footer > i,
  .roadmap-module-number > b,
  .roadmap-module > div > small,
  .roadmap-module > a > span,
  .roadmap-architecture > div > span,
  .roadmap-architecture > .is-core > small,
  .integration-card > div > i,
  .next-module-grid article > div > i {
    font-size: 15px;
  }

  .case-finding > footer > p,
  .workflow-board article > p,
  .pricing-configurator article > p,
  .module-signal-result > p,
  .module-source-note > p,
  .module-source-note > a,
  .module-example-finding dd,
  .module-example-finding > p,
  .module-workflow article > p,
  .roadmap-module > ul > li,
  .roadmap-module > a {
    font-size: 16px;
  }

  /* .finding-source setzt die Basisgröße selbst mit !important (Zeile 776),
     deshalb hier ebenfalls. */
  .demo-finding .finding-source {
    font-size: 13px !important;
  }

  /* Einzelfälle, die über Spezifität oder Vererbung an der Untergrenze vorbeilaufen. */
  .next-module-grid article > div:nth-of-type(2) i,
  .module-signal-result > div,
  .module-signal-result small,
  .module-signal-result b {
    font-size: 15px;
  }

  .module-detail-hero .hero-assurance span,
  .pricing-hero .hero-assurance span,
  .module-source-note a {
    font-size: 16px;
  }

  /* Touch-Targets auf mindestens 44px bzw. gut treffbare Flächen bringen. */
  .footer-grid > div:not(:first-child) a {
    display: flex;
    min-height: 44px;
    align-items: center;
  }

  .module-card > a,
  .next-module-grid article > a {
    align-items: center;
    padding-top: 18px;
    padding-bottom: 12px;
  }

  /* Der Link ist hier 51px hoch statt 29-31px, die Kacheln brauchen unten
     entsprechend mehr reservierten Platz. */
  .module-card,
  .next-module-grid > article {
    padding-bottom: 84px;
  }

  .module-source-note > a,
  .roadmap-module > a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
  }

  .lead-form .consent {
    gap: 12px;
  }

  .lead-form .consent input {
    width: 22px;
    min-height: 22px;
    margin: 0;
  }

  .lead-form .consent span {
    padding: 4px 0;
  }
}

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

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

/* Feinschliff nach der Anhebung der Schriftgroessen */

/* Nicht gestyltes <small> landete ueber den Browser-Faktor (0.83) bei 9,2px */
.module-example-content > div > small {
  font-size: 11px;
}

@media (max-width: 650px) {
  /* Dichte Mockup-Fusszeile passte bei 390px nicht mehr in die Karte */
  .roadmap-console > footer > span,
  .roadmap-console > footer > i {
    font-size: 11px;
  }
}
