@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600&family=Cormorant+Garamond:ital,wght@0,400;0,500;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ── palette ───────────────────────────────────────────── */
:root {
  --bg: #060609;
  --bg-soft: #0a0a0f;
  --card: rgba(255,255,255,0.025);
  --card-hi: rgba(255,255,255,0.045);
  --line: rgba(255,255,255,0.08);
  --line-hi: rgba(255,255,255,0.16);
  --white: #f6f6fa;
  --silver: #c7c7d2;
  --muted: #8a8a97;
  --faint: #5c5c68;
  --violet: rgba(150,128,205,0.22);

  --serif: 'Cinzel', serif;
  --serif-text: 'Cormorant Garamond', serif;
  --sans: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--white);
  font-family: var(--sans);
  overflow-x: hidden;
}

a { text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

/* ── animations ────────────────────────────────────────── */
@keyframes zenith-bloom {
  0%, 100% { opacity: .55; transform: scale(1); }
  50%      { opacity: .85; transform: scale(1.04); }
}
@keyframes zenith-drift {
  0%   { transform: translateX(-2%) translateY(0); }
  50%  { transform: translateX(2%) translateY(-1.5%); }
  100% { transform: translateX(-2%) translateY(0); }
}
@keyframes zenith-rise {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.zx-reveal { opacity: 0; }
.zx-reveal.zx-in { animation: zenith-rise .9s cubic-bezier(.22,.61,.36,1) forwards; }

@media (prefers-reduced-motion: reduce) {
  .zx-reveal { opacity: 1 !important; animation: none !important; }
  .zx-streaks, .zx-bloom { animation: none !important; }
  .zx-hero-stage-logo img { animation: none !important; }
}

/* ── backdrop ──────────────────────────────────────────── */
.zx-backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.zx-streaks {
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(150,128,205,0.10) 0%, transparent 45%),
    radial-gradient(60% 40% at 20% 50%, rgba(255,255,255,0.03) 0%, transparent 60%),
    radial-gradient(60% 40% at 80% 60%, rgba(255,255,255,0.03) 0%, transparent 60%);
  animation: zenith-drift 22s ease-in-out infinite;
}
#zx-svg-lines {
  position: absolute;
  inset: 0;
  opacity: 0.5;
}
#zx-svg-lines path {
  fill: none;
  stroke: rgba(255,255,255,0.06);
  stroke-width: 1;
}
#zx-stars { position: absolute; inset: 0; }
#zx-stars span {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 4px rgba(255,255,255,0.6);
}

/* ── content wrapper ──────────────────────────────────── */
.zx-content { position: relative; z-index: 2; }

/* ── glow / luminous heading ──────────────────────────── */
.zx-glow { position: relative; display: inline-block; }
.zx-bloom {
  position: absolute;
  inset: -40% -18%;
  background: radial-gradient(ellipse at center, var(--violet) 0%, rgba(150,128,205,0.06) 38%, transparent 68%);
  filter: blur(26px);
  animation: zenith-bloom 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.zx-glow-text {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.05;
  background: linear-gradient(180deg, #ffffff 0%, #eaeaf1 42%, #b7b7c4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 34px rgba(220,220,255,0.18);
}

.zx-hero-giant-title {
  font-size: clamp(110px, 19vw, 340px);
  letter-spacing: 0.05em;
  white-space: nowrap;
  color: #ffffff;
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  text-shadow:
    0 0 14px rgba(255,255,255,0.95),
    0 0 32px rgba(255,255,255,0.7),
    0 0 66px rgba(210,200,255,0.6),
    0 0 130px rgba(170,150,240,0.4);
}
.zx-glow-h2 .zx-glow-text { font-size: 40px; letter-spacing: 0.08em; }
.zx-glow-hero-sm .zx-glow-text { font-size: 40px; letter-spacing: 0.14em; }
.zx-glow-footer .zx-glow-text { font-size: 26px; letter-spacing: 0.34em; }

.zx-how .zx-glow-h2 .zx-glow-text { font-size: 38px; letter-spacing: 0.06em; }

/* ── eyebrow ───────────────────────────────────────────── */
.zx-eyebrow-wrap { display: flex; justify-content: center; }
.zx-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--faint);
}
/* ── buttons ───────────────────────────────────────────── */
.zx-btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 999px;
  cursor: pointer;
  transition: all .35s ease;
}
.zx-btn-primary {
  color: #0b0b10;
  border: none;
  background: linear-gradient(180deg,#f2f2f7,#cfcfd9);
  box-shadow: 0 0 18px rgba(180,176,210,0.18), inset 0 1px 0 rgba(255,255,255,0.8);
}
.zx-btn-primary:hover {
  background: linear-gradient(180deg,#ffffff,#e6e6ee);
  box-shadow: 0 0 34px rgba(200,196,235,0.35), inset 0 1px 0 rgba(255,255,255,0.9);
}
.zx-btn-ghost {
  color: var(--silver);
  background: transparent;
  border: 1px solid var(--line);
}
.zx-btn-ghost:hover {
  color: var(--white);
  background: var(--card-hi);
  border-color: var(--line-hi);
}

/* ── header ────────────────────────────────────────────── */
.zx-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(20px, 6vw, 72px);
  max-width: 1240px;
  margin: 0 auto;
}
.zx-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.zx-nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--silver);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.zx-nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.zx-nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.zx-nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.zx-brand { display: flex; align-items: center; gap: 10px; }
.zx-brand-mark {
  height: 26px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 6px rgba(220,210,255,0.5));
}
.zx-logo {
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: 0.32em;
  font-weight: 500;
}
.zx-nav { display: flex; gap: 34px; margin-left: clamp(24px, 6vw, 90px); }
.zx-nav a {
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.zx-header-actions { display: flex; align-items: center; gap: 14px; }
.zx-header-btn { transform: scale(0.92); }
.zx-header-discord { transform: scale(0.92); padding: 12px 22px; }

/* ── hero ──────────────────────────────────────────────── */
.zx-hero {
  position: relative;
  text-align: center;
  padding: clamp(12px, 3vh, 48px) 20px clamp(50px, 8vh, 100px);
  max-width: 1180px;
  margin: 0 auto;
}

/* ── hero stage (giant wordmark + logo behind the girl) ──── */
.zx-hero-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(360px, 58vh, 680px);
  margin-bottom: 4px;
}

/* logo: furthest back layer, ultra large, dimmed for contrast.
   Shifted above true center so its bottom stays clear of the zone
   where the girl's image fades out at the waist -- otherwise the
   logo shows through her translucent lower edge and looks misplaced. */
.zx-hero-stage-logo {
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 38%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.zx-hero-stage-logo img {
  width: clamp(420px, 52vw, 900px);
  height: auto;
  display: block;
  opacity: 0.42;
  filter: brightness(0.5)
    drop-shadow(0 0 18px rgba(200,190,255,0.18));
  animation: zenith-logo-spin 40s linear infinite;
}
@keyframes zenith-logo-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* a soft dark pool sitting between the logo and the wordmark, so the
   text reads with contrast without flattening the logo into it */
.zx-hero-giant-title-shadow {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(720px, 88vw, 1500px);
  height: clamp(240px, 32vw, 520px);
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.68) 0%, rgba(0,0,0,0.38) 45%, transparent 78%);
  filter: blur(35px);
  pointer-events: none;
}

/* wordmark: extremely large, behind the girl, in front of the shadow pool */
.zx-hero-giant-title-wrap {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

/* the girl: front layer, centered and dominant */
.zx-hero-stage-girl {
  position: relative;
  z-index: 3;
  pointer-events: none;
}
.zx-hero-stage-girl img {
  max-height: clamp(720px, 108vh, 1320px);
  width: auto;
  display: block;
  /* a single, tight contact shadow -- large-blur drop-shadows here were
     getting clipped to a visible rectangle around the whole image */
  filter: saturate(0.9) brightness(0.98) drop-shadow(0 18px 26px rgba(0,0,0,0.4));
  /* the source art is cropped flat at the waist: fade it into a soft
     bar instead of showing a hard cutoff at the bottom edge */
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 80%, transparent 97%);
  mask-image: linear-gradient(to bottom, black 0%, black 80%, transparent 97%);
}
.zx-eyebrow-wrap.zx-reveal { margin-bottom: 30px; }
.zx-hero-sub {
  font-family: var(--serif-text);
  font-size: 21px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--silver);
  max-width: 560px;
  margin: 0 auto 40px;
  font-style: italic;
}
.zx-hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── section headings ─────────────────────────────────── */
.zx-section-head { margin-bottom: 46px; }
.zx-section-head.zx-center { display: flex; flex-direction: column; align-items: center; }
.zx-underline { width: 54px; height: 2px; background: var(--line-hi); margin-top: 18px; }

/* ── features ──────────────────────────────────────────── */
.zx-features {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 clamp(20px,6vw,48px) 120px;
}
.zx-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.zx-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 30px 28px;
  transition: all .4s ease;
}
.zx-card:hover {
  background: var(--card-hi);
  border-color: var(--line-hi);
  box-shadow: 0 0 40px rgba(150,128,205,0.08);
}
.zx-card-head {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 26px;
}
.zx-card-glow {
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background: radial-gradient(circle, var(--violet) 0%, transparent 70%);
  filter: blur(11px);
  opacity: 0.7;
  transition: opacity .4s ease;
  pointer-events: none;
}
.zx-card:hover .zx-card-glow { opacity: 1; }
.zx-icon {
  position: relative;
  display: inline-flex;
  filter: drop-shadow(0 0 7px rgba(220,220,255,0.28));
}
.zx-macro-icon {
  position: relative;
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  padding: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(246,246,250,0.95), rgba(208,208,218,0.85));
  box-shadow: 0 0 22px rgba(150,128,205,0.18), inset 0 1px 0 rgba(255,255,255,0.9);
}
.zx-macro-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.zx-card-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.14), transparent);
  transition: background .4s ease;
}
.zx-card:hover .zx-card-rule {
  background: linear-gradient(90deg, rgba(255,255,255,0.24), transparent);
}
.zx-card-title {
  font-family: var(--serif-text);
  font-size: 24px;
  font-weight: 500;
  color: var(--white);
  margin: 0 0 12px;
  letter-spacing: 0.01em;
}
.zx-card-body {
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}
.zx-card-body strong {
  color: var(--white);
  font-weight: 600;
}

.zx-features-grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.zx-features .zx-eyebrow-wrap { margin-bottom: 14px; }
.zx-features .zx-section-head { margin-bottom: 40px; }

/* ── interface (screenshot carousel) ──────────────────── */
.zx-interface {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 6vw, 48px) 120px;
  text-align: center;
}
.zx-interface .zx-eyebrow-wrap { margin-bottom: 14px; }
.zx-interface .zx-section-head { margin-bottom: 50px; }

.zx-carousel { position: relative; }

.zx-carousel-track {
  display: flex;
  gap: 26px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 4px 8px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.zx-carousel-track::-webkit-scrollbar { display: none; }

.zx-carousel-slide {
  position: relative;
  flex: 0 0 min(900px, 84vw);
  aspect-ratio: 894 / 628;
  scroll-snap-align: center;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  padding: 0;
  cursor: zoom-in;
  transition: border-color .4s ease, box-shadow .4s ease;
}
.zx-carousel-slide:hover,
.zx-carousel-slide:focus-visible {
  border-color: var(--line-hi);
  box-shadow: 0 0 70px rgba(150,128,205,0.18);
  outline: none;
}
.zx-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.zx-carousel-slide:hover img { transform: scale(1.025); }
.zx-carousel-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 44px 24px 18px;
  background: linear-gradient(to top, rgba(6,6,9,0.88), transparent);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  text-align: left;
}

.zx-carousel-arrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line-hi);
  background: rgba(6,6,9,0.65);
  backdrop-filter: blur(6px);
  color: var(--silver);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .3s ease;
  z-index: 2;
}
.zx-carousel-arrow:hover {
  background: var(--card-hi);
  border-color: var(--white);
  color: var(--white);
  box-shadow: 0 0 24px rgba(150,128,205,0.25);
}
.zx-carousel-prev { left: 6px; }
.zx-carousel-next { right: 6px; }

.zx-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 22px;
}
.zx-carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 4px;
  background: var(--line-hi);
  cursor: pointer;
  transition: all .3s ease;
}
.zx-carousel-dot:hover { background: var(--silver); }
.zx-carousel-dot.is-active { width: 24px; background: var(--silver); }

/* ── screenshot lightbox ───────────────────────────────── */
.zx-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6,6,9,0.92);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  padding: 50px 24px;
}
.zx-lightbox.is-open { opacity: 1; pointer-events: auto; }
.zx-lightbox-img {
  max-width: min(1500px, 92vw);
  max-height: 84vh;
  width: auto;
  height: auto;
  display: block;
  border-radius: 14px;
  border: 1px solid var(--line-hi);
  box-shadow: 0 0 120px rgba(150,128,205,0.22), 0 40px 90px rgba(0,0,0,0.6);
}
.zx-lightbox-caption {
  position: absolute;
  bottom: 26px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--silver);
}
.zx-lightbox-close {
  position: absolute;
  top: 22px;
  right: 26px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-hi);
  background: rgba(255,255,255,0.04);
  color: var(--white);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
}
.zx-lightbox-close:hover { background: var(--card-hi); box-shadow: 0 0 20px rgba(150,128,205,0.2); }

/* ── featured card (ASM Mode) ─────────────────────────── */
.zx-card-featured {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  border-color: var(--line-hi);
  box-shadow: 0 0 50px rgba(150,128,205,0.12);
  overflow: hidden;
}
.zx-card-featured-glow {
  position: absolute;
  top: -60px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(150,128,205,0.20), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}
.zx-card-featured-badge {
  position: absolute;
  top: 20px;
  right: 22px;
  font-family: var(--sans);
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
  border: 1px solid var(--line-hi);
  border-radius: 999px;
  padding: 5px 11px;
}

/* ── stats strip ───────────────────────────────────────── */
.zx-stats-wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 clamp(20px,6vw,48px) 100px;
}
.zx-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 28px;
  padding: 40px clamp(16px,4vw,40px);
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.zx-stat-num {
  font-family: var(--serif-text);
  font-weight: 500;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1;
  background: linear-gradient(180deg, #ffffff 0%, #eaeaf1 42%, #b7b7c4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 30px rgba(220,220,255,0.18);
}
.zx-stat-label {
  margin-top: 12px;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
}

/* ── how it works ──────────────────────────────────────── */
.zx-how {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.zx-how-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 100px clamp(20px,6vw,48px);
  text-align: center;
}
.zx-how .zx-eyebrow-wrap { margin-bottom: 14px; }
.zx-how .zx-section-head { margin-bottom: 66px; }
.zx-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 44px;
}
.zx-step-num {
  font-family: var(--serif);
  font-size: 58px;
  font-weight: 400;
  color: transparent;
  -webkit-text-stroke: 1px var(--faint);
  line-height: 1;
  margin-bottom: 16px;
}
.zx-step-title {
  font-family: var(--serif-text);
  font-size: 25px;
  font-weight: 500;
  color: var(--white);
  margin: 0 0 12px;
}
.zx-step-body {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 auto;
  max-width: 260px;
}

/* ── access / pricing ─────────────────────────────────── */
.zx-access {
  max-width: 940px;
  margin: 0 auto;
  padding: 110px clamp(20px,6vw,48px) 120px;
  text-align: center;
}
.zx-access .zx-section-head { margin-bottom: 16px; }
.zx-access-sub {
  font-family: var(--sans);
  font-size: 14.5px;
  color: var(--muted);
  margin-bottom: 56px;
  letter-spacing: 0.02em;
}
.zx-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  text-align: left;
}
.zx-plan {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 40px 34px;
  overflow: hidden;
}
.zx-plan-kicker {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 18px;
}
.zx-plan-price {
  font-family: var(--serif-text);
  font-size: 40px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 26px;
}
.zx-plan-list { display: grid; gap: 14px; margin: 0 0 32px; }
.zx-plan-list li {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--silver);
  display: flex;
  gap: 12px;
}
.zx-check { color: var(--muted); }

.zx-plan-elite {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  border: 1px solid var(--line-hi);
  box-shadow: 0 0 60px rgba(150,128,205,0.12);
}
.zx-plan-glow {
  position: absolute;
  top: -60px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(150,128,205,0.20), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}
.zx-plan-badge {
  position: absolute;
  top: 20px;
  right: 22px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--silver);
  border: 1px solid var(--line-hi);
  border-radius: 999px;
  padding: 5px 12px;
}
.zx-plan-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}
.zx-plan-price-row .zx-plan-price { margin-bottom: 0; }
.zx-plan-lifetime {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.zx-plan-alt {
  font-family: var(--sans);
  font-size: 12.5px;
  color: var(--muted);
  margin: 0 0 26px;
}
.zx-dl-desc {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 24px;
}
.zx-plan-list-elite li { color: var(--white); }
.zx-diamond { color: var(--silver); }

/* ── footer ────────────────────────────────────────────── */
.zx-footer {
  border-top: 1px solid var(--line);
  text-align: center;
  padding: 60px 20px 48px;
}
.zx-footer-logo-wrap { display: flex; justify-content: center; margin-bottom: 24px; }
.zx-footer-links {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.zx-footer-links a {
  font-family: var(--sans);
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.zx-footer-copy {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
}

/* ── legal pages ───────────────────────────────────────── */
.zx-legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(20px, 6vw, 72px);
  max-width: 900px;
  margin: 0 auto;
}
.zx-legal-back {
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.zx-legal-back:hover { color: var(--white); }
.zx-legal-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px clamp(20px, 6vw, 48px) 140px;
}
.zx-legal-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 18px;
}
.zx-legal-updated {
  font-family: var(--sans);
  font-size: 12.5px;
  color: var(--muted);
  margin: 14px 0 60px;
}
.zx-legal-wrap h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 5vw, 48px);
  letter-spacing: 0.03em;
  line-height: 1.15;
  margin: 0;
  background: linear-gradient(180deg, #ffffff 0%, #eaeaf1 42%, #b7b7c4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.zx-legal-wrap h2 {
  font-family: var(--serif-text);
  font-weight: 500;
  font-size: 24px;
  color: var(--white);
  margin: 52px 0 16px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.zx-legal-wrap h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.zx-legal-wrap p {
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--muted);
  margin: 0 0 16px;
}
.zx-legal-wrap ul {
  margin: 0 0 16px;
  padding-left: 20px;
  display: grid;
  gap: 10px;
}
.zx-legal-wrap li {
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--muted);
}
.zx-legal-wrap strong { color: var(--silver); font-weight: 600; }
.zx-legal-wrap a { color: var(--silver); border-bottom: 1px solid var(--line-hi); }
.zx-legal-wrap a:hover { color: var(--white); }

/* ── responsive tweaks ─────────────────────────────────── */

/* tablets and below: collapse the nav into a toggled dropdown */
@media (max-width: 1024px) {
  .zx-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 5;
    flex-direction: column;
    gap: 0;
    margin-left: 0;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--line);
    padding: 0 clamp(20px, 6vw, 72px);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height .35s ease, opacity .3s ease;
  }
  .zx-nav.zx-nav-open {
    max-height: 420px;
    opacity: 1;
    pointer-events: auto;
    padding-top: 8px;
    padding-bottom: 14px;
  }
  .zx-nav a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
  }
  .zx-nav-toggle { display: flex; }
}

/* small tablets / large phones */
@media (max-width: 640px) {
  .zx-header-discord { display: none; }
  .zx-features-grid,
  .zx-features-grid-2,
  .zx-plans,
  .zx-stats,
  .zx-steps-grid {
    grid-template-columns: 1fr;
  }
  .zx-plan { padding: 32px 26px; }
  .zx-card { padding: 26px 22px; }
  .zx-carousel-arrow { width: 38px; height: 38px; }
  .zx-carousel-caption { padding: 34px 16px 14px; font-size: 12px; }
}

@media (max-width: 760px) {
  .zx-hero-stage { min-height: auto; display: block; }
  .zx-hero-stage-logo, .zx-hero-stage-girl, .zx-hero-giant-title-shadow { display: none; }
  .zx-hero-giant-title-wrap { position: relative; top: auto; left: auto; transform: none; }
  .zx-hero-giant-title { font-size: 56px; white-space: normal; letter-spacing: 0.12em; }
}

/* phones */
@media (max-width: 480px) {
  .zx-hero-giant-title { font-size: 42px; }
  .zx-hero-sub { font-size: 17px; }
  .zx-plan-price { font-size: 32px; }
  .zx-legal-header { flex-wrap: wrap; gap: 10px; }
}
