:root {
  color-scheme: dark;
  --bg: #050608;
  --bg-2: #090b10;
  --bg-3: #0f131b;
  --card: #10141d;
  --card-2: #151a25;
  --line: rgba(255, 255, 255, 0.075);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #eef4ff;
  --muted: #8993a6;
  --dim: #535b6b;
  --blue: #2f7df4;
  --cyan: #34d6f4;
  --green: #35d18d;
  --amber: #f5a524;
  --purple: #9b8cff;
  --red: #ff6978;
  --shadow: rgba(0, 0, 0, 0.36);
  --radius: 8px;
  --max: 1180px;
  --font: Sora, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(180deg, #07080c 0%, var(--bg) 48%, #070b10 100%);
  background-size: 54px 54px, 54px 54px, auto;
  color: var(--text);
  font-family: var(--font);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(118deg, rgba(47, 125, 244, 0.14), transparent 34%),
    linear-gradient(242deg, rgba(52, 214, 244, 0.08), transparent 36%),
    linear-gradient(180deg, transparent, rgba(53, 209, 141, 0.045));
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.026) 0, rgba(255, 255, 255, 0.026) 1px, transparent 1px, transparent 4px);
  opacity: 0.26;
  pointer-events: none;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.landing-preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(47, 125, 244, 0.16), transparent 34%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    var(--bg);
  background-size: auto, 42px 42px, 42px 42px, auto;
  visibility: visible;
  transition: opacity 920ms ease, visibility 0s linear 920ms;
}

.landing-preloader::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 44%, rgba(47, 125, 244, 0.18), transparent 25%),
    linear-gradient(110deg, transparent 0 24%, rgba(47, 125, 244, 0.12) 24.2%, transparent 24.8% 62%, rgba(52, 214, 244, 0.1) 62.2%, transparent 62.8%);
  mask-image: linear-gradient(180deg, #000, transparent 88%);
  pointer-events: none;
}

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

.landing-preloader.hidden .preloader-inner {
  opacity: 0;
  transform: translateY(-14px) scale(1.035);
}

.preloader-inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 16px;
  width: min(88vw, 560px);
  padding: clamp(28px, 5vw, 54px);
  transition: opacity 680ms ease, transform 680ms ease;
}

.preloader-inner img {
  width: clamp(92px, 10vw, 132px);
  height: clamp(92px, 10vw, 132px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  object-fit: contain;
  padding: 7px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 0 34px rgba(47, 125, 244, 0.28);
  animation: preLogo 820ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.preloader-inner strong {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 900;
  letter-spacing: 0.18em;
  animation: preText 820ms cubic-bezier(0.22, 1, 0.36, 1) 120ms both;
}

.preloader-inner small {
  color: var(--muted);
  font-family: var(--mono);
  font-size: clamp(11px, 1.3vw, 14px);
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: preText 820ms cubic-bezier(0.22, 1, 0.36, 1) 220ms both;
}

.preloader-inner span {
  width: min(100%, 420px);
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--line);
  box-shadow: 0 0 24px rgba(52, 214, 244, 0.14);
}

.preloader-inner span::before {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--green));
  animation: prebar 2800ms cubic-bezier(0.18, 0.72, 0.18, 1) forwards;
  will-change: width;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 6, 8, 0.68);
  padding: 0 clamp(14px, 4vw, 48px);
  backdrop-filter: blur(18px) saturate(1.3);
  transition: background 180ms ease, border-color 180ms ease;
}

body.landing-loading {
  overflow: hidden;
}

body.landing-loading .site-nav,
body.landing-loading main,
body.landing-loading .site-footer {
  opacity: 0;
}

body.landing-loaded .site-nav,
body.landing-loaded main,
body.landing-loaded .site-footer {
  opacity: 1;
  transition: opacity 720ms ease;
}

body.landing-loaded .hero .fade-up {
  opacity: 1;
  transform: translateY(0);
}

.site-nav.scrolled {
  border-color: rgba(47, 125, 244, 0.22);
  background: rgba(5, 6, 8, 0.88);
}

.nav-brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.nav-brand img,
.footer-brand img {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(47, 125, 244, 0.3);
  border-radius: var(--radius);
  object-fit: contain;
  padding: 4px;
  background: rgba(255, 255, 255, 0.04);
}

.nav-brand b,
.footer-brand b {
  color: var(--cyan);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.8vw, 22px);
}

.nav-links a,
.landing-lang-toggle {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  transition: color 140ms ease, border-color 140ms ease, background 140ms ease, transform 140ms ease;
}

.nav-links a:hover,
.landing-lang-toggle:hover {
  color: var(--text);
}

.landing-lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  border: 1px solid rgba(52, 214, 244, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  font-family: inherit;
  padding: 7px 10px;
  cursor: pointer;
}

.landing-lang-toggle:hover {
  border-color: rgba(52, 214, 244, 0.38);
  background: rgba(52, 214, 244, 0.1);
  transform: translateY(-1px);
}

.nav-links .nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  border: 1px solid rgba(47, 125, 244, 0.38);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(47, 125, 244, 0.96), rgba(52, 214, 244, 0.74));
  color: #fff;
  padding: 8px 14px;
  box-shadow: 0 12px 28px rgba(47, 125, 244, 0.18);
}

.nav-links .nav-seller {
  border-color: rgba(53, 209, 141, 0.34);
  background:
    linear-gradient(135deg, rgba(53, 209, 141, 0.18), rgba(52, 214, 244, 0.1)),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 12px 28px rgba(53, 209, 141, 0.1);
}

.nav-links .nav-seller:hover {
  border-color: rgba(53, 209, 141, 0.54);
  background:
    linear-gradient(135deg, rgba(53, 209, 141, 0.26), rgba(52, 214, 244, 0.16)),
    rgba(255, 255, 255, 0.045);
}

.nav-links .nav-cta:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100svh;
  overflow: hidden;
  padding: 118px 18px 56px;
  text-align: center;
}

.hero > .status-chip {
  position: absolute;
  top: 12px;
  left: clamp(10px, 1.2vw, 18px);
  z-index: 3;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 62px 0 0;
  background:
    linear-gradient(110deg, transparent 0 18%, rgba(47, 125, 244, 0.1) 18.2%, transparent 18.7% 54%, rgba(52, 214, 244, 0.08) 54.2%, transparent 54.7%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 28%, rgba(47, 125, 244, 0.05));
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 82%, transparent);
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-mark {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
  opacity: 0.065;
  pointer-events: none;
}

.hero-mark img {
  width: min(58vw, 520px);
  filter: grayscale(1);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  max-width: 870px;
}

.status-chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  overflow: hidden;
  border: 1px solid rgba(52, 214, 244, 0.2);
  border-radius: var(--radius);
  background: rgba(10, 15, 24, 0.72);
  padding: 9px 16px;
  text-align: left;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 18px 48px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.status-chip::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -72%;
  width: 52%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  animation: chipSweep 3600ms ease-in-out infinite;
}

.status-chip i {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: rgba(53, 209, 141, 0.12);
  color: var(--green);
  font-size: 16px;
}

.status-chip span {
  display: grid;
  gap: 1px;
}

.status-chip strong {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-chip small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.hero h1 {
  max-width: 850px;
  margin: 28px 0 0;
  font-size: clamp(42px, 7.2vw, 76px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.03;
}

.hero h1::first-line {
  color: #fff;
}

.hero p {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 2.2vw, 18px);
  font-weight: 520;
  line-height: 1.75;
}

.hero-actions,
.console-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 11px 18px;
  font-size: 14px;
  font-weight: 850;
  transition: transform 150ms ease, border-color 150ms ease, background 150ms ease, box-shadow 150ms ease;
}

.button.primary {
  border-color: rgba(47, 125, 244, 0.54);
  background: linear-gradient(135deg, var(--blue), color-mix(in srgb, var(--cyan) 74%, var(--blue)));
  color: #fff;
  box-shadow: 0 16px 36px rgba(47, 125, 244, 0.18);
}

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

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(52, 214, 244, 0.34);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
}

.button:active {
  transform: translateY(0) scale(0.985);
}

.section {
  display: grid;
  align-content: center;
  min-height: 100svh;
  padding: 96px clamp(16px, 5vw, 64px);
}

.section-alt {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent),
    rgba(9, 11, 16, 0.78);
}

.section-head {
  max-width: 660px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-label {
  display: block;
  margin-bottom: 8px;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-head h2,
.console-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.13;
}

.section-head p,
.console-copy p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.detection-section {
  position: relative;
  overflow: hidden;
  padding-top: 96px;
  padding-bottom: 96px;
  background:
    linear-gradient(180deg, rgba(5, 6, 8, 0.92), rgba(9, 11, 16, 0.88)),
    rgba(9, 11, 16, 0.78);
}

.detection-stars {
  position: absolute;
  inset: 0;
  opacity: 0.34;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(47, 125, 244, 0.52) 0 1px, transparent 1.8px),
    radial-gradient(circle, rgba(52, 214, 244, 0.32) 0 1px, transparent 1.6px);
  background-position: 7% 24%, 78% 18%;
  background-size: 168px 138px, 230px 190px;
  mask-image: linear-gradient(180deg, #000, transparent 92%);
}

.detection-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 16%, rgba(47, 125, 244, 0.12), transparent 28%),
    radial-gradient(circle at 86% 20%, rgba(53, 209, 141, 0.08), transparent 26%);
  pointer-events: none;
}

.detection-shell,
.detection-content,
.detection-head,
.detection-process,
.detection-flow,
.detection-pills {
  position: relative;
  z-index: 1;
}

.detection-shell {
  max-width: var(--max);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent 44%),
    linear-gradient(90deg, rgba(47, 125, 244, 0.09), rgba(53, 209, 141, 0.045)),
    rgba(16, 20, 29, 0.9);
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.32);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 42px);
}

.detection-shell::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--cyan), var(--green), transparent);
}

.detection-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.detection-head h2 {
  max-width: 720px;
  margin-inline: auto;
  font-size: clamp(30px, 4.8vw, 48px);
}

.detection-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.detection-pills span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  border: 1px solid rgba(52, 214, 244, 0.18);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  padding: 7px 10px;
}

.detection-pills i {
  color: var(--cyan);
  font-size: 14px;
}

.detection-pills b {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detection-content {
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: var(--radius);
  background: rgba(5, 8, 13, 0.42);
  padding: clamp(18px, 3vw, 28px);
}

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

.detection-process .section-label {
  color: var(--cyan);
  font-size: 10px;
}

.detection-process h2 {
  font-size: clamp(22px, 3vw, 32px);
}

.detection-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px minmax(0, 1fr) 42px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  max-width: none;
  margin: 0 auto;
}

.detection-step {
  position: relative;
  display: grid;
  justify-items: center;
  min-height: 176px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent 44%),
    rgba(16, 20, 29, 0.88);
  padding: 26px 22px;
  text-align: center;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
  transition: transform 190ms ease, border-color 190ms ease, box-shadow 190ms ease;
}

.detection-step::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--cyan), transparent);
  opacity: 0;
  transition: opacity 180ms ease;
}

.detection-step:hover {
  border-color: rgba(52, 214, 244, 0.2);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.32);
  transform: translateY(-4px);
}

.detection-step:hover::before {
  opacity: 1;
}

.detection-step > i {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(52, 214, 244, 0.18);
  border-radius: var(--radius);
  background: rgba(52, 214, 244, 0.08);
  color: var(--cyan);
  font-size: 20px;
}

.step-number {
  position: absolute;
  top: 14px;
  right: 16px;
  color: rgba(47, 125, 244, 0.22);
  font-family: var(--mono);
  font-size: 30px;
  font-weight: 950;
  line-height: 1;
}

.detection-step h3 {
  margin: 28px 0 7px;
  color: #fff;
  font-size: 16px;
  font-weight: 950;
}

.detection-step p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.detection-arrow {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(52, 214, 244, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.032);
  color: var(--cyan);
  font-size: 18px;
  justify-self: center;
}

.product-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
}

.product-card,
.feature-card {
  position: relative;
  display: flex;
  min-height: 286px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 42%),
    var(--card);
  padding: 22px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
  transition: transform 190ms ease, border-color 190ms ease, box-shadow 190ms ease, background 190ms ease;
}

.product-card::before,
.feature-card::before,
.console-preview::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--cyan), transparent);
  opacity: 0;
  transition: opacity 180ms ease;
}

.product-card:hover,
.feature-card:hover,
.console-preview:hover {
  border-color: rgba(52, 214, 244, 0.2);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(47, 125, 244, 0.05);
  transform: translateY(-4px);
}

.product-card:hover::before,
.feature-card:hover::before,
.console-preview:hover::before {
  opacity: 1;
}

.product-card-featured {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.9fr) minmax(190px, auto);
  align-items: center;
  gap: 24px;
  min-height: 190px;
  border-color: rgba(47, 125, 244, 0.22);
  background:
    linear-gradient(115deg, rgba(47, 125, 244, 0.11), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    var(--card);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  border-radius: 6px;
  padding: 5px 10px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.badge span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse 2s ease-in-out infinite;
}

.badge.active {
  background: rgba(53, 209, 141, 0.1);
  color: var(--green);
}

.badge.system {
  background: rgba(245, 165, 36, 0.1);
  color: var(--amber);
}

.badge.panel {
  background: rgba(155, 140, 255, 0.11);
  color: var(--purple);
}

.product-card h3,
.feature-card h3 {
  margin: 14px 0 6px;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
}

.product-card p,
.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}

.plan-tag {
  position: relative;
  display: inline-flex;
  align-items: center;
  z-index: 1;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 750;
  cursor: default;
  transition: color 140ms ease, border-color 140ms ease, background 140ms ease, transform 140ms ease;
}

.plan-tag:hover,
.plan-tag:focus-visible {
  z-index: 5;
  border-color: rgba(52, 214, 244, 0.32);
  background: rgba(47, 125, 244, 0.13);
  color: #fff;
  transform: translateY(-1px);
}

.plan-tag:focus-visible {
  outline: 2px solid rgba(52, 214, 244, 0.5);
  outline-offset: 2px;
}

.plan-price {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 6;
  min-width: max-content;
  border: 1px solid rgba(52, 214, 244, 0.24);
  border-radius: 6px;
  background: rgba(5, 8, 13, 0.94);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.34);
  color: #fff;
  opacity: 0;
  padding: 5px 8px;
  pointer-events: none;
  transform: translate(-50%, -4px);
  transition: opacity 140ms ease, transform 140ms ease;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 900;
}

.plan-tag:hover .plan-price,
.plan-tag:focus-visible .plan-price {
  opacity: 1;
  transform: translate(-50%, 0);
}

.card-footer,
.product-price {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.product-price {
  display: grid;
  justify-items: end;
  border-top: 0;
  padding-top: 0;
}

.card-footer small,
.product-price small {
  display: block;
  margin-bottom: 2px;
  color: var(--dim);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-footer strong,
.product-price strong {
  display: block;
  color: #fff;
  font-size: 21px;
  font-weight: 950;
  line-height: 1.1;
}

.product-price strong {
  font-size: 30px;
}

.card-footer strong span,
.product-price strong span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.card-footer a,
.product-price a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border: 1px solid rgba(47, 125, 244, 0.32);
  border-radius: 7px;
  background: rgba(47, 125, 244, 0.14);
  color: #fff;
  padding: 8px 13px;
  font-size: 12px;
  font-weight: 850;
  transition: transform 140ms ease, background 140ms ease;
}

.card-footer a:hover,
.product-price a:hover {
  background: rgba(47, 125, 244, 0.25);
  transform: translateY(-1px);
}

.workflow {
  display: grid;
  grid-template-columns: 1fr 52px 1fr 52px 1fr;
  align-items: center;
  max-width: 980px;
  margin: 0 auto 18px;
}

.flow-step {
  display: grid;
  justify-items: center;
  min-height: 142px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(16, 20, 29, 0.84);
  padding: 22px 18px;
  text-align: center;
}

.flow-step i,
.feature-card > i {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(52, 214, 244, 0.18);
  border-radius: var(--radius);
  background: rgba(52, 214, 244, 0.08);
  color: var(--cyan);
  font-size: 20px;
}

.flow-step strong {
  margin-top: 12px;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
}

.flow-step span {
  color: var(--muted);
  font-size: 13px;
}

.flow-arrow {
  display: grid;
  place-items: center;
  color: var(--dim);
  font-size: 22px;
}

.feature-grid {
  margin-top: 16px;
}

.feature-card {
  min-height: 230px;
}

.feature-card:nth-child(2) > i {
  border-color: rgba(53, 209, 141, 0.18);
  background: rgba(53, 209, 141, 0.08);
  color: var(--green);
}

.feature-card:nth-child(3) > i {
  border-color: rgba(155, 140, 255, 0.18);
  background: rgba(155, 140, 255, 0.08);
  color: var(--purple);
}

.feature-card:nth-child(4) > i {
  border-color: rgba(245, 165, 36, 0.18);
  background: rgba(245, 165, 36, 0.08);
  color: var(--amber);
}

.console-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: 34px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}

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

.console-copy p {
  max-width: 480px;
}

.console-actions {
  justify-content: flex-start;
}

.console-preview {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0a0d14;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.42);
  transition: transform 190ms ease, border-color 190ms ease, box-shadow 190ms ease;
}

.preview-top {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  border-bottom: 1px solid var(--line);
  background: #07090e;
  padding: 0 14px;
}

.preview-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
}

.preview-top span:nth-child(2) {
  background: var(--amber);
}

.preview-top span:nth-child(3) {
  background: var(--green);
}

.preview-top strong {
  margin-left: 8px;
  color: var(--dim);
  font-size: 12px;
  font-weight: 800;
}

.preview-body {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  min-height: 360px;
}

.preview-body aside {
  display: grid;
  align-content: start;
  gap: 12px;
  border-right: 1px solid var(--line);
  background: #090c13;
  padding: 18px 14px;
}

.preview-body aside img {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(47, 125, 244, 0.3);
  border-radius: var(--radius);
  object-fit: contain;
  padding: 5px;
}

.preview-body aside span {
  display: block;
  width: 100%;
  height: 28px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.045);
}

.preview-body aside span.active {
  background: linear-gradient(90deg, rgba(47, 125, 244, 0.58), rgba(52, 214, 244, 0.2));
}

.preview-main {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 18px;
}

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

.preview-metrics div {
  min-height: 78px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  padding: 14px;
}

.preview-metrics small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.preview-metrics strong {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-size: 20px;
  font-weight: 950;
}

.preview-table {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.7fr;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.028);
  padding: 14px;
}

.preview-table span {
  height: 24px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.045);
}

.preview-table span:nth-child(3n + 1) {
  background: rgba(47, 125, 244, 0.16);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 920px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  margin: 56px auto 0;
}

.stat {
  display: grid;
  justify-items: center;
  gap: 4px;
  background: rgba(16, 20, 29, 0.92);
  padding: 24px 12px;
  text-align: center;
}

.stat strong {
  color: #fff;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 950;
  line-height: 1;
}

.stat span {
  color: var(--dim);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-section {
  position: relative;
  overflow: hidden;
}

.product-section::before {
  content: "";
  position: absolute;
  inset: 80px 8% auto;
  height: 320px;
  background: radial-gradient(circle, rgba(47, 125, 244, 0.12), transparent 65%);
  filter: blur(30px);
  pointer-events: none;
}

.product-grid-products {
  position: relative;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.product-showcase {
  min-height: 0;
  padding: 0;
}

.product-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(360px circle at var(--mx, 50%) var(--my, 30%), rgba(52, 214, 244, 0.12), transparent 62%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 42%);
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.product-showcase:hover::after {
  opacity: 1;
}

.product-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 360px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(47, 125, 244, 0.18), transparent 42%),
    linear-gradient(315deg, rgba(52, 214, 244, 0.12), transparent 45%),
    #090d14;
  padding: 0;
}

.product-macro .product-media {
  background:
    linear-gradient(135deg, rgba(53, 209, 141, 0.15), transparent 42%),
    linear-gradient(315deg, rgba(245, 165, 36, 0.12), transparent 45%),
    #090d14;
}

.product-media::before {
  content: "";
  position: absolute;
  inset: -30%;
  background:
    conic-gradient(from 180deg, transparent, rgba(52, 214, 244, 0.18), transparent 34%, rgba(47, 125, 244, 0.16), transparent 62%);
  animation: productAura 12s linear infinite;
  opacity: 0.62;
}

.product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, #000, transparent 82%);
}

.demo-frame {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  width: 100%;
  height: 100%;
  min-height: inherit;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: rgba(4, 7, 12, 0.82);
  box-shadow: none;
}

.demo-frame-top {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  border-bottom: 1px solid var(--line);
  background: rgba(6, 9, 15, 0.92);
  padding: 0 12px;
}

.demo-frame-top span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--red);
}

.demo-frame-top span:nth-child(2) {
  background: var(--amber);
}

.demo-frame-top span:nth-child(3) {
  background: var(--green);
}

.demo-frame-top strong {
  min-width: 0;
  overflow: hidden;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.demo-frame-top em {
  margin-left: auto;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.demo-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 0;
  background: #05070b;
}

.product-video {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  outline: 0;
}

.product-video:focus-visible {
  border-color: rgba(52, 214, 244, 0.5);
  box-shadow:
    0 0 0 3px rgba(52, 214, 244, 0.16),
    0 24px 60px rgba(0, 0, 0, 0.34);
}

.product-video + .video-fallback {
  display: none;
}

.product-media.video-not-loaded .product-video {
  display: none;
}

.product-media.video-not-loaded .video-fallback {
  display: grid;
  cursor: pointer;
}

.product-media.video-missing .product-video {
  display: none;
}

.product-media.video-missing .video-fallback {
  display: grid;
}

.video-slot {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 10px;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(4, 7, 12, 0.74);
  align-content: center;
  overflow: hidden;
}

.video-slot::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -30%;
  height: 28%;
  background: linear-gradient(180deg, transparent, rgba(52, 214, 244, 0.2), transparent);
  animation: scanLine 3200ms ease-in-out infinite;
}

.video-slot i {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
  font-size: 30px;
  box-shadow: 0 0 34px rgba(52, 214, 244, 0.35);
  animation: playPulse 2200ms ease-in-out infinite;
}

.video-slot span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.product-info {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.product-summary {
  color: color-mix(in srgb, var(--text) 76%, var(--muted));
}

.product-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.product-features li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  color: color-mix(in srgb, var(--text) 84%, var(--muted));
  font-size: 13px;
  font-weight: 680;
  line-height: 1.45;
}

.product-features i {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: rgba(53, 209, 141, 0.11);
  color: var(--green);
  font-size: 13px;
}

.contact-section {
  position: relative;
  overflow: hidden;
}

.contact-layout {
  display: block;
  max-width: 900px;
  margin: 0 auto;
}

.contact-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent 48%),
    var(--card);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
}

.contact-panel {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px;
}

.server-list {
  position: relative;
}

.contact-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--blue), transparent);
}

.contact-icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(52, 214, 244, 0.22);
  border-radius: var(--radius);
  background: rgba(52, 214, 244, 0.08);
  color: var(--cyan);
  font-size: 25px;
  animation: floatSoft 3600ms ease-in-out infinite;
}

.contact-panel h3 {
  margin: 22px 0 8px;
  color: #fff;
  font-size: 28px;
  font-weight: 950;
  line-height: 1.15;
}

.contact-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.contact-panel .button {
  margin-top: auto;
}

.server-list {
  padding: 0;
}

.server-list-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  padding: 0 2px;
}

.server-list-head span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.server-grid {
  display: grid;
  gap: 12px;
}

.server-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: 118px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(47, 125, 244, 0.1), transparent 56%),
    rgba(255, 255, 255, 0.028);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
  opacity: 0;
  padding: 16px;
  transform: translateY(18px);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
  will-change: transform;
}

.server-card.reseller {
  background:
    linear-gradient(90deg, rgba(53, 209, 141, 0.09), transparent 56%),
    rgba(255, 255, 255, 0.028);
}

.server-card:hover {
  border-color: rgba(52, 214, 244, 0.22);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
  transform: translateY(-5px);
}

.server-list.visible .server-card {
  opacity: 1;
  transform: translateY(0);
  animation: serverPushUp 900ms cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.server-list.visible .server-card:nth-child(2) {
  animation-delay: 90ms;
}

.server-list.visible .server-card:nth-child(3) {
  animation-delay: 180ms;
}

.server-list.visible .server-card:nth-child(4) {
  animation-delay: 270ms;
}

.server-list.visible .server-card:hover {
  transform: translateY(-5px);
}

.server-logo {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(52, 214, 244, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  object-fit: cover;
}

.server-card.empty .server-logo {
  object-fit: contain;
  padding: 8px;
  opacity: 0.72;
}

.server-body {
  min-width: 0;
}

.server-type {
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.server-card h3 {
  margin: 7px 0 3px;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}

.server-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.server-card a,
.server-waiting {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  min-width: 82px;
  min-height: 36px;
  border: 1px solid rgba(47, 125, 244, 0.34);
  border-radius: 7px;
  background: rgba(47, 125, 244, 0.14);
  color: #fff;
  padding: 8px 13px;
  font-size: 12px;
  font-weight: 850;
}

.server-waiting {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
}

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

@keyframes scanLine {
  0%,
  28% {
    transform: translateY(0);
    opacity: 0;
  }
  44% {
    opacity: 1;
  }
  72%,
  100% {
    transform: translateY(520%);
    opacity: 0;
  }
}

@keyframes playPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}

@keyframes floatSoft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 44px;
  align-items: start;
  border-top: 1px solid var(--line);
  background: rgba(9, 11, 16, 0.86);
  padding: 44px clamp(16px, 5vw, 64px) 34px;
}

.site-footer > div {
  max-width: var(--max);
}

.site-footer p {
  max-width: 420px;
  margin: 14px 0 0;
  color: var(--dim);
  font-size: 14px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  gap: 56px;
}

.footer-links h4 {
  margin: 0 0 10px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  color: var(--dim);
  font-size: 14px;
  font-weight: 650;
  padding: 4px 0;
  transition: color 140ms ease;
}

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

.fade-up {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 860ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.delay-1 {
  animation-delay: 150ms;
}

.delay-2 {
  animation-delay: 300ms;
}

.delay-3 {
  animation-delay: 450ms;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 840ms cubic-bezier(0.22, 1, 0.36, 1), transform 840ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes preLogo {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.9);
  }
}

@keyframes preText {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
}

@keyframes prebar {
  0% {
    width: 0;
  }
  28% {
    width: 34%;
  }
  64% {
    width: 72%;
  }
  86% {
    width: 91%;
  }
  to {
    width: 100%;
  }
}

@keyframes serverPushUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes chipSweep {
  0% {
    transform: translateX(0);
  }
  54%,
  100% {
    transform: translateX(330%);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.34;
  }
}

@media (max-width: 1020px) {
  .product-grid,
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card-featured {
    grid-template-columns: 1fr;
  }

  .product-price {
    justify-items: start;
  }

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

  .console-copy {
    max-width: 700px;
  }

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

@media (max-width: 760px) {
  .site-nav {
    height: 58px;
    padding-inline: 12px;
  }

  .nav-brand span {
    max-width: 154px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-links a:not(.nav-cta) {
    display: none;
  }

  .nav-links .nav-cta {
    min-height: 34px;
    padding: 7px 10px;
    font-size: 12px;
  }

  .landing-lang-toggle {
    min-height: 34px;
    padding: 7px 9px;
  }

  .hero {
    min-height: 100svh;
    padding: 118px 14px 54px;
  }

  .hero > .status-chip {
    top: 10px;
    left: 14px;
    right: auto;
    width: fit-content;
    max-width: calc(100% - 28px);
  }

  .hero h1 {
    font-size: clamp(36px, 12vw, 54px);
  }

  .hero p {
    font-size: 15px;
  }

  .status-chip {
    max-width: 100%;
  }

  .hero-actions,
  .console-actions {
    width: 100%;
  }

  .button {
    flex: 1 1 178px;
    min-width: 0;
    padding-inline: 12px;
  }

  .section {
    min-height: 100svh;
    padding: 72px 14px;
  }

  .section-head {
    margin-bottom: 30px;
  }

  .product-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .product-card,
  .feature-card {
    min-height: 0;
  }

  .product-media {
    min-height: 260px;
  }

  .demo-frame {
    width: 100%;
  }

  .demo-frame-top em {
    display: none;
  }

  .video-slot {
    width: 100%;
  }

  .workflow {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .detection-flow {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .detection-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .detection-shell {
    padding: 18px;
  }

  .detection-content {
    padding: 14px;
  }

  .detection-pills span {
    flex: 1 1 150px;
    justify-content: center;
  }

  .detection-arrow {
    transform: rotate(90deg);
    margin: -2px auto;
  }

  .detection-step {
    min-height: 156px;
  }

  .flow-arrow {
    transform: rotate(90deg);
  }

  .console-layout {
    gap: 28px;
  }

  .console-preview {
    min-width: 0;
  }

  .preview-body {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .preview-body aside {
    grid-template-columns: 44px repeat(4, minmax(38px, 1fr));
    align-items: center;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .preview-table {
    grid-template-columns: 1fr 0.8fr;
  }

  .preview-table span:nth-child(3n) {
    display: none;
  }

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

  .footer-links {
    flex-wrap: wrap;
    gap: 34px;
  }

  .server-card {
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
  }

  .server-logo {
    width: 48px;
    height: 48px;
  }

  .server-card a,
  .server-waiting {
    grid-column: 1 / -1;
    justify-self: stretch;
    width: 100%;
  }
}

@media (max-width: 420px) {
  .nav-brand {
    gap: 7px;
    font-size: 11px;
  }

  .nav-brand img {
    width: 30px;
    height: 30px;
  }

  .nav-links .nav-cta {
    font-size: 0;
    gap: 0;
  }

  .nav-links .nav-cta i {
    font-size: 16px;
  }

  .status-chip {
    align-items: flex-start;
    padding: 9px 11px;
  }

  .product-price strong {
    font-size: 24px;
  }

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

  .contact-panel {
    min-height: 320px;
    padding: 22px;
  }

  .contact-panel .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html:not(.rb-force-motion) *,
  html:not(.rb-force-motion) *::before,
  html:not(.rb-force-motion) *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  html:not(.rb-force-motion) .hero-particles {
    display: none;
  }

  html:not(.rb-force-motion) .reveal,
  html:not(.rb-force-motion) .fade-up,
  html:not(.rb-force-motion) .server-card {
    opacity: 1;
    transform: none;
  }
}
