:root {
  color-scheme: dark;
  --bg: #121212;
  --bg-2: #171717;
  --ink: #f6f3ea;
  --muted: #a7a39a;
  --dim: #6e6a63;
  --line: rgba(246, 243, 234, .16);
  --line-strong: rgba(246, 243, 234, .34);
  --surface: rgba(246, 243, 234, .055);
  --surface-2: rgba(246, 243, 234, .095);
  --accent: #d7ff5f;
  --accent-2: #9de7ff;
  --danger: #ff7b7b;
  --radius: 8px;
  --page: clamp(18px, 4vw, 64px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(246,243,234,.035), transparent 34vh);
  z-index: -2;
}

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

.cursor-light {
  position: fixed;
  width: 420px;
  height: 420px;
  left: var(--mx, 70vw);
  top: var(--my, 30vh);
  transform: translate(-50%, -50%);
  pointer-events: none;
  background: radial-gradient(circle, rgba(246,243,234,.08), transparent 62%);
  z-index: -1;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 16px var(--page);
  background: rgba(18, 18, 18, .82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
}

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: var(--muted);
  font-size: 13px;
}

.nav a {
  position: relative;
  padding: 7px 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--accent);
  transition: transform .22s ease;
}

.nav a:hover,
.nav a[aria-current] { color: var(--ink); }
.nav a:hover::after,
.nav a[aria-current]::after { transform: scaleX(1); }

.nav-cta,
.btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 17px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  font-size: 13px;
  font-weight: 800;
}

.btn.secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}

.btn:hover,
.nav-cta:hover { transform: translateY(-1px); }

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  padding: 0;
}

.menu-btn span {
  display: block;
  width: 17px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  min-height: calc(100vh - 67px);
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: end;
  padding: clamp(30px, 4vw, 56px) var(--page) 28px;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(1160px, 100%);
  align-self: center;
}

.eyebrow,
.chapter {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.chapter::before,
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--accent);
}

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

h1 {
  max-width: 1160px;
  margin-bottom: 24px;
  font-size: clamp(46px, 7.2vw, 104px);
  line-height: .92;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4.4vw, 64px);
  line-height: .98;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(20px, 2.3vw, 30px);
  line-height: 1.05;
}

.text-accent,
.module-name {
  color: var(--accent);
}

.module-name {
  text-shadow: 0 0 28px rgba(215, 255, 95, .12);
}

.lead .text-accent,
.section-head .text-accent {
  color: var(--accent);
  font-weight: 850;
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.45;
}

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

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 34px;
  max-width: 900px;
  border: 1px solid var(--line);
  background: var(--line);
}

.metric {
  min-height: 96px;
  padding: 16px;
  background: rgba(18,18,18,.86);
}

.metric strong {
  display: block;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.rly-visual {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .82;
}

.circle {
  position: absolute;
  width: min(46vw, 660px);
  height: min(46vw, 660px);
  overflow: visible;
}

.circle path {
  fill: none;
  stroke: rgba(246, 243, 234, .38);
  stroke-width: .35;
}

.circle-left {
  left: max(-22vw, -300px);
  top: 10vh;
}

.circle-center {
  right: 18vw;
  top: 2vh;
}

.circle-right {
  right: max(-18vw, -260px);
  bottom: 6vh;
}

.visual-core {
  position: absolute;
  right: clamp(40px, 10vw, 170px);
  top: clamp(70px, 18vh, 210px);
  width: clamp(126px, 15vw, 220px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(18,18,18,.7);
  color: var(--ink);
  text-align: center;
}

.visual-core span,
.visual-label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.visual-core strong {
  display: block;
  color: var(--accent);
  font-size: clamp(34px, 5vw, 76px);
  line-height: .8;
}

.visual-label {
  position: absolute;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(18,18,18,.78);
}

.visual-label.top { right: 29vw; top: 10vh; }
.visual-label.right { right: 8vw; top: 42vh; }
.visual-label.bottom { right: 25vw; bottom: 15vh; }
.visual-label.left { left: 6vw; top: 38vh; }

.hero-image {
  display: none;
}

.orbital {
  position: relative;
  min-height: 620px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(246,243,234,.08), transparent),
    rgba(246,243,234,.035);
}

.orbital::before,
.orbital::after {
  content: "";
  position: absolute;
  inset: 13%;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.orbital::after {
  inset: 26%;
  border-style: dashed;
  animation: spin 40s linear infinite;
}

.core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 190px;
  height: 190px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--bg);
  box-shadow: 0 0 60px rgba(215,255,95,.08);
  text-align: center;
  font-weight: 900;
}

.node {
  position: absolute;
  min-width: 138px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(18,18,18,.88);
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
}

.node span {
  display: block;
  margin-top: 4px;
  color: var(--dim);
  font-size: 11px;
  font-weight: 700;
}

.node:nth-child(2) { left: 8%; top: 13%; }
.node:nth-child(3) { right: 8%; top: 19%; }
.node:nth-child(4) { left: 11%; bottom: 20%; }
.node:nth-child(5) { right: 9%; bottom: 17%; }
.node:nth-child(6) { left: 37%; top: 5%; }
.node:nth-child(7) { left: 38%; bottom: 7%; }

.scroll-hint {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  color: var(--dim);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

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

.section {
  padding: clamp(72px, 10vw, 148px) var(--page);
  border-top: 1px solid var(--line);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(280px, .58fr);
  gap: clamp(24px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(36px, 6vw, 74px);
}

.section-head p {
  color: var(--muted);
  font-size: clamp(16px, 1.7vw, 21px);
  line-height: 1.55;
}

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

.module-row {
  display: grid;
  grid-template-columns: 92px minmax(0, .8fr) minmax(260px, .7fr) 132px;
  gap: 24px;
  align-items: center;
  padding: clamp(22px, 3.4vw, 42px) 0;
  border-bottom: 1px solid var(--line);
}

.module-row:hover .module-arrow {
  transform: translateX(8px);
  color: var(--accent);
}

.module-index {
  color: var(--dim);
  font-size: 13px;
  font-weight: 900;
}

.module-row p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.module-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.module-arrow {
  justify-self: end;
  color: var(--muted);
  transition: transform .2s ease, color .2s ease;
}

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

.panel {
  min-height: 292px;
  padding: 24px;
  background: rgba(18,18,18,.92);
}

.panel strong {
  display: block;
  margin-bottom: 46px;
  color: var(--accent);
  font-size: 12px;
}

.panel p {
  color: var(--muted);
  line-height: 1.58;
}

.legal-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.legal-proof {
  min-height: 330px;
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 22px;
  align-content: start;
  padding: clamp(22px, 3vw, 34px);
  background: rgba(18,18,18,.94);
}

.legal-icon {
  width: 64px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--accent);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.legal-proof p {
  color: var(--muted);
  line-height: 1.58;
}

.legal-proof a {
  color: var(--accent);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.showcase {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(320px, 1fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
}

.screen {
  position: relative;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0d0d0d;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0,0,0,.34);
}

.screen-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 54px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  color: var(--dim);
  font-size: 12px;
  font-weight: 800;
}

.screen-body {
  display: grid;
  grid-template-columns: 170px 1fr;
  min-height: 466px;
}

.screen-nav {
  padding: 18px;
  border-right: 1px solid var(--line);
}

.screen-nav span {
  display: block;
  height: 30px;
  margin-bottom: 9px;
  border-radius: 999px;
  background: var(--surface);
}

.screen-nav span:nth-child(2) { background: rgba(215,255,95,.17); }

.screen-main {
  padding: 18px;
}

.chart {
  height: 180px;
  display: flex;
  align-items: end;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.chart i {
  flex: 1;
  min-width: 18px;
  border-radius: 999px 999px 0 0;
  background: var(--accent);
}

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

.kpi {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.kpi b {
  display: block;
  font-size: 28px;
}

.kpi small {
  color: var(--muted);
}

.product-hero {
  min-height: 72vh;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(300px, .42fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: end;
  padding: clamp(72px, 12vw, 154px) var(--page) 42px;
}

.compact-hero {
  min-height: 52vh;
}

.contact-hero {
  grid-template-columns: minmax(0, .9fr) minmax(340px, .48fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.product-hero h1 {
  max-width: 1140px;
  font-size: clamp(42px, 6.8vw, 92px);
  line-height: .96;
}

.product-hero-visual {
  align-self: stretch;
  min-height: 360px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(215, 255, 95, .10), transparent 42%),
    rgba(246, 243, 234, .055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
}

.hero-visual-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hero-visual-head b {
  color: var(--accent);
  letter-spacing: 0;
  text-transform: none;
}

.hero-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-content: center;
}

.hero-visual-grid div {
  min-height: 98px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(18, 18, 18, .34);
}

.hero-visual-grid strong {
  color: var(--accent);
  font-size: 13px;
}

.hero-visual-grid span {
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.12;
}

.hero-visual-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-visual-list > span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1;
}

.product-screenshot-visual {
  align-self: center;
  display: grid;
  gap: 14px;
  min-width: 0;
}

.screenshot-frame {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(246, 243, 234, .08);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .34);
}

.screenshot-top {
  min-height: 34px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border-bottom: 1px solid var(--line);
  background: rgba(18, 18, 18, .88);
}

.screenshot-top span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line-strong);
}

.screenshot-top b {
  margin-left: auto;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.screenshot-open {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
}

.screenshot-open:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.screenshot-frame .screenshot-open {
  position: relative;
}

.screenshot-frame .screenshot-open::after {
  content: "Увеличить";
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(18,18,18,.78);
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .18s ease, transform .18s ease;
}

.screenshot-frame:hover .screenshot-open::after {
  opacity: 1;
  transform: translateY(0);
}

.screenshot-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top left;
}

.product-screenshot-visual > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.screenshot-thumbs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.screenshot-thumbs figure {
  min-width: 0;
  margin: 0;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(246, 243, 234, .055);
}

.screenshot-thumbs img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top left;
  border-radius: calc(var(--radius) - 2px);
}

.screenshot-thumbs figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

body.is-lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(14px, 3vw, 38px);
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, .82);
  backdrop-filter: blur(12px);
  cursor: zoom-out;
}

.lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(1280px, 96vw);
  max-height: 92vh;
  display: grid;
  gap: 12px;
}

.lightbox-panel img {
  display: block;
  width: 100%;
  max-height: calc(92vh - 84px);
  object-fit: contain;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #111;
  box-shadow: 0 32px 110px rgba(0, 0, 0, .55);
}

.lightbox-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.lightbox-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.seo-prerender {
  padding: 64px var(--page);
}

.answer-block {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(280px, .48fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(246,243,234,.055);
}

.answer-block p {
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.55;
}

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

.answer-list li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 750;
}

.product-story {
  display: grid;
  grid-template-columns: minmax(0, .68fr) minmax(320px, .52fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.story-panel {
  min-height: 360px;
  padding: clamp(24px, 4vw, 44px);
  background: rgba(18,18,18,.94);
}

.story-panel p {
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.55;
}

.story-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.story-list li {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.45;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.capability-card {
  min-height: 330px;
  display: grid;
  align-content: start;
  padding: 24px;
  background: rgba(18,18,18,.94);
}

.capability-card span {
  display: block;
  margin-bottom: 48px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.capability-card p {
  color: var(--muted);
  line-height: 1.58;
}

.outcome-table {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}

.outcome-head {
  display: block;
  padding: clamp(24px, 4vw, 42px);
  background: rgba(18,18,18,.94);
}

.outcome-head h2 {
  max-width: 980px;
  margin-bottom: 0;
}

.outcome-labels {
  display: grid;
  grid-template-columns: minmax(220px, .48fr) minmax(0, .72fr);
  gap: 1px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.outcome-labels span,
.outcome-labels strong {
  padding: 14px clamp(18px, 2.4vw, 26px);
  background: rgba(18,18,18,.94);
}

.outcome-labels strong {
  color: var(--accent);
}

.outcome-row {
  display: grid;
  grid-template-columns: minmax(220px, .48fr) minmax(0, .72fr);
  gap: 1px;
  border-top: 1px solid var(--line);
}

.outcome-before,
.outcome-after {
  min-height: 118px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: clamp(18px, 3vw, 28px);
  background: rgba(18,18,18,.94);
}

.outcome-before {
  color: var(--dim);
}

.outcome-after {
  position: relative;
  background:
    linear-gradient(135deg, rgba(215,255,95,.10), transparent 52%),
    rgba(18,18,18,.94);
}

.outcome-before small,
.outcome-after small {
  color: var(--dim);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.outcome-after small {
  color: var(--accent);
}

.outcome-before span {
  color: var(--dim);
  line-height: 1.45;
}

.outcome-after strong {
  color: var(--ink);
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.18;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(320px, .62fr);
  gap: clamp(28px, 5vw, 72px);
}

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

.feature {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.feature b {
  color: var(--accent);
  font-size: 13px;
}

.feature span {
  color: var(--muted);
  line-height: 1.55;
}

.quote {
  position: sticky;
  top: 98px;
  align-self: start;
  min-height: 380px;
  display: grid;
  align-content: space-between;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.quote p {
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.12;
}

.quote span {
  color: var(--dim);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--bg);
}

.contact-strip h2 {
  max-width: 900px;
  color: var(--bg);
}

.contact-strip p {
  color: rgba(18,18,18,.72);
  font-size: 18px;
  line-height: 1.45;
}

.contact-strip .btn {
  background: var(--bg);
  color: var(--ink);
  border-color: var(--bg);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.content-card {
  min-height: 360px;
  display: grid;
  align-content: start;
  padding: 24px;
  background: rgba(18,18,18,.94);
}

.content-card span,
.news-row time {
  margin-bottom: 34px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.content-card p,
.news-row p {
  color: var(--muted);
  line-height: 1.58;
}

.content-card a {
  align-self: end;
  margin-top: 28px;
  color: var(--accent);
  font-weight: 800;
}

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

.news-row {
  display: grid;
  grid-template-columns: minmax(150px, .28fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 70px);
  padding: clamp(24px, 4vw, 44px) 0;
  border-bottom: 1px solid var(--line);
}

.article-hero {
  padding-bottom: clamp(34px, 7vw, 84px);
}

.article-body {
  max-width: 980px;
}

.article-intro {
  max-width: 840px;
  margin: 0 0 clamp(34px, 6vw, 64px);
  color: var(--ink);
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.35;
}

.article-section {
  padding: clamp(26px, 4vw, 46px) 0;
  border-top: 1px solid var(--line);
}

.article-section h2,
.article-checklist h2 {
  max-width: 760px;
  margin: 0 0 18px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.04;
}

.article-section p {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.article-section p + p {
  margin-top: 16px;
}

.article-checklist {
  padding: clamp(26px, 4vw, 46px) 0;
  border-top: 1px solid var(--line);
}

.article-checklist ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
  border: 1px solid var(--line);
  background: var(--line);
}

.article-checklist li {
  min-height: 96px;
  padding: 20px;
  color: var(--ink);
  background: rgba(18,18,18,.94);
  line-height: 1.45;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(246,243,234,.07);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(18,18,18,.86);
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: var(--accent);
}

.lead-form textarea {
  resize: vertical;
}

.lead-form .check {
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.42;
}

.lead-form .check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
}

.lead-form a,
.legal-doc a,
.cookie-banner a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

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

.form-note,
.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.form-status {
  color: var(--accent);
  font-weight: 800;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.legal-section {
  padding-top: 42px;
}

.legal-doc {
  max-width: 980px;
}

.legal-doc h2 {
  margin-top: 42px;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.08;
}

.legal-doc h2:first-child {
  margin-top: 0;
}

.legal-doc p {
  color: var(--muted);
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.7;
}

.cookie-banner {
  position: fixed;
  left: var(--page);
  right: var(--page);
  bottom: 18px;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(18,18,18,.96);
  box-shadow: 0 20px 70px rgba(0,0,0,.42);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.cookie-banner div {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer {
  padding: 42px var(--page) 28px;
  border-top: 1px solid var(--line);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, .42fr) minmax(320px, .58fr);
  gap: 28px;
  margin-bottom: 42px;
}

.footer-main p {
  max-width: 720px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.5;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.footer-grid a {
  min-height: 74px;
  display: grid;
  place-items: center;
  background: var(--bg);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.footer-grid a:hover {
  color: var(--bg);
  background: var(--accent);
}

.footer-bottom {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
  color: var(--dim);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.to-top {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-transform: inherit;
  letter-spacing: inherit;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

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

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

@media (max-width: 1060px) {
  .topbar { grid-template-columns: 1fr auto; }
  .nav,
  .nav-cta { display: none; }
  .nav.open {
    position: fixed;
    left: var(--page);
    right: var(--page);
    top: 74px;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(18,18,18,.96);
  }
  .nav.open a { padding: 14px; border-bottom: 1px solid var(--line); }
  .nav.open a:last-child { border-bottom: 0; }
  .menu-btn { display: block; }
  .section-head,
  .showcase,
  .product-layout,
  .product-hero,
  .answer-block,
  .product-story,
  .contact-hero,
  .outcome-labels,
  .outcome-row,
  .footer-main,
  .contact-strip,
  .cookie-banner { grid-template-columns: 1fr; }
  .orbital { min-height: 500px; }
  .hero-image { min-height: 58vw; }
  .module-row { grid-template-columns: 56px 1fr; }
  .module-row p,
  .module-tags,
  .module-arrow { grid-column: 2; justify-self: start; }
  .panel-grid { grid-template-columns: 1fr; }
  .legal-proof-grid { grid-template-columns: 1fr; }
  .capability-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-hero-visual {
    min-height: auto;
  }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .quote { position: static; }
  .circle { width: 68vw; height: 68vw; }
  .circle-center { right: -4vw; top: 6vh; }
  .visual-core { right: 8vw; top: 12vh; }
  .visual-label.right { right: 5vw; }
}

@media (max-width: 680px) {
  :root { --page: 16px; }
  .topbar {
    min-height: 62px;
    padding: 12px var(--page);
  }
  .brand { font-size: 14px; }
  .brand-mark { width: 32px; height: 32px; }
  .menu-btn { width: 38px; height: 38px; }
  .hero {
    min-height: calc(100svh - 62px);
    padding-top: 34px;
    padding-bottom: 18px;
  }
  .hero-copy {
    align-self: end;
    padding-top: 160px;
  }
  h1 {
    font-size: clamp(34px, 10.5vw, 52px);
    line-height: .98;
    margin-bottom: 18px;
  }
  h2 {
    font-size: clamp(28px, 8vw, 38px);
    line-height: 1.04;
  }
  .lead {
    font-size: 16px;
    line-height: 1.5;
  }
  .hero-actions { margin-top: 22px; }
  .hero-actions .btn {
    width: 100%;
    min-height: 46px;
  }
  .hero-meta { grid-template-columns: 1fr; }
  .metric {
    min-height: auto;
    padding: 14px;
  }
  .orbital { min-height: 460px; }
  .circle {
    width: 118vw;
    height: 118vw;
  }
  .circle-left {
    left: -78vw;
    top: 6vh;
  }
  .circle-center {
    right: -44vw;
    top: 4vh;
  }
  .circle-right {
    right: -72vw;
    bottom: 22vh;
  }
  .visual-core {
    width: 122px;
    right: 18px;
    top: 48px;
  }
  .visual-label {
    font-size: 9px;
    padding: 6px 8px;
  }
  .visual-label.top { right: 148px; top: 42px; }
  .visual-label.right { right: 16px; top: 198px; }
  .visual-label.bottom { right: 74px; bottom: auto; top: 252px; }
  .visual-label.left { left: 16px; top: 172px; }
  .scroll-hint { display: none; }
  .section { padding: 64px var(--page); }
  .section-head { margin-bottom: 30px; }
  .module-row {
    grid-template-columns: 42px 1fr;
    gap: 14px;
    padding: 24px 0;
  }
  .module-row h3 { font-size: 22px; }
  .module-tags { gap: 6px; }
  .chip { font-size: 11px; }
  .content-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .screen { min-height: 420px; }
  .chart { height: 150px; gap: 8px; }
  .product-hero {
    min-height: auto;
    padding: 58px var(--page) 28px;
    gap: 24px;
  }
  .product-hero h1 {
    font-size: clamp(32px, 9vw, 44px);
    line-height: 1.04;
  }
  .product-hero-visual {
    padding: 16px;
  }
  .hero-visual-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-visual-grid div {
    min-height: 82px;
    padding: 12px;
  }
  .hero-visual-grid span {
    font-size: 13px;
  }
  .hero-visual-list > span {
    font-size: 11px;
  }
  .feature {
    grid-template-columns: 36px 1fr;
    gap: 12px;
  }
  .quote {
    min-height: auto;
    padding: 22px;
  }
  .quote p {
    font-size: 24px;
    line-height: 1.18;
  }
  .answer-block { padding: 22px; }
  .story-panel {
    min-height: auto;
    padding: 22px;
  }
  .content-grid { grid-template-columns: 1fr; }
  .legal-proof {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .capability-grid { grid-template-columns: 1fr; }
  .capability-card {
    min-height: auto;
    padding: 22px;
  }
  .capability-card span { margin-bottom: 28px; }
  .outcome-head { padding: 22px; }
  .outcome-labels {
    display: none;
  }
  .outcome-row {
    gap: 1px;
    border-top: 1px solid var(--line);
  }
  .outcome-before,
  .outcome-after {
    min-height: auto;
    padding: 18px;
  }
  .contact-strip {
    padding: 24px;
  }
  .contact-strip .btn {
    width: 100%;
  }
  .core { width: 146px; height: 146px; }
  .node {
    min-width: 118px;
    padding: 10px 12px;
    font-size: 12px;
  }
  .screen-body { grid-template-columns: 1fr; }
  .screen-nav { display: none; }
  .kpi-grid { grid-template-columns: 1fr; }
  .product-hero { min-height: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .news-row { grid-template-columns: 1fr; }
  .article-checklist ul { grid-template-columns: 1fr; }
  .article-section p { font-size: 16px; }
  .cookie-banner {
    bottom: 10px;
    padding: 14px;
  }
  .cookie-banner .btn {
    width: 100%;
  }
}
