:root {
  --bg: #04080b;
  --bg-2: #07141b;
  --surface: rgba(255, 255, 255, 0.055);
  --surface-2: rgba(255, 255, 255, 0.09);
  --line: rgba(160, 226, 240, 0.16);
  --line-strong: rgba(120, 226, 240, 0.36);
  --text: #f3f8fb;
  --muted: #9fb2bb;
  --cyan: #5d929c;
  --cyan-2: #3b737b;
  --cta: #70acb4;
  --lime: #b7cbc8;
  --danger: #ff715e;
  --black: #04080b;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 76% 6%, rgba(74, 190, 202, 0.105), transparent 36rem),
    radial-gradient(circle at 18% 34%, rgba(210, 246, 241, 0.03), transparent 30rem),
    linear-gradient(180deg, #020507 0%, #041017 38%, #03070a 100%);
  font-family: Inter, Arial, sans-serif;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, #000, transparent 76%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
  background: rgba(4, 8, 11, 0.82);
  backdrop-filter: blur(22px);
}

.brand,
.nav-links,
.hero-actions,
.signal-row {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-mark {
  position: relative;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(141, 238, 255, 0.72);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(141, 238, 255, 0.96), rgba(4, 8, 11, 0.28) 48%, rgba(200, 255, 244, 0.54)),
    #06151b;
  box-shadow: 0 0 34px rgba(141, 238, 255, 0.34);
}

.brand-mark::after {
  position: absolute;
  inset: 7px;
  content: "";
  border: 2px solid rgba(4, 8, 11, 0.82);
  border-radius: 3px;
  transform: rotate(45deg);
}

.brand-mark::before {
  position: absolute;
  right: -5px;
  bottom: 5px;
  width: 10px;
  height: 3px;
  content: "";
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: -20px -9px 0 rgba(247, 255, 243, 0.72);
}

.nav-links {
  gap: clamp(16px, 3vw, 34px);
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.nav-links a,
.header-cta,
.button,
.price-card a {
  transition: transform 180ms ease, color 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.nav-links a:hover {
  color: var(--text);
}

.header-cta,
.button,
.price-card a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.header-cta:hover,
.button:hover,
.price-card a:hover {
  transform: translateY(-2px);
}

.button.primary,
.header-cta:hover {
  color: var(--black);
  border-color: var(--cta);
  background: var(--cta);
  box-shadow: 0 0 28px rgba(104, 212, 223, 0.18);
}

.button.ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
}

.section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(84px, 10vw, 138px) clamp(18px, 4vw, 34px);
}

.hero {
  position: relative;
  display: grid;
  width: 100%;
  max-width: none;
  min-height: min(860px, 100vh);
  gap: clamp(12px, 1.8vw, 22px);
  padding: clamp(34px, 3.4vw, 56px) clamp(18px, 5vw, 72px) clamp(22px, 2.8vw, 34px);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3, 7, 10, 0.98) 0%, rgba(4, 11, 15, 0.76) 35%, rgba(5, 18, 23, 0.18) 62%),
    linear-gradient(180deg, rgba(3, 7, 10, 0.52), transparent 34%, rgba(3, 8, 11, 0.64));
}

.hero::after {
  position: absolute;
  top: 31%;
  right: 4%;
  bottom: 15%;
  left: 42%;
  z-index: 2;
  content: "";
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(ellipse at 50% 10%, rgba(230, 250, 252, 0.26) 0 3%, rgba(126, 227, 242, 0.16) 14%, transparent 36%),
    radial-gradient(ellipse at 44% 82%, rgba(126, 227, 242, 0.1), transparent 48%),
    linear-gradient(180deg, transparent 0%, rgba(126, 227, 242, 0.11) 38%, rgba(230, 250, 252, 0.12) 58%, rgba(126, 227, 242, 0.075) 80%, transparent 100%);
  filter: blur(8px);
  mask-image: radial-gradient(ellipse 58% 86% at 48% 48%, #000 0 34%, rgba(0, 0, 0, 0.42) 58%, transparent 84%);
  mix-blend-mode: screen;
  transform: translateY(-26px) scaleY(0.2);
  transform-origin: 55% 28%;
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(390px, 1.14fr);
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
}

.hero h1,
.section-head h2,
.pod-panel h2,
.contact h2 {
  margin: 0;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, Inter, Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(44px, 4.45vw, 64px);
}

.hero h1 span {
  display: block;
  color: var(--cyan);
  text-shadow: 0 0 24px rgba(93, 146, 156, 0.12);
  transition: color 360ms ease, text-shadow 440ms ease;
}

.hero-statement {
  margin-top: 16px;
  color: var(--lime);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero-copy > p:not(.hero-statement):not(.hero-brief),
.contact-copy p {
  max-width: 650px;
  margin: 20px 0 0;
  color: #c1ced5;
  font-size: 18px;
  line-height: 1.55;
}

.hero-brief {
  position: relative;
  max-width: 430px;
  margin: 20px 0 0;
  padding: 16px 18px 16px 20px;
  overflow: hidden;
  border: 1px solid rgba(126, 227, 242, 0.14);
  border-left-color: rgba(126, 227, 242, 0.62);
  border-radius: 6px;
  color: #c8d8de;
  font-size: 17px;
  font-weight: 560;
  line-height: 1.52;
  background:
    linear-gradient(90deg, rgba(126, 227, 242, 0.075), transparent 42%),
    rgba(5, 13, 17, 0.62);
  box-shadow: inset 3px 0 0 rgba(126, 227, 242, 0.72), 0 18px 46px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
}

.hero-brief::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 58px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--cyan), rgba(247, 255, 243, 0.9));
  opacity: 0.75;
}

.hero-brief span {
  color: #f4fbff;
  font-weight: 900;
}

.hero-copy {
  position: relative;
  z-index: 3;
}

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

.signal-row,
.hero-proof {
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.signal-row span,
.hero-proof span {
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.04);
}

.hero-proof {
  display: flex;
}

.hero-proof span {
  color: #d3e3e9;
  background: rgba(141, 238, 255, 0.055);
}

.contact-tools {
  max-width: 660px;
  gap: 10px;
  margin-top: 28px;
  padding: 14px;
  border: 1px solid rgba(141, 238, 255, 0.3);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(141, 238, 255, 0.15), rgba(255, 255, 255, 0.035) 42%, rgba(200, 255, 244, 0.08)),
    rgba(4, 8, 11, 0.54);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 42px rgba(141, 238, 255, 0.13);
  backdrop-filter: blur(14px);
}

.contact-tools strong {
  flex-basis: 100%;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-tools span {
  color: #f4fbff;
  border-color: rgba(141, 238, 255, 0.42);
  background: rgba(141, 238, 255, 0.12);
  box-shadow: 0 0 18px rgba(141, 238, 255, 0.1);
}

.hero-system {
  position: relative;
  z-index: 1;
  isolation: isolate;
  justify-self: end;
  width: min(58vw, 880px);
  aspect-ratio: 16 / 9;
  min-height: 0;
  margin-right: clamp(-74px, -4.2vw, -24px);
  margin-left: clamp(-96px, -5vw, -18px);
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  transform: translateX(clamp(18px, 3vw, 64px));
}

.hero-system video {
  position: absolute;
  z-index: 0;
  inset: -7% -9% -8%;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  opacity: 0.82;
  filter: hue-rotate(-11deg) saturate(0.64) contrast(1.12) brightness(0.76);
  mix-blend-mode: screen;
  transform: scale(0.86);
  transform-origin: 52% 50%;
  -webkit-mask: radial-gradient(ellipse 68% 86% at 50% 50%, #000 0 43%, rgba(0, 0, 0, 0.72) 55%, rgba(0, 0, 0, 0.22) 69%, transparent 86%) center / 100% 100% no-repeat;
  mask: radial-gradient(ellipse 68% 86% at 50% 50%, #000 0 43%, rgba(0, 0, 0, 0.72) 55%, rgba(0, 0, 0, 0.22) 69%, transparent 86%) center / 100% 100% no-repeat;
}

.motion-brand-cover {
  position: absolute;
  right: 1.8%;
  bottom: 9%;
  z-index: 3;
  width: clamp(32px, 4.4vw, 64px);
  aspect-ratio: 1;
  pointer-events: none;
  background: radial-gradient(circle, rgba(4, 8, 11, 0.98) 0 18%, rgba(4, 8, 11, 0.88) 35%, rgba(4, 8, 11, 0.42) 54%, transparent 78%);
  filter: blur(2px);
}

.motion-edge-fade {
  position: absolute;
  inset: -10% -13% -13%;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 64% at 51% 50%, transparent 0 48%, rgba(3, 10, 13, 0.32) 64%, rgba(3, 8, 11, 0.78) 82%, #03080b 100%),
    linear-gradient(90deg, #04080b 0%, rgba(4, 8, 11, 0.94) 12%, rgba(4, 8, 11, 0.36) 28%, transparent 48%, rgba(4, 8, 11, 0.34) 73%, rgba(4, 8, 11, 0.92) 91%, #04080b 100%),
    linear-gradient(180deg, rgba(4, 8, 11, 0.8) 0%, rgba(4, 8, 11, 0.22) 19%, transparent 44%, rgba(4, 8, 11, 0.36) 72%, #04080b 100%);
}

.hero-system::before {
  position: absolute;
  inset: -22% -26%;
  z-index: -1;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(ellipse at 52% 50%, rgba(126, 227, 242, 0.1), transparent 48%),
    radial-gradient(ellipse at 62% 62%, rgba(35, 159, 170, 0.055), transparent 42%),
    radial-gradient(ellipse at 16% 50%, rgba(3, 7, 10, 0.92), transparent 52%);
}

.hero-system::after {
  position: absolute;
  inset: -8% -9%;
  z-index: 1;
  content: "";
  pointer-events: none;
  opacity: 0.18;
  background:
    radial-gradient(ellipse at 52% 50%, rgba(210, 246, 241, 0.22), transparent 28%),
    radial-gradient(ellipse at 58% 54%, rgba(49, 182, 194, 0.24), transparent 58%),
    linear-gradient(135deg, rgba(132, 230, 238, 0.12), transparent 44%, rgba(210, 246, 241, 0.08));
  mix-blend-mode: color;
  -webkit-mask: radial-gradient(ellipse 60% 74% at 50% 51%, #000 0 42%, rgba(0, 0, 0, 0.56) 56%, rgba(0, 0, 0, 0.12) 69%, transparent 84%);
  mask: radial-gradient(ellipse 60% 74% at 50% 51%, #000 0 42%, rgba(0, 0, 0, 0.56) 56%, rgba(0, 0, 0, 0.12) 69%, transparent 84%);
}

.motion-current {
  position: absolute;
  right: 7%;
  bottom: -14%;
  left: 39%;
  height: 190px;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(230, 250, 252, 0.62) 0 2%, rgba(126, 227, 242, 0.34) 12%, rgba(126, 227, 242, 0.1) 28%, transparent 58%),
    linear-gradient(180deg, rgba(126, 227, 242, 0.22), rgba(230, 250, 252, 0.13) 44%, rgba(126, 227, 242, 0.07) 70%, transparent);
  filter: blur(10px);
  mask-image: radial-gradient(ellipse 44% 88% at 50% 38%, #000 0 36%, rgba(0, 0, 0, 0.44) 58%, transparent 86%);
  mix-blend-mode: screen;
  transform: translateY(-20px) scaleY(0.18);
  transform-origin: 50% 0%;
  transition: opacity 280ms ease, transform 520ms cubic-bezier(0.18, 0.84, 0.28, 1);
}

.logo-energy {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.energy-ring,
.energy-core,
.energy-spark,
.hero-energy,
.energy-sweep,
.energy-beam,
.edge-spark {
  position: absolute;
  pointer-events: none;
}

.energy-ring {
  top: 50%;
  left: 52%;
  width: clamp(170px, 19vw, 310px);
  aspect-ratio: 1;
  border: 2px solid rgba(141, 238, 255, 0.72);
  border-radius: 50%;
  opacity: 0;
  filter: blur(0.2px) drop-shadow(0 0 22px rgba(141, 238, 255, 0.72));
  transform: translate(-50%, -50%) scale(0.32);
}

.energy-core {
  top: 50%;
  left: 52%;
  width: clamp(90px, 9vw, 156px);
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0;
  background: radial-gradient(circle, rgba(241, 255, 255, 0.95) 0 6%, rgba(141, 238, 255, 0.76) 12%, rgba(190, 244, 255, 0.28) 28%, transparent 62%);
  mix-blend-mode: screen;
  transform: translate(-50%, -50%) scale(0.55);
}

.energy-spark {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  opacity: 0;
  background: #f7fff3;
  box-shadow: 0 0 20px rgba(247, 255, 243, 0.82), 0 0 34px rgba(141, 238, 255, 0.72);
}

.spark-a {
  top: 31%;
  left: 68%;
  animation-delay: 0.22s;
}

.spark-b {
  top: 43%;
  left: 31%;
  animation-delay: 0.5s;
}

.spark-c {
  top: 66%;
  left: 59%;
  animation-delay: 0.76s;
}

.hero-energy {
  inset: 0;
  z-index: 2;
  overflow: hidden;
}

.energy-sweep {
  top: 52%;
  right: -20%;
  left: -20%;
  height: 4px;
  opacity: 0;
  background:
    linear-gradient(90deg, transparent, rgba(141, 238, 255, 0.16), rgba(246, 255, 255, 0.98), rgba(180, 244, 255, 0.46), transparent),
    repeating-linear-gradient(90deg, transparent 0 80px, rgba(141, 238, 255, 0.72) 80px 116px, transparent 116px 156px);
  box-shadow:
    0 0 18px rgba(141, 238, 255, 0.92),
    0 0 46px rgba(141, 238, 255, 0.24);
  transform: translateY(115px) scaleX(0.2);
}

.energy-beam {
  top: 28%;
  right: -12%;
  left: 47%;
  height: 2px;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(141, 238, 255, 0.86), rgba(247, 255, 243, 0.58), transparent);
  box-shadow: 0 0 22px rgba(141, 238, 255, 0.72);
  transform: rotate(-11deg) translateX(-18%);
  transform-origin: left center;
}

.edge-spark {
  width: 5px;
  height: 18px;
  border-radius: 999px;
  opacity: 0;
  background: #f7fff3;
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.82), 0 0 26px rgba(141, 238, 255, 0.62);
  transform: rotate(34deg);
}

.edge-a {
  top: 29%;
  right: 17%;
  animation-delay: 0.34s;
}

.edge-b {
  top: 44%;
  right: 8%;
  animation-delay: 0.48s;
}

.edge-c {
  top: 63%;
  right: 23%;
  animation-delay: 0.62s;
}

.section-label,
.price-card span,
.booking-card span,
.qr-card span {
  display: block;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.marquee,
.outcome-strip {
  width: 100%;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.outcome-strip {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: visible;
  background:
    linear-gradient(90deg, rgba(141, 238, 255, 0.08), transparent 40%, rgba(180, 244, 255, 0.025)),
    rgba(255, 255, 255, 0.026);
}

.outcome-strip::before {
  position: absolute;
  inset: -78px -1px -6px;
  z-index: 0;
  content: "";
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(ellipse at 58% 0%, rgba(247, 255, 243, 0.4) 0 3%, rgba(141, 238, 255, 0.22) 12%, rgba(180, 244, 255, 0.08) 28%, transparent 58%),
    linear-gradient(90deg, transparent, rgba(141, 238, 255, 0.14) 32%, rgba(247, 255, 243, 0.2) 52%, rgba(180, 244, 255, 0.1) 72%, transparent);
  filter: blur(8px);
  mask-image: radial-gradient(ellipse 62% 82% at 55% 18%, #000 0 24%, rgba(0, 0, 0, 0.42) 52%, transparent 82%);
  mix-blend-mode: screen;
  transform: translateY(-16px) scaleX(0.08);
  transform-origin: 58% 0%;
}

.hero-outcomes {
  margin-top: clamp(18px, 3.2vw, 42px);
  border: 1px solid rgba(126, 227, 242, 0.15);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.outcome-item {
  position: relative;
  z-index: 1;
  min-height: 78px;
  padding: 13px clamp(14px, 2vw, 22px) 13px clamp(62px, 4.5vw, 76px);
  overflow: hidden;
  transition:
    border-color 260ms ease,
    background 260ms ease,
    box-shadow 260ms ease,
    transform 260ms ease;
}

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

.outcome-item::after {
  position: absolute;
  inset: auto 14px 0;
  height: 2px;
  content: "";
  opacity: 0;
  background: linear-gradient(90deg, transparent, var(--cyan), rgba(247, 255, 243, 0.92), transparent);
  box-shadow: 0 0 22px rgba(141, 238, 255, 0.76);
  transform: translateX(-36%) scaleX(0.2);
  transition: opacity 240ms ease, transform 440ms cubic-bezier(0.18, 0.84, 0.28, 1);
}

.outcome-launch,
.outcome-launch::after,
.outcome-launch .outcome-icon {
  animation-delay: 0s;
}

.outcome-sleep,
.outcome-sleep::after,
.outcome-sleep .outcome-icon {
  animation-delay: 0.12s;
}

.outcome-scale,
.outcome-scale::after,
.outcome-scale .outcome-icon {
  animation-delay: 0.24s;
}

.outcome-investor,
.outcome-investor::after,
.outcome-investor .outcome-icon {
  animation-delay: 0.36s;
}

.outcome-icon {
  position: absolute;
  top: 15px;
  left: clamp(16px, 2vw, 22px);
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(132, 230, 238, 0.26);
  border-radius: 9px;
  color: #c9f4f5;
  background:
    linear-gradient(145deg, rgba(132, 230, 238, 0.18), rgba(49, 182, 194, 0.05)),
    rgba(4, 14, 19, 0.72);
  box-shadow: inset 0 1px 0 rgba(236, 255, 255, 0.16), 0 0 18px rgba(126, 227, 242, 0.12);
  filter: none;
  transition: color 260ms ease, filter 260ms ease, transform 260ms ease;
}

.outcome-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

/* Ensures legacy cached markup cannot surface outcome numbering. */
.outcome-item > span:not(.outcome-icon) {
  display: none !important;
}

.motion-live .hero-system video {
  animation: none;
}

.motion-live h1 span {
  animation: headlineEnergySync 10s ease-in-out infinite;
}

.motion-live .motion-current {
  animation: none;
}

.motion-live .energy-ring {
  animation: ringPulse 10s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.motion-live .energy-core {
  animation: coreFlash 10s ease-out infinite;
}

.motion-live .energy-spark {
  animation: sparkDrift 10s ease-out infinite;
}

.motion-live .energy-sweep {
  animation: sweepPass 10s cubic-bezier(0.18, 0.84, 0.28, 1) infinite;
}

.motion-live .energy-beam {
  animation: diagonalStrike 10s ease-out infinite;
}

.motion-live .edge-spark {
  animation: edgeSpark 10s ease-out infinite;
}

.motion-live .outcome-item {
  animation: none;
}

.motion-live .outcome-item::after {
  animation: none;
}

.motion-live .outcome-icon {
  animation: none;
}

.blast-live .motion-current {
  opacity: 0.44;
  transform: translateY(0) scaleY(1);
}

.blast-live::after {
  animation: heroPowerWave 1.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.blast-live .hero-brief {
  border-color: rgba(141, 238, 255, 0.34);
  border-left-color: rgba(247, 255, 243, 0.82);
  box-shadow:
    inset 3px 0 0 rgba(141, 238, 255, 0.88),
    0 0 32px rgba(141, 238, 255, 0.16),
    0 18px 46px rgba(0, 0, 0, 0.18);
}

/* The headline catches the same restrained energy pulse as the product core. */
.blast-live h1 span {
  color: #9bc6cc;
  text-shadow:
    0 0 14px rgba(124, 196, 205, 0.3),
    0 0 38px rgba(93, 146, 156, 0.16);
}

.blast-live .hero-proof span {
  border-color: rgba(141, 238, 255, 0.34);
  color: #f4fbff;
  background: rgba(141, 238, 255, 0.09);
  box-shadow: 0 0 18px rgba(141, 238, 255, 0.12);
}

.blast-live .button.primary {
  box-shadow: 0 0 38px rgba(126, 227, 242, 0.28), 0 0 18px rgba(247, 255, 243, 0.1);
}

.outcomes-live .outcome-strip::before {
  animation: outcomeWave 1.46s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.outcomes-live .outcome-item {
  animation: outcomeReceive 1.08s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.outcomes-live .outcome-item::after {
  animation: outcomeTrace 0.92s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.outcomes-live .outcome-icon {
  animation: outcomeIconPower 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.outcomes-live .outcome-launch,
.outcomes-live .outcome-launch::after,
.outcomes-live .outcome-launch .outcome-icon {
  animation-delay: 0.22s;
}

.outcomes-live .outcome-sleep,
.outcomes-live .outcome-sleep::after,
.outcomes-live .outcome-sleep .outcome-icon {
  animation-delay: 0.35s;
}

.outcomes-live .outcome-scale,
.outcomes-live .outcome-scale::after,
.outcomes-live .outcome-scale .outcome-icon {
  animation-delay: 0.67s;
}

.outcomes-live .outcome-investor,
.outcomes-live .outcome-investor::after,
.outcomes-live .outcome-investor .outcome-icon {
  animation-delay: 0.8s;
}

.outcomes-live .console-panel {
  animation: panelBoot 1.36s ease-out both;
}

.outcomes-live .panel-a { animation-delay: 0.9s; }
.outcomes-live .panel-b { animation-delay: 1.04s; }
.outcomes-live .panel-c { animation-delay: 1.18s; }

.outcome-item strong {
  display: block;
  margin-top: 2px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.1;
}

.outcome-item p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.hero-console {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 0.86fr) minmax(0, 1fr);
  gap: 14px;
  margin-top: clamp(22px, 2.6vw, 36px);
}

.console-panel {
  position: relative;
  min-height: 160px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(141, 238, 255, 0.14);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(141, 238, 255, 0.085), transparent 40%),
    rgba(8, 16, 20, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.console-panel::before {
  position: absolute;
  top: -42px;
  right: -38px;
  width: 130px;
  height: 130px;
  content: "";
  opacity: 0.22;
  border: 1px solid rgba(141, 238, 255, 0.54);
  border-radius: 50%;
  box-shadow: 0 0 42px rgba(141, 238, 255, 0.24);
}

.console-panel span {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.console-panel h3 {
  max-width: 360px;
  margin: 14px 0 10px;
  color: var(--text);
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.04;
}

.console-panel ul {
  display: grid;
  gap: 5px;
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
}

.console-panel li {
  position: relative;
  padding-left: 17px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.console-panel li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px rgba(141, 238, 255, 0.5);
}

.console-panel a {
  color: var(--lime);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.package-rows {
  display: grid;
  gap: 8px;
  margin-bottom: 15px;
}

.package-rows div,
.package-row-link {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 11px;
  border: 1px solid rgba(141, 238, 255, 0.11);
  border-radius: 4px;
  background: rgba(141, 238, 255, 0.045);
}

.package-row-link {
  position: relative;
  align-items: center;
  margin: 0;
  color: inherit;
  letter-spacing: 0;
  text-transform: none;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.package-row-link::after {
  content: "OPEN";
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  opacity: 0.8;
}

.package-row-link:hover {
  border-color: rgba(132, 230, 238, 0.5);
  background: rgba(132, 230, 238, 0.095);
  box-shadow: 0 0 24px rgba(132, 230, 238, 0.08);
  transform: translateY(-1px);
}

.package-rows strong {
  color: var(--text);
  font-size: 12px;
}

.package-rows span {
  color: var(--lime);
  font-size: 11px;
  white-space: nowrap;
}

.motion-live .console-panel {
  animation: none;
}

.marquee div {
  display: flex;
  width: max-content;
  gap: 16px;
  padding: 14px 0;
  animation: marquee 32s linear infinite;
}

.marquee span {
  padding: 0 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.section-head {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: end;
  margin-bottom: 42px;
}

.section-head h2,
.pod-panel h2,
.contact h2 {
  font-size: 72px;
}

.results-head {
  display: block;
  max-width: var(--max);
  margin: 0 auto 34px;
}

.results {
  padding-top: clamp(64px, 7vw, 96px);
}

.results-head .section-label {
  margin-bottom: 22px;
}

.results-head h2 {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  column-gap: clamp(22px, 4vw, 64px);
  row-gap: 12px;
  align-items: end;
  max-width: 1060px;
  color: var(--cyan);
}

.results-title-demo,
.results-title-production,
.results-title-detail {
  display: block;
}

.results-title-demo {
  grid-column: 1;
  max-width: 8.5ch;
  color: #9fbac1;
}

.results-title-production {
  grid-column: 2;
  max-width: none;
  padding-bottom: 6px;
}

.results-title-detail {
  grid-column: 2;
  max-width: 24ch;
  padding-top: 14px;
  border-top: 1px solid rgba(93, 146, 156, 0.45);
  color: #b9d4da;
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  font-weight: 850;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.section-label {
  margin: 0;
}

.result-grid,
.pricing-grid,
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.result-card,
.audience-card,
.price-card,
.step-card,
.team-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.result-card:hover,
.audience-card:hover,
.price-card:hover,
.step-card:hover,
.team-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
  background: rgba(141, 238, 255, 0.075);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.26);
}

.result-card {
  min-height: 225px;
  padding: 24px;
}

.result-card span,
.step-card span {
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
}

.result-card h3,
.price-card h3,
.step-card h3 {
  margin: 32px 0 10px;
  font-size: 25px;
  line-height: 1.02;
}

.result-card p,
.price-card p,
.team-card p,
.trust-copy p,
.agency-panel p,
.scope-columns li,
.contact-copy p,
.qr-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.trust {
  width: 100%;
  max-width: none;
  padding-inline: clamp(18px, 5vw, 72px);
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(4, 8, 11, 0.9), rgba(141, 238, 255, 0.07), rgba(4, 8, 11, 0.86)),
    rgba(255, 255, 255, 0.02);
}

.trust-panel {
  display: grid;
  max-width: var(--max);
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(30px, 5vw, 70px);
  margin: 0 auto;
  align-items: start;
}

.trust-copy h2,
.agency-panel h2 {
  margin: 0;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, Inter, Arial, sans-serif;
  font-size: 68px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.92;
  text-transform: uppercase;
}

.trust-copy h2 span {
  display: block;
  color: var(--cyan);
}

.trust-copy p,
.agency-panel p {
  max-width: 680px;
  margin: 22px 0 0;
}

.trust-copy .trust-ownership {
  max-width: 520px;
  margin-top: 34px;
  padding-top: 16px;
  border-top: 1px solid rgba(132, 230, 238, 0.22);
  color: #94aab5;
  font-size: 13px;
  line-height: 1.55;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.expertise-grid span {
  min-height: 96px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(4, 8, 11, 0.42);
  color: var(--text);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.2;
}

.trust-visuals {
  display: grid;
  gap: 10px;
}

.trust-figure {
  display: grid;
  grid-template-columns: minmax(156px, 0.7fr) minmax(0, 1.3fr);
  min-height: 152px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background:
    linear-gradient(110deg, rgba(132, 230, 238, 0.08), transparent 54%),
    rgba(4, 10, 14, 0.58);
}

.figure-canvas {
  position: relative;
  min-height: 152px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(rgba(132, 230, 238, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(132, 230, 238, 0.06) 1px, transparent 1px),
    rgba(6, 18, 24, 0.5);
  background-size: 28px 28px;
}

.figure-copy {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 22px;
}

.figure-copy strong {
  color: var(--text);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.08;
}

.figure-copy span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.figure-node,
.figure-line,
.launch-track,
.launch-pulse {
  position: absolute;
  will-change: transform, opacity;
}

.figure-node {
  display: grid;
  min-width: 36px;
  height: 25px;
  place-items: center;
  padding: 0 7px;
  border: 1px solid rgba(132, 230, 238, 0.42);
  border-radius: 4px;
  color: #d9f8f8;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.06em;
  background: rgba(5, 19, 25, 0.86);
  box-shadow: 0 0 15px rgba(132, 230, 238, 0.1);
}

.figure-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(132, 230, 238, 0.8), transparent);
  box-shadow: 0 0 9px rgba(132, 230, 238, 0.34);
}

.figure-core .line-h {
  top: 50%;
  left: 12%;
  width: 76%;
}

.figure-core .line-v {
  top: 16%;
  left: 50%;
  width: 1px;
  height: 68%;
  background: linear-gradient(180deg, transparent, rgba(132, 230, 238, 0.74), transparent);
}

.node-core {
  top: calc(50% - 17px);
  left: calc(50% - 17px);
  width: 34px;
  height: 34px;
  min-width: 34px;
  padding: 0;
  border-radius: 3px;
  background: linear-gradient(135deg, #baf4f5, #359da8);
  box-shadow: 0 0 24px rgba(132, 230, 238, 0.5);
  transform: rotate(45deg);
}

.node-auth { top: 16%; left: 10%; }
.node-api { top: 66%; right: 9%; }
.node-data { bottom: 12%; left: 15%; }

.figure-connect .node-product {
  top: calc(50% - 15px);
  left: calc(50% - 34px);
  width: 68px;
  height: 30px;
  color: var(--black);
  background: var(--cyan);
  box-shadow: 0 0 24px rgba(132, 230, 238, 0.38);
}

.node-pay { top: 13%; left: 8%; }
.node-crm { right: 8%; bottom: 13%; }
.node-ai { top: 16%; right: 7%; }

.connector-a,
.connector-b,
.connector-c {
  width: 46%;
  transform-origin: left center;
}

.connector-a { top: 29%; left: 23%; transform: rotate(25deg); }
.connector-b { top: 50%; left: 51%; transform: rotate(-30deg); }
.connector-c { top: 64%; left: 27%; transform: rotate(-18deg); }

.launch-track {
  top: 50%;
  right: 10%;
  left: 10%;
  height: 2px;
  background: rgba(132, 230, 238, 0.24);
}

.launch-pulse {
  top: calc(50% - 3px);
  left: 18%;
  width: 18px;
  height: 8px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 22px rgba(132, 230, 238, 0.8);
}

.node-build { top: 24%; left: 7%; }
.node-deploy { bottom: 18%; left: calc(50% - 26px); }
.node-live {
  top: 24%;
  right: 7%;
  border-color: rgba(210, 246, 241, 0.72);
  color: var(--black);
  background: var(--lime);
  box-shadow: 0 0 20px rgba(210, 246, 241, 0.3);
}

.trust-figure:hover {
  border-color: rgba(132, 230, 238, 0.46);
  background:
    linear-gradient(110deg, rgba(132, 230, 238, 0.13), transparent 54%),
    rgba(4, 10, 14, 0.68);
}

.trust-figure {
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.1fr);
}

.trust-media {
  position: relative;
  min-height: 152px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background: #06131a;
}

.trust-media::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, rgba(4, 8, 11, 0.08), transparent 38%, rgba(4, 8, 11, 0.34));
}

.trust-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(1.06) brightness(0.78);
  transform: scale(1.08);
  transition: transform 420ms ease, filter 420ms ease;
}

.figure-core .trust-media img { object-position: center 52%; }
.figure-connect .trust-media img { object-position: center 55%; }
.figure-launch .trust-media img { object-position: center 58%; }

.trust-figure:hover .trust-media img {
  filter: saturate(0.96) contrast(1.07) brightness(0.9);
  transform: scale(1.14);
}

.trust-motion-target {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.signal-beam {
  position: absolute;
  width: 33%;
  height: 2px;
  overflow: hidden;
  transform-origin: left center;
}

.signal-beam::before {
  position: absolute;
  top: 0;
  left: -40%;
  width: 42%;
  height: 2px;
  content: "";
  border-radius: 99px;
  background: linear-gradient(90deg, transparent, #71e8ee 30%, #f0ffff 52%, #71e8ee 74%, transparent);
  box-shadow: 0 0 12px rgba(132, 230, 238, 0.95), 0 0 22px rgba(132, 230, 238, 0.48);
  animation: coreSignalPulse 4.8s linear infinite;
}

.beam-a { top: 49%; left: 45%; transform: rotate(-33deg); }
.beam-b { top: 49%; left: 53%; transform: rotate(33deg); }
.beam-c { top: 55%; left: 45%; transform: rotate(33deg); }
.beam-d { top: 55%; left: 53%; transform: rotate(-33deg); }
.beam-b::before { animation-delay: 1.2s; }
.beam-c::before { animation-delay: 2.4s; }
.beam-d::before { animation-delay: 3.6s; }

.integration-beam {
  position: absolute;
  width: 35%;
  height: 2px;
  overflow: hidden;
  transform-origin: left center;
}

.integration-beam::before {
  position: absolute;
  top: 0;
  left: -42%;
  width: 44%;
  height: 2px;
  content: "";
  border-radius: 99px;
  background: linear-gradient(90deg, transparent, #46d7e1 28%, #f0ffff 52%, #75eaf0 74%, transparent);
  box-shadow: 0 0 12px rgba(132, 230, 238, 0.96), 0 0 24px rgba(49, 182, 194, 0.5);
  animation: integrationSignalPulse 3.9s linear infinite;
}

.int-top { top: 49%; left: 50%; transform: rotate(-90deg); }
.int-left { top: 56%; left: 47%; transform: rotate(147deg); }
.int-right { top: 56%; left: 53%; transform: rotate(33deg); }
.int-left::before { animation-delay: 1.3s; }
.int-right::before { animation-delay: 2.6s; }

.figure-connect .trust-media img,
.figure-connect:hover .trust-media img {
  transform: scale(1.08);
}

.figure-core .trust-media img,
.figure-core:hover .trust-media img,
.figure-launch .trust-media img,
.figure-launch:hover .trust-media img {
  transform: scale(1.08);
}

.launch-beam {
  position: absolute;
  width: 38%;
  height: 2px;
  overflow: hidden;
  transform-origin: left center;
}

.launch-beam::before {
  position: absolute;
  top: 0;
  left: -42%;
  width: 44%;
  height: 2px;
  content: "";
  border-radius: 99px;
  background: linear-gradient(90deg, transparent, #55dce6 28%, #f4ffff 52%, #76eaf1 74%, transparent);
  box-shadow: 0 0 12px rgba(132, 230, 238, 0.96), 0 0 24px rgba(49, 182, 194, 0.46);
  animation: launchSignalPulse 4.5s linear infinite;
}

.launch-build { top: 62%; left: 29%; width: 30%; transform: rotate(-28deg); }
.launch-cloud { top: 54%; left: 57%; width: 23%; transform: rotate(-14deg); }
.launch-monitor { top: 51%; left: 78%; width: 18%; transform: rotate(-2deg); }
.launch-cloud::before { animation-delay: 1.5s; }
.launch-monitor::before { animation-delay: 3s; }

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

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}

.leader-card {
  position: relative;
  display: flex;
  min-height: 318px;
  flex-direction: column;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(132, 230, 238, 0.13), transparent 46%),
    rgba(255, 255, 255, 0.045);
}

.leader-card::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 34%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--cyan), var(--lime));
}

.leader-card > span {
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.leader-card h3 {
  margin: 30px 0 8px;
  font-size: 28px;
  line-height: 1;
}

.leader-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.48;
}

.leader-card .leader-role {
  color: #d7e7eb;
  font-weight: 650;
}

.leader-card .leader-summary {
  margin-top: 12px;
}

.leader-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}

.leader-signals span {
  padding: 7px 9px;
  border: 1px solid rgba(132, 230, 238, 0.2);
  border-radius: 999px;
  color: #d7eff2;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  background: rgba(132, 230, 238, 0.06);
}

.leader-card a {
  margin-top: auto;
  padding-top: 22px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.leader-card a:hover {
  color: var(--lime);
}

.leader-card-profile {
  display: block;
  grid-column: auto;
  min-height: 420px;
  padding: 26px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 84% 40%, rgba(92, 166, 176, 0.18), transparent 16rem),
    linear-gradient(105deg, rgba(4, 10, 13, 0.92) 0%, rgba(7, 28, 36, 0.88) 46%, rgba(8, 28, 36, 0.26) 100%),
    rgba(255, 255, 255, 0.045);
}

.leader-profile-copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
  padding: 0;
}

.leader-profile-copy > span {
  display: block;
  max-width: 58%;
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.leader-profile-media {
  position: absolute;
  right: -8px;
  bottom: 0;
  width: 54%;
  height: 94%;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  opacity: 0.9;
  pointer-events: none;
}

.leader-profile-media::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(ellipse at 58% 44%, rgba(93, 146, 156, 0.16), transparent 42%),
    linear-gradient(90deg, rgba(4, 9, 12, 0.86) 0%, rgba(4, 9, 12, 0.38) 34%, rgba(4, 9, 12, 0) 58%),
    linear-gradient(180deg, rgba(4, 8, 11, 0.02) 24%, rgba(4, 8, 11, 0.74) 100%);
}

.leader-profile-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 24%;
  filter: saturate(0.72) contrast(1.05) brightness(0.78);
}

.leader-card-profile h3,
.leader-card-profile .leader-role {
  max-width: 58%;
}

.leader-card-profile .leader-summary {
  max-width: 60%;
  margin-top: 22px;
}

.team-card {
  min-height: 285px;
  padding: 24px;
}

.team-card span {
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
}

.team-card h3 {
  margin: 34px 0 12px;
  font-size: 24px;
  line-height: 1.04;
}

.agency-panel {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(141, 238, 255, 0.11), transparent 42%),
    rgba(255, 255, 255, 0.045);
}

.agency-panel .button {
  margin-top: 28px;
}

.services {
  width: 100%;
  max-width: none;
  padding-inline: clamp(18px, 5vw, 72px);
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, transparent, rgba(141, 238, 255, 0.08), transparent),
    rgba(255, 255, 255, 0.02);
}

.services .section-head,
.who-help .section-head,
.who-help-layout,
.audience-grid {
  max-width: var(--max);
  margin-inline: auto;
}

.who-help {
  width: 100%;
  max-width: none;
  padding-inline: clamp(18px, 5vw, 72px);
  border-block: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 88% 48%, rgba(132, 230, 238, 0.11), transparent 34rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(132, 230, 238, 0.045));
}

.who-help-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(320px, 0.68fr);
  gap: clamp(18px, 3vw, 38px);
  align-items: stretch;
}

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

.audience-card {
  min-height: 238px;
  padding: 24px;
  color: var(--text);
}

.audience-card > span {
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
}

.audience-card h3 {
  margin: 30px 0 12px;
  font-size: 24px;
  line-height: 1.02;
}

.audience-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.56;
}

.who-signal {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background:
    linear-gradient(145deg, rgba(132, 230, 238, 0.14), transparent 45%),
    rgba(4, 12, 16, 0.78);
}

.who-signal::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 38%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--cyan), var(--lime));
}

.who-signal h3 {
  max-width: 410px;
  margin: 28px 0 14px;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, Inter, Arial, sans-serif;
  font-size: clamp(32px, 3.2vw, 44px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.92;
  text-transform: uppercase;
}

.who-signal-intro,
.who-signal-close {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.56;
}

.signal-contrast {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  margin: 26px 0;
  padding: 15px 0;
  border-block: 1px solid rgba(160, 226, 240, 0.2);
  color: #d4e1e6;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.28;
}

.signal-contrast i {
  width: 22px;
  height: 1px;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(132, 230, 238, 0.62);
}

.signal-contrast strong {
  color: var(--cyan);
  text-align: right;
}

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

.who-signal li {
  position: relative;
  padding-left: 18px;
  color: #b7c8cf;
  font-size: 14px;
  line-height: 1.45;
}

.who-signal li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 13px rgba(132, 230, 238, 0.55);
}

.who-signal-close {
  margin-top: 22px;
  color: var(--lime);
  font-weight: 850;
}

.pricing {
  width: 100%;
  max-width: none;
  padding-inline: clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 50% 0%, rgba(141, 238, 255, 0.11), transparent 34rem),
    linear-gradient(180deg, rgba(141, 238, 255, 0.055), rgba(255, 255, 255, 0.014));
}

.pricing .section-head,
.pricing-grid {
  max-width: var(--max);
  margin-inline: auto;
}

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

.price-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.price-card.featured {
  border-color: rgba(141, 238, 255, 0.72);
  background:
    linear-gradient(180deg, rgba(141, 238, 255, 0.16), rgba(255, 255, 255, 0.055)),
    rgba(4, 8, 11, 0.72);
}

.price-card.featured::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--cyan), var(--lime));
}

.price-card h3 {
  margin-top: 28px;
  font-size: 38px;
}

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

.price-actions {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.price-card .price-actions a {
  margin-top: 0;
}

.price-card .audit-details-link,
.price-card .stabilization-details-link {
  min-height: 40px;
  border-color: rgba(132, 230, 238, 0.2);
  color: var(--text);
  background: rgba(132, 230, 238, 0.05);
}

.price-card .stabilization-details-link {
  border-color: rgba(93, 146, 156, 0.45);
  color: #d4eaed;
  background: rgba(93, 146, 156, 0.1);
}

.pod-panel {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: clamp(30px, 5vw, 70px);
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(141, 238, 255, 0.11), transparent 42%),
    rgba(255, 255, 255, 0.045);
}

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

.scope-columns div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(4, 8, 11, 0.42);
}

.scope-columns h3 {
  margin: 0 0 14px;
  color: var(--text);
}

.scope-columns ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.scope-columns .not-included {
  border-color: rgba(255, 113, 94, 0.34);
  background: rgba(255, 113, 94, 0.08);
}

.process-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}

.step-card {
  min-height: 210px;
  padding: 22px;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.035);
}

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

.step-card h3 {
  margin-top: 34px;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.48;
}

.faq {
  width: 100%;
  max-width: none;
  padding-inline: clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 12%, rgba(132, 230, 238, 0.08), transparent 32rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.016), rgba(132, 230, 238, 0.035));
}

.faq .section-head,
.faq-list {
  max-width: var(--max);
  margin-inline: auto;
}

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

.faq-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(160, 226, 240, 0.15);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(132, 230, 238, 0.08), transparent 42%),
    rgba(4, 8, 11, 0.56);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.faq-item[open] {
  border-color: rgba(132, 230, 238, 0.32);
  background:
    linear-gradient(135deg, rgba(132, 230, 238, 0.12), transparent 42%),
    rgba(5, 15, 20, 0.72);
}

.faq-item summary {
  position: relative;
  display: block;
  min-height: 72px;
  padding: 20px 54px 20px 20px;
  color: var(--text);
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.1;
  list-style: none;
}

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

.faq-item summary::after {
  position: absolute;
  top: 20px;
  right: 20px;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  content: "+";
  border: 1px solid rgba(132, 230, 238, 0.34);
  border-radius: 50%;
  color: var(--cyan);
  font-size: 18px;
  line-height: 1;
  background: rgba(132, 230, 238, 0.065);
}

.faq-item[open] summary::after {
  content: "-";
  color: var(--black);
  background: var(--cyan);
}

.faq-item p,
.faq-item li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.faq-item p {
  margin: 0;
  padding: 0 20px 14px;
}

.faq-item ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 16px;
  margin: 0 20px 16px;
  padding: 0;
  list-style: none;
}

.faq-item li {
  position: relative;
  padding-left: 16px;
}

.faq-item li::before {
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(132, 230, 238, 0.42);
}

.contact {
  position: relative;
  display: grid;
  width: 100%;
  max-width: none;
  min-height: 860px;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 520px);
  align-items: center;
  gap: clamp(30px, 6vw, 92px);
  padding-inline: clamp(18px, 5vw, 72px);
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.contact-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.48;
}

.contact-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: hue-rotate(-8deg) saturate(0.68) contrast(1.1) brightness(0.7);
}

.contact::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(90deg, rgba(4, 8, 11, 0.96), rgba(4, 8, 11, 0.64), rgba(4, 8, 11, 0.92));
}

.contact-copy {
  max-width: 780px;
}

.booking-stack {
  display: grid;
  gap: 14px;
  width: min(100%, 520px);
}

.booking-card {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(132, 230, 238, 0.12), transparent 42%),
    rgba(4, 8, 11, 0.78);
  box-shadow: 0 0 70px rgba(132, 230, 238, 0.11);
  backdrop-filter: blur(18px);
}

.booking-card::before {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 52px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--cyan), var(--lime));
}

.booking-card .calendly-inline-widget {
  width: 100%;
  min-width: 0 !important;
  height: 690px !important;
  margin-top: 16px;
  overflow: hidden;
  border: 1px solid rgba(132, 230, 238, 0.22);
  border-radius: 6px;
  background: #061016;
}

.qr-card {
  position: relative;
  display: block;
  width: min(100%, 330px);
  padding: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(141, 238, 255, 0.14), transparent 42%),
    rgba(4, 8, 11, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: 0 0 70px rgba(141, 238, 255, 0.12);
}

.qr-card::before {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--cyan), var(--lime));
}

.qr-frame {
  margin-top: 16px;
  padding: 18px;
  border: 1px solid rgba(141, 238, 255, 0.48);
  border-radius: 6px;
  background: #f7fbff;
  box-shadow: inset 0 0 0 1px rgba(4, 8, 11, 0.08);
}

.qr-frame img {
  display: block;
  width: 100%;
  border-radius: 4px;
}

.qr-card p {
  margin: 14px 0 0;
  text-align: center;
}

.qr-card.compact {
  width: 100%;
  padding: 16px 18px;
}

.qr-card.compact::before {
  width: 36px;
}

.qr-card.compact p {
  margin-top: 8px;
  text-align: left;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 420ms ease, transform 420ms ease;
}

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

@keyframes marquee {
  from {
    transform: translateX(0);
  }

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

@keyframes ringPulse {
  0%,
  11%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.32);
  }

  16% {
    opacity: 0.82;
    transform: translate(-50%, -50%) scale(0.72);
  }

  24% {
    opacity: 0.18;
    transform: translate(-50%, -50%) scale(1.52);
  }

  31% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.9);
  }
}

@keyframes systemFocus {
  0%,
  100% {
    filter: hue-rotate(-8deg) saturate(0.72) contrast(1.14) brightness(0.76);
    transform: scale(1) translate3d(0, 0, 0);
  }

  16% {
    filter: hue-rotate(-8deg) saturate(0.74) contrast(1.15) brightness(0.78);
    transform: scale(1.005) translate3d(0, 0, 0);
  }

  27% {
    filter: hue-rotate(-8deg) saturate(0.72) contrast(1.14) brightness(0.77);
    transform: scale(1) translate3d(0, 0, 0);
  }

  78% {
    filter: hue-rotate(-8deg) saturate(0.78) contrast(1.12) brightness(0.84);
    transform: scale(1.01) translate3d(0, -2px, 0);
  }

  90% {
    filter: hue-rotate(-8deg) saturate(0.74) contrast(1.14) brightness(0.78);
    transform: scale(1) translate3d(0, 0, 0);
  }
}

@keyframes currentToOutcomes {
  0%,
  74%,
  100% {
    opacity: 0;
    transform: translateY(28px) scaleX(0.16);
  }

  80% {
    opacity: 0.9;
    transform: translateY(72px) scaleX(0.68);
  }

  86% {
    opacity: 0.38;
    transform: translateY(106px) scaleX(1);
  }

  92% {
    opacity: 0;
    transform: translateY(124px) scaleX(0.92);
  }
}

@keyframes coreFlash {
  0%,
  12%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.55);
  }

  17% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.9);
  }

  23% {
    opacity: 0.12;
    transform: translate(-50%, -50%) scale(1.25);
  }
}

@keyframes sparkDrift {
  0%,
  13%,
  100% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.6);
  }

  17% {
    opacity: 1;
  }

  25% {
    opacity: 0;
    transform: translate3d(34px, -42px, 0) scale(1.15);
  }
}

@keyframes sweepPass {
  0%,
  48%,
  100% {
    opacity: 0;
    transform: translateY(118px) scaleX(0.2);
  }

  55% {
    opacity: 0.92;
    transform: translateY(10px) scaleX(0.98);
  }

  62% {
    opacity: 0.28;
    transform: translateY(-18px) scaleX(1.05);
  }

  68% {
    opacity: 0;
    transform: translateY(-44px) scaleX(0.78);
  }
}

@keyframes diagonalStrike {
  0%,
  18%,
  100% {
    opacity: 0;
    transform: rotate(-11deg) translateX(-18%) scaleX(0.18);
  }

  22% {
    opacity: 0.78;
    transform: rotate(-11deg) translateX(-4%) scaleX(1);
  }

  29% {
    opacity: 0;
    transform: rotate(-11deg) translateX(18%) scaleX(0.7);
  }
}

@keyframes edgeSpark {
  0%,
  18%,
  100% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(34deg) scaleY(0.4);
  }

  23% {
    opacity: 1;
    transform: translate3d(-20px, -15px, 0) rotate(34deg) scaleY(1);
  }

  30% {
    opacity: 0;
    transform: translate3d(-58px, -35px, 0) rotate(34deg) scaleY(0.55);
  }
}

@keyframes outcomeWake {
  0%,
  76%,
  100% {
    border-color: var(--line);
    background: transparent;
    box-shadow: none;
  }

  82% {
    border-color: rgba(141, 238, 255, 0.5);
    background: rgba(141, 238, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 28px rgba(141, 238, 255, 0.12);
  }

  91% {
    border-color: rgba(180, 244, 255, 0.28);
    background: rgba(180, 244, 255, 0.03);
  }
}

@keyframes iconCharge {
  0%,
  76%,
  100% {
    color: var(--lime);
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 0 12px rgba(141, 238, 255, 0.32));
  }

  82% {
    color: #f7fff3;
    transform: translateY(-5px) scale(1.18);
    filter: drop-shadow(0 0 24px rgba(141, 238, 255, 0.9)) drop-shadow(0 0 14px rgba(247, 255, 243, 0.52));
  }

  90% {
    color: var(--lime);
    transform: translateY(0) scale(1.03);
  }
}

@keyframes outcomeLine {
  0%,
  77%,
  100% {
    opacity: 0;
    transform: translateX(-36%) scaleX(0.2);
  }

  83% {
    opacity: 1;
    transform: translateX(0) scaleX(1);
  }

  91% {
    opacity: 0;
    transform: translateX(34%) scaleX(0.54);
  }
}

@keyframes outcomeWave {
  0% {
    opacity: 0;
    transform: translateY(-18px) scaleX(0.08);
  }

  22% {
    opacity: 0.34;
    transform: translateY(-8px) scaleX(0.42);
  }

  54% {
    opacity: 0.22;
    transform: translateY(0) scaleX(1);
  }

  100% {
    opacity: 0;
    transform: translateY(8px) scaleX(1.16);
  }
}

@keyframes outcomeReceive {
  0% {
    border-color: var(--line);
    background: transparent;
    box-shadow: none;
    transform: translateY(0);
  }

  30% {
    border-color: rgba(126, 227, 242, 0.52);
    background: rgba(126, 227, 242, 0.09);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 0 30px rgba(126, 227, 242, 0.18);
    transform: translateY(-2px);
  }

  62% {
    border-color: rgba(126, 227, 242, 0.26);
    background: rgba(126, 227, 242, 0.04);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 0 15px rgba(126, 227, 242, 0.07);
    transform: translateY(0);
  }

  100% {
    border-color: var(--line);
    background: transparent;
    box-shadow: none;
    transform: translateY(0);
  }
}

@keyframes outcomeTrace {
  0% { opacity: 0; transform: translateX(-36%) scaleX(0.2); }
  26% { opacity: 1; transform: translateX(-8%) scaleX(0.58); }
  58% { opacity: 0.8; transform: translateX(0) scaleX(1); }
  100% { opacity: 0; transform: translateX(24%) scaleX(0.82); }
}

@keyframes outcomeIconPower {
  0% { color: #c9f4f5; filter: none; transform: translateY(0) scale(1); }
  28% { color: #f7fff3; filter: drop-shadow(0 0 20px rgba(126, 227, 242, 0.72)) drop-shadow(0 0 12px rgba(247, 255, 243, 0.42)); transform: translateY(-4px) scale(1.15); }
  100% { color: #c9f4f5; filter: none; transform: translateY(0) scale(1); }
}

@keyframes coreSignalPulse {
  0% { transform: translateX(0); opacity: 0; }
  8% { opacity: 1; }
  42% { opacity: 1; }
  58%, 100% { transform: translateX(360%); opacity: 0; }
}

@keyframes integrationSignalPulse {
  0% { transform: translateX(0); opacity: 0; }
  8% { opacity: 1; }
  44% { opacity: 1; }
  60%, 100% { transform: translateX(360%); opacity: 0; }
}

@keyframes launchSignalPulse {
  0% { transform: translateX(0); opacity: 0; }
  8% { opacity: 1; }
  46% { opacity: 1; }
  62%, 100% { transform: translateX(360%); opacity: 0; }
}

@keyframes heroPowerWave {
  0% {
    opacity: 0;
    transform: translateY(-26px) scaleY(0.2);
  }

  18% {
    opacity: 0.3;
    transform: translateY(-12px) scaleY(0.48);
  }

  52% {
    opacity: 0.22;
    transform: translateY(8px) scaleY(0.96);
  }

  100% {
    opacity: 0;
    transform: translateY(28px) scaleY(1.1);
  }
}

@keyframes headlineEnergySync {
  0%,
  76%,
  100% {
    color: var(--cyan);
    text-shadow: 0 0 24px rgba(93, 146, 156, 0.12);
  }

  83% {
    color: #8fbdc3;
    text-shadow:
      0 0 12px rgba(124, 196, 205, 0.24),
      0 0 30px rgba(93, 146, 156, 0.13);
  }

  90% {
    color: #9bc6cc;
    text-shadow:
      0 0 16px rgba(124, 196, 205, 0.31),
      0 0 40px rgba(93, 146, 156, 0.17);
  }

  96% {
    color: #729fa7;
    text-shadow: 0 0 20px rgba(93, 146, 156, 0.16);
  }
}

@keyframes panelBoot {
  0%,
  8%,
  100% {
    border-color: rgba(141, 238, 255, 0.14);
    background:
      linear-gradient(135deg, rgba(141, 238, 255, 0.085), transparent 40%),
      rgba(8, 16, 20, 0.82);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
    transform: translateY(0);
  }

  14% {
    border-color: rgba(141, 238, 255, 0.52);
    background:
      linear-gradient(135deg, rgba(141, 238, 255, 0.16), transparent 46%),
      rgba(8, 20, 24, 0.9);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.095), 0 0 36px rgba(141, 238, 255, 0.13);
    transform: translateY(-3px);
  }

  24% {
    border-color: rgba(180, 244, 255, 0.24);
    transform: translateY(0);
  }
}

@keyframes engineTurn {
  from {
    rotate: 0deg;
  }

  to {
    rotate: 360deg;
  }
}

@keyframes engineBreath {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.92);
  }

  48% {
    opacity: 0.9;
    transform: scale(1.08);
  }
}

@keyframes engineSignal {
  0%,
  16%,
  100% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }

  34% {
    opacity: 0.88;
    clip-path: inset(0 24% 0 0);
  }

  58% {
    opacity: 0.18;
    clip-path: inset(0 0 0 0);
  }
}

@keyframes nodeWake {
  0%,
  26%,
  100% {
    border-color: rgba(117, 218, 224, 0.24);
    box-shadow: 0 0 0 rgba(132, 230, 238, 0);
    transform: translateY(0);
  }

  42% {
    border-color: rgba(169, 245, 248, 0.7);
    box-shadow: 0 0 24px rgba(132, 230, 238, 0.16);
    transform: translateY(-2px);
  }

  64% {
    border-color: rgba(117, 218, 224, 0.32);
    transform: translateY(0);
  }
}

@keyframes loopAtmosphere {
  0%,
  100% {
    opacity: 0.56;
    transform: scale(0.98) rotate(0deg);
  }

  48% {
    opacity: 0.86;
    transform: scale(1.03) rotate(1deg);
  }
}

@keyframes pathGlow {
  0%,
  100% {
    opacity: 0.28;
    filter: drop-shadow(0 0 0 rgba(132, 230, 238, 0));
  }

  40% {
    opacity: 0.92;
    filter: drop-shadow(0 0 18px rgba(132, 230, 238, 0.26));
  }

  70% {
    opacity: 0.5;
  }
}

@keyframes loopBeam {
  0%,
  18%,
  100% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }

  36% {
    opacity: 0.82;
    clip-path: inset(0 28% 0 0);
  }

  62% {
    opacity: 0.18;
    clip-path: inset(0 0 0 0);
  }
}

@keyframes particlePulse {
  0%,
  100% {
    opacity: 0.16;
    transform: scale(0.76);
  }

  28% {
    opacity: 1;
    transform: scale(1.32);
  }

  54% {
    opacity: 0.34;
    transform: scale(0.92);
  }
}

@keyframes usersToCore {
  0%,
  15%,
  100% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.42);
  }

  24% {
    opacity: 0.82;
    transform: translate3d(0, 10px, 0) scale(0.82);
  }

  56% {
    opacity: 1;
    transform: translate3d(var(--drift-x, 0px), clamp(92px, 14vw, 156px), 0) scale(1.04);
  }

  68% {
    opacity: 0.46;
    transform: translate3d(calc(var(--drift-x, 0px) * 0.45), clamp(126px, 18vw, 204px), 0) scale(0.62);
  }

  78% {
    opacity: 0;
    transform: translate3d(0, clamp(138px, 20vw, 220px), 0) scale(0.24);
  }
}

@keyframes revenueToCore {
  0%,
  18%,
  100% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(0.48);
  }

  28% {
    opacity: 0.92;
    transform: translate3d(-18px, 2px, 0) rotate(-6deg) scale(0.92);
  }

  58% {
    opacity: 1;
    transform: translate3d(clamp(-210px, -18vw, -124px), var(--money-y, 6px), 0) rotate(-18deg) scale(1.02);
  }

  70% {
    opacity: 0.42;
    transform: translate3d(clamp(-260px, -23vw, -154px), calc(var(--money-y, 6px) + 10px), 0) rotate(-34deg) scale(0.56);
  }

  80% {
    opacity: 0;
    transform: translate3d(clamp(-278px, -25vw, -170px), calc(var(--money-y, 6px) + 16px), 0) rotate(-45deg) scale(0.24);
  }
}

@keyframes dataToCore {
  0%,
  18%,
  100% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.5);
  }

  30% {
    opacity: 0.75;
    transform: translate3d(-10px, -14px, 0) scale(0.85);
  }

  60% {
    opacity: 1;
    transform: translate3d(var(--data-x, -42px), var(--data-y, -104px), 0) scale(1);
  }

  76% {
    opacity: 0;
    transform: translate3d(calc(var(--data-x, -42px) * 1.15), calc(var(--data-y, -104px) * 1.15), 0) scale(0.25);
  }
}

@keyframes productToCore {
  0%,
  20%,
  100% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scaleX(0.3);
  }

  32% {
    opacity: 0.78;
    transform: translate3d(20px, 0, 0) scaleX(0.8);
  }

  62% {
    opacity: 1;
    transform: translate3d(var(--product-x, 120px), var(--product-y, 0px), 0) scaleX(1);
  }

  78% {
    opacity: 0;
    transform: translate3d(calc(var(--product-x, 120px) * 1.16), calc(var(--product-y, 0px) * 1.16), 0) scaleX(0.2);
  }
}

@keyframes realismDrift {
  0%,
  100% {
    opacity: 0.76;
    filter: saturate(0.86) brightness(0.84) contrast(1.14);
    transform: scale(1);
  }

  44% {
    opacity: 0.9;
    filter: saturate(0.98) brightness(0.98) contrast(1.2);
    transform: scale(1.018);
  }

  68% {
    opacity: 0.82;
    filter: saturate(0.92) brightness(0.9) contrast(1.18);
    transform: scale(1.008);
  }
}

@keyframes ecosystemAtmosphere {
  0%,
  100% {
    opacity: 0.54;
    filter: brightness(0.92);
  }

  45% {
    opacity: 0.82;
    filter: brightness(1.08);
  }
}

@keyframes ecosystemSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes orbitSignal {
  0%,
  18%,
  100% {
    opacity: 0;
    transform: translateX(0) scaleX(0.2);
  }

  42% {
    opacity: 0.85;
    transform: translateX(120%) scaleX(1);
  }

  64% {
    opacity: 0.18;
    transform: translateX(260%) scaleX(0.55);
  }
}

@keyframes planetBreath {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow:
      0 0 82px rgba(132, 230, 238, 0.12),
      0 30px 78px rgba(0, 0, 0, 0.58),
      inset 0 0 52px rgba(160, 221, 219, 0.1),
      inset 0 -42px 78px rgba(0, 0, 0, 0.54);
    filter: brightness(0.96);
  }

  42% {
    transform: translate(-50%, -50%) scale(1.04);
    box-shadow:
      0 0 116px rgba(132, 230, 238, 0.22),
      0 30px 82px rgba(0, 0, 0, 0.62),
      inset 0 0 66px rgba(160, 221, 219, 0.18),
      inset 0 -42px 78px rgba(0, 0, 0, 0.5);
    filter: brightness(1.1);
  }

  74% {
    transform: translate(-50%, -50%) scale(1.13);
    box-shadow:
      0 0 142px rgba(132, 230, 238, 0.3),
      0 36px 92px rgba(0, 0, 0, 0.64),
      inset 0 0 82px rgba(160, 221, 219, 0.22),
      inset 0 -42px 78px rgba(0, 0, 0, 0.46);
    filter: brightness(1.16);
  }

  88% {
    transform: translate(-50%, -50%) scale(1.06);
    box-shadow:
      0 0 96px rgba(132, 230, 238, 0.16),
      0 30px 78px rgba(0, 0, 0, 0.58),
      inset 0 0 58px rgba(160, 221, 219, 0.13),
      inset 0 -42px 78px rgba(0, 0, 0, 0.54);
    filter: brightness(1.02);
  }
}

@keyframes surfaceWake {
  0%,
  100% {
    opacity: 0.38;
    box-shadow: 0 0 12px rgba(132, 230, 238, 0.06);
  }

  44% {
    opacity: 0.9;
    box-shadow:
      0 0 20px rgba(132, 230, 238, 0.18),
      inset 0 0 18px rgba(132, 230, 238, 0.08);
  }
}

@keyframes usersColumnPulse {
  0%,
  18%,
  100% {
    opacity: 0.08;
    transform: translateX(-50%) scaleY(0.78);
  }

  52% {
    opacity: 0.36;
    transform: translateX(-50%) scaleY(1.04);
  }

  70% {
    opacity: 0.52;
    transform: translateX(-50%) scaleY(1.16);
  }
}

@keyframes demandSignalPulse {
  0%,
  18%,
  100% {
    opacity: 0.06;
    filter: blur(0.2px);
  }

  44% {
    opacity: 0.32;
    filter: blur(0);
  }

  64% {
    opacity: 0.22;
    filter: blur(0.1px);
  }
}

@keyframes productOutflowPulse {
  0%,
  48%,
  100% {
    opacity: 0.06;
    transform: rotate(-4deg) scaleX(0.72);
  }

  72% {
    opacity: 0.38;
    transform: rotate(-4deg) scaleX(1.06);
  }

  88% {
    opacity: 0.18;
    transform: rotate(-4deg) scaleX(1.22);
  }
}

@keyframes ecosystemUsers {
  0%,
  16%,
  100% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.35);
  }

  30% {
    opacity: 0.82;
    transform: translate3d(0, 58px, 0) scale(0.86);
  }

  56% {
    opacity: 1;
    transform: translate3d(var(--dx, 0px), clamp(128px, 17vw, 190px), 0) scale(1.08);
  }

  73% {
    opacity: 0.18;
    transform: translate3d(0, clamp(176px, 24vw, 252px), 0) scale(0.24);
  }
}

@keyframes ecosystemRevenue {
  0%,
  14%,
  100% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(0.45);
  }

  30% {
    opacity: 0.82;
    transform: translate3d(var(--r-mid-x, -92px), var(--r-mid-y, -54px), 0) rotate(-8deg) scale(0.84);
  }

  54% {
    opacity: 1;
    transform: translate3d(var(--r-users-x, clamp(-356px, -31vw, -190px)), var(--r-users-y, -172px), 0) rotate(-16deg) scale(1);
  }

  70% {
    opacity: 0;
    transform: translate3d(var(--r-users-out-x, clamp(-374px, -33vw, -208px)), var(--r-users-out-y, -188px), 0) rotate(-26deg) scale(0.24);
  }
}

@keyframes ecosystemData {
  0%,
  16%,
  100% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.42);
  }

  34% {
    opacity: 0.84;
    transform: translate3d(var(--data-mid-x, -22px), var(--data-mid-y, -92px), 0) scale(0.84);
  }

  58% {
    opacity: 1;
    transform: translate3d(var(--data-users-x, -38px), var(--data-users-y, -286px), 0) scale(1);
  }

  74% {
    opacity: 0;
    transform: translate3d(var(--data-users-out-x, -28px), var(--data-users-out-y, -316px), 0) scale(0.22);
  }
}

@keyframes ecosystemProduct {
  0%,
  44%,
  100% {
    opacity: 0;
    transform: translate3d(var(--px, 160px), var(--py, 0px), 0) scaleX(0.22);
  }

  58% {
    opacity: 0.82;
    transform: translate3d(var(--pmx, 74px), var(--pmy, 0px), 0) scaleX(0.82);
  }

  76% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scaleX(1);
  }

  90% {
    opacity: 0;
    transform: translate3d(-18px, 0, 0) scaleX(0.18);
  }
}

@keyframes boostToCore {
  0%,
  16%,
  100% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.32);
  }

  30% {
    opacity: 0.86;
    transform: translate3d(var(--mx, 0), var(--my, 0), 0) scale(0.78);
  }

  58% {
    opacity: 1;
    transform: translate3d(var(--tx, 0), var(--ty, 0), 0) scale(1);
  }

  74% {
    opacity: 0;
    transform: translate3d(var(--tx, 0), var(--ty, 0), 0) scale(0.18);
  }
}

@keyframes boostToUsers {
  0%,
  12%,
  100% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.3);
  }

  32% {
    opacity: 0.84;
    transform: translate3d(var(--mx, 0), var(--my, 0), 0) scale(0.72);
  }

  62% {
    opacity: 1;
    transform: translate3d(var(--tx, 0), var(--ty, 0), 0) scale(0.96);
  }

  78% {
    opacity: 0;
    transform: translate3d(var(--tx2, var(--tx, 0)), var(--ty2, var(--ty, 0)), 0) scale(0.2);
  }
}

@keyframes coreToProduct {
  0%,
  48%,
  100% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.28);
  }

  62% {
    opacity: 0.88;
    transform: translate3d(var(--mx, 0), var(--my, 0), 0) scale(0.78);
  }

  82% {
    opacity: 1;
    transform: translate3d(var(--tx, 0), var(--ty, 0), 0) scale(1);
  }

  94% {
    opacity: 0;
    transform: translate3d(var(--tx, 0), var(--ty, 0), 0) scale(0.22);
  }
}

@keyframes coreFlare {
  0%,
  34%,
  100% {
    opacity: 0.28;
    transform: translate(-50%, -50%) scale(0.84) rotate(0deg);
  }

  56% {
    opacity: 0.86;
    transform: translate(-50%, -50%) scale(1.12) rotate(18deg);
  }

  76% {
    opacity: 0.58;
    transform: translate(-50%, -50%) scale(1.34) rotate(42deg);
  }
}

@keyframes ecoNodeWake {
  0%,
  100% {
    border-color: rgba(139, 197, 201, 0.26);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.04),
      0 14px 30px rgba(0, 0, 0, 0.24);
    filter: brightness(0.95);
  }

  42% {
    border-color: rgba(180, 230, 229, 0.58);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.06),
      0 0 22px rgba(132, 230, 238, 0.14),
      0 14px 30px rgba(0, 0, 0, 0.24);
    filter: brightness(1.12);
  }
}

@keyframes ecoTextPulse {
  0%,
  100% {
    opacity: 0.24;
  }

  36%,
  62% {
    opacity: 0.86;
  }
}

@keyframes coreAttractPulse {
  0%,
  38%,
  100% {
    box-shadow:
      0 26px 58px rgba(0, 0, 0, 0.55),
      0 0 78px rgba(132, 230, 238, 0.18),
      inset 0 0 44px rgba(132, 230, 238, 0.1),
      inset 0 -24px 46px rgba(0, 0, 0, 0.42);
    filter: brightness(1);
  }

  58% {
    box-shadow:
      0 30px 68px rgba(0, 0, 0, 0.58),
      0 0 108px rgba(132, 230, 238, 0.28),
      0 0 34px rgba(221, 255, 247, 0.12),
      inset 0 0 56px rgba(132, 230, 238, 0.16),
      inset 0 -24px 46px rgba(0, 0, 0, 0.4);
    filter: brightness(1.08);
  }

  72% {
    box-shadow:
      0 26px 58px rgba(0, 0, 0, 0.55),
      0 0 84px rgba(132, 230, 238, 0.22),
      inset 0 0 46px rgba(132, 230, 238, 0.12),
      inset 0 -24px 46px rgba(0, 0, 0, 0.42);
    filter: brightness(1.02);
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-energy,
  .logo-energy {
    display: none;
  }
}

@media (max-width: 1180px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.78fr) minmax(380px, 1.22fr);
    gap: 22px;
  }

  .hero h1 {
    max-width: 520px;
    font-size: 54px;
  }

  .hero-system {
    width: min(58vw, 720px);
    margin-left: 0;
    margin-right: -24px;
    transform: none;
  }

  .hero-outcomes {
    margin-top: 28px;
  }

  .section-head h2,
  .pod-panel h2,
  .contact h2 {
    font-size: 58px;
  }

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

  .who-help-layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  }

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

  .outcome-item:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .outcome-item:nth-child(4) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero-grid,
  .section-head,
  .pod-panel,
  .contact,
  .who-help-layout {
    grid-template-columns: 1fr;
  }

  .booking-stack {
    width: 100%;
    max-width: 640px;
  }

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

  .leader-card-profile {
    grid-column: auto;
  }

  .hero {
    min-height: auto;
  }

  .hero-system {
    justify-self: center;
    width: min(100%, 760px);
    aspect-ratio: 16 / 9;
    min-height: 0;
    margin: 10px auto 0;
    transform: none;
  }

  .hero-outcomes {
    margin-top: 24px;
  }

  .hero-console {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .result-grid,
  .team-grid,
  .scope-columns,
  .faq-list,
  .process-line {
    grid-template-columns: 1fr;
  }

  .trust-panel {
    grid-template-columns: 1fr;
  }

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

  .step-card + .step-card {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand {
    gap: 10px;
    font-size: 12px;
  }

  .brand-mark {
    width: 24px;
    height: 24px;
  }

  .header-cta {
    min-height: 42px;
    padding: 0 12px;
    font-size: 11px;
  }

  .section,
  .hero,
  .services,
  .pricing,
  .contact,
  .who-help {
    padding-inline: 16px;
  }

  .hero h1 {
    font-size: clamp(34px, 9.4vw, 39px);
    line-height: 0.95;
  }

  .hero p,
  .contact-copy p {
    font-size: 16px;
  }

  .hero-system {
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 0;
    margin: 4px auto 0;
  }

  .hero-system video {
    inset: -6% -5% -7%;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.8;
    transform: translateX(6%) scale(0.86);
    transform-origin: 50% 50%;
  }

  .motion-edge-fade {
    inset: -12% -15% -14%;
    background:
      radial-gradient(ellipse 54% 68% at 51% 50%, transparent 0 46%, rgba(3, 10, 13, 0.34) 62%, rgba(3, 8, 11, 0.82) 82%, #03080b 100%),
      linear-gradient(90deg, #04080b 0%, rgba(4, 8, 11, 0.92) 10%, rgba(4, 8, 11, 0.32) 25%, transparent 48%, rgba(4, 8, 11, 0.32) 75%, rgba(4, 8, 11, 0.92) 92%, #04080b 100%),
      linear-gradient(180deg, rgba(4, 8, 11, 0.82) 0%, rgba(4, 8, 11, 0.22) 20%, transparent 44%, rgba(4, 8, 11, 0.4) 74%, #04080b 100%);
  }

  .hero-energy {
    opacity: 0.42;
  }

  .energy-sweep {
    top: 70%;
  }

  .energy-beam,
  .edge-spark {
    display: none;
  }

  .button {
    width: 100%;
  }

  .section-head h2,
  .trust-copy h2,
  .agency-panel h2,
  .pod-panel h2,
  .contact h2 {
    font-size: 40px;
    line-height: 0.95;
  }

  .pricing-grid,
  .audience-grid,
  .leadership-grid,
  .expertise-grid,
  .faq-item ul,
  .outcome-strip {
    grid-template-columns: 1fr;
  }

  .leader-card-profile {
    grid-column: auto;
    min-height: 420px;
  }

  .leader-profile-media {
    right: -18px;
    width: 58%;
    opacity: 0.72;
  }

  .leader-profile-copy > span,
  .leader-card-profile h3,
  .leader-card-profile .leader-role,
  .leader-card-profile .leader-summary {
    max-width: 68%;
  }

  .faq-item summary {
    min-height: auto;
    padding: 18px 50px 18px 18px;
    font-size: 17px;
  }

  .faq-item p {
    padding-inline: 18px;
  }

  .faq-item ul {
    margin-inline: 18px;
  }

  .audience-card {
    min-height: 0;
    padding: 22px;
  }

  .who-signal {
    padding: 24px 22px;
  }

  .outcome-item {
    min-height: 96px;
    padding: 15px 16px 15px 68px;
  }

  .outcome-item + .outcome-item,
  .outcome-item:nth-child(3),
  .outcome-item:nth-child(4) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .console-panel {
    min-height: auto;
  }

  .outcome-item,
  .outcome-item:nth-child(3),
  .outcome-item:nth-child(4) {
    min-height: auto;
    border-top: 1px solid var(--line);
    border-left: 0;
    padding: 20px 18px 20px 68px;
  }

  .outcome-item:first-child {
    border-top: 0;
  }

  .price-card,
  .team-card,
  .agency-panel,
  .pod-panel,
  .result-card {
    padding: 22px;
  }

  .contact {
    min-height: auto;
  }

  .booking-card {
    padding: 14px;
  }

  .booking-card .calendly-inline-widget {
    height: 660px !important;
  }
}

/* Product Rescue Audit detail page */
.audit-page {
  min-width: 320px;
}

.audit-hero,
.audit-section {
  width: 100%;
  max-width: none;
  padding-inline: clamp(18px, 5vw, 72px);
}

.audit-hero {
  position: relative;
  min-height: min(760px, 100vh);
  overflow: hidden;
  padding-top: 22px;
  padding-bottom: clamp(72px, 10vw, 132px);
  border-bottom: 1px solid var(--line);
}

.audit-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.68;
  background:
    linear-gradient(90deg, #04080b 0%, rgba(4, 8, 11, 0.92) 35%, rgba(4, 8, 11, 0.17) 76%, #04080b 100%),
    linear-gradient(180deg, rgba(4, 8, 11, 0.18), #04080b 94%),
    url("assets/vibeforge-motion-clean-poster.jpg") center right / min(72vw, 980px) auto no-repeat;
}

.audit-topline,
.audit-hero-grid,
.audit-section-head,
.audit-split,
.audit-check-grid,
.audit-decision-strip,
.audit-outcome-grid,
.audit-paid-panel,
.estimate-steps,
.estimate-formula,
.estimate-note,
.audit-final {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin-inline: auto;
}

.audit-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.audit-brand {
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.audit-brand::before {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 9px;
  content: "";
  border: 1px solid var(--cyan);
  border-radius: 2px;
  background: rgba(132, 230, 238, 0.24);
  box-shadow: 0 0 16px rgba(132, 230, 238, 0.42);
  transform: rotate(45deg);
}

.audit-top-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.audit-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.36fr);
  gap: clamp(28px, 7vw, 112px);
  align-items: end;
  padding-top: clamp(104px, 15vw, 176px);
}

.audit-hero h1,
.audit-section h2 {
  margin: 0;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, Inter, Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.92;
  text-transform: uppercase;
}

.audit-hero h1 {
  max-width: 860px;
  font-size: clamp(48px, 6.8vw, 98px);
}

.audit-lead {
  max-width: 640px;
  margin: 26px 0 0;
  color: #c2d1d6;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.48;
}

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

.audit-price-panel {
  padding: 26px;
  border: 1px solid rgba(132, 230, 238, 0.38);
  border-radius: 6px;
  background:
    linear-gradient(145deg, rgba(132, 230, 238, 0.17), transparent 58%),
    rgba(4, 12, 16, 0.82);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.28);
}

.audit-price-panel span,
.audit-outcome-grid article > span,
.estimate-steps article > span {
  color: var(--lime);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.audit-price-panel strong {
  display: block;
  margin-top: 18px;
  color: var(--cyan);
  font-family: "Arial Narrow", "Roboto Condensed", Impact, Inter, Arial, sans-serif;
  font-size: clamp(54px, 6vw, 76px);
  line-height: 0.85;
}

.audit-price-panel p,
.audit-copy p,
.audit-outcome-grid p,
.estimate-steps p,
.audit-final-copy p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.audit-price-panel p {
  margin: 20px 0 0;
}

.audit-section {
  padding-top: clamp(78px, 10vw, 132px);
  padding-bottom: clamp(78px, 10vw, 132px);
}

.audit-section-head {
  display: grid;
  grid-template-columns: 0.44fr 1fr;
  gap: clamp(28px, 6vw, 90px);
  align-items: end;
  margin-bottom: 46px;
}

.audit-section h2 {
  font-size: clamp(42px, 5.4vw, 76px);
}

.audit-reason {
  background:
    radial-gradient(ellipse at 90% 10%, rgba(132, 230, 238, 0.09), transparent 36rem),
    rgba(255, 255, 255, 0.012);
}

.audit-split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(330px, 1.18fr);
  gap: clamp(30px, 7vw, 110px);
  align-items: start;
}

.audit-copy p {
  margin: 0;
  font-size: 18px;
}

.audit-copy p + p {
  margin-top: 22px;
}

.audit-risk-list,
.audit-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.audit-risk-list span,
.audit-check-grid span {
  min-height: 74px;
  display: flex;
  align-items: center;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--text);
  font-size: 15px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.035);
}

.audit-checks {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(132, 230, 238, 0.09), transparent 45%),
    rgba(3, 9, 13, 0.56);
}

.audit-check-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.audit-check-grid span {
  min-height: 94px;
  color: #dcecf0;
  font-size: 14px;
}

.audit-decision-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  margin-top: 16px;
  padding: 20px 22px;
  border-left: 3px solid var(--cyan);
  background: rgba(132, 230, 238, 0.06);
}

.audit-decision-strip strong {
  color: var(--text);
  font-size: 14px;
}

.audit-decision-strip span {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 750;
}

.audit-outcomes {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(132, 230, 238, 0.035));
}

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

.audit-outcome-grid article {
  min-height: 246px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
}

.audit-outcome-grid h3,
.estimate-steps h3 {
  margin: 32px 0 10px;
  font-size: 25px;
  line-height: 1.04;
}

.audit-outcome-grid p,
.estimate-steps p {
  margin: 0;
}

.audit-paid {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.audit-paid-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  gap: clamp(32px, 7vw, 108px);
  align-items: start;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background:
    linear-gradient(130deg, rgba(132, 230, 238, 0.12), transparent 48%),
    rgba(4, 13, 17, 0.72);
}

.audit-paid-panel h2 {
  margin-top: 26px;
}

.audit-paid-panel .audit-copy p {
  font-size: 16px;
}

.audit-estimate {
  background:
    radial-gradient(ellipse at 78% 0%, rgba(132, 230, 238, 0.1), transparent 38rem),
    rgba(255, 255, 255, 0.01);
}

.estimate-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}

.estimate-steps article {
  min-height: 300px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.025);
}

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

.estimate-formula {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 22px;
  padding: 22px;
  border: 1px solid rgba(132, 230, 238, 0.28);
  border-radius: 6px;
  color: #d3e6ea;
  background: rgba(132, 230, 238, 0.055);
}

.estimate-formula span {
  font-size: 14px;
  font-weight: 800;
}

.estimate-formula b {
  color: var(--cyan);
  font-size: 21px;
}

.estimate-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 15px;
}

.audit-final {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(330px, 0.7fr);
  gap: clamp(30px, 8vw, 128px);
  align-items: end;
}

.audit-final-copy p {
  margin: 0;
  font-size: 17px;
}

.audit-final-copy p + p {
  margin-top: 20px;
}

.audit-final-copy .button {
  margin-top: 30px;
}

@media (max-width: 980px) {
  .audit-hero-grid,
  .audit-section-head,
  .audit-split,
  .audit-paid-panel,
  .audit-final {
    grid-template-columns: 1fr;
  }

  .audit-hero-grid {
    padding-top: 94px;
  }

  .audit-price-panel {
    max-width: 470px;
  }

  .audit-check-grid,
  .estimate-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .estimate-steps article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .estimate-steps article:nth-child(4) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 620px) {
  .audit-hero,
  .audit-section {
    padding-inline: 16px;
  }

  .audit-hero {
    min-height: auto;
    padding-bottom: 72px;
  }

  .audit-hero::before {
    opacity: 0.46;
    background:
      linear-gradient(180deg, rgba(4, 8, 11, 0.14), #04080b 82%),
      linear-gradient(90deg, rgba(4, 8, 11, 0.22), rgba(4, 8, 11, 0.62)),
      url("assets/vibeforge-motion-clean-poster.jpg") center bottom / 150% auto no-repeat;
  }

  .audit-hero-grid {
    padding-top: 80px;
  }

  .audit-hero h1 {
    font-size: clamp(43px, 13.2vw, 62px);
  }

  .audit-lead {
    font-size: 17px;
  }

  .audit-price-panel {
    padding: 22px;
  }

  .audit-section-head {
    gap: 18px;
    margin-bottom: 32px;
  }

  .audit-section h2 {
    font-size: 43px;
  }

  .audit-risk-list,
  .audit-check-grid,
  .audit-outcome-grid,
  .estimate-steps {
    grid-template-columns: 1fr;
  }

  .audit-check-grid span,
  .audit-risk-list span {
    min-height: 64px;
  }

  .audit-decision-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .audit-outcome-grid article,
  .estimate-steps article {
    min-height: 0;
    padding: 22px;
  }

  .estimate-steps article + article,
  .estimate-steps article:nth-child(3),
  .estimate-steps article:nth-child(4) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .estimate-formula {
    align-items: flex-start;
    flex-direction: column;
  }

  .estimate-formula b {
    line-height: 0.75;
  }
}

@media (min-width: 480px) and (max-width: 620px) {
  .button {
    width: auto;
    min-width: 168px;
  }

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

@media (max-width: 620px) {
  .results-head {
    margin-bottom: 24px;
  }

  .results-head h2 {
    grid-template-columns: 1fr;
    row-gap: 4px;
  }

  .results-title-demo,
  .results-title-production,
  .results-title-detail {
    grid-column: 1;
    max-width: none;
  }

  .results-title-detail {
    margin-top: 8px;
    font-size: 13px;
  }

  .trust-figure {
    grid-template-columns: 1fr;
  }

  .trust-media {
    min-height: 178px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-media img {
    transform: scale(1.04);
  }
}

/* Credibility, contact, and resource layers */
.proof,
.insights {
  width: 100%;
  max-width: none;
  padding-inline: clamp(18px, 5vw, 72px);
}

.proof {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(100deg, rgba(132, 230, 238, 0.07), transparent 42%),
    rgba(255, 255, 255, 0.016);
}

.proof .section-head,
.insights .section-head,
.proof-grid,
.insight-grid,
.proof-note {
  max-width: var(--max);
  margin-inline: auto;
}

.proof-grid,
.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.proof-card,
.insight-card {
  position: relative;
  display: flex;
  min-height: 290px;
  flex-direction: column;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(4, 12, 16, 0.68);
}

.proof-card::before,
.insight-card::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 34%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--cyan), var(--lime));
}

.proof-card > span,
.insight-card > span,
.pricing-context strong,
.contact-flow strong,
.contact-direct span {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.proof-card h3,
.insight-card h3 {
  margin: 28px 0 10px;
  font-size: 25px;
  line-height: 1.04;
}

.proof-card p,
.insight-card p,
.pricing-context p,
.team-note,
.contact-flow li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.proof-card p,
.insight-card p,
.team-note,
.pricing-context p {
  margin: 0;
}

.proof-card ul {
  display: grid;
  gap: 8px;
  margin: auto 0 0;
  padding: 20px 0 0;
  border-top: 1px solid rgba(132, 230, 238, 0.17);
  list-style: none;
}

.proof-card li {
  position: relative;
  padding-left: 15px;
  color: #d7e7eb;
  font-size: 13px;
  line-height: 1.35;
}

.proof-card li::before {
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 5px;
  height: 5px;
  content: "";
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(132, 230, 238, 0.52);
}

.proof-note {
  max-width: 760px;
  margin-top: 24px;
  color: #8ea4ad;
  font-size: 13px;
  line-height: 1.55;
}

.team-note {
  max-width: 720px;
  margin: 20px 0 36px;
  padding-left: 16px;
  border-left: 2px solid rgba(132, 230, 238, 0.54);
}

.pricing-context {
  display: grid;
  grid-template-columns: 152px minmax(0, 1fr);
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto 20px;
  padding: 18px 20px;
  border: 1px solid rgba(132, 230, 238, 0.2);
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(132, 230, 238, 0.09), rgba(4, 12, 16, 0.35));
}

.insights {
  background: linear-gradient(180deg, rgba(132, 230, 238, 0.035), transparent 72%);
}

.insight-card {
  min-height: 250px;
}

.insight-card a {
  margin-top: auto;
  padding-top: 24px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.insight-card a:hover {
  color: var(--lime);
}

.contact-flow {
  max-width: 580px;
  margin-top: 24px;
  padding: 16px 18px;
  border-left: 2px solid rgba(132, 230, 238, 0.7);
  background: rgba(132, 230, 238, 0.045);
}

.contact-flow ol {
  display: grid;
  gap: 6px;
  margin: 12px 0 0;
  padding-left: 18px;
}

.contact-flow li::marker {
  color: var(--cyan);
  font-weight: 900;
}

.contact-direct {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  max-width: 580px;
  margin-top: 18px;
}

.contact-direct a {
  display: grid;
  gap: 6px;
  min-height: 72px;
  padding: 14px;
  border: 1px solid rgba(132, 230, 238, 0.2);
  border-radius: 6px;
  background: rgba(4, 12, 16, 0.54);
}

.contact-direct .contact-email {
  grid-column: span 2;
}

.contact-direct a:hover {
  border-color: rgba(132, 230, 238, 0.68);
  background: rgba(132, 230, 238, 0.09);
}

.contact-direct strong {
  color: #e8f5f7;
  font-size: 14px;
  line-height: 1.25;
}

.insights-page .insights-hero {
  width: 100%;
  max-width: none;
  padding: clamp(36px, 8vw, 96px) clamp(18px, 5vw, 72px) clamp(52px, 8vw, 96px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 72% 28%, rgba(132, 230, 238, 0.14), transparent 24rem),
    linear-gradient(140deg, rgba(4, 8, 11, 0.98), rgba(6, 20, 27, 0.88));
}

.insights-shell {
  width: min(100%, 980px);
  margin: 0 auto;
}

.insights-return {
  display: inline-flex;
  margin-bottom: 48px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.insights-hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, Inter, Arial, sans-serif;
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 900;
  line-height: 0.91;
  text-transform: uppercase;
}

.insights-hero p {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.insights-article {
  width: min(100%, 860px);
  margin: 0 auto;
  padding: clamp(54px, 8vw, 96px) 0;
  border-bottom: 1px solid var(--line);
}

.insights-article h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 0.98;
}

.insights-article h3 {
  margin: 38px 0 12px;
  color: var(--cyan);
  font-size: 20px;
}

.insights-article p,
.insights-article li {
  max-width: 720px;
  color: #b8cbd2;
  font-size: 17px;
  line-height: 1.7;
}

.insights-article ul {
  display: grid;
  gap: 8px;
  max-width: 720px;
  padding-left: 22px;
}

.insights-cta {
  width: min(100%, 860px);
  margin: 0 auto;
  padding: 64px 0 96px;
}

@media (max-width: 980px) {
  .proof-grid,
  .insight-grid {
    grid-template-columns: 1fr;
  }

  .proof-card,
  .insight-card {
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .pricing-context,
  .contact-direct {
    grid-template-columns: 1fr;
  }

  .contact-direct .contact-email {
    grid-column: auto;
  }

  .proof-card,
  .insight-card {
    padding: 22px;
  }

  .proof-card h3,
  .insight-card h3 {
    font-size: 23px;
  }

  .insights-hero {
    padding-top: 28px;
  }

  .insights-return {
    margin-bottom: 34px;
  }

  .insights-article p,
  .insights-article li {
    font-size: 16px;
  }
}

/* Product Rescue Audit v2 - mirrors the VibeForge landing page composition. */
.audit-v2 .rescue-hero,
.audit-v2 .rescue-section {
  width: 100%;
  max-width: none;
  padding-inline: clamp(18px, 5vw, 72px);
}

.rescue-hero {
  position: relative;
  min-height: min(860px, 100vh);
  overflow: hidden;
  padding-top: 22px;
  padding-bottom: 0;
  border-bottom: 1px solid var(--line);
}

.rescue-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(ellipse at 77% 47%, rgba(132, 230, 238, 0.1), transparent 28rem),
    linear-gradient(90deg, #04080b 0%, rgba(4, 8, 11, 0.9) 34%, rgba(4, 8, 11, 0.2) 65%, #04080b 100%),
    linear-gradient(180deg, rgba(4, 8, 11, 0.08), rgba(4, 8, 11, 0.82));
}

.rescue-topline,
.rescue-hero-grid,
.rescue-proof,
.rescue-heading,
.rescue-problem-grid,
.inspection-rail,
.rescue-decision,
.deliverable-list,
.process-proof-heading,
.process-story,
.rescue-ownership,
.estimate-ledger,
.rescue-formula,
.rescue-close {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin-inline: auto;
}

.rescue-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.rescue-brand {
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.rescue-brand::before {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 9px;
  content: "";
  border: 1px solid var(--cyan);
  border-radius: 2px;
  background: rgba(132, 230, 238, 0.24);
  box-shadow: 0 0 16px rgba(132, 230, 238, 0.42);
  transform: rotate(45deg);
}

.rescue-return {
  display: inline-flex;
  align-items: center;
  color: #b7ccd1;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.rescue-return::before {
  display: inline-block;
  width: 28px;
  height: 1px;
  margin-right: 10px;
  content: "";
  background: linear-gradient(90deg, var(--cyan), transparent);
}

.rescue-return:hover {
  color: var(--cyan);
}

.rescue-top-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.rescue-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  min-height: 670px;
}

.rescue-copy {
  position: relative;
  z-index: 2;
}

.rescue-kicker {
  margin: 0 0 18px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rescue-hero h1,
.rescue-heading h2,
.rescue-ownership h2,
.rescue-close h2 {
  margin: 0;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, Inter, Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
}

.rescue-hero h1 {
  max-width: 700px;
  font-size: clamp(48px, 5.4vw, 78px);
}

.rescue-hero h1 span {
  color: var(--cyan);
  text-shadow: 0 0 30px rgba(132, 230, 238, 0.14);
}

.rescue-lead {
  max-width: 560px;
  margin: 26px 0 0;
  color: #c2d0d6;
  font-size: 18px;
  line-height: 1.52;
}

.rescue-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.rescue-price {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.rescue-motion {
  position: relative;
  justify-self: end;
  width: min(60vw, 760px);
  aspect-ratio: 16 / 9;
  overflow: visible;
}

.rescue-motion::before {
  position: absolute;
  inset: -20%;
  z-index: -1;
  content: "";
  background: radial-gradient(ellipse at 50% 50%, rgba(132, 230, 238, 0.16), transparent 58%);
}

.rescue-motion video {
  position: absolute;
  inset: -5% -4% -6%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.86;
  filter: hue-rotate(-8deg) saturate(0.72) contrast(1.14) brightness(0.76);
  mix-blend-mode: screen;
  -webkit-mask: radial-gradient(ellipse 64% 78% at 50% 51%, #000 0 46%, rgba(0, 0, 0, 0.72) 60%, transparent 82%);
  mask: radial-gradient(ellipse 64% 78% at 50% 51%, #000 0 46%, rgba(0, 0, 0, 0.72) 60%, transparent 82%);
}

.stability-engine {
  position: relative;
  justify-self: end;
  width: min(60vw, 720px);
  aspect-ratio: 1.12;
  overflow: hidden;
  isolation: isolate;
  border-radius: 8px;
  background:
    radial-gradient(ellipse at 52% 48%, rgba(143, 216, 220, 0.22), transparent 9rem),
    radial-gradient(ellipse at 50% 52%, rgba(70, 124, 132, 0.2), transparent 19rem),
    radial-gradient(ellipse at 50% 76%, rgba(5, 21, 28, 0.82), transparent 23rem),
    radial-gradient(ellipse at 70% 22%, rgba(174, 206, 199, 0.08), transparent 13rem),
    linear-gradient(135deg, rgba(9, 18, 22, 0.96), rgba(4, 8, 11, 0.36) 44%, rgba(4, 8, 11, 0.92));
  filter: drop-shadow(0 42px 80px rgba(0, 0, 0, 0.52));
  -webkit-mask:
    linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%),
    radial-gradient(ellipse 74% 68% at 52% 51%, #000 0 62%, rgba(0, 0, 0, 0.72) 76%, transparent 94%);
  mask:
    linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%),
    radial-gradient(ellipse 74% 68% at 52% 51%, #000 0 62%, rgba(0, 0, 0, 0.72) 76%, transparent 94%);
}

.stability-engine::before {
  position: absolute;
  inset: 4%;
  content: "";
  border: 1px solid rgba(140, 193, 197, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(rgba(140, 193, 197, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(140, 193, 197, 0.028) 1px, transparent 1px),
    radial-gradient(ellipse at 51% 50%, transparent 0 28%, rgba(140, 193, 197, 0.1) 28.4%, transparent 29% 44%, rgba(140, 193, 197, 0.07) 44.4%, transparent 45%);
  background-size: 46px 46px, 46px 46px, 100% 100%;
  opacity: 0.46;
}

.stability-engine::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(120deg, transparent 0 38%, rgba(180, 210, 205, 0.12) 46%, transparent 56%),
    conic-gradient(from 310deg at 50% 50%, transparent 0 15%, rgba(155, 214, 218, 0.16) 18%, transparent 24% 57%, rgba(155, 214, 218, 0.09) 62%, transparent 70%),
    radial-gradient(ellipse at 52% 50%, rgba(125, 203, 208, 0.23), transparent 44%);
  opacity: 0.78;
  animation: engineBreath 5.8s ease-in-out infinite;
}

.engine-ring {
  position: absolute;
  inset: 15%;
  border: 1px solid rgba(139, 197, 201, 0.22);
  border-radius: 50%;
  box-shadow:
    inset 0 0 36px rgba(0, 0, 0, 0.42),
    0 0 26px rgba(117, 218, 224, 0.03);
}

.engine-ring-a {
  animation: engineTurn 18s linear infinite;
}

.engine-ring-b {
  inset: 28%;
  border-color: rgba(139, 197, 201, 0.24);
  border-style: dashed;
  animation: engineTurn 11s linear infinite reverse;
}

.engine-ring::before,
.engine-ring::after {
  position: absolute;
  width: 9px;
  height: 9px;
  content: "";
  border-radius: 50%;
  background: #93c6ca;
  box-shadow: 0 0 18px rgba(132, 230, 238, 0.38);
}

.engine-ring::before {
  top: -5px;
  left: 50%;
}

.engine-ring::after {
  right: 13%;
  bottom: 9%;
}

.engine-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  width: clamp(170px, 19vw, 250px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(171, 225, 226, 0.42);
  background:
    linear-gradient(135deg, rgba(226, 244, 239, 0.22), transparent 24%),
    radial-gradient(circle at 48% 44%, rgba(178, 226, 226, 0.26), transparent 32%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 14px),
    linear-gradient(135deg, rgba(84, 130, 136, 0.28), rgba(5, 13, 17, 0.98) 58%, rgba(20, 44, 50, 0.72));
  box-shadow:
    0 24px 52px rgba(0, 0, 0, 0.5),
    0 0 70px rgba(132, 230, 238, 0.2),
    inset 0 0 42px rgba(132, 230, 238, 0.09),
    inset 0 -22px 42px rgba(0, 0, 0, 0.34);
  transform: translate(-50%, -50%) rotate(45deg);
}

.engine-core span {
  position: relative;
  z-index: 2;
  color: #e9f8f7;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-45deg);
}

.engine-core::before,
.engine-core::after {
  position: absolute;
  inset: 14%;
  content: "";
  border: 1px solid rgba(204, 255, 255, 0.14);
}

.engine-core::before {
  animation: engineTurn 12s linear infinite;
}

.engine-core::after {
  inset: 34%;
  background:
    radial-gradient(circle, rgba(200, 239, 236, 0.26), transparent 36%),
    rgba(2, 8, 12, 0.82);
  box-shadow:
    inset 0 0 22px rgba(132, 230, 238, 0.14),
    0 0 36px rgba(132, 230, 238, 0.12);
}

.engine-gear {
  position: absolute;
  display: block;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background:
    radial-gradient(circle, #03080b 0 25%, rgba(126, 177, 181, 0.25) 27% 39%, transparent 41%),
    repeating-conic-gradient(from 0deg, rgba(170, 216, 218, 0.72) 0 10deg, rgba(18, 45, 51, 0.26) 10deg 23deg);
  opacity: 0.54;
  box-shadow: 0 0 22px rgba(132, 230, 238, 0.08);
  transform: rotate(-45deg);
}

.engine-gear-a {
  top: 20%;
  left: 23%;
  animation: engineTurn 7s linear infinite;
}

.engine-gear-b {
  right: 20%;
  bottom: 24%;
  width: 34px;
  height: 34px;
  animation: engineTurn 5.2s linear infinite reverse;
}

.engine-gear-c {
  right: 27%;
  top: 24%;
  width: 26px;
  height: 26px;
  animation: engineTurn 4.5s linear infinite;
}

.engine-signal {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 38%;
  height: 3px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(189, 236, 238, 0.88), rgba(93, 146, 156, 0.26), transparent);
  box-shadow: 0 0 16px rgba(132, 230, 238, 0.22);
  opacity: 0;
  animation: engineSignal 4.4s ease-in-out infinite;
}

.engine-signal-a {
  transform: rotate(18deg);
}

.engine-signal-b {
  transform: rotate(138deg);
  animation-delay: 0.4s;
}

.engine-signal-c {
  transform: rotate(262deg);
  animation-delay: 0.8s;
}

.engine-node {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  min-width: 86px;
  height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  box-sizing: border-box;
  border: 1px solid rgba(139, 197, 201, 0.28);
  border-radius: 3px;
  color: #cfe6e9;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  background:
    linear-gradient(180deg, rgba(144, 200, 204, 0.12), transparent),
    rgba(3, 10, 14, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 12px 26px rgba(0, 0, 0, 0.22);
  animation: nodeWake 4.4s ease-in-out infinite;
}

.node-users {
  top: 14%;
  left: 43%;
}

.node-payments {
  right: 7%;
  top: 45%;
  animation-delay: 0.35s;
}

.node-data {
  bottom: 15%;
  left: 20%;
  animation-delay: 0.7s;
}

.node-deploy {
  top: 44%;
  left: 4%;
  animation-delay: 1.05s;
}

.engine-load {
  position: absolute;
  right: 11%;
  bottom: 17%;
  z-index: 5;
  width: 186px;
  padding: 15px 17px;
  border-left: 2px solid rgba(158, 219, 222, 0.74);
  background:
    linear-gradient(90deg, rgba(6, 19, 24, 0.92), rgba(6, 19, 24, 0.28)),
    linear-gradient(180deg, rgba(132, 230, 238, 0.08), transparent);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.engine-load strong,
.engine-load span {
  display: block;
}

.engine-load strong {
  color: var(--text);
  font-size: 17px;
  font-weight: 900;
}

.engine-load span {
  margin-top: 4px;
  color: #a8c7cd;
  font-size: 12px;
  font-weight: 750;
}

.growth-loop {
  width: min(61vw, 740px);
  aspect-ratio: 1.12;
  border-radius: 10px;
  background:
    radial-gradient(ellipse at 50% 48%, rgba(150, 218, 219, 0.18), transparent 8rem),
    radial-gradient(ellipse at 52% 54%, rgba(50, 101, 111, 0.2), transparent 20rem),
    linear-gradient(135deg, rgba(7, 15, 19, 0.98), rgba(4, 8, 11, 0.28) 46%, rgba(4, 8, 11, 0.94));
  -webkit-mask:
    linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%),
    radial-gradient(ellipse 80% 72% at 52% 50%, #000 0 64%, rgba(0, 0, 0, 0.7) 78%, transparent 95%);
  mask:
    linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%),
    radial-gradient(ellipse 80% 72% at 52% 50%, #000 0 64%, rgba(0, 0, 0, 0.7) 78%, transparent 95%);
}

.growth-loop::before {
  inset: 4%;
  border: 1px solid rgba(140, 193, 197, 0.075);
  border-radius: 10px;
  background:
    linear-gradient(rgba(140, 193, 197, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(140, 193, 197, 0.026) 1px, transparent 1px),
    radial-gradient(ellipse at 52% 50%, transparent 0 31%, rgba(140, 193, 197, 0.08) 31.4%, transparent 32% 49%, rgba(140, 193, 197, 0.06) 49.4%, transparent 50%);
  background-size: 50px 50px, 50px 50px, 100% 100%;
  opacity: 0.56;
}

.growth-loop::after {
  inset: 0;
  background:
    conic-gradient(from 245deg at 50% 50%, transparent 0 8%, rgba(168, 222, 223, 0.15) 13%, transparent 19% 35%, rgba(168, 222, 223, 0.12) 43%, transparent 52% 69%, rgba(168, 222, 223, 0.1) 77%, transparent 84%),
    radial-gradient(ellipse at 51% 50%, rgba(122, 193, 198, 0.2), transparent 48%);
  opacity: 0.72;
  animation: loopAtmosphere 6.4s ease-in-out infinite;
}

.loop-shell {
  position: absolute;
  inset: 16%;
  z-index: 1;
  border: 1px solid rgba(147, 198, 202, 0.22);
  border-radius: 50%;
  box-shadow:
    inset 0 0 70px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(132, 230, 238, 0.04);
}

.loop-shell::before,
.loop-shell::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  pointer-events: none;
}

.loop-shell::before {
  inset: 14%;
  border: 1px dashed rgba(147, 198, 202, 0.18);
  animation: engineTurn 20s linear infinite reverse;
}

.loop-shell::after {
  inset: 31%;
  border: 1px solid rgba(147, 198, 202, 0.16);
}

.loop-path {
  position: absolute;
  z-index: 2;
  border-radius: 50%;
  opacity: 0.86;
  pointer-events: none;
}

.loop-path-a {
  inset: 18%;
  border-top: 2px solid rgba(174, 226, 226, 0.38);
  border-right: 2px solid rgba(174, 226, 226, 0.18);
  transform: rotate(22deg);
  animation: pathGlow 4.8s ease-in-out infinite;
}

.loop-path-b {
  inset: 24%;
  border-right: 2px solid rgba(174, 226, 226, 0.34);
  border-bottom: 2px solid rgba(174, 226, 226, 0.16);
  transform: rotate(8deg);
  animation: pathGlow 4.8s ease-in-out 0.7s infinite;
}

.loop-path-c {
  inset: 30%;
  border-bottom: 2px solid rgba(174, 226, 226, 0.26);
  border-left: 2px solid rgba(174, 226, 226, 0.16);
  transform: rotate(-18deg);
  animation: pathGlow 4.8s ease-in-out 1.35s infinite;
}

.loop-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  display: grid;
  width: clamp(168px, 18vw, 244px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(190, 232, 231, 0.46);
  background:
    linear-gradient(135deg, rgba(226, 244, 239, 0.24), transparent 24%),
    radial-gradient(circle at 52% 42%, rgba(193, 236, 235, 0.3), transparent 31%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 15px),
    linear-gradient(135deg, rgba(72, 123, 130, 0.34), rgba(5, 13, 17, 0.98) 60%, rgba(25, 54, 58, 0.72));
  box-shadow:
    0 26px 58px rgba(0, 0, 0, 0.55),
    0 0 78px rgba(132, 230, 238, 0.18),
    inset 0 0 44px rgba(132, 230, 238, 0.1),
    inset 0 -24px 46px rgba(0, 0, 0, 0.42);
  transform: translate(-50%, -50%) rotate(45deg);
  animation: coreAttractPulse 4.8s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

.loop-core::before,
.loop-core::after,
.loop-core i {
  position: absolute;
  content: "";
  pointer-events: none;
}

.loop-core::before {
  inset: 16%;
  border: 1px solid rgba(225, 255, 255, 0.14);
  animation: engineTurn 14s linear infinite;
}

.loop-core::after {
  inset: 35%;
  background:
    radial-gradient(circle, rgba(211, 246, 243, 0.26), transparent 35%),
    rgba(2, 8, 12, 0.84);
  box-shadow:
    inset 0 0 22px rgba(132, 230, 238, 0.16),
    0 0 42px rgba(132, 230, 238, 0.12);
}

.loop-core i {
  inset: 24%;
  border: 1px solid rgba(186, 226, 225, 0.12);
  transform: rotate(25deg);
  animation: engineTurn 9s linear infinite reverse;
}

.loop-core span {
  position: relative;
  z-index: 2;
  color: #e9f8f7;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-45deg);
}

.loop-funnel {
  position: absolute;
  inset: 13% 18%;
  z-index: 3;
  pointer-events: none;
}

.loop-funnel::before {
  position: absolute;
  inset: 4% 16%;
  content: "";
  background:
    linear-gradient(180deg, rgba(177, 224, 224, 0.18), rgba(177, 224, 224, 0.03) 48%, rgba(177, 224, 224, 0.14));
  clip-path: polygon(50% 0, 82% 50%, 50% 100%, 18% 50%);
  opacity: 0.58;
  filter: blur(0.2px);
}

.funnel-beam {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 42%;
  height: 2px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(212, 245, 243, 0.8), rgba(132, 230, 238, 0.18), transparent);
  box-shadow: 0 0 18px rgba(132, 230, 238, 0.18);
  opacity: 0;
  animation: loopBeam 4.8s ease-in-out infinite;
}

.funnel-beam-a {
  transform: rotate(20deg);
}

.funnel-beam-b {
  transform: rotate(134deg);
  animation-delay: 0.7s;
}

.funnel-beam-c {
  transform: rotate(262deg);
  animation-delay: 1.35s;
}

.attraction-stream {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
}

.attraction-stream i {
  position: absolute;
  display: block;
  width: var(--size, 6px);
  height: var(--size, 6px);
  border-radius: 50%;
  opacity: 0;
  background: var(--particle-color, #9bc6cc);
  box-shadow:
    0 0 10px rgba(132, 230, 238, 0.44),
    0 0 22px rgba(132, 230, 238, 0.18);
  animation-duration: 4.8s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.45, 0, 0.2, 1);
}

.user-attraction i {
  top: var(--top, 21%);
  left: var(--left, 50%);
  animation-name: usersToCore;
}

.revenue-attraction i {
  top: var(--top, 44%);
  left: var(--left, 80%);
  width: var(--size, 7px);
  height: calc(var(--size, 7px) * 0.72);
  border-radius: 2px;
  background:
    linear-gradient(135deg, rgba(218, 251, 245, 0.92), rgba(95, 151, 156, 0.62));
  box-shadow:
    0 0 12px rgba(176, 225, 219, 0.42),
    0 0 26px rgba(132, 230, 238, 0.18);
  animation-name: revenueToCore;
}

.data-attraction i {
  top: var(--top, 70%);
  left: var(--left, 63%);
  width: var(--size, 5px);
  height: var(--size, 5px);
  border-radius: 1px;
  background: rgba(139, 197, 201, 0.82);
  box-shadow:
    0 0 12px rgba(132, 230, 238, 0.34),
    0 0 22px rgba(132, 230, 238, 0.12);
  animation-name: dataToCore;
  animation-duration: 5.2s;
}

.product-attraction i {
  top: var(--top, 47%);
  left: var(--left, 20%);
  width: var(--size, 7px);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(212, 245, 243, 0.82), rgba(132, 230, 238, 0.16));
  box-shadow: 0 0 16px rgba(132, 230, 238, 0.22);
  animation-name: productToCore;
  animation-duration: 5.2s;
}

.user-attraction i:nth-child(1) { --left: 45%; --top: 20%; --size: 5px; --drift-x: 7px; animation-delay: 0s; }
.user-attraction i:nth-child(2) { --left: 49%; --top: 18%; --size: 7px; --drift-x: -4px; animation-delay: 0.18s; }
.user-attraction i:nth-child(3) { --left: 53%; --top: 21%; --size: 4px; --drift-x: -10px; animation-delay: 0.36s; }
.user-attraction i:nth-child(4) { --left: 47%; --top: 25%; --size: 6px; --drift-x: 12px; animation-delay: 0.54s; }
.user-attraction i:nth-child(5) { --left: 56%; --top: 24%; --size: 5px; --drift-x: -16px; animation-delay: 0.72s; }
.user-attraction i:nth-child(6) { --left: 43%; --top: 17%; --size: 4px; --drift-x: 18px; animation-delay: 0.9s; }
.user-attraction i:nth-child(7) { --left: 51%; --top: 27%; --size: 8px; --drift-x: -5px; animation-delay: 1.08s; }
.user-attraction i:nth-child(8) { --left: 58%; --top: 19%; --size: 4px; --drift-x: -20px; animation-delay: 1.26s; }
.user-attraction i:nth-child(9) { --left: 46%; --top: 29%; --size: 5px; --drift-x: 14px; animation-delay: 1.44s; }

.revenue-attraction i:nth-child(1) { --left: 78%; --top: 41%; --size: 7px; --money-y: -10px; animation-delay: 0.42s; }
.revenue-attraction i:nth-child(2) { --left: 83%; --top: 44%; --size: 9px; --money-y: 0px; animation-delay: 0.62s; }
.revenue-attraction i:nth-child(3) { --left: 81%; --top: 48%; --size: 6px; --money-y: 14px; animation-delay: 0.82s; }
.revenue-attraction i:nth-child(4) { --left: 86%; --top: 39%; --size: 7px; --money-y: -18px; animation-delay: 1.02s; }
.revenue-attraction i:nth-child(5) { --left: 84%; --top: 51%; --size: 5px; --money-y: 20px; animation-delay: 1.22s; }
.revenue-attraction i:nth-child(6) { --left: 79%; --top: 36%; --size: 6px; --money-y: -22px; animation-delay: 1.42s; }
.revenue-attraction i:nth-child(7) { --left: 88%; --top: 45%; --size: 8px; --money-y: 8px; animation-delay: 1.62s; }
.revenue-attraction i:nth-child(8) { --left: 82%; --top: 55%; --size: 6px; --money-y: 24px; animation-delay: 1.82s; }
.revenue-attraction i:nth-child(9) { --left: 90%; --top: 49%; --size: 5px; --money-y: 16px; animation-delay: 2.02s; }

.data-attraction i:nth-child(1) { --left: 61%; --top: 70%; --size: 4px; --data-x: -34px; --data-y: -84px; animation-delay: 1.1s; }
.data-attraction i:nth-child(2) { --left: 66%; --top: 74%; --size: 6px; --data-x: -58px; --data-y: -108px; animation-delay: 1.32s; }
.data-attraction i:nth-child(3) { --left: 58%; --top: 76%; --size: 5px; --data-x: -18px; --data-y: -120px; animation-delay: 1.54s; }
.data-attraction i:nth-child(4) { --left: 70%; --top: 68%; --size: 4px; --data-x: -78px; --data-y: -76px; animation-delay: 1.76s; }
.data-attraction i:nth-child(5) { --left: 64%; --top: 80%; --size: 7px; --data-x: -48px; --data-y: -142px; animation-delay: 1.98s; }
.data-attraction i:nth-child(6) { --left: 56%; --top: 72%; --size: 4px; --data-x: 2px; --data-y: -92px; animation-delay: 2.2s; }
.data-attraction i:nth-child(7) { --left: 69%; --top: 78%; --size: 5px; --data-x: -76px; --data-y: -136px; animation-delay: 2.42s; }

.product-attraction i:nth-child(1) { --left: 19%; --top: 43%; --size: 26px; --product-x: 134px; --product-y: 12px; animation-delay: 1.65s; }
.product-attraction i:nth-child(2) { --left: 22%; --top: 49%; --size: 18px; --product-x: 112px; --product-y: -14px; animation-delay: 1.86s; }
.product-attraction i:nth-child(3) { --left: 16%; --top: 53%; --size: 22px; --product-x: 160px; --product-y: -28px; animation-delay: 2.07s; }
.product-attraction i:nth-child(4) { --left: 24%; --top: 39%; --size: 16px; --product-x: 98px; --product-y: 38px; animation-delay: 2.28s; }
.product-attraction i:nth-child(5) { --left: 18%; --top: 58%; --size: 20px; --product-x: 146px; --product-y: -56px; animation-delay: 2.49s; }
.product-attraction i:nth-child(6) { --left: 27%; --top: 47%; --size: 15px; --product-x: 84px; --product-y: 0px; animation-delay: 2.7s; }
.product-attraction i:nth-child(7) { --left: 14%; --top: 46%; --size: 24px; --product-x: 176px; --product-y: 16px; animation-delay: 2.91s; }

.loop-node {
  position: absolute;
  z-index: 7;
  display: grid;
  min-width: 116px;
  min-height: 54px;
  align-content: center;
  padding: 9px 13px;
  border: 1px solid rgba(139, 197, 201, 0.3);
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(144, 200, 204, 0.12), transparent),
    rgba(3, 10, 14, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 14px 30px rgba(0, 0, 0, 0.24);
  animation: nodeWake 4.8s ease-in-out infinite;
}

.loop-node b,
.loop-node small {
  display: block;
  line-height: 1;
  white-space: nowrap;
}

.loop-node b {
  color: #d8edef;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.loop-node small {
  margin-top: 7px;
  color: #7ea4aa;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.loop-users {
  top: 12%;
  left: 42%;
}

.loop-revenue {
  top: 41%;
  right: 5%;
  animation-delay: 0.55s;
}

.loop-data {
  right: 26%;
  bottom: 10%;
  animation-delay: 1.1s;
}

.loop-product {
  top: 43%;
  left: 4%;
  animation-delay: 1.65s;
}

.loop-particles {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
}

.loop-particles i {
  position: absolute;
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #9bc6cc;
  box-shadow: 0 0 16px rgba(132, 230, 238, 0.52);
  opacity: 0.22;
  animation: particlePulse 4.8s ease-in-out infinite;
}

.loop-particles i:nth-child(1) { top: 19%; left: 49%; animation-delay: 0s; }
.loop-particles i:nth-child(2) { top: 24%; left: 59%; animation-delay: 0.16s; }
.loop-particles i:nth-child(3) { top: 31%; left: 69%; animation-delay: 0.32s; }
.loop-particles i:nth-child(4) { top: 42%; left: 79%; animation-delay: 0.48s; }
.loop-particles i:nth-child(5) { top: 54%; left: 75%; animation-delay: 0.64s; }
.loop-particles i:nth-child(6) { top: 64%; left: 66%; animation-delay: 0.8s; }
.loop-particles i:nth-child(7) { top: 72%; left: 54%; animation-delay: 0.96s; }
.loop-particles i:nth-child(8) { top: 70%; left: 41%; animation-delay: 1.12s; }
.loop-particles i:nth-child(9) { top: 61%; left: 30%; animation-delay: 1.28s; }
.loop-particles i:nth-child(10) { top: 49%; left: 23%; animation-delay: 1.44s; }
.loop-particles i:nth-child(11) { top: 37%; left: 28%; animation-delay: 1.6s; }
.loop-particles i:nth-child(12) { top: 28%; left: 37%; animation-delay: 1.76s; }
.loop-particles i:nth-child(13) { top: 32%; left: 53%; animation-delay: 2.04s; }
.loop-particles i:nth-child(14) { top: 42%; left: 60%; animation-delay: 2.2s; }
.loop-particles i:nth-child(15) { top: 56%; left: 55%; animation-delay: 2.36s; }
.loop-particles i:nth-child(16) { top: 51%; left: 43%; animation-delay: 2.52s; }

.ecosystem-loop {
  width: min(61vw, 740px);
  aspect-ratio: 1.12;
  overflow: hidden;
  border-radius: 10px;
  background:
    radial-gradient(ellipse at 50% 48%, rgba(156, 208, 207, 0.22), transparent 8rem),
    radial-gradient(ellipse at 54% 52%, rgba(44, 88, 94, 0.2), transparent 22rem),
    linear-gradient(135deg, rgba(6, 14, 18, 0.98), rgba(4, 8, 11, 0.26) 46%, rgba(3, 7, 10, 0.94));
  -webkit-mask:
    radial-gradient(ellipse 78% 74% at 52% 50%, #000 0 66%, rgba(0, 0, 0, 0.72) 82%, transparent 97%),
    linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
  mask:
    radial-gradient(ellipse 78% 74% at 52% 50%, #000 0 66%, rgba(0, 0, 0, 0.72) 82%, transparent 97%),
    linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}

.ecosystem-loop::before {
  inset: 5%;
  border: 1px solid rgba(140, 193, 197, 0.08);
  border-radius: 10px;
  background:
    linear-gradient(rgba(140, 193, 197, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(140, 193, 197, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.55;
}

.ecosystem-loop::after {
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 26%, rgba(151, 207, 208, 0.07) 26.4% 26.8%, transparent 27.2%),
    radial-gradient(circle at 50% 50%, transparent 0 38%, rgba(151, 207, 208, 0.06) 38.3% 38.7%, transparent 39%),
    conic-gradient(from 230deg at 50% 50%, transparent 0 12%, rgba(168, 222, 223, 0.16) 16%, transparent 20% 42%, rgba(168, 222, 223, 0.11) 48%, transparent 54% 76%, rgba(168, 222, 223, 0.1) 82%, transparent 88%);
  opacity: 0.72;
  animation: ecosystemAtmosphere 7.2s ease-in-out infinite;
}

.eco-grid,
.eco-halo,
.eco-orbit,
.eco-planet,
.eco-stream,
.eco-node,
.eco-return {
  position: absolute;
  pointer-events: none;
}

.eco-grid {
  inset: 9%;
  z-index: 1;
  border: 1px solid rgba(140, 193, 197, 0.06);
  border-radius: 10px;
  background:
    linear-gradient(110deg, transparent 0 47%, rgba(151, 207, 208, 0.08) 48%, transparent 51%),
    linear-gradient(28deg, transparent 0 47%, rgba(151, 207, 208, 0.055) 48%, transparent 51%);
}

.eco-realism {
  position: absolute;
  inset: -1% -3%;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 48%, rgba(4, 10, 13, 0) 0 36%, rgba(4, 10, 13, 0.2) 56%, rgba(4, 10, 13, 0.9) 86%),
    linear-gradient(90deg, rgba(3, 8, 11, 0.92), transparent 14% 86%, rgba(3, 8, 11, 0.92)),
    url("assets/stabilization-ecosystem-core-v2.png") center / cover no-repeat;
  filter: saturate(0.9) brightness(0.9) contrast(1.16);
  opacity: 0.84;
  mix-blend-mode: screen;
  -webkit-mask:
    radial-gradient(ellipse 84% 72% at 52% 50%, #000 0 58%, rgba(0, 0, 0, 0.7) 72%, transparent 94%),
    linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask:
    radial-gradient(ellipse 84% 72% at 52% 50%, #000 0 58%, rgba(0, 0, 0, 0.7) 72%, transparent 94%),
    linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  animation: realismDrift 9s ease-in-out infinite;
}

.eco-realism::before,
.eco-realism::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.eco-realism::before {
  inset: 0;
  background:
    radial-gradient(ellipse at 51% 49%, rgba(211, 244, 241, 0.2), transparent 18%),
    linear-gradient(180deg, rgba(2, 7, 10, 0.22), transparent 42%, rgba(2, 7, 10, 0.42));
}

.eco-realism::after {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 8, 11, 0.72), transparent 20% 80%, rgba(3, 8, 11, 0.72)),
    radial-gradient(ellipse at 50% 50%, transparent 0 44%, rgba(3, 8, 11, 0.62) 78%);
}

.eco-halo {
  z-index: 2;
  border-radius: 50%;
  opacity: 0.75;
}

.eco-halo-a {
  inset: 17%;
  border: 1px solid rgba(157, 209, 211, 0.2);
  box-shadow: inset 0 0 78px rgba(109, 181, 187, 0.08);
  animation: ecosystemSpin 26s linear infinite;
}

.eco-halo-b {
  inset: 24%;
  border: 1px dashed rgba(157, 209, 211, 0.16);
  animation: ecosystemSpin 18s linear infinite reverse;
}

.eco-orbit {
  left: 50%;
  top: 50%;
  z-index: 4;
  border-radius: 999px;
  border: 1px solid rgba(158, 211, 212, 0.18);
  transform: translate(-50%, -50%) rotate(var(--orbit-rotate, 0deg));
}

.eco-orbit::before {
  position: absolute;
  inset: -1px auto auto 13%;
  width: 20%;
  height: 2px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(199, 241, 238, 0.82), transparent);
  box-shadow: 0 0 18px rgba(132, 230, 238, 0.22);
  animation: orbitSignal 5.6s ease-in-out infinite;
}

.eco-orbit-a {
  width: 72%;
  height: 43%;
  --orbit-rotate: 10deg;
}

.eco-orbit-b {
  width: 68%;
  height: 39%;
  --orbit-rotate: 72deg;
}

.eco-orbit-c {
  width: 59%;
  height: 34%;
  --orbit-rotate: -38deg;
}

.eco-planet {
  left: 50%;
  top: 50%;
  z-index: 7;
  display: grid;
  width: clamp(132px, 15vw, 176px);
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 48%, rgba(215, 247, 244, 0.28), transparent 24%),
    radial-gradient(circle at 52% 56%, rgba(100, 158, 162, 0.18), transparent 54%),
    rgba(4, 12, 15, 0.28);
  box-shadow:
    0 0 76px rgba(132, 230, 238, 0.2),
    0 0 28px rgba(216, 250, 246, 0.12),
    inset 0 0 34px rgba(160, 221, 219, 0.12);
  mix-blend-mode: screen;
  opacity: 0.68;
  transform: translate(-50%, -50%);
  animation: planetBreath 5.6s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

.eco-planet::before,
.eco-planet::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.eco-planet::before {
  inset: 10%;
  border: 1px solid rgba(210, 244, 241, 0.16);
  transform: rotate(45deg);
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 13px),
    linear-gradient(135deg, rgba(166, 218, 218, 0.08), transparent 52%);
}

.eco-planet::after {
  inset: -48%;
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 52%, rgba(132, 230, 238, 0.1) 53%, transparent 56%),
    conic-gradient(from 20deg, transparent 0 28%, rgba(188, 232, 230, 0.26) 34%, transparent 42% 68%, rgba(188, 232, 230, 0.18) 74%, transparent 83%);
  opacity: 0.6;
  animation: ecosystemSpin 16s linear infinite;
}

.eco-core {
  position: relative;
  z-index: 4;
  display: grid;
  width: 58px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(214, 246, 243, 0.4);
  background:
    radial-gradient(circle, rgba(225, 250, 247, 0.42), transparent 38%),
    linear-gradient(135deg, rgba(118, 182, 186, 0.42), rgba(3, 12, 16, 0.96));
  box-shadow:
    0 0 42px rgba(132, 230, 238, 0.26),
    inset 0 0 24px rgba(132, 230, 238, 0.18);
  transform: rotate(45deg);
}

.eco-core span {
  color: #effafa;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-45deg);
}

.eco-surface {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0.32;
}

.eco-surface i {
  position: absolute;
  display: block;
  width: var(--w, 9px);
  height: var(--h, 22px);
  border: 1px solid rgba(194, 232, 230, 0.16);
  border-radius: 2px;
  background:
    linear-gradient(180deg, rgba(193, 232, 229, 0.14), rgba(13, 43, 48, 0.72)),
    rgba(4, 13, 17, 0.8);
  box-shadow: 0 0 16px rgba(132, 230, 238, 0.08);
  transform: rotate(var(--r, 0deg));
  animation: surfaceWake 5.6s ease-in-out infinite;
}

.eco-surface i:nth-child(1) { left: 24%; top: 29%; --h: 34px; --r: -18deg; animation-delay: 0.1s; }
.eco-surface i:nth-child(2) { left: 32%; top: 58%; --w: 12px; --h: 26px; --r: 46deg; animation-delay: 0.28s; }
.eco-surface i:nth-child(3) { left: 63%; top: 27%; --w: 13px; --h: 30px; --r: 24deg; animation-delay: 0.46s; }
.eco-surface i:nth-child(4) { left: 70%; top: 55%; --h: 36px; --r: -34deg; animation-delay: 0.64s; }
.eco-surface i:nth-child(5) { left: 44%; top: 20%; --w: 10px; --h: 28px; --r: 0deg; animation-delay: 0.82s; }
.eco-surface i:nth-child(6) { left: 48%; top: 70%; --w: 16px; --h: 17px; --r: 74deg; animation-delay: 1s; }
.eco-surface i:nth-child(7) { left: 19%; top: 48%; --w: 16px; --h: 18px; --r: 80deg; animation-delay: 1.18s; }
.eco-surface i:nth-child(8) { left: 76%; top: 39%; --w: 18px; --h: 16px; --r: -8deg; animation-delay: 1.36s; }
.eco-surface i:nth-child(9) { left: 37%; top: 38%; --w: 8px; --h: 18px; --r: -58deg; animation-delay: 1.54s; }
.eco-surface i:nth-child(10) { left: 59%; top: 68%; --w: 9px; --h: 23px; --r: 28deg; animation-delay: 1.72s; }
.eco-surface i:nth-child(11) { left: 29%; top: 72%; --w: 13px; --h: 15px; --r: -12deg; animation-delay: 1.9s; }
.eco-surface i:nth-child(12) { left: 69%; top: 74%; --w: 12px; --h: 13px; --r: 42deg; animation-delay: 2.08s; }

.eco-stream {
  inset: 0;
  z-index: 9;
}

.eco-users::before,
.eco-revenue::before,
.eco-data::before,
.eco-product::before {
  position: absolute;
  content: "";
  pointer-events: none;
  mix-blend-mode: screen;
}

.eco-users::before {
  left: 50%;
  top: 3%;
  width: clamp(54px, 7vw, 92px);
  height: 57%;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(203, 247, 244, 0), rgba(159, 232, 232, 0.24) 34%, rgba(236, 255, 252, 0.42) 58%, rgba(132, 230, 238, 0.02)),
    radial-gradient(ellipse at 50% 64%, rgba(234, 255, 252, 0.36), transparent 50%);
  filter: blur(10px);
  opacity: 0.22;
  transform: translateX(-50%);
  animation: usersColumnPulse 6.8s ease-in-out infinite;
}

.eco-revenue::before {
  left: 55%;
  top: 28%;
  width: 42%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(236, 255, 252, 0), rgba(183, 236, 234, 0.24), rgba(132, 230, 238, 0));
  box-shadow: 0 0 22px rgba(132, 230, 238, 0.15);
  transform: rotate(-24deg);
  transform-origin: left center;
  animation: demandSignalPulse 6.8s ease-in-out infinite 0.12s;
}

.eco-data::before {
  left: 47%;
  bottom: 12%;
  width: 30%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(236, 255, 252, 0), rgba(183, 236, 234, 0.2), rgba(132, 230, 238, 0));
  box-shadow: 0 0 18px rgba(132, 230, 238, 0.14);
  transform: rotate(-82deg);
  transform-origin: left center;
  animation: demandSignalPulse 6.8s ease-in-out infinite 0.42s;
}

.eco-product::before {
  left: 20%;
  top: 48%;
  width: 31%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(220, 251, 247, 0), rgba(220, 251, 247, 0.34), rgba(132, 230, 238, 0));
  box-shadow: 0 0 24px rgba(132, 230, 238, 0.16);
  transform-origin: right center;
  animation: productOutflowPulse 6.8s ease-in-out infinite;
}

.eco-stream i {
  position: absolute;
  display: block;
  left: var(--x, 50%);
  top: var(--y, 10%);
  width: var(--s, 5px);
  height: var(--s, 5px);
  border-radius: var(--radius, 50%);
  opacity: 0;
  background: var(--c, #a8d7da);
  box-shadow:
    0 0 12px rgba(132, 230, 238, 0.42),
    0 0 28px rgba(132, 230, 238, 0.16);
  animation-duration: 6.8s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.45, 0, 0.2, 1);
  will-change: transform, opacity;
}

.eco-stream i::before,
.eco-particle-boost i::before {
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--tail, 22px);
  height: var(--tail-h, 1px);
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(225, 254, 250, 0), rgba(225, 254, 250, 0.46), rgba(132, 230, 238, 0));
  opacity: var(--tail-opacity, 0.58);
  transform: translate(-50%, -50%) rotate(var(--tail-rotate, 90deg));
  transform-origin: center;
  filter: blur(0.15px);
}

.eco-stream i::after,
.eco-particle-boost i::after {
  position: absolute;
  inset: -5px;
  content: "";
  border-radius: inherit;
  background: radial-gradient(circle, rgba(235, 255, 252, 0.58), rgba(132, 230, 238, 0.18) 34%, transparent 68%);
  opacity: var(--aura, 0.46);
  filter: blur(2px);
}

.eco-users i {
  --tail: 34px;
  --tail-h: 1.5px;
  --tail-rotate: 90deg;
  --aura: 0.58;
  background: radial-gradient(circle, #f3fffc 0 22%, #aee9e7 44%, rgba(132, 230, 238, 0.42) 72%);
  box-shadow:
    0 0 14px rgba(198, 252, 247, 0.72),
    0 0 34px rgba(132, 230, 238, 0.28);
  animation-name: ecosystemUsers;
}

.eco-revenue i {
  --radius: 2px;
  --tail: 26px;
  --tail-rotate: -24deg;
  --tail-opacity: 0.5;
  --c: linear-gradient(135deg, rgba(219, 246, 240, 0.96), rgba(101, 160, 164, 0.68));
  height: calc(var(--s, 7px) * 0.72);
  box-shadow:
    0 0 14px rgba(220, 255, 246, 0.5),
    0 0 30px rgba(132, 230, 238, 0.18);
  animation-name: ecosystemRevenue;
}

.eco-data i {
  --radius: 1px;
  --tail: 22px;
  --tail-rotate: -82deg;
  --tail-opacity: 0.44;
  --c: rgba(135, 193, 198, 0.86);
  box-shadow:
    0 0 10px rgba(184, 240, 238, 0.5),
    0 0 24px rgba(132, 230, 238, 0.14);
  animation-name: ecosystemData;
}

.eco-product i {
  --radius: 999px;
  --tail: 42px;
  --tail-h: 2px;
  --tail-rotate: 0deg;
  --tail-opacity: 0.62;
  --c: linear-gradient(90deg, rgba(215, 246, 242, 0.9), rgba(132, 230, 238, 0.18));
  width: var(--s, 20px);
  height: 2px;
  box-shadow:
    0 0 16px rgba(220, 251, 247, 0.52),
    0 0 38px rgba(132, 230, 238, 0.16);
  animation-name: ecosystemProduct;
}

.eco-users i:nth-child(1) { --x: 47%; --y: 9%; --s: 5px; --dx: 6px; animation-delay: 0s; }
.eco-users i:nth-child(2) { --x: 51%; --y: 8%; --s: 7px; --dx: -5px; animation-delay: 0.13s; }
.eco-users i:nth-child(3) { --x: 56%; --y: 11%; --s: 4px; --dx: -18px; animation-delay: 0.26s; }
.eco-users i:nth-child(4) { --x: 43%; --y: 13%; --s: 6px; --dx: 19px; animation-delay: 0.39s; }
.eco-users i:nth-child(5) { --x: 60%; --y: 15%; --s: 5px; --dx: -28px; animation-delay: 0.52s; }
.eco-users i:nth-child(6) { --x: 39%; --y: 16%; --s: 4px; --dx: 30px; animation-delay: 0.65s; }
.eco-users i:nth-child(7) { --x: 49%; --y: 4%; --s: 6px; --dx: 4px; animation-delay: 0.78s; }
.eco-users i:nth-child(8) { --x: 63%; --y: 8%; --s: 4px; --dx: -38px; animation-delay: 0.91s; }
.eco-users i:nth-child(9) { --x: 36%; --y: 9%; --s: 5px; --dx: 39px; animation-delay: 1.04s; }
.eco-users i:nth-child(10) { --x: 54%; --y: 17%; --s: 7px; --dx: -12px; animation-delay: 1.17s; }
.eco-users i:nth-child(11) { --x: 45%; --y: 18%; --s: 5px; --dx: 17px; animation-delay: 1.3s; }
.eco-users i:nth-child(12) { --x: 58%; --y: 5%; --s: 4px; --dx: -24px; animation-delay: 1.43s; }
.eco-users i:nth-child(13) { --x: 41%; --y: 6%; --s: 4px; --dx: 24px; animation-delay: 1.56s; }
.eco-users i:nth-child(14) { --x: 50%; --y: 14%; --s: 8px; --dx: 0px; animation-delay: 1.69s; }
.eco-users i:nth-child(15) { --x: 55%; --y: 2%; --s: 5px; --dx: -18px; animation-delay: 1.82s; }
.eco-users i:nth-child(16) { --x: 44%; --y: 3%; --s: 6px; --dx: 22px; animation-delay: 1.95s; }
.eco-users i:nth-child(17) { --x: 61%; --y: 12%; --s: 4px; --dx: -34px; animation-delay: 2.08s; }
.eco-users i:nth-child(18) { --x: 37%; --y: 12%; --s: 5px; --dx: 36px; animation-delay: 2.21s; }
.eco-users i:nth-child(19) { --x: 52%; --y: 6%; --s: 8px; --dx: -6px; animation-delay: 2.34s; }
.eco-users i:nth-child(20) { --x: 47%; --y: 0%; --s: 4px; --dx: 10px; animation-delay: 2.47s; }
.eco-users i:nth-child(21) { --x: 64%; --y: 6%; --s: 5px; --dx: -42px; animation-delay: 2.6s; }
.eco-users i:nth-child(22) { --x: 34%; --y: 6%; --s: 5px; --dx: 44px; animation-delay: 2.73s; }

.eco-revenue i:nth-child(1) { --x: 86%; --y: 43%; --s: 7px; --r-mid-x: -84px; --r-mid-y: -58px; --r-users-x: clamp(-354px, -30vw, -190px); --r-users-y: -178px; --r-users-out-x: clamp(-372px, -32vw, -208px); --r-users-out-y: -192px; animation-delay: 0.15s; }
.eco-revenue i:nth-child(2) { --x: 91%; --y: 48%; --s: 9px; --r-mid-x: -102px; --r-mid-y: -76px; --r-users-x: clamp(-410px, -35vw, -230px); --r-users-y: -220px; --r-users-out-x: clamp(-426px, -36vw, -244px); --r-users-out-y: -238px; animation-delay: 0.29s; }
.eco-revenue i:nth-child(3) { --x: 88%; --y: 53%; --s: 6px; --r-mid-x: -88px; --r-mid-y: -96px; --r-users-x: clamp(-380px, -32vw, -208px); --r-users-y: -250px; --r-users-out-x: clamp(-394px, -34vw, -224px); --r-users-out-y: -266px; animation-delay: 0.43s; }
.eco-revenue i:nth-child(4) { --x: 93%; --y: 39%; --s: 7px; --r-mid-x: -112px; --r-mid-y: -42px; --r-users-x: clamp(-428px, -37vw, -242px); --r-users-y: -162px; --r-users-out-x: clamp(-446px, -39vw, -258px); --r-users-out-y: -180px; animation-delay: 0.57s; }
.eco-revenue i:nth-child(5) { --x: 82%; --y: 50%; --s: 5px; --r-mid-x: -70px; --r-mid-y: -86px; --r-users-x: clamp(-322px, -27vw, -174px); --r-users-y: -238px; --r-users-out-x: clamp(-338px, -29vw, -190px); --r-users-out-y: -254px; animation-delay: 0.71s; }
.eco-revenue i:nth-child(6) { --x: 95%; --y: 57%; --s: 7px; --r-mid-x: -118px; --r-mid-y: -110px; --r-users-x: clamp(-456px, -40vw, -268px); --r-users-y: -278px; --r-users-out-x: clamp(-474px, -42vw, -286px); --r-users-out-y: -294px; animation-delay: 0.85s; }
.eco-revenue i:nth-child(7) { --x: 84%; --y: 36%; --s: 8px; --r-mid-x: -76px; --r-mid-y: -28px; --r-users-x: clamp(-334px, -28vw, -182px); --r-users-y: -148px; --r-users-out-x: clamp(-352px, -30vw, -198px); --r-users-out-y: -164px; animation-delay: 0.99s; }
.eco-revenue i:nth-child(8) { --x: 90%; --y: 60%; --s: 6px; --r-mid-x: -96px; --r-mid-y: -118px; --r-users-x: clamp(-398px, -34vw, -222px); --r-users-y: -304px; --r-users-out-x: clamp(-414px, -36vw, -238px); --r-users-out-y: -320px; animation-delay: 1.13s; }
.eco-revenue i:nth-child(9) { --x: 97%; --y: 47%; --s: 5px; --r-mid-x: -126px; --r-mid-y: -72px; --r-users-x: clamp(-474px, -42vw, -292px); --r-users-y: -218px; --r-users-out-x: clamp(-492px, -44vw, -308px); --r-users-out-y: -236px; animation-delay: 1.27s; }

.eco-data i:nth-child(1) { --x: 58%; --y: 88%; --s: 4px; --data-mid-x: -18px; --data-mid-y: -122px; --data-users-x: -48px; --data-users-y: clamp(-382px, -35vw, -248px); --data-users-out-x: -42px; --data-users-out-y: clamp(-410px, -38vw, -268px); animation-delay: 0.35s; }
.eco-data i:nth-child(2) { --x: 65%; --y: 92%; --s: 6px; --data-mid-x: -42px; --data-mid-y: -146px; --data-users-x: -112px; --data-users-y: clamp(-432px, -39vw, -286px); --data-users-out-x: -104px; --data-users-out-y: clamp(-462px, -42vw, -304px); animation-delay: 0.51s; }
.eco-data i:nth-child(3) { --x: 51%; --y: 90%; --s: 5px; --data-mid-x: 0px; --data-mid-y: -136px; --data-users-x: 0px; --data-users-y: clamp(-404px, -37vw, -268px); --data-users-out-x: 8px; --data-users-out-y: clamp(-432px, -40vw, -286px); animation-delay: 0.67s; }
.eco-data i:nth-child(4) { --x: 70%; --y: 84%; --s: 4px; --data-mid-x: -62px; --data-mid-y: -112px; --data-users-x: -152px; --data-users-y: clamp(-350px, -32vw, -230px); --data-users-out-x: -146px; --data-users-out-y: clamp(-380px, -35vw, -248px); animation-delay: 0.83s; }
.eco-data i:nth-child(5) { --x: 43%; --y: 86%; --s: 7px; --data-mid-x: 34px; --data-mid-y: -118px; --data-users-x: 82px; --data-users-y: clamp(-360px, -33vw, -238px); --data-users-out-x: 88px; --data-users-out-y: clamp(-392px, -36vw, -256px); animation-delay: 0.99s; }
.eco-data i:nth-child(6) { --x: 62%; --y: 80%; --s: 4px; --data-mid-x: -34px; --data-mid-y: -92px; --data-users-x: -86px; --data-users-y: clamp(-318px, -29vw, -208px); --data-users-out-x: -80px; --data-users-out-y: clamp(-344px, -32vw, -226px); animation-delay: 1.15s; }
.eco-data i:nth-child(7) { --x: 49%; --y: 96%; --s: 5px; --data-mid-x: 8px; --data-mid-y: -164px; --data-users-x: 20px; --data-users-y: clamp(-452px, -41vw, -302px); --data-users-out-x: 28px; --data-users-out-y: clamp(-482px, -44vw, -322px); animation-delay: 1.31s; }
.eco-data i:nth-child(8) { --x: 74%; --y: 90%; --s: 4px; --data-mid-x: -78px; --data-mid-y: -138px; --data-users-x: -196px; --data-users-y: clamp(-416px, -38vw, -278px); --data-users-out-x: -188px; --data-users-out-y: clamp(-446px, -41vw, -296px); animation-delay: 1.47s; }

.eco-product i:nth-child(1) { --x: 10%; --y: 45%; --s: 30px; --px: 196px; --py: 8px; --pmx: 90px; --pmy: 4px; animation-delay: 3.45s; }
.eco-product i:nth-child(2) { --x: 14%; --y: 54%; --s: 22px; --px: 168px; --py: -36px; --pmx: 72px; --pmy: -14px; animation-delay: 3.61s; }
.eco-product i:nth-child(3) { --x: 8%; --y: 61%; --s: 24px; --px: 210px; --py: -66px; --pmx: 102px; --pmy: -28px; animation-delay: 3.77s; }
.eco-product i:nth-child(4) { --x: 18%; --y: 39%; --s: 18px; --px: 138px; --py: 38px; --pmx: 56px; --pmy: 16px; animation-delay: 3.93s; }
.eco-product i:nth-child(5) { --x: 4%; --y: 50%; --s: 20px; --px: 236px; --py: -12px; --pmx: 116px; --pmy: -4px; animation-delay: 4.09s; }
.eco-product i:nth-child(6) { --x: 19%; --y: 65%; --s: 18px; --px: 130px; --py: -86px; --pmx: 54px; --pmy: -36px; animation-delay: 4.25s; }
.eco-product i:nth-child(7) { --x: 12%; --y: 34%; --s: 24px; --px: 188px; --py: 62px; --pmx: 82px; --pmy: 26px; animation-delay: 4.41s; }
.eco-product i:nth-child(8) { --x: 23%; --y: 48%; --s: 14px; --px: 104px; --py: 0px; --pmx: 42px; --pmy: 0px; animation-delay: 4.57s; }

.eco-particle-boost {
  position: absolute;
  inset: 0;
  z-index: 11;
  pointer-events: none;
}

.eco-particle-boost i {
  position: absolute;
  left: var(--x, 50%);
  top: var(--y, 50%);
  display: block;
  width: var(--s, 4px);
  height: var(--s, 4px);
  border-radius: var(--radius, 999px);
  opacity: 0;
  background: var(--c, rgba(197, 242, 240, 0.9));
  box-shadow:
    0 0 12px rgba(225, 254, 250, 0.62),
    0 0 28px rgba(132, 230, 238, 0.24),
    0 0 54px rgba(132, 230, 238, 0.08);
  filter: drop-shadow(0 0 6px rgba(181, 238, 236, 0.24));
  animation: boostToCore var(--d, 6.8s) cubic-bezier(0.45, 0, 0.2, 1) infinite;
  animation-delay: var(--delay, 0s);
  will-change: transform, opacity;
}

.eco-particle-boost i:nth-child(1) { --x: 43%; --y: 2%; --s: 5px; --mx: 8px; --my: 70px; --tx: 18px; --ty: 170px; --delay: 1.58s; }
.eco-particle-boost i:nth-child(2) { --x: 50%; --y: 1%; --s: 8px; --mx: -4px; --my: 82px; --tx: -8px; --ty: 188px; --delay: 1.72s; }
.eco-particle-boost i:nth-child(3) { --x: 59%; --y: 5%; --s: 5px; --mx: -26px; --my: 76px; --tx: -58px; --ty: 168px; --delay: 1.86s; }
.eco-particle-boost i:nth-child(4) { --x: 38%; --y: 7%; --s: 5px; --mx: 28px; --my: 78px; --tx: 66px; --ty: 174px; --delay: 2s; }
.eco-particle-boost i:nth-child(5) { --x: 54%; --y: 10%; --s: 7px; --mx: -10px; --my: 58px; --tx: -24px; --ty: 142px; --delay: 2.14s; }
.eco-particle-boost i:nth-child(6) { --x: 47%; --y: 13%; --s: 5px; --mx: 8px; --my: 54px; --tx: 14px; --ty: 126px; --delay: 2.28s; }
.eco-particle-boost i:nth-child(7) { --x: 94%; --y: 38%; --s: 6px; --radius: 2px; --mx: -92px; --my: -44px; --tx: clamp(-416px, -35vw, -240px); --ty: -156px; --tx2: clamp(-438px, -37vw, -258px); --ty2: -176px; --delay: 0.12s; --c: linear-gradient(135deg, #ecfffb, rgba(132, 230, 238, 0.42)); animation-name: boostToUsers; }
.eco-particle-boost i:nth-child(8) { --x: 90%; --y: 46%; --s: 8px; --radius: 2px; --mx: -78px; --my: -70px; --tx: clamp(-376px, -32vw, -214px); --ty: -216px; --tx2: clamp(-396px, -34vw, -232px); --ty2: -238px; --delay: 0.26s; --c: linear-gradient(135deg, #ecfffb, rgba(132, 230, 238, 0.42)); animation-name: boostToUsers; }
.eco-particle-boost i:nth-child(9) { --x: 97%; --y: 53%; --s: 5px; --radius: 2px; --mx: -116px; --my: -96px; --tx: clamp(-482px, -42vw, -290px); --ty: -262px; --tx2: clamp(-506px, -44vw, -310px); --ty2: -284px; --delay: 0.4s; --c: linear-gradient(135deg, #ecfffb, rgba(132, 230, 238, 0.42)); animation-name: boostToUsers; }
.eco-particle-boost i:nth-child(10) { --x: 84%; --y: 57%; --s: 7px; --radius: 2px; --mx: -58px; --my: -112px; --tx: clamp(-310px, -26vw, -174px); --ty: -292px; --tx2: clamp(-330px, -28vw, -192px); --ty2: -314px; --delay: 0.54s; --c: linear-gradient(135deg, #ecfffb, rgba(132, 230, 238, 0.42)); animation-name: boostToUsers; }
.eco-particle-boost i:nth-child(11) { --x: 93%; --y: 62%; --s: 4px; --radius: 2px; --mx: -100px; --my: -132px; --tx: clamp(-430px, -37vw, -258px); --ty: -326px; --tx2: clamp(-452px, -39vw, -278px); --ty2: -346px; --delay: 0.68s; --c: linear-gradient(135deg, #ecfffb, rgba(132, 230, 238, 0.42)); animation-name: boostToUsers; }
.eco-particle-boost i:nth-child(12) { --x: 88%; --y: 32%; --s: 5px; --radius: 2px; --mx: -70px; --my: -22px; --tx: clamp(-358px, -30vw, -202px); --ty: -118px; --tx2: clamp(-378px, -32vw, -220px); --ty2: -138px; --delay: 0.82s; --c: linear-gradient(135deg, #ecfffb, rgba(132, 230, 238, 0.42)); animation-name: boostToUsers; }
.eco-particle-boost i:nth-child(13) { --x: 48%; --y: 96%; --s: 4px; --mx: 10px; --my: -122px; --tx: 22px; --ty: clamp(-452px, -41vw, -302px); --tx2: 34px; --ty2: clamp(-480px, -44vw, -320px); --delay: 0.42s; animation-name: boostToUsers; }
.eco-particle-boost i:nth-child(14) { --x: 55%; --y: 92%; --s: 6px; --mx: -16px; --my: -110px; --tx: -34px; --ty: clamp(-416px, -38vw, -278px); --tx2: -26px; --ty2: clamp(-444px, -41vw, -296px); --delay: 0.58s; animation-name: boostToUsers; }
.eco-particle-boost i:nth-child(15) { --x: 62%; --y: 98%; --s: 5px; --mx: -36px; --my: -140px; --tx: -84px; --ty: clamp(-480px, -44vw, -322px); --tx2: -74px; --ty2: clamp(-510px, -47vw, -342px); --delay: 0.74s; animation-name: boostToUsers; }
.eco-particle-boost i:nth-child(16) { --x: 41%; --y: 88%; --s: 5px; --mx: 28px; --my: -94px; --tx: 74px; --ty: clamp(-368px, -34vw, -246px); --tx2: 84px; --ty2: clamp(-396px, -37vw, -264px); --delay: 0.9s; animation-name: boostToUsers; }
.eco-particle-boost i:nth-child(17) { --x: 68%; --y: 86%; --s: 4px; --mx: -54px; --my: -88px; --tx: -116px; --ty: clamp(-356px, -33vw, -236px); --tx2: -106px; --ty2: clamp(-384px, -36vw, -256px); --delay: 1.06s; animation-name: boostToUsers; }
.eco-particle-boost i:nth-child(18) { --x: 34%; --y: 94%; --s: 7px; --mx: 52px; --my: -126px; --tx: 134px; --ty: clamp(-434px, -40vw, -290px); --tx2: 146px; --ty2: clamp(-462px, -43vw, -308px); --delay: 1.22s; animation-name: boostToUsers; }
.eco-particle-boost i:nth-child(19) { --x: 50%; --y: 50%; --s: 18px; --radius: 999px; --mx: -48px; --my: 4px; --tx: clamp(-238px, -20vw, -132px); --ty: 16px; --delay: 3.42s; --c: linear-gradient(90deg, rgba(234, 255, 252, 0.92), rgba(132, 230, 238, 0.18)); animation-name: coreToProduct; }
.eco-particle-boost i:nth-child(20) { --x: 50%; --y: 50%; --s: 22px; --radius: 999px; --mx: -58px; --my: -14px; --tx: clamp(-262px, -22vw, -150px); --ty: -44px; --delay: 3.56s; --c: linear-gradient(90deg, rgba(234, 255, 252, 0.92), rgba(132, 230, 238, 0.18)); animation-name: coreToProduct; }
.eco-particle-boost i:nth-child(21) { --x: 50%; --y: 50%; --s: 16px; --radius: 999px; --mx: -72px; --my: -34px; --tx: clamp(-312px, -26vw, -182px); --ty: -98px; --delay: 3.7s; --c: linear-gradient(90deg, rgba(234, 255, 252, 0.92), rgba(132, 230, 238, 0.18)); animation-name: coreToProduct; }
.eco-particle-boost i:nth-child(22) { --x: 50%; --y: 50%; --s: 14px; --radius: 999px; --mx: -42px; --my: 34px; --tx: clamp(-202px, -17vw, -118px); --ty: 86px; --delay: 3.84s; --c: linear-gradient(90deg, rgba(234, 255, 252, 0.92), rgba(132, 230, 238, 0.18)); animation-name: coreToProduct; }
.eco-particle-boost i:nth-child(23) { --x: 50%; --y: 50%; --s: 20px; --radius: 999px; --mx: -78px; --my: -48px; --tx: clamp(-332px, -28vw, -198px); --ty: -128px; --delay: 3.98s; --c: linear-gradient(90deg, rgba(234, 255, 252, 0.92), rgba(132, 230, 238, 0.18)); animation-name: coreToProduct; }
.eco-particle-boost i:nth-child(24) { --x: 50%; --y: 50%; --s: 12px; --radius: 999px; --mx: -64px; --my: 48px; --tx: clamp(-278px, -23vw, -162px); --ty: 132px; --delay: 4.12s; --c: linear-gradient(90deg, rgba(234, 255, 252, 0.92), rgba(132, 230, 238, 0.18)); animation-name: coreToProduct; }
.eco-particle-boost i:nth-child(25) { --x: 46%; --y: -2%; --s: 4px; --mx: 14px; --my: 92px; --tx: 26px; --ty: 214px; --delay: 2.42s; --tail: 40px; }
.eco-particle-boost i:nth-child(26) { --x: 53%; --y: -1%; --s: 6px; --mx: -18px; --my: 94px; --tx: -34px; --ty: 210px; --delay: 2.56s; --tail: 46px; }
.eco-particle-boost i:nth-child(27) { --x: 41%; --y: 4%; --s: 5px; --mx: 34px; --my: 84px; --tx: 78px; --ty: 190px; --delay: 2.7s; --tail: 38px; }
.eco-particle-boost i:nth-child(28) { --x: 61%; --y: 3%; --s: 5px; --mx: -38px; --my: 86px; --tx: -86px; --ty: 196px; --delay: 2.84s; --tail: 38px; }
.eco-particle-boost i:nth-child(29) { --x: 49%; --y: 6%; --s: 9px; --mx: 0px; --my: 78px; --tx: 0px; --ty: 182px; --delay: 2.98s; --tail: 52px; --c: radial-gradient(circle, #f4fffd 0 24%, rgba(167, 240, 238, 0.9) 44%, rgba(132, 230, 238, 0.24) 74%); }
.eco-particle-boost i:nth-child(30) { --x: 55%; --y: 8%; --s: 4px; --mx: -22px; --my: 70px; --tx: -48px; --ty: 166px; --delay: 3.12s; --tail: 36px; }
.eco-particle-boost i:nth-child(31) { --x: 50%; --y: 50%; --s: 10px; --radius: 999px; --mx: -54px; --my: 18px; --tx: clamp(-222px, -19vw, -128px); --ty: 46px; --delay: 4.26s; --tail: 56px; --tail-rotate: 0deg; --c: linear-gradient(90deg, rgba(245, 255, 253, 0.95), rgba(132, 230, 238, 0.16)); animation-name: coreToProduct; }
.eco-particle-boost i:nth-child(32) { --x: 50%; --y: 50%; --s: 13px; --radius: 999px; --mx: -68px; --my: -22px; --tx: clamp(-286px, -24vw, -166px); --ty: -70px; --delay: 4.4s; --tail: 62px; --tail-rotate: 0deg; --c: linear-gradient(90deg, rgba(245, 255, 253, 0.95), rgba(132, 230, 238, 0.16)); animation-name: coreToProduct; }
.eco-particle-boost i:nth-child(33) { --x: 50%; --y: 50%; --s: 9px; --radius: 999px; --mx: -46px; --my: -2px; --tx: clamp(-198px, -16vw, -114px); --ty: -8px; --delay: 4.54s; --tail: 48px; --tail-rotate: 0deg; --c: linear-gradient(90deg, rgba(245, 255, 253, 0.95), rgba(132, 230, 238, 0.16)); animation-name: coreToProduct; }
.eco-particle-boost i:nth-child(34) { --x: 50%; --y: 50%; --s: 11px; --radius: 999px; --mx: -82px; --my: 32px; --tx: clamp(-338px, -29vw, -204px); --ty: 96px; --delay: 4.68s; --tail: 58px; --tail-rotate: 0deg; --c: linear-gradient(90deg, rgba(245, 255, 253, 0.95), rgba(132, 230, 238, 0.16)); animation-name: coreToProduct; }
.eco-particle-boost i:nth-child(35) { --x: 50%; --y: 50%; --s: 7px; --radius: 999px; --mx: -102px; --my: -52px; --tx: clamp(-374px, -32vw, -232px); --ty: -146px; --delay: 4.82s; --tail: 46px; --tail-rotate: 0deg; --c: linear-gradient(90deg, rgba(245, 255, 253, 0.95), rgba(132, 230, 238, 0.16)); animation-name: coreToProduct; }
.eco-particle-boost i:nth-child(36) { --x: 50%; --y: 50%; --s: 8px; --radius: 999px; --mx: -36px; --my: 54px; --tx: clamp(-178px, -15vw, -102px); --ty: 146px; --delay: 4.96s; --tail: 44px; --tail-rotate: 0deg; --c: linear-gradient(90deg, rgba(245, 255, 253, 0.95), rgba(132, 230, 238, 0.16)); animation-name: coreToProduct; }

.eco-core-flare {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 10;
  width: clamp(170px, 22vw, 280px);
  aspect-ratio: 1;
  pointer-events: none;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(238, 255, 252, 0.34) 0 6%, rgba(132, 230, 238, 0.18) 12%, transparent 58%),
    conic-gradient(from 0deg, transparent 0 13%, rgba(204, 249, 245, 0.2) 15%, transparent 19% 42%, rgba(204, 249, 245, 0.16) 45%, transparent 49% 74%, rgba(204, 249, 245, 0.18) 78%, transparent 84%);
  filter: blur(0.2px);
  mix-blend-mode: screen;
  opacity: 0.55;
  transform: translate(-50%, -50%);
  animation: coreFlare 6.8s ease-in-out infinite;
}

.eco-node {
  z-index: 12;
  display: grid;
  min-width: 118px;
  min-height: 54px;
  align-content: center;
  padding: 10px 14px;
  border: 1px solid rgba(139, 197, 201, 0.32);
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(144, 200, 204, 0.12), transparent),
    rgba(3, 10, 14, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 14px 30px rgba(0, 0, 0, 0.26);
  animation: ecoNodeWake 6.2s ease-in-out infinite;
}

.eco-node b,
.eco-node small {
  display: block;
  line-height: 1;
  white-space: nowrap;
}

.eco-node b {
  color: #d8edef;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.eco-node small {
  margin-top: 7px;
  color: #7ea4aa;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.eco-node-users {
  top: 10%;
  left: 43%;
  animation-delay: 1.45s;
}

.eco-node-revenue {
  top: 41%;
  right: 3%;
  animation-delay: 0.18s;
}

.eco-node-data {
  right: 26%;
  bottom: 8%;
  animation-delay: 0.52s;
}

.eco-node-product {
  top: 43%;
  left: 2%;
  animation-delay: 3.45s;
}

.eco-return {
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 78%;
  height: 78%;
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-18deg);
}

.eco-return::before {
  position: absolute;
  inset: 8%;
  content: "";
  border-radius: 50%;
  border-top: 2px solid rgba(198, 238, 235, 0.2);
  border-right: 2px solid rgba(198, 238, 235, 0.08);
  filter: drop-shadow(0 0 16px rgba(132, 230, 238, 0.16));
  animation: ecosystemSpin 22s linear infinite;
}

.eco-return span {
  position: absolute;
  left: 25%;
  top: 7%;
  color: rgba(202, 233, 233, 0.72);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: rotate(18deg);
  animation: ecoTextPulse 6.8s ease-in-out infinite 4.65s;
}

.rescue-proof {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line);
  border-bottom: 0;
  background: rgba(255, 255, 255, 0.035);
}

.rescue-proof span {
  padding: 16px 14px;
  color: #c8e3e7;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.rescue-proof span + span {
  border-left: 1px solid var(--line);
}

.stabilization-process {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 18% 4%, rgba(132, 230, 238, 0.11), transparent 34rem),
    radial-gradient(ellipse at 86% 74%, rgba(132, 230, 238, 0.08), transparent 38rem),
    linear-gradient(180deg, rgba(132, 230, 238, 0.018), rgba(255, 255, 255, 0.012));
}

.process-proof-heading {
  display: grid;
  grid-template-columns: 0.42fr minmax(0, 1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: end;
  margin-bottom: 42px;
}

.process-proof-heading h2 {
  max-width: 880px;
  margin: 0;
  color: #eef8f8;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, Inter, Arial, sans-serif;
  font-size: clamp(40px, 5.6vw, 82px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
}

.process-proof-heading p:not(.section-label) {
  max-width: 700px;
  grid-column: 2;
  margin: -16px 0 0;
  font-size: 17px;
}

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

.process-card {
  position: relative;
  display: grid;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(132, 230, 238, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(132, 230, 238, 0.095), transparent 58%),
    rgba(4, 12, 15, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 28px 72px rgba(0, 0, 0, 0.22);
}

.process-card::before {
  position: absolute;
  inset: 0 0 auto auto;
  width: 180px;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(132, 230, 238, 0.14);
  border-radius: 50%;
  opacity: 0.55;
  transform: translate(36%, -42%);
}

.process-card-wide {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
  align-items: stretch;
}

.process-card-outcome {
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
}

.process-card figure {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(132, 230, 238, 0.16);
  background:
    radial-gradient(ellipse at 50% 50%, rgba(132, 230, 238, 0.16), transparent 58%),
    #03090c;
}

.process-card-wide figure {
  min-height: 360px;
  border-right: 1px solid rgba(132, 230, 238, 0.16);
  border-bottom: 0;
}

.process-card-outcome figure {
  order: 2;
  border-right: 0;
  border-left: 1px solid rgba(132, 230, 238, 0.16);
}

.process-card figure::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(2, 7, 10, 0.08), rgba(2, 7, 10, 0.38)),
    radial-gradient(ellipse at 50% 50%, transparent 0 45%, rgba(3, 8, 11, 0.64) 84%);
  mix-blend-mode: multiply;
}

.process-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.78) brightness(0.75) contrast(1.12);
  transform: scale(1.01);
}

.process-card:nth-child(2) img {
  filter: saturate(0.62) brightness(0.58) contrast(1.18);
}

.process-card:nth-child(3) img,
.process-card:nth-child(4) img,
.process-card:nth-child(5) img {
  filter: saturate(0.74) brightness(0.72) contrast(1.14);
}

.process-copy {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: clamp(22px, 3vw, 34px);
}

.process-copy span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.process-copy h3 {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--text);
  font-size: clamp(24px, 2.35vw, 38px);
  font-weight: 900;
  line-height: 0.98;
}

.process-copy p {
  max-width: 620px;
  margin: 18px 0 0;
  font-size: 15px;
}

.process-copy ul {
  display: grid;
  gap: 9px;
  margin: auto 0 0;
  padding: 26px 0 0;
  list-style: none;
}

.process-copy li {
  position: relative;
  padding-left: 20px;
  color: #b8d1d5;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.34;
}

.process-copy li::before {
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: #a7f7ff;
  box-shadow: 0 0 14px rgba(132, 230, 238, 0.46);
}

.rescue-section {
  padding-top: clamp(76px, 10vw, 132px);
  padding-bottom: clamp(76px, 10vw, 132px);
}

.rescue-heading {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: clamp(28px, 6vw, 92px);
  align-items: end;
  margin-bottom: 46px;
}

.rescue-heading h2,
.rescue-ownership h2,
.rescue-close h2 {
  font-size: clamp(42px, 5.25vw, 74px);
}

.rescue-problem {
  background:
    radial-gradient(ellipse at 88% 8%, rgba(132, 230, 238, 0.09), transparent 34rem),
    rgba(255, 255, 255, 0.012);
}

.rescue-problem-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 1.2fr);
  gap: clamp(30px, 7vw, 118px);
}

.rescue-prose p,
.rescue-ownership p,
.rescue-paid-note p,
.process-proof-heading p,
.process-copy p,
.process-copy li,
.inspection-rail p,
.deliverable-list p,
.estimate-ledger p,
.rescue-close-copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.58;
}

.rescue-prose p {
  margin: 0;
  font-size: 18px;
}

.rescue-prose p + p {
  margin-top: 24px;
}

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

.rescue-unknowns span {
  min-height: 92px;
  display: flex;
  align-items: center;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #d9e8eb;
  font-size: 15px;
  font-weight: 800;
}

.rescue-inspection {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(115deg, rgba(132, 230, 238, 0.09), transparent 48%),
    rgba(3, 10, 14, 0.58);
}

.inspection-rail {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line);
}

.inspection-rail div {
  min-height: 240px;
  padding: 24px;
}

.inspection-rail div + div {
  border-left: 1px solid var(--line);
}

.inspection-rail b,
.estimate-ledger b {
  color: var(--lime);
  font-size: 12px;
}

.inspection-rail span {
  display: block;
  margin-top: 34px;
  color: var(--text);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.04;
}

.inspection-rail p {
  margin: 12px 0 0;
  font-size: 14px;
}

.rescue-decision {
  margin-top: 18px;
  padding: 18px 22px;
  border-left: 3px solid var(--cyan);
  color: #d7f4f5;
  font-size: 16px;
  font-weight: 750;
  line-height: 1.42;
  background: rgba(132, 230, 238, 0.06);
}

.rescue-deliverables {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(132, 230, 238, 0.03));
}

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

.deliverable-list article {
  min-height: 142px;
  padding: 22px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.deliverable-list span {
  color: var(--text);
  font-size: 18px;
  font-weight: 900;
}

.deliverable-list p {
  max-width: 440px;
  margin: 8px 0 0;
  font-size: 14px;
}

.rescue-ownership {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.55fr);
  gap: clamp(30px, 7vw, 110px);
  align-items: end;
}

.rescue-ownership-quote {
  padding-right: clamp(0px, 4vw, 54px);
}

.rescue-ownership h2 {
  margin-top: 25px;
}

.rescue-ownership p {
  max-width: 720px;
  margin: 24px 0 0;
  font-size: 17px;
}

.rescue-paid-note {
  padding: 26px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background:
    linear-gradient(145deg, rgba(132, 230, 238, 0.12), transparent 54%),
    rgba(4, 13, 17, 0.7);
}

.rescue-paid-note strong {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.rescue-paid-note p {
  margin: 16px 0 0;
}

.rescue-estimate {
  border-block: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 80% 0%, rgba(132, 230, 238, 0.1), transparent 38rem),
    rgba(255, 255, 255, 0.012);
}

.estimate-ledger {
  border: 1px solid var(--line);
}

.estimate-ledger article {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  padding: 26px;
}

.estimate-ledger article + article {
  border-top: 1px solid var(--line);
}

.estimate-ledger h3 {
  margin: 0;
  color: var(--text);
  font-size: 24px;
  line-height: 1.06;
}

.estimate-ledger p {
  max-width: 760px;
  margin: 8px 0 0;
}

.rescue-formula {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
  padding: 20px 22px;
  border-left: 3px solid var(--cyan);
  color: #d4e6e9;
  background: rgba(132, 230, 238, 0.07);
}

.rescue-formula strong,
.rescue-formula span {
  font-size: 14px;
  font-weight: 800;
}

.rescue-formula strong {
  color: var(--text);
}

.rescue-formula i {
  color: var(--cyan);
  font-size: 20px;
  font-style: normal;
}

.rescue-close {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: clamp(30px, 8vw, 126px);
  align-items: end;
}

.rescue-close-copy p {
  margin: 0;
  font-size: 17px;
}

.rescue-close-copy .button {
  margin-top: 28px;
}

@media (max-width: 980px) {
  .rescue-hero-grid,
  .rescue-heading,
  .process-proof-heading,
  .rescue-problem-grid,
  .rescue-ownership,
  .rescue-close {
    grid-template-columns: 1fr;
  }

  .process-proof-heading p:not(.section-label) {
    grid-column: auto;
    margin-top: -10px;
  }

  .process-story,
  .process-card-wide,
  .process-card-outcome {
    grid-template-columns: 1fr;
  }

  .process-card-wide,
  .process-card-outcome {
    grid-column: auto;
  }

  .process-card-wide figure,
  .process-card-outcome figure {
    min-height: 300px;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid rgba(132, 230, 238, 0.16);
  }

  .process-card-outcome figure {
    order: 0;
  }

  .rescue-hero-grid {
    min-height: auto;
    padding-top: 88px;
  }

  .rescue-motion {
    justify-self: center;
    width: min(100%, 760px);
    margin-top: -34px;
  }

  .stability-engine {
    justify-self: center;
    width: min(100%, 660px);
    margin-top: -24px;
  }

  .ecosystem-loop {
    width: min(100%, 660px);
  }

  .eco-planet {
    width: clamp(190px, 34vw, 260px);
  }

  .eco-node-users {
    left: 41%;
  }

  .eco-node-revenue {
    right: 2%;
  }

  .eco-node-product {
    left: 1%;
  }

  .loop-core {
    width: clamp(160px, 27vw, 220px);
  }

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

  .inspection-rail div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .inspection-rail div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .inspection-rail div:nth-child(5) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 620px) {
  .audit-v2 .rescue-hero,
  .audit-v2 .rescue-section {
    padding-inline: 16px;
  }

  .rescue-hero {
    min-height: auto;
  }

  .rescue-hero-grid {
    padding-top: 72px;
  }

  .rescue-hero h1 {
    font-size: clamp(42px, 12.7vw, 64px);
  }

  .rescue-lead {
    font-size: 17px;
  }

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

  .process-proof-heading h2 {
    font-size: clamp(38px, 11.5vw, 56px);
  }

  .process-proof-heading p:not(.section-label) {
    font-size: 15px;
  }

  .process-story {
    gap: 12px;
  }

  .process-card {
    border-radius: 6px;
  }

  .process-card figure,
  .process-card-wide figure,
  .process-card-outcome figure {
    min-height: 210px;
  }

  .process-copy {
    padding: 20px;
  }

  .process-copy h3 {
    font-size: 24px;
  }

  .process-copy p,
  .process-copy li {
    font-size: 14px;
  }

  .rescue-motion {
    width: calc(100% + 28px);
    margin-top: -18px;
    margin-left: -14px;
  }

  .stability-engine {
    width: min(100%, 430px);
    margin-top: 10px;
  }

  .growth-loop {
    min-height: 360px;
  }

  .ecosystem-loop {
    min-height: 390px;
  }

  .eco-planet {
    width: 166px;
  }

  .eco-core {
    width: 62px;
  }

  .eco-core span {
    font-size: 8px;
  }

  .eco-node {
    min-width: 78px;
    min-height: 38px;
    padding: 8px 9px;
  }

  .eco-node b {
    font-size: 10px;
  }

  .eco-node small {
    display: none;
  }

  .eco-node-users {
    top: 11%;
    left: 39%;
  }

  .eco-node-revenue {
    top: 42%;
    right: 1%;
  }

  .eco-node-data {
    right: 19%;
    bottom: 8%;
  }

  .eco-node-product {
    top: 44%;
    left: 0;
  }

  .eco-return span {
    font-size: 8px;
  }

  .loop-core {
    width: 128px;
  }

  .loop-core span {
    font-size: 10px;
  }

  .loop-node {
    min-width: 76px;
    min-height: 38px;
    padding: 8px 9px;
  }

  .loop-node b {
    font-size: 10px;
  }

  .loop-node small {
    display: none;
  }

  .loop-users {
    top: 12%;
    left: 39%;
  }

  .loop-revenue {
    top: 41%;
    right: 2%;
  }

  .loop-data {
    right: 21%;
    bottom: 10%;
  }

  .loop-product {
    top: 43%;
    left: 1%;
  }

  .engine-core {
    width: 142px;
  }

  .engine-node {
    min-width: 72px;
    height: 34px;
    padding: 0 9px;
    font-size: 10px;
  }

  .engine-load {
    right: 8%;
    bottom: 11%;
    width: 148px;
    padding: 11px 12px;
  }

  .engine-load strong {
    font-size: 14px;
  }

  .rescue-proof,
  .rescue-unknowns,
  .inspection-rail,
  .deliverable-list {
    grid-template-columns: 1fr;
  }

  .rescue-proof span + span,
  .inspection-rail div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .rescue-proof span {
    padding: 14px 16px;
  }

  .rescue-heading {
    gap: 18px;
    margin-bottom: 32px;
  }

  .rescue-heading h2,
  .rescue-ownership h2,
  .rescue-close h2 {
    font-size: 42px;
  }

  .inspection-rail div {
    min-height: 0;
    padding: 22px;
  }

  .inspection-rail div:nth-child(3),
  .inspection-rail div:nth-child(4) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .inspection-rail span {
    margin-top: 25px;
  }

  .deliverable-list article {
    min-height: 0;
    padding: 20px;
  }

  .rescue-ownership-quote {
    padding-right: 0;
  }

  .rescue-paid-note {
    padding: 22px;
  }

  .estimate-ledger article {
    grid-template-columns: 46px minmax(0, 1fr);
    padding: 22px;
  }

  .rescue-formula {
    align-items: flex-start;
    flex-direction: column;
  }

  .rescue-formula i {
    line-height: 0.7;
  }

  .trust-figure {
    grid-template-columns: 132px minmax(0, 1fr);
    min-height: 148px;
  }

  .figure-canvas {
    min-height: 148px;
  }

  .figure-copy {
    padding: 18px;
  }

  .figure-copy strong {
    font-size: 16px;
  }

  .figure-copy span {
    font-size: 12px;
  }
}

@media (max-width: 620px) {
  .trust-figure {
    grid-template-columns: 1fr;
  }

  .trust-media {
    min-height: 178px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-media img {
    transform: scale(1.04);
  }
}
