/* =========================================================
   VYVEX SHARED THEME — Hot Pink × Liquid Glass × Spaced Fonts
   ========================================================= */

:root {
  --primary: #ff007f;
  --primary-dark: #cc0066;
  --primary-light: #ff4da6;
  --primary-glow: rgba(255, 0, 127, 0.45);
  --bg: #000;
  --bg-soft: #0a0a0a;
  --text: #ffffff;
  --text-dim: rgba(255,255,255,0.72);
  --text-faint: rgba(255,255,255,0.55);
  --border: rgba(255,255,255,0.08);
  --shadow: 0 8px 32px rgba(0,0,0,0.5);
  --glow: 0 0 25px rgba(255,0,127,0.35);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body { background: #000; color: #fff; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  min-height: 100vh;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(255,0,127,0.12), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(255,0,127,0.08), transparent 60%),
    #000;
}

::selection { background: var(--primary); color: #fff; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: rgba(255,0,127,0.35); border-radius: 9999px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ---------- Fonts ---------- */
.font-display {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.font-mono {
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.02em;
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.15;
}

p {
  letter-spacing: 0.015em;
  line-height: 1.75;
}

a { color: inherit; text-decoration: none; }

/* ---------- Layout ---------- */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}
.section { padding: 110px 0; }
.section-sm { padding: 70px 0; }

/* ---------- Liquid Glass ---------- */
.liquid-glass {
  background: rgba(255,255,255,0.025);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.1),
    0 10px 40px rgba(0,0,0,0.35);
  position: relative;
}
.liquid-glass-pink {
  background: linear-gradient(135deg, rgba(255,0,127,0.10), rgba(255,0,127,0.02));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,0,127,0.25);
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.12),
    0 12px 40px rgba(255,0,127,0.18);
}

/* ---------- Navbar ---------- */
.vx-nav {
  position: fixed;
  top: 18px; left: 0; right: 0;
  z-index: 1000;
  padding: 0 28px;
  transition: top .25s ease;
}
.vx-nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.vx-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: #fff;
  padding: 10px 16px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.vx-logo .dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 12px var(--primary-glow);
}
.vx-nav-links {
  display: flex; align-items: center; gap: 4px;
  padding: 6px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.vx-nav-links a {
  padding: 9px 16px;
  font-size: 13.5px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.78);
  border-radius: 9999px;
  transition: color .2s ease, background .2s ease;
}
.vx-nav-links a:hover { color: #fff; background: rgba(255,255,255,0.06); }
.vx-nav-links a.active { color: #fff; background: rgba(255,0,127,0.18); }
.vx-nav-cta {
  background: var(--primary);
  color: #fff !important;
  padding: 10px 20px !important;
  font-weight: 500;
  letter-spacing: 0.05em;
  box-shadow: 0 6px 24px rgba(255,0,127,0.45);
}
.vx-nav-cta:hover { background: var(--primary-light) !important; }
.vx-burger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  align-items: center; justify-content: center;
  cursor: pointer;
}
.vx-burger span {
  width: 18px; height: 1.5px; background: #fff;
  position: relative;
}
.vx-burger span::before, .vx-burger span::after {
  content: ''; position: absolute; left: 0; width: 18px; height: 1.5px; background: #fff;
}
.vx-burger span::before { top: -6px; }
.vx-burger span::after { top: 6px; }

@media (max-width: 960px) {
  .vx-nav-links { display: none; }
  .vx-burger { display: flex; }
}

/* ---------- Mobile drawer ---------- */
.vx-mobile {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.96);
  backdrop-filter: blur(20px);
  z-index: 1100;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 18px;
  transform: translateY(-100%);
  transition: transform .35s ease;
}
.vx-mobile.open { transform: translateY(0); }
.vx-mobile a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px;
  letter-spacing: 0.05em;
  color: #fff;
  padding: 10px 16px;
}
.vx-mobile a:hover { color: var(--primary); }
.vx-mobile .close {
  position: absolute; top: 24px; right: 24px;
  width: 44px; height: 44px; border-radius: 9999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 22px; cursor: pointer;
}

/* ---------- Hero ---------- */
.vx-hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center; justify-content: center;
  padding: 160px 28px 80px;
  text-align: center;
  overflow: hidden;
}
.vx-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 400px at 50% 0%, rgba(255,0,127,0.20), transparent 70%),
    radial-gradient(900px 500px at 80% 100%, rgba(255,0,127,0.10), transparent 70%);
  pointer-events: none;
}
.vx-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px 7px 8px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
}
.vx-eyebrow .pill {
  background: var(--primary);
  color: #fff;
  font-size: 11px; font-weight: 600;
  padding: 3px 10px; border-radius: 9999px;
  letter-spacing: 0.08em;
}
.vx-h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: clamp(44px, 6.5vw, 92px);
  letter-spacing: -0.02em;
  line-height: 1.02;
  margin: 0 auto 28px;
  max-width: 14ch;
}
.vx-h1 .accent {
  background: linear-gradient(120deg, #fff 0%, var(--primary-light) 50%, var(--primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-weight: 400;
}
.vx-lede {
  font-size: 17px;
  letter-spacing: 0.02em;
  line-height: 1.75;
  color: rgba(255,255,255,0.78);
  max-width: 600px;
  margin: 0 auto 40px;
}

/* ---------- Buttons ---------- */
.vx-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  border-radius: 9999px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.06em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .25s ease, background .25s ease;
}
.vx-btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 30px rgba(255,0,127,0.45);
}
.vx-btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(255,0,127,0.6);
}
.vx-btn-ghost {
  background: rgba(255,255,255,0.04);
  color: #fff;
  border-color: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
}
.vx-btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,0,127,0.5);
  transform: translateY(-2px);
}

.vx-cta-row {
  display: inline-flex; gap: 14px; flex-wrap: wrap;
  justify-content: center;
}

/* ---------- Section heading kit ---------- */
.vx-kicker {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
}
.vx-h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: clamp(34px, 4.5vw, 60px);
  letter-spacing: -0.018em;
  line-height: 1.1;
  margin-bottom: 22px;
}
.vx-h2 .accent { color: var(--primary); font-style: italic; font-weight: 400; }
.vx-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  max-width: 640px;
  line-height: 1.75;
  letter-spacing: 0.015em;
}

/* ---------- Cards ---------- */
.vx-card {
  background: rgba(255,255,255,0.025);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 32px;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.vx-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,0,127,0.45);
  box-shadow: 0 18px 50px rgba(255,0,127,0.18);
}
.vx-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.vx-card p {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  line-height: 1.75;
}

.vx-icon-box {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,0,127,0.25), rgba(255,0,127,0.05));
  border: 1px solid rgba(255,0,127,0.35);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 22px;
  margin-bottom: 22px;
}

.vx-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.vx-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
@media (max-width: 900px) {
  .vx-grid-3, .vx-grid-2 { grid-template-columns: 1fr; }
}

/* ---------- Page header (small hero on subpages) ---------- */
.vx-page-header {
  padding: 170px 28px 70px;
  text-align: center;
  position: relative;
}
.vx-page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(700px 380px at 50% 100%, rgba(255,0,127,0.18), transparent 70%);
  pointer-events: none;
}

/* ---------- Big CTA ---------- */
.vx-big-cta {
  position: relative;
  margin: 80px auto 0;
  max-width: 1240px;
  padding: 70px 40px;
  border-radius: 28px;
  text-align: center;
  background: linear-gradient(135deg, rgba(255,0,127,0.18), rgba(255,0,127,0.04));
  border: 1px solid rgba(255,0,127,0.35);
  box-shadow: 0 24px 80px rgba(255,0,127,0.18);
  overflow: hidden;
}
.vx-big-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(500px 300px at 50% 0%, rgba(255,0,127,0.30), transparent 70%);
  pointer-events: none;
}
@media (max-width: 768px) {
  .vx-big-cta {
    margin: 60px auto 0;
    padding: 50px 28px;
    border-radius: 22px;
  }
  .vx-cta-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  .vx-cta-row a {
    width: 100%;
    justify-content: center;
  }
}

/* ---------- Footer ---------- */
.vx-footer {
  margin-top: 100px;
  padding: 80px 28px 36px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, transparent, rgba(255,0,127,0.04));
}
.vx-footer-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
}
@media (max-width: 800px) {
  .vx-footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
.vx-footer h4 {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
}
.vx-footer a {
  display: block;
  color: rgba(255,255,255,0.65);
  font-size: 14.5px;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  transition: color .2s ease, transform .2s ease;
}
.vx-footer a:hover { color: var(--primary); transform: translateX(4px); }
.vx-footer-bottom {
  max-width: 1240px;
  margin: 50px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  letter-spacing: 0.04em;
}
.vx-social {
  display: flex; gap: 12px; margin-top: 18px;
}
.vx-social a {
  width: 40px; height: 40px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: #fff;
  margin: 0;
}
.vx-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
}

/* ---------- Form ---------- */
.vx-input, .vx-textarea, .vx-select {
  width: 100%;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  letter-spacing: 0.015em;
  outline: none;
  transition: border-color .2s ease, background .2s ease;
}
.vx-input:focus, .vx-textarea:focus, .vx-select:focus {
  border-color: var(--primary);
  background: rgba(255,0,127,0.05);
}
.vx-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
  font-family: 'JetBrains Mono', monospace;
}

/* ---------- Reveal-on-scroll ---------- */
.vx-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}
.vx-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- FAQ ---------- */
.vx-faq-item {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 22px 26px;
  margin-bottom: 14px;
  cursor: pointer;
  transition: border-color .25s ease, background .25s ease;
}
.vx-faq-item:hover { border-color: rgba(255,0,127,0.35); }
.vx-faq-q {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.vx-faq-q .plus {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,0,127,0.15);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: transform .25s ease, background .25s ease;
}
.vx-faq-item.open .vx-faq-q .plus { transform: rotate(45deg); background: var(--primary); color: #fff; }
.vx-faq-a {
  max-height: 0; overflow: hidden;
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  line-height: 1.75;
  transition: max-height .35s ease, margin-top .25s ease;
}
.vx-faq-item.open .vx-faq-a { max-height: 500px; margin-top: 14px; }

/* ---------- Pricing ---------- */
.vx-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 56px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
}
.vx-price .per { font-size: 16px; color: rgba(255,255,255,0.5); letter-spacing: 0.04em; }
.vx-tier-popular {
  background: linear-gradient(135deg, rgba(255,0,127,0.18), rgba(255,0,127,0.04));
  border-color: rgba(255,0,127,0.5);
  position: relative;
}
.vx-tier-popular::after {
  content: 'Most Popular';
  position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 9999px;
  box-shadow: 0 6px 20px rgba(255,0,127,0.5);
}
.vx-feature-list {
  list-style: none; padding: 0; margin: 24px 0;
}
.vx-feature-list li {
  padding: 8px 0;
  color: rgba(255,255,255,0.78);
  font-size: 15px;
  display: flex; align-items: center; gap: 12px;
  letter-spacing: 0.015em;
}
.vx-feature-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--primary-glow);
}

/* ---------- Map / Map iframe ---------- */
.vx-map {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
}
.vx-map iframe { width: 100%; height: 420px; display: block; filter: hue-rotate(310deg) saturate(0.4) brightness(0.7); }

/* ---------- Small utility ---------- */
.vx-text-center { text-align: center; }
.vx-max-3 { max-width: 720px; margin: 0 auto; }
