:root {
  --font-geist-sans: Inter, Arial, Helvetica, sans-serif;
  --font-geist-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --ink: #06100c;
  --ink-soft: #0a1812;
  --panel: #0d1d16;
  --paper: #f1f3ec;
  --paper-soft: #dfe5da;
  --accent: #b8f238;
  --accent-strong: #d0ff57;
  --muted: #89978f;
  --line: rgba(241, 243, 236, 0.14);
  --line-dark: rgba(6, 16, 12, 0.16);
  --page-pad: max(48px, calc((100vw - 1440px) / 2));
}

.form-static-status {
  margin: 18px 0 0;
  color: var(--accent);
  font-family: var(--font-geist-mono);
  font-size: 11px;
  line-height: 1.6;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
}

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

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

::selection {
  color: var(--ink);
  background: var(--accent);
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  width: min(100% - 80px, 1440px);
  height: 88px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  font-size: 15px;
  font-weight: 680;
  letter-spacing: 0.18em;
}

.brand-name {
  display: grid;
  gap: 2px;
}

.brand-name small {
  color: var(--accent);
  font-family: var(--font-geist-mono), monospace;
  font-size: 6px;
  font-weight: 600;
  letter-spacing: 0.28em;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  width: 30px;
  height: 28px;
}

.brand-mark > i {
  display: block;
  width: 6px;
  height: 21px;
  border-radius: 1px;
  background: var(--accent);
  transform: skewX(-24deg);
}

.brand-mark > i:nth-child(2) {
  height: 27px;
}

.brand-mark > i:nth-child(3) {
  height: 17px;
}

.site-header nav {
  display: flex;
  gap: 38px;
  color: #b7c0bb;
  font-size: 13px;
}

.site-header nav a,
.footer-nav a {
  transition: color 160ms ease;
}

.site-header nav a:hover,
.site-header nav a:focus-visible,
.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--accent);
}

.header-action {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid var(--paper);
  font-size: 13px;
  font-weight: 580;
}

.header-action span {
  color: var(--accent);
}

.home-hero {
  position: relative;
  min-height: 920px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(480px, 0.95fr);
  align-items: center;
  gap: 70px;
  overflow: hidden;
  padding: 155px var(--page-pad) 90px;
  background:
    radial-gradient(circle at 85% 45%, rgba(54, 139, 83, 0.17), transparent 30%),
    linear-gradient(135deg, #06100c 0%, #091710 57%, #06100c 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.8) 65%, transparent);
}

.home-hero-copy,
.home-console-wrap {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  color: var(--accent);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 34px;
}

.pulse {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(184, 242, 56, 0.08);
}

.pulse::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  animation: signal 2.2s infinite;
}

@keyframes signal {
  0% {
    opacity: 0.9;
    transform: scale(0.4);
  }
  75%,
  100% {
    opacity: 0;
    transform: scale(1.7);
  }
}

.home-hero h1 {
  margin: 0;
  font-size: clamp(60px, 5.8vw, 94px);
  font-weight: 520;
  line-height: 0.99;
  letter-spacing: -0.062em;
}

.home-hero h1 span {
  color: #7f8d85;
}

.home-hero-copy > p {
  max-width: 690px;
  margin: 32px 0 0;
  color: #b2bdb6;
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 44px;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
  min-width: 225px;
  padding: 17px 20px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--ink);
  font-size: 13px;
  font-weight: 650;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.primary-button:hover,
.primary-button:focus-visible {
  background: var(--accent-strong);
  transform: translateY(-2px);
}

.text-link {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  padding-bottom: 7px;
  border-bottom: 1px solid #69776f;
  color: #c3cbc6;
  font-size: 12px;
}

.text-link span {
  color: var(--accent);
}

.text-link.light {
  margin-top: 40px;
  color: #b5c0ba;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 680px;
  margin-top: 75px;
  border-top: 1px solid var(--line);
}

.hero-facts div {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 18px 16px 0 0;
}

.hero-facts span {
  color: var(--accent);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
}

.hero-facts p {
  margin: 0;
  color: #87958d;
  font-size: 11px;
}

.product-console {
  width: 100%;
  border: 1px solid rgba(184, 242, 56, 0.24);
  background: rgba(7, 20, 14, 0.86);
  box-shadow: 0 32px 110px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
}

.console-topbar {
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 19px;
  border-bottom: 1px solid var(--line);
  color: #829087;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.13em;
}

.console-topbar > div {
  display: flex;
  gap: 10px;
  align-items: center;
}

.console-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.console-secure {
  color: var(--accent);
}

.console-body {
  min-height: 460px;
  display: grid;
  grid-template-columns: 58px 1fr;
}

.console-body aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-top: 24px;
  border-right: 1px solid var(--line);
}

.console-menu {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: #526159;
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
}

.console-menu.active {
  border: 1px solid rgba(184, 242, 56, 0.35);
  color: var(--accent);
  background: rgba(184, 242, 56, 0.05);
}

.console-workspace {
  min-width: 0;
  padding: 27px;
}

.console-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.console-title > div {
  display: grid;
  gap: 6px;
}

.console-title small,
.console-metrics small {
  color: #5d6c64;
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  letter-spacing: 0.13em;
}

.console-title strong {
  font-size: 16px;
  font-weight: 560;
}

.session-state {
  padding: 7px 10px;
  border: 1px solid rgba(184, 242, 56, 0.28);
  color: var(--accent);
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.console-metrics > div {
  display: grid;
  gap: 8px;
  padding: 14px 11px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.console-metrics strong {
  font-size: 9px;
  font-weight: 520;
}

.console-chart {
  margin-top: 19px;
  padding: 15px;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(184, 242, 56, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 242, 56, 0.035) 1px, transparent 1px);
  background-size: 24px 24px;
}

.chart-heading,
.chart-axis {
  display: flex;
  justify-content: space-between;
  color: #69776f;
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  letter-spacing: 0.1em;
}

.chart-heading span:last-child,
.chart-axis span:last-child {
  color: var(--accent);
}

.bars {
  height: 105px;
  display: flex;
  align-items: end;
  gap: 7px;
  padding-top: 20px;
}

.bars i {
  flex: 1;
  min-width: 2px;
  background: linear-gradient(to top, rgba(184, 242, 56, 0.22), var(--accent));
}

.chart-axis {
  margin-top: 10px;
}

.console-route {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
}

.route-point {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #77857d;
  font-family: var(--font-geist-mono), monospace;
  font-size: 6px;
}

.route-point i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(184, 242, 56, 0.1);
}

.route-track {
  height: 1px;
  background: #263b30;
}

.route-track i {
  display: block;
  width: 45%;
  height: 1px;
  background: var(--accent);
}

.console-caption {
  margin: 0;
  padding: 11px 19px;
  border-top: 1px solid var(--line);
  color: #56655d;
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  letter-spacing: 0.11em;
  text-align: right;
  text-transform: uppercase;
}

.identity-strip {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  gap: 70px;
  align-items: center;
  padding: 42px var(--page-pad);
  border-top: 1px solid rgba(6, 16, 12, 0.12);
  color: var(--ink);
  background: var(--accent);
}

.identity-strip > span {
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.16em;
}

.identity-strip p {
  max-width: 930px;
  margin: 0;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 520;
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.audience-section,
.home-proof {
  padding: 130px var(--page-pad);
  color: var(--ink);
  background: var(--paper);
}

.section-intro {
  display: grid;
  grid-template-columns: 0.4fr 1.2fr 0.75fr;
  gap: 55px;
  align-items: start;
}

.audience-section .section-kicker,
.home-proof .section-kicker {
  color: #4e705f;
}

.section-intro h2,
.workflow-copy h2,
.home-proof h2,
.contact-section h2 {
  margin: 0;
  font-size: clamp(44px, 4.3vw, 68px);
  font-weight: 520;
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.section-intro > p:last-child {
  margin: 2px 0 0;
  color: #5f6b64;
  font-size: 15px;
  line-height: 1.75;
}

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

.audience-grid article {
  min-height: 485px;
  padding: 25px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.audience-grid article:hover {
  z-index: 2;
  background: #e6eadf;
  transform: translateY(-5px);
}

.audience-card-top {
  display: flex;
  justify-content: space-between;
  color: #6d7a73;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.12em;
}

.audience-visual {
  position: relative;
  height: 180px;
  margin: 44px 0 38px;
  overflow: hidden;
  border: 1px solid rgba(6, 16, 12, 0.14);
  background:
    linear-gradient(rgba(6, 16, 12, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 16, 12, 0.05) 1px, transparent 1px);
  background-size: 25px 25px;
}

.audience-visual i {
  position: absolute;
  display: block;
}

.audience-01 i:first-child {
  width: 110px;
  height: 70px;
  top: 38px;
  left: 50%;
  border: 1px solid #426452;
  transform: translateX(-50%);
}

.audience-01 i:nth-child(2) {
  width: 26px;
  height: 26px;
  top: 60px;
  left: 50%;
  border-radius: 50%;
  background: var(--accent);
  transform: translateX(-50%);
}

.audience-01 i:last-child {
  width: 160px;
  height: 1px;
  top: 135px;
  left: 50%;
  background: #789182;
  transform: translateX(-50%);
}

.audience-02 i:first-child,
.audience-02 i:nth-child(2),
.audience-02 i:last-child {
  bottom: 30px;
  width: 18%;
  background: #416452;
}

.audience-02 i:first-child {
  left: 18%;
  height: 45px;
}

.audience-02 i:nth-child(2) {
  left: 41%;
  height: 95px;
  background: var(--accent);
}

.audience-02 i:last-child {
  left: 64%;
  height: 70px;
}

.audience-03 i {
  top: 50%;
  width: 12px;
  height: 12px;
  border: 3px solid var(--paper);
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 1px #587461;
}

.audience-03 i:first-child {
  left: 18%;
}

.audience-03 i:nth-child(2) {
  left: 49%;
}

.audience-03 i:last-child {
  right: 18%;
}

.audience-03::before {
  content: "";
  position: absolute;
  top: calc(50% + 5px);
  left: 20%;
  width: 60%;
  height: 1px;
  background: #52705f;
}

.audience-grid h3 {
  margin: 0 0 13px;
  font-size: 21px;
  font-weight: 580;
  letter-spacing: -0.03em;
}

.audience-grid article > p {
  min-height: 72px;
  margin: 0;
  color: #637068;
  font-size: 13px;
  line-height: 1.7;
}

.audience-grid article > a {
  display: inline-flex;
  gap: 18px;
  margin-top: 24px;
  color: #263d31;
  font-size: 11px;
  font-weight: 620;
}

.workflow-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
  padding: 130px var(--page-pad);
  background: var(--ink-soft);
}

.workflow-copy h2 {
  max-width: 650px;
  margin-top: 28px;
}

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

.workflow-list article {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 25px;
  min-height: 170px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.workflow-list article > span {
  color: var(--accent);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
}

.workflow-list h3 {
  margin: 0 0 13px;
  font-size: 20px;
  font-weight: 550;
}

.workflow-list p {
  max-width: 610px;
  margin: 0;
  color: #89978f;
  font-size: 14px;
  line-height: 1.7;
}

.home-proof {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
  background: var(--paper-soft);
}

.home-proof h2 {
  max-width: 610px;
  margin-top: 28px;
}

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

.proof-grid > div {
  min-height: 210px;
  padding: 26px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.proof-grid strong {
  font-size: 17px;
  font-weight: 600;
}

.proof-grid p {
  margin: 70px 0 0;
  color: #637068;
  font-size: 13px;
  line-height: 1.65;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: end;
  padding: 110px var(--page-pad);
  color: var(--ink);
  background: var(--accent);
}

.contact-section .section-kicker {
  color: #40542c;
}

.contact-section h2 {
  max-width: 930px;
  margin-top: 25px;
}

.contact-section > a {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--ink);
  font-family: var(--font-geist-mono), monospace;
  font-size: 12px;
  font-weight: 600;
}

.site-footer {
  min-height: 210px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 60px;
  padding: 50px var(--page-pad);
  background: #040b08;
}

.footer-nav {
  display: flex;
  gap: 30px;
  color: #85928b;
  font-size: 11px;
}

.footer-meta {
  justify-self: end;
  display: grid;
  gap: 9px;
  color: #68766e;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.08em;
  text-align: right;
}

.footer-meta a {
  color: #aeb8b2;
}

@media (max-width: 1120px) {
  :root {
    --page-pad: 48px;
  }

  .site-header {
    width: calc(100% - 48px);
  }

  .home-hero {
    grid-template-columns: 1fr;
    gap: 75px;
  }

  .home-hero-copy {
    padding-top: 70px;
  }

  .home-console-wrap {
    max-width: 700px;
  }

  .section-intro {
    grid-template-columns: 150px 1fr;
  }

  .section-intro > p:last-child {
    grid-column: 2;
  }

  .workflow-section,
  .home-proof {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --page-pad: 20px;
  }

  .site-header {
    width: calc(100% - 32px);
    height: 72px;
  }

  .site-header nav {
    display: none;
  }

  .brand {
    font-size: 13px;
  }

  .header-action {
    font-size: 0;
  }

  .header-action::before {
    content: "Контакт";
    font-size: 11px;
  }

  .home-hero {
    min-height: auto;
    padding-top: 128px;
    padding-bottom: 65px;
  }

  .home-hero h1 {
    font-size: clamp(48px, 14vw, 68px);
  }

  .home-hero-copy > p {
    font-size: 16px;
  }

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

  .hero-facts {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 55px;
    padding-top: 16px;
  }

  .hero-facts div {
    padding: 0;
  }

  .console-body {
    min-height: 420px;
    grid-template-columns: 42px 1fr;
  }

  .console-workspace {
    padding: 18px 13px;
  }

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

  .console-metrics > div {
    grid-template-columns: 1fr 1fr;
  }

  .console-metrics > div:nth-child(3) {
    display: none;
  }

  .bars {
    gap: 4px;
  }

  .console-route {
    gap: 4px;
  }

  .identity-strip,
  .section-intro,
  .workflow-section,
  .home-proof,
  .contact-section {
    display: block;
  }

  .identity-strip {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .identity-strip p {
    margin-top: 20px;
  }

  .audience-section,
  .workflow-section,
  .home-proof {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .section-intro h2,
  .workflow-copy h2,
  .home-proof h2,
  .contact-section h2 {
    margin-top: 24px;
    font-size: 42px;
  }

  .section-intro > p:last-child {
    margin-top: 28px;
  }

  .audience-grid,
  .proof-grid {
    grid-template-columns: 1fr;
    margin-top: 60px;
  }

  .audience-grid article {
    min-height: 450px;
  }

  .workflow-list {
    margin-top: 55px;
  }

  .workflow-list article {
    grid-template-columns: 45px 1fr;
  }

  .proof-grid p {
    margin-top: 45px;
  }

  .contact-section {
    padding-top: 85px;
    padding-bottom: 85px;
  }

  .contact-section > a {
    width: fit-content;
    margin-top: 50px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-top: 55px;
    padding-bottom: 55px;
  }

  .footer-nav {
    flex-wrap: wrap;
  }

  .footer-meta {
    justify-self: start;
    text-align: left;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Inner pages */
.inner-hero {
  position: relative;
  min-height: 700px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 90px;
  overflow: hidden;
  padding: 155px var(--page-pad) 85px;
  background:
    radial-gradient(circle at 80% 48%, rgba(53, 137, 82, 0.17), transparent 30%),
    linear-gradient(135deg, #06100c, #0a1912 58%, #06100c);
}

.inner-hero-copy,
.inner-hero-aside,
.solution-orbit,
.network-diagram {
  position: relative;
  z-index: 2;
}

.inner-hero h1 {
  margin: 30px 0 0;
  font-size: clamp(62px, 6vw, 98px);
  font-weight: 520;
  line-height: 0.98;
  letter-spacing: -0.062em;
}

.inner-hero h1 span {
  color: #7f8d85;
}

.inner-hero-copy > p:last-child {
  max-width: 720px;
  margin: 34px 0 0;
  color: #aeb9b2;
  font-size: 18px;
  line-height: 1.65;
}

.inner-hero-aside {
  align-self: end;
  max-width: 470px;
  margin-bottom: 36px;
  padding: 26px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.inner-hero-aside span {
  color: var(--accent);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.13em;
}

.inner-hero-aside p {
  margin: 22px 0 0;
  color: #87958d;
  font-size: 14px;
  line-height: 1.7;
}

.product-showcase {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 100px;
  padding: 130px var(--page-pad);
  color: var(--ink);
  background: var(--paper-soft);
}

.product-showcase .section-kicker,
.product-layers .section-kicker,
.scenario-section .section-kicker,
.architecture-section .section-kicker,
.case-policy .section-kicker {
  color: #4e705f;
}

.product-showcase h2,
.product-layers h2,
.setup-copy h2,
.creator-flow h2,
.case-policy h2,
.architecture-section h2,
.security-principles h2,
.operations-section h2 {
  margin: 27px 0 0;
  font-size: clamp(43px, 4vw, 66px);
  font-weight: 520;
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.product-showcase-copy > p {
  max-width: 560px;
  margin: 30px 0 0;
  color: #5e6a63;
  font-size: 15px;
  line-height: 1.75;
}

.showcase-note {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 15px;
  max-width: 520px;
  margin-top: 55px;
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
}

.showcase-note span {
  color: #557360;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
}

.showcase-note p {
  margin: 0;
  color: #6b766f;
  font-size: 12px;
  line-height: 1.65;
}

.product-showcase .product-console {
  color: var(--paper);
}

.product-layers,
.scenario-section,
.architecture-section {
  padding: 130px var(--page-pad);
  color: var(--ink);
  background: var(--paper);
}

.section-intro.compact {
  grid-template-columns: 0.4fr 1.6fr;
}

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

.layer-grid article {
  min-height: 430px;
  padding: 28px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.layer-grid article > span {
  color: #6d7a73;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
}

.layer-symbol {
  position: relative;
  width: 110px;
  height: 110px;
  margin: 64px 0 55px;
  border: 1px solid #6a8274;
  border-radius: 50%;
}

.layer-symbol::before,
.layer-symbol::after,
.layer-symbol i {
  content: "";
  position: absolute;
  display: block;
}

.layer-symbol::before {
  inset: 19px;
  border: 1px dashed #789184;
  border-radius: 50%;
}

.layer-symbol::after {
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  transform: translate(-50%, -50%);
}

.layer-symbol i {
  top: 50%;
  width: 35px;
  height: 1px;
  background: #567160;
}

.layer-symbol i:first-child {
  left: -20px;
}

.layer-symbol i:last-child {
  right: -20px;
}

.layer-grid article:nth-child(2) .layer-symbol {
  border-radius: 0;
  transform: rotate(45deg);
}

.layer-grid article:nth-child(2) .layer-symbol::before {
  border-radius: 0;
}

.layer-grid article:nth-child(2) .layer-symbol i,
.layer-grid article:nth-child(2) .layer-symbol::after {
  transform: rotate(-45deg);
}

.layer-grid h3 {
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 580;
}

.layer-grid p {
  margin: 0;
  color: #637068;
  font-size: 13px;
  line-height: 1.7;
}

.setup-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  padding: 130px var(--page-pad);
  background: var(--ink-soft);
}

.setup-copy > p {
  max-width: 540px;
  margin: 28px 0 0;
  color: #89978f;
  font-size: 14px;
  line-height: 1.7;
}

.platform-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 45px;
}

.platform-pills span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  color: #aab5ae;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.1em;
}

.setup-timeline {
  border-top: 1px solid var(--line);
}

.setup-timeline article {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  padding: 29px 0;
  border-bottom: 1px solid var(--line);
}

.setup-timeline article > span {
  color: var(--accent);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
}

.setup-timeline small {
  color: #66756d;
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  letter-spacing: 0.12em;
}

.setup-timeline h3 {
  margin: 9px 0 10px;
  font-size: 19px;
  font-weight: 550;
}

.setup-timeline p {
  margin: 0;
  color: #84928a;
  font-size: 13px;
  line-height: 1.65;
}

.solution-orbit {
  height: 430px;
  border: 1px solid rgba(184, 242, 56, 0.2);
  background:
    linear-gradient(rgba(184, 242, 56, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 242, 56, 0.035) 1px, transparent 1px);
  background-size: 32px 32px;
}

.solution-orbit::before,
.solution-orbit::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px dashed rgba(184, 242, 56, 0.19);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.solution-orbit::before {
  width: 310px;
  height: 310px;
}

.solution-orbit::after {
  width: 190px;
  height: 190px;
}

.orbit-center {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-geist-mono), monospace;
  font-size: 22px;
  transform: translate(-50%, -50%) rotate(45deg);
}

.orbit-item {
  position: absolute;
  z-index: 2;
  padding: 7px 9px;
  border: 1px solid rgba(184, 242, 56, 0.26);
  color: #a9b5ae;
  background: #0a1812;
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  letter-spacing: 0.1em;
}

.item-a {
  top: 17%;
  left: 19%;
}

.item-b {
  top: 21%;
  right: 16%;
}

.item-c {
  right: 17%;
  bottom: 16%;
}

.item-d {
  bottom: 18%;
  left: 17%;
}

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

.scenario-list article {
  display: grid;
  grid-template-columns: 0.45fr 1.2fr 0.8fr;
  gap: 55px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid var(--line-dark);
}

.scenario-index {
  display: flex;
  justify-content: space-between;
  color: #6c7972;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: 0.11em;
}

.scenario-list h3 {
  margin: 0 0 14px;
  font-size: 26px;
  font-weight: 560;
  letter-spacing: -0.03em;
}

.scenario-list article > div:nth-child(2) p {
  max-width: 640px;
  margin: 0;
  color: #627068;
  font-size: 14px;
  line-height: 1.7;
}

.scenario-list ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.scenario-list li {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(6, 16, 12, 0.09);
  color: #46564d;
  font-size: 11px;
}

.scenario-list li::before {
  content: "↳";
  margin-right: 10px;
  color: #557360;
}

.creator-flow {
  padding: 130px var(--page-pad);
  background: var(--ink-soft);
}

.creator-flow-head,
.security-principles-head {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 100px;
  align-items: end;
}

.creator-flow-head > p,
.security-principles-head > p {
  margin: 0;
  color: #89978f;
  font-size: 14px;
  line-height: 1.7;
}

.flow-track {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 85px;
}

.flow-track article {
  min-height: 240px;
  padding: 27px;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(184, 242, 56, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 242, 56, 0.03) 1px, transparent 1px);
  background-size: 25px 25px;
}

.flow-track article > span {
  color: var(--accent);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
}

.flow-track strong {
  display: block;
  margin-top: 75px;
  font-size: 19px;
  font-weight: 560;
}

.flow-track p {
  margin: 12px 0 0;
  color: #839089;
  font-size: 12px;
  line-height: 1.65;
}

.flow-track > i {
  color: var(--accent);
  font-style: normal;
}

.flow-track > i::before {
  content: "→";
}

.case-policy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  padding: 130px var(--page-pad);
  color: var(--ink);
  background: var(--paper-soft);
}

.case-policy > div:last-child {
  align-self: end;
}

.case-policy > div:last-child p {
  max-width: 650px;
  margin: 0;
  color: #5f6b64;
  font-size: 15px;
  line-height: 1.75;
}

.case-policy > div:last-child span {
  display: block;
  margin-top: 45px;
  padding-top: 18px;
  border-top: 1px solid var(--line-dark);
  color: #506d5b;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: 0.13em;
}

.network-diagram {
  border: 1px solid rgba(184, 242, 56, 0.22);
  background: rgba(7, 20, 14, 0.78);
}

.diagram-head {
  display: flex;
  justify-content: space-between;
  padding: 17px 19px;
  border-bottom: 1px solid var(--line);
  color: #6f7e76;
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  letter-spacing: 0.12em;
}

.diagram-head span:last-child {
  color: var(--accent);
}

.diagram-canvas {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  background:
    linear-gradient(rgba(184, 242, 56, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 242, 56, 0.035) 1px, transparent 1px);
  background-size: 30px 30px;
}

.diagram-core,
.diagram-unit {
  position: absolute;
  z-index: 3;
}

.diagram-core {
  top: 50%;
  left: 50%;
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-geist-mono), monospace;
  font-size: 20px;
  background: #0c1e15;
  transform: translate(-50%, -50%) rotate(45deg);
}

.diagram-unit {
  padding: 8px 10px;
  border: 1px solid rgba(184, 242, 56, 0.27);
  color: #9aa79f;
  background: #091710;
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  letter-spacing: 0.1em;
}

.unit-device {
  top: 17%;
  left: 13%;
}

.unit-access {
  top: 17%;
  right: 12%;
}

.unit-edge {
  right: 14%;
  bottom: 17%;
}

.unit-route {
  bottom: 17%;
  left: 13%;
}

.diagram-line {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 190px;
  height: 1px;
  transform-origin: left;
  background: linear-gradient(90deg, var(--accent), rgba(184, 242, 56, 0.06));
}

.line-a {
  transform: rotate(215deg);
}

.line-b {
  transform: rotate(325deg);
}

.line-c {
  transform: rotate(35deg);
}

.line-d {
  transform: rotate(145deg);
}

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

.architecture-stack article {
  position: relative;
  min-height: 330px;
  padding: 27px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.architecture-stack article > span {
  color: #587360;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.11em;
}

.architecture-stack h3 {
  margin: 130px 0 13px;
  font-size: 18px;
  font-weight: 580;
}

.architecture-stack p {
  margin: 0;
  color: #647068;
  font-size: 12px;
  line-height: 1.65;
}

.architecture-stack i {
  position: absolute;
  top: 72px;
  left: 27px;
  width: 11px;
  height: 11px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 1px #587360;
}

.architecture-stack article:not(:last-child)::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 77px;
  left: 38px;
  width: calc(100% - 10px);
  height: 1px;
  background: #6f8779;
}

.security-principles {
  padding: 130px var(--page-pad);
  background: var(--ink-soft);
}

.principle-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 80px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.principle-list > div {
  min-height: 110px;
  display: grid;
  grid-template-columns: 45px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 25px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principle-list span {
  color: #66756d;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
}

.principle-list p {
  margin: 0;
  color: #cbd2cd;
  font-size: 14px;
}

.principle-list i {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(184, 242, 56, 0.28);
  border-radius: 50%;
  color: var(--accent);
  font-size: 10px;
  font-style: normal;
}

.operations-section {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 100px;
  padding: 130px var(--page-pad);
  color: var(--ink);
  background: var(--paper-soft);
}

.operations-section .section-kicker {
  color: #4e705f;
}

.operations-flow {
  align-self: end;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 14px;
  align-items: center;
}

.operations-flow span {
  min-height: 100px;
  display: grid;
  place-items: center;
  padding: 14px;
  border: 1px solid var(--line-dark);
  font-size: 11px;
  line-height: 1.4;
  text-align: center;
}

.operations-flow i {
  color: #54715e;
  font-style: normal;
}

@media (max-width: 1120px) {
  .product-showcase,
  .setup-section,
  .case-policy,
  .operations-section {
    grid-template-columns: 1fr;
  }

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

  .architecture-stack article:nth-child(2)::after {
    display: none;
  }

  .operations-flow {
    margin-top: 30px;
  }
}

@media (max-width: 760px) {
  .inner-hero,
  .product-showcase,
  .setup-section,
  .case-policy,
  .operations-section {
    display: block;
  }

  .inner-hero {
    min-height: auto;
    padding-top: 135px;
    padding-bottom: 80px;
  }

  .inner-hero h1 {
    font-size: clamp(49px, 14vw, 70px);
  }

  .inner-hero-copy > p:last-child {
    font-size: 16px;
  }

  .inner-hero-aside,
  .solution-orbit,
  .network-diagram {
    margin-top: 65px;
  }

  .product-showcase,
  .product-layers,
  .setup-section,
  .scenario-section,
  .creator-flow,
  .case-policy,
  .architecture-section,
  .security-principles,
  .operations-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .product-showcase h2,
  .product-layers h2,
  .setup-copy h2,
  .creator-flow h2,
  .case-policy h2,
  .architecture-section h2,
  .security-principles h2,
  .operations-section h2 {
    font-size: 42px;
  }

  .product-showcase .product-console {
    margin-top: 60px;
  }

  .section-intro.compact,
  .creator-flow-head,
  .security-principles-head {
    display: block;
  }

  .layer-grid,
  .principle-list,
  .architecture-stack {
    grid-template-columns: 1fr;
    margin-top: 60px;
  }

  .architecture-stack article::after {
    display: none;
  }

  .setup-timeline,
  .security-principles-head > p {
    margin-top: 60px;
  }

  .scenario-list article {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .scenario-index {
    justify-content: flex-start;
    gap: 30px;
  }

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

  .flow-track > i {
    justify-self: center;
    transform: rotate(90deg);
  }

  .case-policy > div:last-child {
    margin-top: 55px;
  }

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

  .operations-flow i {
    justify-self: center;
    transform: rotate(90deg);
  }
}

/* Product depth, application and account surfaces */
.site-header {
  grid-template-columns: minmax(210px, 1fr) auto minmax(270px, 1fr);
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-login {
  color: #aab5ae;
  font-size: 12px;
  transition: color 160ms ease;
}

.header-login:hover,
.header-login:focus-visible {
  color: var(--paper);
}

.header-actions .header-action {
  justify-self: auto;
}

.site-footer {
  grid-template-columns: 0.8fr 1.2fr 0.8fr;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 55px;
}

.footer-columns > div {
  display: grid;
  gap: 10px;
}

.footer-columns small {
  margin-bottom: 4px;
  color: #5f6e66;
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  letter-spacing: 0.12em;
}

.footer-columns a {
  color: #89968f;
  font-size: 11px;
  transition: color 160ms ease;
}

.footer-columns a:hover,
.footer-columns a:focus-visible {
  color: var(--accent);
}

.platform-depth {
  padding: 130px var(--page-pad);
  background: var(--ink-soft);
}

.platform-depth-head,
.research-preview-head {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 90px;
  align-items: end;
}

.platform-depth-head h2,
.research-preview-head h2,
.home-application h2 {
  max-width: 850px;
  margin: 27px 0 0;
  font-size: clamp(44px, 4.3vw, 68px);
  font-weight: 520;
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.platform-depth-head > p {
  margin: 0;
  color: #89978f;
  font-size: 14px;
  line-height: 1.7;
}

.platform-map {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 80px;
}

.platform-map article {
  min-height: 285px;
  padding: 27px;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(184, 242, 56, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 242, 56, 0.03) 1px, transparent 1px);
  background-size: 27px 27px;
}

.platform-map article > span,
.research-card-grid article > span {
  color: var(--accent);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.11em;
}

.platform-map h3 {
  margin: 105px 0 12px;
  font-size: 19px;
  font-weight: 570;
}

.platform-map p {
  margin: 0;
  color: #85928b;
  font-size: 12px;
  line-height: 1.65;
}

.platform-map > i {
  color: var(--accent);
  font-style: normal;
}

.research-preview {
  padding: 130px var(--page-pad);
  background: #0d1d16;
}

.research-preview-head .text-link {
  justify-self: end;
}

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

.research-card-grid article {
  min-height: 330px;
  padding: 27px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.research-card-grid h3 {
  max-width: 350px;
  margin: 100px 0 14px;
  font-size: 20px;
  font-weight: 560;
  line-height: 1.25;
}

.research-card-grid p {
  margin: 0;
  color: #839089;
  font-size: 12px;
  line-height: 1.65;
}

.research-card-grid a {
  display: inline-block;
  margin-top: 25px;
  color: var(--accent);
  font-size: 10px;
}

.home-application {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 100px;
  padding: 130px var(--page-pad);
  color: var(--ink);
  background: var(--paper);
}

.home-application .section-kicker,
.form-page .section-kicker,
.legal-page .section-kicker {
  color: #4e705f;
}

.home-application > div:first-child > p:last-child {
  max-width: 520px;
  margin: 28px 0 0;
  color: #637068;
  font-size: 14px;
  line-height: 1.7;
}

.application-form {
  color: var(--ink);
}

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

.application-form label {
  display: grid;
  gap: 9px;
}

.application-form label > span {
  color: #526159;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.application-form input,
.application-form select,
.application-form textarea,
.login-form-shell input {
  width: 100%;
  border: 1px solid rgba(6, 16, 12, 0.18);
  border-radius: 0;
  outline: 0;
  background: rgba(255, 255, 255, 0.42);
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  transition: border-color 160ms ease;
}

.application-form input,
.application-form select,
.login-form-shell input {
  height: 50px;
  padding: 0 14px;
}

.application-form textarea {
  min-height: 118px;
  padding: 14px;
  resize: vertical;
}

.application-form input:focus,
.application-form select:focus,
.application-form textarea:focus {
  border-color: #54715e;
}

.form-message {
  grid-column: 1 / -1;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consent-row {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px !important;
  margin-top: 22px;
}

.consent-row input {
  width: 15px;
  height: 15px;
  margin: 1px 0 0;
}

.consent-row > span {
  font-family: var(--font-geist-sans), sans-serif !important;
  font-size: 10px !important;
  line-height: 1.5;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.consent-row a {
  border-bottom: 1px solid #718078;
}

.form-submit,
.application-success button {
  min-width: 225px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  margin-top: 24px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.form-submit span {
  color: var(--accent);
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: wait;
}

.form-error {
  margin: 14px 0 0;
  color: #9f3f36;
  font-size: 11px;
}

.application-success {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 35px;
  border: 1px solid var(--line-dark);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.36);
}

.application-success > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--accent);
}

.application-success h3 {
  margin: 45px 0 12px;
  font-size: 28px;
}

.application-success p {
  max-width: 500px;
  margin: 0;
  color: #637068;
  font-size: 13px;
  line-height: 1.65;
}

.application-success button {
  min-width: auto;
}

.form-page {
  min-height: 920px;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 100px;
  align-items: start;
  padding: 160px var(--page-pad) 110px;
  color: var(--ink);
  background: var(--paper);
}

.form-page h1,
.login-panel h1,
.legal-page h1 {
  margin: 27px 0 0;
  font-size: clamp(54px, 5.5vw, 86px);
  font-weight: 520;
  line-height: 1;
  letter-spacing: -0.06em;
}

.form-page-copy > p {
  max-width: 520px;
  margin: 30px 0 0;
  color: #637068;
  font-size: 15px;
  line-height: 1.7;
}

.form-expectations {
  margin-top: 55px;
  border-top: 1px solid var(--line-dark);
}

.form-expectations > div {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line-dark);
}

.form-expectations span {
  color: #54715e;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
}

.form-expectations p {
  margin: 0;
  color: #536159;
  font-size: 12px;
}

.login-page {
  min-height: 900px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 88px;
  background: var(--ink);
}

.login-visual {
  position: relative;
  min-height: 812px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(rgba(184, 242, 56, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 242, 56, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
}

.login-visual > span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 95px;
  height: 95px;
  display: grid;
  place-items: center;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-geist-mono), monospace;
  font-size: 27px;
  transform: translate(-50%, -50%) rotate(45deg);
}

.login-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px dashed rgba(184, 242, 56, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-large { width: 480px; height: 480px; }
.orbit-small { width: 270px; height: 270px; }

.login-visual > i {
  position: absolute;
  width: 10px;
  height: 10px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}

.login-visual > i:nth-last-child(3) { top: 23%; left: 28%; }
.login-visual > i:nth-last-child(2) { top: 33%; right: 20%; }
.login-visual > i:last-child { bottom: 22%; left: 34%; }

.login-panel {
  align-self: center;
  max-width: 560px;
  padding: 70px;
}

.login-panel > p {
  margin: 24px 0 0;
  color: #8a978f;
  font-size: 14px;
  line-height: 1.65;
}

.login-form-shell {
  display: grid;
  gap: 15px;
  margin-top: 42px;
  padding: 24px;
  border: 1px solid var(--line);
}

.login-form-shell label {
  display: grid;
  gap: 9px;
}

.login-form-shell label span {
  color: #7f8d85;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.login-form-shell input {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--paper);
}

.login-form-shell button {
  height: 48px;
  border: 1px solid #33463b;
  background: #13261c;
  color: #66756d;
  font-size: 11px;
}

.login-access-note {
  margin-top: 24px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.login-access-note span {
  color: var(--accent);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.11em;
}

.login-access-note p {
  margin: 12px 0 0;
  color: #7e8b84;
  font-size: 11px;
  line-height: 1.65;
}

.login-panel .primary-button {
  margin-top: 30px;
}

.research-index-card {
  position: relative;
  z-index: 2;
  align-self: end;
  max-width: 330px;
  margin-bottom: 40px;
  padding: 27px;
  border: 1px solid rgba(184, 242, 56, 0.25);
  background: rgba(7, 20, 14, 0.75);
}

.research-index-card > span,
.research-status {
  color: var(--accent);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.12em;
}

.research-index-card strong {
  display: block;
  margin-top: 70px;
  font-size: 78px;
  font-weight: 510;
  line-height: 1;
}

.research-index-card p {
  margin: 8px 0 0;
  color: #7e8b84;
  font-size: 11px;
}

.research-list {
  padding: 120px var(--page-pad);
  color: var(--ink);
  background: var(--paper);
}

.research-list article {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.8fr auto;
  gap: 55px;
  align-items: start;
  padding: 38px 0;
  border-bottom: 1px solid var(--line-dark);
}

.research-list article > div {
  display: flex;
  gap: 20px;
  color: #5f7668;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.1em;
}

.research-list h2 {
  margin: 0;
  font-size: 25px;
  font-weight: 570;
  letter-spacing: -0.03em;
}

.research-list article > p {
  margin: 0;
  color: #637068;
  font-size: 13px;
  line-height: 1.7;
}

.data-principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 120px var(--page-pad);
  color: var(--ink);
  background: var(--paper);
}

.data-principles article {
  min-height: 350px;
  padding: 28px;
  border-top: 1px solid var(--line-dark);
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.data-principles article:first-child {
  border-left: 1px solid var(--line-dark);
}

.data-principles article > span {
  color: #52705f;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
}

.data-principles h2 {
  margin: 145px 0 14px;
  font-size: 20px;
}

.data-principles p {
  margin: 0;
  color: #647069;
  font-size: 12px;
  line-height: 1.7;
}

.legal-page {
  min-height: 900px;
  padding: 160px var(--page-pad) 110px;
  color: var(--ink);
  background: var(--paper);
}

.legal-copy {
  max-width: 920px;
  margin-top: 75px;
}

.legal-copy section {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 50px;
  padding: 30px 0;
  border-top: 1px solid var(--line-dark);
}

.legal-copy h2 {
  margin: 0;
  font-size: 18px;
}

.legal-copy p {
  margin: 0;
  color: #637068;
  font-size: 13px;
  line-height: 1.75;
}

@media (max-width: 1200px) {
  .site-header nav {
    gap: 18px;
    font-size: 11px;
  }

  .header-actions {
    gap: 15px;
  }

  .header-action {
    font-size: 11px;
  }
}

@media (max-width: 1000px) {
  .site-header nav {
    display: none;
  }

  .platform-map,
  .home-application,
  .form-page {
    grid-template-columns: 1fr;
  }

  .research-card-grid {
    grid-template-columns: 1fr;
  }

  .research-card-grid article {
    min-height: 260px;
  }
}

@media (max-width: 760px) {
  .header-actions {
    gap: 14px;
  }

  .header-login {
    font-size: 11px;
  }

  .header-action::before {
    content: "Заявка";
  }

  .platform-depth,
  .research-preview,
  .home-application {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .platform-depth-head,
  .research-preview-head,
  .home-application,
  .form-page,
  .login-page {
    display: block;
  }

  .platform-depth-head h2,
  .research-preview-head h2,
  .home-application h2 {
    margin-top: 24px;
    font-size: 42px;
  }

  .platform-depth-head > p,
  .research-preview-head .text-link {
    margin-top: 28px;
  }

  .research-preview-head .text-link {
    justify-self: start;
  }

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

  .platform-map > i {
    justify-self: center;
    transform: rotate(90deg);
  }

  .home-application .application-form {
    margin-top: 60px;
  }

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

  .form-message {
    grid-column: auto;
  }

  .form-page {
    padding-top: 135px;
    padding-bottom: 90px;
  }

  .form-page .application-form {
    margin-top: 65px;
  }

  .login-visual {
    min-height: 420px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .orbit-large { width: 330px; height: 330px; }

  .login-panel {
    padding: 70px 20px 90px;
  }

  .research-list {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .research-list article {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .data-principles {
    grid-template-columns: 1fr;
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .data-principles article {
    min-height: 260px;
    border-left: 1px solid var(--line-dark);
    border-top: 0;
  }

  .data-principles article:first-child {
    border-top: 1px solid var(--line-dark);
  }

  .data-principles h2 {
    margin-top: 90px;
  }

  .legal-page {
    padding-top: 135px;
    padding-bottom: 90px;
  }

  .legal-copy section {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

  .footer-columns {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
}
