:root {
  --black: #050505;
  --near: #0b0c0c;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-strong: rgba(255, 255, 255, 0.14);
  --line: rgba(255, 255, 255, 0.15);
  --white: #f7f8f3;
  --muted: rgba(247, 248, 243, 0.66);
  --blue: #1118ff;
  --purple: #6532ff;
  --ice: #eceeff;
  --lime: #80ee55;
  --green: #043f08;
  --mint: #bff9d2;
  --pink: #f05aa7;
  --coral: #ee7772;
  --orange: #cf6b35;
  --max: 1280px;
  --glass-veil-height: clamp(82px, 12vh, 128px);
  --border-angle: 0deg;
  --headline-angle: 130deg;
  color-scheme: dark;
}

@property --border-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

@property --headline-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 130deg;
}

@keyframes borderTravel {
  to {
    --border-angle: 360deg;
  }
}

@keyframes headlineGradientFlow {
  0%,
  100% {
    --headline-angle: 130deg;
  }

  50% {
    --headline-angle: 40deg;
  }
}

@keyframes phraseSheen {
  0%,
  100% {
    background-position: 0% 50%;
    filter: drop-shadow(0 0 0 rgba(128, 238, 85, 0));
  }

  50% {
    background-position: 100% 50%;
    filter: drop-shadow(0 0 14px rgba(128, 238, 85, 0.18));
  }
}

@keyframes phraseLine {
  0%,
  100% {
    opacity: 0.18;
    transform: scaleX(0.2);
  }

  50% {
    opacity: 0.62;
    transform: scaleX(1);
  }
}

@keyframes textFillSlide {
  0%,
  16%,
  100% {
    background-position: 100% 50%;
    filter: drop-shadow(0 0 0 rgba(128, 238, 85, 0));
  }

  48%,
  72% {
    background-position: 0% 50%;
    filter: drop-shadow(0 0 16px rgba(128, 238, 85, 0.18));
  }
}

@keyframes planCtaColorFlow {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes preloaderBreath {
  0%,
  100% {
    opacity: 0.86;
    transform: translateY(0) scale(0.985);
    filter: drop-shadow(0 0 0 rgba(128, 238, 85, 0));
  }

  50% {
    opacity: 1;
    transform: translateY(-2px) scale(1);
    filter: drop-shadow(0 0 24px rgba(128, 238, 85, 0.22));
  }
}

@keyframes preloaderLine {
  0% {
    transform: translateX(-102%) scaleX(0.22);
  }

  52% {
    transform: translateX(12%) scaleX(0.86);
  }

  100% {
    transform: translateX(112%) scaleX(0.22);
  }
}

@keyframes featuredAuraMove {
  0% {
    background-position: calc(100% + 92px) -118px;
  }

  25% {
    background-position: -116px 7%;
  }

  50% {
    background-position: 10% calc(100% + 110px);
  }

  75% {
    background-position: calc(100% + 105px) calc(100% - 48px);
  }

  100% {
    background-position: calc(100% + 92px) -118px;
  }
}

@keyframes particleDrift {
  0%,
  100% {
    opacity: 0.24;
    transform: translate3d(0, 0, 0) scale(0.82);
  }

  45% {
    opacity: 0.78;
    transform: translate3d(var(--particle-x, 18px), var(--particle-y, -22px), 0) scale(1);
  }
}

@keyframes particleLayerDrift {
  0%,
  100% {
    background-position: 0 0, 0 0, 0 0, 0 0, 0 0;
    opacity: 0.28;
  }

  50% {
    background-position: 22px -18px, -18px 20px, 16px 26px, -24px -14px, 18px 18px;
    opacity: 0.5;
  }
}

.reveal-item {
  opacity: 0;
  translate: 0 28px;
  scale: 0.985;
  filter: blur(10px);
  transition:
    opacity 1150ms cubic-bezier(0.2, 0.8, 0.2, 1),
    translate 1150ms cubic-bezier(0.2, 0.8, 0.2, 1),
    scale 1150ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 1150ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, translate, scale, filter;
}

.reveal-item.reveal-visible {
  opacity: 1;
  translate: 0 0;
  scale: 1;
  filter: blur(0);
}

.reveal-item.reveal-hiding {
  transition-delay: 0ms !important;
}

body.is-loading .reveal-item {
  transition: none !important;
}

.data-card.reveal-item,
.health-card.reveal-item,
.sensor-card.reveal-item,
.network-tree.reveal-item,
.scale-card.reveal-item,
.projection-card.reveal-item,
.source-item.reveal-item,
.plan-card.reveal-item,
.lead-form.reveal-item,
.faq-list details.reveal-item,
.recurrence-panel.reveal-item,
.investment-data.reveal-item {
  transition:
    opacity 1150ms cubic-bezier(0.2, 0.8, 0.2, 1),
    translate 1150ms cubic-bezier(0.2, 0.8, 0.2, 1),
    scale 1150ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 1150ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
  transition-delay: var(--reveal-delay, 0ms), var(--reveal-delay, 0ms), var(--reveal-delay, 0ms), var(--reveal-delay, 0ms), 0ms, 0ms, 0ms;
}

@supports not (translate: 0 0) {
  .reveal-item {
    transform: translateY(28px) scale(0.985);
    transition:
      opacity 1150ms cubic-bezier(0.2, 0.8, 0.2, 1),
      transform 1150ms cubic-bezier(0.2, 0.8, 0.2, 1),
      filter 1150ms cubic-bezier(0.2, 0.8, 0.2, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform, filter;
  }

  .reveal-item.reveal-visible {
    transform: translateY(0) scale(1);
  }

  .data-card.reveal-item,
  .health-card.reveal-item,
  .sensor-card.reveal-item,
  .network-tree.reveal-item,
  .scale-card.reveal-item,
  .projection-card.reveal-item,
  .source-item.reveal-item,
  .plan-card.reveal-item,
  .lead-form.reveal-item,
  .faq-list details.reveal-item,
  .recurrence-panel.reveal-item,
  .investment-data.reveal-item {
    transition:
      opacity 1150ms cubic-bezier(0.2, 0.8, 0.2, 1),
      transform 1150ms cubic-bezier(0.2, 0.8, 0.2, 1),
      filter 1150ms cubic-bezier(0.2, 0.8, 0.2, 1),
      border-color 180ms ease,
      box-shadow 180ms ease;
    transition-delay: var(--reveal-delay, 0ms), var(--reveal-delay, 0ms), var(--reveal-delay, 0ms), 0ms, 0ms;
  }
}

@keyframes sensorSweep {
  0% {
    transform: rotate(0deg) scale(0.99);
    filter: drop-shadow(0 0 0 rgba(191, 249, 210, 0));
    opacity: 0.78;
  }

  45% {
    transform: rotate(96deg) scale(1.015);
    filter: drop-shadow(0 0 16px rgba(191, 249, 210, 0.28));
    opacity: 1;
  }

  100% {
    transform: rotate(360deg) scale(0.99);
    filter: drop-shadow(0 0 0 rgba(191, 249, 210, 0));
    opacity: 0.82;
  }
}

@keyframes sensorPulse {
  0%,
  100% {
    transform: scale(0.94);
    box-shadow:
      0 0 0 18px rgba(255, 255, 255, 0.08),
      0 0 0 34px rgba(191, 249, 210, 0);
  }

  45% {
    transform: scale(1.04);
    box-shadow:
      0 0 0 22px rgba(255, 255, 255, 0.1),
      0 0 0 46px rgba(191, 249, 210, 0.08);
  }

  68% {
    transform: scale(0.98);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.35;
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 1120px), (hover: none) and (pointer: coarse) {
  body.is-loading {
    overflow: auto;
  }

  .site-preloader {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}

.site-preloader {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 42%, rgba(128, 238, 85, 0.12), transparent 26%),
    radial-gradient(circle at 48% 58%, rgba(101, 50, 255, 0.14), transparent 32%),
    #050505;
  opacity: 1;
  visibility: visible;
  transition: opacity 520ms ease, visibility 520ms ease;
}

.site-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

html.no-mobile-preloader body.is-loading {
  overflow: auto !important;
}

html.no-mobile-preloader .site-preloader {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.preloader-mark {
  display: grid;
  justify-items: center;
  gap: 22px;
  width: 280px;
  max-width: 72vw;
  width: min(280px, 72vw);
  animation: preloaderBreath 2.4s ease-in-out infinite;
}

.preloader-mark img {
  width: 240px;
  max-width: 68vw;
  width: min(240px, 68vw);
}

.preloader-mark span {
  position: relative;
  width: 220px;
  max-width: 58vw;
  width: min(220px, 58vw);
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.preloader-mark span::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, var(--lime), var(--mint), transparent);
  transform-origin: left center;
  animation: preloaderLine 1.6s ease-in-out infinite;
}

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

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

button,
input {
  font: inherit;
}

.sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.container {
  width: min(var(--max), calc(100% - 44px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 18px;
  left: 50%;
  width: min(var(--max), calc(100% - 44px));
  display: grid;
  grid-template-columns: 210px 1fr;
  align-items: center;
  min-height: 70px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045)),
    rgba(9, 9, 14, 0.58);
  box-shadow:
    0 18px 58px rgba(0, 0, 0, 0.34),
    0 0 42px rgba(101, 50, 255, 0.26),
    0 10px 46px rgba(240, 90, 167, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  -webkit-backdrop-filter: blur(24px) saturate(1.25);
  backdrop-filter: blur(24px) saturate(1.25);
  transform: translateX(-50%);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.site-header:hover,
.site-header:focus-within {
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.055)),
    rgba(9, 9, 14, 0.64);
  box-shadow:
    0 20px 62px rgba(0, 0, 0, 0.36),
    0 0 56px rgba(101, 50, 255, 0.36),
    0 12px 54px rgba(240, 90, 167, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.brand {
  display: flex;
  align-items: center;
  min-height: 70px;
  padding: 0 24px;
}

.brand img {
  width: 158px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 0 16px 0 8px;
}

.nav a {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  transition: color 180ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--white);
  text-shadow: 0 0 18px rgba(101, 50, 255, 0.55);
}

.nav .nav-action {
  position: relative;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 124px;
  min-height: 48px;
  border: 3px solid rgba(251, 254, 255, 0.94);
  border-radius: 999px;
  color: #101116;
  padding: 4px 19px 4px 5px;
  background:
    linear-gradient(135deg, rgba(251, 254, 255, 0.98), rgba(247, 252, 252, 0.9)),
    rgba(255, 255, 255, 0.92);
  box-shadow:
    0 12px 34px rgba(0, 0, 0, 0.22),
    0 0 0 rgba(101, 50, 255, 0),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  isolation: isolate;
  overflow: hidden;
  transition:
    transform 420ms ease,
    color 420ms ease,
    border-color 420ms ease,
    background 420ms ease,
    box-shadow 420ms ease,
    padding 420ms ease,
    gap 420ms ease;
}

.nav .nav-action::before {
  content: "";
  position: absolute;
  inset: 5px auto 5px 6px;
  z-index: 0;
  width: 38px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--purple), #8b47ff 48%, var(--pink));
  opacity: 0;
  transform: scaleX(0.96);
  transform-origin: left center;
  transition:
    width 640ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 320ms ease,
    transform 520ms ease;
}

.nav-action-icon {
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), #8b47ff 48%, var(--pink));
  color: #fbfeff;
  box-shadow:
    0 8px 18px rgba(101, 50, 255, 0.32),
    0 0 22px rgba(240, 90, 167, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
  transition:
    transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1),
    background 420ms ease,
    color 420ms ease,
    box-shadow 420ms ease;
}

.nav-action-icon .icon {
  width: 16px;
  height: 16px;
  transform: rotate(-45deg);
  transition: transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.nav-action-text {
  position: relative;
  z-index: 1;
  font-weight: 800;
  transition: transform 420ms ease;
}

.nav .nav-action:hover,
.nav .nav-action:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(251, 254, 255, 0.96);
  color: #fbfeff;
  background:
    linear-gradient(135deg, rgba(251, 254, 255, 0.98), rgba(247, 252, 252, 0.92)),
    rgba(255, 255, 255, 0.92);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.32),
    0 0 34px rgba(101, 50, 255, 0.42),
    0 0 54px rgba(240, 90, 167, 0.24),
    inset 0 0 0 1px rgba(251, 254, 255, 0.62);
  text-shadow: none;
}

.nav .nav-action:hover::before,
.nav .nav-action:focus-visible::before {
  width: calc(100% - 12px);
  opacity: 1;
  transform: scaleX(1);
}

.nav .nav-action:hover .nav-action-icon,
.nav .nav-action:focus-visible .nav-action-icon {
  color: #fbfeff;
  background: rgba(251, 254, 255, 0.16);
  box-shadow:
    0 0 0 2px rgba(251, 254, 255, 0.92),
    0 0 22px rgba(251, 254, 255, 0.28);
  transform: translateX(2px);
}

.nav .nav-action:hover .nav-action-icon .icon,
.nav .nav-action:focus-visible .nav-action-icon .icon {
  transform: rotate(0deg);
}

.nav .nav-action:hover .nav-action-text,
.nav .nav-action:focus-visible .nav-action-text {
  transform: translateX(1px);
}

.menu-toggle {
  display: none;
  place-items: center;
  justify-self: end;
  width: 42px;
  height: 42px;
  margin-right: 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

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

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: -3;
  overflow: hidden;
}

.hero-bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.05);
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.82) 38%, rgba(5, 5, 5, 0.36) 68%, rgba(5, 5, 5, 0.82) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.34), rgba(5, 5, 5, 0.96) 92%);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  align-items: center;
  gap: 72px;
  min-height: calc(100vh - 170px);
  min-height: calc(100svh - 170px);
}

.hero-copy {
  max-width: 860px;
  padding-top: 28px;
}

.kicker {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.58);
  font-family: "Segoe UI Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 0.76rem;
  text-transform: uppercase;
}

.kicker.dark {
  color: rgba(0, 0, 0, 0.64);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(3.25rem, 4.8vw, 3.95rem);
  line-height: 1.08;
  font-weight: 900;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 3.8vw, 3.2rem);
  line-height: 1.04;
  font-weight: 850;
}

h3 {
  margin-bottom: 14px;
  font-size: 1.3rem;
  line-height: 1.12;
}

.hero h1,
.dark-lab .section-title h2,
.lab-copy h3,
.how h2,
.network-copy h2,
.scale-head h2,
.leverage-copy h2,
.premium-pitch h2,
.plans .section-title h2,
.plan-card h3,
.recurrence-layout h2,
.lead-layout h2,
.faq-layout h2 {
  color: #fbfeff;
}

@supports ((background-clip: text) or (-webkit-background-clip: text)) {
  .hero h1,
  .dark-lab .section-title h2,
  .lab-copy h3,
  .how h2,
  .network-copy h2,
  .scale-head h2,
  .leverage-copy h2,
  .premium-pitch h2,
  .plans .section-title h2,
  .plan-card h3,
  .recurrence-layout h2,
  .lead-layout h2,
  .faq-layout h2 {
    background-image: linear-gradient(var(--headline-angle, 130deg), #fbfeff 0%, #f7fcfc 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    animation: headlineGradientFlow 16s ease-in-out infinite;
  }
}

.headline-phrase,
.accent-fill {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding-bottom: 0.03em;
  background-image:
    linear-gradient(90deg, var(--lime) 0%, var(--mint) 48%, #fbfeff 52%, #f7fcfc 100%);
  background-size: 220% 100%;
  background-position: 100% 50%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: textFillSlide 8.8s cubic-bezier(0.45, 0, 0.2, 1) infinite;
  will-change: background-position, filter;
}

.headline-phrase::after {
  content: none;
}

.headline-phrase-alt {
  animation-delay: 1.35s;
}

.accent-fill {
  animation-delay: var(--fill-delay, 0s);
}

.thin-head .accent-fill {
  --fill-delay: 0.45s;
}

.network-copy .accent-fill {
  --fill-delay: 0.85s;
}

.process-heading .accent-fill {
  --fill-delay: 0.25s;
  text-shadow: none;
}

.headline-nowrap {
  background: none;
  background-clip: border-box;
  -webkit-background-clip: border-box;
  color: #f7fcfc;
  display: inline-block;
  line-height: inherit;
  transform: none;
  vertical-align: baseline;
  white-space: nowrap;
  -webkit-text-fill-color: #f7fcfc;
}

.hero-text {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
  line-height: 1.48;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  gap: 10px;
  padding: 0 19px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 760;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background: var(--lime);
  color: #071007;
}

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

.button-ghost {
  border-color: rgba(255, 255, 255, 0.26);
  color: var(--white);
}

.button.full {
  width: 100%;
}

.hero-console {
  align-self: center;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.data-card {
  position: relative;
  min-height: 126px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 26px;
  padding: 18px;
  color: var(--white);
  background:
    var(--card-bg, rgba(255, 255, 255, 0.075)) padding-box,
    linear-gradient(var(--card-base, #171818), var(--card-base, #171818)) padding-box,
    conic-gradient(from var(--border-angle, 0deg), transparent 0 65%, var(--card-border-soft) 73%, var(--card-border) 80%, var(--card-border-soft) 86%, transparent 94% 100%) border-box;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.38);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  will-change: transform;
  isolation: isolate;
  --card-glow: rgba(128, 238, 85, 0.44);
  --card-border: rgba(128, 238, 85, 0.92);
  --card-border-soft: rgba(255, 255, 255, 0.2);
  --card-base: #171818;
  --runner-size: min(42%, 190px);
  animation: borderTravel 5.8s linear infinite;
}

.data-card-large {
  grid-column: 1 / -1;
  min-height: 146px;
}

.data-card span,
.data-card small {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.8rem;
}

.data-card strong {
  display: block;
  margin-top: 18px;
  font-size: 2.5rem;
  line-height: 1;
}

.data-card i {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 88px;
  height: 88px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.pink-card {
  --card-bg: linear-gradient(135deg, rgba(238, 119, 114, 0.84), rgba(240, 90, 167, 0.62));
  --card-glow: rgba(240, 90, 167, 0.62);
  --card-border: rgba(240, 90, 167, 0.95);
  --card-border-soft: rgba(255, 176, 221, 0.34);
}

.mint-card {
  --card-bg: linear-gradient(135deg, rgba(191, 249, 210, 0.48), rgba(6, 11, 8, 0.66));
  --card-glow: rgba(191, 249, 210, 0.54);
  --card-border: rgba(191, 249, 210, 0.9);
  --card-border-soft: rgba(128, 238, 85, 0.26);
}

.blue-card {
  --card-bg: linear-gradient(135deg, rgba(17, 24, 255, 0.72), rgba(5, 5, 5, 0.7));
  --card-glow: rgba(17, 24, 255, 0.66);
  --card-border: rgba(48, 76, 255, 0.98);
  --card-border-soft: rgba(112, 128, 255, 0.34);
}

.orange-card {
  --card-bg: linear-gradient(135deg, rgba(207, 107, 53, 0.72), rgba(240, 90, 167, 0.22));
  --card-glow: rgba(207, 107, 53, 0.62);
  --card-border: rgba(255, 132, 71, 0.95);
  --card-border-soft: rgba(240, 90, 167, 0.26);
}

.dark-lab,
.how,
.network-growth,
.plans,
.recurrence,
.faq {
  background: var(--black);
  padding: 118px 0;
}

.how {
  padding-bottom: 34px;
}

.network-growth {
  padding-top: 46px;
}

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

.section-title {
  max-width: 940px;
  margin: 0 auto 68px;
  text-align: center;
}

.section-title.left {
  margin-inline: 0;
  max-width: 820px;
  text-align: left;
}

.section-title h2,
.thin-head h2,
.lead-layout h2,
.faq-layout h2,
.recurrence-layout h2 {
  text-wrap: balance;
}

.lab-grid {
  display: grid;
  grid-template-columns: minmax(200px, 0.82fr) repeat(3, minmax(170px, 1fr)) minmax(250px, 1.08fr);
  grid-auto-rows: minmax(156px, auto);
  align-items: stretch;
  gap: 16px;
}

.lab-copy {
  grid-column: 1;
  grid-row: 1 / span 3;
  align-self: center;
  max-width: 260px;
}

.lab-copy p:not(.micro) {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.45;
}

.micro {
  color: rgba(255, 255, 255, 0.54);
  font-family: "Segoe UI Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 0.74rem;
  text-transform: uppercase;
}

.health-grid {
  display: contents;
}

.health-card,
.sensor-card,
.plan-card,
.lead-form,
.faq-list details,
.recurrence-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 28px;
  background:
    var(--card-bg, var(--panel)) padding-box,
    linear-gradient(var(--card-base, #171818), var(--card-base, #171818)) padding-box,
    conic-gradient(from var(--border-angle, 0deg), transparent 0 65%, var(--card-border-soft) 73%, var(--card-border) 80%, var(--card-border-soft) 86%, transparent 94% 100%) border-box;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  will-change: transform;
  isolation: isolate;
  --card-glow: rgba(128, 238, 85, 0.28);
  --card-border: rgba(128, 238, 85, 0.82);
  --card-border-soft: rgba(255, 255, 255, 0.2);
  --card-base: #171818;
  animation: borderTravel 5.8s linear infinite;
}

.data-card:hover,
.health-card:hover,
.sensor-card:hover,
.plan-card:hover,
.lead-form:hover,
.faq-list details:hover,
.recurrence-panel:hover,
.investment-data:hover {
  transform: translateY(-2px);
  border-color: transparent;
  box-shadow:
    0 30px 92px rgba(0, 0, 0, 0.42),
    0 0 22px var(--card-glow),
    0 0 64px var(--card-glow),
    inset 0 0 28px rgba(255, 255, 255, 0.035);
}

.health-card {
  min-height: 156px;
  padding: 18px;
}

.health-card span {
  display: block;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
}

.health-card strong {
  display: block;
  margin-top: 24px;
  font-size: 1.12rem;
  line-height: 1.08;
}

.health-grid .health-card:nth-child(1) {
  grid-column: 2;
  grid-row: 1;
}

.health-grid .health-card:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}

.health-grid .health-card:nth-child(5) {
  grid-column: 2;
  grid-row: 3;
}

.health-grid .health-card:nth-child(7) {
  grid-column: 3;
  grid-row: 1;
}

.health-grid .health-card:nth-child(2) {
  grid-column: 3;
  grid-row: 2;
}

.health-grid .health-card:nth-child(4) {
  grid-column: 3;
  grid-row: 3;
}

.health-grid .health-card:nth-child(6) {
  grid-column: 4;
  grid-row: 1;
}

.health-grid .health-card:nth-child(8) {
  grid-column: 4;
  grid-row: 2;
}

.coral {
  --card-bg: linear-gradient(145deg, rgba(238, 119, 114, 0.82), rgba(240, 90, 167, 0.46));
  --card-glow: rgba(238, 119, 114, 0.58);
  --card-border: rgba(255, 128, 128, 0.95);
  --card-border-soft: rgba(240, 90, 167, 0.32);
}

.sage {
  --card-bg: linear-gradient(145deg, rgba(191, 249, 210, 0.38), rgba(5, 5, 5, 0.78));
  --card-glow: rgba(191, 249, 210, 0.54);
  --card-border: rgba(191, 249, 210, 0.92);
  --card-border-soft: rgba(128, 238, 85, 0.28);
}

.pink {
  --card-bg: radial-gradient(circle at 65% 60%, rgba(240, 90, 167, 0.86), rgba(225, 151, 207, 0.45));
  --card-glow: rgba(240, 90, 167, 0.62);
  --card-border: rgba(255, 105, 190, 0.95);
  --card-border-soft: rgba(255, 176, 221, 0.34);
}

.cobalt {
  --card-bg: linear-gradient(145deg, rgba(17, 24, 255, 0.72), rgba(5, 5, 5, 0.62));
  --card-glow: rgba(17, 24, 255, 0.62);
  --card-border: rgba(58, 86, 255, 0.95);
  --card-border-soft: rgba(109, 128, 255, 0.32);
}

.copper {
  --card-bg: radial-gradient(circle at 70% 55%, rgba(17, 24, 255, 0.58), rgba(207, 107, 53, 0.8));
  --card-glow: rgba(207, 107, 53, 0.6);
  --card-border: rgba(255, 132, 71, 0.95);
  --card-border-soft: rgba(17, 24, 255, 0.28);
}

.black {
  --card-bg: radial-gradient(circle at 72% 28%, rgba(255, 214, 112, 0.28), transparent 40%),
    linear-gradient(145deg, rgba(103, 75, 27, 0.62), rgba(5, 5, 5, 0.84));
  --card-glow: rgba(255, 199, 88, 0.5);
  --card-border: rgba(255, 199, 88, 0.88);
  --card-border-soft: rgba(255, 230, 155, 0.28);
}

.mint {
  --card-bg: radial-gradient(circle at 72% 20%, rgba(191, 249, 210, 0.34), transparent 42%),
    linear-gradient(145deg, rgba(79, 170, 122, 0.6), rgba(5, 5, 5, 0.78));
  --card-glow: rgba(128, 238, 85, 0.56);
  --card-border: rgba(128, 238, 85, 0.92);
  --card-border-soft: rgba(191, 249, 210, 0.38);
}

.violet {
  --card-bg: radial-gradient(circle at 68% 35%, rgba(240, 90, 167, 0.34), transparent 42%),
    linear-gradient(145deg, rgba(101, 50, 255, 0.72), rgba(5, 5, 5, 0.78));
  --card-glow: rgba(142, 116, 255, 0.58);
  --card-border: rgba(142, 116, 255, 0.92);
  --card-border-soft: rgba(240, 90, 167, 0.36);
}

.sensor-card {
  min-height: 330px;
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
}

.sensor-card {
  grid-column: 5;
  grid-row: 1 / span 3;
  min-height: 100%;
  --card-bg: radial-gradient(circle, rgba(191, 249, 210, 0.32), rgba(5, 5, 5, 0.82) 74%);
}

.sensor-ring {
  display: grid;
  place-items: center;
  width: 174px;
  height: 174px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: repeating-conic-gradient(from 12deg, rgba(255, 255, 255, 0.66) 0deg 2deg, transparent 2deg 7deg);
  transform-origin: 50% 50%;
  animation: sensorSweep 4.8s cubic-bezier(0.45, 0, 0.2, 1) infinite;
  will-change: transform, opacity, filter;
}

.sensor-ring span {
  width: 76px;
  height: 76px;
  border: 14px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  animation: sensorPulse 2.2s ease-in-out infinite;
  will-change: transform, box-shadow;
}

.sensor-card p {
  margin-bottom: 4px;
}

.sensor-card small {
  color: var(--muted);
}

.numbers {
  background: #efedff;
  color: var(--purple);
  padding: 94px 0 120px;
}

.numbers-layout {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 42px 32px;
  align-items: start;
}

.since {
  grid-column: 1 / 3;
  grid-row: 1;
  color: #111;
  font-size: 0.76rem;
}

.numbers h2 {
  grid-column: 1 / 11;
  grid-row: 2;
  max-width: 1180px;
  margin: 0;
  padding: 0.04em 0 0.02em;
  color: var(--purple);
  font-size: clamp(2.75rem, 4.8vw, 3.55rem);
  line-height: 1.06;
  text-transform: uppercase;
  text-wrap: balance;
}

.numbers-note {
  grid-column: 1 / 5;
  grid-row: 3;
  color: #111;
  max-width: 460px;
  font-size: 1rem;
  line-height: 1.34;
  margin: 0;
}

.big-stat strong {
  display: block;
  color: var(--purple);
  font-size: clamp(2.75rem, 4.6vw, 3.5rem);
  line-height: 0.92;
  font-weight: 900;
  white-space: nowrap;
}

.big-stat span {
  display: block;
  max-width: 300px;
  margin-top: 10px;
  color: #111;
  line-height: 1.25;
}

.stat-a {
  grid-column: 1 / 3;
  grid-row: 4;
}

.stat-b {
  grid-column: 4 / 6;
  grid-row: 4;
}

.stat-c {
  grid-column: 7 / 9;
  grid-row: 4;
}

.stat-d {
  grid-column: 10 / 12;
  grid-row: 4;
}

.green-system {
  background: var(--lime);
  color: #071007;
  padding: 72px 0;
}

.green-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.74fr);
  gap: 64px;
  align-items: end;
}

.green-layout h2 {
  max-width: 720px;
  margin: 0;
  color: #071007;
  font-size: clamp(2.75rem, 5vw, 4rem);
  line-height: 1.02;
}

.green-layout p {
  max-width: 560px;
  margin: 0;
  color: rgba(0, 0, 0, 0.76);
  line-height: 1.42;
}

.thin-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 940px;
  margin-bottom: 52px;
}

.thin-head > span {
  color: var(--muted);
  font-family: "Segoe UI Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.thin-head h2 {
  max-width: 860px;
  margin-bottom: 0;
}

.thin-head h2 .accent-fill {
  display: block;
  margin-top: 0.06em;
}

.flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.flow article {
  min-height: 280px;
  padding: 34px 54px 0;
}

.flow article + article {
  border-left: 1px solid var(--line);
}

.flow span {
  color: var(--lime);
  font-family: "Segoe UI Mono", "SFMono-Regular", Consolas, monospace;
}

.flow p,
.network-growth p,
.recurrence p,
.lead p,
.faq p,
.plan-card p {
  color: var(--muted);
  line-height: 1.45;
}

.network-growth {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 18% 20%, rgba(128, 238, 85, 0.1), transparent 28%),
    radial-gradient(circle at 86% 42%, rgba(101, 50, 255, 0.13), transparent 34%),
    var(--black);
}

.network-growth::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.22;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: radial-gradient(circle at 50% 28%, #000, transparent 68%);
  -webkit-mask-image: radial-gradient(circle at 50% 28%, #000, transparent 68%);
}

.network-growth::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(128, 238, 85, 0.72) 0 2px, transparent 3px),
    radial-gradient(circle at 84% 22%, rgba(101, 50, 255, 0.74) 0 2px, transparent 3px),
    radial-gradient(circle at 72% 58%, rgba(240, 90, 167, 0.58) 0 1px, transparent 3px),
    radial-gradient(circle at 24% 72%, rgba(191, 249, 210, 0.62) 0 1px, transparent 3px),
    radial-gradient(circle at 92% 78%, rgba(128, 238, 85, 0.54) 0 2px, transparent 4px);
  filter: drop-shadow(0 0 8px rgba(128, 238, 85, 0.18));
  animation: particleLayerDrift 16s ease-in-out infinite;
}

.network-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1fr);
  align-items: center;
  gap: 72px;
}

.network-copy h2,
.scale-head h2,
.leverage-copy h2,
.premium-pitch h2 {
  margin-bottom: 24px;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  line-height: 1.05;
}

.network-copy p,
.leverage-copy p {
  max-width: 650px;
  font-size: 1.06rem;
  line-height: 1.55;
}

@supports (content-visibility: auto) {
  .dark-lab,
  .numbers,
  .green-system,
  .how,
  .network-growth,
  .plans,
  .recurrence,
  .investment,
  .lead,
  .faq {
    content-visibility: auto;
    contain-intrinsic-size: 900px;
  }

  .network-growth {
    contain-intrinsic-size: 2800px;
  }
}

html.no-mobile-preloader .hero-bg img {
  filter: none;
}

html.no-mobile-preloader .hero .reveal-item {
  opacity: 1 !important;
  translate: 0 0 !important;
  scale: 1 !important;
  transform: none !important;
  filter: none !important;
  transition: none !important;
}

.network-tree {
  position: relative;
  min-height: 520px;
  padding: 34px;
}

.tree-root,
.tree-node,
.scale-card,
.projection-card,
.source-item {
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035)) padding-box,
    linear-gradient(#121414, #121414) padding-box,
    conic-gradient(from var(--border-angle, 0deg), transparent 0 65%, var(--card-border-soft, rgba(255, 255, 255, 0.18)) 73%, var(--card-border, rgba(128, 238, 85, 0.8)) 80%, var(--card-border-soft, rgba(255, 255, 255, 0.18)) 86%, transparent 94% 100%) border-box;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  animation: borderTravel 6.4s linear infinite;
  --card-border: rgba(128, 238, 85, 0.82);
  --card-border-soft: rgba(191, 249, 210, 0.22);
}

.tree-root {
  display: grid;
  place-items: center;
  width: min(100%, 240px);
  min-height: 136px;
  margin-inline: auto;
  border-radius: 24px;
  padding: 18px;
  text-align: center;
}

.tree-root::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 1px;
  height: 58px;
  background: linear-gradient(180deg, rgba(128, 238, 85, 0.78), rgba(255, 255, 255, 0.08));
}

.tree-root span {
  display: block;
  color: var(--white);
  font-size: 1.55rem;
  font-weight: 900;
}

.tree-root small,
.tree-node span,
.scale-card span,
.projection-card span,
.source-item span {
  color: rgba(255, 255, 255, 0.62);
  font-family: "Segoe UI Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.tree-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 58px;
}

.tree-grid::before {
  content: "";
  position: absolute;
  top: -28px;
  left: 22%;
  right: 22%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(128, 238, 85, 0.72), transparent);
}

.tree-node {
  min-height: 136px;
  border-radius: 24px;
  padding: 18px;
}

.tree-node::before {
  content: "";
  position: absolute;
  top: -29px;
  left: 50%;
  width: 1px;
  height: 29px;
  background: rgba(128, 238, 85, 0.5);
}

.tree-node strong {
  display: block;
  max-width: 11ch;
  margin-top: 30px;
  color: var(--white);
  font-size: 1.32rem;
  line-height: 1.08;
}

.tree-node i {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 52px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--lime), var(--purple));
  box-shadow: 0 0 22px rgba(128, 238, 85, 0.26);
}

.tree-node:nth-child(2),
.projection-card.expanded,
.source-item:nth-child(2) {
  --card-border: rgba(101, 50, 255, 0.92);
  --card-border-soft: rgba(240, 90, 167, 0.26);
}

.tree-node:nth-child(3) {
  --card-border: rgba(240, 90, 167, 0.88);
  --card-border-soft: rgba(255, 176, 221, 0.26);
}

.tree-node:nth-child(4) {
  --card-border: rgba(255, 132, 71, 0.9);
  --card-border-soft: rgba(240, 90, 167, 0.24);
}

.network-tree > p {
  max-width: 360px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
}

.network-process {
  margin-top: 92px;
}

.process-heading {
  max-width: 980px;
  margin: 0 0 62px;
  text-align: left;
}

.process-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin: 0 0 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 0 24px;
  color: rgba(255, 255, 255, 0.54);
  font-family: "Segoe UI Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.process-heading h2 {
  max-width: 940px;
  margin: 0;
  color: #f7fcfc;
  font-size: clamp(2.1rem, 3.75vw, 3.5rem);
  line-height: 1.12;
  font-weight: 780;
  text-wrap: balance;
}

.process-heading h2 span {
  color: var(--lime);
  text-shadow: 0 0 28px rgba(128, 238, 85, 0.18);
}

.process-heading h2 .accent-fill {
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

.thin-head h2 .accent-fill,
.network-copy h2 .accent-fill,
.process-heading h2 .accent-fill {
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

.network-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: end;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035)),
    #191a1a;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
  transform: translateY(var(--process-parallax, 0px));
  transition:
    opacity 1150ms cubic-bezier(0.2, 0.8, 0.2, 1),
    translate 1150ms cubic-bezier(0.2, 0.8, 0.2, 1),
    scale 1150ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 1150ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay:
    var(--reveal-delay, 0ms),
    var(--reveal-delay, 0ms),
    var(--reveal-delay, 0ms),
    var(--reveal-delay, 0ms),
    0ms;
  will-change: transform;
}

.process-card:nth-child(even) {
  translate: 0 78px;
}

.process-card::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 60px;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.process-card div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.process-card strong {
  color: var(--white);
  font-size: 1.1rem;
}

.process-card div span {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-family: inherit;
  font-size: 0.82rem;
  text-transform: none;
}

.process-card p {
  max-width: 11ch;
  margin: 58px 0 18px;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.06;
}

.process-card small {
  display: inline-flex;
  border-radius: 999px;
  padding: 8px 11px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.72rem;
}

.process-card.is-lime {
  border-color: rgba(128, 238, 85, 0.42);
  background: linear-gradient(135deg, #c8ff20, var(--lime));
  box-shadow:
    0 28px 80px rgba(128, 238, 85, 0.2),
    0 0 42px rgba(128, 238, 85, 0.14);
}

.process-card.is-lime::before {
  background: rgba(5, 5, 5, 0.25);
}

.process-card.is-lime strong,
.process-card.is-lime p,
.process-card.is-lime div span {
  color: #071007;
}

.process-card.is-lime small {
  color: rgba(7, 16, 7, 0.76);
  background: rgba(7, 16, 7, 0.1);
}

.scale-contrast {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  scroll-margin-top: 118px;
  margin-top: 112px;
  border-radius: 38px;
  padding: clamp(42px, 6vw, 76px);
  color: #071007;
  background:
    radial-gradient(circle at 82% 14%, rgba(101, 50, 255, 0.08), transparent 24%),
    linear-gradient(180deg, #fbfffb, #f4f8f3);
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.particle-field {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.particle-field span {
  position: absolute;
  width: var(--particle-size, 5px);
  height: var(--particle-size, 5px);
  border-radius: 50%;
  background: var(--particle-color, var(--lime));
  box-shadow: 0 0 18px var(--particle-color, var(--lime));
  animation: particleDrift var(--particle-duration, 6s) ease-in-out infinite;
  animation-delay: var(--particle-delay, 0s);
}

.particle-field span:nth-child(1) { left: 8%; top: 18%; --particle-size: 4px; --particle-x: 18px; --particle-y: -24px; --particle-delay: -1.2s; }
.particle-field span:nth-child(2) { left: 17%; top: 72%; --particle-color: var(--purple); --particle-x: -16px; --particle-y: -28px; --particle-delay: -3.4s; }
.particle-field span:nth-child(3) { left: 31%; top: 14%; --particle-color: var(--pink); --particle-size: 3px; --particle-x: 14px; --particle-y: 22px; --particle-delay: -2s; }
.particle-field span:nth-child(4) { left: 47%; top: 82%; --particle-color: var(--lime); --particle-size: 6px; --particle-x: -28px; --particle-y: -18px; --particle-delay: -4.3s; }
.particle-field span:nth-child(5) { left: 62%; top: 20%; --particle-color: var(--purple); --particle-x: 18px; --particle-y: 28px; --particle-delay: -1.8s; }
.particle-field span:nth-child(6) { left: 78%; top: 70%; --particle-color: var(--pink); --particle-size: 4px; --particle-x: -22px; --particle-y: -24px; --particle-delay: -5.1s; }
.particle-field span:nth-child(7) { left: 89%; top: 24%; --particle-size: 3px; --particle-x: -18px; --particle-y: 24px; --particle-delay: -2.7s; }
.particle-field span:nth-child(8) { left: 24%; top: 42%; --particle-color: var(--purple); --particle-size: 3px; --particle-x: 26px; --particle-y: -18px; --particle-delay: -4.9s; }
.particle-field span:nth-child(9) { left: 54%; top: 48%; --particle-color: var(--pink); --particle-x: -22px; --particle-y: 20px; --particle-delay: -0.8s; }
.particle-field span:nth-child(10) { left: 71%; top: 40%; --particle-size: 4px; --particle-x: 14px; --particle-y: -30px; --particle-delay: -3.8s; }
.particle-field span:nth-child(11) { left: 38%; top: 70%; --particle-color: var(--purple); --particle-size: 5px; --particle-x: -18px; --particle-y: -22px; --particle-delay: -1.6s; }
.particle-field span:nth-child(12) { left: 93%; top: 82%; --particle-color: var(--lime); --particle-size: 6px; --particle-x: -24px; --particle-y: -34px; --particle-delay: -6s; }

.scale-contrast .scale-head {
  max-width: 860px;
  margin: 0 auto 50px;
  text-align: center;
}

.scale-contrast .scale-head h2 {
  margin-bottom: 0;
  color: #071007;
  background: none;
  -webkit-text-fill-color: #071007;
  animation: none;
}

.scale-insight {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  border-radius: 34px;
  padding: clamp(28px, 5vw, 58px);
  background:
    radial-gradient(circle at 22% 108%, rgba(240, 90, 167, 0.44), transparent 34%),
    radial-gradient(circle at 86% 4%, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(135deg, var(--purple), #7a3fff 48%, #b24ce7 100%);
  box-shadow:
    0 24px 90px rgba(101, 50, 255, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.scale-statement span {
  display: block;
  margin-bottom: 18px;
  color: rgba(251, 254, 255, 0.72);
  font-family: "Segoe UI Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 0.76rem;
  text-transform: uppercase;
}

.scale-statement h3 {
  max-width: 13ch;
  margin-bottom: 22px;
  color: #fbfeff;
  font-size: clamp(1.85rem, 2.9vw, 3.1rem);
  line-height: 1.06;
}

.scale-statement p {
  max-width: 440px;
  margin-bottom: 0;
  color: rgba(251, 254, 255, 0.74);
  font-size: 1rem;
  line-height: 1.45;
}

.scale-contrast .scale-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 0;
}

.scale-contrast .scale-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  min-height: 92px;
  border: 0;
  border-radius: 999px;
  padding: 18px 28px;
  color: #071007;
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 18px 44px rgba(7, 16, 7, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
  animation: none;
  translate: 0 var(--rest-y, 0px);
}

.scale-contrast .scale-card.is-high {
  --entry-y: -58px;
  --rest-y: -16px;
}

.scale-contrast .scale-card.is-mid {
  --entry-y: 42px;
  --rest-y: 0px;
}

.scale-contrast .scale-card.is-low {
  --entry-y: 58px;
  --rest-y: 16px;
}

.scale-contrast .scale-card.reveal-item {
  translate: 0 var(--entry-y, 38px);
}

.scale-contrast .scale-card.reveal-visible {
  translate: 0 var(--rest-y, 0px);
}

.scale-contrast .scale-card span {
  grid-row: 1 / span 2;
  color: rgba(7, 16, 7, 0.58);
  font-family: "Segoe UI Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 0.75rem;
}

.scale-contrast .scale-card h3 {
  max-width: none;
  margin: 0 0 4px;
  color: #071007;
  font-size: 1rem;
  line-height: 1.1;
}

.scale-contrast .scale-card p {
  max-width: none;
  margin: 0;
  color: rgba(7, 16, 7, 0.66);
  font-size: 0.88rem;
  line-height: 1.35;
}

.projection-contrast {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  margin-top: 72px;
  border-radius: 38px;
  padding: clamp(34px, 5vw, 58px);
  color: #071007;
  background:
    radial-gradient(circle at 18% 14%, rgba(101, 50, 255, 0.13), transparent 28%),
    radial-gradient(circle at 88% 22%, rgba(240, 90, 167, 0.1), transparent 26%),
    linear-gradient(180deg, #fbfffb, #f4f8f3);
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.projection-insight {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 48px);
  border-radius: 34px;
  padding: clamp(28px, 5vw, 58px);
  background:
    radial-gradient(circle at 22% 108%, rgba(240, 90, 167, 0.44), transparent 34%),
    radial-gradient(circle at 86% 4%, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(135deg, var(--purple), #7a3fff 48%, #b24ce7 100%);
  box-shadow:
    0 24px 90px rgba(101, 50, 255, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.projection-statement span {
  display: block;
  margin-bottom: 18px;
  color: rgba(251, 254, 255, 0.72);
  font-family: "Segoe UI Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 0.76rem;
  text-transform: uppercase;
}

.projection-statement {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.64fr);
  align-items: end;
  gap: clamp(22px, 4vw, 64px);
}

.projection-statement span {
  grid-column: 1 / -1;
}

.projection-statement h3 {
  max-width: 15ch;
  margin-bottom: 0;
  color: #fbfeff;
  font-size: clamp(1.85rem, 2.9vw, 3.1rem);
  line-height: 1.06;
}

.projection-statement p {
  max-width: 450px;
  margin-bottom: 0;
  color: rgba(251, 254, 255, 0.74);
  font-size: 1rem;
  line-height: 1.45;
}

.projection-layout {
  display: grid;
  gap: 18px;
  margin: 0;
}

.projection-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px clamp(24px, 4vw, 64px);
  min-height: 138px;
  border: 0;
  border-radius: 34px;
  padding: 26px clamp(28px, 4vw, 48px);
  color: #071007;
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 18px 44px rgba(7, 16, 7, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
  animation: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.projection-card span {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  color: rgba(7, 16, 7, 0.58);
}

.projection-card h3 {
  grid-column: 1;
  grid-row: 2;
  margin: 0;
  color: #071007;
  font-size: clamp(1.25rem, 2.1vw, 1.9rem);
  line-height: 1.05;
}

.projection-card b {
  display: block;
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: center;
  justify-self: end;
  color: #071007;
  font-size: clamp(1.35rem, 2.4vw, 2.25rem);
  line-height: 1;
  white-space: nowrap;
}

.projection-card small {
  display: block;
  grid-column: 1;
  grid-row: 3;
  max-width: 420px;
  margin-top: 0;
  color: rgba(7, 16, 7, 0.62);
  font-size: 0.9rem;
  line-height: 1.35;
}

.projection-card ul {
  display: grid;
  grid-column: 1;
  grid-row: 3;
  gap: 6px;
  max-width: 430px;
  margin: 6px 0 2px;
  padding: 0;
  list-style: none;
}

.projection-card li {
  position: relative;
  color: rgba(7, 16, 7, 0.68);
  padding-left: 16px;
  font-size: 0.92rem;
  line-height: 1.28;
}

.projection-card li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 16px rgba(101, 50, 255, 0.34);
}

.projection-card.expanded {
  min-height: 178px;
}

.projection-card.expanded b {
  grid-row: 1 / span 4;
}

.projection-card.expanded small {
  grid-row: 4;
}

.projection-card.expanded h3 {
  max-width: none;
}

.leverage-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  align-items: end;
  gap: 72px;
  margin-top: 88px;
}

.source-list {
  display: grid;
  gap: 14px;
}

.source-item {
  min-height: 138px;
  border-radius: 26px;
  padding: 22px;
}

.source-item strong {
  display: block;
  max-width: 14ch;
  margin-top: 28px;
  color: var(--white);
  font-size: 1.55rem;
  line-height: 1.06;
}

.premium-pitch {
  max-width: 980px;
  margin: 94px auto 0;
  text-align: center;
}

.premium-pitch p {
  max-width: 720px;
  margin: 0 auto 30px;
  font-size: 1.08rem;
  line-height: 1.5;
}

.plans {
  padding-top: 90px;
}

.plan-grid {
  display: grid;
  grid-template-columns: minmax(0, 520px);
  gap: 28px;
  justify-content: center;
  max-width: 620px;
  margin-inline: auto;
}

.plan-card {
  min-height: 560px;
  padding: 40px;
  --card-glow: rgba(255, 199, 82, 0.48);
  --card-border: rgba(255, 202, 96, 0.92);
  --card-border-soft: rgba(255, 202, 96, 0.28);
}

.plan-card > * {
  position: relative;
  z-index: 1;
}

.plan-card.featured {
  --card-bg:
    radial-gradient(circle at 82% 4%, rgba(240, 90, 167, 0.13), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
  border-color: transparent;
  --card-glow: rgba(87, 118, 255, 0.54);
  --card-border: rgba(116, 142, 255, 0.98);
  --card-border-soft: rgba(255, 202, 96, 0.42);
}

.plan-card.featured::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(circle, rgba(87, 118, 255, 0.28) 0 16%, rgba(240, 90, 167, 0.16) 32%, rgba(255, 202, 96, 0.08) 48%, transparent 68%);
  background-repeat: no-repeat;
  background-size: 430px 430px;
  filter: blur(2px);
  mix-blend-mode: screen;
  opacity: 0.92;
  pointer-events: none;
  animation: featuredAuraMove 8.5s cubic-bezier(0.45, 0, 0.25, 1) infinite;
}

.plan-card.featured:hover {
  border-color: transparent;
}

.plan-card:not(.featured):hover {
  border-color: transparent;
}

.plan-card.featured .plan-label {
  border-color: rgba(255, 202, 96, 0.3);
  color: rgba(255, 236, 186, 0.82);
}

.plan-card.featured li::before {
  background: linear-gradient(135deg, #ffe2a2, #748eff 52%, #f05aa7);
  box-shadow: 0 0 12px rgba(116, 142, 255, 0.45);
}

.plan-card.featured .button-primary {
  background-image: linear-gradient(115deg, #ffe2a2 0%, #748eff 32%, #d868db 54%, #f05aa7 74%, #ffe2a2 100%);
  background-size: 240% 240%;
  background-position: 0% 50%;
  color: #09090d;
  box-shadow: 0 0 0 rgba(116, 142, 255, 0);
  animation: planCtaColorFlow 12s ease-in-out infinite;
}

.plan-card.featured .button-primary:hover,
.plan-card.featured .button-primary:focus-visible {
  background-image: linear-gradient(115deg, #fff0c7 0%, #8ea2ff 32%, #df78e4 54%, #ff75bc 74%, #fff0c7 100%);
  background-size: 240% 240%;
  box-shadow:
    0 0 26px rgba(116, 142, 255, 0.34),
    0 0 46px rgba(240, 90, 167, 0.2);
}

.plan-label {
  display: inline-block;
  margin-bottom: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.74rem;
  text-transform: uppercase;
}

.price-line {
  display: block;
  margin: 40px 0 12px;
}

.price-line strong {
  font-size: 3.5rem;
  line-height: 1;
}

.price-line span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.plan-card ul {
  display: grid;
  gap: 14px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.plan-card li {
  display: flex;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
}

.plan-card li::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--lime);
}

.plan-card .button {
  margin-top: 38px;
}

.plan-button {
  margin-top: 38px;
}

.plan-card:not(.featured) .button-ghost {
  border-color: rgba(255, 202, 96, 0.36);
}

.plan-card:not(.featured) .button-ghost:hover,
.plan-card:not(.featured) .button-ghost:focus-visible {
  border-color: rgba(255, 202, 96, 0.74);
  box-shadow: 0 0 32px rgba(255, 202, 96, 0.26);
  color: #ffe6a8;
}

.recurrence-layout,
.lead-layout,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(380px, 0.74fr);
  gap: 84px;
  align-items: start;
}

.recurrence-layout > div:first-child,
.lead-layout > div:first-child,
.faq-layout > div:first-child {
  max-width: 680px;
}

.range-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 460px;
  margin: 32px 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px 10px 20px;
}

.range-box span {
  color: var(--muted);
}

.range-box output {
  display: grid;
  place-items: center;
  min-width: 58px;
  height: 42px;
  border-radius: 999px;
  background: var(--lime);
  color: #071007;
  font-weight: 900;
}

input[type="range"] {
  width: min(460px, 100%);
  accent-color: var(--lime);
}

.recurrence-panel {
  padding: 28px;
}

.revenue-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.revenue-row:first-child {
  padding-top: 0;
}

.revenue-row span {
  color: var(--muted);
}

.revenue-row strong {
  font-size: 1.45rem;
}

.revenue-row.total strong {
  color: var(--lime);
}

.month-grid {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.month-grid article {
  display: grid;
  grid-template-columns: 70px 148px 1fr;
  align-items: center;
  gap: 16px;
}

.month-grid span {
  color: var(--muted);
}

.month-grid b {
  font-size: 1.03rem;
}

.month-grid i {
  display: block;
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.month-grid em {
  display: block;
  width: 10%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--lime));
  transition: width 180ms ease;
}

.investment {
  background: linear-gradient(180deg, #043f08, #0c6a11);
  padding: 96px 0;
}

.investment-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 92px;
  align-items: center;
  min-height: 430px;
  color: var(--lime);
  text-align: left;
}

.investment-copy {
  display: grid;
  align-content: start;
  gap: 24px;
  align-self: center;
  padding-top: 0;
}

.investment-copy h2 {
  margin: 0;
  max-width: 820px;
  text-wrap: balance;
}

.investment-copy span,
.investment-data p,
.investment-data small {
  color: rgba(227, 255, 213, 0.76);
}

.investment-data {
  align-self: center;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 28px;
  background:
    var(--card-bg, rgba(0, 0, 0, 0.22)) padding-box,
    linear-gradient(var(--card-base, #063f09), var(--card-base, #063f09)) padding-box,
    conic-gradient(from var(--border-angle, 0deg), transparent 0 65%, var(--card-border-soft) 73%, var(--card-border) 80%, var(--card-border-soft) 86%, transparent 94% 100%) border-box;
  width: 100%;
  padding: 28px;
  text-align: left;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  will-change: transform;
  isolation: isolate;
  --card-glow: rgba(128, 238, 85, 0.38);
  --card-border: rgba(128, 238, 85, 0.92);
  --card-border-soft: rgba(227, 255, 213, 0.28);
  --card-base: #063f09;
  animation: borderTravel 5.8s linear infinite;
}

.investment-data p {
  margin-bottom: 8px;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.investment-data strong {
  display: block;
  margin-bottom: 20px;
  color: var(--white);
  font-size: 2.1rem;
}

.lead {
  background: var(--black);
  padding: 120px 0;
}

.lead-layout {
  align-items: center;
}

.lead-layout > div:first-child {
  max-width: 600px;
}

.lead-layout p {
  max-width: 560px;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 26px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
}

.lead-form input {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  outline: none;
  padding: 0 16px;
}

.lead-form input:focus {
  border-color: var(--lime);
}

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

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--lime);
  font-weight: 700;
}

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

.faq-list details {
  box-shadow: none;
}

.faq-list summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 20px 54px 20px 22px;
  font-weight: 760;
  line-height: 1.25;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  color: var(--lime);
  transform: translateY(-50%);
}

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

.faq-list details p {
  margin: 0;
  border-top: 1px solid var(--line);
  padding: 18px 22px 24px;
  line-height: 1.55;
}

.footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  background: var(--black);
  padding: 42px 0 calc(42px + var(--glass-veil-height));
}

.page-glass-veil {
  content: "";
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 80;
  height: var(--glass-veil-height);
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.018) 52%, rgba(255, 255, 255, 0.035));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    inset 0 -28px 52px rgba(255, 255, 255, 0.018);
  backdrop-filter: blur(22px) saturate(1.32) contrast(1.04);
  -webkit-backdrop-filter: blur(22px) saturate(1.32) contrast(1.04);
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.36) 32%, #000 84%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.36) 32%, #000 84%);
  opacity: 0.96;
}

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

.footer img {
  width: 190px;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer a,
.footer p {
  color: var(--muted);
  font-size: 0.86rem;
}

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

@media (max-width: 1120px) {
  h1 {
    font-size: clamp(2.85rem, 6.4vw, 3.35rem);
  }

  h2,
  .green-layout h2 {
    font-size: clamp(2.28rem, 5.2vw, 2.8rem);
  }

  .hero-layout,
  .lab-grid,
  .numbers-layout,
  .green-layout,
  .network-hero,
  .leverage-layout,
  .recurrence-layout,
  .lead-layout,
  .faq-layout,
  .investment-box {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    align-items: center;
  }

  .hero-console {
    max-width: 520px;
  }

  .numbers h2,
  .numbers-note,
  .since,
  .stat-a,
  .stat-b,
  .stat-c,
  .stat-d {
    grid-column: auto;
    grid-row: auto;
  }

  .numbers h2 {
    max-width: 980px;
    font-size: clamp(2.55rem, 6vw, 3.15rem);
  }

  .lab-grid {
    align-items: stretch;
  }

  .lab-copy,
  .sensor-card,
  .health-grid .health-card,
  .health-grid .health-card:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }

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

  .health-card {
    min-height: 148px;
  }

  .health-card strong {
    font-size: 1.26rem;
  }

  .sensor-card {
    min-height: 280px;
  }

  .network-copy h2,
  .scale-head h2,
  .leverage-copy h2,
  .premium-pitch h2 {
    font-size: clamp(2.1rem, 6.2vw, 3.05rem);
    line-height: 1.07;
  }

  .network-tree {
    max-width: 680px;
    margin-inline: auto;
    padding-inline: 0;
  }

  .network-process {
    margin-top: 72px;
  }

  .process-heading {
    max-width: 820px;
    margin-bottom: 56px;
  }

  .process-heading h2 {
    font-size: clamp(2rem, 5.6vw, 3rem);
  }

  .scale-insight {
    grid-template-columns: 1fr;
  }

  .projection-insight {
    grid-template-columns: 1fr;
  }

  .projection-statement {
    grid-template-columns: 1fr;
  }

  .scale-statement h3 {
    max-width: 16ch;
  }

  .projection-statement h3 {
    max-width: 16ch;
  }

  .scale-contrast .scale-grid {
    max-width: 680px;
    margin-inline: auto;
  }

  .projection-contrast .projection-layout {
    width: 100%;
    max-width: 720px;
    margin-inline: auto;
  }

  .network-steps {
    grid-template-columns: repeat(5, minmax(120px, 1fr));
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .projection-layout {
    grid-template-columns: 1fr;
  }

  .source-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  :root {
    --glass-veil-height: clamp(56px, 8vh, 74px);
  }

  .container {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    grid-template-columns: 1fr auto;
    top: 12px;
    width: min(100% - 28px, var(--max));
    min-height: 68px;
    border-radius: 28px;
  }

  .brand {
    min-height: 68px;
    border-right: 0;
    padding: 0 18px;
  }

  .brand img {
    width: 150px;
  }

  .menu-toggle {
    display: grid;
  }

  .nav {
    position: fixed;
    top: 90px;
    left: 14px;
    right: 14px;
    display: grid;
    max-height: 0;
    overflow: hidden;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    background: rgba(9, 9, 14, 0.82);
    box-shadow:
      0 18px 58px rgba(0, 0, 0, 0.38),
      0 0 38px rgba(101, 50, 255, 0.24),
      0 10px 36px rgba(240, 90, 167, 0.08);
    -webkit-backdrop-filter: blur(22px) saturate(1.2);
    backdrop-filter: blur(22px) saturate(1.2);
    padding: 0 18px;
    transition: max-height 180ms ease, padding 180ms ease;
  }

  body.menu-open .nav {
    max-height: 420px;
    padding: 12px 18px 18px;
  }

  .nav a {
    padding: 14px 0;
  }

  .nav .nav-action {
    margin-left: 0;
    justify-content: flex-start;
    width: max-content;
    min-width: 132px;
    margin-top: 8px;
  }

  .hero {
    padding-top: 116px;
  }

  .hero-bg img {
    filter: none;
  }

  .hero .reveal-item {
    opacity: 1 !important;
    translate: 0 0 !important;
    scale: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }

  h1 {
    font-size: clamp(2.18rem, 8.2vw, 2.46rem);
  }

  h2,
  .green-layout h2,
  .numbers h2 {
    font-size: clamp(1.98rem, 7.4vw, 2.24rem);
  }

  .hero-console,
  .health-grid,
  .flow,
  .scale-grid,
  .source-list {
    grid-template-columns: 1fr;
  }

  .plan-grid {
    grid-template-columns: minmax(0, 1fr);
    max-width: 500px;
  }

  .dark-lab,
  .how,
  .network-growth,
  .plans,
  .recurrence,
  .faq,
  .lead {
    padding: 76px 0;
  }

  .how {
    padding-bottom: 42px;
  }

  .network-growth {
    padding-top: 46px;
  }

  .thin-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .flow {
    border-top: 0;
  }

  .flow article {
    min-height: auto;
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 26px 0;
  }

  .network-hero {
    gap: 42px;
  }

  .network-tree {
    min-height: auto;
  }

  .tree-root {
    width: 100%;
    max-width: 420px;
    min-height: 120px;
    border-radius: 24px;
  }

  .tree-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }

  .tree-grid::before {
    left: 50%;
    right: auto;
    width: 1px;
    height: calc(100% + 28px);
    background: linear-gradient(180deg, rgba(128, 238, 85, 0.56), transparent);
  }

  .tree-node {
    min-height: 120px;
  }

  .tree-node::before {
    left: -18px;
    top: 30px;
    width: 18px;
    height: 1px;
  }

  .network-process {
    margin-top: 54px;
  }

  .network-steps {
    grid-template-columns: 1fr;
    overflow: visible;
    gap: 14px;
  }

  .process-card,
  .process-card:nth-child(even) {
    translate: 0 0;
    min-height: auto;
    padding: 22px;
  }

  .process-card p {
    max-width: 100%;
    margin-top: 50px;
  }

  .scale-head,
  .projection-contrast,
  .leverage-layout,
  .premium-pitch {
    margin-top: 62px;
  }

  .scale-contrast {
    margin-top: 72px;
    border-radius: 28px;
    scroll-margin-top: 104px;
    padding: 92px 18px 24px;
  }

  .scale-insight {
    border-radius: 24px;
    padding: 20px;
  }

  .projection-contrast {
    border-radius: 28px;
    padding: 18px;
  }

  .projection-insight {
    border-radius: 24px;
    padding: 20px;
  }

  .scale-contrast .scale-card,
  .scale-contrast .scale-card.is-high,
  .scale-contrast .scale-card.is-mid,
  .scale-contrast .scale-card.is-low {
    --entry-y: 38px;
    --rest-y: 0px;
    border-radius: 24px;
    grid-template-columns: 30px minmax(0, 1fr);
    padding: 18px 20px;
  }

  .projection-card {
    grid-template-columns: 1fr;
    gap: 8px;
    border-radius: 24px;
    padding: 18px 20px;
  }

  .projection-card span,
  .projection-card h3,
  .projection-card b,
  .projection-card small,
  .projection-card ul {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }

  .projection-card span {
    margin-bottom: 4px;
  }

  .projection-card b {
    margin-top: 8px;
  }

  .projection-contrast .projection-card h3 {
    font-size: clamp(1.38rem, 6vw, 1.72rem);
    line-height: 1.08;
  }

  .projection-contrast .projection-card b {
    font-size: clamp(1.28rem, 6.6vw, 1.72rem);
  }

  .projection-contrast .projection-card.expanded b,
  .projection-contrast .projection-card.expanded small {
    grid-row: auto;
  }

  .scale-card,
  .projection-card,
  .source-item {
    min-height: auto;
  }

  .projection-card h3 {
    margin-top: 42px;
  }

  .numbers {
    padding: 72px 0;
  }

  .numbers-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 18px;
  }

  .since,
  .numbers h2,
  .numbers-note {
    grid-column: 1 / -1;
  }

  .numbers h2 {
    line-height: 1.08;
  }

  .big-stat strong {
    font-size: clamp(2.45rem, 11.4vw, 3.55rem);
  }

  .big-stat span,
  .numbers-note {
    max-width: 100%;
  }

  .plan-card {
    min-height: auto;
    padding: 32px;
  }

  .plans .section-title {
    margin-bottom: 48px;
  }

  .plans .section-title h2 {
    max-width: 12ch;
    margin-inline: auto;
    line-height: 1.14;
  }

  .month-grid article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .investment-box {
    min-height: auto;
    text-align: left;
  }

  .investment-copy,
  .investment-data {
    grid-column: auto;
    grid-row: auto;
  }

  .investment-copy {
    gap: 42px;
    padding-top: 0;
  }

  .hero-actions .button {
    width: 100%;
  }
}

@media (max-width: 440px) {
  section[id] {
    scroll-margin-top: 104px;
  }

  h1 {
    font-size: clamp(1.96rem, 9.2vw, 2.12rem);
  }

  h2,
  .green-layout h2,
  .numbers h2 {
    font-size: clamp(1.76rem, 8.4vw, 1.94rem);
  }

  .plans .section-title h2 {
    font-size: clamp(1.72rem, 8.6vw, 2.02rem);
    line-height: 1.16;
  }

  .network-copy h2,
  .scale-head h2,
  .leverage-copy h2,
  .premium-pitch h2 {
    font-size: clamp(1.68rem, 8.2vw, 1.98rem);
    line-height: 1.1;
  }

  .network-copy p,
  .leverage-copy p,
  .premium-pitch p {
    font-size: 0.98rem;
  }

  .tree-node strong,
  .scale-card h3,
  .source-item strong {
    font-size: 1.32rem;
  }

  .network-tree,
  .scale-card,
  .projection-card,
  .source-item {
    padding-inline: 20px;
  }

  .projection-card h3 {
    font-size: clamp(1.8rem, 10vw, 2.4rem);
  }

  .numbers-layout {
    gap: 26px 14px;
  }

  .big-stat strong {
    font-size: clamp(2.05rem, 10vw, 2.55rem);
  }

  .big-stat span {
    font-size: 0.9rem;
  }

  .data-card,
  .health-card,
  .sensor-card,
  .plan-card,
  .lead-form,
  .recurrence-panel {
    border-radius: 22px;
  }

  .price-line span {
    font-size: 0.96rem;
  }

  .price-line strong {
    font-size: clamp(2.55rem, 13vw, 3rem);
  }

  .plan-card {
    padding: 28px 24px;
  }

  .plan-card .button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 340px) {
  h1 {
    font-size: 1.98rem;
  }

  h2,
  .green-layout h2,
  .numbers h2 {
    font-size: 1.82rem;
    line-height: 1.12;
  }

  .plans .section-title h2 {
    max-width: 12ch;
    font-size: 1.76rem;
    line-height: 1.2;
  }

  .numbers h2 {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 780px), (hover: none) and (pointer: coarse) {
  section[id] {
    scroll-margin-top: 148px;
  }

  .network-growth {
    overflow: hidden;
  }

  .network-growth .container {
    width: min(100% - 32px, var(--max));
  }

  .network-hero,
  .scale-insight,
  .projection-statement,
  .leverage-layout {
    display: block;
  }

  .network-copy,
  .process-heading,
  .scale-contrast .scale-head,
  .projection-statement,
  .leverage-copy,
  .premium-pitch {
    text-align: left;
  }

  .network-copy h2,
  .process-heading h2,
  .scale-head h2,
  .projection-statement h3,
  .leverage-copy h2,
  .premium-pitch h2 {
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
    text-wrap: wrap;
  }

  .network-tree {
    display: block;
    max-width: 440px;
    min-height: 0;
    margin: 38px auto 0;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    animation: none;
  }

  .tree-root,
  .tree-node,
  .process-card,
  .source-item {
    display: block;
    box-sizing: border-box;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 22px;
    background-color: #171919;
    background-image:
      radial-gradient(circle at 86% 18%, rgba(128, 238, 85, 0.13), transparent 30%),
      linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.34);
    overflow: hidden;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    animation: none;
    transform: none;
  }

  .tree-root {
    min-height: 118px;
    max-width: none;
    margin: 0 0 18px;
    padding: 22px;
    text-align: center;
  }

  .tree-root::after,
  .tree-grid::before,
  .tree-node::before {
    display: none;
  }

  .tree-root span,
  .tree-root small,
  .tree-node span,
  .tree-node strong,
  .process-card strong,
  .process-card div span,
  .process-card p,
  .process-card small,
  .source-item span,
  .source-item strong {
    position: relative;
    z-index: 1;
  }

  .tree-root span,
  .tree-node strong,
  .source-item strong {
    display: block;
  }

  .tree-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: none;
    margin: 0;
  }

  .tree-node {
    min-height: 116px;
    padding: 20px;
  }

  .tree-node:nth-child(2) {
    background-image:
      radial-gradient(circle at 84% 20%, rgba(101, 50, 255, 0.24), transparent 32%),
      linear-gradient(135deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.028));
  }

  .tree-node:nth-child(3) {
    background-image:
      radial-gradient(circle at 84% 20%, rgba(240, 90, 167, 0.22), transparent 32%),
      linear-gradient(135deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.028));
  }

  .tree-node:nth-child(4) {
    background-image:
      radial-gradient(circle at 84% 20%, rgba(255, 132, 71, 0.2), transparent 32%),
      linear-gradient(135deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.028));
  }

  .tree-node strong {
    max-width: 12ch;
    margin-top: 24px;
    font-size: 1.28rem;
  }

  .tree-node i {
    right: 18px;
    bottom: 18px;
    width: 44px;
  }

  .network-tree > p {
    max-width: none;
    margin: 18px 0 0;
    text-align: left;
  }

  .network-process {
    margin-top: 50px;
  }

  .process-heading {
    margin-bottom: 28px;
  }

  .process-pill {
    margin-bottom: 18px;
  }

  .network-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: visible;
    counter-reset: none;
  }

  .network-steps > li {
    list-style: none;
  }

  .process-card,
  .process-card:nth-child(even) {
    min-height: 0;
    padding: 20px;
    translate: none;
    transform: translateY(var(--process-parallax, 0px));
  }

  .process-card::before {
    left: 20px;
    right: 20px;
    top: 56px;
  }

  .process-card div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
  }

  .process-card p {
    max-width: none;
    margin: 46px 0 14px;
    font-size: 1.24rem;
  }

  .process-card small {
    display: inline-flex;
    width: auto;
  }

  .process-card.is-lime {
    border-color: rgba(101, 50, 255, 0.34);
    color: #fbfeff;
    background-color: #6532ff;
    background-image:
      radial-gradient(circle at 86% 18%, rgba(240, 90, 167, 0.28), transparent 34%),
      linear-gradient(135deg, #6532ff, #b24ce7);
  }

  .process-card.is-lime::before {
    background: rgba(251, 254, 255, 0.2);
  }

  .process-card.is-lime strong,
  .process-card.is-lime p,
  .process-card.is-lime div span {
    color: #fbfeff;
  }

  .process-card.is-lime small {
    color: rgba(251, 254, 255, 0.76);
    background: rgba(251, 254, 255, 0.12);
  }

  .scale-contrast,
  .projection-contrast {
    border-radius: 28px;
    padding: 22px;
  }

  .scale-insight,
  .projection-insight {
    border-radius: 24px;
    padding: 22px;
  }

  .scale-contrast .scale-head {
    margin-bottom: 30px;
  }

  .scale-statement,
  .projection-statement {
    margin-bottom: 24px;
  }

  .scale-contrast .scale-grid,
  .projection-layout,
  .source-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 0;
  }

  .scale-contrast .scale-card,
  .scale-contrast .scale-card.is-high,
  .scale-contrast .scale-card.is-mid,
  .scale-contrast .scale-card.is-low,
  .projection-card {
    display: grid;
    box-sizing: border-box;
    width: 100%;
    min-height: 0;
    border: 0;
    border-radius: 22px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 44px rgba(7, 16, 7, 0.12);
    animation: none;
    translate: none;
    transform: none;
  }

  .scale-contrast .scale-card {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 4px 14px;
  }

  .projection-card {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .projection-card span,
  .projection-card h3,
  .projection-card b,
  .projection-card small,
  .projection-card ul {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }

  .projection-card h3 {
    margin: 0;
  }

  .projection-card b {
    margin-top: 6px;
    white-space: normal;
  }

  .projection-card.expanded b,
  .projection-card.expanded small {
    grid-row: auto;
  }

  .leverage-layout {
    margin-top: 62px;
  }

  .source-list {
    margin-top: 24px;
  }

  .source-item {
    min-height: 112px;
    padding: 20px;
  }

  .source-item strong {
    max-width: none;
    margin-top: 22px;
    font-size: 1.28rem;
  }

  .premium-pitch {
    max-width: none;
    margin-top: 58px;
  }

}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-item {
    opacity: 1;
    translate: 0 0;
    scale: 1;
    transform: none;
    filter: none;
  }

  .preloader-mark,
  .preloader-mark span::before {
    animation: none !important;
  }

  .preloader-mark {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .preloader-mark span::before {
    transform: none;
  }

  .headline-phrase,
  .accent-fill {
    background-position: 0% 50%;
    filter: none;
  }
}
