:root {
  --background-deep: #020203;
  --background-base: #050506;
  --background-elevated: #0a0a0c;
  --surface: rgba(255, 255, 255, 0.05);
  --surface-hover: rgba(255, 255, 255, 0.08);
  --foreground: #edecef;
  --foreground-muted: #999999;
  --foreground-subtle: rgba(255, 255, 255, 0.6);
  --accent: #6867f7;
  --accent-bright: #7b7af9;
  --accent-glow: rgba(104, 103, 247, 0.32);
  --border-default: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.1);
  --border-accent: rgba(104, 103, 247, 0.32);
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --radius-card: 16px;
  --radius-sm: 10px;
  --container: min(1200px, calc(100% - 48px));
  --header-offset: clamp(74px, 8vw, 88px);
}

[data-theme="light"] {
  --background-deep: #e8edf8;
  --background-base: #f5f8ff;
  --background-elevated: #ffffff;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-hover: rgba(255, 255, 255, 1);
  --foreground: #11162a;
  --foreground-muted: #3c4561;
  --foreground-subtle: rgba(17, 22, 42, 0.72);
  --accent: #6867f7;
  --accent-bright: #7b7af9;
  --accent-glow: rgba(104, 103, 247, 0.22);
  --border-default: rgba(37, 46, 82, 0.14);
  --border-hover: rgba(37, 46, 82, 0.24);
  --border-accent: rgba(104, 103, 247, 0.36);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family:
    "Inter", "Geist Sans", "PingFang SC", "Microsoft YaHei", system-ui,
    sans-serif;
  color: var(--foreground);
  background: var(--background-base);
  line-height: 1.6;
  overflow-x: hidden;
}

[data-theme="light"] body {
  background: radial-gradient(
    ellipse at top,
    #eef3ff 0%,
    #f5f8ff 58%,
    #e8edf8 100%
  );
}

a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}

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

.noise,
.grid-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -5;
}
.noise {
  opacity: 0.015;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}
.grid-bg {
  opacity: 0.025;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
}

body::before,
body::after {
  content: "";
  position: fixed;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(130px);
  z-index: -4;
  display: none;
}
body::before {
  width: min(60vw, 980px);
  height: 1300px;
  top: -250px;
  left: 10%;
  background: radial-gradient(
    circle at center,
    rgba(104, 103, 247, 0.24),
    transparent 72%
  );
  animation: float 10s ease-in-out infinite;
}
body::after {
  width: 760px;
  height: 860px;
  right: -220px;
  top: 24%;
  background: radial-gradient(
    circle at center,
    rgba(104, 114, 217, 0.16),
    transparent 74%
  );
  animation: float 9s ease-in-out infinite;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

i.fa-solid,
i.fa-regular,
i.fa-brands {
  line-height: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid transparent;
  transition: all 280ms var(--ease-expo);
}
.site-header.is-scrolled {
  border-bottom-color: var(--border-default);
  background: rgba(5, 5, 6, 0.78);
  backdrop-filter: blur(20px);
}
[data-theme="light"] .site-header.is-scrolled {
  background: rgba(248, 249, 252, 0.86);
}
.nav-grid {
  min-height: 74px;
  display: grid;
  gap: 14px;
  align-items: center;
}
.nav-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.logo-mark {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid rgba(104, 103, 247, 0.72);
  background: var(--accent);
  box-shadow: none;
}
.logo-mark-icon {
  font-size: 16px;
  line-height: 1;
  color: #fff;
}
.logo-mark-icon.fa-solid {
  font-weight: 900 !important;
}
.logo-text {
  letter-spacing: 0.01em;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--border-default);
  color: var(--foreground);
  background: rgba(255, 255, 255, 0.04);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.menu-icon {
  width: 20px;
  height: 20px;
}
.menu-icon-close {
  display: none;
}
.menu-toggle[aria-expanded="true"] .menu-icon-open {
  display: none;
}
.menu-toggle[aria-expanded="true"] .menu-icon-close {
  display: inline;
}

.nav--center,
.header-actions {
  display: none;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--border-default);
  border-bottom: 1px solid var(--border-default);
  background: rgba(5, 5, 6, 0.95);
  backdrop-filter: blur(16px);
}
[data-theme="light"] .mobile-nav {
  background: rgba(248, 249, 252, 0.96);
}
.mobile-nav:not([hidden]) {
  display: flex;
}
.mobile-nav a:not(.btn) {
  color: var(--foreground-muted);
  border-radius: 8px;
  padding: 8px 6px;
}
.mobile-nav a:not(.btn):hover {
  color: var(--foreground);
  background: rgba(255, 255, 255, 0.05);
}
[data-theme="light"] .mobile-nav a:not(.btn):hover {
  background: rgba(104, 103, 247, 0.08);
}

.btn {
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  border-radius: 10px;
  padding: 0 14px;
  font-size: 0.88rem;
  font-weight: 600;
  transition:
    transform 240ms var(--ease-expo),
    background-color 240ms var(--ease-expo),
    box-shadow 240ms var(--ease-expo),
    border-color 240ms var(--ease-expo),
    color 240ms var(--ease-expo);
}
.btn:focus-visible {
  outline: 2px solid rgba(104, 103, 247, 0.56);
  outline-offset: 2px;
}
.btn-primary {
  color: #fff;
  background: var(--accent);
  border: 1px solid rgba(104, 103, 247, 0.62);
  box-shadow:
    0 0 0 1px rgba(104, 103, 247, 0.5),
    0 4px 12px rgba(104, 103, 247, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.btn-primary:hover {
  background: var(--accent-bright);
  transform: translateY(-1px);
}
.btn-ghost {
  border: 1px solid var(--border-default);
  color: var(--foreground);
  background: rgba(255, 255, 255, 0.05);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.09);
}
[data-theme="light"] .btn-ghost {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(49, 58, 97, 0.2);
  color: #1e2745;
}
[data-theme="light"] .btn-ghost:hover {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(49, 58, 97, 0.28);
}
.btn-outline {
  border: 1px solid var(--border-hover);
  background: transparent;
  color: var(--foreground);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
}
[data-theme="light"] .btn-outline:hover {
  background: rgba(104, 103, 247, 0.08);
}
.btn-sm {
  min-height: 34px;
  border-radius: 8px;
  font-size: 0.8rem;
}
.btn-lg {
  min-height: 44px;
  border-radius: 10px;
  font-size: 0.9rem;
  padding: 0 30px;
}
.btn-block {
  width: 100%;
}

.hero--marketing {
  position: relative;
  padding: var(--header-offset) 0 clamp(44px, 8vw, 80px);
  min-height: clamp(640px, 95vh, 940px);
  border-bottom: 1px solid var(--border-default);
  background: linear-gradient(180deg, #0d1023 0%, #06070e 36%, #020203 100%);
  overflow: hidden;
}
[data-theme="light"] .hero--marketing {
  background: radial-gradient(130% 130% at 50% 92%, #ffffff 46%, #aeb6ff 100%);
}
[data-theme="light"] .hero-bg__video {
  display: none;
}
[data-theme="light"] .hero-bg__jelly {
  opacity: 0.34;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  transition: opacity 240ms var(--ease-expo);
}
.hero--video-fallback .hero-bg::before {
  opacity: 1;
}
[data-theme="dark"] .hero--video-fallback .hero-bg::before {
  background-image: radial-gradient(circle at center 86%, #c4b5fd 0%, rgba(196, 181, 253, 0.42) 28%, rgba(196, 181, 253, 0) 66%);
}
.hero-bg__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.46;
  filter: saturate(1.2) contrast(1.1);
}
.hero--video-fallback .hero-bg__video {
  opacity: 0;
}
.hero-bg__jelly {
  position: absolute;
  left: -8%;
  top: -4%;
  width: min(96vw, 1160px);
  height: min(64vh, 620px);
  opacity: 0.52;
  overflow-x: hidden;
  background: rgba(104, 103, 247, 0.45);
  filter: blur(220px);
  transform: rotate(-30deg);
  animation: jellyDrift 10s ease-in-out infinite alternate;
}
.hero-bg__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(2, 2, 3, 0.3) 0%,
    rgba(2, 2, 3, 0.58) 62%,
    rgba(2, 2, 3, 0.8) 100%
  );
}
[data-theme="light"] .hero-bg__scrim {
  background: linear-gradient(
    to bottom,
    rgba(248, 250, 255, 0.12) 0%,
    rgba(242, 246, 255, 0.58) 62%,
    rgba(233, 238, 250, 0.94) 100%
  );
}
.hero-stage {
  position: relative;
  z-index: 3;
}
.hero-copy {
  max-width: 980px;
  margin-inline: auto;
  text-align: center;
}
.hero-kicker {
  margin: 0 auto 14px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(104, 103, 247, 0.42);
  background: rgba(104, 103, 247, 0.14);
  color: #dddafe;
  font-size: 0.78rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.hero-kicker i {
  color: #9e9bff;
  font-size: 0.72rem;
}
[data-theme="light"] .hero-kicker {
  border-color: rgba(104, 103, 247, 0.32);
  background: rgba(104, 103, 247, 0.1);
  color: #4b57a0;
}
[data-theme="light"] .hero-kicker i {
  color: #656fd2;
}
.hero-title--center {
  margin: 0 auto 18px;
  max-width: 20ch;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.3;
  letter-spacing: -0.03em;
  font-weight: 600;
  background: linear-gradient(100deg, #ffffff 0%, #c9c7ff 28%, #8a86ff 56%, #6867f7 78%, #4f4df1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
[data-theme="light"] .hero-title--center {
  background: linear-gradient(102deg, #3e47a8 0%, #555fe0 34%, #6867f7 62%, #7a78fb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: 0 8px 24px rgba(104, 103, 247, 0.16);
}
.hero-accent {
  color: inherit;
  text-shadow: none;
}
.hero-sub--center {
  margin: 0 auto;
  max-width: 60ch;
  color: var(--foreground-muted);
  font-size: clamp(1rem, 2.3vw, 1.2rem);
  line-height: 1.75;
}
.tag-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.tag-list li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  border: 1px solid var(--border-default);
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.82rem;
  color: var(--foreground-subtle);
}
.hero-cta--center {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-cta__primary-wrap {
  padding: 1px;
  border-radius: 11px;
  background: linear-gradient(to bottom, rgba(104, 103, 247, 0.3), transparent);
}
.btn-hero-primary,
.btn-hero-secondary {
  border-radius: 10px;
}
.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.06);
}
[data-theme="light"] .btn-hero-secondary {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(49, 58, 97, 0.2);
}

.btn-hero-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.btn-hero-icon i {
  font-size: 0.88rem;
  line-height: 1;
  color: inherit;
}
.btn-hero-icon i.fa-play {
  margin-left: 2px;
}
.btn-hero-secondary .btn-hero-icon i {
  color: inherit;
}
.btn-sm .btn-hero-icon i {
  font-size: 0.78rem;
}
[data-theme="light"] .btn-hero-secondary .btn-hero-icon i {
  color: inherit;
}
[data-theme="light"] .btn-primary .btn-hero-icon i {
  color: inherit;
}

.hero-showcase {
  width: min(1040px, 100%);
  margin: 46px auto 0;
  position: relative;
  padding: 0 10px 26px;
  overflow: hidden;
}

.hero-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  background: linear-gradient(
    to bottom,
    rgba(2, 2, 3, 0) 0%,
    rgba(2, 2, 3, 0) 34%,
    var(--background-base) 100%
  );
}
[data-theme="light"] .hero-showcase::after {
  background: linear-gradient(
    to bottom,
    rgba(248, 250, 255, 0) 0%,
    rgba(248, 250, 255, 0) 42%,
    #e8edf8 100%
  );
}

.hero-showcase-shot {
  position: relative;
  z-index: 1;
  max-width: min(980px, 100%);
  margin: 0 auto;
  padding: 16px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 9, 18, 0.78);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 22px 56px rgba(0, 0, 0, 0.46),
    0 10px 30px rgba(10, 13, 34, 0.35);
}
[data-theme="light"] .hero-showcase-shot {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(71, 82, 141, 0.1);
  box-shadow:
    0 0 0 1px rgba(71, 82, 141, 0.05),
    0 10px 24px rgba(63, 74, 125, 0.1);
}

.hero-showcase-shot img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 15 / 8;
  object-fit: cover;
  object-position: top center;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
[data-theme="light"] .hero-showcase-shot img {
  border-color: rgba(71, 82, 141, 0.12);
}

.hero-metrics {
  padding: 22px 0 16px;
}
[data-theme="light"] .hero--marketing {
  border-bottom: 0;
}
[data-theme="light"] .hero-metrics {
  background: none;
  border-top: 1px solid var(--border-default);
  border-bottom: 1px solid var(--border-default);
}
.hero-metrics__grid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}
.hero-metrics__card {
  min-height: 104px;
  padding: 10px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: transparent;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.035);
}
.hero-metrics__card:first-child {
  border-left: 0;
}
.hero-metrics__card strong {
  font-size: clamp(1.7rem, 2.4vw, 2.4rem);
  line-height: 1;
  font-weight: 700;
  color: var(--accent);
}
.hero-metrics__card span {
  margin-top: 8px;
  color: var(--foreground-subtle);
  font-size: 0.82rem;
}
.hero-metrics__card em {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 20px;
  padding: 0 12px;
  font-style: normal;
  color: #bfc3ff;
  font-size: 0.76rem;
  line-height: 1;
  border: 1px solid rgba(104, 103, 247, 0.26);
  border-radius: 999px;
  background: rgba(104, 103, 247, 0.08);
}
[data-theme="light"] .hero-metrics__card {
  border-left-color: rgba(37, 46, 82, 0.08);
}
[data-theme="light"] .hero-metrics__card strong {
  color: #565dd7;
}
[data-theme="light"] .hero-metrics__card span {
  color: rgba(42, 50, 87, 0.88);
}
[data-theme="light"] .hero-metrics__card em {
  color: #5560b6;
  border-color: rgba(104, 103, 247, 0.24);
  background: rgba(104, 103, 247, 0.1);
}
.section {
  padding: clamp(72px, 10vw, 118px) 0;
  border-top: 1px solid var(--border-default);
}
.section-alt {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    transparent 30%
  );
}
#features {
  background:
    radial-gradient(
      110% 85% at 50% 0%,
      rgba(104, 103, 247, 0.14) 0%,
      rgba(104, 103, 247, 0.06) 32%,
      transparent 68%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.01) 0%,
      transparent 100%
    );
}
#cases,
#customers,
#testimonials {
  background:
    radial-gradient(
      110% 85% at 50% 0%,
      rgba(104, 103, 247, 0.14) 0%,
      rgba(104, 103, 247, 0.06) 32%,
      transparent 68%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.01) 0%,
      transparent 100%
    );
}
[data-theme="light"] #features {
  background:
    radial-gradient(
      110% 85% at 50% 0%,
      rgba(104, 103, 247, 0.16) 0%,
      rgba(104, 103, 247, 0.07) 30%,
      transparent 66%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 100%);
}
[data-theme="light"] #cases,
[data-theme="light"] #customers,
[data-theme="light"] #testimonials {
  background:
    radial-gradient(
      110% 85% at 50% 0%,
      rgba(104, 103, 247, 0.16) 0%,
      rgba(104, 103, 247, 0.07) 30%,
      transparent 66%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 100%);
}
.section-head {
  margin-bottom: 30px;
  max-width: 760px;
}
.section-title {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3.7vw, 3rem);
  line-height: 1.16;
  letter-spacing: -0.02em;
}
.section-lead {
  margin: 0;
  color: var(--foreground-muted);
}

.feature-list,
.tech-list,
.service-grid,
.case-list,
.quote-list,
.customer-rows {
  list-style: none;
  margin: 0;
  padding: 0;
}
.feature-list,
.tech-list,
.service-grid,
.case-list,
.quote-list,
.pricing-grid,
.faq-list {
  display: grid;
  gap: 24px 22px;
}
@media (min-width: 720px) {
  .feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 960px) {
  .service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .tech-list,
  .case-list,
  .quote-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.feature-row,
.tech-item,
.service-card,
.case-card,
.quote-card,
.price-card,
.faq-item,
.customer-directory,
.network-map {
  position: relative;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-card);
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.045),
    rgba(255, 255, 255, 0.012)
  );
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.02),
    0 1px 8px rgba(0, 0, 0, 0.2),
    0 0 12px rgba(0, 0, 0, 0.07);
}
[data-theme="light"] .feature-row,
[data-theme="light"] .tech-item,
[data-theme="light"] .service-card,
[data-theme="light"] .case-card,
[data-theme="light"] .quote-card,
[data-theme="light"] .price-card,
[data-theme="light"] .faq-item,
[data-theme="light"] .customer-directory,
[data-theme="light"] .network-map {
  border-color: rgba(37, 46, 82, 0.07);
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.98),
    rgba(246, 248, 255, 0.96)
  );
  box-shadow:
    0 0 0 1px rgba(23, 32, 64, 0.05),
    0 6px 16px rgba(35, 44, 80, 0.08);
}
.feature-row:hover,
.tech-item:hover,
.service-card:hover,
.case-card:hover,
.quote-card:hover,
.price-card:hover,
.faq-item:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.075);
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.075),
    rgba(255, 255, 255, 0.024)
  );
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.045),
    0 3px 14px rgba(0, 0, 0, 0.24),
    0 0 20px rgba(104, 103, 247, 0.035);
}
[data-theme="light"] .feature-row:hover,
[data-theme="light"] .tech-item:hover,
[data-theme="light"] .service-card:hover,
[data-theme="light"] .case-card:hover,
[data-theme="light"] .quote-card:hover,
[data-theme="light"] .price-card:hover,
[data-theme="light"] .faq-item:hover {
  border-color: rgba(55, 66, 108, 0.1);
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 1),
    rgba(244, 247, 255, 0.98)
  );
  box-shadow:
    0 0 0 1px rgba(23, 32, 64, 0.06),
    0 8px 20px rgba(35, 44, 80, 0.1);
}

.feature-row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  padding: 22px 24px;
  overflow: hidden;
  transition:
    transform 240ms var(--ease-expo),
    border-color 240ms var(--ease-expo),
    box-shadow 240ms var(--ease-expo),
    background-color 240ms var(--ease-expo);
}
.feature-row > * {
  position: relative;
  z-index: 1;
}
.feature-row__head {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.feature-row__head h3 {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-size: 1.15rem;
  line-height: 1.35;
  font-weight: 600;
}
.feature-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.feature-icon i {
  color: var(--accent);
  font-size: 1.05rem;
}
[data-theme="light"] .feature-icon {
  border-color: rgba(104, 103, 247, 0.34);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(238, 242, 255, 0.95) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 4px 10px rgba(104, 103, 247, 0.12);
}
[data-theme="light"] .feature-icon i {
  color: #616be0;
}
.feature-body {
  min-width: 0;
}
.feature-body p {
  margin: 0;
  max-width: none;
  line-height: 1.7;
}
.feature-row .feature-body p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  line-height: 1.7;
  min-height: calc(1.7em * 3);
}
.feature-row .mini-list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
  padding-top: 2px;
  justify-items: initial;
  align-content: initial;
}
.feature-row .mini-list li {
  width: 100%;
  min-height: 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  justify-content: flex-start;
  white-space: normal;
  text-align: left;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  color: var(--foreground-subtle);
  box-shadow: none;
}
.feature-row .mini-list li::before {
  content: "";
  width: 5px;
  height: 5px;
  margin-top: 0.55em;
  flex-shrink: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
}
.feature-row:hover .mini-list li {
  border-color: transparent;
  background: transparent;
  color: var(--foreground-subtle);
}
[data-theme="light"] .feature-row .mini-list li {
  border: 0;
  background: transparent;
  color: rgba(47, 56, 96, 0.82);
}
[data-theme="light"] .feature-row .mini-list li::before {
  background: rgba(37, 46, 82, 0.38);
}
[data-theme="light"] .feature-row:hover .mini-list li {
  color: rgba(47, 56, 96, 0.82);
}
.feature-body p,
.mini-list,
.tech-item span,
.service-card p,
.case-card p,
.price-note,
.price-features,
.quote-card > p,
.faq-item p,
.customer-row__tags {
  color: var(--foreground-muted);
}
.mini-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 4px 0 0;
  list-style: none;
  font-size: 0.82rem;
  align-content: center;
  justify-items: start;
}
.mini-list li {
  width: 100%;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: var(--foreground-subtle);
  padding: 0 12px;
  white-space: nowrap;
  text-align: center;
}
[data-theme="light"] .mini-list li {
  border-color: rgba(37, 46, 82, 0.1);
  background: rgba(104, 103, 247, 0.05);
  color: rgba(47, 56, 96, 0.86);
}

.tech-item,
.case-card,
.quote-card,
.price-card {
  padding: 22px;
  transition:
    transform 240ms var(--ease-expo),
    border-color 240ms var(--ease-expo),
    box-shadow 240ms var(--ease-expo);
}
.tech-item i.fa-solid,
.tech-item i.fa-regular,
.tech-item i.fa-brands {
  font-size: 1.15rem;
  color: var(--accent);
}
.tech-item strong {
  display: block;
  margin: 10px 0 6px;
  font-size: 1.08rem;
}

.service-card {
  padding: 28px 22px 24px;
  text-align: center;
  transition:
    transform 240ms var(--ease-expo),
    border-color 240ms var(--ease-expo),
    box-shadow 240ms var(--ease-expo);
}
.service-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}
[data-theme="light"] .service-icon {
  border-color: rgba(104, 103, 247, 0.34);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(238, 242, 255, 0.95) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 4px 10px rgba(104, 103, 247, 0.12);
}
.service-icon i {
  color: var(--accent);
  font-size: 1.2rem;
}
[data-theme="light"] .service-icon i {
  color: #616be0;
}
.service-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}
.service-card p {
  margin: 0 auto;
  max-width: 30ch;
}
.service-points {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--foreground-muted);
}
.service-points li {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  line-height: 1;
  letter-spacing: 0.01em;
  color: rgba(239, 241, 255, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition:
    border-color 220ms var(--ease-expo),
    background-color 220ms var(--ease-expo),
    color 220ms var(--ease-expo),
    transform 220ms var(--ease-expo),
    box-shadow 220ms var(--ease-expo);
}
.service-card:hover .service-points li {
  border-color: rgba(104, 103, 247, 0.34);
  background: rgba(104, 103, 247, 0.12);
  color: var(--accent);
}
[data-theme="light"] .service-points li {
  border-color: rgba(37, 46, 82, 0.11);
  background: rgba(104, 103, 247, 0.08);
  color: rgba(47, 56, 96, 0.9);
}
[data-theme="light"] .service-points li:hover {
  border-color: rgba(104, 103, 247, 0.34);
  background: rgba(104, 103, 247, 0.16);
  color: #2f3a72;
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 4px 10px rgba(104, 103, 247, 0.12);
}

@media (min-width: 640px) and (max-width: 959px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.network-map {
  padding: 10px;
}
.network-map__world-image {
  opacity: 0.86;
}
.network-node {
  fill: #9aa5f9;
}
.network-node--pulse {
  fill: transparent;
  stroke: rgba(154, 165, 249, 0.8);
  stroke-width: 1.2;
  animation: nodePulse 2.2s ease-out infinite;
}
.network-metrics {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--border-default);
}
.network-metric {
  text-align: center;
  padding: 12px 8px;
  border-right: 1px solid var(--border-default);
}
.network-metric:last-child {
  border-right: 0;
}
.network-metric dt {
  color: var(--foreground-subtle);
  font-size: 0.78rem;
}
.network-metric dd {
  margin: 6px 0 0;
  font-size: 1.3rem;
  font-weight: 600;
}

.case-top {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  margin-bottom: auto;
  pointer-events: none;
}
.case-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: absolute;
  top: 12px;
  left: 0px;
  z-index: 3;
  border: 1px solid rgba(134, 140, 255, 0.72);
  border-radius: 999px;
  padding: 5px 12px;
  color: #eef0ff;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  background: linear-gradient(
    180deg,
    rgba(122, 128, 255, 0.28) 0%,
    rgba(93, 100, 225, 0.16) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 0 1px rgba(104, 103, 247, 0.3),
    0 6px 18px rgba(33, 38, 108, 0.36);
}
.case-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #aeb3ff;
  box-shadow: 0 0 10px rgba(174, 179, 255, 0.9);
}
[data-theme="light"] .case-badge {
  border-color: rgba(92, 101, 224, 0.42);
  color: #353e8a;
  background: linear-gradient(
    180deg,
    rgba(104, 103, 247, 0.18) 0%,
    rgba(104, 103, 247, 0.1) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    0 2px 10px rgba(104, 103, 247, 0.16);
}
[data-theme="light"] .case-badge::before {
  background: #7a80f7;
  box-shadow: 0 0 8px rgba(122, 128, 247, 0.42);
}
.case-card h3 {
  margin: 14px 0 8px;
  font-size: 1.1rem;
}
.case-card {
  min-height: 380px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.case-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(10, 12, 20, 0.28) 0%,
      rgba(9, 11, 17, 0.74) 68%,
      rgba(8, 10, 15, 0.82) 100%
    );
  pointer-events: none;
  z-index: 1;
}
[data-theme="light"] .case-card::before {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.04) 0%,
      rgba(247, 250, 255, 0.1) 72%,
      rgba(241, 246, 255, 0.14) 100%
    );
}
[data-theme="light"] .case-card {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(37, 46, 82, 0.07);
}
.case-card > * {
  position: relative;
  z-index: 2;
}
.case-card h3,
.case-card p {
  max-width: 100%;
}
.case-card p {
  margin: 0;
}
.case-link {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--foreground-muted);
  font-size: 0.7rem;
  text-decoration: none;
  padding: 5px 15px;
  border-radius: 999px;
  border: 1px solid var(--border-default);
  background: rgba(255, 255, 255, 0.03);
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    background-color 200ms ease,
    color 200ms ease;
}
.case-link i {
  font-size: 0.7rem;
  color: var(--foreground-subtle);
}
.case-link:hover {
  transform: translateX(2px);
  color: var(--foreground);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}
.case-link:hover i {
  color: var(--foreground);
}
.case-stats {
  list-style: none;
  margin: 14px 0 0;
  padding: 12px 0 0;
  display: grid;
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.case-stats li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 30px;
}
.case-stats span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--foreground-subtle);
  font-size: 0.74rem;
  line-height: 1.25;
}
.case-stats span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(200, 205, 255, 0.55);
  flex: 0 0 auto;
}
.case-stats strong {
  display: inline-block;
  margin: 0;
  font-size: 12px;
  line-height: 0.96;
  letter-spacing: 0.01em;
  color: #f5f6ff;
}
[data-theme="light"] .case-stats {
  border-top-color: rgba(37, 46, 82, 0.12);
}
[data-theme="light"] .case-stats span {
  color: rgba(47, 56, 96, 0.72);
}
[data-theme="light"] .case-stats span::before {
  background: rgba(104, 103, 247, 0.5);
}
[data-theme="light"] .case-stats strong {
  color: #1e2554;
}

.quote-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.quote-icon {
  font-size: 0.95rem;
  opacity: 0.92;
}
.quote-card > p {
  margin: 0;
  line-height: 1.72;
  min-height: 6.2em;
}
.quote-meta {
  margin-top: auto;
  display: grid;
  grid-template-columns: 45px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--border-default);
}
.avatar-img {
  width: 45px;
  height: 45px;
  border-radius: 999px;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 6px 14px rgba(0, 0, 0, 0.32);
}
.quote-meta strong {
  display: block;
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
}
.quote-meta span {
  display: block;
  margin-top: 4px;
  color: var(--foreground-subtle);
  font-size: 0.82rem;
  line-height: 1.4;
}
[data-theme="light"] .avatar-img {
  border-color: rgba(37, 46, 82, 0.18);
  box-shadow:
    0 0 0 1px rgba(37, 46, 82, 0.08),
    0 8px 16px rgba(35, 44, 80, 0.14);
}
@media (max-width: 760px) {
  .case-card {
    min-height: 348px;
  }
  .quote-meta {
    grid-template-columns: 45px minmax(0, 1fr);
    gap: 10px;
  }
  .avatar-img {
    width: 45px;
    height: 45px;
  }
  .quote-meta span {
    font-size: 0.78rem;
  }
}

.customer-directory {
  overflow: hidden;
}
.customer-filters {
  padding: 14px;
  border-bottom: 1px solid var(--border-default);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.customer-filter {
  min-height: 32px;
  border: 1px solid var(--border-default);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--foreground-muted);
  font-size: 0.8rem;
  cursor: pointer;
}
.customer-filter.is-active {
  color: #fff;
  border-color: rgba(104, 103, 247, 0.62);
  background: rgba(104, 103, 247, 0.22);
}
.customer-row {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) minmax(180px, 1fr) auto;
  gap: 14px;
  align-items: center;
  border-top: 1px solid var(--border-default);
  padding: 14px;
}
.customer-row__name {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.customer-row__name i {
  color: var(--accent);
}
.customer-row__action {
  color: #d0d5fa;
  font-size: 0.88rem;
}
.customer-row__action i {
  color: var(--accent);
}

.core-advantages {
  position: relative;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-card);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.008));
  overflow: hidden;
  min-height: 640px;
}
.core-advantages__content {
  padding: 30px 30px 22px;
  max-width: 620px;
  position: relative;
  z-index: 2;
}
.core-advantages__headline {
  margin: 0;
  color: var(--foreground-muted);
  font-size: clamp(1.05rem, 1.9vw, 1.35rem);
  line-height: 1.5;
}
.core-advantages__headline strong {
  color: var(--foreground);
  font-weight: 600;
}
.core-advantages__metrics {
  margin: 26px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 26px;
}
.core-advantages__metrics div {
  padding-left: 16px;
  border-left: 1px solid var(--border-default);
}
.core-advantages__metrics dt {
  margin: 0;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  line-height: 1.1;
  font-weight: 600;
  color: var(--accent);
}
.core-advantages__metrics dd {
  margin: 6px 0 0;
  color: var(--foreground-subtle);
  font-size: 0.85rem;
}
.core-advantages__visual {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 390px;
  z-index: 1;
}
.core-advantages__curve {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.core-advantages__grid line {
  stroke: rgba(255, 255, 255, 0.06);
  stroke-width: 1;
  stroke-linecap: round;
  stroke-dasharray: 0.1 4.5;
}
.core-advantages__area {
  fill: url(#coreAreaGradient);
}
.core-advantages__line {
  fill: none;
  stroke: rgba(144, 150, 255, 0.98);
  stroke-width: 1.25;
  stroke-linecap: round;
  filter: drop-shadow(0 0 8px rgba(104, 103, 247, 0.4));
}

.team-grid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 24px 22px;
}
@media (min-width: 760px) {
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1080px) {
  .team-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.team-card {
  border: 1px solid var(--border-default);
  border-radius: var(--radius-card);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012));
  padding: 20px 18px;
  min-height: 182px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 240ms var(--ease-expo), border-color 240ms var(--ease-expo), box-shadow 240ms var(--ease-expo);
}
.team-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.09);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}
.team-card__avatar {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  object-fit: cover;
}
.team-card h3 {
  margin: 0;
  font-size: 1.2rem;
}
.team-card p {
  margin: 4px 0 0;
  color: var(--foreground-muted);
  font-size: 0.88rem;
}
.team-card__tag {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  border: 1px solid rgba(124, 130, 255, 0.42);
  border-radius: 999px;
  padding: 0 14px;
  color: #e8eaff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.01em;
  background: linear-gradient(
    180deg,
    rgba(104, 103, 247, 0.2) 0%,
    rgba(104, 103, 247, 0.09) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 4px 12px rgba(30, 35, 105, 0.28);
}
[data-theme="light"] .core-advantages {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.98), rgba(247, 249, 255, 0.94));
  border-color: rgba(37, 46, 82, 0.12);
}
[data-theme="light"] .core-advantages__grid line {
  stroke: rgba(37, 46, 82, 0.1);
}
[data-theme="light"] .core-advantages__area {
  fill: rgba(104, 103, 247, 0.22);
}
[data-theme="light"] .core-advantages__line {
  stroke: rgba(86, 93, 214, 0.84);
  filter: none;
}
[data-theme="light"] .team-card {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.98), rgba(246, 248, 255, 0.96));
  border-color: rgba(37, 46, 82, 0.06);
}
[data-theme="light"] .team-card:hover {
  border-color: rgba(104, 103, 247, 0.18);
  box-shadow: 0 6px 16px rgba(35, 44, 80, 0.1);
}
[data-theme="light"] .team-card__avatar {
  border-color: rgba(37, 46, 82, 0.14);
}
[data-theme="light"] .team-card__tag {
  border-color: rgba(104, 103, 247, 0.28);
  color: #384191;
  background: linear-gradient(
    180deg,
    rgba(104, 103, 247, 0.14) 0%,
    rgba(104, 103, 247, 0.06) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.66),
    0 3px 10px rgba(104, 103, 247, 0.12);
}
@media (max-width: 760px) {
  .core-advantages {
    min-height: 540px;
  }
  .core-advantages__content {
    padding: 22px 18px 18px;
  }
  .core-advantages__metrics {
    gap: 14px;
  }
  .core-advantages__visual {
    height: 300px;
  }
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.price-card h3 {
  margin: 0;
}
.price-tag {
  margin: 0;
  font-size: 2rem;
  font-weight: 600;
}
.price-tag .currency {
  font-size: 1rem;
  vertical-align: super;
  margin-right: 4px;
  color: var(--foreground-muted);
}
.price-tag .suffix {
  font-size: 0.84rem;
  color: var(--foreground-subtle);
  margin-left: 4px;
}
.price-features {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 8px 0 14px;
}
.price-features i {
  color: var(--accent);
}
.price-features .muted {
  color: var(--accent);
  opacity: 0.45;
}
.price-ribbon {
  position: absolute;
  right: 16px;
  top: 16px;
  border-radius: 999px;
  padding: 4px 10px;
  background: rgba(104, 103, 247, 0.24);
  border: 1px solid rgba(104, 103, 247, 0.48);
  font-size: 0.72rem;
}
.price-card-featured {
  border-color: rgba(126, 125, 250, 0.68);
  background: linear-gradient(180deg, #7572fb 0%, #6867f7 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 14px 34px rgba(26, 22, 98, 0.42);
}
.price-card-featured h3,
.price-card-featured .price-tag,
.price-card-featured .price-note,
.price-card-featured .price-features li {
  color: #fff;
}
.price-card-featured .price-tag .currency,
.price-card-featured .price-tag .suffix {
  color: rgba(255, 255, 255, 0.9);
}
.price-card-featured .price-features i {
  color: #fff;
}
.price-card-featured .price-ribbon {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}
.price-card-featured .btn-primary {
  background: #f4f5ff;
  border-color: #f4f5ff;
  color: #5f5ef2;
  box-shadow: none;
}
.price-card-featured .btn-primary:hover {
  background: #ffffff;
  border-color: #ffffff;
}
[data-theme="light"] #pricing .price-card:not(.price-card-featured) {
  background: #fdfefe;
  border-color: rgba(37, 46, 82, 0.1);
}
[data-theme="light"] #pricing .price-card:not(.price-card-featured):hover {
  border-color: rgba(55, 66, 108, 0.14);
  background: #ffffff;
}
[data-theme="light"] .price-card-featured {
  border-color: rgba(126, 125, 250, 0.68);
  background: linear-gradient(180deg, #7572fb 0%, #6867f7 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 14px 34px rgba(26, 22, 98, 0.42);
}
[data-theme="light"] .price-card-featured h3,
[data-theme="light"] .price-card-featured .price-tag,
[data-theme="light"] .price-card-featured .price-note,
[data-theme="light"] .price-card-featured .price-features li,
[data-theme="light"] .price-card-featured .price-features i {
  color: #fff;
}
[data-theme="light"] .price-card-featured .price-tag .currency,
[data-theme="light"] .price-card-featured .price-tag .suffix {
  color: rgba(255, 255, 255, 0.9);
}
[data-theme="light"] .price-card-featured .price-ribbon {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}
[data-theme="light"] .price-card-featured .btn-primary {
  background: #f4f5ff;
  border-color: #f4f5ff;
  color: #5f5ef2;
}
[data-theme="light"] .price-card-featured .btn-primary:hover {
  background: #ffffff;
  border-color: #ffffff;
}
[data-theme="light"] #pricing .price-card-featured:hover {
  background: #ffffff;
  border-color: rgba(55, 66, 108, 0.14);
  box-shadow:
    0 0 0 1px rgba(23, 32, 64, 0.06),
    0 8px 20px rgba(35, 44, 80, 0.1);
}
[data-theme="light"] #pricing .price-card-featured:hover h3,
[data-theme="light"] #pricing .price-card-featured:hover .price-tag,
[data-theme="light"] #pricing .price-card-featured:hover .price-note,
[data-theme="light"] #pricing .price-card-featured:hover .price-features li {
  color: var(--foreground);
}
[data-theme="light"] #pricing .price-card-featured:hover .price-tag .currency,
[data-theme="light"] #pricing .price-card-featured:hover .price-tag .suffix {
  color: var(--foreground-muted);
}
[data-theme="light"] #pricing .price-card-featured:hover .price-features i {
  color: var(--accent);
}
[data-theme="light"] #pricing .price-card-featured:hover .price-ribbon {
  background: rgba(104, 103, 247, 0.1);
  border-color: rgba(104, 103, 247, 0.24);
  color: #4a57a1;
}
[data-theme="light"] #pricing .price-card-featured:hover .btn-primary {
  background: var(--accent);
  border-color: rgba(104, 103, 247, 0.62);
  color: #fff;
}

#faq .container-narrow {
  width: var(--container);
  display: block;
}
#faq .section-head {
  margin-bottom: 20px;
}
.faq-item {
  padding: 8px 16px 14px;
  transition:
    transform 240ms var(--ease-expo),
    border-color 240ms var(--ease-expo),
    box-shadow 240ms var(--ease-expo);
}
.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 10px 0;
  font-weight: 600;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-chevron {
  transition: transform 240ms var(--ease-expo);
}
.quote-icon,
.faq-chevron {
  color: var(--accent);
}
.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}
.faq-item p {
  margin: 0;
}

.cta-band {
  border-top: 1px solid var(--border-default);
  padding: clamp(60px, 8vw, 100px) 0;
}
.cta-inner {
  display: flex;
  justify-content: center;
}
.cta-actions {
  width: min(900px, 100%);
  text-align: center;
}
.cta-title {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  background: linear-gradient(to bottom, #fff, rgba(255, 255, 255, 0.75));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
[data-theme="light"] .cta-title {
  background: linear-gradient(100deg, #4e57c8 0%, #6867f7 58%, #7a78fb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cta-sub {
  margin: 14px auto 0;
  color: var(--foreground-muted);
  max-width: 60ch;
}
.cta-action-row {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer {
  border-top: 1px solid var(--border-default);
  padding: 48px 0 30px;
  background: var(--background-deep);
}
[data-theme="light"] .site-footer {
  background: #eef1f8;
}
.footer-grid {
  display: grid;
  gap: 22px;
}
@media (min-width: 860px) {
  .footer-grid {
    grid-template-columns: 2fr repeat(3, 1fr);
  }
}
.footer-tag,
.footer-col ul,
.footer-bottom {
  color: var(--foreground-subtle);
}
.footer-heading {
  display: block;
  margin-bottom: 10px;
  color: var(--foreground-muted);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 7px;
}
.footer-bottom {
  border-top: 1px solid var(--border-default);
  margin-top: 24px;
  padding-top: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 16px;
  font-size: 0.78rem;
}
.footer-build {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.theme-toggle {
  min-width: 34px;
  padding: 0;
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 600ms var(--ease-expo),
    transform 600ms var(--ease-expo);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 980px) {
  .nav-grid {
    grid-template-columns: auto 1fr auto;
  }
  .menu-toggle {
    display: none;
  }
  .nav--center {
    display: inline-flex;
    justify-content: center;
    gap: clamp(14px, 2vw, 28px);
    font-size: 0.9rem;
    color: var(--foreground-muted);
  }
  .nav--center a:hover {
    color: var(--foreground);
  }
  .header-actions {
    display: inline-flex;
    gap: 8px;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100%, calc(100% - 30px));
  }
  .hero-cta--center {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    align-items: stretch;
  }
  .hero-cta__primary-wrap {
    width: 100%;
    display: flex;
  }
  .hero-cta--center .btn {
    width: 100%;
    min-height: 42px;
    padding: 0 14px;
  }
  .hero-cta__primary-wrap .btn {
    flex: 1 1 auto;
  }
  .cta-action-row {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    align-items: stretch;
  }
  .cta-action-row .hero-cta__primary-wrap {
    width: 100%;
    display: flex;
  }
  .cta-action-row .btn {
    width: 100%;
    min-height: 46px;
    padding: 0 12px;
    justify-content: center;
  }
  .cta-action-row .hero-cta__primary-wrap .btn {
    flex: 1 1 auto;
  }
  .hero-showcase {
    margin-top: 34px;
    padding-bottom: 8px;
  }
  .hero-metrics {
    padding: 16px 0 12px;
  }
  .hero-metrics__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }
  .hero-metrics__card {
    min-height: 92px;
    padding: 12px 10px;
    border-left: 0;
  }
  .hero-metrics__card:nth-child(even) {
    border-left: 1px solid rgba(255, 255, 255, 0.035);
  }
  .hero-metrics__card span {
    font-size: 0.76rem;
  }
  .hero-metrics__card em {
    min-height: 20px;
    padding: 0 12px;
    font-size: 0.7rem;
  }
  [data-theme="light"] .hero-metrics__card:nth-child(even) {
    border-left-color: rgba(37, 46, 82, 0.08);
  }
  .feature-row {
    padding: 20px 18px;
  }
  .feature-row__head {
    gap: 12px;
  }
  .feature-row__head h3 {
    font-size: 1.05rem;
  }
  .feature-icon {
    width: 44px;
    height: 44px;
  }
  .feature-row .mini-list li {
    min-height: 0;
    padding: 0;
    font-size: 0.8rem;
  }
  .customer-row {
    grid-template-columns: 1fr;
  }
  #faq .container-narrow {
    width: min(100%, calc(100% - 30px));
    grid-template-columns: 1fr;
  }
  .network-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .network-metric:nth-child(2n) {
    border-right: 0;
  }
  .network-metric {
    border-bottom: 1px solid var(--border-default);
  }
  .network-metric:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

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

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(1deg);
  }
}
@keyframes nodePulse {
  0% {
    r: 3;
    opacity: 0.72;
  }
  100% {
    r: 11;
    opacity: 0;
  }
}
@keyframes jellyDrift {
  0% {
    transform: rotate(-30deg) translate3d(0, 0, 0);
    opacity: 0.46;
  }
  100% {
    transform: rotate(-24deg) translate3d(4%, 3%, 0);
    opacity: 0.58;
  }
}
@keyframes scanLine {
  0% {
    background-position:
      0 0,
      0 -120%;
    opacity: 0.25;
  }
  40% {
    opacity: 0.5;
  }
  100% {
    background-position:
      0 0,
      0 140%;
    opacity: 0.25;
  }
}
