:root {
  --color-primary: #22f2c3;
  --color-primary-dark: #0fb898;
  --color-secondary: #246bfd;
  --color-secondary-dark: #1746b8;
  --color-accent: #8cff5a;
  --color-accent-violet: #8b5cf6;
  --color-bg: #06080d;
  --color-bg-soft: #0a0d14;
  --color-bg-elevated: #0d111a;
  --color-surface: #101722;
  --color-surface-soft: #151b27;
  --color-surface-strong: #1b2230;
  --color-border: #223044;
  --color-border-soft: #182233;
  --color-text: #f4f7fb;
  --color-text-muted: #9aa7b8;
  --color-text-soft: #6f7b8c;
  --color-text-disabled: #4d5868;
  --color-success: #22f2c3;
  --color-error: #ff5c6c;
  --color-warning: #ffd45a;
  --color-info: #5b8cff;
  --gradient-brand: linear-gradient(135deg, #22f2c3 0%, #246bfd 58%, #8b5cf6 100%);
  --gradient-success: linear-gradient(135deg, #22f2c3 0%, #8cff5a 100%);
  --gradient-surface: linear-gradient(180deg, #151b27 0%, #0d111a 100%);
  --font-display: "Space Grotesk", "Manrope", sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --font-ui: "JetBrains Mono", monospace;
  --font-size-h1: clamp(2.45rem, 5vw, 4.55rem);
  --font-size-h2: clamp(2rem, 4.4vw, 4.25rem);
  --font-size-h3: clamp(1.25rem, 2.1vw, 1.75rem);
  --font-size-body-lg: clamp(1.02rem, 1.45vw, 1.22rem);
  --font-size-body: 1rem;
  --font-size-body-sm: 0.875rem;
  --font-size-caption: 0.75rem;
  --font-size-label: 0.8125rem;
  --line-height-display: 0.98;
  --line-height-heading: 1.1;
  --line-height-body: 1.7;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
  --space-10: 8rem;
  --space-page-x: clamp(1rem, 4vw, 5rem);
  --space-section-y: clamp(4.5rem, 9vw, 8rem);
  --space-hero-y: clamp(5.2rem, 9vw, 7.5rem);
  --container-max: 1180px;
  --radius-xs: 0.375rem;
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-pill: 999px;
  --shadow-card: 0 18px 48px rgba(0, 0, 0, 0.34);
  --shadow-card-hover: 0 24px 70px rgba(0, 0, 0, 0.46);
  --shadow-modal: 0 32px 90px rgba(0, 0, 0, 0.62);
  --shadow-primary-glow: 0 0 32px rgba(34, 242, 195, 0.22);
  --duration-fast: 140ms;
  --duration-base: 220ms;
  --duration-slow: 420ms;
  --ease-standard: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-bg);
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

.site-header,
.preloader,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-crystals {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.72;
}

.site-crystals span {
  position: absolute;
  top: -12vh;
  width: 0.72rem;
  height: 0.72rem;
  border: 1px solid rgba(139, 92, 246, 0.28);
  background:
    linear-gradient(135deg, rgba(34, 242, 195, 0.7), rgba(36, 107, 253, 0.16) 55%, rgba(139, 92, 246, 0.42));
  box-shadow:
    0 0 18px rgba(34, 242, 195, 0.2),
    inset 0 0 10px rgba(255, 255, 255, 0.08);
  transform: rotate(45deg);
  animation: siteCrystalFall var(--crystal-duration, 18s) linear infinite;
  animation-delay: var(--crystal-delay, 0s);
  will-change: transform, opacity;
}

.site-crystals span:nth-child(1) { left: 4%; --crystal-duration: 19s; --crystal-delay: -3s; }
.site-crystals span:nth-child(2) { left: 11%; width: 0.48rem; height: 0.48rem; --crystal-duration: 24s; --crystal-delay: -11s; }
.site-crystals span:nth-child(3) { left: 18%; border-color: rgba(36, 107, 253, 0.32); --crystal-duration: 21s; --crystal-delay: -7s; }
.site-crystals span:nth-child(4) { left: 26%; width: 0.62rem; height: 0.62rem; --crystal-duration: 27s; --crystal-delay: -15s; }
.site-crystals span:nth-child(5) { left: 34%; width: 0.42rem; height: 0.42rem; --crystal-duration: 20s; --crystal-delay: -2s; }
.site-crystals span:nth-child(6) { left: 42%; border-color: rgba(34, 242, 195, 0.34); --crystal-duration: 26s; --crystal-delay: -12s; }
.site-crystals span:nth-child(7) { left: 50%; width: 0.5rem; height: 0.5rem; --crystal-duration: 18s; --crystal-delay: -6s; }
.site-crystals span:nth-child(8) { left: 57%; width: 0.8rem; height: 0.8rem; --crystal-duration: 23s; --crystal-delay: -18s; }
.site-crystals span:nth-child(9) { left: 64%; border-color: rgba(139, 92, 246, 0.38); --crystal-duration: 29s; --crystal-delay: -5s; }
.site-crystals span:nth-child(10) { left: 71%; width: 0.45rem; height: 0.45rem; --crystal-duration: 22s; --crystal-delay: -13s; }
.site-crystals span:nth-child(11) { left: 78%; --crystal-duration: 25s; --crystal-delay: -9s; }
.site-crystals span:nth-child(12) { left: 86%; width: 0.58rem; height: 0.58rem; --crystal-duration: 19s; --crystal-delay: -16s; }
.site-crystals span:nth-child(13) { left: 93%; border-color: rgba(36, 107, 253, 0.35); --crystal-duration: 28s; --crystal-delay: -4s; }
.site-crystals span:nth-child(14) { left: 8%; width: 0.86rem; height: 0.86rem; --crystal-duration: 31s; --crystal-delay: -21s; }
.site-crystals span:nth-child(15) { left: 38%; width: 0.38rem; height: 0.38rem; --crystal-duration: 17s; --crystal-delay: -10s; }
.site-crystals span:nth-child(16) { left: 68%; width: 0.66rem; height: 0.66rem; --crystal-duration: 30s; --crystal-delay: -23s; }
.site-crystals span:nth-child(17) { left: 88%; width: 0.48rem; height: 0.48rem; --crystal-duration: 21s; --crystal-delay: -1s; }
.site-crystals span:nth-child(18) { left: 23%; width: 0.54rem; height: 0.54rem; --crystal-duration: 33s; --crystal-delay: -27s; }

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

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

button,
input {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

::selection {
  color: #03120f;
  background: var(--color-primary);
}

.container,
.hero__container {
  width: min(calc(100% - var(--space-page-x) - var(--space-page-x)), var(--container-max));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: var(--space-section-y) 0;
}

.section--dark {
  background:
    linear-gradient(180deg, rgba(16, 23, 34, 0.38), rgba(6, 8, 13, 0.2)),
    var(--color-bg-soft);
}

.section-shell {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-heading h2,
.section-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--font-size-h2);
  line-height: var(--line-height-heading);
  letter-spacing: 0;
}

.section-heading p,
.section-copy p {
  margin: var(--space-4) 0 0;
  max-width: 650px;
  color: var(--color-text-muted);
  font-size: var(--font-size-body-lg);
}

.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
  font-size: var(--font-size-caption);
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.status-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 0 0 rgba(34, 242, 195, 0.52);
  animation: pulse 1.9s infinite;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  max-width: 100%;
  padding: 0 1.45rem;
  border-radius: var(--radius-pill);
  color: var(--color-text);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition:
    transform var(--duration-base) var(--ease-standard),
    border-color var(--duration-base) var(--ease-standard),
    background var(--duration-base) var(--ease-standard),
    box-shadow var(--duration-base) var(--ease-standard);
}

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

.button--primary {
  color: #03120f;
  background: var(--gradient-brand);
  box-shadow: var(--shadow-primary-glow);
}

.button--secondary {
  border: 1px solid var(--color-border);
  background: rgba(16, 23, 34, 0.72);
}

.button--secondary:hover {
  border-color: rgba(34, 242, 195, 0.48);
  box-shadow: 0 0 26px rgba(34, 242, 195, 0.12);
}

.button--sm {
  min-height: 2.7rem;
  padding-inline: 1.1rem;
  font-size: var(--font-size-body-sm);
}

.button--full {
  width: 100%;
}

.site-cursor {
  position: fixed;
  z-index: 2000;
  width: 26px;
  height: 26px;
  pointer-events: none;
  border: 1px solid rgba(34, 242, 195, 0.44);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition:
    width var(--duration-fast) ease,
    height var(--duration-fast) ease,
    opacity var(--duration-fast) ease,
    border-color var(--duration-fast) ease;
}

.site-cursor.is-active {
  opacity: 1;
}

.site-cursor.is-hovering {
  width: 42px;
  height: 42px;
  border-color: rgba(140, 255, 90, 0.65);
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: var(--space-page-x);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(34, 242, 195, 0.1), transparent 28%),
    radial-gradient(circle at 56% 58%, rgba(36, 107, 253, 0.12), transparent 40%),
    linear-gradient(180deg, #070910 0%, #05070b 100%);
  transition:
    opacity 520ms var(--ease-out),
    visibility 520ms var(--ease-out);
}

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

.preloader__grid {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at center, #000 0%, transparent 72%);
}

.preloader__atmosphere {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.75;
}

.preloader__atmosphere::before {
  content: "";
  position: absolute;
  width: clamp(15rem, 46vw, 34rem);
  aspect-ratio: 1;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(34, 242, 195, 0.13);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(34, 242, 195, 0.12), transparent 20%),
    conic-gradient(from 120deg, transparent, rgba(34, 242, 195, 0.18), transparent, rgba(36, 107, 253, 0.16), transparent);
  transform: translate(-50%, -50%);
  animation: rotate 16s linear infinite;
}

.preloader__atmosphere span {
  position: absolute;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 1px;
  background: linear-gradient(135deg, rgba(34, 242, 195, 0.88), rgba(36, 107, 253, 0.52));
  box-shadow: 0 0 20px rgba(34, 242, 195, 0.34);
  transform: rotate(45deg);
  animation: preloaderCrystal 4.8s linear infinite;
}

.preloader__atmosphere span:nth-child(1) {
  left: 18%;
  top: -8%;
  animation-delay: -0.4s;
}

.preloader__atmosphere span:nth-child(2) {
  left: 36%;
  top: -10%;
  animation-delay: -2.2s;
  opacity: 0.64;
}

.preloader__atmosphere span:nth-child(3) {
  left: 64%;
  top: -8%;
  animation-delay: -1.1s;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.82), rgba(34, 242, 195, 0.5));
}

.preloader__atmosphere span:nth-child(4) {
  left: 78%;
  top: -12%;
  animation-delay: -3.1s;
  opacity: 0.58;
}

.preloader__atmosphere span:nth-child(5) {
  left: 49%;
  top: -16%;
  animation-delay: -4s;
  opacity: 0.5;
}

.preloader__content {
  position: relative;
  width: min(100%, 27rem);
  padding: clamp(1.1rem, 4vw, 1.35rem);
  border: 1px solid rgba(154, 167, 184, 0.13);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(16, 23, 34, 0.36), rgba(6, 8, 13, 0.28));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.preloader__brand {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  color: var(--color-text);
  font-family: var(--font-display);
  font-weight: 800;
}

.preloader__logo {
  width: 2.35rem;
  height: 2.35rem;
  filter: drop-shadow(0 0 18px rgba(34, 242, 195, 0.32));
}

.preloader__title {
  margin: 2rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 6.4vw, 3.55rem);
  line-height: 0.98;
}

.preloader__text {
  margin: 0.9rem 0 0;
  max-width: 23rem;
  color: var(--color-text-muted);
}

.preloader__status {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  margin-top: 1.5rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(34, 242, 195, 0.18);
  border-radius: var(--radius-pill);
  background: rgba(16, 23, 34, 0.78);
  color: var(--color-text);
  font-size: var(--font-size-body-sm);
  font-weight: 700;
}

.preloader__dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--color-primary);
}

.preloader__bar {
  height: 0.38rem;
  margin: 1.4rem 0 0;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-pill);
  background: #17202e;
}

.preloader__bar span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: var(--gradient-brand);
  transition: width 180ms ease;
}

.preloader__percent {
  display: block;
  margin: 0.55rem 0 0;
  color: var(--color-text-muted);
  font-family: var(--font-ui);
  font-size: var(--font-size-caption);
  text-align: right;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1rem;
  width: min(calc(100% - 2rem), 1240px);
  margin: 1rem auto 0;
  padding: 0.7rem;
  border: 1px solid rgba(154, 167, 184, 0.12);
  border-radius: var(--radius-pill);
  background: rgba(6, 8, 13, 0.78);
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  transition:
    border-color var(--duration-base) ease,
    background var(--duration-base) ease,
    transform var(--duration-base) ease;
}

.site-header.is-scrolled {
  border-color: rgba(34, 242, 195, 0.18);
  background: rgba(6, 8, 13, 0.9);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  width: fit-content;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 800;
}

.brand__icon {
  width: 2rem;
  height: 2rem;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 1.3rem;
  color: var(--color-text-muted);
  font-size: var(--font-size-body-sm);
  font-weight: 700;
}

.site-nav a {
  transition: color var(--duration-base) ease;
}

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

.header-cta {
  display: none;
}

.nav-toggle {
  display: inline-grid;
  place-items: center;
  gap: 0.2rem;
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 50%;
  background: var(--color-surface-soft);
}

.nav-toggle span {
  width: 1.1rem;
  height: 2px;
  border-radius: var(--radius-pill);
  background: var(--color-text);
  transition:
    transform var(--duration-base) ease,
    opacity var(--duration-base) ease;
}

.nav-toggle.is-open span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.nav-toggle.is-open span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.hero {
  min-height: 100svh;
  padding: var(--space-hero-y) 0 clamp(4rem, 7vw, 6rem);
  background:
    radial-gradient(circle at 14% 16%, rgba(34, 242, 195, 0.12), transparent 28%),
    radial-gradient(circle at 86% 22%, rgba(36, 107, 253, 0.17), transparent 30%),
    radial-gradient(circle at 72% 86%, rgba(139, 92, 246, 0.13), transparent 32%),
    linear-gradient(180deg, #070910 0%, var(--color-bg) 100%);
}

.hero__bg-grid {
  position: absolute;
  inset: 0;
  z-index: -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: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.72), transparent 84%);
}

.hero-crystals {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.58;
  mix-blend-mode: screen;
}

.hero__ambient {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.72;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.24), #000 28%, #000 74%, rgba(0, 0, 0, 0.18));
}

.hero__ambient::before {
  content: "";
  position: absolute;
  width: min(78vw, 46rem);
  aspect-ratio: 1;
  top: 10%;
  right: 6%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(34, 242, 195, 0.13), transparent 24%),
    conic-gradient(from 140deg, transparent 0deg, rgba(34, 242, 195, 0.22) 42deg, transparent 92deg, rgba(36, 107, 253, 0.2) 160deg, transparent 228deg, rgba(139, 92, 246, 0.18) 286deg, transparent 360deg);
  filter: blur(0.2px);
  transform: rotate(0deg);
  animation: ambientRotate 28s linear infinite;
}

.hero__ambient::after {
  content: "";
  position: absolute;
  width: min(70vw, 42rem);
  height: 18rem;
  right: -4rem;
  top: 20%;
  background:
    linear-gradient(90deg, transparent, rgba(34, 242, 195, 0.09), transparent),
    repeating-linear-gradient(90deg, transparent 0 48px, rgba(34, 242, 195, 0.08) 49px, transparent 50px);
  transform: skewY(-10deg);
  filter: blur(1px);
  animation: ambientSweep 8s var(--ease-in-out, ease-in-out) infinite alternate;
}

.ambient-node,
.ambient-line {
  position: absolute;
  display: block;
}

.ambient-node {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow:
    0 0 18px rgba(34, 242, 195, 0.7),
    0 0 42px rgba(36, 107, 253, 0.28);
  animation: ambientFloat 6.5s ease-in-out infinite;
}

.ambient-node--one {
  top: 22%;
  right: 35%;
}

.ambient-node--two {
  top: 56%;
  right: 9%;
  background: var(--color-secondary);
  animation-delay: -1.8s;
}

.ambient-node--three {
  top: 74%;
  right: 28%;
  background: var(--color-accent-violet);
  animation-delay: -3.2s;
}

.ambient-line {
  width: 22rem;
  max-width: 54vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 242, 195, 0.28), transparent);
  transform-origin: center;
  animation: ambientLine 7s ease-in-out infinite;
}

.ambient-line--one {
  top: 34%;
  right: 5%;
  transform: rotate(-18deg);
}

.ambient-line--two {
  top: 66%;
  right: 18%;
  transform: rotate(12deg);
  animation-delay: -2.4s;
}

.hero__container {
  display: grid;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: center;
}

.hero__content {
  max-width: 760px;
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--font-size-h1);
  line-height: var(--line-height-display);
  letter-spacing: 0;
}

.hero__lead {
  max-width: 650px;
  margin: 1.45rem 0 0;
  color: var(--color-text-muted);
  font-size: var(--font-size-body-lg);
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 2rem;
}

.hero__proof {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
  margin-top: 2rem;
}

.hero__proof div {
  padding: 1rem;
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-md);
  background: rgba(16, 23, 34, 0.54);
}

.hero__proof strong {
  display: block;
  font-family: var(--font-ui);
  font-size: 1.05rem;
}

.hero__proof span {
  display: block;
  margin-top: 0.2rem;
  color: var(--color-text-soft);
  font-size: var(--font-size-caption);
}

.hero__visual,
.simulator-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
}

.signal-orbit {
  position: absolute;
  width: min(78vw, 460px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    conic-gradient(from 130deg, transparent 0deg, rgba(34, 242, 195, 0.8) 36deg, transparent 74deg, rgba(36, 107, 253, 0.8) 138deg, transparent 178deg, rgba(139, 92, 246, 0.7) 240deg, transparent 310deg);
  opacity: 0.38;
  animation: rotate 14s linear infinite;
}

.signal-orbit::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: var(--color-bg);
}

.bot-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 31rem);
  overflow: hidden;
  border: 1px solid rgba(154, 167, 184, 0.16);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 32%),
    var(--gradient-surface);
  box-shadow: var(--shadow-card);
}

.bot-panel--large {
  width: min(100%, 37rem);
}

.bot-panel__top {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  min-height: 3.1rem;
  padding: 0 1rem;
  border-bottom: 1px solid rgba(154, 167, 184, 0.14);
  color: var(--color-text-soft);
  font-size: var(--font-size-body-sm);
}

.window-dots {
  display: flex;
  gap: 0.45rem;
}

.window-dots span {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
}

.window-dots span:nth-child(1) { background: var(--color-error); }
.window-dots span:nth-child(2) { background: var(--color-warning); }
.window-dots span:nth-child(3) { background: var(--color-success); }

.bot-panel__body {
  padding: clamp(1rem, 3vw, 1.35rem);
}

.progress-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--color-text-soft);
  font-size: var(--font-size-body-sm);
}

.progress-row strong {
  color: var(--color-text-muted);
  font-family: var(--font-ui);
  font-size: var(--font-size-caption);
}

.progress-track {
  height: 0.38rem;
  margin-top: 0.75rem;
  overflow: hidden;
  border-radius: var(--radius-pill);
  background: #17202e;
}

.progress-track span {
  display: block;
  width: 28%;
  height: 100%;
  border-radius: inherit;
  background: var(--gradient-brand);
  transition: width 520ms var(--ease-out);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 1.2rem;
}

.stat-card {
  min-width: 0;
  padding: 1rem 0.55rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.035);
  text-align: center;
}

.stat-card strong {
  display: block;
  color: var(--color-success);
  font-family: var(--font-ui);
  font-size: clamp(1.25rem, 5vw, 1.6rem);
  line-height: 1;
}

.stat-card strong.is-error {
  color: var(--color-error);
}

.stat-card strong.is-warning {
  color: var(--color-warning);
}

.stat-card span {
  display: block;
  margin-top: 0.35rem;
  color: var(--color-text-soft);
  font-size: var(--font-size-caption);
}

.bot-log {
  display: grid;
  gap: 0.5rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.bot-log li {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: center;
  gap: 0.6rem;
  min-height: 2.25rem;
  padding: 0 0.72rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.026);
}

.bot-log li.is-active {
  border: 1px solid rgba(36, 107, 253, 0.42);
  background: rgba(36, 107, 253, 0.11);
}

.bot-log time {
  color: var(--color-text-soft);
  font-family: var(--font-ui);
  font-size: var(--font-size-caption);
}

.bot-log span {
  overflow: hidden;
  color: var(--color-text);
  font-size: var(--font-size-body-sm);
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.log-mark {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
}

.log-mark.is-success {
  background: var(--color-success);
}

.log-mark.is-warning {
  background: var(--color-warning);
}

.log-mark.is-error {
  background: var(--color-error);
}

.log-mark.is-running {
  border: 1px solid var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(36, 107, 253, 0.14);
  animation: blink 900ms infinite alternate;
}

.split-layout,
.simulator-layout,
.faq-layout {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.pain-list {
  display: grid;
  gap: 0.8rem;
}

.pain-list article {
  padding: 1.25rem;
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-lg);
  background: rgba(16, 23, 34, 0.54);
}

.pain-list span,
.feature-card__number,
.tutorial-step span,
.plan-card__tag {
  color: var(--color-primary);
  font-family: var(--font-ui);
  font-size: var(--font-size-caption);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pain-list h3,
.feature-card h3,
.plan-card h3,
.tutorial-step h3 {
  margin: 0.5rem 0 0;
  font-family: var(--font-display);
  font-size: var(--font-size-h3);
  line-height: var(--line-height-heading);
}

.pain-list p,
.feature-card p,
.plan-card p,
.metric-card p,
.tutorial-step p,
.site-footer p {
  margin: 0.7rem 0 0;
  color: var(--color-text-muted);
}

.flow-grid,
.metrics-grid,
.plans-grid {
  display: grid;
  gap: 1rem;
}

.feature-card,
.metric-card,
.plan-card {
  position: relative;
  padding: clamp(1.1rem, 3vw, 1.6rem);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
    rgba(16, 23, 34, 0.72);
  box-shadow: 0 10px 38px rgba(0, 0, 0, 0.18);
}

.feature-card::after,
.metric-card::after,
.plan-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(circle at 28% 0%, rgba(34, 242, 195, 0.12), transparent 34%);
}

.simulator-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 30%, rgba(34, 242, 195, 0.09), transparent 28%),
    radial-gradient(circle at 84% 70%, rgba(139, 92, 246, 0.1), transparent 30%),
    var(--color-bg);
}

.simulator-controls {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.automation-path {
  position: absolute;
  inset: -4rem;
  pointer-events: none;
  opacity: 0.6;
}

.automation-path span {
  position: absolute;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 28px rgba(34, 242, 195, 0.55);
  animation: floatNode 5s ease-in-out infinite;
}

.automation-path span:nth-child(1) {
  left: 10%;
  top: 18%;
}

.automation-path span:nth-child(2) {
  right: 7%;
  top: 35%;
  animation-delay: 700ms;
  background: var(--color-secondary);
}

.automation-path span:nth-child(3) {
  left: 22%;
  bottom: 8%;
  animation-delay: 1300ms;
  background: var(--color-accent-violet);
}

.metric-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.7rem);
  line-height: 1;
}

.metric-card span {
  display: block;
  margin-top: 0.55rem;
  color: var(--color-primary);
  font-weight: 800;
}

.plan-card {
  display: flex;
  flex-direction: column;
}

.plan-card--featured {
  border-color: rgba(34, 242, 195, 0.34);
  box-shadow:
    var(--shadow-card),
    0 0 44px rgba(34, 242, 195, 0.12);
}

.plan-card__price {
  display: block;
  margin: 1.2rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 4.2rem);
  line-height: 1;
}

.plan-card__price small {
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-size: 1rem;
}

.plan-card ul {
  display: grid;
  gap: 0.65rem;
  margin: 1.5rem 0;
  padding: 0;
  list-style: none;
}

.plan-card li {
  display: flex;
  gap: 0.6rem;
  color: var(--color-text-muted);
}

.plan-card li::before {
  content: "";
  flex: 0 0 0.5rem;
  width: 0.5rem;
  height: 0.5rem;
  margin-top: 0.55rem;
  border-radius: 50%;
  background: var(--color-primary);
}

.plan-card .button {
  margin-top: auto;
}

.tutorial-tabs {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scrollbar-width: none;
}

.tutorial-tabs::-webkit-scrollbar {
  display: none;
}

.tutorial-tabs button {
  flex: 0 0 auto;
  min-height: 2.6rem;
  padding: 0 1rem;
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-pill);
  background: rgba(16, 23, 34, 0.72);
  color: var(--color-text-muted);
  font-size: var(--font-size-body-sm);
  font-weight: 800;
  transition:
    color var(--duration-base) ease,
    border-color var(--duration-base) ease,
    background var(--duration-base) ease;
}

.tutorial-tabs button.is-active {
  border-color: rgba(34, 242, 195, 0.42);
  color: var(--color-text);
  background: rgba(34, 242, 195, 0.1);
}

.tutorial-grid {
  display: grid;
  gap: 1rem;
}

.tutorial-step {
  display: none;
  gap: 1rem;
  align-items: center;
  padding: 0.8rem;
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-lg);
  background: rgba(16, 23, 34, 0.72);
}

.tutorial-step.is-active {
  display: grid;
}

.tutorial-step video {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 50% 42%, rgba(34, 242, 195, 0.12), transparent 32%),
    linear-gradient(180deg, #0d111a 0%, #06080d 100%);
  object-fit: cover;
}

.tutorial-step div {
  padding: 0.4rem;
}

.proof-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 24%, rgba(34, 242, 195, 0.1), transparent 30%),
    radial-gradient(circle at 82% 52%, rgba(36, 107, 253, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(16, 23, 34, 0.38), rgba(6, 8, 13, 0.22)),
    var(--color-bg-soft);
}

.proof-showcase {
  display: grid;
  gap: 1rem;
}

.proof-stack {
  display: grid;
  gap: 1rem;
}

.proof-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent),
    rgba(16, 23, 34, 0.76);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.26);
}

.proof-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(circle at 18% 0%, rgba(34, 242, 195, 0.13), transparent 34%);
}

.proof-card--video {
  min-height: 100%;
}

.proof-media {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border-soft);
  background:
    radial-gradient(circle at 50% 42%, rgba(34, 242, 195, 0.12), transparent 32%),
    linear-gradient(180deg, #0d111a 0%, #06080d 100%);
}

.proof-media video,
.proof-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof-media--video {
  aspect-ratio: 16 / 10;
}

.proof-media--button {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  padding: 0;
  color: inherit;
  background: transparent;
  cursor: zoom-in;
}

.proof-media--phone {
  aspect-ratio: 16 / 10;
}

.proof-media--phone img {
  object-fit: cover;
  object-position: top center;
}

.proof-live-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(34, 242, 195, 0.28);
  border-radius: var(--radius-pill);
  background: rgba(6, 8, 13, 0.78);
  color: var(--color-text);
  font-size: var(--font-size-caption);
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.proof-live-badge i {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 0 0 rgba(34, 242, 195, 0.52);
  animation: pulse 1.9s infinite;
}

.proof-card__body {
  position: relative;
  z-index: 1;
  padding: clamp(1.1rem, 3vw, 1.6rem);
}

.proof-card__label {
  color: var(--color-primary);
  font-family: var(--font-ui);
  font-size: var(--font-size-caption);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.proof-card h3 {
  margin: 0.55rem 0 0;
  font-family: var(--font-display);
  font-size: var(--font-size-h3);
  line-height: var(--line-height-heading);
}

.proof-card p {
  margin: 0.7rem 0 0;
  color: var(--color-text-muted);
}

.proof-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 2.5rem);
  background: rgba(3, 5, 9, 0.86);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-base) ease;
  backdrop-filter: blur(14px);
}

.proof-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.proof-lightbox img {
  width: min(100%, 1100px);
  max-height: 86vh;
  border: 1px solid rgba(154, 167, 184, 0.2);
  border-radius: var(--radius-lg);
  object-fit: contain;
  box-shadow: var(--shadow-modal);
}

.proof-lightbox__close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 1;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(154, 167, 184, 0.18);
  border-radius: 50%;
  background: rgba(16, 23, 34, 0.92);
  color: var(--color-text);
  font-size: 1.6rem;
  line-height: 1;
}

body.is-lightbox-open {
  overflow: hidden;
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

.faq-item {
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-md);
  background: rgba(16, 23, 34, 0.62);
  overflow: hidden;
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  min-height: 4rem;
  padding: 1rem;
  color: var(--color-text);
  background: transparent;
  font-weight: 800;
  text-align: left;
}

.faq-item button span {
  position: relative;
  flex: 0 0 1rem;
  width: 1rem;
  height: 1rem;
}

.faq-item button span::before,
.faq-item button span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.85rem;
  height: 2px;
  border-radius: var(--radius-pill);
  background: var(--color-primary);
  transform: translate(-50%, -50%);
}

.faq-item button span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: opacity var(--duration-base) ease;
}

.faq-item.is-open button span::after {
  opacity: 0;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--duration-slow) var(--ease-out);
}

.faq-answer > p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--color-text-muted);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer > p {
  padding: 0 1rem 1rem;
}

.site-footer {
  padding: clamp(2.8rem, 6vw, 4.8rem) 0 clamp(1.6rem, 4vw, 2.4rem);
  border-top: 1px solid var(--color-border-soft);
  background:
    radial-gradient(circle at 12% 0%, rgba(34, 242, 195, 0.08), transparent 32%),
    radial-gradient(circle at 88% 12%, rgba(139, 92, 246, 0.12), transparent 34%),
    #05070b;
}

.footer-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  flex-wrap: wrap;
}

.footer-layout > div {
  flex: 1 1 18rem;
  min-width: min(100%, 18rem);
  max-width: 31rem;
}

.brand--footer {
  width: fit-content;
  margin-bottom: 0.9rem;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 24rem;
  gap: 0.7rem 1.15rem;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(154, 167, 184, 0.1);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.025);
  color: var(--color-text-muted);
  font-weight: 700;
}

.footer-links a {
  white-space: nowrap;
  transition: color var(--duration-fast) ease, transform var(--duration-fast) ease;
}

.footer-links a:hover {
  color: var(--color-text);
  transform: translateY(-1px);
}

.site-footer .button {
  flex: 0 0 auto;
  width: auto;
  min-width: 8rem;
}

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: clamp(1.5rem, 4vw, 2.5rem);
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border-soft);
}

.footer-bottom p {
  margin: 0;
  color: var(--color-text-soft);
  font-size: var(--font-size-caption);
  line-height: 1.55;
}

.footer-bottom p:first-child {
  flex: 0 0 auto;
}

.footer-bottom p:last-child {
  max-width: 44rem;
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 680ms var(--ease-out),
    transform 680ms var(--ease-out);
}

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

.reveal--late {
  transition-delay: 120ms;
}

@keyframes siteCrystalFall {
  0% {
    opacity: 0;
    transform: translate3d(-0.8rem, -12vh, 0) rotate(45deg) scale(0.72);
  }
  12% {
    opacity: 0.64;
  }
  58% {
    opacity: 0.34;
  }
  100% {
    opacity: 0;
    transform: translate3d(1.8rem, 112vh, 0) rotate(225deg) scale(1.08);
  }
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 10px rgba(34, 242, 195, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 242, 195, 0);
  }
}

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

@keyframes blink {
  from {
    opacity: 0.45;
  }
  to {
    opacity: 1;
  }
}

@keyframes floatNode {
  50% {
    transform: translate3d(0, -18px, 0);
  }
}

@keyframes preloaderCrystal {
  0% {
    transform: translate3d(0, -10vh, 0) rotate(45deg);
    opacity: 0;
  }
  18% {
    opacity: 0.78;
  }
  100% {
    transform: translate3d(1.8rem, 112vh, 0) rotate(225deg);
    opacity: 0;
  }
}

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

@keyframes ambientSweep {
  from {
    opacity: 0.38;
    transform: translate3d(-1rem, 0, 0) skewY(-10deg);
  }
  to {
    opacity: 0.72;
    transform: translate3d(1.5rem, 0.8rem, 0) skewY(-10deg);
  }
}

@keyframes ambientFloat {
  50% {
    transform: translate3d(0.8rem, -1.1rem, 0);
  }
}

@keyframes ambientLine {
  50% {
    opacity: 0.42;
    filter: drop-shadow(0 0 12px rgba(34, 242, 195, 0.28));
  }
}

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

  .site-crystals {
    opacity: 0.42;
  }

  .site-crystals span {
    animation-duration: var(--crystal-duration, 18s) !important;
    animation-iteration-count: infinite !important;
  }
}

@media (min-width: 560px) {
  .hero__actions,
  .simulator-controls {
    flex-direction: row;
    flex-wrap: wrap;
  }

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

  .tutorial-step {
    grid-template-columns: minmax(0, 1.08fr) minmax(15rem, 0.92fr);
    padding: 1rem;
  }
}

@media (min-width: 820px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .site-nav {
    display: flex;
    justify-content: center;
  }

  .header-cta {
    display: inline-flex;
  }

  .nav-toggle {
    display: none;
  }

  .hero__container {
    grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.82fr);
  }

  .split-layout,
  .simulator-layout,
  .faq-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

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

  .proof-showcase {
    grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
    align-items: stretch;
  }

  .proof-stack {
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  .proof-card--video .proof-media--video {
    aspect-ratio: 16 / 11;
  }

  .plans-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    max-width: 880px;
  }

}

@media (max-width: 819px) {
  .site-header {
    border-radius: var(--radius-xl);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    display: grid;
    gap: 0.15rem;
    padding: 0.65rem;
    border: 1px solid rgba(154, 167, 184, 0.12);
    border-radius: var(--radius-lg);
    background: rgba(6, 8, 13, 0.96);
    box-shadow: var(--shadow-card);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity var(--duration-base) ease,
      transform var(--duration-base) ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 0.85rem;
    border-radius: var(--radius-sm);
  }

  .site-nav a:hover {
    background: rgba(255, 255, 255, 0.04);
  }

  .footer-layout {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-layout > div {
    max-width: 36rem;
  }

  .brand--footer {
    margin-inline: auto;
  }

  .footer-links {
    width: min(100%, 42rem);
    flex: initial;
    justify-content: center;
    border-radius: var(--radius-lg);
  }

  .site-footer .button {
    justify-self: center;
  }

  .footer-bottom {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .footer-bottom p:first-child,
  .footer-bottom p:last-child {
    max-width: 46rem;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .site-header {
    width: min(calc(100% - 1rem), 1240px);
    margin-top: 0.5rem;
  }

  .hero {
    min-height: auto;
    padding-top: 6.7rem;
  }

  .button {
    width: 100%;
  }

  .site-footer {
    padding-bottom: 1.5rem;
  }

  .footer-layout {
    gap: 1.2rem;
  }

  .footer-layout > div {
    min-width: 0;
  }

  .footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    width: 100%;
    padding: 0.8rem;
  }

  .footer-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 2.55rem;
    padding: 0.55rem 0.35rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.03);
    white-space: normal;
  }

  .site-footer .button {
    width: 100%;
  }

  .footer-bottom {
    gap: 0.8rem;
    margin-top: 1.4rem;
  }

  .footer-bottom p {
    font-size: 0.74rem;
  }

  .bot-panel__top {
    font-size: 0.75rem;
  }

  .bot-log li {
    gap: 0.45rem;
    padding-inline: 0.55rem;
  }

  .bot-log time {
    font-size: 0.66rem;
  }

  .bot-log span {
    font-size: 0.78rem;
  }

  .stat-grid {
    gap: 0.45rem;
  }

  .stat-card {
    padding-inline: 0.3rem;
  }

  .proof-media--button,
  .proof-media--video,
  .proof-media--phone {
    aspect-ratio: 4 / 3;
  }

  .proof-live-badge {
    left: 0.75rem;
    bottom: 0.75rem;
  }

  .preloader__status {
    font-size: 0.78rem;
  }

  .hero__ambient {
    opacity: 0.45;
  }

  .hero-crystals {
    opacity: 0.42;
  }

  .hero__ambient::before {
    width: 34rem;
    right: -17rem;
    top: 8rem;
  }

  .hero__ambient::after,
  .ambient-line {
    display: none;
  }
}
