:root {
  --ink: #10241f;
  --ink-2: #17342c;
  --ink-3: #21483c;
  --lime: #c7ff5e;
  --lime-soft: #edffc9;
  --mint: #88d8b5;
  --paper: #f4f2e9;
  --paper-2: #ebe8dc;
  --white: #fffef8;
  --muted: #62736d;
  --line: rgba(16, 36, 31, 0.14);
  --shell: min(1200px, calc(100vw - 48px));
  --radius: 24px;
  --shadow: 0 24px 70px rgba(8, 31, 25, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Aptos, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

svg {
  display: block;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 800;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section-pad {
  padding: 128px 0;
}

.section-kicker,
.eyebrow {
  margin: 0 0 24px;
  color: #417363;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-kicker.light {
  color: var(--lime);
}

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

h1,
h2,
h3 {
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(44px, 5.35vw, 76px);
  font-weight: 740;
  line-height: 0.98;
}

h1 em,
h2 em {
  color: #3e7462;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease,
    border-color 180ms ease;
}

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

.button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button-small {
  min-height: 43px;
  padding: 0 18px;
  font-size: 13px;
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover {
  background: var(--ink-3);
}

.button-accent {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(124, 174, 30, 0.2);
}

.button-accent:hover {
  background: #d5ff86;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(244, 242, 233, 0.92);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
}

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

.brand-mark {
  width: 40px;
  height: 40px;
  color: var(--ink);
}

.brand-name {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand-name span {
  margin-left: 3px;
  color: #527267;
  font-weight: 650;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav > a:not(.button) {
  position: relative;
  padding: 8px 0;
  color: #3d504a;
  font-size: 13px;
  font-weight: 700;
}

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

.site-nav > a:not(.button):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 0;
  border-radius: 12px;
  background: var(--ink);
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 1.5px;
  margin: 5px 0;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 880px;
  overflow: hidden;
  padding: 160px 0 48px;
  background: var(--paper);
}

.hero::before {
  position: absolute;
  top: -26%;
  right: -12%;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: rgba(199, 255, 94, 0.18);
  content: "";
  filter: blur(20px);
}

.hero-grid,
.cta-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(16, 36, 31, 0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 36, 31, 0.038) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  gap: 74px;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
}

.hero-copy {
  padding-top: 10px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5ea538;
  box-shadow: 0 0 0 5px rgba(94, 165, 56, 0.13);
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 30px;
  font-size: clamp(54px, 6.25vw, 88px);
  font-weight: 760;
  line-height: 0.95;
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 34px;
  color: #50625c;
  font-size: clamp(18px, 1.45vw, 21px);
  line-height: 1.65;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.text-link span {
  color: #4d806f;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin: 38px 0 0;
  padding: 0;
  color: #5d6e68;
  font-size: 12px;
  font-weight: 700;
  list-style: none;
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-trust span {
  color: #52893e;
  font-weight: 900;
}

.system-visual {
  position: relative;
  min-height: 570px;
  perspective: 1400px;
}

.visual-glow {
  position: absolute;
  inset: 8% 2% 0 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 255, 94, 0.34), transparent 62%);
  filter: blur(22px);
}

.system-window {
  position: absolute;
  top: 18px;
  right: 2px;
  left: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: #10241f;
  box-shadow: 0 38px 90px rgba(9, 29, 24, 0.3);
  color: var(--white);
  transform: rotateY(-4deg) rotateX(2deg);
}

.window-bar {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
  font-size: 12px;
}

.window-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(199, 255, 94, 0.1);
}

.window-status {
  color: #a7b8b2;
}

.system-stage {
  padding: 24px;
}

.stage-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.stage-head > div {
  display: grid;
  gap: 3px;
}

.micro-label {
  color: #839b92;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stage-head strong {
  font-size: 17px;
  letter-spacing: -0.02em;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 9px;
  border: 1px solid rgba(199, 255, 94, 0.18);
  border-radius: 100px;
  background: rgba(199, 255, 94, 0.07);
  color: #dfff9f;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.live-pill i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(199, 255, 94, 0.1);
}

.metric-row {
  display: grid;
  gap: 9px;
  grid-template-columns: repeat(3, 1fr);
}

.metric-card {
  display: grid;
  min-height: 103px;
  align-content: space-between;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.045);
}

.metric-card span,
.metric-card small {
  color: #94a7a0;
  font-size: 9px;
}

.metric-card strong {
  font-size: 25px;
  line-height: 1;
}

.metric-card.lime {
  border-color: transparent;
  background: var(--lime);
  color: var(--ink);
}

.metric-card.lime span,
.metric-card.lime small {
  color: #45642d;
}

.flow-map {
  position: relative;
  display: grid;
  gap: 8px;
  margin: 12px 0;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  background: #0c1d18;
  grid-template-columns: repeat(4, 1fr);
}

.flow-line {
  position: absolute;
  top: 34px;
  right: 13%;
  left: 13%;
  height: 1px;
  background: linear-gradient(90deg, var(--lime) 0 67%, rgba(255, 255, 255, 0.15) 67%);
}

.flow-node {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.node-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: #163027;
  color: #92a69f;
  font-size: 8px;
  font-weight: 900;
}

.flow-node.active .node-icon {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 0 0 5px rgba(199, 255, 94, 0.05);
}

.flow-node div {
  display: grid;
  gap: 2px;
}

.flow-node strong {
  font-size: 9px;
}

.flow-node small {
  color: #71877e;
  font-size: 7px;
}

.signal-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px;
  border: 1px solid rgba(136, 216, 181, 0.16);
  border-radius: 13px;
  background: rgba(136, 216, 181, 0.06);
}

.signal-icon {
  display: grid;
  width: 35px;
  height: 35px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 10px;
  background: rgba(199, 255, 94, 0.11);
  color: var(--lime);
}

.signal-icon svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.signal-card > div:nth-child(2) {
  display: grid;
  gap: 2px;
}

.signal-card strong {
  font-size: 10px;
}

.signal-card small {
  color: #83978f;
  font-size: 8px;
}

.signal-arrow {
  margin-left: auto;
  color: var(--lime);
}

.floating-note {
  position: absolute;
  z-index: 3;
  display: flex;
  min-width: 186px;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(16, 36, 31, 0.08);
  border-radius: 14px;
  background: rgba(255, 254, 248, 0.94);
  box-shadow: 0 18px 50px rgba(17, 46, 38, 0.18);
  color: var(--ink);
  backdrop-filter: blur(10px);
}

.floating-note > div {
  display: grid;
}

.floating-note strong {
  font-size: 10px;
}

.floating-note small {
  color: #7b8d86;
  font-size: 8px;
}

.note-one {
  right: -16px;
  bottom: 35px;
  animation: float-note 5s ease-in-out infinite;
}

.note-two {
  bottom: 145px;
  left: -20px;
  animation: float-note 6s 1s ease-in-out infinite;
}

.note-check {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 9px;
  background: var(--lime-soft);
  color: #487c2f;
  font-weight: 900;
}

.note-pulse {
  width: 12px;
  height: 12px;
  margin: 9px;
  border-radius: 50%;
  background: #68a93e;
  box-shadow: 0 0 0 7px rgba(104, 169, 62, 0.14);
}

.hero-foot {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 55px;
  color: #6d7d77;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-foot-line {
  height: 1px;
  flex: 1;
  background: var(--line);
}

.hero-foot-mark {
  color: var(--ink);
}

/* Manifesto */
.manifesto {
  background: var(--white);
}

.manifesto-grid {
  display: grid;
  gap: 90px;
  grid-template-columns: 0.9fr 1.1fr;
}

.manifesto-copy {
  max-width: 630px;
  padding-top: 32px;
}

.manifesto-copy p {
  color: #66766f;
  font-size: 16px;
  line-height: 1.75;
}

.manifesto-copy .manifesto-lead {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.55;
}

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

.journey-step {
  position: relative;
  min-height: 330px;
  padding: 28px 24px 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  transition: background-color 180ms ease, transform 180ms ease;
}

.journey-step:hover {
  z-index: 2;
  background: var(--lime-soft);
  transform: translateY(-8px);
}

.journey-number {
  color: #81918b;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.journey-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 46px 0 35px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
}

.journey-icon svg,
.module-symbol svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.journey-step strong {
  display: block;
  margin-bottom: 14px;
  font-size: 18px;
  letter-spacing: -0.025em;
}

.journey-step p {
  margin-bottom: 0;
  color: #697a74;
  font-size: 13px;
  line-height: 1.65;
}

/* Modules */
.modules {
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.section-head {
  display: grid;
  align-items: end;
  gap: 100px;
  grid-template-columns: 1.3fr 0.7fr;
}

.section-head h2 em,
.difference h2 em,
.cta-card h2 em {
  color: var(--lime);
}

.section-head > p {
  max-width: 460px;
  margin-bottom: 5px;
  color: #9db1aa;
  font-size: 16px;
  line-height: 1.7;
}

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

.module-card {
  display: flex;
  min-height: 470px;
  flex-direction: column;
  padding: 31px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: #18342c;
  transition: border-color 180ms ease, transform 180ms ease;
}

.module-card:hover {
  border-color: rgba(199, 255, 94, 0.36);
  transform: translateY(-5px);
}

.module-featured {
  background: #f8f7ef;
  color: var(--ink);
}

.module-lime {
  background: var(--lime);
  color: var(--ink);
}

.module-outline {
  background: transparent;
}

.module-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.module-index {
  color: #91a49d;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.module-featured .module-index,
.module-lime .module-index {
  color: #597067;
}

.module-symbol {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--lime);
}

.module-featured .module-symbol {
  border-color: var(--line);
  background: var(--paper);
  color: var(--ink);
}

.module-symbol.dark {
  border-color: transparent;
  background: var(--ink);
  color: var(--lime);
}

.module-card h3 {
  margin: 54px 0 20px;
  font-size: clamp(31px, 3vw, 43px);
  font-weight: 700;
  line-height: 0.98;
}

.module-card > p {
  max-width: 380px;
  margin-bottom: 24px;
  color: #a8b8b2;
  font-size: 14px;
  line-height: 1.7;
}

.module-featured > p,
.module-lime > p {
  color: #53675f;
}

.module-preview,
.chat-preview,
.price-preview,
.mini-stack,
.module-points,
.card-link {
  margin-top: auto;
}

.search-preview {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #eeece2;
}

.fake-search {
  display: flex;
  height: 37px;
  align-items: center;
  gap: 8px;
  padding: 0 11px;
  border-radius: 9px;
  background: var(--white);
  box-shadow: 0 3px 12px rgba(18, 43, 36, 0.06);
  font-size: 9px;
}

.fake-search span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #77a936;
}

.fake-search i {
  margin-left: auto;
  font-size: 15px;
  font-style: normal;
}

.search-results {
  display: grid;
  gap: 7px;
  margin-top: 8px;
}

.search-results > div {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.6);
}

.search-results > div > span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: var(--lime);
  font-size: 9px;
  font-weight: 900;
}

.search-results p {
  display: grid;
  flex: 1;
  gap: 1px;
  margin: 0;
}

.search-results b {
  font-size: 8px;
}

.search-results small {
  color: #74847e;
  font-size: 7px;
}

.search-results i {
  font-size: 11px;
  font-style: normal;
}

.module-points {
  display: grid;
  gap: 11px;
  padding: 0;
  list-style: none;
}

.module-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #b8c6c1;
  font-size: 12px;
}

.module-points span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
}

.chat-preview {
  display: grid;
  gap: 9px;
  padding: 13px;
  border: 1px solid rgba(16, 36, 31, 0.15);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.52);
  grid-template-columns: 31px 1fr;
}

.chat-avatar {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 9px;
  background: var(--ink);
  color: var(--lime);
  font-size: 8px;
  font-weight: 900;
}

.chat-bubble {
  padding: 9px 10px;
  border-radius: 2px 10px 10px 10px;
  background: var(--white);
  color: var(--ink);
  font-size: 8px;
  line-height: 1.45;
}

.voice-wave {
  display: flex;
  height: 34px;
  align-items: center;
  gap: 3px;
  padding: 0 10px;
  border-radius: 10px;
  background: var(--ink);
  grid-column: 2;
}

.voice-wave i {
  width: 2px;
  height: 8px;
  border-radius: 2px;
  background: var(--lime);
}

.voice-wave i:nth-child(2),
.voice-wave i:nth-child(5) {
  height: 15px;
}

.voice-wave i:nth-child(3) {
  height: 22px;
}

.voice-wave span {
  margin-left: auto;
  color: #9aaea6;
  font-size: 7px;
}

.card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--lime);
  font-size: 12px;
  font-weight: 800;
}

.price-preview {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(7, 24, 19, 0.28);
}

.price-preview > div {
  display: grid;
  align-items: center;
  padding: 10px 11px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: #a4b5ae;
  font-size: 8px;
  grid-template-columns: 1fr 0.7fr 0.7fr;
}

.price-preview > div:last-child {
  border-bottom: 0;
}

.price-preview b {
  color: var(--white);
}

.price-preview i {
  color: var(--lime);
  font-style: normal;
  text-align: right;
}

.price-preview i.down {
  color: #9ccfbd;
}

.mini-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.mini-stack span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  color: #aebdb7;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

/* Reach */
.reach {
  overflow: hidden;
  background: var(--paper-2);
}

.reach-layout {
  display: grid;
  align-items: center;
  gap: 100px;
  grid-template-columns: 0.9fr 1.1fr;
}

.reach-copy h2 {
  font-size: clamp(46px, 5vw, 70px);
}

.reach-lead {
  max-width: 590px;
  margin: 36px 0 44px;
  color: #596b64;
  font-size: 17px;
  line-height: 1.7;
}

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

.reach-list > div {
  display: grid;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 36px 1fr;
}

.reach-list > div > span {
  color: #789087;
  font-size: 10px;
  font-weight: 850;
}

.reach-list p {
  display: grid;
  gap: 4px;
  margin: 0;
}

.reach-list strong {
  font-size: 15px;
}

.reach-list small {
  color: #70817b;
  font-size: 12px;
}

.reach-visual {
  position: relative;
  min-height: 650px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: radial-gradient(circle at center, #fffef8 0 15%, transparent 15.3%),
    radial-gradient(circle at center, rgba(199, 255, 94, 0.14), transparent 56%);
}

.reach-visual::before,
.reach-visual::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  inset: 15%;
  border: 1px dashed rgba(16, 36, 31, 0.2);
}

.reach-visual::after {
  inset: 31%;
  border-style: solid;
  border-color: rgba(16, 36, 31, 0.1);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(16, 36, 31, 0.08);
  border-radius: 50%;
}

.orbit-one {
  inset: 7%;
}

.orbit-two {
  inset: 23%;
}

.network-core {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  display: grid;
  width: 140px;
  height: 140px;
  place-content: center;
  justify-items: center;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 22px 50px rgba(16, 36, 31, 0.25), 0 0 0 18px rgba(255, 254, 248, 0.78);
  color: var(--white);
  transform: translate(-50%, -50%);
}

.network-core svg {
  width: 34px;
  margin-bottom: 8px;
  color: var(--ink);
}

.network-core strong {
  font-size: 15px;
  line-height: 1.05;
  text-align: center;
}

.network-node {
  position: absolute;
  z-index: 3;
  display: flex;
  min-width: 210px;
  align-items: center;
  gap: 12px;
  padding: 13px;
  border: 1px solid rgba(16, 36, 31, 0.1);
  border-radius: 16px;
  background: rgba(255, 254, 248, 0.92);
  box-shadow: 0 18px 50px rgba(16, 36, 31, 0.1);
  backdrop-filter: blur(8px);
}

.network-node > span {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 11px;
  background: var(--lime-soft);
  color: #4e7936;
  font-size: 12px;
  font-weight: 900;
}

.network-node p {
  display: grid;
  gap: 3px;
  margin: 0;
}

.network-node strong {
  font-size: 12px;
}

.network-node small {
  color: #7b8c86;
  font-size: 9px;
}

.node-a {
  top: 9%;
  left: 8%;
}

.node-b {
  top: 21%;
  right: -4%;
}

.node-c {
  right: -2%;
  bottom: 15%;
}

.node-d {
  bottom: 8%;
  left: 2%;
}

.network-ping {
  position: absolute;
  z-index: 5;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #65a638;
  box-shadow: 0 0 0 7px rgba(101, 166, 56, 0.13);
  animation: ping 2.6s ease-in-out infinite;
}

.ping-a {
  top: 35%;
  left: 30%;
}

.ping-b {
  right: 26%;
  bottom: 31%;
  animation-delay: 1.1s;
}

/* Difference */
.difference {
  background: var(--ink);
  color: var(--white);
}

.difference-head {
  max-width: 980px;
}

.difference-grid {
  display: grid;
  gap: 0;
  margin-top: 86px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  grid-template-columns: repeat(3, 1fr);
}

.difference-grid article {
  min-height: 310px;
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.big-number {
  color: var(--lime);
  font-family: Georgia, serif;
  font-size: 48px;
  font-style: italic;
}

.difference-grid h3 {
  max-width: 300px;
  margin: 64px 0 15px;
  font-size: 25px;
  line-height: 1.08;
}

.difference-grid p {
  max-width: 330px;
  margin-bottom: 0;
  color: #9eafa9;
  font-size: 13px;
  line-height: 1.7;
}

.outcome-strip {
  display: grid;
  margin-top: 80px;
  border: 1px solid rgba(199, 255, 94, 0.28);
  border-radius: 18px;
  background: rgba(199, 255, 94, 0.06);
  grid-template-columns: repeat(4, 1fr);
}

.outcome-strip > div {
  display: grid;
  gap: 5px;
  padding: 24px;
  border-right: 1px solid rgba(199, 255, 94, 0.18);
}

.outcome-strip > div:last-child {
  border-right: 0;
}

.outcome-strip span {
  color: var(--lime);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.outcome-strip strong {
  font-size: 13px;
}

/* Process */
.process {
  background: var(--white);
}

.process-layout {
  display: grid;
  gap: 120px;
  grid-template-columns: 0.9fr 1.1fr;
}

.process-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.process-intro h2 {
  font-size: clamp(47px, 5vw, 70px);
}

.process-intro > p:not(.section-kicker) {
  max-width: 520px;
  margin: 34px 0 32px;
  color: #687a73;
  font-size: 16px;
  line-height: 1.75;
}

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

.process-steps li {
  display: grid;
  gap: 25px;
  padding: 35px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 52px 1fr;
}

.process-steps li > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: var(--lime-soft);
  color: #52783d;
  font-size: 10px;
  font-weight: 900;
}

.process-steps div {
  display: grid;
  gap: 9px;
}

.process-steps strong {
  font-size: 23px;
  letter-spacing: -0.025em;
}

.process-steps p {
  max-width: 510px;
  margin: 0;
  color: #687a73;
  font-size: 14px;
  line-height: 1.65;
}

/* CTA */
.cta-section {
  padding: 0 0 48px;
  background: var(--white);
}

.cta-card {
  position: relative;
  display: grid;
  min-height: 580px;
  align-items: center;
  gap: 80px;
  padding: 76px;
  overflow: hidden;
  border-radius: 28px;
  background: var(--ink-2);
  color: var(--white);
  grid-template-columns: 1.3fr 0.7fr;
}

.cta-card::before {
  position: absolute;
  top: -30%;
  right: -10%;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: rgba(199, 255, 94, 0.12);
  content: "";
  filter: blur(10px);
}

.cta-grid {
  opacity: 0.34;
  mask-image: radial-gradient(circle at 76% 50%, black, transparent 70%);
}

.cta-copy {
  position: relative;
  z-index: 2;
}

.cta-card h2 {
  max-width: 790px;
  font-size: clamp(48px, 5vw, 72px);
}

.cta-card p:not(.section-kicker) {
  max-width: 580px;
  margin: 30px 0 34px;
  color: #a8bbb4;
  font-size: 17px;
  line-height: 1.7;
}

.cta-seal {
  position: relative;
  z-index: 2;
  width: min(300px, 100%);
  aspect-ratio: 1;
  justify-self: center;
}

.cta-seal > svg {
  width: 100%;
  height: 100%;
  animation: rotate-seal 28s linear infinite;
}

.cta-seal text {
  fill: var(--lime);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.cta-seal > div {
  position: absolute;
  inset: 28%;
  display: grid;
  place-content: center;
  justify-items: center;
  border: 1px solid rgba(199, 255, 94, 0.35);
  border-radius: 50%;
  background: rgba(199, 255, 94, 0.07);
}

.cta-seal span {
  color: var(--white);
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
}

.cta-seal strong {
  color: var(--lime);
  font-size: 20px;
}

/* Footer */
.site-footer {
  padding: 78px 0 24px;
  background: var(--paper);
}

.footer-top {
  display: grid;
  align-items: center;
  gap: 30px;
  padding-bottom: 58px;
  grid-template-columns: 0.8fr 1fr 1fr;
}

.footer-top > p {
  max-width: 340px;
  margin: 0;
  color: #687972;
  font-size: 13px;
}

.footer-mail {
  justify-self: end;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.footer-mail span {
  margin-left: 8px;
  color: #58856b;
}

.footer-bottom {
  display: grid;
  align-items: center;
  gap: 20px;
  padding-top: 21px;
  border-top: 1px solid var(--line);
  color: #788981;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  grid-template-columns: 1fr auto 1fr;
}

.footer-bottom nav {
  display: flex;
  gap: 22px;
}

.footer-bottom > span:last-child {
  justify-self: end;
}

.footer-bottom a:hover {
  color: var(--ink);
}

/* Legal pages */
.legal-page {
  min-height: 100vh;
  padding: 150px 0 100px;
  background: var(--white);
}

.legal-hero {
  display: grid;
  gap: 24px;
  padding-bottom: 62px;
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  margin: 0;
  font-size: clamp(52px, 8vw, 96px);
  line-height: 0.94;
}

.legal-hero p {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.legal-layout {
  display: grid;
  gap: 90px;
  padding-top: 65px;
  grid-template-columns: 240px minmax(0, 740px);
}

.legal-aside {
  align-self: start;
  padding: 22px;
  border-radius: 16px;
  background: var(--paper);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.legal-aside strong {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
}

.legal-content section {
  padding: 0 0 38px;
}

.legal-content h2 {
  margin-bottom: 18px;
  font-size: 27px;
  line-height: 1.1;
}

.legal-content h3 {
  margin: 24px 0 9px;
  font-size: 17px;
}

.legal-content p,
.legal-content li,
.legal-content address {
  color: #566963;
  font-size: 14px;
  font-style: normal;
  line-height: 1.75;
}

.legal-content a {
  border-bottom: 1px solid currentColor;
  color: #326d58;
}

/* Motion */
[data-reveal] {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: no-preference) {
  [data-reveal].is-visible {
    animation: reveal-in 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }
}

@keyframes reveal-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float-note {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes ping {
  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(101, 166, 56, 0.1);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(101, 166, 56, 0.02);
  }
}

@keyframes rotate-seal {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1120px) {
  .hero-layout {
    gap: 45px;
    grid-template-columns: minmax(0, 0.9fr) minmax(470px, 1.1fr);
  }

  .site-nav {
    gap: 20px;
  }

  .system-visual {
    min-height: 540px;
  }

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

  .module-card {
    padding: 25px;
  }

  .module-card h3 {
    margin-top: 44px;
  }

  .reach-layout,
  .process-layout {
    gap: 70px;
  }

  .network-node {
    min-width: 185px;
  }
}

@media (max-width: 960px) {
  :root {
    --shell: min(100% - 38px, 760px);
  }

  .section-pad {
    padding: 96px 0;
  }

  .site-nav {
    position: fixed;
    top: 74px;
    right: 19px;
    left: 19px;
    display: grid;
    visibility: hidden;
    gap: 4px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 254, 248, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav > a:not(.button) {
    padding: 12px;
    border-radius: 10px;
    font-size: 15px;
  }

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

  .site-nav > a:not(.button)::after {
    display: none;
  }

  .site-nav .button {
    margin-top: 8px;
  }

  .menu-toggle {
    display: block;
  }

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

  .hero {
    padding-top: 130px;
  }

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

  .hero-copy {
    max-width: 720px;
  }

  .system-visual {
    width: min(640px, 100%);
    min-height: 560px;
    justify-self: center;
  }

  .manifesto-grid,
  .section-head,
  .reach-layout,
  .process-layout,
  .cta-card {
    gap: 50px;
    grid-template-columns: 1fr;
  }

  .manifesto-copy {
    padding-top: 0;
  }

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

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

  .reach-visual {
    width: min(650px, 100%);
    justify-self: center;
  }

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

  .difference-grid article {
    min-height: auto;
  }

  .difference-grid h3 {
    margin-top: 36px;
  }

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

  .outcome-strip > div:nth-child(2) {
    border-right: 0;
  }

  .outcome-strip > div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(199, 255, 94, 0.18);
  }

  .process-intro {
    position: static;
  }

  .cta-card {
    padding: 60px;
  }

  .cta-seal {
    width: 260px;
  }

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

  .footer-mail {
    justify-self: start;
  }

  .footer-top > p {
    justify-self: end;
  }

  .footer-mail {
    grid-column: 1 / -1;
  }

  .legal-layout {
    gap: 50px;
    grid-template-columns: 190px 1fr;
  }
}

@media (max-width: 680px) {
  :root {
    --shell: calc(100% - 30px);
  }

  .section-pad {
    padding: 78px 0;
  }

  h2 {
    font-size: 43px;
  }

  .hero {
    min-height: 0;
    padding: 116px 0 34px;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 66px);
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .hero-trust {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .system-visual {
    min-height: 495px;
    margin-top: 15px;
  }

  .system-window {
    right: 0;
    left: 0;
    transform: none;
  }

  .system-stage {
    padding: 16px;
  }

  .metric-card {
    min-height: 92px;
    padding: 10px;
  }

  .metric-card strong {
    font-size: 21px;
  }

  .flow-map {
    padding: 12px 8px;
  }

  .flow-node small {
    display: none;
  }

  .flow-node strong {
    font-size: 8px;
  }

  .note-two {
    display: none;
  }

  .note-one {
    right: -2px;
    bottom: 0;
  }

  .hero-foot {
    margin-top: 35px;
  }

  .hero-foot > span:first-child,
  .hero-foot-line {
    display: none;
  }

  .manifesto-grid {
    gap: 40px;
  }

  .manifesto-copy .manifesto-lead {
    font-size: 19px;
  }

  .journey {
    margin-top: 60px;
    grid-template-columns: 1fr;
  }

  .journey-step {
    min-height: auto;
  }

  .journey-icon {
    margin: 30px 0 24px;
  }

  .section-head {
    gap: 30px;
  }

  .module-grid {
    margin-top: 55px;
    grid-template-columns: 1fr;
  }

  .module-card {
    min-height: 445px;
  }

  .reach-layout {
    gap: 60px;
  }

  .reach-visual {
    min-height: 510px;
  }

  .network-core {
    width: 112px;
    height: 112px;
  }

  .network-node {
    min-width: 165px;
    max-width: 185px;
    padding: 9px;
  }

  .network-node > span {
    width: 33px;
    height: 33px;
  }

  .network-node strong {
    font-size: 10px;
  }

  .node-a {
    top: 4%;
    left: 0;
  }

  .node-b {
    top: 22%;
    right: -4%;
  }

  .node-c {
    right: -4%;
    bottom: 17%;
  }

  .node-d {
    bottom: 3%;
    left: -2%;
  }

  .difference-grid {
    margin-top: 55px;
  }

  .outcome-strip {
    grid-template-columns: 1fr;
  }

  .outcome-strip > div {
    border-right: 0;
    border-bottom: 1px solid rgba(199, 255, 94, 0.18);
  }

  .outcome-strip > div:last-child {
    border-bottom: 0;
  }

  .process-layout {
    gap: 52px;
  }

  .process-steps li {
    grid-template-columns: 45px 1fr;
  }

  .cta-section {
    padding-bottom: 20px;
  }

  .cta-card {
    min-height: 0;
    padding: 52px 28px;
    border-radius: 20px;
  }

  .cta-seal {
    width: 210px;
  }

  .footer-top,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-top > p {
    justify-self: start;
  }

  .footer-mail {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .footer-bottom nav {
    grid-row: 2;
  }

  .footer-bottom > span:last-child {
    justify-self: start;
  }

  .legal-page {
    padding-top: 120px;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   Content / pDL-Wissen pages (Hub + Spokes)
   Reuses .legal-page / .legal-hero / .legal-layout / .legal-aside
   ============================================================ */
.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.crumbs a {
  color: var(--muted);
  border-bottom: 1px solid transparent;
}
.crumbs a:hover {
  color: var(--ink);
  border-bottom-color: currentColor;
}
.crumbs span {
  opacity: 0.45;
}

.geo-answer {
  padding: 24px 26px;
  margin: 0 0 34px;
  border-radius: 16px;
  background: var(--ink);
  box-shadow: var(--shadow);
}
.geo-answer strong {
  display: block;
  margin-bottom: 9px;
  color: var(--lime);
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.legal-content .geo-answer p {
  margin: 0;
  color: var(--paper);
  font-size: 16px;
  line-height: 1.72;
}

.verify-note {
  display: inline-block;
  margin-top: 4px;
  padding: 2px 9px;
  border-radius: 999px;
  background: var(--lime-soft);
  color: #3a5a1e;
  font-size: 11px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.spoke-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin: 10px 0 12px;
}
.legal-content a.spoke-card {
  display: block;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
  color: var(--ink);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.legal-content a.spoke-card:hover {
  transform: translateY(-3px);
  border-color: var(--ink);
}
.spoke-card b {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
}
.spoke-card small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.faq-list {
  display: grid;
  gap: 12px;
}
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}
.faq-list summary {
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  list-style: none;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--muted);
}
.faq-list details[open] summary::after {
  content: "–";
}
.legal-content .faq-list details > p {
  padding: 0 20px 18px;
  margin: 0;
}

.pdl-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 30px;
  margin-top: 22px;
  border-radius: 20px;
  background: var(--ink);
}
.pdl-cta div strong {
  color: var(--white);
  font-size: 20px;
}
.legal-content .pdl-cta p {
  margin: 5px 0 0;
  color: var(--mint);
  font-size: 14px;
}
.legal-content a.button {
  border-bottom: none;
}

.legal-content ol.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  display: grid;
  gap: 14px;
}
.legal-content ol.steps li {
  position: relative;
  padding: 16px 18px 16px 58px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
}
.legal-content ol.steps li::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 18px;
  top: 16px;
  font-weight: 700;
  color: var(--ink-3);
  font-size: 15px;
}

.footer-note {
  margin: 0 auto;
  padding-top: 21px;
  border-top: 1px solid var(--line);
  max-width: 760px;
  color: #788981;
  font-size: 12px;
  line-height: 1.6;
}

.legal-content .role-note {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}
.legal-content .role-note strong {
  color: var(--ink);
}

@media (max-width: 640px) {
  .pdl-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
