:root {
  --bg: #080808;
  --surface: #111111;
  --surface-2: #151515;
  --border: #1e1e1e;
  --accent: #c8f04c;
  --text: #ffffff;
  --muted: #8b8b8b;
  --dim: #555555;
  --container: min(1280px, calc(100vw - 48px));
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  --body: "Manrope", Inter, system-ui, sans-serif;
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

html.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--body);
  background:
    radial-gradient(circle at 70% 10%, rgba(200, 240, 76, 0.08), transparent 28rem),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    var(--bg);
  background-size: auto, 48px 48px, 48px 48px, auto;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

:where(button, a, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.service-row:focus-visible {
  outline-offset: -1px;
}

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

[id] {
  scroll-margin-top: 104px;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.page-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
}

.mono-label {
  margin: 0;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.5;
}

.section-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
}

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

.preloader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 48%, rgba(200, 240, 76, 0.12), transparent 18rem),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    #050505;
  background-size: auto, 44px 44px, 44px 44px, auto;
  overflow: hidden;
  pointer-events: none;
}

.preloader.is-hidden {
  visibility: hidden;
}

.preloader__curtain {
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
  background: #050505;
  transition: transform 760ms var(--ease);
}

.preloader__curtain--top {
  top: 0;
}

.preloader__curtain--bottom {
  bottom: 0;
}

.preloader.is-leaving .preloader__curtain--top {
  transform: translateY(-100%);
}

.preloader.is-leaving .preloader__curtain--bottom {
  transform: translateY(100%);
}

.preloader__scene {
  position: relative;
  z-index: 2;
  width: min(360px, calc(100vw - 40px));
  display: grid;
  justify-items: center;
  gap: 34px;
  transition: opacity 360ms ease, transform 360ms var(--ease), filter 360ms ease;
}

.preloader.is-leaving .preloader__scene {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(-12px) scale(0.98);
}

.loader-bot {
  position: relative;
  width: 210px;
  height: 232px;
  display: grid;
  justify-items: center;
  align-content: start;
  animation: loader-bot-float 1700ms var(--ease) infinite;
}

.loader-bot__orb {
  position: absolute;
  width: 8px;
  height: 8px;
  border: 1px solid var(--accent);
  background: #050505;
  box-shadow: 0 0 16px rgba(200, 240, 76, 0.75);
}

.loader-bot__orb--one {
  top: 50px;
  left: 10px;
  animation: loader-orb 1700ms ease-in-out infinite;
}

.loader-bot__orb--two {
  top: 118px;
  right: 4px;
  animation: loader-orb 1900ms ease-in-out infinite reverse;
}

.loader-bot__orb--three {
  left: 46px;
  bottom: 38px;
  animation: loader-orb 2100ms ease-in-out infinite;
}

.loader-bot__antenna {
  position: relative;
  width: 56px;
  height: 38px;
  margin-top: 6px;
}

.loader-bot__antenna::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 1px;
  height: 30px;
  background: var(--accent);
  transform: translateX(-50%);
}

.loader-bot__antenna span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 13px;
  height: 13px;
  border: 1px solid var(--accent);
  background: var(--accent);
  box-shadow: 0 0 28px rgba(200, 240, 76, 0.86);
  transform: translateX(-50%) rotate(45deg);
  animation: loader-pulse 780ms ease-in-out infinite;
}

.loader-bot__head {
  position: relative;
  width: 176px;
  height: 132px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(200, 240, 76, 0.78);
  background:
    linear-gradient(135deg, rgba(200, 240, 76, 0.16), transparent 52%),
    linear-gradient(180deg, #111 0%, #090909 100%);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.54), inset 0 0 42px rgba(200, 240, 76, 0.09);
}

.loader-bot__head::before,
.loader-bot__head::after {
  content: "";
  position: absolute;
  top: 42px;
  width: 16px;
  height: 46px;
  border: 1px solid rgba(200, 240, 76, 0.44);
  background: #080808;
}

.loader-bot__head::before {
  left: -18px;
}

.loader-bot__head::after {
  right: -18px;
}

.loader-bot__visor {
  position: relative;
  width: 104px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border: 1px solid rgba(200, 240, 76, 0.22);
  background: rgba(200, 240, 76, 0.035);
}

.loader-bot__visor::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0 45%, rgba(200, 240, 76, 0.12) 46% 54%, transparent 55%);
  animation: loader-scan 1100ms linear infinite;
}

.loader-bot__visor span {
  width: 24px;
  height: 24px;
  background: var(--accent);
  box-shadow: 0 0 26px rgba(200, 240, 76, 0.8);
  animation: loader-eye 1700ms steps(1, end) infinite;
}

.preloader.is-complete .loader-bot__visor span:last-child {
  animation: loader-wink 360ms steps(1, end) 1;
}

.loader-bot__mouth {
  position: absolute;
  bottom: 22px;
  left: 50%;
  width: 36px;
  height: 8px;
  border-bottom: 2px solid rgba(200, 240, 76, 0.72);
  border-radius: 0 0 18px 18px;
  transform: translateX(-50%);
}

.loader-bot__body {
  width: 122px;
  height: 38px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(200, 240, 76, 0.42);
  border-top: 0;
  background: rgba(8, 8, 8, 0.92);
}

.loader-bot__body span {
  border: 1px solid rgba(200, 240, 76, 0.32);
  background: rgba(200, 240, 76, 0.08);
}

.preloader__bar {
  width: min(100%, 320px);
  height: 8px;
  padding: 2px;
  border: 1px solid rgba(200, 240, 76, 0.4);
  background: rgba(255, 255, 255, 0.025);
}

.preloader__bar span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(200, 240, 76, 0.72);
  transition: width 90ms linear;
}

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

@keyframes loader-orb {
  50% {
    transform: translateY(-12px) scale(1.25);
  }
}

@keyframes loader-pulse {
  50% {
    transform: translateX(-50%) rotate(45deg) scale(1.25);
  }
}

@keyframes loader-scan {
  to {
    transform: translateY(36px);
  }
}

@keyframes loader-eye {
  0%,
  42% {
    height: 24px;
  }
  43%,
  48% {
    height: 4px;
  }
  49%,
  100% {
    height: 24px;
  }
}

@keyframes loader-wink {
  0%,
  100% {
    height: 24px;
  }
  35%,
  64% {
    height: 4px;
  }
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.cursor-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(200, 240, 76, 0.5);
  border-radius: 999px;
  transition: width 200ms ease, height 200ms ease, border-color 200ms ease;
}

.cursor-ring.is-active {
  width: 74px;
  height: 74px;
  border-color: rgba(200, 240, 76, 0.9);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 84px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 0 max(24px, calc((100vw - 1280px) / 2));
  transition: background 240ms ease, border-color 240ms ease, backdrop-filter 240ms ease;
}

.site-header.is-scrolled {
  border-bottom: 1px solid var(--border);
  background: rgba(8, 8, 8, 0.72);
  backdrop-filter: blur(18px);
}

.brand,
.desktop-nav,
.header-cta {
  position: relative;
  z-index: 2;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
  font-weight: 700;
}

.brand__mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: var(--mono);
  font-size: 13px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #d8d8d8;
  font-size: 14px;
}

.desktop-nav a {
  transition: color 180ms ease;
}

.desktop-nav a:hover {
  color: var(--accent);
}

.header-cta {
  justify-self: end;
}

.menu-toggle {
  display: none;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.btn::after {
  content: "→";
  font-family: var(--mono);
}

.btn--primary {
  background: var(--accent);
  color: #090909;
}

.btn--primary:hover {
  border-color: var(--accent);
  background: transparent;
  color: var(--accent);
}

.btn--ghost {
  border-color: var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn--dark {
  background: #080808;
  color: var(--accent);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 26px;
  padding: 32px;
  background: var(--bg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition:
    opacity 180ms ease,
    transform 220ms var(--ease);
  visibility: hidden;
}

.mobile-menu a:not(.btn) {
  font-size: clamp(34px, 12vw, 74px);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 118px 0 72px;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(8, 8, 8, 0.96) 0%, rgba(8, 8, 8, 0.62) 54%, rgba(8, 8, 8, 0.94) 100%),
    radial-gradient(circle at 26% 86%, rgba(200, 240, 76, 0.12), transparent 24rem),
    radial-gradient(circle at 78% 20%, rgba(200, 240, 76, 0.08), transparent 20rem);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(200, 240, 76, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 240, 76, 0.035) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 34%, #000 86%, transparent 100%);
  opacity: 0.42;
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 216px);
  align-items: stretch;
}

.hero__terminal {
  position: relative;
  grid-column: 1 / -1;
  display: flex;
  height: min(740px, calc(100vh - 140px));
  min-height: 680px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(200, 240, 76, 0.26);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent 18%),
    linear-gradient(135deg, rgba(16, 18, 17, 0.98), rgba(3, 5, 4, 0.96) 58%, rgba(10, 16, 7, 0.98));
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.58),
    0 0 0 1px rgba(255, 255, 255, 0.035) inset,
    0 0 72px rgba(200, 240, 76, 0.08);
}

.hero__terminal::before {
  content: "";
  position: absolute;
  inset: 44px 0 0;
  z-index: 0;
  background: repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 7px);
  mix-blend-mode: screen;
  opacity: 0.18;
  pointer-events: none;
}

.hero__terminal::after {
  content: "";
  position: absolute;
  right: 8%;
  bottom: 17%;
  width: 156px;
  height: 156px;
  border: 1px solid rgba(200, 240, 76, 0.2);
  background:
    linear-gradient(rgba(200, 240, 76, 0.2) 0 0) 26px 28px / 18px 18px no-repeat,
    linear-gradient(rgba(200, 240, 76, 0.12) 0 0) 72px 76px / 28px 28px no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.12) 0 0) 108px 38px / 12px 12px no-repeat;
  opacity: 0.72;
  transform: rotate(3deg);
  pointer-events: none;
}

.hero__terminal-chrome {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 46px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  font-family: var(--mono);
}

.hero__terminal-chrome p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.hero__terminal-chrome strong {
  justify-self: end;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
}

.hero__traffic {
  display: flex;
  gap: 8px;
}

.hero__traffic span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #ff5f57;
}

.hero__traffic span:nth-child(2) {
  background: #ffbd2e;
}

.hero__traffic span:nth-child(3) {
  background: #28c840;
}

.hero__terminal-body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 28px;
  flex: 1;
  align-items: center;
  padding: 42px 44px 24px;
}

.hero__copy {
  grid-column: span 8;
}

.hero h1 {
  max-width: 980px;
  min-height: 285px;
  margin: 20px 0 0;
  font-family: var(--mono);
  font-size: 72px;
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: lowercase;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
}

.accent-line {
  color: var(--accent);
  text-shadow: 0 0 28px rgba(200, 240, 76, 0.34);
}

.hero__prompt {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.35;
}

.hero__prompt span:first-child {
  color: var(--accent);
}

.hero__prompt::after {
  content: "";
  width: 9px;
  height: 17px;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(200, 240, 76, 0.42);
  animation: terminal-cursor 1s steps(1, end) infinite;
}

.hero__side {
  grid-column: 9 / -1;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 28px;
  border-left: 1px solid rgba(200, 240, 76, 0.14);
}

.hero__side > p {
  max-width: 360px;
  margin: 0 0 28px;
  color: #e6e6e6;
  font-size: 18px;
  line-height: 1.5;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.hero__pixel-field {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 92px;
  grid-template-columns: repeat(24, 1fr);
  grid-auto-rows: 10px;
  gap: 8px;
  padding: 0 44px 34px;
  border-top: 1px solid rgba(200, 240, 76, 0.1);
  background:
    linear-gradient(90deg, rgba(200, 240, 76, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(200, 240, 76, 0.035) 1px, transparent 1px);
  background-size: 18px 18px;
}

.hero__pixel-field span {
  background: rgba(200, 240, 76, 0.82);
  box-shadow: 0 0 18px rgba(200, 240, 76, 0.26);
}

.hero__pixel-field span:nth-child(1) {
  grid-column: 1 / span 2;
  grid-row: 3;
}

.hero__pixel-field span:nth-child(2) {
  grid-column: 4 / span 1;
  grid-row: 2;
}

.hero__pixel-field span:nth-child(3) {
  grid-column: 7 / span 4;
  grid-row: 4;
}

.hero__pixel-field span:nth-child(4) {
  grid-column: 11 / span 1;
  grid-row: 2;
}

.hero__pixel-field span:nth-child(5) {
  grid-column: 13 / span 3;
  grid-row: 5;
}

.hero__pixel-field span:nth-child(6) {
  grid-column: 16 / span 1;
  grid-row: 3;
}

.hero__pixel-field span:nth-child(7) {
  grid-column: 18 / span 2;
  grid-row: 2;
}

.hero__pixel-field span:nth-child(8) {
  grid-column: 21 / span 1;
  grid-row: 4;
}

.hero__pixel-field span:nth-child(9) {
  grid-column: 23 / span 2;
  grid-row: 3;
}

.hero__pixel-field span:nth-child(10) {
  grid-column: 5 / span 2;
  grid-row: 6;
}

.hero__pixel-field span:nth-child(11) {
  grid-column: 14 / span 1;
  grid-row: 1;
}

.hero__pixel-field span:nth-child(12) {
  grid-column: 19 / span 3;
  grid-row: 6;
}

@keyframes terminal-cursor {
  0%,
  48% {
    opacity: 1;
  }

  49%,
  100% {
    opacity: 0;
  }
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.marquee-track--reverse {
  animation-direction: reverse;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  padding: 22px 18px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: clamp(18px, 3vw, 36px);
  white-space: nowrap;
}

.marquee-track span::after {
  content: "———";
  color: rgba(200, 240, 76, 0.5);
}

.integration-marquee:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.proof,
.services,
.process,
.pricing,
.faq {
  padding: 160px 0;
}

.proof__grid,
.pricing__grid,
.guarantees__grid,
.faq__grid,
.footer__grid {
  display: grid;
  gap: 24px;
}

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

.proof-card,
.price-card,
.guarantees article,
.faq details {
  border: 1px solid var(--border);
  background: rgba(17, 17, 17, 0.82);
  transition: transform 260ms var(--ease), border-color 260ms ease, box-shadow 260ms ease;
}

.proof-card:hover,
.price-card:hover,
.guarantees article:hover {
  border-color: rgba(200, 240, 76, 0.65);
  box-shadow: 0 24px 70px rgba(200, 240, 76, 0.08);
  transform: translateY(-8px);
}

.proof-card {
  position: relative;
  min-height: 270px;
  padding: 34px;
}

.corner-mark::before,
.corner-mark::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: var(--accent);
}

.corner-mark::before {
  top: 20px;
  left: 20px;
  border-top: 1px solid;
  border-left: 1px solid;
}

.corner-mark::after {
  right: 20px;
  bottom: 20px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.proof-card h2,
.price-card h3,
.guarantees h3 {
  margin: 0;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.proof-card__meta {
  margin: 72px 0 14px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 13px;
}

.proof-card p:last-child,
.price-card p,
.guarantees p,
.faq p {
  color: #bdbdbd;
  line-height: 1.6;
}

.usp__tech {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.usp__tech .mono-label {
  margin-bottom: 16px;
}

.contacts-page {
  padding: 160px 0 120px;
  min-height: 60vh;
}

.contacts-page__header {
  max-width: 640px;
  margin-bottom: 56px;
}

.contacts-page__header h1 {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-top: 18px;
}

.contacts-page__lead {
  margin-top: 22px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.6;
}

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

.contact-card {
  display: block;
  padding: 34px;
  border: 1px solid var(--border);
  background: rgba(17, 17, 17, 0.82);
  text-decoration: none;
  color: inherit;
  transition: transform 260ms var(--ease), border-color 260ms ease, box-shadow 260ms ease;
}

a.contact-card:hover {
  border-color: rgba(200, 240, 76, 0.65);
  box-shadow: 0 24px 70px rgba(200, 240, 76, 0.08);
  transform: translateY(-8px);
}

.contact-card--static {
  cursor: default;
}

.contact-card h2 {
  font-family: var(--mono);
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-top: 14px;
  word-break: break-word;
}

.contact-card p:last-child {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.service-preview__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  color: var(--accent);
  font-family: var(--mono);
  font-size: 13px;
  transition: border-color 180ms ease, background 180ms ease;
}

.service-preview__more:hover {
  border-color: var(--accent);
  background: rgba(200, 240, 76, 0.08);
}

.site-footer [aria-current="page"] {
  color: var(--accent);
}

.section-heading {
  margin-bottom: 58px;
}

.section-heading--row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
}

.section-heading h2,
.integrations h2 {
  max-width: 760px;
  margin: 10px 0 0;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.services__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  gap: 56px;
  align-items: start;
}

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

.service-row {
  width: 100%;
  min-height: 112px;
  display: grid;
  grid-template-columns: 72px 1fr 220px 40px;
  align-items: center;
  gap: 22px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.service-row span,
.service-row em {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 13px;
  font-style: normal;
  transition: color 180ms ease;
}

.service-row strong {
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.service-row i {
  color: var(--muted);
  font-style: normal;
  font-size: 28px;
}

.service-row:hover span,
.service-row.is-active span,
.service-row:hover i,
.service-row.is-active i {
  color: var(--accent);
}

.service-preview {
  position: sticky;
  top: 118px;
  min-height: 420px;
  padding: 34px;
  border: 1px solid var(--border);
  background:
    linear-gradient(135deg, rgba(200, 240, 76, 0.08), transparent 42%),
    var(--surface);
}

.service-preview h3 {
  margin: 70px 0 18px;
  font-size: 34px;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.service-preview p:not(.mono-label) {
  color: #c9c9c9;
  line-height: 1.65;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.tag-row span {
  padding: 8px 10px;
  border: 1px solid var(--border);
  color: var(--accent);
  font-family: var(--mono);
  font-size: 12px;
}

.offer {
  padding: 40px 0 120px;
}

.offer__panel {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: clamp(34px, 6vw, 76px);
  background: var(--accent);
  color: #080808;
  overflow: hidden;
}

.offer__panel h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(46px, 7vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.offer__panel p {
  max-width: 700px;
  margin: 26px 0 34px;
  font-size: 22px;
  line-height: 1.45;
}

.offer__glyph {
  font-size: clamp(130px, 20vw, 300px);
  line-height: 1;
  opacity: 0.26;
}

.integrations {
  padding: 120px 0;
  overflow: hidden;
}

.integration-marquee {
  margin-top: 56px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.process {
  background: linear-gradient(180deg, transparent, rgba(17, 17, 17, 0.5), transparent);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  padding-top: 54px;
}

.timeline__line {
  position: absolute;
  top: 22px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--border));
  transform-origin: left;
  transform: scaleX(0.1);
  transition: transform 1200ms var(--ease);
}

.timeline.is-visible .timeline__line {
  transform: scaleX(1);
}

.timeline article {
  min-height: 210px;
}

.timeline span,
.guarantees span {
  color: var(--accent);
  font-family: var(--mono);
}

.timeline h3 {
  margin: 18px 0 16px;
  font-size: 24px;
}

.timeline p {
  margin: 0;
  color: #bdbdbd;
  line-height: 1.58;
}

.pricing__grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.pricing {
  position: relative;
  color: #080808;
  background:
    linear-gradient(rgba(8, 8, 8, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 8, 8, 0.035) 1px, transparent 1px),
    #f7f8f2;
  background-size: 48px 48px, 48px 48px, auto;
}

.pricing .mono-label {
  color: #5e7600;
}

.pricing .section-heading h2 {
  color: #080808;
}

.pricing__heading {
  margin-bottom: 28px;
}

.pricing__note {
  max-width: 390px;
  margin: 18px 0 0;
  color: #3d3d39;
  font-size: 17px;
  line-height: 1.55;
}

.pricing-switch {
  display: inline-flex;
  max-width: 100%;
  margin: 0 0 34px;
  padding: 6px;
  border: 1px solid #dedfd2;
  background: rgba(255, 255, 255, 0.7);
  overflow-x: auto;
  scrollbar-width: none;
}

.pricing-switch::-webkit-scrollbar {
  display: none;
}

.pricing-switch button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid transparent;
  color: #30302c;
  background: transparent;
  white-space: nowrap;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.pricing-switch button span {
  color: #5a5b50;
  font-family: var(--mono);
  font-size: 12px;
}

.pricing-switch button:hover,
.pricing-switch button.is-active {
  border-color: rgba(94, 118, 0, 0.32);
  background: rgba(200, 240, 76, 0.32);
  color: #080808;
}

.pricing-switch button.is-active span {
  color: #5e7600;
}

.price-card {
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px;
}

.pricing .price-card {
  border-color: #dedfd2;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 22px 80px rgba(8, 8, 8, 0.055);
}

.price-card .mono-label,
.price-card__kicker {
  color: var(--accent);
}

.pricing .price-card .mono-label,
.pricing .price-card__kicker {
  color: #5e7600;
}

.price-card--featured {
  border-color: var(--accent);
  transform: translateY(-18px);
}

.pricing .price-card--featured {
  border-color: #7c9b00;
  background: #ffffff;
}

.price-card--featured:hover {
  transform: translateY(-26px);
}

.pricing .price-card:hover {
  border-color: #7c9b00;
  box-shadow: 0 28px 90px rgba(8, 8, 8, 0.09);
}

.price {
  margin: 34px 0 24px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 20px;
}

.pricing .price {
  color: #292925;
}

.pricing .price-card p {
  color: #3b3b36;
}

.price-card__includes {
  display: grid;
  gap: 10px;
  margin: 28px 0 34px;
  padding: 0;
  color: #d8d8d8;
  list-style: none;
}

.pricing .price-card__includes {
  color: #262622;
}

.price-card__includes li {
  position: relative;
  padding-left: 20px;
  line-height: 1.45;
}

.price-card__includes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.67em;
  width: 6px;
  height: 6px;
  background: var(--accent);
}

.pricing .price-card__includes li::before {
  background: #7c9b00;
}

.price-card .btn {
  margin-top: auto;
}

.pricing .btn--ghost {
  border-color: #d8d9cc;
  background: rgba(8, 8, 8, 0.03);
  color: #080808;
}

.pricing .btn--ghost:hover {
  border-color: #7c9b00;
  color: #080808;
  background: rgba(200, 240, 76, 0.24);
}

.guarantees {
  padding: 0 0 160px;
}

.guarantees__grid {
  grid-template-columns: repeat(4, 1fr);
}

.guarantees article {
  min-height: 230px;
  padding: 28px;
}

.guarantees h3 {
  margin-top: 24px;
  font-size: 22px;
}

.final-cta {
  padding: 130px 0;
  background: var(--surface);
}

.final-cta__inner h2 {
  margin: 0;
  font-size: clamp(54px, 8vw, 110px);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.final-cta__inner p {
  max-width: 650px;
  margin: 30px 0 34px;
  color: #cfcfcf;
  font-size: 22px;
  line-height: 1.5;
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.phone {
  display: inline-block;
  margin-top: 40px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 18px;
}

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

.faq details {
  padding: 24px 26px;
}

.faq summary {
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  float: right;
  color: var(--accent);
  font-family: var(--mono);
}

.faq details[open] summary::after {
  content: "−";
}

.site-footer {
  padding: 80px 0 34px;
}

.footer__grid {
  grid-template-columns: 1fr 220px 220px;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 18px;
}

.site-footer p,
.site-footer a {
  display: block;
  margin: 0 0 12px;
  color: #bdbdbd;
}

.footer__legal {
  width: var(--container);
  margin: 60px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 12px;
}

@media (max-width: 1180px) {
  .hero h1 {
    font-size: 60px;
  }

  .hero__terminal-body {
    padding: 36px 34px 22px;
  }

  .hero__side {
    padding-left: 20px;
  }
}

@media (max-width: 980px) {
  :root {
    --container: min(100vw - 32px, 720px);
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    height: 74px;
    padding: 0 16px;
  }

  .brand {
    min-height: 44px;
  }

  [id] {
    scroll-margin-top: 88px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 101;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
  }

  .menu-toggle span {
    width: 20px;
    height: 1px;
    background: var(--text);
  }

  .hero {
    min-height: auto;
    padding: 108px 0 54px;
  }

  .hero__grid {
    min-height: auto;
    display: block;
  }

  .hero__terminal {
    height: auto;
    min-height: auto;
  }

  .hero__terminal::after {
    display: none;
  }

  .hero__terminal-body {
    display: block;
    padding: 30px 22px 24px;
  }

  .hero h1 {
    font-size: 48px;
    min-height: auto;
  }

  .hero__side {
    margin-top: 34px;
    padding: 26px 0 0;
    border-top: 1px solid rgba(200, 240, 76, 0.14);
    border-left: 0;
  }

  .hero__side > p {
    max-width: none;
  }

  .hero__actions {
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__pixel-field {
    min-height: 74px;
    grid-template-columns: repeat(12, 1fr);
    padding: 0 22px 26px;
  }

  .hero__pixel-field span:nth-child(n) {
    grid-row: auto;
    grid-column: auto / span 1;
  }

  .proof,
  .services,
  .process,
  .pricing,
  .faq {
    padding: 86px 0;
  }

  .proof__grid,
  .pricing__grid,
  .guarantees__grid,
  .faq__grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .proof-card__meta {
    margin-top: 36px;
  }

  .pricing__heading {
    display: block;
  }

  .pricing__note {
    max-width: none;
  }

  .pricing-switch {
    display: flex;
    width: 100%;
    padding-bottom: 10px;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.7) calc(100% - 32px), rgba(200, 240, 76, 0.28)),
      rgba(255, 255, 255, 0.7);
    scrollbar-color: #7c9b00 #eef0df;
    scrollbar-width: thin;
  }

  .pricing-switch::-webkit-scrollbar {
    display: block;
    height: 8px;
  }

  .pricing-switch::-webkit-scrollbar-track {
    background: #eef0df;
  }

  .pricing-switch::-webkit-scrollbar-thumb {
    background: #7c9b00;
  }

  .pricing-switch button {
    flex: 0 0 auto;
  }

  .services__layout {
    display: flex;
    flex-direction: column-reverse;
    gap: 32px;
  }

  .service-row {
    min-height: 94px;
    grid-template-columns: 44px 1fr 28px;
  }

  .service-row em {
    display: none;
  }

  .service-preview {
    display: none;
  }

  .offer {
    padding-bottom: 80px;
  }

  .offer__panel {
    min-height: 360px;
    display: block;
  }

  .offer__glyph {
    position: absolute;
    right: 20px;
    bottom: -20px;
  }

  .timeline {
    grid-template-columns: 1fr;
    padding-left: 26px;
  }

  .timeline__line {
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    transform: scaleY(0.1);
    transform-origin: top;
  }

  .timeline.is-visible .timeline__line {
    transform: scaleY(1);
  }

  .price-card--featured,
  .price-card--featured:hover {
    order: -1;
    transform: none;
  }

  .guarantees {
    padding-bottom: 86px;
  }

  .final-cta {
    padding: 86px 0;
  }

  .final-cta__actions .btn {
    width: 100%;
  }

  .phone,
  .site-footer a {
    display: flex;
    min-height: 44px;
    align-items: center;
    margin-bottom: 0;
  }

  .footer__legal {
    width: var(--container);
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 38px;
    line-height: 1.04;
  }

  .hero__terminal-chrome p {
    display: none;
  }

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

  .contacts-page {
    padding: 120px 0 80px;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 30px;
  }

  .hero__prompt {
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
