:root {
  --ink: #06080a;
  --night: #0c1117;
  --steel: #171f28;
  --panel: #f4f6f5;
  --paper: #fbfaf6;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(6, 8, 10, 0.14);
  --cyan: #2bd6e5;
  --cyan-soft: #9cecf2;
  --amber: #d89b5f;
  --green: #6c8b76;
  --red: #d66d60;
  --muted: rgba(6, 8, 10, 0.66);
  --white-soft: rgba(255, 255, 255, 0.78);
  --shadow: 0 30px 90px rgba(6, 8, 10, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img {
  display: block;
  max-width: 100%;
}

figure {
  margin: 0;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 860px;
  font-size: clamp(3.2rem, 6.2vw, 6.8rem);
  line-height: 0.9;
  font-weight: 900;
}

h2 {
  margin: 0;
  font-size: clamp(2.1rem, 3.7vw, 4.3rem);
  line-height: 0.98;
  font-weight: 900;
}

h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.2;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  min-height: 72px;
  padding: 0 44px;
  color: white;
  background: linear-gradient(180deg, rgba(6, 8, 10, 0.92), rgba(6, 8, 10, 0.58));
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  font-size: 1.36rem;
  font-weight: 900;
}

.brand-mark {
  color: var(--cyan);
}

.brand-name {
  color: white;
}

.top-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 800;
}

.top-nav a {
  position: relative;
  padding: 12px 0;
}

.top-nav a::after {
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 5px;
  height: 2px;
  content: "";
  background: var(--cyan);
  transition: right 160ms ease;
}

.top-nav a:hover,
.top-nav a:focus-visible {
  color: white;
}

.top-nav a:hover::after,
.top-nav a:focus-visible::after {
  right: 0;
}

.top-nav .nav-cta {
  min-height: 38px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  color: #041014;
  border-radius: 999px;
  background: var(--cyan);
}

.top-nav .nav-cta::after {
  display: none;
}

.top-nav .nav-cta:hover,
.top-nav .nav-cta:focus-visible {
  color: #041014;
  background: #77e9ef;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: white;
  background: var(--ink);
}

.hero-media,
.hero-overlay,
.hero-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 8, 10, 0.96) 0%, rgba(6, 8, 10, 0.78) 42%, rgba(6, 8, 10, 0.28) 74%, rgba(6, 8, 10, 0.08) 100%),
    linear-gradient(0deg, rgba(6, 8, 10, 0.64), rgba(6, 8, 10, 0.08));
}

.hero-grid {
  opacity: 0.45;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(90deg, black, transparent 72%);
}

.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(420px, 720px) minmax(240px, 320px);
  gap: 82px;
  align-items: end;
  width: min(1120px, calc(100% - 56px));
  margin-left: max(28px, calc((100vw - 1220px) / 2));
  padding: 168px 0 118px;
}

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

.hero h1 {
  max-width: 680px;
  font-size: clamp(2.9rem, 4.7vw, 5.1rem);
  line-height: 0.98;
}

.breadcrumb,
.section-kicker {
  margin: 0 0 18px;
  color: var(--cyan-soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 610px;
  margin: 24px 0 0;
  color: var(--white-soft);
  font-size: 1.08rem;
  line-height: 1.72;
}

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

.hero-focus {
  display: grid;
  align-self: end;
  margin-bottom: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-focus span {
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-focus span:first-child {
  border-top: 0;
}

.button,
.project-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.button-primary,
.project-form button {
  color: #041014;
  background: var(--cyan);
}

.button-primary:hover,
.project-form button:hover {
  background: #77e9ef;
}

.button-secondary {
  color: white;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.14);
}

.ticker {
  overflow: hidden;
  color: white;
  background: var(--night);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ticker-inner {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: min(1220px, calc(100% - 56px));
  margin: 0 auto;
}

.ticker span {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.ticker span:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.visual-story {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  padding: 112px max(28px, calc((100vw - 1220px) / 2));
  color: white;
  background:
    linear-gradient(120deg, #06080a 0%, #0f171f 48%, #06080a 100%);
}

.story-card {
  position: relative;
  min-height: 286px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: var(--night);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3);
}

.story-card-large {
  grid-column: span 7;
  grid-row: span 2;
  min-height: 590px;
  clip-path: polygon(0 0, 100% 0, 93% 100%, 0% 100%);
}

.story-card:not(.story-card-large) {
  grid-column: span 5;
}

.story-card img,
.cyber-panorama img,
.adoption-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-card::after,
.cyber-panorama::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(0deg, rgba(6, 8, 10, 0.92), transparent 58%),
    linear-gradient(90deg, rgba(6, 8, 10, 0.32), transparent 56%);
}

.story-card figcaption,
.cyber-panorama figcaption {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 24px;
}

.story-card span,
.cyber-panorama span {
  display: block;
  margin-bottom: 10px;
  color: var(--cyan-soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.story-card strong,
.cyber-panorama strong {
  display: block;
  max-width: 560px;
  color: white;
  font-size: 1.45rem;
  line-height: 1.12;
}

.system-section {
  padding: 110px max(28px, calc((100vw - 1220px) / 2));
  scroll-margin-top: 96px;
  background:
    linear-gradient(90deg, rgba(6, 8, 10, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(6, 8, 10, 0.04) 1px, transparent 1px),
    var(--paper);
  background-size: 72px 72px, 72px 72px, auto;
}

.section-title {
  max-width: 1020px;
  margin-bottom: 58px;
}

.section-title h2 {
  color: var(--ink);
}

.system-title {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(280px, 0.48fr);
  gap: 42px;
  align-items: end;
  max-width: 1120px;
}

.system-title > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.system-map {
  display: grid;
  grid-template-columns: minmax(560px, 1fr) minmax(340px, 0.58fr);
  gap: 56px;
  align-items: center;
}

.system-graph {
  position: relative;
  min-height: 560px;
  isolation: isolate;
}

.system-graph::before {
  position: absolute;
  inset: 44px 0;
  content: "";
  border-top: 1px solid rgba(6, 8, 10, 0.11);
  border-bottom: 1px solid rgba(6, 8, 10, 0.11);
  background:
    linear-gradient(90deg, rgba(6, 8, 10, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(6, 8, 10, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.88;
}

.system-wires {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.wire {
  fill: none;
  stroke: rgba(6, 8, 10, 0.22);
  stroke-linecap: round;
  stroke-width: 2;
}

.wire-software {
  stroke: rgba(43, 214, 229, 0.58);
}

.wire-ai {
  stroke: rgba(216, 155, 95, 0.58);
}

.wire-cyber {
  stroke: rgba(214, 109, 96, 0.5);
}

.wire-adoption {
  stroke: rgba(108, 139, 118, 0.58);
}

.wire-ring {
  stroke: rgba(6, 8, 10, 0.14);
  stroke-dasharray: 8 14;
}

.graph-core,
.graph-node,
.graph-tag {
  position: absolute;
  z-index: 2;
}

.graph-core {
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 188px;
  aspect-ratio: 1;
  padding: 32px;
  color: white;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(6, 8, 10, 0.98), rgba(23, 31, 40, 0.96));
  box-shadow: 0 26px 70px rgba(6, 8, 10, 0.24);
  transform: translate(-50%, -50%);
}

.graph-core::before,
.graph-core::after {
  position: absolute;
  inset: -18px;
  content: "";
  border: 1px solid rgba(43, 214, 229, 0.28);
  border-radius: inherit;
}

.graph-core::after {
  inset: -34px;
  border-color: rgba(6, 8, 10, 0.11);
}

.graph-core span,
.graph-node span,
.system-signals span {
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.graph-core span {
  color: var(--cyan-soft);
}

.graph-core strong {
  max-width: 120px;
  font-size: 1.12rem;
  line-height: 1.05;
}

.graph-node {
  display: grid;
  place-items: center;
  width: 132px;
  aspect-ratio: 1;
  padding: 22px;
  color: var(--ink);
  text-align: center;
  border: 1px solid rgba(6, 8, 10, 0.16);
  border-radius: 50%;
  background: rgba(251, 250, 246, 0.88);
}

.graph-node span {
  color: var(--cyan);
}

.graph-node strong {
  font-size: 1rem;
  line-height: 1.1;
}

.graph-node-software {
  left: 2%;
  top: 8%;
}

.graph-node-ai {
  right: 0;
  top: 6%;
}

.graph-node-cyber {
  right: 1%;
  bottom: 7%;
}

.graph-node-adoption {
  left: 0;
  bottom: 9%;
}

.graph-tag {
  color: rgba(6, 8, 10, 0.58);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.graph-tag-data {
  left: 34%;
  top: 20%;
}

.graph-tag-flow {
  right: 22%;
  top: 32%;
}

.graph-tag-risk {
  right: 24%;
  bottom: 28%;
}

.graph-tag-users {
  left: 24%;
  bottom: 26%;
}

.system-signals {
  display: grid;
  gap: 0;
  border-left: 1px solid rgba(6, 8, 10, 0.16);
}

.system-signals article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 10px 18px;
  padding: 22px 0 22px 26px;
  border-bottom: 1px solid rgba(6, 8, 10, 0.12);
}

.system-signals article:first-child {
  border-top: 1px solid rgba(6, 8, 10, 0.12);
}

.system-signals span {
  color: var(--cyan);
}

.system-signals h3 {
  color: var(--ink);
}

.system-signals p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.58;
}

.command-section {
  display: grid;
  grid-template-columns: minmax(480px, 0.94fr) minmax(520px, 1.06fr);
  gap: 44px;
  align-items: center;
  padding: 112px max(28px, calc((100vw - 1220px) / 2));
  scroll-margin-top: 96px;
  color: white;
  background:
    linear-gradient(115deg, rgba(6, 8, 10, 0.98), rgba(16, 26, 34, 0.96)),
    var(--ink);
}

.command-copy {
  max-width: 620px;
}

.command-copy h2 {
  max-width: 620px;
  font-size: clamp(2.35rem, 3vw, 3.7rem);
  line-height: 1.02;
  overflow-wrap: normal;
  text-wrap: balance;
}

.command-copy p:not(.section-kicker),
.method-intro p,
.contact-copy p {
  color: var(--white-soft);
  line-height: 1.72;
}

.growth-board {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  isolation: isolate;
}

.growth-board::before {
  position: absolute;
  inset: 20px 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 52% 46%, black, transparent 74%);
  opacity: 0.9;
}

.growth-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.growth-route {
  fill: none;
  stroke-linecap: round;
  stroke-width: 3;
}

.route-main {
  stroke: rgba(43, 214, 229, 0.74);
}

.route-loop {
  stroke: rgba(216, 155, 95, 0.46);
  stroke-dasharray: 8 13;
}

.route-team {
  stroke: rgba(108, 139, 118, 0.68);
}

.growth-center {
  position: absolute;
  left: 50%;
  top: 48%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 190px;
  aspect-ratio: 1;
  padding: 28px;
  color: var(--ink);
  text-align: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 18%, rgba(43, 214, 229, 0.5), transparent 35%),
    linear-gradient(135deg, #fbfaf6, #d9eef0);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.26);
  transform: translate(-50%, -50%);
}

.growth-center::before,
.growth-center::after {
  position: absolute;
  content: "";
  border-radius: inherit;
}

.growth-center::before {
  inset: -22px;
  border: 1px solid rgba(43, 214, 229, 0.34);
}

.growth-center::after {
  inset: -54px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
}

.growth-center span,
.growth-point span,
.growth-pipeline span {
  display: block;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.growth-center span {
  color: var(--green);
}

.growth-center strong {
  font-size: 1rem;
  line-height: 1.12;
}

.growth-point {
  position: absolute;
  z-index: 2;
  max-width: 220px;
  padding-left: 26px;
}

.growth-point::before {
  position: absolute;
  left: 0;
  top: 5px;
  width: 11px;
  height: 11px;
  content: "";
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 9px rgba(43, 214, 229, 0.12);
}

.growth-point::after {
  position: absolute;
  left: 5px;
  top: 24px;
  width: 1px;
  height: 46px;
  content: "";
  background: linear-gradient(180deg, rgba(43, 214, 229, 0.5), transparent);
}

.growth-point span {
  margin-bottom: 8px;
  color: var(--cyan-soft);
}

.growth-point p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.46;
}

.point-offer {
  left: 0;
  top: 12%;
}

.point-client {
  right: 2%;
  top: 8%;
}

.point-operation {
  right: 0;
  bottom: 20%;
}

.point-data {
  left: 8%;
  bottom: 15%;
}

.point-team {
  left: 34%;
  top: 6%;
}

.growth-pipeline {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.growth-pipeline span {
  padding: 18px 14px;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.growth-pipeline span:last-child {
  border-right: 0;
}

.cyber-section {
  padding: 82px max(28px, calc((100vw - 1220px) / 2)) 88px;
  scroll-margin-top: 96px;
  color: white;
  background:
    linear-gradient(90deg, rgba(43, 214, 229, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(43, 214, 229, 0.055) 1px, transparent 1px),
    #080b0f;
  background-size: 80px 80px, 80px 80px, auto;
}

.section-title-dark h2 {
  color: white;
}

.cyber-panorama {
  position: relative;
  min-height: 300px;
  margin-bottom: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: var(--night);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.cyber-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
}

.cyber-grid article {
  min-height: 190px;
  padding: 24px 26px;
  background: rgba(255, 255, 255, 0.06);
}

.cyber-grid article:nth-child(2) {
  background: rgba(43, 214, 229, 0.1);
}

.cyber-grid span,
.method-path span {
  display: block;
  color: var(--cyan-soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cyber-grid span {
  margin-bottom: 34px;
}

.cyber-grid p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.52;
}

.adoption-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(620px, 1.28fr);
  gap: 56px;
  align-items: start;
  padding: 112px max(28px, calc((100vw - 1220px) / 2));
  scroll-margin-top: 96px;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 18% 18%, rgba(43, 214, 229, 0.16), transparent 30%),
    radial-gradient(circle at 82% 40%, rgba(216, 155, 95, 0.12), transparent 34%),
    linear-gradient(120deg, rgba(6, 8, 10, 0.98), rgba(15, 24, 32, 0.96)),
    var(--ink);
}

.adoption-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, black, transparent 84%);
  opacity: 0.72;
}

.adoption-title {
  position: sticky;
  z-index: 2;
  align-self: start;
  top: 100px;
}

.adoption-title h2 {
  color: white;
}

.adoption-title p:not(.section-kicker) {
  max-width: 430px;
  margin: 24px 0 0;
  color: var(--white-soft);
  line-height: 1.72;
}

.adoption-lab {
  position: relative;
  z-index: 2;
  min-height: 660px;
}

.adoption-photo {
  position: absolute;
  inset: 34px 0 34px 34%;
  overflow: hidden;
  background: var(--night);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
}

.adoption-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(6, 8, 10, 0.86), rgba(6, 8, 10, 0.22) 54%, rgba(6, 8, 10, 0.76)),
    linear-gradient(0deg, rgba(6, 8, 10, 0.74), transparent 52%);
}

.adoption-photo figcaption {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 26px;
  color: var(--cyan-soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.adoption-orbit {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
  min-height: 620px;
}

.adoption-trace {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.adoption-loop,
.adoption-thread {
  fill: none;
  stroke-linecap: round;
}

.adoption-loop {
  stroke: rgba(255, 255, 255, 0.22);
  stroke-dasharray: 9 15;
  stroke-width: 2;
}

.adoption-thread {
  stroke: rgba(43, 214, 229, 0.7);
  stroke-width: 3;
}

.adoption-core {
  position: absolute;
  left: 42%;
  top: 46%;
  display: grid;
  place-items: center;
  width: 190px;
  aspect-ratio: 1;
  padding: 30px;
  text-align: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 20%, rgba(43, 214, 229, 0.36), transparent 34%),
    linear-gradient(135deg, rgba(251, 250, 246, 0.96), rgba(210, 228, 232, 0.92));
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.32);
  transform: translate(-50%, -50%);
}

.adoption-core::before,
.adoption-core::after {
  position: absolute;
  inset: -20px;
  content: "";
  border: 1px solid rgba(43, 214, 229, 0.34);
  border-radius: inherit;
}

.adoption-core::after {
  inset: -42px;
  border-color: rgba(255, 255, 255, 0.14);
}

.adoption-core span,
.adoption-node span,
.adoption-readout span {
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.adoption-core span {
  color: var(--green);
}

.adoption-core strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.12;
}

.adoption-node {
  position: absolute;
  max-width: 250px;
  padding-left: 28px;
}

.adoption-node::before {
  position: absolute;
  left: 0;
  top: 5px;
  width: 11px;
  height: 11px;
  content: "";
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 9px rgba(43, 214, 229, 0.12);
}

.adoption-node::after {
  position: absolute;
  left: 5px;
  top: 22px;
  width: 1px;
  height: 54px;
  content: "";
  background: linear-gradient(180deg, rgba(43, 214, 229, 0.5), transparent);
}

.adoption-node span {
  margin-bottom: 10px;
  color: var(--cyan-soft);
}

.adoption-node p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.55;
}

.adoption-node-listen {
  left: 2%;
  top: 9%;
}

.adoption-node-translate {
  right: 0;
  top: 20%;
}

.adoption-node-train {
  right: 2%;
  bottom: 14%;
}

.adoption-node-measure {
  left: 4%;
  bottom: 18%;
}

.adoption-readout {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 10%;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.adoption-readout span {
  padding: 18px 20px;
  color: rgba(255, 255, 255, 0.72);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.adoption-readout span:last-child {
  border-right: 0;
}

.method-section {
  position: relative;
  padding: 96px max(28px, calc((100vw - 1220px) / 2)) 128px;
  scroll-margin-top: 96px;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 24% 22%, rgba(43, 214, 229, 0.13), transparent 30%),
    radial-gradient(circle at 78% 18%, rgba(216, 155, 95, 0.12), transparent 32%),
    linear-gradient(120deg, rgba(6, 8, 10, 0.98), rgba(15, 21, 27, 0.98)),
    var(--ink);
}

.method-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(circle at 50% 44%, black, transparent 78%);
  opacity: 0.7;
}

.method-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(520px, 1fr) minmax(280px, 0.5fr);
  gap: 34px 72px;
  align-items: end;
  margin-bottom: 62px;
}

.method-intro .section-kicker,
.method-intro h2 {
  grid-column: 1;
}

.method-intro h2 {
  max-width: 760px;
}

.method-intro p:not(.section-kicker) {
  grid-column: 2;
  grid-row: 2;
  max-width: 420px;
  margin: 0 0 10px;
}

.method-path {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  min-height: 340px;
  padding: 92px 0 28px;
}

.method-route {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.method-route-base,
.method-route-glow {
  fill: none;
  stroke-linecap: round;
}

.method-route-base {
  stroke: rgba(255, 255, 255, 0.18);
  stroke-width: 1;
  stroke-dasharray: 8 14;
}

.method-route-glow {
  stroke: rgba(43, 214, 229, 0.74);
  stroke-width: 3;
}

.method-path article {
  position: relative;
  z-index: 1;
  min-height: 0;
  padding: 0 22px 0 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
}

.method-path article::before {
  position: absolute;
  top: -68px;
  left: 0;
  display: grid;
  place-items: center;
  width: 38px;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(43, 214, 229, 0.66);
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--cyan) 0 32%, rgba(43, 214, 229, 0.22) 34% 100%);
  box-shadow:
    0 0 0 10px rgba(43, 214, 229, 0.08),
    0 18px 42px rgba(43, 214, 229, 0.12);
}

.method-path article::after {
  position: absolute;
  left: 18px;
  top: -24px;
  width: 1px;
  height: 42px;
  content: "";
  background: linear-gradient(180deg, rgba(43, 214, 229, 0.68), rgba(255, 255, 255, 0.14));
}

.method-path article:nth-child(3),
.method-path article:nth-child(5) {
  transform: translateY(68px);
}

.method-path article:nth-child(4),
.method-path article:nth-child(6) {
  transform: translateY(28px);
}

.method-path span {
  color: var(--amber);
  margin-bottom: 26px;
}

.method-path p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
  line-height: 1.55;
}

.method-path strong {
  display: inline-block;
  width: min-content;
  min-width: 142px;
  margin-top: 18px;
  padding-top: 14px;
  color: var(--cyan-soft);
  border-top: 1px solid rgba(43, 214, 229, 0.34);
  font-size: 0.78rem;
  line-height: 1.35;
  text-transform: uppercase;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(360px, 1fr);
  gap: 56px;
  align-items: start;
  padding: 104px max(28px, calc((100vw - 1220px) / 2)) 118px;
  scroll-margin-top: 96px;
  color: white;
  background: #090c10;
}

.contact-copy h2 {
  max-width: 620px;
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 3vw, 3.7rem);
  line-height: 1.04;
  overflow-wrap: normal;
  text-wrap: balance;
}

.contact-copy p:not(.section-kicker) {
  max-width: 560px;
}

.project-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    rgba(255, 255, 255, 0.055);
  background-size: 34px 34px, 34px 34px, auto;
}

.contact-actions {
  display: grid;
  gap: 18px;
  scroll-margin-top: 96px;
}

.quick-help {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.quick-help h3 {
  max-width: 520px;
  margin-bottom: 18px;
  font-size: 1.55rem;
  line-height: 1.05;
}

.quick-help details {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.quick-help summary {
  cursor: pointer;
  padding: 16px 0;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 900;
}

.quick-help summary::marker {
  color: var(--cyan);
}

.quick-help details p {
  margin: -4px 0 16px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
}

.project-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 800;
}

.project-form input,
.project-form select,
.project-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: white;
  font: inherit;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
}

.project-form textarea {
  min-height: 140px;
  resize: vertical;
}

.project-form input::placeholder,
.project-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.project-form select option {
  color: var(--ink);
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
  line-height: 1.5;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px 28px;
  }

  .top-nav {
    justify-self: start;
    flex-wrap: wrap;
    gap: 8px 14px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 188px;
  }

  .hero-focus {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 28px;
    max-width: 620px;
    margin-bottom: 0;
  }

  .hero-focus span:nth-child(2) {
    border-top: 0;
  }

  .system-map,
  .system-title,
  .command-section,
  .adoption-section,
  .method-intro,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .adoption-title {
    position: static;
  }

  .system-graph {
    width: min(760px, 100%);
    margin: 0 auto;
  }

  .system-signals {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid rgba(6, 8, 10, 0.12);
    border-left: 0;
  }

  .system-signals article {
    padding: 22px 18px;
    border-right: 1px solid rgba(6, 8, 10, 0.12);
  }

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

  .method-path {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 70px;
  }

  .method-intro .section-kicker,
  .method-intro h2,
  .method-intro p:not(.section-kicker) {
    grid-column: 1;
    grid-row: auto;
  }

  .method-intro p:not(.section-kicker) {
    max-width: 640px;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    padding: 18px 20px;
  }

  .top-nav {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    gap: 8px 14px;
    font-size: 0.78rem;
  }

  .top-nav .nav-cta {
    min-height: 34px;
    padding: 0 12px;
  }

  .hero-content {
    width: calc(100% - 40px);
    gap: 28px;
    margin-left: 20px;
    padding: 72px 0 42px;
  }

  .hero-media {
    object-position: 66% center;
  }

  h1 {
    font-size: 3.12rem;
  }

  .hero h1 {
    font-size: 2.72rem;
    line-height: 1;
  }

  h2 {
    font-size: 2.04rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-focus {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .hero-focus span:nth-child(2) {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .ticker-inner {
    grid-template-columns: 1fr;
    width: calc(100% - 40px);
  }

  .system-section,
  .visual-story,
  .command-section,
  .cyber-section,
  .adoption-section,
  .method-section,
  .contact-section {
    padding: 66px 20px;
  }

  .section-title {
    margin-bottom: 36px;
  }

  .system-title {
    gap: 18px;
  }

  .system-title > p {
    margin-bottom: 0;
  }

  .visual-story {
    grid-template-columns: 1fr;
  }

  .story-card,
  .story-card-large,
  .story-card:not(.story-card-large) {
    grid-column: 1;
    min-height: 340px;
    clip-path: none;
  }

  .story-card-large {
    min-height: 430px;
  }

  .cyber-panorama {
    min-height: 240px;
  }

  .adoption-lab {
    min-height: 560px;
  }

  .adoption-photo {
    inset: 42px 0 72px 24%;
  }

  .adoption-orbit {
    min-height: 520px;
  }

  .adoption-core {
    width: 142px;
    padding: 22px;
  }

  .adoption-core strong {
    font-size: 0.88rem;
  }

  .adoption-node {
    max-width: 188px;
    padding-left: 20px;
  }

  .adoption-node p {
    font-size: 0.9rem;
  }

  .adoption-node-listen {
    left: 0;
    top: 5%;
  }

  .adoption-node-translate {
    right: 0;
    top: 13%;
  }

  .adoption-node-train {
    right: 0;
    bottom: 17%;
  }

  .adoption-node-measure {
    left: 0;
    bottom: 15%;
  }

  .adoption-readout {
    right: 0;
  }

  .system-map {
    gap: 34px;
  }

  .system-graph {
    min-height: 430px;
  }

  .system-graph::before {
    inset: 24px 0;
    background-size: 44px 44px;
  }

  .graph-core {
    width: 124px;
    padding: 20px;
  }

  .graph-core strong {
    font-size: 0.96rem;
  }

  .graph-node {
    width: 82px;
    padding: 12px;
  }

  .graph-node strong {
    font-size: 0.82rem;
  }

  .graph-node-software {
    left: 0;
    top: 5%;
  }

  .graph-node-ai {
    right: 0;
    top: 7%;
  }

  .graph-node-cyber {
    right: 0;
    bottom: 8%;
  }

  .graph-node-adoption {
    left: 0;
    bottom: 10%;
  }

  .graph-tag {
    display: none;
  }

  .system-signals {
    grid-template-columns: 1fr;
  }

  .system-signals article {
    grid-template-columns: 38px 1fr;
    padding: 18px 0;
    border-right: 0;
  }

  .growth-board {
    min-height: 690px;
  }

  .growth-center {
    width: 136px;
    padding: 20px;
  }

  .growth-center strong {
    font-size: 0.86rem;
  }

  .growth-point {
    max-width: 146px;
    padding-left: 18px;
  }

  .growth-point span,
  .growth-pipeline span {
    font-size: 0.68rem;
  }

  .growth-point p {
    font-size: 0.78rem;
    line-height: 1.4;
  }

  .growth-point::after {
    height: 34px;
  }

  .point-offer {
    left: 0;
    top: 4%;
  }

  .point-client {
    right: 0;
    top: 8%;
  }

  .point-team {
    left: 31%;
    top: 27%;
  }

  .point-data {
    left: 0;
    bottom: 22%;
  }

  .point-operation {
    right: 0;
    bottom: 23%;
  }

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

  .growth-pipeline span {
    padding: 10px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .cyber-grid article,
  .method-path article {
    min-height: auto;
  }

  .cyber-grid article {
    padding: 22px;
  }

  .cyber-grid span {
    margin-bottom: 18px;
  }

  .adoption-lab {
    min-height: auto;
  }

  .adoption-photo {
    position: relative;
    inset: auto;
    min-height: 280px;
    margin: 0 0 30px;
    clip-path: polygon(0 0, 100% 0, 100% 86%, 12% 100%, 0 86%);
  }

  .adoption-orbit {
    min-height: 570px;
  }

  .adoption-trace {
    transform: scale(1.08);
    transform-origin: center;
  }

  .adoption-core {
    left: 50%;
    top: 48%;
    width: 132px;
  }

  .adoption-node {
    max-width: 152px;
    padding-left: 18px;
  }

  .adoption-node span,
  .adoption-readout span {
    font-size: 0.7rem;
  }

  .adoption-node p {
    font-size: 0.82rem;
    line-height: 1.42;
  }

  .adoption-node::after {
    height: 36px;
  }

  .adoption-node-listen {
    left: 0;
    top: 2%;
  }

  .adoption-node-translate {
    right: 0;
    top: 10%;
  }

  .adoption-node-train {
    right: 0;
    bottom: 10%;
  }

  .adoption-node-measure {
    left: 0;
    bottom: 8%;
  }

  .adoption-readout {
    position: relative;
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

  .adoption-readout span {
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .method-path {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: auto;
    padding: 0 0 0 34px;
  }

  .method-route {
    display: none;
  }

  .method-path::before {
    position: absolute;
    left: 10px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 1px;
    height: auto;
    content: "";
    background: linear-gradient(180deg, var(--cyan), rgba(255, 255, 255, 0.18), var(--amber));
  }

  .method-path article,
  .method-path article:nth-child(3),
  .method-path article:nth-child(4),
  .method-path article:nth-child(5),
  .method-path article:nth-child(6) {
    min-height: auto;
    padding: 20px 0 20px 18px;
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.16);
    transform: none;
  }

  .method-path article::before {
    left: -42px;
    top: 22px;
    width: 24px;
  }

  .method-path article::after {
    display: none;
  }

  .method-path strong {
    margin-top: 14px;
  }
}
