:root {
  --lime: #b7ff00;
  --lime-deep: #79a900;
  --magenta: #ff0099;
  --magenta-deep: #8c004f;
  --black: #030303;
  --white: #f7f7f1;
  --muted: #d8d7cf;
  --hero-height: 720px;
  --hero-scale: 1;
  --scroll-ratio: 0;
  --display-latin: "Anton", "Bebas Neue", Impact, sans-serif;
  --display: "Oswald", "Arial Narrow", Arial, sans-serif;
  --mono: "Roboto Mono", "Courier New", monospace;
  --body: Arial, Helvetica, sans-serif;
  --panel-border: rgba(183, 255, 0, 0.42);
  --panel-border-strong: rgba(183, 255, 0, 0.72);
  --panel-bg:
    radial-gradient(circle at 78% 100%, rgba(255, 0, 153, 0.16), transparent 52%),
    linear-gradient(180deg, rgba(9, 9, 9, 0.86), rgba(0, 0, 0, 0.62));
  --panel-shadow:
    inset 0 0 24px rgba(183, 255, 0, 0.045),
    0 0 22px rgba(255, 0, 153, 0.1);
  --ease-out: cubic-bezier(0.19, 1, 0.22, 1);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--mono);
  overflow-x: hidden;
}

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

.anchor-target {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

button,
input,
textarea {
  font: inherit;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 51% 88%, rgba(255, 0, 153, 0.46) 0 7%, transparent 26%),
    radial-gradient(circle at 48% 68%, rgba(255, 0, 153, 0.22), transparent 33%),
    radial-gradient(circle at 72% 50%, rgba(183, 255, 0, 0.11), transparent 28%),
    linear-gradient(180deg, #050505 0%, #010101 64%, #070006 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 -16% 0;
  height: 46%;
  background:
    radial-gradient(ellipse at 52% 16%, rgba(255, 0, 153, 0.64) 0 7%, transparent 34%),
    radial-gradient(ellipse at 50% 22%, rgba(138, 0, 81, 0.54), transparent 45%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.88) 68%);
  filter: blur(17px);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 39%, rgba(0, 0, 0, 0.46) 79%, rgba(0, 0, 0, 0.91) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.74), transparent 14% 84%, rgba(0, 0, 0, 0.72));
  pointer-events: none;
}

.page-noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.22;
  pointer-events: none;
  mix-blend-mode: screen;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 5px 5px, 7px 7px;
  mask-image: radial-gradient(circle at 50% 52%, black 0 42%, transparent 74%);
}

.hero__shell {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: var(--hero-height);
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 7;
  display: grid;
  grid-template-columns: 170px 1fr 286px;
  align-items: center;
  gap: 24px;
  height: 65px;
  padding: 28px 47px 0;
  font-family: var(--mono);
  font-weight: 700;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: max-content;
  height: 54px;
  color: var(--lime);
  font-family: "Bebas Neue", var(--display-latin);
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 0 18px rgba(183, 255, 0, 0.28);
}

.brand__mark {
  display: block;
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 10px rgba(255, 0, 153, 0.28))
    drop-shadow(0 0 8px rgba(183, 255, 0, 0.18));
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 3vw, 46px);
  color: var(--white);
  font-size: 16px;
  letter-spacing: 0;
}

.nav a,
.top-cta,
.button {
  transition:
    color 240ms var(--ease-out),
    background-color 240ms var(--ease-out),
    border-color 240ms var(--ease-out),
    box-shadow 240ms var(--ease-out),
    transform 240ms var(--ease-out);
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--lime);
}

.top-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid rgba(183, 255, 0, 0.82);
  border-radius: 24px;
  color: var(--lime);
  font-size: 16px;
  line-height: 1;
  text-align: center;
}

.top-cta:hover,
.top-cta:focus-visible {
  background: rgba(183, 255, 0, 0.12);
  box-shadow: 0 0 18px rgba(183, 255, 0, 0.18);
  transform: translateY(-1px);
}

.hero__stage {
  position: relative;
  min-height: calc(var(--hero-height) - 92px);
}

.hero__wordmark {
  position: absolute;
  z-index: 1;
  top: 37px;
  left: 58px;
  margin: 0;
  color: var(--lime);
  font-family: var(--display-latin);
  font-size: clamp(220px, 22.45vw, 296px);
  font-weight: 400;
  line-height: 0.78;
  letter-spacing: 0;
  white-space: nowrap;
  transform: scale(1.06, 1.28);
  transform-origin: left top;
  text-shadow: none;
  background:
    linear-gradient(180deg, #c9ff00 0%, #b8ff00 42%, #8dd000 66%, #314500 100%),
    var(--lime);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.96;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.hero__wordmark::after {
  content: "GETMONEY";
  position: absolute;
  inset: 0;
  color: transparent;
  background: linear-gradient(180deg, transparent 57%, rgba(0, 0, 0, 0.62) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.orb-wrap {
  position: absolute;
  z-index: 4;
  top: 70px;
  left: 351px;
  width: 610px;
  height: 610px;
  transform: rotate(-1.8deg);
}

.orb-glow {
  position: absolute;
  z-index: 0;
  left: 47px;
  right: 34px;
  bottom: -11px;
  height: 134px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 42% 44%, rgba(255, 0, 153, 0.92), transparent 52%),
    radial-gradient(ellipse at 50% 40%, rgba(183, 255, 0, 0.24), transparent 65%);
  filter: blur(21px);
}

.orb {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter:
    drop-shadow(0 4px 4px rgba(255, 255, 255, 0.22))
    drop-shadow(0 28px 28px rgba(0, 0, 0, 0.7))
    drop-shadow(0 0 22px rgba(255, 0, 153, 0.56));
}

.orb-reflection {
  position: absolute;
  z-index: 1;
  left: 151px;
  right: 82px;
  bottom: -37px;
  height: 48px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 54% 48%, rgba(255, 0, 153, 0.84), transparent 62%),
    radial-gradient(ellipse at 36% 50%, rgba(183, 255, 0, 0.34), transparent 58%);
  filter: blur(12px);
  transform: rotate(4deg);
}

.left-copy {
  position: absolute;
  z-index: 6;
  left: 61px;
  top: 315px;
  width: 430px;
}

.kicker,
.agency-label,
.service-list,
.est {
  font-family: var(--mono);
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 20px;
}

.kicker span,
.agency-label span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 10px rgba(183, 255, 0, 0.86);
}

.left-copy h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--display);
  font-size: 80px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
  text-shadow:
    0 2px 0 rgba(255, 255, 255, 0.15),
    0 0 22px rgba(0, 0, 0, 0.74);
}

.intro {
  margin: 13px 0 15px;
  color: var(--muted);
  font-family: var(--body);
  font-size: 19px;
  line-height: 1.03;
}

.actions {
  display: flex;
  gap: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  height: 41px;
  border-radius: 8px;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--primary {
  min-width: 210px;
  background: var(--lime);
  color: #050505;
  box-shadow: 0 0 18px rgba(183, 255, 0, 0.2);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: #d0ff2a;
}

.button--ghost {
  min-width: 198px;
  border: 1px solid rgba(255, 0, 153, 0.84);
  color: var(--white);
  background: rgba(0, 0, 0, 0.25);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: var(--lime);
}

.agency-label {
  position: absolute;
  z-index: 5;
  right: 42px;
  top: 317px;
  display: flex;
  align-items: center;
  gap: 19px;
  margin: 0;
}

.service-list {
  position: absolute;
  z-index: 5;
  right: 48px;
  top: 447px;
  display: grid;
  justify-items: end;
  gap: 7px;
  margin: 0;
  padding-right: 25px;
  color: var(--muted);
}

.service-list::after {
  content: "";
  position: absolute;
  right: 0;
  top: -33px;
  width: 1px;
  height: 108px;
  background: linear-gradient(180deg, var(--lime), rgba(183, 255, 0, 0));
  opacity: 0.8;
}

.service-list .pin {
  position: absolute;
  right: -3px;
  top: -35px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 11px rgba(183, 255, 0, 0.9);
}

.est {
  position: absolute;
  z-index: 5;
  right: 47px;
  bottom: 29px;
  min-width: 96px;
  margin: 0;
  padding: 7px 13px;
  border: 1px solid rgba(183, 255, 0, 0.86);
  border-radius: 12px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.scroll-aurora {
  position: fixed;
  z-index: 18;
  inset: -18%;
  pointer-events: none;
  opacity: 0;
  mix-blend-mode: screen;
  background:
    radial-gradient(
      circle at calc(18% + (64% * var(--scroll-ratio))) calc(20% + (48% * var(--scroll-ratio))),
      rgba(183, 255, 0, 0.2),
      transparent 28%
    ),
    radial-gradient(
      circle at calc(82% - (42% * var(--scroll-ratio))) calc(80% - (52% * var(--scroll-ratio))),
      rgba(255, 0, 153, 0.18),
      transparent 31%
    );
  filter: blur(14px) saturate(1.2);
  transform: translate3d(0, 0, 0) scale(1.04);
  transition:
    opacity 260ms var(--ease-out),
    transform 520ms var(--ease-out);
}

html[data-scrolling="true"] .scroll-aurora {
  opacity: 0.78;
  transform: translate3d(0, -1.5%, 0) scale(1.08);
}

.scroll-meter {
  position: fixed;
  z-index: 45;
  top: 50%;
  right: clamp(18px, 2.6vw, 42px);
  display: grid;
  justify-items: center;
  gap: 12px;
  color: var(--lime);
  font-family: var(--mono);
  font-weight: 700;
  pointer-events: none;
  opacity: 0.72;
  transform: translate3d(0, -50%, 0);
  transform-origin: center right;
  transition:
    opacity 260ms var(--ease-out),
    transform 360ms var(--ease-out);
}

html[data-scrolling="true"] .scroll-meter {
  opacity: 1;
  transform: translate3d(0, -50%, 0) scale(1.04);
}

.scroll-meter::before {
  content: "";
  position: absolute;
  inset: -20px -13px;
  z-index: -1;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% calc(100% - (100% * var(--scroll-ratio))), rgba(255, 0, 153, 0.2), transparent 42%),
    linear-gradient(180deg, rgba(183, 255, 0, 0.08), rgba(0, 0, 0, 0.18));
  opacity: 0.78;
  filter: blur(2px);
}

.scroll-meter__label {
  min-width: 46px;
  color: var(--white);
  font-size: 12px;
  line-height: 1;
  text-align: center;
  text-shadow:
    0 0 12px rgba(183, 255, 0, 0.55),
    0 0 18px rgba(255, 0, 153, 0.24);
}

.scroll-meter__rail {
  position: relative;
  width: 2px;
  height: clamp(156px, 28vh, 248px);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(183, 255, 0, 0.18), rgba(255, 0, 153, 0.16)),
    rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 0 1px rgba(183, 255, 0, 0.16),
    0 0 18px rgba(183, 255, 0, 0.12);
}

.scroll-meter__fill {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: calc(var(--scroll-ratio) * 100%);
  min-height: 8px;
  border-radius: inherit;
  background: linear-gradient(180deg, var(--lime), var(--magenta));
  box-shadow:
    0 0 14px rgba(183, 255, 0, 0.72),
    0 0 26px rgba(255, 0, 153, 0.38);
  transition: height 180ms linear;
}

.scroll-meter__orb {
  position: absolute;
  left: 50%;
  bottom: calc(var(--scroll-ratio) * 100%);
  width: 14px;
  height: 14px;
  border: 2px solid rgba(3, 3, 3, 0.92);
  border-radius: 999px;
  background: var(--lime);
  box-shadow:
    0 0 12px rgba(183, 255, 0, 0.95),
    0 0 30px rgba(255, 0, 153, 0.55);
  transform: translate(-50%, 50%);
  transition: bottom 180ms linear;
}

html[data-scrolling="true"] .scroll-meter__orb {
  animation: scroll-meter-pulse 620ms var(--ease-out) infinite alternate;
}

.scroll-meter__hint {
  writing-mode: vertical-rl;
  color: var(--muted);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.14em;
  opacity: 0.76;
}

.lead-backdrop {
  position: fixed;
  z-index: 70;
  inset: 0;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 0, 153, 0.18), transparent 38%),
    radial-gradient(circle at 18% 18%, rgba(183, 255, 0, 0.14), transparent 28%),
    rgba(0, 0, 0, 0.78);
  opacity: 0;
  backdrop-filter: blur(4px);
  transition: opacity 280ms var(--ease-out);
}

.lead-backdrop[hidden] {
  display: none;
}

.lead-backdrop.is-visible {
  opacity: 1;
}

html.is-lead-open,
html.is-lead-open body {
  overflow: hidden;
}

.lead-push {
  position: fixed;
  z-index: 80;
  top: 50%;
  left: 50%;
  width: min(720px, calc(100vw - 36px));
  padding: clamp(30px, 4.1vw, 46px);
  border: 1px solid rgba(183, 255, 0, 0.72);
  border-radius: 8px;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 8%, rgba(183, 255, 0, 0.2), transparent 32%),
    radial-gradient(circle at 54% 54%, rgba(255, 0, 153, 0.32), transparent 58%),
    linear-gradient(135deg, rgba(10, 10, 8, 0.97), rgba(38, 7, 27, 0.94));
  box-shadow:
    0 0 0 1px rgba(255, 0, 153, 0.22),
    0 30px 90px rgba(0, 0, 0, 0.78),
    0 0 52px rgba(255, 0, 153, 0.24);
  opacity: 0;
  transform: translate3d(-50%, -46%, 0) scale(0.96);
  transition:
    opacity 320ms var(--ease-out),
    transform 320ms var(--ease-out),
    border-color 260ms var(--ease-out),
    box-shadow 260ms var(--ease-out);
}

.lead-push[hidden] {
  display: none;
}

.lead-push.is-visible {
  opacity: 1;
  transform: translate3d(-50%, -50%, 0) scale(1);
}

.lead-push::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(115deg, rgba(183, 255, 0, 0.9), rgba(255, 0, 153, 0.7), rgba(183, 255, 0, 0.55));
  opacity: 0.34;
  filter: blur(14px);
}

.lead-push__close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: grid;
  width: 58px;
  height: 58px;
  padding: 0;
  border: 1px solid rgba(183, 255, 0, 0.5);
  border-radius: 999px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.42);
  cursor: pointer;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  place-items: center;
  transition:
    color 220ms var(--ease-out),
    border-color 220ms var(--ease-out),
    transform 220ms var(--ease-out);
}

.lead-push__close:hover,
.lead-push__close:focus-visible {
  border-color: var(--lime);
  color: var(--lime);
  transform: rotate(6deg);
}

.lead-push__kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 76px 26px 0;
  color: var(--lime);
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.lead-push__kicker span {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow:
    0 0 13px rgba(183, 255, 0, 0.94),
    0 0 30px rgba(183, 255, 0, 0.5);
}

.lead-push h2 {
  margin: 0 0 22px;
  font-family: var(--display);
  font-size: clamp(78px, 9vw, 122px);
  font-weight: 400;
  line-height: 0.9;
}

.lead-push p:not(.lead-push__kicker) {
  margin: 0;
  color: var(--muted);
  font-family: var(--body);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.17;
}

.lead-push__actions {
  display: grid;
  grid-template-columns: 1fr 132px;
  gap: 20px;
  margin-top: 38px;
}

.lead-push__actions a,
.lead-push__actions button {
  display: inline-flex;
  min-height: 84px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 28px;
  border-radius: 8px;
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition:
    background-color 220ms var(--ease-out),
    border-color 220ms var(--ease-out),
    color 220ms var(--ease-out),
    transform 220ms var(--ease-out);
}

.lead-push__actions a {
  color: #050505;
  background: var(--lime);
}

.lead-push__actions button {
  border: 1px solid rgba(255, 0, 153, 0.68);
  color: var(--white);
  background: rgba(0, 0, 0, 0.3);
}

.lead-push__actions a:hover,
.lead-push__actions a:focus-visible,
.lead-push__actions button:hover,
.lead-push__actions button:focus-visible {
  transform: translateY(-2px);
}

.services-page {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 74% 38%, rgba(255, 0, 153, 0.35), transparent 25%),
    radial-gradient(ellipse at 47% 87%, rgba(255, 0, 153, 0.24), transparent 33%),
    radial-gradient(ellipse at 79% 18%, rgba(183, 255, 0, 0.12), transparent 25%),
    linear-gradient(180deg, #040404 0%, #020202 62%, #060006 100%);
}

.services-page::before {
  content: "";
  position: absolute;
  inset: auto 0 -16% 0;
  height: 36%;
  background:
    radial-gradient(ellipse at 56% 12%, rgba(255, 0, 153, 0.44), transparent 38%),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.88) 69%);
  filter: blur(18px);
  pointer-events: none;
}

.services-page::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 48%, transparent 0 43%, rgba(0, 0, 0, 0.44) 79%, rgba(0, 0, 0, 0.92) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.58), transparent 16% 84%, rgba(0, 0, 0, 0.6));
  pointer-events: none;
}

.services-shell {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: var(--hero-height);
}

.services-stage {
  position: relative;
  width: 100%;
  min-height: var(--hero-height);
}

.services-kicker {
  position: absolute;
  z-index: 5;
  top: 31px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0;
  color: var(--white);
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0;
}

.services-kicker span,
.services-side .pin {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 11px rgba(183, 255, 0, 0.95);
}

.services-kicker--left {
  left: 50px;
}

.services-kicker--right {
  right: 48px;
}

.services-title {
  position: absolute;
  z-index: 2;
  top: 61px;
  left: 52px;
  margin: 0;
  color: var(--lime);
  font-family: var(--display);
  font-size: 190px;
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: 0;
  white-space: nowrap;
  text-shadow: none;
  background:
    linear-gradient(180deg, #c6ff00 0%, #a7ee00 47%, #536d00 100%),
    var(--lime);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services-title::after {
  content: "УСЛУГИ";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.58) 91%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services-lead {
  position: absolute;
  z-index: 5;
  top: 273px;
  left: 53px;
  margin: 0;
  color: var(--white);
  font-family: var(--body);
  font-size: 24px;
  line-height: 1.08;
}

.services-rings {
  position: absolute;
  z-index: 3;
  top: -39px;
  right: 112px;
  width: 470px;
  height: 470px;
}

.services-rings__glow {
  position: absolute;
  left: 86px;
  right: 34px;
  bottom: 72px;
  height: 82px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 53% 51%, rgba(255, 0, 153, 0.9), transparent 52%),
    radial-gradient(ellipse at 47% 42%, rgba(183, 255, 0, 0.2), transparent 64%);
  filter: blur(15px);
}

.services-rings img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter:
    drop-shadow(0 16px 16px rgba(0, 0, 0, 0.75))
    drop-shadow(0 0 18px rgba(255, 0, 153, 0.44));
  transition: transform 560ms var(--ease-out);
}

.services-page.is-scroll-focus .services-rings img {
  transform: translate3d(-8px, 5px, 0) rotate(-2deg) scale(1.03);
}

.services-side {
  position: absolute;
  z-index: 5;
  top: 205px;
  right: 51px;
  display: grid;
  justify-items: end;
  gap: 8px;
  padding-right: 25px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1;
}

.services-side::after {
  content: "";
  position: absolute;
  top: -27px;
  right: 0;
  width: 1px;
  height: 89px;
  background: linear-gradient(180deg, var(--lime), rgba(183, 255, 0, 0));
}

.services-side .pin {
  position: absolute;
  top: -31px;
  right: -3px;
}

.service-cards {
  position: absolute;
  z-index: 6;
  top: 343px;
  left: 50px;
  right: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.service-card {
  position: relative;
  height: 300px;
  overflow: hidden;
  padding: 18px 18px 0;
  border: 1px solid var(--panel-border-strong);
  border-radius: 8px;
  background:
    radial-gradient(ellipse at 50% 98%, rgba(255, 0, 153, 0.32), transparent 42%),
    var(--panel-bg);
  box-shadow: var(--panel-shadow);
  transition:
    border-color 260ms var(--ease-out),
    box-shadow 260ms var(--ease-out),
    transform 260ms var(--ease-out);
}

.service-card:hover,
.service-card:focus-within {
  border-color: var(--lime);
  box-shadow:
    inset 0 0 28px rgba(183, 255, 0, 0.08),
    0 0 28px rgba(255, 0, 153, 0.18);
  transform: translateY(-2px);
}

.service-card__num,
.service-card__arrow {
  color: var(--lime);
  font-family: var(--mono);
  font-size: 16px;
  line-height: 1;
}

.service-card__arrow {
  position: absolute;
  top: 18px;
  right: 18px;
  transition:
    color 240ms var(--ease-out),
    transform 240ms var(--ease-out);
}

.service-card__arrow:hover,
.service-card__arrow:focus-visible {
  color: var(--white);
  transform: translate(2px, -2px);
}

.service-card h3 {
  margin: 14px 0 7px;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(29px, 2.65vw, 34px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-family: var(--body);
  font-size: 14px;
  line-height: 1.16;
}

.service-art {
  position: absolute;
  left: 50%;
  bottom: 8px;
  width: 178px;
  height: 122px;
  transform: translateX(-50%);
  filter:
    drop-shadow(0 0 10px rgba(255, 0, 153, 0.82))
    drop-shadow(0 0 10px rgba(183, 255, 0, 0.3));
}

.service-art::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 0;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255, 0, 153, 0.82), transparent 72%);
  filter: blur(7px);
}

.service-art--landing {
  bottom: 17px;
  height: 116px;
  border: 2px solid rgba(183, 255, 0, 0.8);
  border-radius: 15px;
  transform: translateX(-50%) perspective(180px) rotateX(7deg) rotateY(-18deg) rotateZ(4deg);
  background:
    linear-gradient(180deg, rgba(183, 255, 0, 0.18), rgba(0, 0, 0, 0.76)),
    linear-gradient(135deg, rgba(183, 255, 0, 0.35), rgba(255, 0, 153, 0.32));
}

.service-art--landing span {
  position: absolute;
  background: rgba(183, 255, 0, 0.82);
  box-shadow: 0 0 6px rgba(183, 255, 0, 0.72);
}

.service-art--landing span:nth-child(1),
.service-art--landing span:nth-child(2),
.service-art--landing span:nth-child(3) {
  top: 10px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.service-art--landing span:nth-child(1) {
  left: 14px;
}

.service-art--landing span:nth-child(2) {
  left: 30px;
}

.service-art--landing span:nth-child(3) {
  left: 46px;
}

.service-art--landing span:nth-child(4) {
  left: 18px;
  right: 18px;
  top: 43px;
  height: 52px;
  border: 2px solid rgba(183, 255, 0, 0.78);
  background:
    linear-gradient(90deg, transparent 36%, rgba(183, 255, 0, 0.7) 37% 39%, transparent 40%),
    linear-gradient(180deg, transparent 45%, rgba(183, 255, 0, 0.7) 46% 49%, transparent 50%);
}

.service-art--globe {
  width: 126px;
  height: 126px;
  bottom: 13px;
  border: 4px solid rgba(183, 255, 0, 0.86);
  border-radius: 50%;
  background:
    radial-gradient(circle at 55% 43%, rgba(183, 255, 0, 0.62), transparent 17%),
    radial-gradient(circle, rgba(255, 0, 153, 0.24), transparent 62%);
}

.service-art--globe span {
  position: absolute;
  inset: 9px;
  border: 2px solid rgba(183, 255, 0, 0.62);
  border-radius: 50%;
}

.service-art--globe span:nth-child(1) {
  transform: scaleX(0.42);
}

.service-art--globe span:nth-child(2) {
  transform: scaleX(0.72);
}

.service-art--globe span:nth-child(3) {
  inset: 37px 8px;
}

.service-art--globe span:nth-child(4) {
  inset: 8px 37px;
}

.service-art--folder {
  width: 176px;
  height: 105px;
  bottom: 21px;
  transform: translateX(-50%) perspective(170px) rotateX(5deg) rotateY(-9deg);
}

.service-art--folder span:first-child {
  position: absolute;
  top: 0;
  left: 18px;
  width: 71px;
  height: 26px;
  border-radius: 9px 9px 0 0;
  background: linear-gradient(135deg, #d2ff00, #a7d600 58%, #191a06);
}

.service-art--folder span:last-child {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 88px;
  border: 2px solid rgba(183, 255, 0, 0.55);
  border-radius: 11px;
  background:
    linear-gradient(135deg, #c8ff00 0%, #92b700 48%, #0d0d0b 100%),
    radial-gradient(circle at 85% 20%, rgba(255, 0, 153, 0.82), transparent 34%);
  box-shadow: inset -16px 0 24px rgba(255, 0, 153, 0.46);
}

.service-art--pin {
  width: 126px;
  height: 130px;
  bottom: 12px;
}

.service-art--pin span:first-child {
  position: absolute;
  left: 37px;
  top: 3px;
  width: 63px;
  height: 84px;
  border: 17px solid rgba(183, 255, 0, 0.88);
  border-radius: 50% 50% 50% 0;
  background: rgba(0, 0, 0, 0.72);
  transform: rotate(-45deg);
  box-shadow:
    inset 0 0 14px rgba(255, 0, 153, 0.8),
    0 0 10px rgba(255, 0, 153, 0.76);
}

.service-art--pin span:last-child {
  position: absolute;
  left: 16px;
  right: 8px;
  bottom: 7px;
  height: 30px;
  border: 8px solid rgba(183, 255, 0, 0.45);
  border-radius: 50%;
  transform: rotate(-5deg);
  background: rgba(255, 0, 153, 0.2);
}

img.service-art {
  display: block;
  border: 0;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
}

img.service-art::after {
  content: none;
}

img.service-art--landing {
  bottom: 0;
  width: 196px;
  height: 148px;
  transform: translateX(-50%);
}

img.service-art--globe {
  bottom: -4px;
  width: 166px;
  height: 166px;
  transform: translateX(-50%);
}

img.service-art--folder {
  bottom: 3px;
  width: 196px;
  height: 140px;
  transform: translateX(-50%);
}

img.service-art--pin {
  bottom: 0;
  width: 150px;
  height: 150px;
  transform: translateX(-50%);
}

.services-est {
  position: absolute;
  z-index: 6;
  left: 50px;
  bottom: 24px;
  min-width: 84px;
  margin: 0;
  padding: 7px 12px;
  border: 1px solid rgba(183, 255, 0, 0.62);
  border-radius: 10px;
  color: var(--lime);
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1;
}

.services-note {
  position: absolute;
  z-index: 6;
  left: 221px;
  bottom: 18px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-family: var(--body);
  font-size: 14px;
  line-height: 1.15;
}

.services-note span {
  position: absolute;
  left: 0;
  top: -11px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px rgba(183, 255, 0, 0.86);
}

.services-note::before {
  content: "";
  position: absolute;
  left: 3px;
  top: -5px;
  width: 1px;
  height: 39px;
  background: linear-gradient(180deg, var(--lime), rgba(183, 255, 0, 0));
}

.services-main-cta {
  position: absolute;
  z-index: 6;
  left: 50%;
  bottom: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  width: 190px;
  height: 41px;
  border-radius: 7px;
  background: var(--lime);
  color: #050505;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 800;
  transform: translateX(-50%);
  transition:
    background-color 240ms var(--ease-out),
    box-shadow 240ms var(--ease-out),
    transform 240ms var(--ease-out);
}

.services-main-cta:hover,
.services-main-cta:focus-visible {
  background: #d0ff2a;
  box-shadow: 0 0 20px rgba(183, 255, 0, 0.18);
  transform: translateX(-50%) translateY(-1px);
}

.services-discuss {
  position: absolute;
  z-index: 6;
  right: 52px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--white);
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1;
  transition:
    color 240ms var(--ease-out),
    transform 240ms var(--ease-out);
}

.services-discuss:hover,
.services-discuss:focus-visible {
  color: var(--lime);
  transform: translateY(-1px);
}

.services-discuss::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 1px;
  background: linear-gradient(90deg, var(--lime), rgba(183, 255, 0, 0));
}

.services-discuss::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -13px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 8px rgba(183, 255, 0, 0.95);
}

.structure-section,
.site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 12%, rgba(183, 255, 0, 0.1), transparent 24%),
    radial-gradient(circle at 18% 82%, rgba(255, 0, 153, 0.17), transparent 31%),
    linear-gradient(180deg, #030303 0%, #050505 62%, #070006 100%);
  border-top: 1px solid rgba(183, 255, 0, 0.12);
}

.structure-section::before,
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 6px 6px, 8px 8px;
}

.structure-section::after,
.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(
      105deg,
      transparent 0 28%,
      rgba(183, 255, 0, 0.1) 42%,
      rgba(255, 0, 153, 0.13) 52%,
      transparent 70% 100%
    );
  transform: translate3d(calc(-36px + (72px * var(--section-ratio, 0))), 0, 0);
  transition:
    opacity 460ms var(--ease-out),
    transform 720ms var(--ease-out);
}

.structure-section.is-scroll-focus::after,
.site-footer.is-scroll-focus::after {
  opacity: 1;
}

.section-shell {
  position: relative;
  z-index: 1;
  width: min(100% - 100px, 1180px);
  margin: 0 auto;
  padding: 82px 0;
  transition: transform 420ms var(--ease-out);
}

.structure-section.is-scroll-focus .section-shell,
.site-footer.is-scroll-focus .section-shell {
  transform: translate3d(0, -6px, 0);
}

.section-shell--split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 72px;
  align-items: start;
}

.section-shell--center {
  display: grid;
  justify-items: center;
  text-align: center;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
  color: var(--white);
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1;
}

.section-kicker span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 11px rgba(183, 255, 0, 0.95);
}

.structure-section h2,
.site-footer h2 {
  max-width: 900px;
  margin: 0 0 30px;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(58px, 8.4vw, 112px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0;
}

.section-shell--center h2 {
  margin-left: auto;
  margin-right: auto;
}

.section-copy,
.section-shell--center > p,
.why-head p,
.why-cta small,
.structure-card p,
.case-card p,
.price-card p,
.process-prototype p,
.process-list p,
.faq-list p,
.site-footer p {
  color: var(--muted);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.22;
}

.section-copy p,
.section-shell--center > p {
  margin: 0 0 24px;
}

.section-button,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-width: 190px;
  min-height: 43px;
  padding: 0 24px;
  border: 1px solid var(--lime);
  border-radius: 8px;
  background: var(--lime);
  color: #050505;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  transition:
    background-color 240ms var(--ease-out),
    border-color 240ms var(--ease-out),
    box-shadow 240ms var(--ease-out),
    transform 240ms var(--ease-out);
}

.section-button:hover,
.section-button:focus-visible,
.contact-form button:hover,
.contact-form button:focus-visible {
  background: #d0ff2a;
  border-color: #d0ff2a;
  box-shadow: 0 0 24px rgba(183, 255, 0, 0.18);
  transform: translateY(-1px);
}

.contact-form button:disabled {
  cursor: progress;
  opacity: 0.72;
  transform: none;
}

.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-family: var(--body);
  font-size: 14px;
  line-height: 1.25;
}

.contact-form.is-success .form-status {
  color: var(--lime);
}

.contact-form.is-error .form-status {
  color: #ff5fba;
}

.trust-strip .section-shell {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: end;
  padding-top: 48px;
  padding-bottom: 48px;
}

.trust-strip h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 5.4vw, 72px);
}

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

.trust-grid span,
.why-cta,
.structure-card,
.case-card,
.price-card,
.process-panel,
.process-prototype,
.faq-list details {
  border: 1px solid var(--panel-border);
  border-radius: 8px;
  background: var(--panel-bg);
  box-shadow: var(--panel-shadow);
  transition:
    border-color 260ms var(--ease-out),
    box-shadow 260ms var(--ease-out),
    transform 260ms var(--ease-out);
}

.trust-grid span:hover,
.why-cta:hover,
.why-cta:focus-visible,
.structure-card:hover,
.case-card:hover,
.price-card:hover,
.process-prototype:hover,
.faq-list details:hover,
.faq-list details:focus-within {
  border-color: var(--panel-border-strong);
  box-shadow:
    inset 0 0 28px rgba(183, 255, 0, 0.08),
    0 0 28px rgba(255, 0, 153, 0.16);
  transform: translateY(-2px);
}

.trust-grid span {
  display: grid;
  min-height: 54px;
  place-items: center;
  color: var(--lime);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
}

.why-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.46fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.why-head h2 {
  margin-bottom: 16px;
}

.why-head p {
  max-width: 680px;
  margin: 0;
  font-size: 18px;
}

.why-cta {
  display: grid;
  gap: 14px;
  min-height: 230px;
  align-content: end;
  padding: 22px;
  color: inherit;
  transition:
    border-color 260ms var(--ease-out),
    box-shadow 260ms var(--ease-out),
    transform 260ms var(--ease-out);
}

.why-cta span,
.process-prototype span,
.pricing-inline > h3 {
  color: var(--lime);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.why-cta strong {
  max-width: 360px;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 400;
  line-height: 0.95;
}

.why-cta small {
  max-width: 320px;
  font-size: 15px;
}

.why-section .trust-grid {
  margin-bottom: 16px;
}

.structure-grid {
  display: grid;
  gap: 16px;
}

.structure-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.structure-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cases-lead {
  max-width: 780px;
  margin: -10px 0 28px;
  color: var(--muted);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.24;
}

.cases-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.structure-card,
.case-card,
.price-card {
  min-height: 238px;
  padding: 22px;
}

.cases-showcase .case-card {
  position: relative;
  display: flex;
  min-height: 520px;
  overflow: hidden;
  padding: 0;
  flex-direction: column;
}

.cases-showcase .case-card--featured {
  grid-column: span 2;
}

.cases-showcase .case-card--wide {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  min-height: 360px;
}

.case-card--wide .case-card__media {
  min-height: 100%;
  border-right: 1px dashed rgba(183, 255, 0, 0.42);
  border-bottom: 0;
}

.structure-card > span,
.case-card > span,
.price-card > span {
  color: var(--lime);
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1;
}

.case-card__media {
  position: relative;
  display: grid;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  place-items: center;
  border-bottom: 1px solid rgba(183, 255, 0, 0.28);
  background:
    radial-gradient(circle at 50% 100%, rgba(255, 0, 153, 0.18), transparent 56%),
    rgba(0, 0, 0, 0.62);
}

.case-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04) brightness(0.76);
  transform: scale(1.01);
  transition:
    filter 320ms var(--ease-out),
    transform 320ms var(--ease-out);
}

.case-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.52)),
    radial-gradient(circle at 50% 100%, rgba(255, 0, 153, 0.22), transparent 58%);
}

.case-card__media--empty {
  gap: 10px;
  align-content: center;
  border: 1px dashed rgba(183, 255, 0, 0.42);
  border-width: 0 0 1px;
  color: var(--lime);
  text-align: center;
}

.case-card__media-label,
.case-card__media-note {
  position: relative;
  z-index: 1;
  display: block;
  font-family: var(--mono);
  font-weight: 700;
  line-height: 1;
}

.case-card__media-label {
  font-size: 13px;
}

.case-card__media-note {
  color: var(--muted);
  font-size: 11px;
  opacity: 0.72;
}

.case-card:hover .case-card__media img,
.case-card:focus-within .case-card__media img {
  filter: saturate(1.06) contrast(1.08) brightness(0.88);
  transform: scale(1.045);
}

.case-card__body {
  display: flex;
  min-width: 0;
  min-height: 0;
  flex: 1;
  flex-direction: column;
  padding: 20px 22px 22px;
}

.case-card--wide .case-card__body {
  padding-left: clamp(28px, 3.5vw, 48px);
  padding-right: clamp(22px, 9vw, 118px);
}

.case-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--lime);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.case-card__topline a {
  color: var(--white);
  white-space: nowrap;
  transition:
    color 220ms var(--ease-out),
    transform 220ms var(--ease-out);
}

.case-card__topline a:hover,
.case-card__topline a:focus-visible {
  color: var(--lime);
  transform: translate(2px, -1px);
}

.structure-card h3,
.case-card h3,
.price-card h3 {
  margin: 54px 0 12px;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 400;
  line-height: 0.95;
  overflow-wrap: break-word;
}

.cases-showcase .case-card h3 {
  margin: 28px 0 12px;
  font-size: clamp(40px, 4.8vw, 68px);
}

.cases-showcase .case-card:not(.case-card--featured):not(.case-card--wide) h3 {
  font-size: clamp(36px, 3.3vw, 48px);
}

.cases-showcase .case-card--featured h3 {
  font-size: clamp(56px, 7.2vw, 96px);
}

.cases-showcase .case-card--wide h3 {
  font-size: clamp(52px, 5.8vw, 78px);
}

.case-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: auto 0 0;
  padding: 26px 0 0;
  list-style: none;
}

.case-card__tags li {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 1px solid rgba(183, 255, 0, 0.3);
  border-radius: 999px;
  padding: 0 10px;
  color: var(--lime);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.price-card--active {
  border-color: var(--lime);
  box-shadow:
    inset 0 0 34px rgba(183, 255, 0, 0.08),
    0 0 26px rgba(255, 0, 153, 0.16);
}

.process-stack > h2 {
  max-width: 980px;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(420px, 1.16fr);
  gap: 18px;
  align-items: start;
}

.process-panel {
  display: grid;
  gap: 16px;
  min-width: 0;
  padding: 16px;
}

.process-prototype {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.process-prototype h3 {
  max-width: 720px;
  margin: 0;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(42px, 5.2vw, 72px);
  font-weight: 400;
  line-height: 0.92;
}

.process-prototype p {
  max-width: 680px;
  margin: 0;
}

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

.pricing-inline {
  align-items: stretch;
}

.pricing-inline > h3 {
  grid-column: 1 / -1;
  margin: 10px 0 -2px;
}

.price-card h4 {
  margin: 34px 0 12px;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 400;
  line-height: 0.95;
}

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

.process-list li {
  display: grid;
  grid-template-columns: 80px 220px 1fr;
  gap: 20px;
  align-items: start;
  min-height: 86px;
  padding: 18px 20px;
  border: 1px solid rgba(183, 255, 0, 0.24);
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(183, 255, 0, 0.07), rgba(0, 0, 0, 0.4));
  box-shadow: inset 0 0 22px rgba(183, 255, 0, 0.035);
  transition:
    border-color 260ms var(--ease-out),
    box-shadow 260ms var(--ease-out),
    transform 260ms var(--ease-out);
}

.process-list li:hover {
  border-color: rgba(183, 255, 0, 0.54);
  box-shadow: 0 0 24px rgba(255, 0, 153, 0.12);
  transform: translateY(-2px);
}

.process-list span {
  color: var(--lime);
  font-family: var(--mono);
}

.process-list strong {
  color: var(--white);
  font-family: var(--display);
  font-size: 42px;
  font-weight: 400;
  line-height: 0.95;
}

.process-list p {
  margin: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--white);
  font-family: var(--mono);
  font-size: 15px;
  font-weight: 700;
}

.faq-list p {
  max-width: 740px;
  margin: 16px 0 0;
}

.faq-contact-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: 28px;
  align-items: start;
}

.faq-column {
  min-width: 0;
}

.contact-panel {
  scroll-margin-top: 40px;
}

.contact-panel h2 {
  margin: 0;
  font-size: clamp(42px, 5.2vw, 68px);
}

.contact-panel .section-kicker {
  margin-bottom: 6px;
}

.contact-form {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--panel-border);
  border-radius: 8px;
  background: var(--panel-bg);
  box-shadow: var(--panel-shadow);
}

@media (min-width: 901px) {
  .contact-form {
    padding: 22px 140px 22px 22px;
  }
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--lime);
  font-family: var(--mono);
  font-size: 12px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(183, 255, 0, 0.42);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.64);
  color: var(--white);
  font: 16px var(--body);
  padding: 14px 15px;
  transition:
    border-color 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out),
    background-color 220ms var(--ease-out);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--lime);
  background: rgba(0, 0, 0, 0.78);
  box-shadow: 0 0 18px rgba(183, 255, 0, 0.12);
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.site-footer {
  padding: 28px 0;
}

.site-footer .section-shell {
  padding: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 170px 1fr auto;
  gap: 28px;
  align-items: center;
}

.footer-grid nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  color: var(--white);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
}

.footer-grid p {
  margin: 0;
  color: var(--lime);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
}

.blog-page {
  min-height: 100%;
  background:
    radial-gradient(circle at 78% 8%, rgba(183, 255, 0, 0.1), transparent 28%),
    radial-gradient(circle at 20% 18%, rgba(255, 0, 153, 0.14), transparent 32%),
    linear-gradient(180deg, #050505 0%, #030303 100%);
}

.blog-page .site-header {
  max-width: 1280px;
  margin: 0 auto;
}

.blog-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(183, 255, 0, 0.16);
}

.blog-hero::after {
  content: "BLOG";
  position: absolute;
  right: -0.04em;
  bottom: -0.18em;
  z-index: 0;
  color: rgba(183, 255, 0, 0.07);
  font-family: var(--display-latin);
  font-size: clamp(150px, 24vw, 360px);
  line-height: 1;
  pointer-events: none;
}

.blog-shell {
  position: relative;
  z-index: 2;
  padding-top: clamp(70px, 9vw, 132px);
  padding-bottom: clamp(58px, 8vw, 112px);
}

.blog-shell h1,
.article-shell h1 {
  max-width: 980px;
  margin: 0;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(56px, 8vw, 112px);
  font-weight: 700;
  line-height: 0.94;
}

.blog-lead,
.article-lead {
  max-width: 780px;
  margin: 24px 0 0;
  color: var(--muted);
  font-family: var(--body);
  font-size: clamp(20px, 2.1vw, 30px);
  line-height: 1.12;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.blog-card,
.seo-core-panel {
  position: relative;
  min-height: 360px;
  padding: 24px;
  border: 1px solid var(--panel-border);
  border-radius: 8px;
  background: var(--panel-bg);
  box-shadow: var(--panel-shadow);
}

.blog-card__arrow {
  position: absolute;
  top: 22px;
  right: 22px;
  color: var(--lime);
  font-size: 22px;
}

.blog-card__query,
.article-meta,
.article-back {
  color: var(--lime);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.blog-card h3 {
  margin: 56px 0 0;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(34px, 3.8vw, 54px);
  font-weight: 700;
  line-height: 0.98;
}

.blog-card p:not(.blog-card__query) {
  margin: 18px 0 0;
  color: var(--muted);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.16;
}

.blog-card__link {
  position: absolute;
  right: 24px;
  bottom: 22px;
  color: var(--white);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
}

.seo-core-panel {
  min-height: 0;
}

.seo-core-panel p,
.seo-core-panel li {
  color: var(--muted);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.22;
}

.seo-core-panel ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 20px;
}

.article-shell {
  width: min(920px, calc(100% - 64px));
  margin: 0 auto;
  padding: clamp(70px, 10vw, 128px) 0;
}

.article-back {
  display: inline-flex;
  margin-bottom: 36px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.article-meta span,
.article-meta time {
  padding: 8px 12px;
  border: 1px solid rgba(183, 255, 0, 0.36);
  border-radius: 999px;
}

.article-content {
  margin-top: 54px;
  padding-top: 40px;
  border-top: 1px solid rgba(183, 255, 0, 0.24);
}

.article-content h2 {
  margin: 44px 0 14px;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 700;
  line-height: 1;
}

.article-content p,
.article-content li {
  color: var(--muted);
  font-family: var(--body);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.28;
}

.article-content ul,
.article-content ol {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding-left: 24px;
}

.article-content strong {
  color: var(--white);
}

:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
}

.site-header {
  animation: hero-fade-in 700ms var(--ease-out) 40ms both;
}

.hero__wordmark {
  animation: hero-fade-in 820ms var(--ease-out) 80ms both;
}

.orb-wrap {
  animation: hero-object-in 900ms var(--ease-out) 130ms both;
}

.left-copy,
.agency-label,
.est {
  animation: hero-copy-in 760ms var(--ease-out) 180ms both;
}

.is-reveal {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(28px);
  transition-property: opacity, transform, filter, border-color, box-shadow, background-color;
  transition-duration: 720ms, 720ms, 720ms, 260ms, 260ms, 240ms;
  transition-timing-function: var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms), var(--reveal-delay, 0ms), var(--reveal-delay, 0ms), 0ms, 0ms, 0ms;
  will-change: opacity, transform, filter;
}

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

.structure-section.is-scroll-focus .section-kicker span,
.services-page.is-scroll-focus .services-kicker span {
  animation: pin-pulse 900ms var(--ease-out) infinite alternate;
}

html[data-scrolling="true"] .structure-card.is-visible,
html[data-scrolling="true"] .case-card.is-visible,
html[data-scrolling="true"] .price-card.is-visible,
html[data-scrolling="true"] .faq-list details.is-visible {
  border-color: rgba(183, 255, 0, 0.64);
  box-shadow:
    inset 0 0 30px rgba(183, 255, 0, 0.08),
    0 0 34px rgba(255, 0, 153, 0.14);
  transform: translate3d(0, -4px, 0);
}

@keyframes hero-fade-in {
  from {
    opacity: 0;
    filter: blur(9px);
  }

  to {
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes hero-object-in {
  from {
    opacity: 0;
    filter: blur(12px) saturate(1.25);
  }

  to {
    opacity: 1;
    filter: blur(0) saturate(1);
  }
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pin-pulse {
  from {
    box-shadow: 0 0 9px rgba(183, 255, 0, 0.78);
    transform: scale(1);
  }

  to {
    box-shadow:
      0 0 15px rgba(183, 255, 0, 0.95),
      0 0 28px rgba(255, 0, 153, 0.3);
    transform: scale(1.35);
  }
}

@keyframes scroll-meter-pulse {
  from {
    transform: translate(-50%, 50%) scale(1);
  }

  to {
    transform: translate(-50%, 50%) scale(1.35);
  }
}

@media (max-width: 900px) {
  :root {
    --hero-height: 844px;
  }

  .scroll-aurora {
    display: none;
  }

  .scroll-meter {
    top: 0;
    right: 0;
    left: 0;
    display: block;
    width: 100%;
    opacity: 1;
    transform: none;
  }

  html[data-scrolling="true"] .scroll-meter {
    transform: none;
  }

  .scroll-meter::before,
  .scroll-meter__label,
  .scroll-meter__hint,
  .scroll-meter__orb {
    display: none;
  }

  .scroll-meter__rail {
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
  }

  .scroll-meter__fill {
    top: 0;
    right: auto;
    bottom: auto;
    left: 0;
    width: calc(var(--scroll-ratio) * 100%);
    height: 100%;
    min-height: 0;
    transition: width 180ms linear;
  }

  .lead-push {
    width: calc(100vw - 32px);
    padding: 18px;
  }

  .lead-push__close {
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    font-size: 26px;
  }

  .lead-push__kicker {
    gap: 10px;
    margin: 0 54px 18px 0;
    font-size: 14px;
  }

  .lead-push__kicker span {
    width: 9px;
    height: 9px;
  }

  .lead-push h2 {
    font-size: clamp(58px, 17vw, 76px);
  }

  .lead-push p:not(.lead-push__kicker) {
    font-size: 19px;
  }

  .lead-push__actions {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
  }

  .lead-push__actions a,
  .lead-push__actions button {
    min-height: 58px;
    font-size: 16px;
  }

  .hero__shell {
    min-height: var(--hero-height);
  }

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

  .nav {
    display: none;
  }

  .brand {
    height: 42px;
  }

  .brand__mark {
    width: 42px;
    height: 42px;
  }

  .top-cta {
    min-width: 42px;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 21px;
    font-size: 12px;
  }

  .hero__stage {
    min-height: 760px;
  }

  .hero__wordmark {
    top: 75px;
    left: 20px;
    font-size: clamp(98px, 28vw, 156px);
    transform: scaleX(1);
  }

  .orb-wrap {
    top: 156px;
    left: 50%;
    width: min(106vw, 520px);
    height: min(106vw, 520px);
    transform: translateX(-50%) rotate(-1.8deg);
  }

  .left-copy {
    top: 452px;
    left: 24px;
    width: calc(100% - 48px);
  }

  .left-copy h2 {
    font-size: clamp(55px, 17vw, 78px);
  }

  .intro {
    font-size: 18px;
  }

  .actions {
    flex-wrap: wrap;
    gap: 12px;
  }

  .button {
    width: min(100%, 260px);
  }

  .agency-label {
    top: 375px;
    right: 22px;
    font-size: 13px;
  }

  .service-list {
    display: none;
  }

  .est {
    display: none;
  }

  .services-page {
    min-height: auto;
    overflow: visible;
  }

  .services-shell,
  .services-stage {
    min-height: auto;
  }

  .services-stage {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 30px 24px 38px;
  }

  .services-kicker,
  .services-title,
  .services-lead,
  .services-rings,
  .services-side,
  .service-cards,
  .services-est,
  .services-note,
  .services-main-cta,
  .services-discuss {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    z-index: 3;
  }

  .services-kicker--right,
  .services-side {
    display: none;
  }

  .services-title {
    font-size: clamp(86px, 24vw, 132px);
    line-height: 0.88;
  }

  .services-lead {
    font-size: 20px;
  }

  .services-rings {
    width: min(100%, 440px);
    height: 240px;
    align-self: center;
    margin-top: -28px;
  }

  .service-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-card {
    min-height: 286px;
  }

  .services-est,
  .services-note,
  .services-main-cta,
  .services-discuss {
    align-self: stretch;
  }

  .services-main-cta {
    transform: none;
    width: 100%;
  }

  .services-note {
    padding-left: 18px;
  }

  .services-discuss {
    justify-content: space-between;
  }

  .section-shell {
    width: calc(100% - 48px);
    padding: 54px 0;
  }

  .section-shell--split,
  .trust-strip .section-shell,
  .why-head,
  .process-layout,
  .faq-contact-shell,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .structure-section h2,
  .site-footer h2 {
    font-size: clamp(48px, 14vw, 74px);
  }

  .trust-grid,
  .structure-grid--three,
  .structure-grid--four,
  .compact-grid,
  .cases-showcase {
    grid-template-columns: 1fr;
  }

  .why-cta {
    min-height: 0;
  }

  .process-panel {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .process-prototype {
    padding: 18px;
  }

  .cases-lead {
    margin-top: -16px;
    font-size: 16px;
  }

  .cases-showcase .case-card,
  .cases-showcase .case-card--featured,
  .cases-showcase .case-card--wide {
    display: flex;
    grid-column: auto;
    min-height: 0;
  }

  .case-card--wide .case-card__media {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px dashed rgba(183, 255, 0, 0.42);
  }

  .case-card__body {
    padding: 18px;
  }

  .case-card--wide .case-card__body {
    padding: 18px;
  }

  .case-card__topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .cases-showcase .case-card h3,
  .cases-showcase .case-card--featured h3 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .trust-grid span {
    justify-items: start;
    padding: 0 16px;
  }

  .structure-card,
  .case-card,
  .price-card {
    min-height: 210px;
  }

  .structure-card h3,
  .case-card h3,
  .price-card h3 {
    margin-top: 36px;
  }

  .process-list li {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .footer-grid nav {
    justify-content: flex-start;
  }

  .blog-page .site-header {
    max-width: none;
  }

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

  .blog-card {
    min-height: 300px;
  }

  .article-shell {
    width: calc(100% - 48px);
  }

  .article-meta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (min-width: 901px) {
  html,
  body {
    width: 100%;
  }

  .hero,
  .services-page {
    height: 100vh;
    height: 100svh;
  }

  .hero__shell,
  .services-shell {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1280px;
    height: 720px;
    min-height: 720px;
    transform: translateX(-50%) scale(var(--hero-scale));
    transform-origin: top center;
  }
}

@media (max-width: 520px) {
  .brand__mark {
    width: 38px;
    height: 38px;
  }

  .top-cta {
    padding: 0 10px;
    font-size: 11px;
  }

  .hero__wordmark {
    left: 16px;
    font-size: 94px;
  }

  .orb-wrap {
    top: 150px;
    width: 96vw;
    height: 96vw;
  }

  .left-copy {
    top: 430px;
  }

  .kicker {
    margin-bottom: 15px;
    font-size: 14px;
  }

  .left-copy h2 {
    font-size: 58px;
  }

  .intro {
    width: 100%;
    max-width: 330px;
  }
}

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

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

  .is-reveal,
  .is-reveal.is-visible {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }

  .scroll-aurora,
  .structure-section::after,
  .site-footer::after {
    display: none !important;
  }

  .lead-push,
  .lead-push.is-visible {
    transform: translate3d(-50%, -50%, 0) !important;
  }

  .scroll-meter__orb {
    animation: none !important;
  }
}
