@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500&display=swap");

:root {
  --bg: #000000;
  --text: #f7f3eb;
  --muted: #c8bfb0;
  --muted-soft: #8d867b;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --panel: rgba(255, 255, 255, 0.03);
  --panel-deep: rgba(255, 255, 255, 0.015);
  --accent-a: #93d8ff;
  --accent-b: #6ca7ff;
  --accent-c: #ffd18d;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
}

body {
  background: #000000;
}

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

code,
pre {
  font-family: var(--font-mono);
}

.vx-site {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  overflow: clip;
}

.vx-ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.vx-ambient-grid {
  background: transparent;
  opacity: 0;
}

.vx-ambient-noise {
  background: transparent;
  opacity: 0;
}

.vx-ambient-glow-a,
.vx-ambient-glow-b {
  inset: auto;
  width: 34rem;
  height: 34rem;
  filter: blur(45px);
  opacity: 0;
}

.vx-ambient-glow-a {
  top: -10rem;
  right: -6rem;
  background: transparent;
  animation: driftA 18s ease-in-out infinite;
}

.vx-ambient-glow-b {
  bottom: -12rem;
  left: -7rem;
  background: transparent;
  animation: driftB 22s ease-in-out infinite;
}

@keyframes driftA {
  0%,
  100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-20px, 16px, 0); }
}

@keyframes driftB {
  0%,
  100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(24px, -16px, 0); }
}

.vx-nav,
.vx-main,
.vx-footer {
  width: min(1240px, calc(100vw - 5rem));
  margin-inline: auto;
}

.vx-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(14px);
  background: #000000;
}

.vx-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.vx-brand-mark {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.72rem;
  color: #051018;
  background: linear-gradient(145deg, var(--accent-a) 0%, var(--accent-b) 56%, var(--accent-c) 120%);
  border: 0;
  box-shadow: 0 0 24px rgba(147, 216, 255, 0.45);
}

.vx-brand-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1;
  letter-spacing: 0.02em;
}

.vx-nav-links,
.vx-nav-actions,
.vx-footer-right {
  display: flex;
  align-items: center;
}

.vx-nav-links {
  gap: 0.22rem;
}

.vx-nav-links a {
  color: var(--muted);
  font-size: 0.87rem;
  padding: 0.52rem 0.78rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: 180ms ease;
}

.vx-nav-links a:hover {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.vx-nav-actions {
  gap: 0.55rem;
}

.vx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.64rem 1.08rem;
  transition: 180ms ease;
  cursor: pointer;
}

.vx-btn-main {
  background: linear-gradient(145deg, var(--accent-a) 0%, var(--accent-b) 58%, var(--accent-c) 125%);
  color: #071119;
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 12px 36px rgba(108, 167, 255, 0.36);
}

.vx-btn-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(108, 167, 255, 0.46);
}

.vx-btn-ghost {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.vx-btn-ghost:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.06);
}

.vx-main {
  padding-top: 3.9rem;
  padding-bottom: 6rem;
}

.vx-hero,
.vx-page-hero,
.vx-stat-band,
.vx-grid-two,
.vx-grid-three,
.vx-code-showcase,
.vx-compare,
.vx-timeline {
  width: 100%;
}

.vx-hero {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 2.2rem;
  align-items: end;
}

.vx-hero-copy h1,
.vx-page-hero h1,
.vx-panel h2,
.vx-compare h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.06;
}

.vx-hero-copy h1 {
  font-size: clamp(3.2rem, 7.2vw, 7rem);
  max-width: 11.5ch;
}

.vx-page-hero {
  max-width: 66rem;
}

.vx-page-hero h1 {
  font-size: clamp(2.8rem, 5.6vw, 5.4rem);
  max-width: 13ch;
}

.vx-hero-copy p,
.vx-page-hero p,
.vx-panel p,
.vx-step p,
.vx-footer p {
  color: var(--muted);
  line-height: 1.9;
  font-size: 1.02rem;
}

.vx-eyebrow {
  margin: 0 0 1rem;
  color: #d9ecff;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  font-weight: 600;
}

.vx-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.vx-hero-stack {
  display: grid;
  gap: 0.95rem;
}

.vx-float-card,
.vx-panel,
.vx-step,
.vx-code-showcase,
.vx-compare article,
.vx-stat-band,
.vx-page-hero {
  border: 1px solid var(--line);
  background: #000000;
  border-radius: 1.6rem;
  box-shadow: var(--shadow);
}

.vx-page-hero {
  padding: 2rem 2rem 2.2rem;
}

.vx-float-card {
  padding: 1.18rem 1.2rem 1.25rem;
  transform-origin: center;
  animation: lift 7.5s ease-in-out infinite;
}

.vx-float-card span,
.vx-chip,
.vx-step span,
.vx-meta,
.vx-stat-band small {
  color: #d9ecff;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  font-weight: 600;
}

.vx-float-card h3 {
  margin: 0.42rem 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.1;
}

.vx-float-card p {
  margin: 0;
}

.delay-1 { animation-delay: 1.1s; }
.delay-2 { animation-delay: 2.2s; }

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

.vx-stat-band {
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
}

.vx-stat-band div {
  display: grid;
  gap: 0.25rem;
}

.vx-stat-band strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #eff7ff;
}

.vx-grid-two,
.vx-grid-three,
.vx-code-showcase,
.vx-compare,
.vx-timeline {
  margin-top: 2.25rem;
}

.vx-grid-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.vx-grid-three {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.vx-panel {
  padding: 1.4rem 1.45rem 1.5rem;
}

.vx-panel-wide {
  grid-column: span 2;
}

.vx-chip {
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.26rem 0.56rem;
  background: #000000;
}

.vx-panel h2 {
  margin-top: 0.7rem;
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
}

.vx-list {
  margin: 0.85rem 0 0;
  padding-left: 1.12rem;
  color: var(--muted);
  display: grid;
  gap: 0.52rem;
}

.vx-list li {
  line-height: 1.74;
}

.vx-code-showcase {
  padding: 1.15rem;
}

.vx-code-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted-soft);
  font-size: 0.85rem;
  padding: 0.25rem 0.35rem 0.8rem;
}

.vx-code-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.vx-code-grid pre,
.vx-compare pre {
  margin: 0;
  padding: 1rem 1.05rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #000000;
  color: #d7e0eb;
  line-height: 1.7;
  overflow-x: auto;
}

.k { color: #98d7ff; }
.n { color: #ffe3b5; }
.v { color: #b7ffa8; }
.r { color: #d5beff; }

.vx-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.vx-compare article {
  padding: 1.2rem;
}

.vx-compare h3 {
  margin-bottom: 0.8rem;
  font-size: 1.5rem;
}

.vx-timeline {
  display: grid;
  gap: 0.9rem;
}

.vx-step {
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  align-items: start;
  gap: 1rem;
  padding: 1rem 1.1rem;
}

.vx-step span {
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  background: #000000;
}

.vx-step h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.7rem;
}

.vx-step code,
.vx-page-hero code {
  display: inline-block;
  margin-top: 0.6rem;
  border: 1px solid var(--line);
  border-radius: 0.6rem;
  padding: 0.35rem 0.55rem;
  background: #000000;
  font-size: 0.85rem;
}

.vx-link-panel {
  transition: 180ms ease;
}

.vx-link-panel:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.28);
}

.vx-meta {
  margin-top: 0.35rem;
}

.vx-404 {
  min-height: 56vh;
  display: grid;
  align-content: center;
}

.vx-footer {
  margin-top: 2.2rem;
  margin-bottom: 2.1rem;
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  padding: 1.2rem 1.3rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.1rem;
  background: #000000;
}

.vx-footer-left p {
  margin: 0.9rem 0 0;
  max-width: 40rem;
}

.vx-footer-right {
  gap: 0.85rem;
}

.vx-footer-right a {
  color: var(--muted);
  font-size: 0.88rem;
}

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

@media (max-width: 1140px) {
  .vx-nav,
  .vx-main,
  .vx-footer {
    width: min(1240px, calc(100vw - 2.4rem));
  }

  .vx-hero {
    grid-template-columns: 1fr;
  }

  .vx-hero-copy h1 {
    max-width: 14ch;
  }
}

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

  .vx-grid-three,
  .vx-grid-two,
  .vx-compare,
  .vx-code-grid {
    grid-template-columns: 1fr;
  }

  .vx-panel-wide {
    grid-column: span 1;
  }

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

@media (max-width: 640px) {
  .vx-nav,
  .vx-main,
  .vx-footer {
    width: calc(100vw - 1.2rem);
  }

  .vx-nav {
    padding: 0.72rem 0.78rem;
  }

  .vx-brand-text {
    font-size: 1.15rem;
  }

  .vx-btn {
    padding: 0.54rem 0.82rem;
    font-size: 0.82rem;
  }

  .vx-page-hero,
  .vx-panel,
  .vx-step,
  .vx-code-showcase,
  .vx-compare article,
  .vx-stat-band {
    border-radius: 1.05rem;
  }

  .vx-page-hero,
  .vx-panel,
  .vx-step,
  .vx-code-showcase {
    padding: 1rem;
  }

  .vx-hero-copy h1 {
    font-size: clamp(2.3rem, 11vw, 3.2rem);
  }

  .vx-page-hero h1 {
    font-size: clamp(2rem, 10vw, 2.9rem);
  }

  .vx-step {
    grid-template-columns: 1fr;
  }

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

  .vx-footer-right {
    flex-wrap: wrap;
  }
}
