:root {
  --bg: #05060a;
  --surface: #12141c;
  --text: #f5f7fb;
  --muted: #c7cbda;
  --faint: #8e94a8;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #0a7cff;
  --button: #1565e0;
  --button-text: #ffffff;
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --sans: "Manrope", sans-serif;
  --mono: "Geist Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }
html { background: var(--bg); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--muted);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  text-wrap: pretty;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid #ffffff; outline-offset: 3px; }
::selection { background: var(--button); color: var(--button-text); }

.skip {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 120;
  background: var(--text);
  color: var(--bg);
  padding: 8px 12px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}
.skip:focus { top: 16px; }

.nav-bar {
  position: fixed;
  z-index: 90;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  max-width: calc(100% - 32px);
  height: 56px;
  padding: 8px 8px 8px 16px;
  border-radius: 999px;
  background: rgba(5, 6, 10, 0.78);
  border: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.brand { display: flex; align-items: center; text-decoration: none; }
.brand img { height: 22px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 16px; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
}
.nav-links a:hover { color: var(--text); }
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  position: relative;
  cursor: pointer;
}
.nav-toggle span {
  position: absolute;
  left: 11px;
  width: 18px;
  height: 2px;
  background: #ffffff;
  transition: transform 700ms var(--ease), top 700ms var(--ease);
}
.nav-toggle span:first-child { top: 16px; }
.nav-toggle span:last-child { top: 22px; }
.nav-toggle[aria-expanded="true"] span:first-child { top: 19px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { top: 19px; transform: rotate(-45deg); }

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  align-content: center;
  gap: 24px;
  padding: 96px 24px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(64px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 700ms var(--ease), visibility 700ms var(--ease);
}
.nav-overlay.open { opacity: 1; visibility: visible; pointer-events: auto; }
.nav-overlay a {
  color: var(--text);
  text-decoration: none;
  font-size: 36px;
  line-height: 40px;
  font-weight: 600;
  transform: translateY(48px);
  opacity: 0;
  transition: transform 700ms var(--ease), opacity 700ms var(--ease);
}
.nav-overlay.open a { transform: translateY(0); opacity: 1; }
.nav-overlay.open a:nth-child(1) { transition-delay: 100ms; }
.nav-overlay.open a:nth-child(2) { transition-delay: 150ms; }
.nav-overlay.open a:nth-child(3) { transition-delay: 200ms; }
.nav-overlay.open a:nth-child(4) { transition-delay: 250ms; }
.nav-overlay.open a:nth-child(5) { transition-delay: 300ms; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 16px;
  border-radius: 10px;
  border: 1px solid transparent;
  background: var(--button);
  color: var(--button-text);
  text-decoration: none;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 700ms var(--ease), background 700ms var(--ease);
}
.btn-quiet {
  min-height: 36px;
  padding: 6px 12px;
  border-radius: 7px;
  background: #0d0d0d;
  color: #f5f5f5;
  border-color: rgba(255, 255, 255, 0.16);
  font-size: 14px;
  line-height: 20px;
  box-shadow: none;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(1px); }
.btn[disabled] { opacity: 0.7; cursor: progress; transform: none; }
.btn-small { font-size: 14px; line-height: 20px; padding: 8px 12px; }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.wrap { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.narrow { max-width: 680px; }
h1, h2, h3, p { text-wrap: balance; }
h1, h2, h3 { color: var(--text); font-weight: 600; letter-spacing: -0.03em; margin: 0; }
h1 {
  font-size: 48px;
  line-height: 1;
  background: linear-gradient(90deg, #ffffff, #9b9b9b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
h2 { font-size: 36px; line-height: 40px; }
h3 { font-size: 24px; line-height: 32px; }
.kicker {
  margin: 0 0 16px;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.lede { margin: 24px 0 0; max-width: 680px; font-size: 18px; line-height: 28px; }
.proof { margin: 16px 0 0; color: var(--faint); font-size: 14px; line-height: 20px; }

.hero { position: relative; min-height: 100vh; display: flex; align-items: center; }
.stage { position: absolute; inset: 0; z-index: 0; }
.stage canvas { width: 100%; height: 100%; display: none; }
.poster {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.poster img { width: min(420px, 70vw); height: auto; }
html.js:not(.reduce) .stage canvas { display: block; }
html.js:not(.reduce) .poster { display: none; }
.hero-copy { position: relative; z-index: 1; padding: 96px 0; }

section { padding: 96px 0; }
.section-head { margin-bottom: 48px; }
.section-head p { margin: 16px 0 0; max-width: 680px; }

.tagline { padding-top: 80px; }
.tagline p { position: relative; margin: 0; max-width: 680px; }
.words { font-size: 36px; line-height: 40px; font-weight: 600; letter-spacing: -0.03em; }
.line { display: block; }
[data-word] {
  display: inline-block;
  margin-right: 0.28em;
  color: rgba(245, 247, 251, 0.3);
  transition: color 800ms var(--ease);
}
[data-word].on { color: var(--text); }
.sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.steps, .plans, .work, .services { display: grid; gap: 16px; }
.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
}
.idx {
  font-family: var(--mono);
  font-size: 12px;
  line-height: 16px;
  color: var(--accent);
}
.panel p, .service p, .faq p { margin: 12px 0 0; }
.meta { margin-top: 16px; color: var(--faint); font-size: 14px; line-height: 20px; }
.work a { color: var(--text); font-weight: 600; }

.faq { display: grid; gap: 12px; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 24px;
}
.faq summary {
  cursor: pointer;
  color: var(--text);
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
}
.faq summary:hover { color: #ffffff; }

.contact { display: grid; gap: 32px; }
form { display: grid; gap: 16px; }
label { display: grid; gap: 8px; color: var(--text); font-size: 14px; line-height: 20px; font-weight: 600; }
input, textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 16px;
}
textarea { min-height: 128px; resize: vertical; }
.field-error { min-height: 20px; margin: 0; color: #ffb4a8; font-size: 14px; line-height: 20px; font-weight: 500; }
.decoy { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
[data-form-error]:empty { min-height: 0; }
.success {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
}
.success a { color: var(--text); }
.risk { margin-top: 24px; color: var(--faint); }

footer { padding: 48px 0 96px; }
.foot {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.foot a { color: var(--muted); }
.foot p { margin: 12px 0 0; max-width: 420px; }

@media (min-width: 900px) {
  h1 { font-size: 72px; }
  .words { font-size: 60px; line-height: 1; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .plans { grid-template-columns: repeat(3, 1fr); }
  .contact { grid-template-columns: 0.9fr 1.1fr; align-items: start; }
}
@media (max-width: 899px) {
  .nav-links, .nav-bar .btn { display: none; }
  .nav-toggle { display: block; }
  .hero { align-items: end; }
  .hero-copy { padding-top: 46vh; }
}
.hero-copy { z-index: 2; }

.tools { padding: 36px 16px 8px; text-align: center; }
.tools p {
  margin: 0 0 18px;
  color: var(--faint);
  font-size: 13px;
  line-height: 18px;
}
.tools ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.tools li {
  color: var(--muted);
  font-size: 18px;
  line-height: 24px;
  font-weight: 650;
  letter-spacing: -0.03em;
}
.section-head.center { text-align: center; margin-inline: auto; max-width: 720px; }
.section-head.center .kicker {
  display: inline-block;
  margin-bottom: 20px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.section-head.center h2 { font-size: 48px; line-height: 1.05; }
.section-head .aside {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 28px;
  line-height: 34px;
  font-weight: 500;
  letter-spacing: -0.03em;
}
.offers { display: grid; gap: 16px; }
.offer {
  padding: 12px 12px 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: color-mix(in srgb, var(--surface) 86%, transparent);
  text-align: center;
}
.offer-art {
  display: grid;
  place-items: center;
  height: 168px;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background-image: radial-gradient(circle, color-mix(in srgb, var(--text) 22%, transparent) 1px, transparent 1.2px);
  background-size: 14px 14px;
  background-color: color-mix(in srgb, var(--bg) 72%, var(--surface));
}
.offer-art span {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--button);
  color: var(--button-text);
}
.offer-art svg { width: 26px; height: 26px; }
.offer h3 { font-size: 28px; line-height: 34px; }
.offer p { margin: 12px auto 0; max-width: 280px; color: var(--muted); }
.offer-cta { margin: 28px 0 0; text-align: center; }
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.track {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: slide 28s linear infinite;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
}
.track span { white-space: nowrap; }
@keyframes slide {
  to { transform: translateX(-50%); }
}

.loop {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}
.loop b {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--faint);
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  animation: node 2.4s var(--ease) infinite;
}
.loop b:nth-child(3) { animation-delay: 0.8s; }
.loop b:nth-child(5) { animation-delay: 1.6s; }
.loop i {
  width: 24px;
  height: 1px;
  background: var(--line);
  display: block;
}
@keyframes node {
  0%, 100% { color: var(--faint); border-color: var(--line); }
  35% { color: var(--bg); background: var(--accent); border-color: var(--accent); }
}

html.fx .panel,
html.fx .service,
html.fx .phase,
html.fx .offer {
  opacity: 1;
  transform: translateY(16px);
  transition: transform 700ms var(--ease);
}
html.fx .panel.in,
html.fx .service.in,
html.fx .phase.in,
html.fx .offer.in {
  transform: none;
}

.phases { display: grid; gap: 16px; }
.phase {
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: 28px 20px 24px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background:
    radial-gradient(46% 28% at 50% 0%, color-mix(in srgb, var(--text) 16%, transparent), transparent 72%),
    var(--surface);
  text-align: center;
}
.phase h3 { font-size: 22px; line-height: 28px; }
.phase p { margin: 0; color: var(--muted); font-size: 15px; line-height: 22px; }
.phase .meta { margin-top: 12px; color: var(--faint); font-size: 13px; }
.phase-view {
  position: relative;
  flex: 1;
  min-height: 248px;
  margin: 20px 0 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--bg) 55%, transparent), var(--bg));
  overflow: hidden;
}
.flow {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 10px;
  padding: 18px;
}
.chip {
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(100%, 220px);
  height: 48px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 88%, black);
  color: var(--muted);
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  animation: chip 4.8s var(--ease) infinite;
}
.chip svg { width: 18px; height: 18px; flex: none; }
.chip:nth-child(2) { animation-delay: 1.6s; }
.chip:nth-child(3) { animation-delay: 3.2s; }
@keyframes chip {
  0%, 62%, 100% { color: var(--muted); border-color: var(--line); box-shadow: none; }
  18%, 42% {
    color: var(--text);
    border-color: var(--button);
    box-shadow: inset 3px 0 0 var(--button), 0 10px 28px color-mix(in srgb, var(--button) 42%, transparent);
  }
}
.hub { display: grid; place-items: center; }
.hub-lines {
  position: absolute;
  inset: 12% 8%;
  width: 84%;
  height: 76%;
  stroke: var(--button);
  stroke-width: 1.2;
  opacity: 0.7;
}
.hub-lines path {
  stroke-dasharray: 8 10;
  animation: dash 8s linear infinite;
}
@keyframes dash { to { stroke-dashoffset: -180; } }
.core, .sat {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 80%, black);
  color: var(--muted);
}
.core {
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  color: var(--button);
  border-color: color-mix(in srgb, var(--button) 70%, var(--line));
  box-shadow: 0 0 28px color-mix(in srgb, var(--button) 45%, transparent);
  animation: pulse 2.8s var(--ease) infinite;
}
.core svg, .sat svg { width: 22px; height: 22px; }
.sat { width: 42px; height: 42px; }
.sat svg { width: 16px; height: 16px; }
.s1 { top: 16%; left: 14%; }
.s2 { top: 18%; right: 14%; }
.s3 { bottom: 16%; left: 16%; }
.s4 { bottom: 18%; right: 12%; }
@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.06); }
}
.tune {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 8px;
  align-items: center;
  padding: 16px;
  text-align: left;
}
.tune ol { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }
.tune li {
  width: 22px;
  height: 18px;
  border-radius: 6px;
  color: var(--faint);
  font-family: var(--mono);
  font-size: 11px;
  line-height: 18px;
  text-align: center;
  animation: num 4.2s linear infinite;
}
.tune li:nth-child(1) { animation-delay: 0s; }
.tune li:nth-child(2) { animation-delay: 0.6s; }
.tune li:nth-child(3) { animation-delay: 1.2s; }
.tune li:nth-child(4) { animation-delay: 1.8s; }
.tune li:nth-child(5) { animation-delay: 2.4s; }
.tune li:nth-child(6) { animation-delay: 3s; }
.tune li:nth-child(7) { animation-delay: 3.6s; }
@keyframes num {
  0%, 78%, 100% { color: var(--faint); background: transparent; }
  8%, 22% { color: var(--button-text, #fff); background: var(--button); }
}
.tune pre {
  margin: 0;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 18px;
  color: var(--muted);
}
.tune pre span { display: block; }
.tune pre span:nth-child(3) { color: var(--button); }
@media (min-width: 900px) {
  .phases { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .offers { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .section-head.center h2 { font-size: 64px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
}
