:root {
  --bg: #010409;
  --bg-soft: #020b12;
  --panel: rgba(7, 18, 28, 0.78);
  --panel-strong: rgba(5, 15, 24, 0.94);
  --line: rgba(113, 245, 234, 0.16);
  --line-strong: rgba(113, 245, 234, 0.42);
  --accent: #71f5ea;
  --accent-strong: #1df0e1;
  --accent-ice: #d6fffb;
  --text: #f4fffe;
  --text-soft: rgba(226, 247, 245, 0.72);
  --text-muted: rgba(190, 216, 218, 0.52);
  --shadow: 0 0 0 1px rgba(113, 245, 234, 0.12), 0 0 40px rgba(29, 240, 225, 0.09);
  --radius: 34px 10px 34px 10px;
  --radius-sm: 28px 8px 28px 8px;
  --radius-chip: 999px 14px 999px 14px;
  --radius-field: 18px 6px 18px 6px;
  --radius-button: 4px;
  --max-width: 1280px;
  --site-gutter: 50px;
  --topbar-height: 86px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Jost", sans-serif;
  color: #ffffff;
  font-weight: 300;
  background: linear-gradient(180deg, #000307 0%, #070808 100%);
  overflow-x: hidden;
}

body.is-intro-active,
body.is-intro-leaving {
  overflow: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

body::before {
  background:
    radial-gradient(circle at 20% 18%, rgba(113, 245, 234, 0.05), transparent 18%),
    radial-gradient(circle at 80% 0%, rgba(113, 245, 234, 0.04), transparent 22%);
  opacity: 0;
  transition: opacity 900ms ease;
}

body::after {
  background:
    linear-gradient(180deg, transparent 0%, rgba(6, 16, 22, 0.36) 28%, rgba(5, 12, 18, 0.66) 100%),
    repeating-linear-gradient(180deg,
      rgba(255, 255, 255, 0.02) 0,
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px,
      transparent 5px);
  opacity: 0;
  transition: opacity 900ms ease;
  z-index: -1;
}

body.is-site-visible::before {
  opacity: 0.5;
}

body.is-site-visible::after {
  opacity: 0.4;
}

.dot-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 900ms ease;
}

body.is-site-visible .dot-grid {
  opacity: 0.94;
}

.cursor-orb {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 140;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-100px, -100px, 0);
  transition:
    opacity 180ms ease,
    width 180ms ease,
    height 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.96) 0%, rgba(219, 255, 252, 0.92) 34%, rgba(113, 245, 234, 0.5) 58%, rgba(113, 245, 234, 0.08) 74%, rgba(113, 245, 234, 0) 82%);
  box-shadow: none;
  mix-blend-mode: screen;
}

.cursor-orb.is-visible {
  opacity: 1;
}

.cursor-orb.is-pressed {
  width: 10px;
  height: 10px;
  box-shadow: none;
}

a,
button,
input,
textarea,
select {
  font: inherit;
}

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

button {
  border: 0;
  border-radius: var(--radius-button);
  background: none;
  cursor: pointer;
  color: inherit;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-shell {
  position: relative;
  z-index: 2;
  width: min(100%, calc(var(--max-width) + (var(--site-gutter) * 2)));
  margin: 0 auto;
  padding: 0 var(--site-gutter) 36px;
  transition:
    opacity 400ms ease,
    transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

body.is-intro-active .page-shell {
  opacity: 0;
  transform: translateY(20px) scale(0.992);
  pointer-events: none;
}

body.is-intro-leaving .page-shell {
  opacity: 0;
  transform: translateY(10px) scale(0.996);
  pointer-events: none;
}

body.is-site-visible .page-shell {
  opacity: 1;
  transform: none;
}

.intro {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: #01050a;
  transition:
    opacity 400ms ease,
    visibility 400ms ease,
    transform 600ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 400ms ease;
}

body.is-intro-leaving .intro {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.035);
  filter: blur(12px);
  pointer-events: none;
}

body.is-site-visible .intro {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: none;
}

.topbar {
  --topbar-progress: 0;
  position: sticky;
  top: 0;
  z-index: 50;
  margin-inline: calc(50% - 50vw);
  border-bottom: 1px solid rgba(113, 245, 234, 0.1);
  background: rgba(0, 3, 7, 0.94);
  backdrop-filter: blur(18px);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.16),
    inset 0 -1px 0 rgba(255, 255, 255, 0.02);
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 720ms ease,
    transform 820ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 220ms ease,
    box-shadow 220ms ease;
  will-change: transform, opacity;
  overflow: clip;
}

body.is-intro-active .topbar,
body.is-intro-leaving .topbar {
  opacity: 0;
  transform: translateY(-72px);
}

body.is-site-visible .topbar {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 140ms;
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  min-height: var(--topbar-height);
  width: 100%;
  margin: 0;
  padding: 0;
}

.topbar__progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(113, 245, 234, 0.02), rgba(113, 245, 234, 0.08), rgba(113, 245, 234, 0.02));
}

.topbar__progress-bar {
  position: relative;
  display: block;
  width: calc(var(--topbar-progress) * 100%);
  max-width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(113, 245, 234, 0.38) 0%, rgba(113, 245, 234, 0.96) 52%, rgba(214, 255, 251, 0.98) 100%);
  box-shadow:
    0 0 10px rgba(113, 245, 234, 0.18),
    0 0 18px rgba(29, 240, 225, 0.1);
  transition:
    width 120ms ease-out,
    box-shadow 180ms ease;
}

.topbar__progress-bar::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 22px;
  height: 10px;
  transform: translate(40%, -50%);
  background: radial-gradient(circle, rgba(214, 255, 251, 0.95) 0%, rgba(113, 245, 234, 0.48) 42%, rgba(113, 245, 234, 0) 100%);
  filter: blur(4px);
  opacity: clamp(0, calc(var(--topbar-progress) * 1.35), 1);
}

.brand,
.hero-title,
.price-card__price {
  font-family: "Baumans", sans-serif;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
}

.brand__logo {
  display: block;
  width: clamp(92px, 7.4vw, 124px);
  height: auto;
  filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.05));
}

.topbar__nav,
.eyebrow {
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.topbar__nav {
  display: flex;
  align-items: center;
  color: rgba(233, 245, 243, 0.9);
  font-size: 0.96rem;
}

.topbar__nav {
  justify-self: center;
  gap: clamp(18px, 2.2vw, 42px);
  letter-spacing: 0.01em;
  text-transform: none;
  font-size: 1.06rem;
}

.topbar__nav a {
  position: relative;
  padding: 6px 0;
  font-weight: 300;
}

.topbar__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: rgba(113, 245, 234, 0.8);
  transition: transform 220ms ease, opacity 220ms ease;
  opacity: 0.7;
}

.topbar__nav a:hover::after,
.topbar__nav a:focus-visible::after {
  transform: scaleX(1);
}

.topbar__language {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 72px;
  height: 58px;
  padding: 0 14px 0 26px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  box-shadow: none;
  color: #ffffff;
  font-family: inherit;
  font-weight: 400;
  font-size: 1.03rem;
  letter-spacing: 0.06em;
  transition:
    transform 220ms ease,
    opacity 220ms ease;
  margin-left: 10px;
  overflow: hidden;
}

.topbar__language::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 11px;
  bottom: 11px;
  width: 10px;
  background: radial-gradient(
    ellipse at center,
    rgba(113, 245, 234, 0.32) 0%,
    rgba(113, 245, 234, 0) 72%
  );
  pointer-events: none;
}

.topbar__language::after {
  content: "";
  position: absolute;
  left: 17px;
  top: 11px;
  bottom: 11px;
  width: 2px;
  background: linear-gradient(to bottom,
    rgba(113, 245, 234, 0) 0%,
    rgba(113, 245, 234, 0.98) 50%,
    rgba(113, 245, 234, 0) 100%
  );
  filter: drop-shadow(0 0 5px rgba(113, 245, 234, 0.78));
  pointer-events: none;
}

.topbar__language-label {
  position: relative;
  display: inline-block;
  min-width: 1.4em;
  text-align: center;
  color: rgba(240, 248, 250, 0.96);
}

.topbar__language:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

.section {
  position: relative;
  padding: 120px 0;
  scroll-margin-top: calc(var(--topbar-height) + 24px);
}

.hero {
  display: block;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  padding-inline: var(--site-gutter);
  min-height: calc(100vh - var(--topbar-height) - 24px);
  padding-top: 42px;
  padding-bottom: 112px;
  overflow: visible;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  transition:
    opacity 820ms ease,
    transform 1100ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero::before {
  display: none;
  left: clamp(18vw, 21vw, 360px);
  right: clamp(-8px, 0.4vw, 12px);
  bottom: calc(clamp(-56px, -4.8vh, -12px) + 1px);
  height: 1px;
  background: linear-gradient(90deg,
      rgba(113, 245, 234, 0) 0%,
      rgba(113, 245, 234, 0.78) 8%,
      rgba(214, 255, 251, 0.92) 78%,
      rgba(255, 255, 255, 0.98) 92%,
      rgba(255, 255, 255, 0) 100%);
  box-shadow:
    0 0 10px rgba(113, 245, 234, 0.1),
    0 0 24px rgba(113, 245, 234, 0.04);
}

.hero::after {
  display: none;
  right: clamp(-22px, -1vw, 10px);
  bottom: calc(clamp(-54px, -4.6vh, -10px) + 1px);
  width: min(36vw, 620px);
  height: clamp(34px, 6vh, 72px);
  background: radial-gradient(ellipse at 94% 58%,
      rgba(255, 255, 255, 0.42) 0%,
      rgba(214, 255, 251, 0.34) 14%,
      rgba(113, 245, 234, 0.2) 26%,
      rgba(113, 245, 234, 0.08) 42%,
      rgba(113, 245, 234, 0) 72%);
  filter: blur(16px);
}

.hero__copy {
  position: relative;
  z-index: 3;
  max-width: none;
  width: min(75vw, 1160px);
  padding-top: clamp(68px, 10vh, 120px);
}

.hero__visual {
  position: absolute;
  top: clamp(56px, 9vh, 116px);
  right: clamp(-28px, -1vw, 12px);
  bottom: 0;
  width: min(56vw, 980px);
  z-index: 1;
  pointer-events: none;
  overflow: visible;
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition:
    opacity 820ms ease,
    transform 1100ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero__laser {
  position: absolute;
  inset: -12% -18% -10% 4%;
  transform: translateY(-14px);
  pointer-events: none;
  opacity: 0.94;
  filter: saturate(1.08) brightness(1.02);
  mask-image: linear-gradient(90deg,
      rgba(0, 0, 0, 0.02) 0%,
      rgba(0, 0, 0, 0.22) 10%,
      rgba(0, 0, 0, 0.86) 28%,
      rgba(0, 0, 0, 1) 100%),
    linear-gradient(180deg,
      rgba(0, 0, 0, 0.52) 0%,
      rgba(0, 0, 0, 0.96) 18%,
      rgba(0, 0, 0, 1) 72%,
      rgba(0, 0, 0, 0.94) 100%);
  -webkit-mask-image: linear-gradient(90deg,
      rgba(0, 0, 0, 0.02) 0%,
      rgba(0, 0, 0, 0.22) 10%,
      rgba(0, 0, 0, 0.86) 28%,
      rgba(0, 0, 0, 1) 100%),
    linear-gradient(180deg,
      rgba(0, 0, 0, 0.52) 0%,
      rgba(0, 0, 0, 0.96) 18%,
      rgba(0, 0, 0, 1) 72%,
      rgba(0, 0, 0, 0.94) 100%);
}

.hero__ambient {
  display: none;
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 400;
}

.section-tag {
  position: absolute;
  top: 30px;
  left: 0;
  z-index: 6;
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  pointer-events: none;
  transition:
    opacity 720ms ease,
    transform 980ms cubic-bezier(0.16, 1, 0.3, 1);
}

.section-tag__label {
  display: block;
  font-weight: 400;
}

.section-tag__line {
  display: none;
}

.process,
.pricing {
  --section-tag-sticky-top: calc(var(--topbar-height) + 18px);
  --section-tag-sticky-space: 44px;
}

.hero .section-tag {
  left: clamp(24px, 4vw, 56px);
}

.section:not(.hero) .section-tag {
  right: 0;
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 24px);
  width: auto;
  max-width: 100%;
}

.section-tag--sticky {
  --sticky-tag-progress: 0;
  --sticky-tag-fade-start: 0.84;
  --sticky-tag-fade-factor: 6.25;
  position: sticky;
  top: var(--section-tag-sticky-top);
  left: 0;
  right: 0;
  z-index: 14;
  width: 100%;
  max-width: none;
  padding: 6px 0 12px;
  background: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.process .section-tag--sticky {
  --sticky-tag-progress: var(--process-progress, 0);
  --sticky-tag-fade-start: 0.84;
  --sticky-tag-fade-factor: 6.25;
}

.pricing .section-tag--sticky {
  --sticky-tag-progress: var(--pricing-progress, 0);
  --sticky-tag-fade-start: 0.9;
  --sticky-tag-fade-factor: 10;
}

.section:not(.hero) .section-tag__label {
  flex: 0 1 auto;
  min-width: 0;
  white-space: nowrap;
}

.section:not(.hero) .section-tag__line {
  position: relative;
  display: block;
  flex: 1 1 auto;
  min-width: clamp(72px, 16vw, 220px);
  height: 1px;
  overflow: hidden;
  opacity: 0;
  transform: scaleX(0.06);
  transform-origin: left center;
  background: linear-gradient(90deg,
      rgba(113, 245, 234, 0.16) 0%,
      rgba(113, 245, 234, 0.88) 18%,
      rgba(214, 255, 251, 0.92) 62%,
      rgba(113, 245, 234, 0.58) 100%);
  box-shadow: 0 0 0 rgba(113, 245, 234, 0);
  transition:
    opacity 360ms ease 80ms,
    transform 880ms cubic-bezier(0.16, 1, 0.3, 1) 80ms,
    box-shadow 260ms ease;
}

.section:not(.hero) .section-tag__line::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -18%;
  width: min(22%, 168px);
  min-width: 74px;
  height: 10px;
  transform: translateY(-50%);
  border-radius: 999px;
  opacity: 0;
  background: linear-gradient(90deg,
      rgba(113, 245, 234, 0) 0%,
      rgba(113, 245, 234, 0.24) 22%,
      rgba(214, 255, 251, 0.98) 50%,
      rgba(113, 245, 234, 0.36) 76%,
      rgba(113, 245, 234, 0) 100%);
  filter: blur(4px);
}

.section-tag.is-visible {
  opacity: 1;
  transform: none;
}

.section-tag--sticky.is-visible {
  opacity: clamp(0,
      calc(1 - ((var(--sticky-tag-progress, 0) - var(--sticky-tag-fade-start, 0.84)) * var(--sticky-tag-fade-factor, 6.25))),
      1);
}

.section:not(.hero) .section-tag.is-visible .section-tag__line {
  opacity: 0.82;
  transform: scaleX(1);
}

.section:not(.hero) .section-tag.is-signal-active .section-tag__line {
  animation: sectionSignalPulse 2.6s ease-in-out 1.05s infinite;
}

.section:not(.hero) .section-tag.is-signal-active .section-tag__line::after {
  animation: sectionSignalSweep 1.05s cubic-bezier(0.18, 0.92, 0.24, 1) both;
}

.hero .eyebrow,
.hero-title,
.hero__subtitle,
.hero__actions,
.hero__visual {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition:
    opacity 820ms ease,
    transform 1100ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero .eyebrow {
  transition-delay: 0ms;
}

.hero-title {
  display: block;
  margin: 0;
  font-size: clamp(2.5rem, 5.4vw, 4.9rem);
  line-height: 1.02;
  transition-delay: 70ms;
}

.hero-title-line {
  display: block;
}

.hero-title-line--primary {
  font-size: 0.92em;
}

.hero-title-line--highlight {
  display: block;
  color: var(--accent);
  font-size: 1.06em;
  margin-top: 0.18em;
  white-space: nowrap;
}

.hero-word {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, 0.78em, 0) scale(0.92);
  filter: blur(10px);
  transition:
    opacity 420ms ease,
    transform 650ms cubic-bezier(0.2, 1, 0.22, 1),
    filter 650ms ease;
}

.hero-word.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.hero__subtitle {
  max-width: 44rem;
  margin: 40px 0 0;
  font-size: clamp(1.15rem, 1.78vw, 1.36rem);
  line-height: 1.74;
  color: #ffffff;
  transition-delay: 160ms;
}

.hero__actions,
.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero__actions {
  align-items: center;
  justify-content: flex-start;
  width: fit-content;
  max-width: 100%;
  gap: 10px;
  margin-left: 0;
  margin-top: 46px;
  transition-delay: 250ms;
}

.hero__actions .button {
  min-height: 56px;
}

.hero__actions .button+.button {
  margin-left: 0;
}

.hero.is-armed .eyebrow,
.hero.is-armed .hero-title,
.hero.is-armed .hero__subtitle,
.hero.is-armed .hero__actions,
.hero.is-armed .hero__visual {
  opacity: 1;
  transform: none;
}

.hero.is-armed::before,
.hero.is-armed::after {
  opacity: 1;
  transform: none;
}

.laser-flow-container {
  position: relative;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.laser-flow-canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.hero.is-armed .section-tag {
  opacity: 1;
  transform: none;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 12px 50px 13px;
  border: 1px solid transparent;
  border-radius: var(--radius-button);
  overflow: hidden;
  background: transparent;
  color: var(--accent-ice);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
  isolation: isolate;
  transition:
    transform 180ms ease,
    filter 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  pointer-events: none;
  transition:
    filter 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.button:hover::before,
.button:focus-visible::before {
  filter: saturate(1.04) brightness(1.03);
}

.button--primary {
  color: #021018;
  border-color: rgba(6, 210, 197, 0.9);
  border-radius: inherit;
  background: linear-gradient(135deg, #16f0e2 0%, #06d2c5 100%);
  box-shadow:
    0 0 0 1px rgba(6, 210, 197, 0.08),
    0 18px 30px rgba(6, 210, 197, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  padding-left: 52px;
  padding-right: 52px;
}

.button--primary::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0) 44%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 36%);
}

.button--ghost {
  border-color: rgba(6, 210, 197, 0.9);
  border-radius: inherit;
  background: rgba(4, 14, 18, 0.18);
  box-shadow:
    inset 0 0 0 1px rgba(6, 210, 197, 0.08),
    0 0 0 1px rgba(6, 210, 197, 0.04);
  padding-left: 52px;
  padding-right: 52px;
}

.button--ghost::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0) 42%),
    radial-gradient(circle at 14% 18%, rgba(113, 245, 234, 0.1), rgba(113, 245, 234, 0) 54%);
}

.button--micro {
  min-height: 42px;
  padding: 9px 30px 10px;
  font-size: 0.86rem;
}

.button--micro.button--primary {
  padding-left: 30px;
  padding-right: 30px;
}

.button--micro.button--ghost {
  padding-left: 30px;
  padding-right: 30px;
}

@media (min-width: 641px) {
  .button,
  .button::before,
  .hero__actions .button,
  .targets__actions .button,
  .process__actions .button,
  .contact__actions .button {
    border-radius: 4px;
  }
}

.contact__panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(7, 18, 28, 0.75), rgba(3, 10, 16, 0.92));
  box-shadow: var(--shadow);
  isolation: isolate;
}

.contact__panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 74px;
  height: 12px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(90deg, rgba(113, 245, 234, 0.48), rgba(113, 245, 234, 0));
  opacity: 0.55;
  pointer-events: none;
}

@keyframes heroHorizonShift {

  0%,
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.64;
  }

  50% {
    transform: translate3d(1.5%, 0, 0);
    opacity: 0.9;
  }
}

@keyframes heroTrailLeft {

  0%,
  100% {
    transform: skewX(28deg) translateY(1px) scaleX(0.98);
    opacity: 0.66;
  }

  50% {
    transform: skewX(28deg) translateY(-2px) scaleX(1.04);
    opacity: 0.92;
  }
}

@keyframes heroTrailRight {

  0%,
  100% {
    transform: skewX(-22deg) translateY(1px) scaleX(0.98);
    opacity: 0.62;
  }

  50% {
    transform: skewX(-22deg) translateY(-2px) scaleX(1.05);
    opacity: 0.88;
  }
}

@keyframes heroFogFloat {

  0%,
  100% {
    transform: translate3d(-4%, 0, 0) scale(0.98);
    opacity: 0.72;
  }

  50% {
    transform: translate3d(4%, -10%, 0) scale(1.04);
    opacity: 0.92;
  }
}

@keyframes heroFogPulse {

  0%,
  100% {
    transform: translate3d(-4%, -2%, 0) scale(0.94);
    opacity: 0.56;
  }

  50% {
    transform: translate3d(5%, 3%, 0) scale(1.08);
    opacity: 0.88;
  }
}

@keyframes heroFogBase {

  0%,
  100% {
    transform: translate3d(-3%, 0, 0) scale(0.98);
    opacity: 0.5;
  }

  50% {
    transform: translate3d(4%, -6%, 0) scale(1.06);
    opacity: 0.76;
  }
}

@keyframes heroPortalPulse {

  0%,
  100% {
    transform: translateX(-50%) scaleX(0.94);
    opacity: 0.74;
  }

  50% {
    transform: translateX(-50%) scaleX(1.06);
    opacity: 0.98;
  }
}

@keyframes heroHaloShift {

  0%,
  100% {
    transform: translate(-2%, -8%) scale(0.96);
    opacity: 0.42;
  }

  50% {
    transform: translate(2%, -4%) scale(1.04);
    opacity: 0.68;
  }
}

.pricing__note {
  color: var(--text-muted);
}

.solution {
  position: relative;
  padding-bottom: 110px;
}

.solution .section-tag {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 24px);
  transform: translateY(-50%);
  opacity: 1;
  pointer-events: none;
}

.solution .section-tag__label {
  flex: 0 1 auto;
}

.section.solution .section-tag__line {
  position: relative;
  display: block;
  flex: 1 1 auto;
  min-width: clamp(72px, 16vw, 220px);
  height: 1px;
  opacity: 1;
  transform: none;
  background: linear-gradient(90deg,
      rgba(113, 245, 234, 0.16) 0%,
      rgba(113, 245, 234, 0.82) 18%,
      rgba(214, 255, 251, 0.92) 62%,
      rgba(113, 245, 234, 0.58) 100%);
  box-shadow: none;
  overflow: visible;
}

.solution .section-tag__line::after {
  display: none;
  content: none;
}

.solution .section-tag.is-visible,
.solution .section-tag.is-signal-active {
  opacity: 1;
  transform: translateY(-50%);
}

.solution .section-tag.is-visible .section-tag__line,
.solution .section-tag.is-signal-active .section-tag__line {
  opacity: 1;
  transform: none;
  animation: none;
  box-shadow: none;
}

.solution__head {
  position: relative;
  z-index: 3;
  max-width: 68rem;
  margin-top: 18px;
}

.solution__headline {
  margin: 0;
  color: rgba(247, 251, 251, 0.98);
  font-family: "Baumans", cursive;
  font-weight: 400;
  font-size: clamp(2.6rem, 4.5vw, 5.3rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.solution__headline-primary {
  color: rgba(247, 251, 251, 0.98);
}

.solution__headline-secondary {
  color: rgba(172, 182, 194, 0.74);
}

.solution__grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(54px, 8vw, 92px);
}

.solution-panel {
  position: relative;
  display: grid;
  grid-template-rows: minmax(180px, 1fr) auto;
  min-height: 540px;
  padding: 0 clamp(22px, 2vw, 38px) 0;
  transition: background 260ms ease;
}

.solution-panel+.solution-panel {
  border-left: 0;
}

.solution-panel+.solution-panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: clamp(22px, 3vw, 42px);
  bottom: clamp(18px, 3vw, 34px);
  width: 1px;
  background: linear-gradient(180deg,
      rgba(113, 245, 234, 0) 0%,
      rgba(113, 245, 234, 0.56) 14%,
      rgba(113, 245, 234, 0.22) 48%,
      rgba(113, 245, 234, 0.08) 76%,
      rgba(113, 245, 234, 0) 100%);
  pointer-events: none;
}

.solution-panel__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 160px;
  padding: 2px 0 4px;
  overflow: visible;
}

.solution-asset {
  display: block;
  width: min(100%, 260px);
  max-height: 160px;
  object-fit: contain;
  overflow: visible;
  box-sizing: border-box;
  padding: 2px;
  opacity: 0.95;
  filter: drop-shadow(0 0 0 rgba(113, 245, 234, 0));
  transform-origin: center;
  transition:
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 320ms ease,
    filter 320ms ease;
}

.solution-asset--team {
  width: min(100%, 250px);
}

.solution-asset--cost {
  width: min(100%, 240px);
}

.solution-asset--velocity {
  width: min(100%, 258px);
}

.solution-panel__body {
  max-width: 24rem;
  padding-bottom: 8px;
}

.solution-panel h3 {
  margin: 0 0 14px;
  font-family: "Baumans", cursive;
  font-size: clamp(1.75rem, 2.2vw, 2.35rem);
  font-weight: 400;
}

.solution-panel p,
.price-card p,
.contact-form label,
.contact-form input,
.contact-form textarea,
.contact-form select {
  font-size: 1.02rem;
  line-height: 1.72;
}

.solution-panel p,
.price-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
}

.solution-panel p {
  font-size: 1.18rem;
}

.solution-panel:hover .solution-asset {
  opacity: 1;
  transform: scale(1.05);
  filter: drop-shadow(0 0 20px rgba(124, 255, 247, 0.36)) brightness(0) saturate(100%) invert(88%) sepia(21%) saturate(1148%) hue-rotate(125deg) brightness(103%) contrast(101%);
}

.solution-panel:hover .solution-asset--team {
  transform: translateY(-6px) scale(1.028);
}

.solution-panel:hover .solution-asset--cost {
  transform: translate3d(0, -4px, 0) rotate(-1.25deg) scale(1.02);
}

.solution-panel:hover .solution-asset--velocity {
  transform: translateX(12px) scale(1.024);
}

@media (min-width: 1081px) {
  .solution-panel {
    grid-template-rows: 188px auto;
    align-content: start;
  }

  .solution-panel__visual {
    min-height: 0;
    height: 100%;
    place-items: start center;
    padding: 2px 0 0;
    align-self: start;
  }

  .solution-panel__body,
  .solution-panel h3 {
    align-self: start;
  }
}

@media (min-width: 921px) and (max-width: 1080px) {
  .solution-panel {
    align-items: start;
    align-self: start;
  }

  .solution-panel h3,
  .solution-panel__visual {
    align-self: start;
  }

  .solution-panel__visual {
    place-items: start center;
  }
}

.targets {
  position: relative;
  min-height: 100vh;
  padding-top: 0;
  --targets-progress: 0;
  --targets-border-progress: 0;
  --targets-sticky-top: calc(var(--topbar-height) + 18px);
}

.targets__sticky {
  position: sticky;
  top: var(--targets-sticky-top);
  display: grid;
  grid-template-rows: auto auto auto auto;
  gap: clamp(18px, 2.2vw, 30px);
  min-height: calc(100vh - var(--targets-sticky-top) - 18px);
  align-content: start;
  padding-bottom: 8px;
}

.targets .section-tag {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  width: 100%;
  max-width: none;
  margin: 0;
  padding-top: 4px;
}

.targets__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: start;
  justify-items: center;
  margin: 0;
}

.targets__intro p {
  margin: 0;
  max-width: 32rem;
  color: #ffffff;
  font-family: "Jost", sans-serif;
  font-weight: 300;
  font-size: clamp(1.24rem, 1.5vw, 1.62rem);
  line-height: 1.52;
}

.targets__intro-line--mobile-break {
  display: inline;
}

.targets__tabs {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(100%, 1180px);
  min-height: clamp(72px, 10.2vw, 90px);
  padding: 14px 0 8px;
  margin: 0 auto;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
  z-index: 3;
}

.targets__tabs::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  right: 0;
  width: auto;
  height: 1px;
  background: linear-gradient(90deg,
      rgba(6, 210, 197, 0.06) 0%,
      rgba(6, 210, 197, 0.86) 50%,
      rgba(6, 210, 197, 0) 100%);
  opacity: 0.9;
  pointer-events: none;
}

.targets__tabs::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 2px;
  height: 14px;
  background: rgba(6, 210, 197, 0.94);
  transform: translateX(-50%);
  pointer-events: none;
}

.targets__tab {
  --target-tab-x: 0px;
  --target-tab-y: 0px;
  --target-tab-scale: 0.72;
  --target-tab-opacity: 0.34;
  --target-tab-z: 1;
  position: absolute;
  left: 50%;
  top: 60%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 0 8px 8px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: rgba(200, 214, 222, 0.5);
  font-family: "Jost", sans-serif;
  font-weight: 300;
  font-size: clamp(1.08rem, 2.45vw, 1.95rem);
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
  opacity: var(--target-tab-opacity);
  z-index: var(--target-tab-z);
  transform: translate(-50%, -50%) translateX(var(--target-tab-x)) translateY(var(--target-tab-y)) scale(var(--target-tab-scale));
  text-shadow: 0 0 0 rgba(113, 245, 234, 0);
  will-change: transform, opacity;
  transition:
    transform 160ms linear,
    color 220ms ease,
    opacity 160ms linear,
    text-shadow 220ms ease;
}

.targets__tab:hover,
.targets__tab:focus-visible {
  color: var(--accent);
  text-shadow: 0 0 14px rgba(29, 240, 225, 0.2);
  outline: none;
}

.targets__tab.is-active,
.targets__tab[aria-selected="true"] {
  color: var(--accent);
  opacity: 1;
  text-shadow: 0 0 14px rgba(29, 240, 225, 0.2);
}

.targets__description-block {
  position: relative;
  width: 100%;
  min-height: clamp(320px, 42vh, 430px);
}

.targets__stage {
  position: relative;
  min-height: inherit;
  margin-top: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
  isolation: isolate;
  z-index: 1;
  perspective: 1800px;
}

.targets__stage::before,
.targets__stage::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 5;
  opacity: calc(0.2 + var(--targets-border-progress) * 0.8);
}

.targets__stage::before {
  top: auto;
  bottom: 0;
  height: 1px;
  width: calc(100% * var(--targets-border-progress));
  background: linear-gradient(90deg,
      rgba(113, 245, 234, 0.96) 0%,
      rgba(113, 245, 234, 0.78) 42%,
      rgba(113, 245, 234, 0.28) 86%,
      rgba(113, 245, 234, 0) 100%);
  box-shadow: 0 0 18px rgba(29, 240, 225, 0.12);
  transform-origin: left center;
}

.targets__stage::after {
  width: 1px;
  height: calc(100% * var(--targets-border-progress));
  background: linear-gradient(180deg,
      rgba(113, 245, 234, 0.96) 0%,
      rgba(113, 245, 234, 0.74) 44%,
      rgba(113, 245, 234, 0.24) 84%,
      rgba(113, 245, 234, 0) 100%);
  box-shadow: 0 0 18px rgba(29, 240, 225, 0.12);
  transform-origin: center top;
}

.targets__panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 220ms ease;
}

.targets__panel.is-active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
  visibility: visible;
}

.targets__panel.is-leaving {
  z-index: 1;
  visibility: visible;
}

.targets__panel-surface {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
  pointer-events: none;
}

.targets__panel-surface::before,
.targets__panel-surface::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  transform-origin: top left;
  pointer-events: none;
  animation-play-state: paused;
}

.targets__panel.is-active .targets__panel-surface::before,
.targets__panel.is-active .targets__panel-surface::after {
  animation-play-state: running;
}

.targets__panel-surface::before {
  content: none;
}

.targets__panel-surface::after {
  content: none;
}

.targets__panel-content {
  position: relative;
  z-index: 4;
  display: grid;
  align-content: center;
  justify-items: center;
  height: 100%;
  padding: clamp(34px, 4vw, 56px) clamp(40px, 5vw, 80px) clamp(48px, 8vh, 84px);
  text-align: center;
  opacity: 0;
  transform: translate3d(0, 26px, 0) rotateX(-88deg);
  transform-origin: center center;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform, opacity;
  transition:
    transform 660ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 240ms ease;
}

.targets__panel.is-active .targets__panel-content {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotateX(0deg);
}

.targets__panel.is-leaving .targets__panel-content {
  opacity: 0;
  transform: translate3d(0, -22px, 0) rotateX(88deg);
}

.targets__panel h2 {
  margin: 0;
  max-width: 60rem;
  color: rgba(247, 251, 251, 0.98);
  font-family: "Baumans", cursive;
  font-weight: 400;
  font-size: clamp(2.16rem, 3.7vw, 4rem);
  line-height: 1.06;
  text-wrap: balance;
  text-shadow: 0 0 18px rgba(0, 0, 0, 0.16);
}

.targets__actions-block {
  display: grid;
  justify-items: center;
  width: 100%;
  padding-top: 8px;
}

.targets__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: fit-content;
  max-width: 100%;
}

.targets__actions--static {
  position: relative;
  bottom: auto;
  left: auto;
  transform: none;
  z-index: 1;
  width: fit-content;
  max-width: 100%;
  margin-top: 0;
  padding-inline: 0;
}

.targets__actions .button {
  min-height: 58px;
}

.targets__cta {
  min-height: 58px;
}

.process {
  padding-top: 140px;
  min-height: 300vh;
  --process-progress: 0;
  --process-axis-x: 0px;
  --process-label-gap: clamp(30px, 3vw, 48px);
  --process-title-size-active: clamp(3.5rem, 4.6vw, 5rem);
  --process-title-size-secondary: clamp(1.55rem, 2.1vw, 2.25rem);
  --process-title-size-tertiary: clamp(0.98rem, 1.35vw, 1.4rem);
}

.process__sticky {
  position: sticky;
  top: calc(var(--section-tag-sticky-top) + var(--section-tag-sticky-space));
  min-height: calc(100vh - var(--section-tag-sticky-top) - var(--section-tag-sticky-space) - 12px);
  display: grid;
  align-items: stretch;
}

.process__stage {
  position: relative;
  min-height: calc(100vh - var(--section-tag-sticky-top) - var(--section-tag-sticky-space) - 12px);
  padding: clamp(34px, 4vw, 52px) clamp(28px, 4vw, 46px) clamp(32px, 4vw, 44px) 0;
  overflow: visible;
}

.process__stage::before {
  content: "";
  position: absolute;
  pointer-events: none;
}

.process__stage::before {
  inset: 18% 10% 14% 38%;
  background:
    radial-gradient(circle at 58% 42%, rgba(113, 245, 234, 0.08), rgba(113, 245, 234, 0.025) 24%, rgba(113, 245, 234, 0) 62%);
  filter: blur(54px);
  opacity: calc(0.52 + var(--process-progress) * 0.14);
}

.process__shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(520px, 1.2fr) minmax(260px, 0.7fr);
  gap: clamp(30px, 3.8vw, 56px);
  align-items: center;
  min-height: calc(100% - 40px);
  padding-top: clamp(28px, 5vh, 56px);
}

.process__dial {
  position: relative;
  min-height: min(70vh, 700px);
  margin-left: 0;
  padding-left: 0;
  display: grid;
  align-items: center;
}

.process__dial::before,
.process__dial::after {
  display: none;
  content: none;
}

.process__dial-track {
  position: relative;
  width: 100%;
  min-height: min(70vh, 700px);
  padding-left: 0;
}

.process__dial-track::before {
  content: "";
  position: absolute;
  left: var(--process-axis-x);
  top: 8%;
  bottom: 8%;
  width: 1px;
  background: linear-gradient(
    180deg,
    rgba(113, 245, 234, 0.92) 0%,
    rgba(113, 245, 234, 0.84) 62%,
    rgba(113, 245, 234, 0.72) 100%
  );
}

.process__dial-track::after {
  content: "";
  position: absolute;
  left: var(--process-axis-x);
  top: 50%;
  width: clamp(20px, 2.2vw, 28px);
  height: 2px;
  transform: translateY(-50%);
  background: rgba(113, 245, 234, 0.96);
}

.process__dial-source {
  display: none;
}

.process__dial-item {
  --dial-y: 50%;
  --dial-scale: 1;
  --dial-opacity: 1;
  --dial-alpha: 0.98;
  --dial-glow: 0.08;
  position: absolute;
  left: calc(var(--process-axis-x) + var(--process-label-gap));
  top: 50%;
  width: max-content;
  max-width: min(52vw, 620px);
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  font-family: "Baumans", cursive;
  font-weight: 400;
  text-align: left;
  white-space: nowrap;
  transform: translateY(-50%);
  transition:
    color 240ms ease,
    opacity 240ms ease,
    transform 240ms ease,
    text-shadow 240ms ease;
}

.process__dial-item--far-top,
.process__dial-item--far-bottom {
  font-size: clamp(1.16rem, 1.32vw, 1.56rem);
  line-height: 1.08;
  color: rgba(240, 246, 246, 0.24);
  opacity: 0.46;
}

.process__dial-item--near-top,
.process__dial-item--near-bottom {
  font-size: clamp(1.48rem, 1.9vw, 2.18rem);
  line-height: 1.04;
  color: rgba(240, 246, 246, 0.42);
  opacity: 0.74;
}

.process__dial-item--far-top {
  top: 18%;
}

.process__dial-item--near-top {
  top: 32%;
}

.process__dial-item--active {
  top: 50%;
  font-size: clamp(3rem, 4.8vw, 5rem);
  line-height: 0.92;
  color: rgba(247, 251, 251, 0.98);
  opacity: 1;
}

.process__dial-item--near-bottom {
  top: 68%;
}

.process__dial-item--far-bottom {
  top: 82%;
}

.process.process--dial-fluid .process__dial-item {
  top: var(--dial-y, 50%);
  font-size: clamp(1.64rem, 2.12vw, 2.46rem);
  line-height: 0.98;
  color: rgba(247, 251, 251, var(--dial-alpha, 0.42));
  opacity: var(--dial-opacity, 0.74);
  transform: translateY(-50%) scale(var(--dial-scale, 1));
  transform-origin: left center;
  transition:
    color 180ms ease,
    opacity 120ms linear,
    transform 120ms linear,
    text-shadow 180ms ease;
  will-change: top, transform, opacity;
}

.process.process--dial-fluid .process__dial-item--far-top,
.process.process--dial-fluid .process__dial-item--near-top,
.process.process--dial-fluid .process__dial-item--active,
.process.process--dial-fluid .process__dial-item--near-bottom,
.process.process--dial-fluid .process__dial-item--far-bottom {
  top: var(--dial-y, 50%);
}

.process.process--dial-fluid .process__dial-item.is-active {
  color: rgba(247, 251, 251, 0.98);
}

.process__dial-item.is-spare {
  opacity: 0;
  color: transparent;
  text-shadow: none;
  pointer-events: none;
}

.process.process--dial-fluid .process__dial-item.is-spare {
  opacity: 0;
  color: transparent;
  transform: translateY(-50%) scale(0.58);
}

.process__dial-item.is-active {
  color: rgba(247, 251, 251, 0.98);
  opacity: 1;
  text-shadow: 0 0 18px rgba(29, 240, 225, var(--dial-glow, 0.08));
}

.process__dial-item:focus-visible {
  outline: none;
  color: rgba(247, 251, 251, 0.98);
  opacity: 1;
}

.process__content {
  width: min(100%, 39rem);
  justify-self: center;
  display: grid;
  grid-template-rows: auto auto;
  align-content: center;
  justify-items: center;
  gap: clamp(26px, 3.2vh, 40px);
  min-height: min(58vh, 560px);
  padding-right: 0;
}

.process__visuals {
  position: relative;
  width: min(100%, 30rem);
  min-height: 288px;
  perspective: 1200px;
}

.process-visual {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  isolation: isolate;
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(0.9) rotateY(-80deg);
  transform-origin: center center;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transition:
    opacity 480ms ease,
    transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

.process-icon {
  width: clamp(120px, 14vw, 180px);
  height: auto;
  z-index: 1;
  filter: drop-shadow(0 0 12px rgba(113, 245, 234, 0.1));
}

.process-visual::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: clamp(140px, 17vw, 220px);
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(113, 245, 234, 0.12), rgba(113, 245, 234, 0.04) 36%, rgba(113, 245, 234, 0) 72%);
  filter: blur(18px);
  z-index: -2;
}

.process-visual::after {
  display: none;
}

.process-visual--plan::after {
  width: clamp(180px, 20vw, 240px);
  aspect-ratio: 0.92;
}



.process-visual.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1) rotateY(0deg);
}

.process-visual.is-leaving {
  opacity: 0;
  transform: translate3d(0, -12px, 0) scale(0.9) rotateY(80deg);
}

.process__panels {
  position: relative;
  width: min(100%, 38rem);
  min-height: clamp(164px, 20vh, 244px);
  display: grid;
  justify-items: center;
  align-items: center;
  text-align: center;
}

.process-panel {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(100%, 38rem);
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) rotateY(90deg);
  transform-origin: center center;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transition:
    opacity 360ms ease,
    transform 480ms cubic-bezier(0.25, 1, 0.5, 1);
}

.process-panel.is-active {
  opacity: 1;
  transform: translate3d(-50%, -50%, 0) rotateY(0deg);
}

.process-panel.is-leaving {
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) rotateY(-90deg);
}

.process-panel p {
  margin: 0;
  max-width: 38rem;
  margin-inline: auto;
  color: #ffffff;
  font-family: "Jost", sans-serif;
  font-weight: 300;
  font-size: clamp(1.08rem, 1.38vw, 1.46rem);
  line-height: 1.48;
  text-align: center;
}



.process__mobile {
  display: none;
  position: sticky;
  top: var(--topbar-height);
  width: 100%;
  z-index: 10;
}

.process-mobile__tabs {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: clamp(72px, 10.2vw, 90px);
  padding: 14px 0 8px;
  margin: 0;
  overflow: hidden;
}

.process-mobile__tabs::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  right: 0;
  width: auto;
  height: 1px;
  background: linear-gradient(90deg,
      rgba(6, 210, 197, 0.06) 0%,
      rgba(6, 210, 197, 0.86) 50%,
      rgba(6, 210, 197, 0) 100%);
  opacity: 0.9;
}

.process-mobile__tabs::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 2px;
  height: 14px;
  background: rgba(6, 210, 197, 0.94);
  transform: translateX(-50%);
}

.process-mobile__tab {
  --process-mobile-tab-x: 0px;
  --process-mobile-tab-y: 0px;
  --process-mobile-tab-scale: 0.72;
  --process-mobile-tab-opacity: 0.34;
  --process-mobile-tab-z: 1;
  position: absolute;
  left: 50%;
  top: 60%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 0 8px 8px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(200, 214, 222, 0.5);
  font-size: clamp(0.86rem, 3.6vw, 1.04rem);
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
  opacity: var(--process-mobile-tab-opacity);
  z-index: var(--process-mobile-tab-z);
  transform: translate(-50%, -50%) translateX(var(--process-mobile-tab-x)) translateY(var(--process-mobile-tab-y)) scale(var(--process-mobile-tab-scale));
  text-shadow: 0 0 0 rgba(113, 245, 234, 0);
  transition:
    transform 160ms linear,
    opacity 160ms linear,
    color 220ms ease,
    text-shadow 220ms ease;
}

.process-mobile__tab.is-active,
.process-mobile__tab[aria-selected="true"] {
  color: var(--accent);
  opacity: 1;
  text-shadow: 0 0 14px rgba(29, 240, 225, 0.2);
}

.process-mobile__tab:focus-visible {
  outline: none;
  color: var(--accent);
}

.process-mobile__stage {
  position: relative;
  margin-top: 2px;
  min-height: clamp(360px, 56vh, 450px);
  padding-top: 2px;
  border-top: 1px solid rgba(6, 210, 197, 0.3);
  border-bottom: 0;
  perspective: none;
}

.process-mobile__panel {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: auto auto;
  align-content: center;
  justify-items: center;
  gap: clamp(14px, 2.8vh, 24px);
  padding: clamp(10px, 2.2vh, 18px) 10px 0;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, 14px, 0) scale(0.98);
  transform-origin: center center;
  transform-style: flat;
  backface-visibility: visible;
  transition:
    opacity 320ms ease,
    transform 380ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 320ms ease;
}

.process-mobile__panel.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
}

.process-mobile__panel.is-leaving {
  opacity: 0;
  transform: translate3d(0, -10px, 0) scale(0.975);
}

.process-mobile__visual {
  display: grid;
  place-items: center;
  width: 100%;
  perspective: 1200px;
}

.process-mobile__icon {
  width: min(44vw, 170px);
  height: auto;
  object-fit: contain;
  opacity: 0;
  transform: rotateY(-88deg) scale(0.9);
  transform-origin: center center;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  filter: drop-shadow(0 0 12px rgba(6, 210, 197, 0.14));
  transition:
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 340ms ease,
    filter 220ms ease;
}

.process-mobile__panel.is-active .process-mobile__icon {
  opacity: 0.9;
  transform: rotateY(0deg) scale(1);
}

.process-mobile__panel.is-leaving .process-mobile__icon {
  opacity: 0;
  transform: rotateY(86deg) scale(0.92);
}

.process-mobile__panel p {
  margin: 0;
  width: min(100%, 34ch);
  max-width: 34ch;
  color: rgba(244, 248, 248, 0.94);
  font-size: clamp(0.94rem, 3.4vw, 1.08rem);
  line-height: 1.5;
  text-align: center;
}

.process__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
}

.pricing {
  padding-bottom: 72px;
}

.pricing__sticky {
  position: sticky;
  top: calc(var(--section-tag-sticky-top) + var(--section-tag-sticky-space));
  min-height: calc(100vh - var(--section-tag-sticky-top) - var(--section-tag-sticky-space) - 18px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: clamp(12px, 2vh, 22px);
}

.pricing__stage {
  position: relative;
  width: 100%;
  min-height: min(78vh, 760px);
  padding: clamp(34px, 6vh, 74px) 0 clamp(18px, 3vh, 26px);
  perspective: 1800px;
  transform-style: preserve-3d;
}

.pricing__stage::before,
.pricing__stage::after {
  display: none;
}

.pricing__grid {
  position: relative;
  height: min(68vh, 640px);
  transform-style: preserve-3d;
}

.price-card {
  --card-line-progress: 0;
  --card-headline-progress: 0;
  --card-body-progress: 0;
  position: absolute;
  left: 50%;
  top: 46%;
  width: min(100%, 540px);
  min-height: 470px;
  padding: 0 34px;
  transform: translate3d(-50%, -50%, 0) var(--price-card-runtime-transform, translate3d(0px, 0px, 0) scale(1));
  transform-style: preserve-3d;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  backface-visibility: hidden;
  overflow: visible;
  isolation: isolate;
  will-change: transform;
  opacity: 1;
  cursor: default;
  transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.price-card::before,
.price-card::after {
  content: none;
}

.price-card__surface {
  display: none;
}

.price-card__content {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: clamp(26px, 2.9vh, 36px);
  min-height: 100%;
  padding-top: 26px;
  text-align: center;
  transform: none;
  opacity: 1;
  transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.price-card__title {
  margin: 0;
  color: rgba(255, 255, 255, calc(0.1 + var(--card-headline-progress) * 0.9));
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: clamp(1.67rem, 2.24vw, 2.18rem);
  line-height: 1.18;
  transform: translateY(calc((1 - var(--card-headline-progress)) * 18px));
  opacity: var(--card-headline-progress);
  transition:
    color 220ms ease,
    transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.price-card__line {
  display: block;
  width: 100%;
  height: 1px;
  transform-origin: center;
  transform: scaleX(calc(0.12 + var(--card-line-progress) * 0.88));
  opacity: calc(0.18 + var(--card-line-progress) * 0.82);
}

.price-card__line--top {
  background: linear-gradient(90deg,
      rgba(113, 245, 234, 0) 0%,
      rgba(113, 245, 234, 0.16) 14%,
      rgba(113, 245, 234, 0.3) 50%,
      rgba(113, 245, 234, 0.16) 86%,
      rgba(113, 245, 234, 0) 100%);
}

.price-card__line--bottom {
  background: linear-gradient(90deg,
      rgba(6, 210, 197, 0) 0%,
      rgba(6, 210, 197, 0.26) 14%,
      rgba(6, 210, 197, 0.9) 50%,
      rgba(6, 210, 197, 0.26) 86%,
      rgba(6, 210, 197, 0) 100%);
}

.price-card__price {
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  margin: 0;
  white-space: nowrap;
  transform: translateY(calc((1 - var(--card-headline-progress)) * 18px));
  opacity: var(--card-headline-progress);
  transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.price-card__price-amount {
  color: rgba(6, 210, 197, 0.98);
  font-family: "Baumans", sans-serif;
  font-weight: 400;
  font-size: clamp(4.3rem, 6.2vw, 6.2rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  transition: color 220ms ease;
}

.price-card__price-suffix {
  padding-bottom: 0.18em;
  color: rgba(22, 240, 226, 0.98);
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: clamp(1.95rem, 2.65vw, 2.82rem);
  line-height: 1;
  transition: color 220ms ease;
}

.price-card p.price-card__description {
  margin: 0;
  max-width: 40ch;
  color: rgba(225, 234, 238, 0.92);
  font-size: clamp(0.95rem, 1.35vw, 1.45rem) !important;
  line-height: 1.58;
  text-align: center;
  transform: translateY(calc((1 - var(--card-body-progress)) * 20px));
  opacity: var(--card-body-progress);
  transition:
    transform 240ms cubic-bezier(0.16, 1, 0.3, 1),
    color 220ms ease;
}

.price-card__description strong,
.price-card__description span {
  display: block;
}

.price-card__description strong {
  margin-bottom: 6px;
  color: rgba(247, 251, 251, 0.98);
  font-weight: 600;
  white-space: nowrap;
  transition: color 220ms ease;
}

.price-card__description span {
  color: rgba(225, 234, 238, 0.9);
  transition: color 220ms ease;
}

.pricing__note {
  margin: -50px auto 0;
  max-width: 70rem;
  text-align: center;
  font-size: 1.24rem;
  line-height: 1.25;
  color: rgba(194, 205, 213, 0.72);
  opacity: var(--pricing-body-progress, 0);
  transform: translateY(calc((1 - var(--pricing-body-progress, 0)) * 18px));
}

.pricing__note-highlight {
  color: var(--accent);
}

@media (min-width: 921px) {
  .pricing__note-break {
    display: block;
    margin-top: 0.15rem;
  }
}

@media (pointer: fine) and (min-width: 921px) {
  .pricing.is-hover-ready .price-card:hover {
    transform: translate3d(-50%, -50%, 0) var(--price-card-runtime-transform, translate3d(0px, 0px, 0) scale(1));
  }

  .pricing.is-hover-ready .price-card:hover .price-card__content {
    transform: none;
  }

  .pricing.is-hover-ready .price-card:hover .price-card__title,
  .pricing.is-hover-ready .price-card:hover .price-card__description strong,
  .pricing.is-hover-ready .price-card:hover .price-card__description span {
    color: rgba(22, 240, 226, 0.98);
  }

  .pricing.is-hover-ready .price-card:hover .price-card__price-amount,
  .pricing.is-hover-ready .price-card:hover .price-card__price-suffix {
    color: rgba(247, 251, 251, 0.98);
  }

  .pricing.is-hover-ready .price-card:hover .price-card__line {
    opacity: 1;
  }
}

.contact {
  padding-bottom: 36px;
}

.contact__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(26px, 4vw, 58px);
  align-items: start;
}

.contact__intro h2 {
  margin: clamp(28px, 4vh, 44px) 0 0;
  font-family: "Baumans", cursive;
  font-weight: 400;
  font-size: clamp(2.3rem, 4.8vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: rgba(247, 251, 251, 0.98);
}

.contact__actions {
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  margin-top: clamp(40px, 5.5vh, 68px);
}

.contact__actions .button {
  min-height: 64px;
}

.contact__actions .button--primary {
  order: 1;
}

.contact__actions .button--ghost {
  order: 2;
}

.contact__preface {
  margin: clamp(24px, 3.6vh, 38px) 0 0;
  max-width: 56rem;
  color: rgba(225, 234, 238, 0.9);
  font-family: "Jost", sans-serif;
  font-weight: 300;
  font-size: clamp(1rem, 1.3vw, 1.22rem);
  line-height: 1.52;
  text-align: left;
  text-wrap: balance;
}

.contact__panel {
  position: relative;
  margin-top: clamp(54px, 8vh, 88px);
  max-height: 0;
  padding: 0 clamp(26px, 3vw, 42px);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  opacity: 0;
  transform: translateY(-12px);
  overflow: hidden;
  pointer-events: none;
  transition:
    max-height 520ms cubic-bezier(0.16, 1, 0.3, 1),
    padding 320ms ease,
    opacity 260ms ease,
    transform 260ms ease;
}

.contact__preface + .contact__panel {
  margin-top: clamp(34px, 6vh, 58px);
}

.contact__panel::before,
.contact__panel::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 220ms ease;
}

.contact__panel::before {
  top: 0;
  background: linear-gradient(90deg,
      rgba(113, 245, 234, 0) 0%,
      rgba(113, 245, 234, 0.2) 12%,
      rgba(113, 245, 234, 0.3) 50%,
      rgba(113, 245, 234, 0.2) 88%,
      rgba(113, 245, 234, 0) 100%);
}

.contact__panel::after {
  bottom: 0;
  background: linear-gradient(90deg,
      rgba(6, 210, 197, 0) 0%,
      rgba(6, 210, 197, 0.24) 12%,
      rgba(6, 210, 197, 0.8) 50%,
      rgba(6, 210, 197, 0.24) 88%,
      rgba(6, 210, 197, 0) 100%);
}

.contact__panel.is-open {
  max-height: 1100px;
  padding: clamp(20px, 2.3vh, 28px) clamp(26px, 3vw, 42px) clamp(24px, 3.2vh, 36px);
  opacity: 1;
  transform: none;
  overflow: visible;
  pointer-events: auto;
}

.contact__panel.is-engaged {
  transform: none;
}

.contact-form {
  --contact-line-gap: clamp(5px, 0.55vw, 8px);
  --contact-message-min-height: clamp(62px, 8vh, 92px);
  position: relative;
  display: grid;
  gap: clamp(50px, 5.8vw, 68px);
}

.contact-form__trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3.2vw, 46px);
}

.contact-form label,
.contact-form__field {
  display: block;
  color: var(--text-soft);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0 0 var(--contact-line-gap);
  border: 0;
  border-bottom: 1px solid rgba(6, 210, 197, 0.82);
  border-radius: 0;
  color: rgba(247, 251, 251, 0.96);
  background: transparent;
  outline: none;
  font-size: clamp(1.16rem, 1.45vw, 1.52rem);
  line-height: 1.2;
  text-align: center;
  transition:
    border-color 180ms ease,
    color 180ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: rgba(22, 240, 226, 1);
}

.contact-form textarea {
  resize: none;
  min-height: var(--contact-message-min-height);
  padding-top: 0;
  padding-bottom: var(--contact-line-gap);
  overflow-y: auto;
}

.contact-form__field--wide {
  max-width: none;
}

.contact-form__field--message textarea {
  min-height: var(--contact-message-min-height);
  line-height: 1.42;
  padding-top: 10px;
  padding-bottom: calc(var(--contact-line-gap) + 6px);
  padding-inline: clamp(10px, 2.8vw, 16px);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder,
.contact-form select::placeholder {
  color: rgba(247, 251, 251, 0.24);
  font-size: clamp(0.9rem, 1.05vw, 1rem);
  line-height: inherit;
}

.contact-form__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}

.contact-form__footer .button {
  min-height: 64px;
}

.contact-form__footer .button[disabled] {
  opacity: 0.7;
  cursor: wait;
}

.contact-form__feedback {
  min-height: 1.4em;
  width: 100%;
  font-size: 0.96rem;
  line-height: 1.4;
  text-align: center;
  color: var(--text-soft);
}

.contact-form__feedback[data-state="success"] {
  color: var(--accent);
}

.contact-form__feedback[data-state="error"] {
  color: #ff8d8d;
}

.footer {
  --footer-line-min: clamp(42px, 10vw, 112px);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(14px, 2.6vw, 26px);
  margin-top: clamp(18px, 3vh, 26px);
  padding: 18px 0 6px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: rgba(194, 205, 213, 0.78);
  overflow: visible;
}

.footer::before,
.footer::after {
  content: "";
  flex: 1 1 auto;
  min-width: var(--footer-line-min);
  height: 1px;
  opacity: 0.6;
  transform-origin: center;
  background-size: 220% 100%;
  background-position: 0% 50%;
  animation: footerLineSweep 4.2s ease-in-out infinite;
}

.footer::before {
  background: linear-gradient(90deg,
      rgba(6, 210, 197, 0) 0%,
      rgba(6, 210, 197, 0.14) 18%,
      rgba(113, 245, 234, 0.74) 50%,
      rgba(6, 210, 197, 0.14) 82%,
      rgba(6, 210, 197, 0) 100%);
}

.footer::after {
  background: linear-gradient(270deg,
      rgba(6, 210, 197, 0) 0%,
      rgba(6, 210, 197, 0.14) 18%,
      rgba(113, 245, 234, 0.74) 50%,
      rgba(6, 210, 197, 0.14) 82%,
      rgba(6, 210, 197, 0) 100%);
  animation-delay: 0.35s;
  animation-direction: reverse;
}

.footer p {
  margin: 0;
  white-space: nowrap;
  text-align: center;
}

@keyframes footerLineSweep {
  0% {
    opacity: 0.2;
    transform: scaleX(0.2);
    background-position: 0% 50%;
  }

  18% {
    opacity: 0.86;
    transform: scaleX(1);
  }

  52% {
    background-position: 100% 50%;
    opacity: 0.68;
    transform: scaleX(1);
  }

  84% {
    opacity: 0.86;
    transform: scaleX(1);
  }

  100% {
    opacity: 0.2;
    transform: scaleX(0.2);
    background-position: 200% 50%;
  }
}

@keyframes glitch {

  0%,
  100% {
    transform: translate(0);
    text-shadow:
      0 0 16px rgba(29, 240, 225, 0.36),
      0 0 0 transparent;
  }

  33% {
    transform: translate(-2px, 1px);
    text-shadow:
      -2px 0 rgba(113, 245, 234, 0.65),
      2px 0 rgba(255, 255, 255, 0.12);
  }

  66% {
    transform: translate(2px, -1px);
    text-shadow:
      2px 0 rgba(113, 245, 234, 0.45),
      -2px 0 rgba(255, 255, 255, 0.08);
  }
}

@keyframes scanCard {
  0% {
    transform: translateY(-120%);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  100% {
    transform: translateY(120%);
    opacity: 0;
  }
}

@keyframes syncBlink {
  from {
    box-shadow: inset 0 0 0 1px rgba(113, 245, 234, 0.1);
    background: linear-gradient(180deg, rgba(113, 245, 234, 0.16), rgba(113, 245, 234, 0.05));
  }

  to {
    box-shadow:
      inset 0 0 0 1px rgba(113, 245, 234, 0.26),
      0 0 18px rgba(29, 240, 225, 0.14);
    background: linear-gradient(180deg, rgba(113, 245, 234, 0.24), rgba(113, 245, 234, 0.08));
  }
}

@keyframes nodePulse {
  from {
    transform: scale(1);
    box-shadow: inset 0 0 0 1px rgba(113, 245, 234, 0.1);
  }

  to {
    transform: scale(1.04);
    box-shadow:
      inset 0 0 0 1px rgba(113, 245, 234, 0.22),
      0 0 18px rgba(29, 240, 225, 0.16);
  }
}

@keyframes sectionSignalSweep {
  0% {
    left: -18%;
    opacity: 0;
  }

  12% {
    opacity: 1;
  }

  100% {
    left: 100%;
    opacity: 0;
  }
}

@keyframes sectionSignalPulse {

  0%,
  100% {
    opacity: 0.8;
    box-shadow:
      0 0 0 1px rgba(113, 245, 234, 0.04),
      0 0 10px rgba(29, 240, 225, 0.06);
  }

  50% {
    opacity: 1;
    box-shadow:
      0 0 0 1px rgba(113, 245, 234, 0.1),
      0 0 18px rgba(29, 240, 225, 0.12),
      0 0 28px rgba(29, 240, 225, 0.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .targets__tab {
    transition: none;
  }

  .section:not(.hero) .section-tag__line {
    transition: none;
  }

  .section:not(.hero) .section-tag.is-visible .section-tag__line {
    opacity: 0.82;
    transform: scaleX(1);
    animation: none;
  }

  .section:not(.hero) .section-tag__line::after,
  .section:not(.hero) .section-tag.is-signal-active .section-tag__line::after,
  .section:not(.hero) .section-tag.is-signal-active .section-tag__line {
    animation: none;
  }

  .targets__panel,
  .targets__panel-content,
  .targets__actions--static .button,
  .targets__actions--static .button::before {
    transition: none;
  }

  .targets__panel-content,
  .targets__panel.is-active .targets__panel-content,
  .targets__panel.is-leaving .targets__panel-content {
    opacity: 1;
    transform: none;
  }
}

@keyframes borderShift {
  0% {
    filter: hue-rotate(0deg);
  }

  100% {
    filter: hue-rotate(16deg);
  }
}

@keyframes glitchCard {

  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  25% {
    transform: translate3d(-4px, 2px, 0);
  }

  50% {
    transform: translate3d(4px, -2px, 0);
  }

  75% {
    transform: translate3d(-2px, -3px, 0);
  }
}

@keyframes processDialPulse {

  0%,
  100% {
    opacity: 0.86;
    box-shadow:
      0 0 0 0 rgba(113, 245, 234, 0.16),
      0 0 0 12px rgba(113, 245, 234, 0.04),
      0 0 22px rgba(29, 240, 225, 0.1);
    filter: brightness(1);
  }

  50% {
    opacity: 1;
    box-shadow:
      0 0 0 6px rgba(113, 245, 234, 0.12),
      0 0 0 22px rgba(113, 245, 234, 0.025),
      0 0 34px rgba(29, 240, 225, 0.16);
    filter: brightness(1.08);
  }
}

@media (max-width: 1080px) {
  .process {
    --process-label-gap: clamp(24px, 2.8vw, 38px);
  }

  .targets {
    --targets-sticky-top: calc(var(--topbar-height) + 72px);
  }

  .topbar__inner {
    display: flex;
  }

  .topbar__nav {
    gap: 20px;
    font-size: 0.9rem;
  }

  .hero {
    width: auto;
    margin-inline: 0;
    padding-inline: var(--site-gutter);
    padding-bottom: 88px;
  }

  .hero__copy {
    width: min(78vw, 920px);
    padding-top: 56px;
  }

  .hero-title {
    font-size: clamp(2.08rem, 4.45vw, 3.92rem);
    line-height: 1.03;
  }

  .hero-title-line--primary {
    font-size: 0.94em;
  }

  .hero-title-line--highlight {
    font-size: 1.04em;
    margin-top: 0.16em;
  }

  .hero__subtitle {
    margin-top: 34px;
  }

  .hero__actions {
    margin-top: 40px;
  }

  .hero__visual {
    top: clamp(76px, 12vh, 132px);
    right: -24px;
    bottom: 0;
    width: min(48vw, 680px);
    -webkit-clip-path: inset(0 0 clamp(20px, 2.6vh, 30px) 0);
    clip-path: inset(0 0 clamp(20px, 2.6vh, 30px) 0);
  }

  .hero__laser {
    transform: translateY(-10px);
  }

  .solution .section-tag {
    left: clamp(14px, 2.4vw, 28px);
    right: clamp(14px, 2.4vw, 28px);
  }

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

  .pricing__stage {
    min-height: min(70vh, 620px);
  }

  .pricing__grid {
    height: min(54vh, 480px);
  }

  .price-card {
    min-height: 352px;
    padding-inline: 24px;
  }

  .price-card__description {
    max-width: 36ch;
  }

  .solution__grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 30px;
    border-top: 1px solid rgba(6, 210, 197, 0.28);
    border-bottom: 1px solid rgba(6, 210, 197, 0.28);
  }

  .solution__head {
    max-width: 100%;
  }

  .solution__headline {
    margin-inline: auto;
    max-width: 28ch;
    font-family: "Jost", sans-serif;
    font-weight: 300;
    color: #ffffff;
    font-size: clamp(1.66rem, 2.8vw, 2rem);
    line-height: 1.26;
    letter-spacing: 0;
    text-align: center;
  }

  .solution-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "title visual"
      "description description";
    gap: 8px 14px;
    min-height: 0;
    padding: 22px 0 24px;
    align-items: start;
  }

  .solution-panel+.solution-panel {
    border-left: 0;
    border-top: 1px solid rgba(6, 210, 197, 0.28);
    padding-top: 22px;
  }

  .solution-panel+.solution-panel::before {
    display: none;
  }

  .solution-panel__body {
    display: contents;
  }

  .solution-panel h3 {
    grid-area: title;
    margin: 0;
    max-width: 10ch;
    font-family: "Jost", sans-serif;
    font-size: clamp(1.72rem, 4vw, 2.2rem);
    font-weight: 300;
    color: #ffffff;
    line-height: 1.04;
    letter-spacing: 0;
    align-self: start;
  }

  .solution-panel p {
    grid-area: description;
    margin: 0;
    max-width: 42ch;
    justify-self: center;
    text-align: center;
    font-size: 1.08rem;
    line-height: 1.64;
  }

  .solution-panel__visual {
    grid-area: visual;
    min-height: 0;
    width: min(24vw, 148px);
    min-width: 96px;
    padding-top: 0;
    justify-self: end;
    align-self: start;
  }

  .solution-asset {
    width: 100%;
    max-height: none;
    opacity: 0.56;
  }

  .targets__top {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .targets__intro p {
    max-width: 38rem;
  }

  .process__shell {
    grid-template-columns: minmax(430px, 1.12fr) minmax(240px, 0.72fr);
    gap: 34px;
  }

  .process {
    --process-title-size-active: clamp(3.2rem, 4.2vw, 4.4rem);
    --process-title-size-secondary: clamp(1.4rem, 1.95vw, 2rem);
    --process-title-size-tertiary: clamp(0.92rem, 1.25vw, 1.3rem);
  }

  .process__dial {
    min-height: min(62vh, 560px);
  }

  .process__dial-track {
    min-height: min(62vh, 560px);
  }

  .process__dial-item {
    max-width: min(38vw, 420px);
  }

  .process__dial-item--far-top,
  .process__dial-item--far-bottom {
    font-size: clamp(1.08rem, 1.22vw, 1.42rem);
  }

  .process__dial-item--near-top,
  .process__dial-item--near-bottom {
    font-size: clamp(1.34rem, 1.68vw, 1.92rem);
  }

  .process__dial-item--active {
    font-size: clamp(2.46rem, 4.2vw, 3.7rem);
  }

  .process__content {
    width: min(100%, 34rem);
    min-height: min(54vh, 500px);
  }

  .process__visuals {
    width: min(100%, 24rem);
    min-height: 240px;
  }

  .process__panels,
  .process-panel {
    width: min(100%, 32rem);
  }

  .process-panel p {
    font-size: clamp(0.98rem, 1.26vw, 1.24rem);
    line-height: 1.5;
  }
}

@media (max-width: 920px) {
  :root {
    --topbar-height: 84px;
  }

  .section {
    padding: 100px 0;
  }

  .section:not(.hero) .section-tag {
    gap: 10px;
  }

  .section:not(.hero) .section-tag__line {
    min-width: 0;
  }

  .section-tag--sticky {
    position: relative;
    top: 0;
    z-index: 6;
    padding: 0;
    background: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .topbar__inner {
    flex-direction: row;
    justify-content: space-between;
    min-height: var(--topbar-height);
    padding-inline: var(--site-gutter);
    align-items: center;
  }

  .topbar__nav {
    display: none;
  }

  .brand {
    justify-self: center;
  }

  .brand__logo {
    width: clamp(102px, 25vw, 128px);
  }

  .hero {
    padding-top: 48px;
    padding-bottom: 72px;
    min-height: 100svh;
  }

  .hero .section-tag {
    left: 0;
    right: 0;
  }

  .hero__copy {
    max-width: 100%;
    width: 100%;
    padding-top: 48px;
  }

  .hero-title {
    font-size: clamp(2.02rem, 10vw, 3.18rem);
    line-height: 1.08;
  }

  .hero-title-line--primary {
    font-size: 0.96em;
  }

  .hero-title-line--highlight {
    font-size: 1.04em;
    margin-top: 0.08em;
    white-space: normal;
  }

  .hero__subtitle {
    max-width: 33ch;
    margin-top: 20px;
    font-size: clamp(1.1rem, 4.2vw, 1.4rem);
    line-height: 1.62;
  }

  .hero::before,
  .hero::after,
  .hero__visual {
    display: none;
  }

  .hero__actions,
  .targets__actions--static,
  .process__actions,
  .contact__actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    gap: 10px;
  }

  .hero__actions {
    margin-top: 24px;
  }

  .hero__actions .button,
  .targets__actions .button,
  .process__actions .button,
  .contact__actions .button {
    width: 100%;
    min-height: 58px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero__actions .button--ghost,
  .targets__actions .button--ghost,
  .process__actions .button--ghost,
  .contact__actions .button--ghost {
    order: 1;
    border-radius: var(--radius-button);
  }

  .hero__actions .button--primary,
  .targets__actions .button--primary,
  .process__actions .button--primary,
  .contact__actions .button--primary {
    order: 2;
    border-radius: var(--radius-button);
  }

  .solution {
    padding-bottom: 108px;
  }

  .solution .section-tag {
    position: relative;
    top: auto;
    left: 0;
    right: 0;
    margin-bottom: 28px;
    transform: none;
  }

  .solution .section-tag.is-visible,
  .solution .section-tag.is-signal-active {
    transform: none;
  }

  .solution__head {
    margin-top: 0;
  }

  .solution__headline {
    font-family: "Jost", sans-serif;
    font-size: clamp(1.58rem, 6.6vw, 2rem);
    font-weight: 400;
    line-height: 1.26;
    letter-spacing: 0;
    text-align: center;
    max-width: 26ch;
    margin-inline: auto;
  }

  .solution__grid {
    margin-top: 32px;
    border: 0 solid rgba(6, 210, 197, 0.3);
    border-top-width: 1px;
    border-bottom-width: 1px;
    border-image: linear-gradient(90deg,
        rgba(6, 210, 197, 0) 0%,
        rgba(6, 210, 197, 0.35) 20%,
        rgba(6, 210, 197, 0.35) 80%,
        rgba(6, 210, 197, 0) 100%) 1;
    gap: 0;
  }

  .solution-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    grid-template-areas:
      "title visual"
      "description description";
    gap: 16px 12px;
    min-height: 0;
    padding: 24px 0 20px;
    align-items: center;
  }

  .solution-panel+.solution-panel {
    border: 0 solid rgba(6, 210, 197, 0.38);
    border-top-width: 1px;
    border-image: linear-gradient(90deg,
        rgba(6, 210, 197, 0) 0%,
        rgba(6, 210, 197, 0.35) 20%,
        rgba(6, 210, 197, 0.35) 80%,
        rgba(6, 210, 197, 0) 100%) 1;
    padding-top: 24px;
  }

  .solution-panel+.solution-panel::before {
    display: none;
  }

  .solution-panel__body {
    display: contents;
  }

  .solution-panel__visual {
    grid-area: visual;
    min-height: 0;
    width: min(32vw, 110px);
    padding: 0;
    justify-self: end;
    align-self: center;
  }

  .solution-panel h3 {
    grid-area: title;
    margin: 0;
    max-width: 10ch;
    font-family: "Jost", sans-serif;
    font-size: clamp(2rem, 7.2vw, 2.6rem);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: 0;
    align-self: center;
    text-align: left;
  }

  .solution-panel p {
    grid-area: description;
    max-width: none;
    margin: 0;
    padding: 0;
    text-align: left;
    font-size: clamp(0.92rem, 3.6vw, 1.05rem);
    line-height: 1.58;
    color: rgba(225, 234, 238, 0.82);
  }

  .solution-asset {
    width: 100%;
    max-height: none;
    opacity: 0.72;
  }

  .targets {
    cursor: default;
    --targets-progress: 0;
    --targets-border-progress: 1;
    --targets-sticky-top: calc(var(--topbar-height) + 10px);
  }

  .targets__sticky {
    position: sticky;
    top: var(--targets-sticky-top);
    gap: 18px;
    min-height: calc(100svh - var(--targets-sticky-top) - 12px);
    padding-bottom: 8px;
  }

  .targets__top {
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: center;
    justify-items: stretch;
  }

  .targets__intro {
    width: 100%;
  }

  .targets__intro p {
    max-width: none;
    width: 100%;
    margin-inline: 0;
    text-align: center;
    font-size: clamp(1.2rem, 4.2vw, 1.45rem);
    line-height: 1.4;
    letter-spacing: 0;
    padding: 0;
  }

  .targets__tab {
    font-size: clamp(1rem, 3.4vw, 1.52rem);
  }

  .targets__intro-line,
  .targets__intro-line--mobile-break {
    display: block;
  }

  .targets__description-block {
    min-height: clamp(220px, 34vw, 312px) !important;
  }

  .targets__stage {
    min-height: inherit !important;
  }

  .targets__panel-content {
    align-content: center;
    text-align: center;
    padding: 22px 18px 26px;
    min-height: 100%;
    display: grid;
    justify-items: center;
  }

  .targets__panel h2 {
    max-width: 22ch;
    font-size: clamp(1.7rem, 4.5vw, 2.35rem);
    line-height: 1.14;
  }

  .targets__actions-block {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .targets__actions--static {
    width: 100%;
  }

  .targets__actions--static .button {
    width: 100%;
    flex: 0 0 auto;
  }

  .process {
    padding-top: 54px;
    min-height: 100svh;
  }

  .process .section-tag {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    max-width: none;
    width: 100%;
    margin: 0;
    z-index: auto;
  }

  .process__sticky {
    display: grid;
  }

  .process__mobile {
    display: none;
  }

  .process__shell {
    grid-template-columns: minmax(300px, 0.96fr) minmax(220px, 0.84fr);
    gap: 34px;
  }

  .process {
    --process-title-size-active: clamp(2.6rem, 3.5vw, 3.4rem);
    --process-title-size-secondary: clamp(1.2rem, 1.7vw, 1.55rem);
    --process-title-size-tertiary: clamp(0.84rem, 1.15vw, 1.08rem);
  }

  .process__dial {
    min-height: min(58vh, 520px);
  }

  .process__dial-track {
    min-height: min(58vh, 520px);
  }

  .process__dial-item {
    max-width: min(30vw, 340px);
  }

  .process__dial-item.is-active {
    text-shadow: 0 0 14px rgba(29, 240, 225, var(--dial-glow, 0.08));
  }

  .process__content {
    width: min(100%, 24rem);
    min-height: min(52vh, 460px);
  }

  .process__visuals {
    width: min(100%, 18rem);
    min-height: 168px;
  }

  .process__panels,
  .process-panel {
    width: min(100%, 22rem);
  }

  .process-panel p {
    font-size: clamp(1rem, 1.9vw, 1.18rem);
    line-height: 1.54;
  }

  .process__actions .button {
    width: 100%;
  }

  .pricing {
    height: auto !important;
    padding-bottom: 56px;
  }

  .pricing__sticky {
    position: relative;
    top: 0;
    min-height: auto;
    gap: 18px;
  }

  .pricing__stage {
    min-height: auto;
    padding: 0;
  }

  .pricing__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    height: auto;
    perspective: none;
  }

  .price-card {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    min-height: 0;
    opacity: 1;
    transform: none !important;
    padding: 0;
    pointer-events: auto;
  }

  .price-card__content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "title price"
      "line line"
      "description description";
    align-items: end;
    justify-items: stretch;
    gap: 12px 12px;
    min-height: 0;
    padding: 22px 0 30px;
    border-top: 1px solid rgba(6, 210, 197, 0.22);
  }

  .price-card:last-child .price-card__content {
    border-bottom: 1px solid rgba(6, 210, 197, 0.22);
  }

  .price-card__title {
    grid-area: title;
    margin: 0;
    text-align: left;
    font-size: clamp(2.06rem, 8.4vw, 2.8rem);
  }

  .price-card__price {
    grid-area: price;
    justify-self: end;
  }

  .price-card__line {
    transform: scaleX(1);
    opacity: 1;
  }

  .price-card__line--top {
    grid-area: line;
    width: 100%;
  }

  .price-card__line--bottom {
    display: none;
  }

  .price-card__price-amount {
    font-size: clamp(3.42rem, 14.8vw, 5rem);
  }

  .price-card__price-suffix {
    font-size: clamp(1.26rem, 5.2vw, 1.9rem);
  }

  .price-card p.price-card__description {
    grid-area: description;
    max-width: none;
    font-size: clamp(1.1rem, 4.2vw, 1.35rem) !important;
    text-align: center;
  }

  .price-card__title,
  .price-card__price,
  .price-card__description,
  .pricing__note {
    opacity: 1;
    transform: none;
  }

  .pricing__note {
    margin: 8px auto 0;
    opacity: 1;
    transform: none;
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .contact {
    padding-bottom: 28px;
  }

  .contact__head {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact__intro {
    display: grid;
    gap: 12px;
  }

  .contact__intro h2 {
    display: block;
    margin: 0;
    text-align: center;
    font-size: clamp(2.12rem, 9.6vw, 3.2rem);
    line-height: 1;
  }

  .contact__actions {
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }

  .contact__actions .button {
    width: 100%;
  }

  .contact__preface {
    margin: 30px auto 0;
    max-width: min(100%, 34ch);
    font-size: clamp(0.98rem, 3.6vw, 1.08rem);
    line-height: 1.54;
    text-align: center;
  }

  .contact-form {
    --contact-line-gap: 8px;
    --contact-message-min-height: clamp(88px, 18vw, 124px);
    display: flex;
    flex-direction: column;
    gap: 18px;
    /* matching desktop gap or overriding */
  }

  .contact-form__field--message textarea::placeholder {
    line-height: 1.42;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 16px;
    /* reset gap if necessary */
  }

  .contact-form__field input,
  .contact-form__field textarea {
    text-align: center;
  }

  .contact__panel {
    margin-top: 34px;
    padding-inline: 0;
    /* remove side padding on mobile to match buttons 100% */
  }

  .contact__preface + .contact__panel {
    margin-top: 30px;
  }

  .contact__panel.is-open {
    padding: 24px 0 30px;
  }

  .footer {
    flex-direction: row;
    align-items: center;
    gap: clamp(10px, 4vw, 14px);
    margin-top: 18px;
    padding-top: 10px;
    --footer-line-min: clamp(26px, 14vw, 72px);
  }

  .footer p {
    font-size: 0.84rem;
    color: rgba(194, 205, 213, 0.62);
  }

}

@media (max-width: 768px) {
  :root {
    --site-gutter: 25px;
  }
}

@media (pointer: fine) {

  body,
  body a,
  body button,
  body input,
  body textarea,
  body select,
  body label {
    cursor: none;
  }
}

@media (max-width: 640px) {
  :root {
    --topbar-height: 60px;
    --radius-button: 4px;
  }

  .process__sticky {
    display: none;
  }

  .process__mobile {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    align-content: stretch;
    min-height: calc(100svh - var(--topbar-height));
    row-gap: clamp(10px, 1.6svh, 20px);
    padding-bottom: max(10px, env(safe-area-inset-bottom));
  }

  .header {
    height: 60px;
  }


  .section {
    padding: 84px 0;
  }

  .targets {
    --targets-sticky-top: calc(var(--topbar-height) + 8px);
  }

  .targets__sticky {
    grid-template-rows: auto auto minmax(0, 1fr) auto;
    align-content: stretch;
    gap: clamp(10px, 1.6svh, 22px);
    min-height: calc(100svh - var(--targets-sticky-top));
    padding-bottom: max(10px, env(safe-area-inset-bottom));
  }

  .targets__intro p {
    max-width: none;
    font-size: clamp(1rem, 4.2vw, 1.25rem);
    line-height: 1.4;
    text-align: center;
  }

  .targets__tab {
    font-size: clamp(1.22rem, 5.62vw, 1.58rem);
  }

  .targets__description-block {
    min-height: 0;
    height: 100%;
    overflow: hidden;
  }

  .targets__stage {
    min-height: 0;
    height: 100%;
    overflow: hidden;
  }

  .targets__stage::after {
    height: calc(100% * var(--targets-border-progress));
  }

  .targets__panel {
    position: absolute;
    inset: 0;
  }

  .targets__panel-content {
    padding: clamp(18px, 2.4svh, 30px) 14px clamp(22px, 3.4svh, 40px);
  }

  .targets__panel h2 {
    max-width: 18ch;
    font-size: clamp(1.46rem, 7vw, 1.96rem);
    line-height: 1.16;
  }

  .targets__actions-block {
    position: relative;
    margin-top: clamp(10px, 1.8svh, 24px);
    margin-bottom: 0;
    padding-bottom: max(8px, env(safe-area-inset-bottom));
    padding-inline: 0;
    width: 100%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .targets__actions--static {
    width: 100%;
  }

  .targets__actions--static .button {
    flex: 0 0 auto;
  }

  .hero {
    padding-top: clamp(30px, 5svh, 56px);
    padding-bottom: clamp(90px, 12svh, 160px);
  }

  .hero__copy {
    padding-top: clamp(42px, 6.8svh, 86px);
  }

  .hero-title {
    font-size: clamp(1.9rem, 10.8vw, 2.5rem);
  }

  .hero__subtitle {
    margin-top: clamp(26px, 4.4svh, 50px);
    font-size: clamp(1.06rem, 4.9vw, 1.22rem);
  }

  .hero__actions {
    margin-top: clamp(34px, 5.8svh, 64px);
  }

  .solution__headline {
    font-size: clamp(1.38rem, 6.8vw, 1.72rem);
  }

  .solution-panel h3 {
    font-size: clamp(1.72rem, 7.4vw, 2.1rem);
  }

  .solution-panel p {
    font-size: 0.98rem;
  }

  .process-mobile__tabs {
    min-height: clamp(78px, 10svh, 112px);
    padding: clamp(10px, 1.8svh, 16px) 0 clamp(5px, 1svh, 10px);
    margin-bottom: 0;
  }

  .process-mobile__tabs::before {
    top: 4px;
  }

  .process-mobile__tabs::after {
    top: 4px;
    height: 14px;
  }

  .process-mobile__tab {
    top: 62%;
    padding: 0 8px 8px;
    font-size: clamp(1.02rem, 5.10vw, 1.27rem);
  }

  .process-mobile__stage {
    min-height: 0;
    height: 100%;
    margin-top: 0;
  }

  .process-mobile__panel {
    gap: clamp(16px, 3svh, 31px);
    padding: clamp(8px, 1.7svh, 16px) 8px 0;
  }

  .process-mobile__icon {
    width: min(46vw, clamp(138px, 22svh, 184px));
  }

  .process-mobile__panel p {
    width: min(100%, 30ch);
    max-width: 30ch;
    font-size: clamp(0.88rem, 4.2vw, 1.02rem);
    line-height: 1.5;
  }

  .process__actions {
    margin-top: 0;
    align-self: end;
  }

  .process__actions .button {
    min-height: 54px;
  }

  .price-card__content {
    padding: 18px 0 24px;
  }

  .price-card__title {
    font-size: clamp(1.72rem, 8.5vw, 2.18rem);
  }

  .price-card__price-amount {
    font-size: clamp(3rem, 14.6vw, 4.2rem);
  }

  .price-card__price-suffix {
    font-size: clamp(1.14rem, 5.5vw, 1.5rem);
  }

  .price-card p.price-card__description {
    font-size: 1.2rem !important;
  }

  .contact__panel.is-open {
    padding: 24px 20px 28px;
  }

  .contact__panel {
    padding-top: 0;
    padding-bottom: 0;
  }

  .contact__preface + .contact__panel {
    margin-top: 24px;
  }

  .contact-form {
    --contact-line-gap: 7px;
    --contact-message-min-height: clamp(96px, 30vw, 142px);
  }

  .contact-form__field--message textarea::placeholder {
    line-height: 1.42;
  }

  .contact-form__footer {
    justify-content: stretch;
    flex-direction: column-reverse;
    gap: 16px;
    align-items: center;
  }

  .process__actions .button,
  .contact__actions .button,
  .contact-form__footer .button {
    min-height: 56px;
    width: 100%;
    margin: 0;
  }

  .contact-form__footer .button[type="submit"] {
    width: clamp(206px, 68vw, 420px);
    max-width: 72vw;
    margin-inline: auto;
    border-radius: var(--radius-button);
  }

  .contact-form__footer .button[type="submit"]::before {
    border-radius: inherit;
  }
}

@media (min-width: 1024px) {
  .topbar__inner {
    max-width: calc(var(--max-width) + (var(--site-gutter) * 2));
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--site-gutter);
  }

  .hero {
    /* keep full-bleed so .hero__visual can reach the viewport edge */
    width: 100vw;
    margin-inline: calc(50% - 50vw);
    /* dynamic padding that matches .page-shell centering */
    padding-inline: max(var(--site-gutter), calc((100vw - var(--max-width)) / 2));
  }

  .hero .section-tag {
    left: max(var(--site-gutter), calc((100vw - var(--max-width)) / 2));
  }
}

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

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

  .cursor-orb {
    display: none;
  }

  .footer::before,
  .footer::after {
    animation: none;
    opacity: 0.7;
    transform: none;
    background-position: 50% 50%;
  }
}

@media (pointer: coarse) {
  .cursor-orb {
    display: none;
  }
}
