/* Shared site styles — team-viewer.co */

:root {
  --vx-bg: #070d1f;
  --vx-bg-elevated: #0c1428;
  --vx-surface: #ffffff;
  --vx-muted: #94a3b8;
  --vx-text: #0f172a;
  --vx-accent: #22d3ee;
  --vx-accent-dim: #0891b2;
  --vx-rail-w: 17rem;
  --vx-banner-h: 4.25rem;
}

/* ========== App shell: sidebar + top banner ========== */
.vx-app {
  min-height: 100vh;
  background: #f1f5f9;
  color: var(--vx-text);
}

.vx-rail {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 50;
  display: flex;
  width: var(--vx-rail-w);
  flex-direction: column;
  border-right: 1px solid rgba(148, 163, 184, 0.12);
  background: linear-gradient(180deg, #060b18 0%, #0a1228 55%, #0d1835 100%);
  padding: 1.25rem 1rem;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.vx-rail-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 0.875rem;
  padding: 0.65rem 0.75rem;
  text-decoration: none;
  transition: background 0.2s ease;
}

.vx-rail-brand:hover {
  background: rgba(255, 255, 255, 0.06);
}

.vx-rail-brand img {
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 0.625rem;
  object-fit: contain;
}

.vx-rail-name {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #f8fafc;
}

.vx-rail-tag {
  display: block;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vx-accent);
}

.vx-rail-nav {
  margin-top: 1.75rem;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.25rem;
}

.vx-rail-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.625rem;
  padding: 0.65rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #94a3b8;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.vx-rail-link:hover {
  background: rgba(34, 211, 238, 0.08);
  color: #e2e8f0;
  transform: translateX(3px);
}

.vx-rail-link.is-active {
  background: linear-gradient(90deg, rgba(34, 211, 238, 0.18), rgba(34, 211, 238, 0.04));
  color: #f8fafc;
  box-shadow: inset 3px 0 0 var(--vx-accent);
}

.vx-rail-cta {
  margin-top: auto;
  display: block;
  border-radius: 0.625rem;
  background: linear-gradient(135deg, #22d3ee, #2563eb);
  padding: 0.75rem 1rem;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #0f172a;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(34, 211, 238, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.vx-rail-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(34, 211, 238, 0.35);
}

.vx-workspace {
  margin-left: var(--vx-rail-w);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.vx-head-banner {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--vx-banner-h);
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  padding: 0 1.25rem;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.vx-top-bar-scrolled {
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.95);
}

.vx-head-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.vx-head-brand img {
  height: 2rem;
  width: 2rem;
  border-radius: 0.5rem;
}

.vx-head-brand span {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.vx-head-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.vx-rail-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 0.5rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #0f172a;
}

.vx-rail-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(6, 11, 24, 0.55);
  backdrop-filter: blur(4px);
}

.vx-rail-overlay.is-open {
  display: block;
}

@media (max-width: 1023px) {
  .vx-rail {
    transform: translateX(-100%);
  }

  .vx-rail.is-open {
    transform: translateX(0);
    box-shadow: 16px 0 48px rgba(0, 0, 0, 0.35);
  }

  .vx-workspace {
    margin-left: 0;
  }

  .vx-rail-toggle {
    display: inline-flex;
  }
}

html[dir="rtl"] .vx-rail {
  inset: 0 0 0 auto;
  border-right: none;
  border-left: 1px solid rgba(148, 163, 184, 0.12);
}

html[dir="rtl"] .vx-workspace {
  margin-left: 0;
  margin-right: var(--vx-rail-w);
}

html[dir="rtl"] .vx-rail-link.is-active {
  box-shadow: inset -3px 0 0 var(--vx-accent);
}

html[dir="rtl"] .vx-rail-link:hover {
  transform: translateX(-3px);
}

@media (max-width: 1023px) {
  html[dir="rtl"] .vx-workspace {
    margin-right: 0;
  }

  html[dir="rtl"] .vx-rail {
    transform: translateX(100%);
  }
}

/* ========== Homepage — Midnight Aurora (dark) ========== */
.vx-home.vx-app {
  --hm-violet: #a78bfa;
  --hm-violet-bright: #c4b5fd;
  --hm-violet-soft: rgba(139, 92, 246, 0.14);
  --hm-rose: #fb7185;
  --hm-cyan: #22d3ee;
  --hm-ink: #f4f4f5;
  --hm-muted: #a1a1aa;
  --hm-surface: rgba(24, 24, 32, 0.72);
  --hm-surface-solid: #14141c;
  --hm-surface-hover: rgba(255, 255, 255, 0.04);
  --hm-bg: #09090f;
  --hm-bg-elevated: #0f0f17;
  --hm-border: rgba(255, 255, 255, 0.08);
  --hm-border-hover: rgba(167, 139, 250, 0.35);
  --hm-shadow: 0 4px 24px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.04);
  background: var(--hm-bg);
  color: var(--hm-ink);
}

.vx-home .vx-workspace {
  background: var(--hm-bg);
}

.vx-home .vx-rail {
  background: linear-gradient(180deg, rgba(12, 12, 20, 0.98) 0%, rgba(9, 9, 15, 0.98) 100%);
  border-right-color: var(--hm-border);
  backdrop-filter: blur(20px);
}

.vx-home .vx-rail-name {
  color: var(--hm-ink);
}

.vx-home .vx-rail-tag {
  color: var(--hm-violet-bright);
}

.vx-home .vx-rail-link {
  color: var(--hm-muted);
}

.vx-home .vx-rail-link:hover {
  background: var(--hm-violet-soft);
  color: var(--hm-ink);
  transform: translateX(3px);
}

.vx-home .vx-rail-link.is-active {
  background: var(--hm-violet-soft);
  color: var(--hm-violet-bright);
  box-shadow: inset 3px 0 0 var(--hm-violet);
  font-weight: 600;
}

.vx-home .vx-rail-cta {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #fff;
  box-shadow: 0 8px 28px rgba(124, 58, 237, 0.4);
}

.vx-home .vx-rail-cta:hover {
  box-shadow: 0 14px 40px rgba(124, 58, 237, 0.55);
}

.vx-home .vx-head-banner {
  border-bottom-color: var(--hm-border);
  background: rgba(9, 9, 15, 0.82);
  backdrop-filter: blur(20px);
}

.vx-home .vx-head-brand span {
  color: var(--hm-ink);
}

.vx-home .vx-top-bar-scrolled {
  background: rgba(9, 9, 15, 0.95);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.vx-home .vx-btn-accent {
  background: linear-gradient(135deg, #7c3aed, #9333ea) !important;
}

.vx-home .vx-btn-accent:hover {
  box-shadow: 0 12px 32px rgba(124, 58, 237, 0.45);
}

.vx-home .vx-rail-toggle {
  border-color: var(--hm-border);
  background: var(--hm-surface-solid);
  color: var(--hm-ink);
}

/* Hero */
.hm-hero {
  position: relative;
  overflow: hidden;
  padding: 3rem 1.5rem 5rem;
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(124, 58, 237, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 20%, rgba(244, 63, 94, 0.08) 0%, transparent 50%),
    var(--hm-bg);
}

@media (min-width: 1024px) {
  .hm-hero {
    padding: 4.5rem 2.5rem 6rem;
  }
}

.hm-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hm-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: hm-float 18s ease-in-out infinite;
}

.hm-orb-1 {
  top: -8%;
  left: -5%;
  width: 42%;
  height: 48%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.45) 0%, transparent 70%);
  opacity: 0.7;
}

.hm-orb-2 {
  top: 10%;
  right: -8%;
  width: 38%;
  height: 44%;
  background: radial-gradient(circle, rgba(244, 63, 94, 0.3) 0%, transparent 70%);
  animation-delay: -6s;
  opacity: 0.6;
}

.hm-orb-3 {
  bottom: -12%;
  left: 35%;
  width: 32%;
  height: 36%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.22) 0%, transparent 70%);
  animation-delay: -12s;
  opacity: 0.55;
}

@keyframes hm-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(2%, -3%) scale(1.04); }
  66% { transform: translate(-2%, 2%) scale(0.98); }
}

.hm-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 20%, #000 15%, transparent 70%);
}

.hm-hero-inner {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  display: grid;
  max-width: 72rem;
  align-items: center;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .hm-hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.hm-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid var(--hm-border);
  background: var(--hm-violet-soft);
  padding: 0.45rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--hm-violet-bright);
  box-shadow: none;
}

.hm-eyebrow-dot {
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hm-violet), var(--hm-rose));
  animation: hm-pulse 2s ease-in-out infinite;
}

@keyframes hm-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hm-title {
  margin-top: 1.5rem;
  font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--hm-ink);
}

.hm-gradient {
  background: linear-gradient(120deg, #c4b5fd 0%, #e879f9 45%, #fb7185 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hm-sub {
  margin-top: 1.5rem;
  max-width: 34rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--hm-muted);
}

.hm-cta-row {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}

.hm-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  padding: 0.9rem 1.65rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.32);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hm-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(124, 58, 237, 0.42);
}

.hm-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--hm-border);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.9rem 1.65rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--hm-ink);
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.25s ease;
}

.hm-btn-secondary:hover {
  border-color: var(--hm-border-hover);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.hm-trust-row {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.hm-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--hm-muted);
}

.hm-trust-pill svg {
  height: 1rem;
  width: 1rem;
  color: var(--hm-violet);
}

.hm-hero-visual {
  position: relative;
}

.hm-hero-frame {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid var(--hm-border);
  background: var(--hm-surface-solid);
  box-shadow: var(--hm-shadow), 0 0 80px rgba(124, 58, 237, 0.12);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease;
}

.hm-hero-frame:hover {
  transform: translateY(-4px);
  box-shadow: var(--hm-shadow), 0 0 100px rgba(124, 58, 237, 0.2);
}

.hm-hero-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.hm-float-card {
  position: absolute;
  border-radius: 0.875rem;
  border: 1px solid var(--hm-border);
  background: rgba(20, 20, 28, 0.92);
  backdrop-filter: blur(12px);
  padding: 0.75rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--hm-ink);
  box-shadow: var(--hm-shadow);
  animation: hm-float 6s ease-in-out infinite;
}

.hm-float-card-a {
  top: 12%;
  right: -4%;
  animation-delay: -2s;
}

.hm-float-card-b {
  bottom: 14%;
  left: -6%;
}

@media (max-width: 1023px) {
  .hm-float-card {
    display: none;
  }
}

.hm-float-card span {
  display: block;
  font-size: 0.625rem;
  font-weight: 500;
  color: var(--hm-muted);
  margin-top: 0.15rem;
}

/* Feature cards */
.hm-cards {
  padding: 0 1.5rem 5rem;
}

@media (min-width: 1024px) {
  .hm-cards {
    padding: 0 2.5rem 6rem;
  }
}

.hm-cards-grid {
  margin: 0 auto;
  display: grid;
  max-width: 72rem;
  gap: 1.25rem;
}

@media (min-width: 1024px) {
  .hm-cards-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
  }
}

.hm-card {
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid var(--hm-border);
  background: var(--hm-surface);
  backdrop-filter: blur(16px);
  box-shadow: var(--hm-shadow);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.25s ease;
}

.hm-card:hover {
  transform: translateY(-5px);
  border-color: var(--hm-border-hover);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(124, 58, 237, 0.08);
}

.hm-card-main {
  display: flex;
  flex-direction: column;
  height: 100%;
}

@media (min-width: 1024px) {
  .hm-card-main {
    grid-column: span 6;
  }
}

.hm-card-side {
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .hm-card-side {
    grid-column: span 3;
  }
}

.hm-card-badge {
  display: inline-block;
  border-radius: 0.375rem;
  background: var(--hm-violet-soft);
  padding: 0.25rem 0.5rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--hm-violet);
}

.hm-card-title {
  font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--hm-ink);
}

.hm-card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.75rem;
  text-decoration: none;
  border-top: 1px solid var(--hm-border);
  transition: background 0.2s ease;
}

.hm-card-link:hover {
  background: var(--hm-surface-hover);
}

.hm-card-link:hover .hm-card-link-title {
  color: var(--hm-violet);
}

.hm-card-link-title {
  font-weight: 600;
  color: var(--hm-ink);
  transition: color 0.2s ease;
}

.hm-card-link-desc {
  margin-top: 0.2rem;
  font-size: 0.8125rem;
  color: var(--hm-muted);
}

.hm-card-icon {
  display: flex;
  height: 2.5rem;
  width: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: var(--hm-violet-soft);
  color: var(--hm-violet);
}

.hm-section-alt {
  background: var(--hm-bg-elevated);
}

.hm-section-muted {
  background: rgba(255, 255, 255, 0.02);
}

.hm-heading {
  font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--hm-ink);
}

.hm-text-muted {
  color: var(--hm-muted);
}

.hm-cta-band {
  background: linear-gradient(135deg, #7c3aed 0%, #9333ea 50%, #c026d3 100%);
  color: #fff;
}

.hm-cta-band .hm-btn-secondary {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.hm-cta-band .hm-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Homepage dark — shared components */
.vx-home .hm-muted { color: var(--hm-muted); }
.vx-home .hm-accent-link { color: var(--hm-violet-bright); transition: color 0.2s ease; }
.vx-home .hm-accent-link:hover { color: #ddd6fe; }
.vx-home .hm-card-media { background: rgba(0, 0, 0, 0.35); }
.vx-home .hm-card-img { ring-color: var(--hm-border); }
.vx-home .hm-inline-link { color: var(--hm-ink); transition: color 0.2s ease; }
.vx-home .hm-inline-link:hover { color: var(--hm-violet-bright); }

.vx-home .vx-caps-zone {
  background: var(--hm-bg-elevated) !important;
  border-color: var(--hm-border) !important;
}

.vx-home .vx-cap-row {
  background: var(--hm-surface);
  border-color: var(--hm-border);
}

.vx-home .vx-cap-row:hover {
  border-color: var(--hm-border-hover);
  background: rgba(255, 255, 255, 0.05);
}

.vx-home .vx-cap-glyph {
  background: var(--hm-violet-soft);
  color: var(--hm-violet-bright);
}

.vx-home .vx-use-tile {
  background: var(--hm-surface);
  border-color: var(--hm-border);
}

.vx-home .vx-use-tile:hover {
  border-color: var(--hm-border-hover);
  background: rgba(255, 255, 255, 0.05);
}

.vx-home .vx-use-glyph {
  background: var(--hm-violet-soft);
  color: var(--hm-violet-bright);
}

.vx-home .vx-compare-grid-wrap {
  border-radius: 1.25rem;
  border: 1px solid var(--hm-border);
  background: var(--hm-surface-solid);
  box-shadow: var(--hm-shadow);
}

.vx-home .vx-compare-grid thead th {
  padding: 1.1rem 1.35rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--hm-bg-elevated);
  color: var(--hm-muted);
  border-bottom: 1px solid var(--hm-border);
}

.vx-home .vx-compare-grid thead th.vx-col-highlight {
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.22), rgba(139, 92, 246, 0.08));
  color: var(--hm-violet-bright);
}

.vx-home .vx-compare-grid tbody td {
  background: transparent;
  color: var(--hm-muted);
  border-bottom: 1px solid var(--hm-border);
}

.vx-home .vx-compare-grid tbody tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.025);
}

.vx-home .vx-compare-grid tbody tr:hover td {
  background: rgba(167, 139, 250, 0.08);
}

.vx-home .vx-compare-grid tbody tr:last-child td {
  border-bottom: none;
}

.vx-home .vx-compare-grid tbody td:first-child {
  color: var(--hm-ink);
  font-weight: 600;
}

.vx-home .vx-compare-grid tbody td.vx-col-highlight,
.vx-home .vx-compare-grid tbody tr:hover td.vx-col-highlight {
  background: rgba(139, 92, 246, 0.1);
  color: var(--hm-violet-bright) !important;
  font-weight: 600;
  box-shadow: inset 1px 0 0 rgba(167, 139, 250, 0.18), inset -1px 0 0 rgba(167, 139, 250, 0.18);
}

.vx-home .vx-compare-grid tbody tr:last-child td.vx-col-highlight {
  box-shadow: inset 1px 0 0 rgba(167, 139, 250, 0.18), inset -1px 0 0 rgba(167, 139, 250, 0.18), inset 0 -1px 0 rgba(167, 139, 250, 0.18);
}

/* ===== Reviews (dark, redesigned) ===== */
.vx-home .hm-reviews {
  background: var(--hm-bg);
}

.hm-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  border-radius: 1rem;
  border: 1px solid var(--hm-border);
  background: var(--hm-surface);
  padding: 0.85rem 1.25rem;
  box-shadow: var(--hm-shadow);
}

.hm-rating-score {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--hm-ink);
}

.hm-rating-stars {
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  color: #fbbf24;
}

.hm-rating-stars .hm-star-half {
  color: rgba(251, 191, 36, 0.4);
}

.hm-rating-meta {
  margin-top: 0.15rem;
  font-size: 0.72rem;
  color: var(--hm-muted);
}

.hm-review-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 1.25rem;
  border: 1px solid var(--hm-border);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.05) 0%, rgba(20, 20, 28, 0.6) 60%);
  padding: 1.6rem 1.5rem;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.hm-review-card::before {
  content: "\201C";
  position: absolute;
  top: -0.6rem;
  right: 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--hm-violet);
  opacity: 0.14;
  pointer-events: none;
}

.hm-review-card:hover {
  transform: translateY(-6px);
  border-color: var(--hm-border-hover);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(167, 139, 250, 0.12);
}

.hm-review-stars {
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  color: #fbbf24;
}

.hm-review-stars .hm-star-empty {
  color: rgba(255, 255, 255, 0.16);
}

.hm-review-text {
  margin-top: 0.9rem;
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--hm-ink);
}

.hm-review-foot {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid var(--hm-border);
  padding-top: 1.1rem;
}

.hm-review-avatar {
  display: grid;
  place-items: center;
  height: 2.5rem;
  width: 2.5rem;
  flex-shrink: 0;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--hm-violet), var(--hm-cyan));
  color: #0b0b12;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hm-review-name {
  display: block;
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--hm-ink);
}

.hm-review-src {
  font-size: 0.75rem;
  color: var(--hm-muted);
}

/* ===== FAQ (dark, redesigned) ===== */
.vx-home .hm-faq-zone {
  background: var(--hm-bg-elevated);
}

.hm-faq-stack {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.hm-faq-item {
  border-radius: 1rem;
  border: 1px solid var(--hm-border);
  background: var(--hm-surface);
  overflow: hidden;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.hm-faq-item:hover {
  border-color: var(--hm-border-hover);
}

.hm-faq-item.vx-acc-row-open {
  border-color: var(--hm-border-hover);
  background: linear-gradient(165deg, rgba(139, 92, 246, 0.12) 0%, var(--hm-surface) 55%);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.hm-faq-btn {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  text-align: left;
  cursor: pointer;
}

.hm-faq-q {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--hm-ink);
  transition: color 0.2s ease;
}

.hm-faq-btn:hover .hm-faq-q {
  color: var(--hm-violet-bright);
}

.hm-faq-icon {
  position: relative;
  flex-shrink: 0;
  height: 1.75rem;
  width: 1.75rem;
  border-radius: 9999px;
  border: 1px solid var(--hm-border);
  background: rgba(255, 255, 255, 0.03);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.hm-faq-icon::before,
.hm-faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--hm-violet-bright);
  border-radius: 2px;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.hm-faq-icon::before {
  width: 0.7rem;
  height: 2px;
  transform: translate(-50%, -50%);
}

.hm-faq-icon::after {
  width: 2px;
  height: 0.7rem;
  transform: translate(-50%, -50%);
}

.hm-faq-btn:hover .hm-faq-icon {
  background: var(--hm-violet-soft);
  border-color: var(--hm-border-hover);
}

.hm-faq-btn[aria-expanded="true"] .hm-faq-icon {
  background: var(--hm-violet-soft);
  border-color: var(--hm-border-hover);
  transform: rotate(180deg);
}

.hm-faq-btn[aria-expanded="true"] .hm-faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0);
}

.hm-faq-panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}

.hm-faq-panel p {
  padding: 0 1.4rem 1.25rem;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--hm-muted);
}

.hm-faq-panel.vx-acc-open {
  opacity: 1;
}

.vx-home .hm-footer {
  border-color: var(--hm-border);
  background: var(--hm-bg-elevated);
  color: var(--hm-muted);
}

.vx-home .hm-footer a {
  color: var(--hm-muted);
  transition: color 0.2s ease;
}

.vx-home .hm-footer a:hover {
  color: var(--hm-ink);
}

.vx-home .hm-code-block {
  border-color: var(--hm-border);
  background: var(--hm-surface-solid);
  color: var(--hm-violet-bright);
}

.vx-home .hm-outline-btn {
  border-color: var(--hm-border);
  color: var(--hm-ink);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.vx-home .hm-outline-btn:hover {
  background: var(--hm-ink);
  border-color: var(--hm-ink);
  color: var(--hm-bg);
}

.vx-home .vx-cta-outline {
  border-color: var(--hm-border);
  color: var(--hm-ink);
}

.vx-home .vx-cta-outline:hover {
  border-color: var(--hm-violet);
  background: var(--hm-violet-soft);
}

.vx-home .vx-fab-dl {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  box-shadow: 0 8px 28px rgba(124, 58, 237, 0.45);
}

.vx-home .vx-review-tile footer {
  border-color: var(--hm-border);
}

.vx-home .vx-locale-trigger {
  border-color: var(--hm-border);
  background: var(--hm-surface-solid);
  color: var(--hm-ink);
}

.vx-home .vx-locale-trigger:hover {
  border-color: var(--hm-border-hover);
  background: rgba(255, 255, 255, 0.06);
}

.vx-home .vx-locale-dropdown {
  background: var(--hm-surface-solid);
  border-color: var(--hm-border);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.vx-home .vx-locale-dropdown a {
  color: var(--hm-muted);
}

.vx-home .vx-locale-dropdown a:hover {
  background: var(--hm-violet-soft);
  color: var(--hm-ink);
}

.vx-home .vx-footer-langs a {
  color: var(--hm-muted);
}

.vx-home .vx-footer-langs a:hover {
  color: var(--hm-ink);
}

/* =====================================================================
   INNER PAGES — adopt the homepage "Midnight Aurora" dark theme.
   Activated by adding .vx-home to the page <body>. These rules recolor
   the light default theme of the shared + per-page components.
   ===================================================================== */

/* ---- Tailwind utility neutralizers (light -> dark) ---- */
.vx-home .bg-white { background-color: var(--hm-surface) !important; }
.vx-home .bg-\[\#f8fafc\] { background-color: var(--hm-bg-elevated) !important; }
.vx-home .bg-gray-50 { background-color: var(--hm-bg-elevated) !important; }
.vx-home .bg-\[\#eff6ff\],
.vx-home .bg-\[\#f1f5f9\],
.vx-home .bg-\[\#f5f3ff\] { background-color: var(--hm-surface-solid) !important; }

.vx-home .text-\[\#050a30\],
.vx-home .text-\[\#0b1f6d\],
.vx-home .text-\[\#1e293b\] { color: var(--hm-ink) !important; }
.vx-home .text-gray-400,
.vx-home .text-gray-500,
.vx-home .text-gray-600,
.vx-home .text-gray-700 { color: var(--hm-muted) !important; }
.vx-home .text-\[\#2563eb\] { color: var(--hm-violet-bright) !important; }

.vx-home .border-gray-100,
.vx-home .border-gray-200,
.vx-home .border-slate-200,
.vx-home .border-t,
.vx-home .border-y { border-color: var(--hm-border) !important; }

.vx-home .hover\:text-\[\#0b1f6d\]:hover { color: var(--hm-ink) !important; }
.vx-home .hover\:bg-\[\#eff6ff\]:hover,
.vx-home .hover\:bg-\[\#f1f5f9\]:hover { background-color: var(--hm-surface-hover) !important; }
.vx-home .hover\:border-\[\#93c5fd\]:hover,
.vx-home .hover\:border-\[\#bfdbfe\]:hover { border-color: var(--hm-border-hover) !important; }

/* Keep the white CTA buttons white (they sit on dark sections) */
.vx-home .vx-btn-light { background-color: #ffffff !important; color: #0b1f6d !important; }
.vx-home .vx-btn-light:hover { background-color: #eef2ff !important; }
.vx-home .vx-btn-light .text-\[\#2563eb\] { color: #2563eb !important; }

/* Navy CTA band -> violet gradient (matches homepage CTA) */
.vx-home .bg-\[\#0b1f6d\] {
  background: linear-gradient(135deg, #7c3aed 0%, #9333ea 50%, #c026d3 100%) !important;
}

/* ---- Page hero banner + stage band ---- */
.vx-home .vx-banner-zone {
  background: linear-gradient(180deg, #1a0f3d 0%, #140d31 34%, var(--hm-bg-elevated) 74%, var(--hm-bg) 100%);
}
.vx-home .vx-banner-mesh {
  background: radial-gradient(ellipse 80% 55% at 50% 28%, rgba(167, 139, 250, 0.30) 0%, transparent 65%);
}
.vx-home .vx-banner-orb-a { background: radial-gradient(circle, rgba(167, 139, 250, 0.22) 0%, transparent 70%); }
.vx-home .vx-banner-orb-b { background: radial-gradient(circle, rgba(34, 211, 238, 0.16) 0%, transparent 70%); }
.vx-home .vx-stage-band {
  background: linear-gradient(180deg, transparent 0%, rgba(9, 9, 15, 0.55) 42%, var(--hm-bg) 100%);
}

/* ---- Card / panel surfaces (white -> dark) ---- */
.vx-home .vx-surface-card,
.vx-home .vx-content-box,
.vx-home .vx-info-tile,
.vx-home .vx-band-light,
.vx-home .vx-spec-grid-wrap,
.vx-home .vx-dl-guard-card,
.vx-home .vx-guide-block,
.vx-home .vx-guide-step,
.vx-home .vx-guide-ol li,
.vx-home .vx-guide-tip,
.vx-home .vx-trust-block,
.vx-home .vx-point-line,
.vx-home .vx-verify-step,
.vx-home .vx-win-frame,
.vx-home .vx-trust-chip {
  background: var(--hm-surface) !important;
  border-color: var(--hm-border) !important;
  box-shadow: var(--hm-shadow);
}

.vx-home .vx-band-muted { background: var(--hm-bg-elevated) !important; }

/* Download page left "spotlight" panel -> dark violet card */
.vx-home .vx-card-spotlight {
  border: 1px solid var(--hm-border-hover) !important;
  background: linear-gradient(160deg, rgba(139, 92, 246, 0.16) 0%, var(--hm-surface-solid) 55%, rgba(34, 211, 238, 0.08) 100%) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 0 60px rgba(124, 58, 237, 0.12) !important;
}

/* hover states for the list-style cards */
.vx-home .vx-point-line:hover,
.vx-home .vx-verify-step:hover,
.vx-home .vx-guide-step:hover,
.vx-home .vx-guide-ol li:hover,
.vx-home .vx-guide-tip:hover,
.vx-home .vx-trust-chip:hover,
.vx-home .vx-topic-chip:hover,
.vx-home .vx-faq-chip:hover {
  border-color: var(--hm-border-hover) !important;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(167, 139, 250, 0.15) !important;
}

/* ---- Component text colors set in CSS ---- */
.vx-home .vx-point-line,
.vx-home .vx-verify-step,
.vx-home .vx-guide-step,
.vx-home .vx-guide-ol li,
.vx-home .vx-guide-tip,
.vx-home .vx-trust-chip,
.vx-home .vx-topic-chip { color: var(--hm-muted) !important; }

.vx-home .vx-spec-grid th,
.vx-home .vx-spec-grid td strong { color: var(--hm-ink) !important; }
.vx-home .vx-spec-grid td { color: var(--hm-muted) !important; }
.vx-home .vx-spec-grid-animated tbody tr:hover td { background: var(--hm-violet-soft) !important; }

/* ---- Code / hash blocks ---- */
.vx-home .vx-hash-box,
.vx-home code {
  background: var(--hm-surface-solid) !important;
  color: var(--hm-violet-bright) !important;
  border-color: var(--hm-border) !important;
}
.vx-home .vx-hash-copy {
  background: var(--hm-surface) !important;
  border-color: var(--hm-border) !important;
  color: var(--hm-violet-bright) !important;
}

/* Gradient version number -> light gradient so it stays visible */
.vx-home .vx-dl-version {
  background: linear-gradient(135deg, var(--hm-violet-bright) 0%, var(--hm-cyan) 100%) !important;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
}

/* ---- FAQ page accordion (dark cards) ---- */
.vx-home .vx-acc-stack {
  background: var(--hm-surface) !important;
  border-color: var(--hm-border) !important;
}
.vx-faq-app.vx-home .vx-acc-stack { background: transparent !important; }
.vx-faq-app.vx-home .vx-acc-row {
  background: var(--hm-surface) !important;
  border-color: var(--hm-border) !important;
  box-shadow: var(--hm-shadow) !important;
}
.vx-faq-app.vx-home .vx-acc-row:hover:not(.vx-acc-row-open) {
  border-color: var(--hm-border-hover) !important;
  background: var(--hm-surface) !important;
}
.vx-faq-app.vx-home .vx-acc-row.vx-acc-row-open,
.vx-home .vx-acc-row.vx-acc-row-open {
  border-color: var(--hm-border-hover) !important;
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.12) 0%, var(--hm-surface) 55%) !important;
}
.vx-home .vx-acc-row:hover:not(.vx-acc-row-open) { background: var(--hm-surface-hover) !important; }
.vx-home .vx-faq-trigger,
.vx-home [data-vx-acc-btn] { color: var(--hm-ink) !important; }
.vx-home .vx-faq-trigger:hover,
.vx-home [data-vx-acc-btn]:hover,
.vx-home .vx-acc-row-open .vx-faq-trigger,
.vx-home .vx-acc-row-open [data-vx-acc-btn] { color: var(--hm-violet-bright) !important; }
.vx-home .vx-faq-body,
.vx-home [data-vx-acc-panel] { color: var(--hm-muted) !important; }
.vx-home .vx-faq-body a,
.vx-home .vx-link-accent { color: var(--hm-violet-bright) !important; }
.vx-home .vx-acc-chevron { background: rgba(255, 255, 255, 0.05) !important; color: var(--hm-muted) !important; }
.vx-home [data-vx-acc-btn]:hover .vx-acc-chevron,
.vx-home [data-vx-acc-btn][aria-expanded="true"] .vx-acc-chevron {
  background: var(--hm-violet-soft) !important;
  color: var(--hm-violet-bright) !important;
}

/* ---- Nav / topic chips ---- */
.vx-home .vx-topic-chip,
.vx-home .vx-faq-chip {
  background: var(--hm-surface) !important;
  border-color: var(--hm-border) !important;
}
.vx-home .vx-topic-chip:hover,
.vx-home .vx-faq-chip:hover { color: var(--hm-violet-bright) !important; }

/* ---- Icon glyph chips (light tints -> violet) ---- */
.vx-home .vx-point-glyph-blue,
.vx-home .vx-point-glyph-indigo,
.vx-home .vx-point-glyph-sky,
.vx-home .vx-point-glyph-slate,
.vx-home .vx-info-glyph,
.vx-home .vx-trust-glyph {
  background: var(--hm-violet-soft) !important;
  color: var(--hm-violet-bright) !important;
}

/* ---- Timeline connector line ---- */
.vx-home .vx-timeline-node::after { background: var(--hm-border) !important; }
.vx-home .download-timeline .vx-timeline-node:hover { background: var(--hm-surface-hover) !important; }

/* =====================================================================
   Unified premium hover effect for every content / text box.
   Lifts the box, highlights the border, and adds a soft violet glow —
   plus a light sweep across the top edge on hover.
   ===================================================================== */
.vx-home .vx-surface-card,
.vx-home .vx-content-box,
.vx-home .vx-card-spotlight,
.vx-home .vx-info-tile,
.vx-home .vx-trust-block,
.vx-home .vx-band-light,
.vx-home .hm-card,
.vx-home .hm-review-card {
  position: relative;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease, border-color 0.4s ease;
}

.vx-home .vx-surface-card:hover,
.vx-home .vx-content-box:hover,
.vx-home .vx-card-spotlight:hover,
.vx-home .vx-info-tile:hover,
.vx-home .vx-trust-block:hover {
  transform: translateY(-5px);
  border-color: var(--hm-border-hover) !important;
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(167, 139, 250, 0.2),
    0 0 44px rgba(124, 58, 237, 0.16) !important;
}

/* Animated gradient top-edge accent that reveals on hover */
.vx-home .vx-surface-card::after,
.vx-home .vx-content-box::after,
.vx-home .vx-info-tile::after,
.vx-home .vx-trust-block::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hm-violet), var(--hm-cyan), transparent);
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.vx-home .vx-surface-card:hover::after,
.vx-home .vx-content-box:hover::after,
.vx-home .vx-info-tile:hover::after,
.vx-home .vx-trust-block:hover::after {
  opacity: 0.9;
  transform: scaleX(1);
}

@media (prefers-reduced-motion: reduce) {
  .vx-home .vx-surface-card:hover,
  .vx-home .vx-content-box:hover,
  .vx-home .vx-card-spotlight:hover,
  .vx-home .vx-info-tile:hover,
  .vx-home .vx-trust-block:hover {
    transform: none;
  }
  .vx-home .vx-surface-card::after,
  .vx-home .vx-content-box::after,
  .vx-home .vx-info-tile::after,
  .vx-home .vx-trust-block::after {
    display: none;
  }
}

/* Integrations logo strip — light panel so dark brand text stays readable */
.hm-logos-panel {
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #f8fafc;
  padding: 2rem 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

@media (min-width: 640px) {
  .hm-logos-panel {
    padding: 2.5rem 3rem;
  }
}

/* AI section — dark visual (replaces white-bg gif) */
.hm-ai-visual {
  position: relative;
  overflow: hidden;
  border-radius: 1.75rem;
  border: 1px solid var(--hm-border);
  background: linear-gradient(165deg, rgba(124, 58, 237, 0.14) 0%, rgba(9, 9, 15, 0.98) 42%, rgba(34, 211, 238, 0.1) 100%);
  padding: 2.5rem 1.25rem 2rem;
  text-align: center;
  box-shadow: var(--hm-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 0 120px rgba(124, 58, 237, 0.08);
}

@media (min-width: 640px) {
  .hm-ai-visual {
    padding: 3.5rem 2.5rem 2.5rem;
    border-radius: 2rem;
  }
}

@media (min-width: 1024px) {
  .hm-ai-visual {
    padding: 4rem 3rem 3rem;
  }
}

.hm-ai-visual-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hm-ai-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 45%, #000 20%, transparent 72%);
}

.hm-ai-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: hm-float 14s ease-in-out infinite;
}

.hm-ai-orb-a {
  top: 5%;
  left: 10%;
  width: 40%;
  height: 45%;
  background: rgba(124, 58, 237, 0.35);
}

.hm-ai-orb-b {
  bottom: 0;
  right: 5%;
  width: 35%;
  height: 40%;
  background: rgba(34, 211, 238, 0.2);
  animation-delay: -7s;
}

.hm-ai-stage {
  position: relative;
  z-index: 1;
  min-height: clamp(18rem, 42vw, 28rem);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hm-ai-infinity {
  width: min(100%, 52rem);
  height: auto;
  margin: 0 auto;
  display: block;
}

.hm-ai-infinity-line {
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  animation: hm-ai-draw 2.8s ease forwards 0.3s;
}

@keyframes hm-ai-draw {
  to { stroke-dashoffset: 0; }
}

.hm-ai-infinity-glow {
  animation: hm-ai-pulse-glow 4s ease-in-out infinite;
}

@keyframes hm-ai-pulse-glow {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.55; }
}

.hm-ai-node {
  animation: hm-ai-pulse-node 3s ease-in-out infinite;
}

.hm-ai-node-b { animation-delay: 0.5s; }
.hm-ai-node-c { animation-delay: 1s; }
.hm-ai-node-d { animation-delay: 1.5s; }

@keyframes hm-ai-pulse-node {
  0%, 100% { opacity: 0.6; r: 6; }
  50% { opacity: 1; }
}

.hm-ai-core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 1.25rem 1.5rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(167, 139, 250, 0.35);
  background: rgba(12, 12, 20, 0.88);
  backdrop-filter: blur(16px);
  box-shadow: 0 0 40px rgba(124, 58, 237, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  min-width: 7.5rem;
}

.hm-ai-core-ring {
  position: absolute;
  inset: -4px;
  border-radius: 1.35rem;
  border: 1px solid rgba(167, 139, 250, 0.2);
  animation: hm-ai-ring 3s ease-in-out infinite;
}

@keyframes hm-ai-ring {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.03); }
}

.hm-ai-core-icon {
  width: 2rem;
  height: 2rem;
  color: var(--hm-violet-bright);
}

.hm-ai-core-name {
  font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--hm-ink);
  line-height: 1.1;
}

.hm-ai-core-tag {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hm-muted);
}

.hm-ai-steps {
  position: absolute;
  inset: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  pointer-events: none;
}

@media (max-width: 639px) {
  .hm-ai-stage {
    min-height: auto;
    flex-direction: column;
    gap: 1.5rem;
    padding-bottom: 0.5rem;
  }

  .hm-ai-infinity {
    width: 100%;
    max-width: 22rem;
  }

  .hm-ai-core {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin-top: -3rem;
  }

  .hm-ai-steps {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.625rem;
    width: 100%;
    pointer-events: auto;
  }

  .hm-ai-step {
    position: relative;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    align-items: flex-start !important;
    text-align: left !important;
    min-width: 0;
    padding: 0.75rem;
  }
}

.hm-ai-step {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  padding: 0.75rem 1rem;
  border-radius: 0.875rem;
  border: 1px solid var(--hm-border);
  background: rgba(16, 16, 24, 0.85);
  backdrop-filter: blur(10px);
  text-align: left;
  min-width: 8.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.hm-ai-step:nth-child(1) { top: 4%; left: 2%; }
.hm-ai-step:nth-child(2) { top: 4%; right: 2%; align-items: flex-end; text-align: right; }
.hm-ai-step:nth-child(3) { bottom: 8%; right: 2%; align-items: flex-end; text-align: right; }
.hm-ai-step:nth-child(4) { bottom: 8%; left: 2%; }

@media (min-width: 640px) {
  .hm-ai-step {
    padding: 1rem 1.25rem;
    min-width: 10rem;
    border-radius: 1rem;
  }

  .hm-ai-step:nth-child(1) { top: 6%; left: 6%; }
  .hm-ai-step:nth-child(2) { top: 6%; right: 6%; }
  .hm-ai-step:nth-child(3) { bottom: 10%; right: 6%; }
  .hm-ai-step:nth-child(4) { bottom: 10%; left: 6%; }
}

@media (min-width: 1024px) {
  .hm-ai-step:nth-child(1) { top: 8%; left: 10%; }
  .hm-ai-step:nth-child(2) { top: 8%; right: 10%; }
  .hm-ai-step:nth-child(3) { bottom: 12%; right: 10%; }
  .hm-ai-step:nth-child(4) { bottom: 12%; left: 10%; }
}

.hm-ai-step-num {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--hm-violet-bright);
}

.hm-ai-step-title {
  font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--hm-ink);
}

@media (min-width: 640px) {
  .hm-ai-step-title { font-size: 1.0625rem; }
}

.hm-ai-step-desc {
  font-size: 0.6875rem;
  line-height: 1.35;
  color: var(--hm-muted);
}

@media (min-width: 640px) {
  .hm-ai-step-desc { font-size: 0.75rem; }
}

.hm-ai-footline {
  position: relative;
  z-index: 1;
  margin-top: 1.75rem;
  font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, #c4b5fd, #67e8f9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (prefers-reduced-motion: reduce) {
  .hm-ai-infinity-line,
  .hm-ai-infinity-glow,
  .hm-ai-node,
  .hm-ai-core-ring,
  .hm-ai-orb {
    animation: none;
  }

  .hm-ai-infinity-line {
    stroke-dashoffset: 0;
  }
}

/* Legacy button alias */
.vx-btn-glow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  padding: 0.9rem 1.65rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.32);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.vx-btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(124, 58, 237, 0.42);
}

/* Legacy aliases for scroll/enter animations */
.vx-home-hero,
.vx-home-cards,
.vx-glass-card,
.vx-btn-outline-light {
  /* superseded by hm-* classes */
}

.vx-scroll-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .hm-orb,
  .hm-float-card,
  .hm-eyebrow-dot {
    animation: none;
  }

  .vx-home .vx-rail-link:hover,
  .hm-card:hover,
  .hm-btn-primary:hover,
  .hm-btn-secondary:hover,
  .hm-hero-frame:hover,
  .vx-home .vx-rail-cta:hover {
    transform: none;
  }
}


* {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
}

.vx-a11y-hide {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Nav */
.vx-nav-link {
  transition: color 0.2s ease;
  color: #64748b;
}

.vx-nav-link:hover,
.vx-nav-link[aria-current="page"] {
  color: #0b1f6d;
}

#vx-mobile-drawer[hidden] {
  display: none;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid #60a5fa;
  outline-offset: 3px;
}

/* Buttons */
.vx-btn-accent {
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.vx-btn-accent:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.4);
}

.vx-btn-accent:active {
  transform: scale(0.98);
}

.vx-btn-light {
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.vx-btn-light:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
}

.vx-btn-light:active {
  transform: scale(0.98);
}

.vx-link-accent {
  color: #2563eb;
  font-weight: 600;
  transition: color 0.2s ease;
}

.vx-link-accent:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

/* ========== Hero shell (features-page style) ========== */
.vx-banner-zone {
  background: linear-gradient(180deg, #0b1f6d 0%, #1d4ed8 48%, #3b82f6 72%, #93c5fd 92%, #e8eef5 100%);
}

.vx-banner-mesh {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 55% at 50% 28%, rgba(147, 197, 253, 0.35) 0%, transparent 65%);
  pointer-events: none;
}

.vx-banner-glow {
  position: absolute;
  left: 50%;
  top: 22%;
  width: min(680px, 92vw);
  height: 320px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.vx-banner-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: blob-float 28s ease-in-out infinite;
}

.vx-banner-orb-a {
  left: 10%;
  top: 18%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.14) 0%, transparent 70%);
  filter: blur(100px);
  opacity: 0.6;
}

.vx-banner-orb-b {
  right: 5%;
  top: 10%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
  filter: blur(120px);
  opacity: 0.5;
  animation-delay: -12s;
}

@keyframes blob-float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(12px, -16px); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}

.vx-enter-up {
  animation: fade-up 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  opacity: 0;
}

.vx-enter-d1 { animation-delay: 0.1s; }
.vx-enter-d2 { animation-delay: 0.22s; }
.vx-enter-d3 { animation-delay: 0.34s; }
.vx-enter-d4 { animation-delay: 0.46s; }

@media (prefers-reduced-motion: reduce) {
  .vx-enter-up { animation: none; opacity: 1; }
  .vx-banner-orb, .vx-banner-mesh { animation: none !important; }
}

.vx-stage-band {
  background: linear-gradient(180deg, transparent 0%, #c7daf0 18%, #e8eef5 55%, #f8fafc 100%);
}

.vx-surface-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.vx-surface-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.16);
}

.vx-cap-row {
  display: flex;
  gap: 1rem;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.vx-cap-row:hover {
  transform: translateY(-3px);
  border-color: #93c5fd;
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.14);
}

.vx-cap-tint-blue {
  background: linear-gradient(145deg, #eff6ff 0%, #f0f9ff 100%);
  border-color: #dbeafe;
}

.vx-cap-tint-indigo {
  background: linear-gradient(145deg, #eef2ff 0%, #f5f3ff 100%);
  border-color: #e0e7ff;
}

.vx-cap-tint-sky {
  background: linear-gradient(145deg, #f0f9ff 0%, #ecfeff 100%);
  border-color: #bae6fd;
}

.vx-cap-tint-slate {
  background: linear-gradient(145deg, #f8fafc 0%, #f1f5f9 100%);
  border-color: #e2e8f0;
}

.vx-cap-tint-mint {
  background: linear-gradient(145deg, #f0fdf4 0%, #f8fafc 100%);
  border-color: #bbf7d0;
}

.vx-cap-glyph {
  display: flex;
  height: 2.75rem;
  width: 2.75rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vx-cap-row:hover .vx-cap-glyph {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
}

.vx-use-tile {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  padding: 1.75rem;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.vx-use-tile::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, #2563eb, #60a5fa);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.vx-use-tile:hover {
  transform: translateY(-4px);
  border-color: #bfdbfe;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12);
}

.vx-use-tile:hover::before {
  transform: scaleX(1);
}

.vx-use-tile-tint-blue {
  background: linear-gradient(160deg, #eff6ff 0%, #f8fafc 100%);
  border-color: #dbeafe;
}

.vx-use-tile-tint-sky {
  background: linear-gradient(160deg, #f0f9ff 0%, #f8fafc 100%);
  border-color: #bae6fd;
}

.vx-use-tile-tint-indigo {
  background: linear-gradient(160deg, #eef2ff 0%, #f8fafc 100%);
  border-color: #e0e7ff;
}

.vx-use-tile-tint-violet {
  background: linear-gradient(160deg, #f5f3ff 0%, #f8fafc 100%);
  border-color: #ddd6fe;
}

.vx-use-glyph {
  display: flex;
  height: 3rem;
  width: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.875rem;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  color: #2563eb;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.vx-use-tile:hover .vx-use-glyph {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  transform: scale(1.05);
}

.vx-btn-ghost {
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.vx-btn-ghost:hover {
  transform: scale(1.03);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
}

.vx-btn-ghost:active {
  transform: scale(0.98);
}

.vx-gallery-tile {
  display: block;
  width: 100%;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  padding: 0.625rem;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
  cursor: pointer;
  text-align: left;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.vx-gallery-tile:hover {
  transform: scale(1.03);
  border-color: rgba(147, 197, 253, 0.9);
  box-shadow:
    0 20px 48px rgba(37, 99, 235, 0.35),
    0 0 0 1px rgba(96, 165, 250, 0.4);
}

.vx-gallery-frame {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 0.5rem;
  background: linear-gradient(180deg, #e8eef5 0%, #f1f5f9 100%);
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.06);
}

.vx-gallery-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.vx-gallery-tile:hover .vx-gallery-frame img {
  transform: scale(1.04);
}

#vx-modal-view[hidden] { display: none; }

#vx-modal-view {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 10, 48, 0.85);
  padding: 1.5rem;
  backdrop-filter: blur(4px);
}

#vx-modal-view img {
  max-width: min(560px, 100%);
  max-height: 85vh;
  border-radius: 0.75rem;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

#vx-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  height: 2.5rem;
  width: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  transition: background 0.2s ease;
}

#vx-modal-close:hover { background: rgba(255, 255, 255, 0.25); }

/* Page vx-banner-zone (legacy fallback) */
.vx-inner-hero {
  background: linear-gradient(135deg, #0b1f6d 0%, #1d4ed8 50%, #3b82f6 100%);
  color: #ffffff;
  padding: 2.5rem 0 3rem;
}

.vx-crumb {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}

.vx-crumb a {
  transition: color 0.2s ease;
}

.vx-crumb a:hover {
  color: #ffffff;
}

.vx-crumb [aria-current="page"] {
  color: #ffffff;
}

/* Cards & panels */
.vx-content-box {
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}

.vx-card-spotlight {
  border-radius: 1rem;
  border: 2px solid #2563eb;
  background: linear-gradient(145deg, #ffffff 0%, #eff6ff 100%);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.12);
}

.vx-info-tile {
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  padding: 1.25rem;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.vx-info-tile:hover {
  transform: translateY(-2px);
  border-color: #bfdbfe;
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.1);
}

.vx-band-muted {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.vx-band-light {
  background: #ffffff;
}

/* Spec / data tables */
.vx-spec-grid {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.875rem;
}

.vx-spec-grid thead th {
  padding: 0.75rem 1rem;
  font-weight: 600;
  color: #050a30;
  border-bottom: 2px solid #0b1f6d;
}

.vx-spec-grid tbody td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #e2e8f0;
  color: #64748b;
  vertical-align: top;
}

.vx-spec-grid tbody td:first-child {
  font-weight: 600;
  color: #050a30;
}

.vx-spec-grid-wrap {
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}

.vx-compare-grid-wrap {
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
}

.vx-compare-grid {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.875rem;
}

.vx-compare-grid thead th {
  padding: 1rem 1.25rem;
  font-weight: 600;
  background: #050a30;
  color: #ffffff;
}

.vx-compare-grid tbody td {
  padding: 1rem 1.25rem;
  vertical-align: top;
  border-bottom: 1px solid #e2e8f0;
  color: #64748b;
}

.vx-compare-grid tbody tr:last-child td {
  border-bottom: none;
}

.vx-compare-grid tbody tr:nth-child(even) td {
  background: #f8fafc;
}

.vx-compare-grid tbody tr:hover td {
  background: #f1f5f9;
}

.vx-compare-grid tbody td:first-child {
  font-weight: 600;
  color: #050a30;
}

/* FAQ accordion */
.vx-faq-zone {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.vx-acc-stack {
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  transition: box-shadow 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}

.vx-acc-stack:hover {
  border-color: #bfdbfe;
  box-shadow: 0 24px 56px rgba(37, 99, 235, 0.12);
}

.vx-acc-row {
  position: relative;
  border-bottom: 1px solid #e2e8f0;
  transition: background 0.25s ease;
}

.vx-acc-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #2563eb 0%, #60a5fa 100%);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.vx-acc-row:last-child {
  border-bottom: none;
}

.vx-acc-row:hover:not(.vx-acc-row-open) {
  background: #f8fafc;
}

.vx-acc-row.vx-acc-row-open {
  background: linear-gradient(180deg, #eff6ff 0%, #ffffff 100%);
}

.vx-acc-row.vx-acc-row-open::before {
  transform: scaleY(1);
}

[data-vx-acc-btn] {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.125rem 1.5rem;
  text-align: left;
  font-weight: 600;
  color: #050a30;
  transition: color 0.2s ease, padding-left 0.25s ease;
}

[data-vx-acc-btn]:hover {
  color: #2563eb;
}

.vx-acc-row-open [data-vx-acc-btn] {
  color: #1d4ed8;
}

.vx-acc-chevron {
  flex-shrink: 0;
  height: 1.25rem;
  width: 1.25rem;
  padding: 0.375rem;
  box-sizing: content-box;
  border-radius: 9999px;
  background: #f1f5f9;
  color: #94a3b8;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), color 0.2s ease, background 0.2s ease;
}

[data-vx-acc-btn]:hover .vx-acc-chevron {
  background: #dbeafe;
  color: #2563eb;
}

[data-vx-acc-btn][aria-expanded="true"] .vx-acc-chevron {
  transform: rotate(180deg);
  background: #dbeafe;
  color: #2563eb;
}

[data-vx-acc-panel] {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 1.5rem;
  transition:
    max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.3s ease,
    padding 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-vx-acc-panel].vx-acc-open {
  opacity: 1;
  padding: 0 1.5rem 1.25rem 1.5rem;
}

.vx-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  border-radius: 0.5rem;
  border: 1px solid #2563eb;
  background: #ffffff;
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #2563eb;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.vx-cta-outline:hover {
  transform: translateY(-2px);
  border-color: #1d4ed8;
  background: #eff6ff;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.2);
}

.vx-cta-outline:active {
  transform: translateY(0);
}

.vx-cta-arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}

.vx-cta-outline:hover .vx-cta-arrow {
  transform: translateX(4px);
}

/* FAQ page — individual question cards */
.vx-faq-app .vx-faq-nav {
  max-width: 36rem;
  margin-bottom: 1.75rem;
}

.vx-faq-app .vx-acc-stack {
  border: none;
  background: transparent;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  overflow: visible;
}

.vx-faq-app .vx-acc-stack:hover {
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

.vx-faq-app .vx-acc-row {
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
  overflow: hidden;
  scroll-margin-top: 6rem;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, border-color 0.3s ease, background 0.25s ease;
}

.vx-faq-app .vx-acc-row:last-child {
  border-bottom: 1px solid #e2e8f0;
}

.vx-faq-app .vx-acc-row:hover:not(.vx-acc-row-open) {
  transform: translateY(-3px);
  border-color: #bfdbfe;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(37, 99, 235, 0.12);
}

.vx-faq-app .vx-acc-row.vx-acc-row-open {
  border-color: #93c5fd;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 55%);
  box-shadow: 0 18px 44px rgba(37, 99, 235, 0.14);
}

.vx-faq-trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-weight: 600;
  color: #050a30;
  transition: color 0.2s ease;
}

.vx-faq-trigger:hover {
  color: #2563eb;
}

.vx-faq-app .vx-acc-row-open .vx-faq-trigger {
  color: #1d4ed8;
}

.vx-faq-index {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.25rem;
  width: 2.25rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #2563eb 0%, #60a5fa 100%);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.vx-faq-app .vx-acc-row:hover .vx-faq-index {
  transform: scale(1.06);
}

.vx-faq-app .vx-acc-row-open .vx-faq-index {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

.vx-faq-label {
  flex: 1;
  min-width: 0;
  font-size: 0.9375rem;
  line-height: 1.45;
}

.vx-faq-app .vx-acc-row::before {
  width: 4px;
  border-radius: 0 4px 4px 0;
}

.vx-faq-app [data-vx-acc-panel] {
  padding: 0 1.5rem 0 4.75rem;
}

.vx-faq-app [data-vx-acc-panel].vx-acc-open {
  padding: 0 1.5rem 1.35rem 4.75rem;
}

.vx-faq-body a.vx-link-accent {
  font-weight: 600;
}

html[dir="rtl"] .vx-faq-app [data-vx-acc-panel],
html[dir="rtl"] .vx-faq-app [data-vx-acc-panel].vx-acc-open {
  padding-left: 1.5rem;
  padding-right: 4.75rem;
}

html[dir="rtl"] .vx-faq-app .vx-acc-row::before {
  left: auto;
  right: 0;
  border-radius: 4px 0 0 4px;
}

/* ========== Trust page effects ========== */
.vx-trust-hero-icon {
  position: relative;
  margin: 2.5rem auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 9rem;
  height: 9rem;
}

.vx-shield-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  animation: trust-shield-pulse 4s ease-in-out infinite;
}

.vx-shield-glyph {
  position: relative;
  z-index: 1;
  height: 4.5rem;
  width: 4.5rem;
  color: #ffffff;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.2));
}

@keyframes trust-shield-pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.08); opacity: 0.85; }
}

.vx-trust-app .vx-trust-row {
  margin-bottom: 1.75rem;
}

.vx-trust-nav {
  max-width: 42rem;
  margin: 0 auto 0.5rem;
}

.vx-trust-block {
  scroll-margin-top: 6rem;
}

.vx-section-badge {
  display: inline-block;
  border-radius: 0.25rem;
  background: #2563eb;
  padding: 0.125rem 0.5rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #ffffff;
}

.vx-badge-warn {
  background: #d97706;
}

.vx-badge-secure {
  background: #059669;
}

.vx-point-ul {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
}

.vx-point-line {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border-radius: 0.875rem;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  padding: 1rem 1.15rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #64748b;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.vx-point-line:hover {
  transform: translateX(4px);
  border-color: #93c5fd;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.08);
}

.vx-point-row-alert {
  border-color: #fde68a;
  background: linear-gradient(180deg, #fffbeb 0%, #ffffff 100%);
}

.vx-point-row-alert:hover {
  border-color: #fbbf24;
  box-shadow: 0 8px 24px rgba(217, 119, 6, 0.12);
}

html[dir="rtl"] .vx-point-line:hover {
  transform: translateX(-4px);
}

.vx-point-glyph {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.25rem;
  width: 2.25rem;
  border-radius: 0.625rem;
  margin-top: 0.05rem;
  transition: transform 0.3s ease;
}

.vx-point-glyph svg {
  height: 1.125rem;
  width: 1.125rem;
}

.vx-point-line:hover .vx-point-glyph {
  transform: scale(1.08);
}

.vx-point-glyph-blue {
  background: #dbeafe;
  color: #2563eb;
}

.vx-point-glyph-indigo {
  background: #e0e7ff;
  color: #4f46e5;
}

.vx-point-glyph-sky {
  background: #e0f2fe;
  color: #0284c7;
}

.vx-point-glyph-slate {
  background: #f1f5f9;
  color: #475569;
}

.vx-point-glyph-warn {
  background: #fef3c7;
  color: #d97706;
}

.vx-point-glyph-mint {
  background: #d1fae5;
  color: #059669;
}

.vx-info-tile {
  position: relative;
  padding-top: 2.75rem;
}

.vx-info-glyph {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2rem;
  width: 2rem;
  border-radius: 0.5rem;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
}

.vx-info-glyph svg {
  height: 1rem;
  width: 1rem;
}

html[dir="rtl"] .vx-info-glyph {
  left: auto;
  right: 1.25rem;
}

.vx-verify-steps {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  max-width: 42rem;
}

.vx-verify-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border-radius: 0.875rem;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  padding: 1rem 1.15rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #64748b;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.vx-verify-step:hover {
  transform: translateX(4px);
  border-color: #93c5fd;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.08);
}

.vx-verify-step .vx-step-badge {
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.vx-trust-note {
  border-left: 3px solid #93c5fd;
  padding-left: 1rem;
}

html[dir="rtl"] .vx-trust-note {
  border-left: none;
  border-right: 3px solid #93c5fd;
  padding-left: 0;
  padding-right: 1rem;
}

.vx-disclaimer-ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
}

.vx-disclaimer-ul li {
  position: relative;
  padding-left: 1.5rem;
}

.vx-disclaimer-ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 50%;
  background: #60a5fa;
}

html[dir="rtl"] .vx-disclaimer-ul li {
  padding-left: 0;
  padding-right: 1.5rem;
}

html[dir="rtl"] .vx-disclaimer-ul li::before {
  left: auto;
  right: 0;
}

html[dir="rtl"] .vx-verify-step:hover {
  transform: translateX(-4px);
}

/* Timeline */
.vx-timeline-node {
  position: relative;
  padding-left: 1.5rem;
}

.vx-timeline-node::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2563eb;
}

.vx-timeline-node::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 1.25rem;
  bottom: -1rem;
  width: 2px;
  background: #e2e8f0;
}

.vx-timeline-node:last-child::after {
  display: none;
}

/* Window chrome preview */
.vx-win-frame {
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.12);
}

.window-titlebar {
  background: #2d2d2d;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.window-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

/* Step badges */
.vx-step-badge {
  display: flex;
  height: 2rem;
  width: 2rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffff;
}

.vx-vx-step-badge-alt {
  background: linear-gradient(135deg, #050a30 0%, #0b1f6d 100%);
}

/* CTA band */
.vx-cta-strip {
  background: linear-gradient(135deg, #0b1f6d 0%, #1d4ed8 100%);
  color: #ffffff;
}

/* Feature list icons */
.feature-list-icon {
  height: 1.5rem;
  width: 1.5rem;
  flex-shrink: 0;
  color: #2563eb;
}

/* Hash block */
.vx-hash-box {
  display: block;
  word-break: break-all;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  padding: 0.75rem 1rem;
  font-family: ui-monospace, monospace;
  font-size: 0.75rem;
  color: #0b1f6d;
}

/* ========== Download page effects ========== */
.vx-dl-hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.vx-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.12);
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  animation: vx-hero-tag-float 4s ease-in-out infinite;
}

.vx-hero-tag:nth-child(2) { animation-delay: 0.4s; }
.vx-hero-tag:nth-child(3) { animation-delay: 0.8s; }

.vx-tag-glyph {
  height: 0.875rem;
  width: 0.875rem;
  color: #93c5fd;
}

@keyframes vx-hero-tag-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.vx-btn-pulse {
  position: relative;
  animation: download-btn-glow 2.5s ease-in-out infinite;
}

@keyframes download-btn-glow {
  0%, 100% { box-shadow: 0 8px 28px rgba(37, 99, 235, 0.35); }
  50% { box-shadow: 0 12px 40px rgba(37, 99, 235, 0.55), 0 0 0 4px rgba(147, 197, 253, 0.25); }
}

.vx-hero-orbit {
  position: relative;
  margin: 2.5rem auto 0;
  max-width: 20rem;
  perspective: 800px;
}

.vx-orbit-ring {
  position: absolute;
  inset: -12%;
  border-radius: 1.25rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  animation: download-orbit-spin 12s linear infinite;
}

.vx-orbit-shot {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 0.875rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  animation: download-screenshot-float 5s ease-in-out infinite;
}

@keyframes download-orbit-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes download-screenshot-float {
  0%, 100% { transform: translateY(0) rotateX(2deg); }
  50% { transform: translateY(-8px) rotateX(-2deg); }
}

.vx-trust-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin: 0 auto 1.5rem;
  max-width: 56rem;
}

@media (min-width: 640px) {
  .vx-trust-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.vx-trust-chip {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border-radius: 0.875rem;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  padding: 0.75rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #334155;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.vx-trust-chip:hover {
  transform: translateY(-2px);
  border-color: #93c5fd;
  box-shadow: 0 14px 32px rgba(37, 99, 235, 0.12);
}

.vx-trust-glyph {
  display: flex;
  height: 2rem;
  width: 2rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  color: #2563eb;
}

.vx-trust-glyph svg {
  height: 1rem;
  width: 1rem;
}

.vx-trust-glyph-ok {
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  color: #059669;
}

.vx-dl-card-aura {
  position: relative;
}

.vx-dl-card-aura::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: linear-gradient(120deg, #2563eb, #60a5fa, #93c5fd, #2563eb);
  background-size: 300% 300%;
  animation: download-gradient-shift 6s ease infinite;
  z-index: -1;
  opacity: 0.45;
}

@keyframes download-gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.vx-dl-spotlight {
  overflow: hidden;
}

.download-new-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  padding: 0.2rem 0.65rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  animation: download-badge-pulse 2s ease-in-out infinite;
}

@keyframes download-badge-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

.vx-dl-version {
  background: linear-gradient(135deg, #050a30 0%, #2563eb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.vx-dl-meta-line {
  transition: transform 0.2s ease, color 0.2s ease;
}

.vx-dl-meta-line:hover {
  transform: translateX(4px);
}

html[dir="rtl"] .vx-dl-meta-line:hover {
  transform: translateX(-4px);
}

.vx-spec-grid-animated tbody tr {
  transition: background 0.25s ease, transform 0.25s ease;
}

.vx-spec-grid-animated tbody tr:hover td {
  background: #eff6ff;
}

.download-timeline .vx-timeline-node {
  padding: 1rem 1rem 1rem 1.75rem;
  border-radius: 0.75rem;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.download-timeline .vx-timeline-node:hover {
  background: #f8fafc;
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
}

html[dir="rtl"] .download-timeline .vx-timeline-node:hover {
  transform: translateX(-4px);
}

.vx-timeline-active::before {
  animation: timeline-dot-pulse 2s ease-in-out infinite;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.2);
}

@keyframes timeline-dot-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.25); }
}

.vx-hash-wrap {
  position: relative;
}

.vx-hash-shine {
  position: relative;
  overflow: hidden;
  padding-right: 4.5rem;
}

.vx-hash-shine::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.08), transparent);
  animation: hash-shimmer 3s ease-in-out infinite;
}

@keyframes hash-shimmer {
  0% { left: -100%; }
  100% { left: 150%; }
}

.vx-hash-copy {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border-radius: 0.5rem;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  padding: 0.35rem 0.6rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #2563eb;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.vx-hash-copy:hover {
  background: #eff6ff;
  border-color: #93c5fd;
  transform: scale(1.03);
}

.vx-hash-copy.is-copied {
  background: #ecfdf5;
  border-color: #6ee7b7;
  color: #059669;
}

.vx-hash-copy-glyph {
  height: 0.875rem;
  width: 0.875rem;
}

.vx-dl-guard-card {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.vx-dl-guard-card:hover {
  transform: translateY(-4px) scale(1.01);
}

.vx-scroll-in,
.vx-scroll-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.vx-scroll-in.is-visible,
.vx-scroll-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.vx-scroll-in[data-vx-reveal-delay="1"],
.vx-scroll-in[data-vx-reveal-delay="1"] { transition-delay: 0.08s; }
.vx-scroll-in[data-vx-reveal-delay="2"],
.vx-scroll-in[data-vx-reveal-delay="2"] { transition-delay: 0.16s; }
.vx-scroll-in[data-vx-reveal-delay="3"],
.vx-scroll-in[data-vx-reveal-delay="3"] { transition-delay: 0.24s; }
.vx-scroll-in[data-vx-reveal-delay="4"],
.vx-scroll-in[data-vx-reveal-delay="4"] { transition-delay: 0.32s; }
.vx-scroll-in[data-vx-reveal-delay="5"],
.vx-scroll-in[data-vx-reveal-delay="5"] { transition-delay: 0.4s; }
.vx-scroll-in[data-vx-reveal-delay="6"],
.vx-scroll-in[data-vx-reveal-delay="6"] { transition-delay: 0.48s; }
.vx-scroll-in[data-vx-reveal-delay="7"],
.vx-scroll-in[data-vx-reveal-delay="7"] { transition-delay: 0.56s; }
.vx-scroll-in[data-vx-reveal-delay="8"],
.vx-scroll-in[data-vx-reveal-delay="8"] { transition-delay: 0.64s; }

@media (prefers-reduced-motion: reduce) {
  .vx-hero-tag,
  .vx-btn-pulse,
  .vx-orbit-ring,
  .vx-orbit-shot,
  .vx-guide-logo,
  .vx-shield-ring,
  .download-new-badge,
  .vx-hash-shine::after,
  .vx-timeline-active::before,
  .vx-dl-card-aura::before {
    animation: none !important;
  }

  .vx-scroll-in,
  .vx-scroll-in {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .vx-guide-step:hover,
  .vx-topic-chip:hover,
  .vx-guide-tip:hover,
  .vx-faq-app .vx-acc-row:hover:not(.vx-acc-row-open),
  .vx-point-line:hover,
  .vx-verify-step:hover {
    transform: none;
  }
}

/* ========== Guides page effects ========== */
.vx-topic-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 auto 1.5rem;
  max-width: 56rem;
}

.vx-topic-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 9999px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  padding: 0.45rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #334155;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.vx-topic-chip:hover {
  transform: translateY(-2px);
  border-color: #93c5fd;
  background: #eff6ff;
  color: #2563eb;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.14);
}

.vx-topic-chip svg {
  height: 0.875rem;
  width: 0.875rem;
  color: #2563eb;
}

.vx-guide-block {
  position: relative;
  scroll-margin-top: 6rem;
  background: #ffffff;
}

.guide-steps {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
}

.vx-guide-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border-radius: 0.875rem;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  padding: 1rem 1.1rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #64748b;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.vx-guide-step .vx-step-badge {
  flex-shrink: 0;
  margin-top: 0.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vx-guide-step:hover {
  transform: translateX(4px);
  border-color: #93c5fd;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.08);
}

html[dir="rtl"] .vx-guide-step:hover {
  transform: translateX(-4px);
}

.vx-guide-step:hover .vx-step-badge {
  transform: scale(1.08);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
}

.vx-guide-ol {
  margin-top: 1.5rem;
  counter-reset: guide-step;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.vx-guide-ol li {
  counter-increment: guide-step;
  position: relative;
  border-radius: 0.875rem;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  padding: 0.85rem 1rem 0.85rem 3rem;
  font-size: 0.9375rem;
  color: #64748b;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.vx-guide-ol li::before {
  content: counter(guide-step);
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  height: 1.5rem;
  width: 1.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  font-size: 0.6875rem;
  font-weight: 700;
  color: #ffffff;
}

html[dir="rtl"] .vx-guide-ol li {
  padding: 0.85rem 3rem 0.85rem 1rem;
}

html[dir="rtl"] .vx-guide-ol li::before {
  left: auto;
  right: 0.85rem;
}

.vx-guide-ol li:hover {
  transform: translateX(4px);
  border-color: #bfdbfe;
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.08);
}

html[dir="rtl"] .vx-guide-ol li:hover {
  transform: translateX(-4px);
}

.guide-tips-grid {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .guide-tips-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.vx-guide-tip {
  border-radius: 0.875rem;
  border: 1px solid #e2e8f0;
  background: linear-gradient(160deg, #f8fafc 0%, #ffffff 100%);
  padding: 1rem 1.1rem;
  font-size: 0.875rem;
  color: #64748b;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.vx-guide-tip:hover {
  transform: translateY(-3px);
  border-color: #93c5fd;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.1);
}

.vx-guide-orbit {
  position: relative;
  margin: 2.5rem auto 0;
  max-width: 12rem;
}

.vx-guide-logo {
  position: relative;
  z-index: 1;
  display: block;
  width: 11rem;
  height: 11rem;
  margin: 0 auto;
  border: none;
  border-radius: 0;
  object-fit: contain;
  box-shadow: none;
  animation: guide-logo-float 5s ease-in-out infinite;
}

@keyframes guide-logo-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.02); }
}

.vx-guide-orbit .vx-orbit-shot {
  animation-duration: 6s;
}

/* Floating download */
.vx-fab-dl {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vx-fab-dl:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(37, 99, 235, 0.55);
}

.vx-fab-dl:active {
  transform: translateY(0);
}

.vx-fab-dl svg {
  height: 1.125rem;
  width: 1.125rem;
  flex-shrink: 0;
}

@media (max-width: 639px) {
  .vx-fab-dl {
    bottom: 1rem;
    right: 1rem;
    padding: 0.875rem;
  }

  .vx-fab-dl span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vx-btn-accent:hover,
  .vx-btn-light:hover,
  .vx-fab-dl:hover,
  .vx-info-tile:hover,
  .vx-cta-outline:hover,
  .vx-cap-row:hover,
  .vx-use-tile:hover,
  .vx-surface-card:hover,
  .vx-gallery-tile:hover,
  .vx-gallery-tile:hover .vx-gallery-frame img {
    transform: none;
  }

  [data-vx-acc-panel],
  .vx-acc-chevron,
  .vx-acc-row::before,
  .vx-acc-stack {
    transition: none;
  }
}

/* ========== Language switcher ========== */
.vx-locale-menu {
  position: relative;
}

.vx-locale-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 0.5rem;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  padding: 0.45rem 0.65rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #0b1f6d;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.vx-locale-trigger:hover {
  border-color: #93c5fd;
  background: #f8fafc;
}

.vx-locale-globe {
  height: 1rem;
  width: 1rem;
  color: #2563eb;
}

.vx-locale-chev {
  height: 0.875rem;
  width: 0.875rem;
  color: #64748b;
  transition: transform 0.2s ease;
}

.vx-locale-trigger[aria-expanded="true"] .vx-locale-chev {
  transform: rotate(180deg);
}

.vx-locale-dropdown {
  position: absolute;
  top: calc(100% + 0.35rem);
  right: 0;
  z-index: 50;
  min-width: 10.5rem;
  list-style: none;
  margin: 0;
  padding: 0.35rem;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.14);
}

.vx-locale-dropdown[hidden] {
  display: none;
}

.vx-locale-dropdown a {
  display: block;
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #334155;
  transition: background 0.15s ease, color 0.15s ease;
}

.vx-locale-dropdown a:hover {
  background: #eff6ff;
  color: #0b1f6d;
}

.vx-locale-dropdown a[aria-current="true"] {
  background: #eff6ff;
  color: #2563eb;
  font-weight: 600;
}

.vx-footer-langs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
}

.vx-footer-langs a {
  font-size: 0.8125rem;
  color: #64748b;
  transition: color 0.2s ease;
}

.vx-footer-langs a:hover,
.vx-footer-langs a[aria-current="true"] {
  color: #0b1f6d;
}

.vx-footer-langs a[aria-current="true"] {
  font-weight: 600;
}

/* Chinese navigation letter-spacing */
html[lang="zh-CN"] .vx-nav-link,
html[lang="zh-CN"] #vx-mobile-drawer a,
html.lang-zh .vx-nav-link,
html.lang-zh #vx-mobile-drawer a {
  letter-spacing: 0.06em;
}

/* Russian button padding */
html[lang="ru"] .vx-btn-accent,
html[lang="ru"] .vx-btn-light,
html[lang="ru"] .vx-cta-outline,
html.lang-ru .vx-btn-accent,
html.lang-ru .vx-btn-light,
html.lang-ru .vx-cta-outline {
  padding-left: 1.35rem;
  padding-right: 1.35rem;
}

html[lang="ru"] .vx-btn-accent.sm\:px-5,
html.lang-ru .vx-btn-accent.sm\:px-5 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Arabic RTL */
html[dir="rtl"] {
  direction: rtl;
}

html[dir="rtl"] .vx-locale-dropdown {
  right: auto;
  left: 0;
}

html[dir="rtl"] .vx-fab-dl {
  right: auto;
  left: 1.5rem;
}

html[dir="rtl"] .vx-cap-row,
html[dir="rtl"] .vx-step-badge {
  flex-direction: row-reverse;
}

html[dir="rtl"] .vx-acc-chevron {
  transform: scaleX(-1);
}

html[dir="rtl"] .vx-acc-row-open .vx-acc-chevron {
  transform: scaleX(-1) rotate(180deg);
}

@media (max-width: 639px) {
  html[dir="rtl"] .vx-fab-dl {
    left: 1rem;
    right: auto;
  }
}
