:root {
  --zx-mint: #9cff00;
  --zx-mint-2: #d7ff00;
  --zx-mint-3: #39ff14;
  --zx-purple: #6cff00;
  --zx-pink: #ff2fb3;
  --zx-blue: #20c9ff;
  --zx-bg: #03050d;
  --zx-line: rgba(148, 255, 215, .18);
  --zx-ink: #f6fff9;
  --zx-muted: #a4b3bd;
}

html { scroll-behavior: smooth; }
body {
  background:
    radial-gradient(circle at 18% 14%, rgba(156, 255, 0, .22), transparent 28%),
    radial-gradient(circle at 86% 20%, rgba(215, 255, 0, .18), transparent 30%),
    radial-gradient(circle at 78% 82%, rgba(57, 255, 20, .2), transparent 34%),
    #03050d !important;
  color: var(--zx-ink);
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(0, 255, 157, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 157, .045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 16%, #000, transparent 72%);
}
body::after {
  content: "";
  position: fixed;
  inset: -18%;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(110deg, transparent 0 34%, rgba(156, 255, 0, .12) 43%, rgba(215, 255, 0, .2) 50%, rgba(57, 255, 20, .11) 58%, transparent 68%),
    radial-gradient(circle at 50% 50%, rgba(156, 255, 0, .12), transparent 36%);
  mix-blend-mode: screen;
  filter: blur(14px);
  opacity: .72;
  animation: zxLightSweep 9s ease-in-out infinite alternate;
}

.zx-page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  color: var(--zx-ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.zx-shell { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.zx-nav {
  position: sticky;
  top: 0;
  z-index: 120;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  background: rgba(3, 5, 13, .68);
  backdrop-filter: blur(18px);
}
.zx-nav__inner { height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.zx-brand { display: inline-flex; align-items: center; color: #fff; text-decoration: none; }
.zx-brand img { display: block; width: 150px; height: auto; filter: drop-shadow(0 0 16px rgba(156, 255, 0, .26)); }
.zx-footer .zx-brand img { width: 118px; }
.zx-nav__links { display: flex; align-items: center; gap: 36px; }
.zx-nav__link { position: relative; color: #f4fff9; text-decoration: none; font-size: 13px; font-weight: 800; }
.zx-nav__link::after { content: ""; position: absolute; left: 0; right: 0; bottom: -12px; height: 2px; background: linear-gradient(90deg, transparent, var(--zx-mint), transparent); opacity: 0; transform: scaleX(.45); transition: .2s ease; }
.zx-nav__link:hover::after, .zx-nav__link--active::after { opacity: 1; transform: scaleX(1); }
.zx-nav__cta { display: flex; align-items: center; gap: 12px; }
.zx-cta { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 42px; padding: 0 22px; border-radius: 8px; border: 1px solid rgba(255,255,255,.16); color: #fff; text-decoration: none; font-size: 13px; font-weight: 900; cursor: pointer; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.zx-cta:hover { transform: translateY(-2px); }
.zx-cta--primary { color: #071000; border-color: rgba(156,255,0,.58); background: linear-gradient(110deg, var(--zx-mint), var(--zx-mint-2), var(--zx-mint-3), var(--zx-mint)); background-size: 220% 100%; box-shadow: 0 0 30px rgba(156, 255, 0, .34); animation: zxGradientFlow 4.5s ease-in-out infinite; }
.zx-cta--ghost, .zx-cta--secondary { background: rgba(255,255,255,.035); }
.zx-cta--secondary:hover, .zx-cta--ghost:hover { border-color: rgba(156,255,0,.52); box-shadow: 0 0 22px rgba(156,255,0,.18); }
.zx-cta--lg { min-height: 54px; padding: 0 28px; }
.zx-cta--block { width: 100%; }
.zx-nav__burger { width: 42px; height: 42px; display: none; place-items: center; border-radius: 8px; border: 1px solid rgba(255,255,255,.13); background: rgba(255,255,255,.05); color: #fff; }

.mobile-drawer-backdrop { position: fixed; inset: 0; z-index: 250; display: none; background: rgba(0,0,0,.66); backdrop-filter: blur(8px); }
.mobile-drawer-backdrop.open { display: block; }
.mobile-drawer { position: fixed; top: 0; right: 0; z-index: 260; width: min(360px, 88vw); height: 100vh; padding: 22px; transform: translateX(110%); transition: transform .28s ease; border-left: 1px solid var(--zx-line); background: rgba(5, 8, 18, .96); box-shadow: -20px 0 70px rgba(0,0,0,.45); }
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.mobile-drawer-close { width: 42px; height: 42px; border-radius: 8px; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.05); color: #fff; font-size: 26px; }
.mobile-drawer-links { display: grid; gap: 12px; margin-bottom: 24px; }
.mobile-drawer-links a { padding: 14px 0; color: #fff; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.08); font-weight: 800; }
.mobile-drawer-cta { display: grid; gap: 12px; }

.zx-hero { position: relative; padding: 62px 0 58px; overflow: hidden; }
.zx-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 66% 30%, rgba(156, 255, 0, .2), transparent 34%), radial-gradient(circle at 16% 68%, rgba(215, 255, 0, .11), transparent 32%), linear-gradient(180deg, transparent, rgba(3,5,13,.9)); pointer-events: none; }
.zx-hero__grid { position: relative; display: grid; grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr); align-items: center; gap: 52px; }
.zx-kicker { display: inline-flex; align-items: center; gap: 8px; width: fit-content; margin-bottom: 22px; padding: 7px 12px; border: 1px solid rgba(0,255,157,.35); border-radius: 999px; background: rgba(0,255,157,.08); color: var(--zx-mint); font-family: "JetBrains Mono", monospace; font-size: 11px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.zx-kicker::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--zx-mint); box-shadow: 0 0 14px var(--zx-mint); }
.zx-display { margin: 0; font-family: Anton, Impact, sans-serif; font-size: clamp(58px, 8vw, 112px); line-height: .92; letter-spacing: 0; font-style: italic; text-transform: uppercase; }
.zx-display span { display: block; text-shadow: 0 8px 36px rgba(0,0,0,.52); }
.zx-display .mint,
.zx-display .purple {
  color: transparent;
  background: linear-gradient(100deg, var(--zx-mint), var(--zx-mint-2), #fff86a, var(--zx-mint-3), var(--zx-mint));
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 22px rgba(156, 255, 0, .25));
  animation: zxGradientFlow 5s ease-in-out infinite;
}
.zx-lead { width: min(520px, 100%); margin: 24px 0 0; color: var(--zx-muted); font-size: 18px; line-height: 1.55; }
.zx-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.zx-pills { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.zx-pill { display: inline-flex; align-items: center; gap: 8px; min-height: 32px; padding: 0 12px; border: 1px solid rgba(255,255,255,.13); border-radius: 7px; background: rgba(255,255,255,.035); color: #c7d6d2; font-family: "JetBrains Mono", monospace; font-size: 11px; }
.zx-pill svg { color: var(--zx-mint); }

/* ---- Full-width showcase hero (replaces the old .zx-studio-card mock) ---- */
.zx-hero--showcase { padding: 84px 0 72px; isolation: isolate; }
/* Hero display + spotlight name use Montserrat Black Italic (reference font) */
.zx-hero--showcase .zx-display,
.zx-hero--showcase .zx-hero__spot-name { font-family: "Montserrat", "Arial Black", sans-serif; font-weight: 900; font-style: italic; }
.zx-hero--showcase .zx-hero__grid { grid-template-columns: minmax(0, 820px); justify-content: center; align-items: start; position: relative; z-index: 3; }
.zx-hero--showcase .zx-hero__copy { text-align: center; align-items: center; }
.zx-hero--showcase .zx-kicker { margin-left: auto; margin-right: auto; }
.zx-hero--showcase .zx-lead { margin-left: auto; margin-right: auto; }
.zx-hero--showcase .zx-actions,
.zx-hero--showcase .zx-pills { justify-content: center; }
.zx-hero--showcase .zx-hero__bg { position: absolute; inset: 0; z-index: 1; overflow: hidden; }
.zx-hero__slide { position: absolute; inset: 0; background-size: cover; background-position: center; filter: blur(3px) saturate(1.05) brightness(.72); transform: scale(1.04); opacity: 0; transition: opacity 1.1s ease; will-change: opacity; }
.zx-hero__slide.is-active { opacity: 1; }
.zx-hero--showcase::before { z-index: 2; opacity: .5; }
.zx-hero--showcase::after { content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none; background: linear-gradient(90deg, rgba(3,5,13,.72) 0%, rgba(3,5,13,.45) 50%, rgba(3,5,13,.20) 100%), linear-gradient(180deg, transparent 64%, rgba(3,5,13,.82)); }
.zx-hero__spotlight { display: inline-flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 14px; margin-top: 26px; padding: 12px 18px; border: 1px solid rgba(0,255,157,.28); border-radius: 12px; background: rgba(0,255,157,.06); backdrop-filter: blur(4px); }
.zx-hero__spot-name { font-family: Anton, Impact, sans-serif; font-style: italic; text-transform: uppercase; font-size: 22px; line-height: 1; color: #fff; }
.zx-hero__spot-name, .zx-hero__spot-cta { transition: opacity .25s ease; }
.zx-hero__spotlight.is-swapping .zx-hero__spot-name,
.zx-hero__spotlight.is-swapping .zx-hero__spot-cta { opacity: .25; transition: opacity .18s ease; }

.zx-trust { border-top: 1px solid var(--zx-line); border-bottom: 1px solid rgba(180,60,255,.2); background: rgba(7,10,20,.55); }
.zx-trust__row { min-height: 66px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.zx-trust__item { display: flex; align-items: center; justify-content: center; gap: 10px; color: var(--zx-mint); font-family: "JetBrains Mono", monospace; font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; border-right: 1px solid rgba(255,255,255,.12); }
.zx-trust__item:last-child { border-right: 0; }

.zx-section { padding: 76px 0 0; }
.zx-section-head { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 24px; }
.zx-section h2 { margin: 0; font-family: Syne, Inter, sans-serif; font-size: clamp(34px, 4vw, 48px); line-height: 1.02; }
.zx-section h2 em { color: transparent; background: linear-gradient(100deg, var(--zx-mint), var(--zx-mint-2), var(--zx-mint-3)); -webkit-background-clip: text; background-clip: text; font-style: normal; }
.zx-section p { color: var(--zx-muted); }
/* ── Tools bento: premium media cards (image on top, full-bleed, no crop-box) ── */
.zx-tools { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.zx-tool {
  position: relative; grid-column: span 1; display: flex; flex-direction: column;
  overflow: hidden; border-radius: 16px; isolation: isolate;
  border: 1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(120% 80% at 78% -8%, var(--glow, rgba(0,255,157,.30)), transparent 52%),
    linear-gradient(160deg, rgba(255,255,255,.055), rgba(255,255,255,.012)), #060d15;
  color: #fff; text-decoration: none;
  box-shadow: 0 1px 0 rgba(255,255,255,.05) inset, 0 18px 44px rgba(0,0,0,.34);
  transition: transform .26s cubic-bezier(.2,.7,.2,1), border-color .26s ease, box-shadow .26s ease;
}
.zx-tool:hover { transform: translateY(-6px); border-color: rgba(255,255,255,.22); box-shadow: 0 1px 0 rgba(255,255,255,.06) inset, 0 30px 70px rgba(0,0,0,.5); }
.zx-tool:focus-visible { outline: 2px solid var(--zx-mint); outline-offset: 3px; }
.zx-tool--wide { grid-column: span 2; }

/* Media panel — holds the full screenshot edge-to-edge, no frame, no rotation */
.zx-tool__media {
  position: relative; aspect-ratio: 16 / 9; width: 100%; overflow: hidden;
  background: linear-gradient(150deg, rgba(255,255,255,.05), rgba(255,255,255,0));
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.zx-tool__media img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center top; display: block;
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.zx-tool:hover .zx-tool__media img { transform: scale(1.045); }
.zx-tool__media::after { /* soft fade so the image melts into the card */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to bottom, transparent 58%, rgba(6,13,21,.92));
}
/* Icon panel for tools that have no screenshot yet — branded, never an empty box */
.zx-tool__media--icon { display: grid; place-items: center;
  background:
    radial-gradient(90% 120% at 50% -10%, var(--glow, rgba(0,255,157,.4)), transparent 60%),
    linear-gradient(150deg, rgba(255,255,255,.06), rgba(255,255,255,.01)); }
.zx-tool__media--icon::after { background: linear-gradient(to bottom, transparent 64%, rgba(6,13,21,.92)); }
.zx-tool__media--icon svg { width: 58px; height: 58px; opacity: .92; filter: drop-shadow(0 6px 16px rgba(0,0,0,.45)); }

.zx-tool__body { position: relative; z-index: 1; padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.zx-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2; width: fit-content;
  padding: 6px 11px; border-radius: 999px; background: rgba(4,10,16,.6);
  border: 1px solid rgba(255,255,255,.16); backdrop-filter: blur(6px);
  color: var(--zx-mint); font-family: "JetBrains Mono", monospace; font-size: 10px;
  font-weight: 900; letter-spacing: .04em; text-transform: uppercase;
}
.zx-tool h3 { margin: 0 0 8px; font-size: 21px; letter-spacing: -.01em; }
.zx-tool p { margin: 0 0 16px; color: #aab8c4; font-size: 13.5px; line-height: 1.5; }
.zx-tool span:last-child {
  margin-top: auto; display: inline-flex; align-items: center; gap: 6px;
  color: transparent; background: linear-gradient(90deg, var(--zx-mint), var(--zx-mint-2));
  -webkit-background-clip: text; background-clip: text; font-size: 13px; font-weight: 900;
  transition: gap .22s ease;
}
.zx-tool:hover span:last-child { gap: 10px; }

.zx-info-band, .zx-stats-band, .zx-love, .zx-final-cta { border: 1px solid var(--zx-line); border-radius: 14px; background: linear-gradient(135deg, rgba(255,255,255,.055), rgba(255,255,255,.018)); box-shadow: inset 0 1px 0 rgba(255,255,255,.06); }
.zx-info-band { display: grid; grid-template-columns: 1.15fr repeat(4, 1fr); gap: 20px; align-items: center; padding: 34px; }
.zx-info-band h2, .zx-stats-band h2, .zx-love h2 { margin: 0; font-family: Syne, Inter, sans-serif; font-size: 34px; line-height: 1.02; }
.zx-mini-feature { text-align: center; color: #dceee8; }
.zx-mini-feature svg { color: var(--zx-mint); filter: drop-shadow(0 0 14px rgba(0,255,157,.45)); }
.zx-mini-feature strong { display: block; margin: 10px 0 8px; }
.zx-mini-feature p { margin: 0; font-size: 13px; }
.zx-stats-band { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 20px; align-items: center; padding: 34px; }
.zx-stat { text-align: center; }
.stat-num { color: var(--zx-mint); font-size: 40px; font-family: Syne, Inter, sans-serif; font-weight: 800; }
.zx-stat span:last-child { display: block; color: var(--zx-muted); font-size: 13px; }
.zx-love { display: grid; grid-template-columns: 1fr 2.4fr; gap: 26px; padding: 34px; }
.zx-quotes { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.zx-quote { padding: 18px; border-radius: 10px; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.09); }
.zx-stars { color: var(--zx-mint); letter-spacing: .08em; margin-bottom: 12px; }
.zx-quote p { margin: 0 0 14px; font-size: 12px; line-height: 1.45; }
.zx-quote b { font-size: 12px; }
.zx-final-cta { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 34px 44px; background: radial-gradient(circle at 83% 35%, rgba(156,255,0,.34), transparent 34%), linear-gradient(135deg, rgba(95,150,0,.24), rgba(156,255,0,.08)); }
.zx-final-cta h2 { margin: 0; font-family: Syne, Inter, sans-serif; font-size: 38px; line-height: 1.02; }
.zx-final-cta h2 span { color: transparent; display: block; background: linear-gradient(100deg, var(--zx-mint), var(--zx-mint-2), var(--zx-mint-3)); -webkit-background-clip: text; background-clip: text; }
.zx-footer { margin-top: 76px; padding: 56px 0 0; border-top: 1px solid rgba(255,255,255,.1); background: rgba(4,8,16,.7); }
.zx-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 38px; align-items: start; }
.footer-brand { max-width: 380px; }
.footer-brand p { margin: 18px 0 0; line-height: 1.6; }
.footer-col h5 { margin: 0 0 18px; color: #fff; font-size: 15px; font-weight: 800; letter-spacing: .01em; text-transform: none; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer-col a, .zx-footer p { color: var(--zx-muted); text-decoration: none; font-size: 13px; }
.footer-col a:hover { color: var(--zx-mint); }
.socials { display: flex; gap: 10px; margin-top: 22px; }
.socials a { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 8px; border: 1px solid rgba(255,255,255,.12); color: var(--zx-muted); background: rgba(255,255,255,.04); text-decoration: none; transition: color .2s ease, border-color .2s ease, background .2s ease; }
.socials a:hover { color: var(--zx-mint); border-color: rgba(156,255,0,.4); background: rgba(156,255,0,.08); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; margin-top: 44px; padding: 22px 0 30px; border-top: 1px solid rgba(255,255,255,.08); color: var(--zx-muted); font-size: 13px; }
.footer-bottom a { color: var(--zx-muted); text-decoration: none; }
.footer-bottom a:hover { color: var(--zx-mint); }
.creators-section { display: none; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes slideUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes zxGradientFlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes zxLightSweep {
  0% { transform: translate3d(-18%, -4%, 0) rotate(-8deg); }
  45% { transform: translate3d(12%, 3%, 0) rotate(5deg); }
  100% { transform: translate3d(18%, -2%, 0) rotate(8deg); }
}

@media (max-width: 980px) {
  .zx-nav__links, .zx-nav__cta { display: none; }
  .zx-nav__burger { display: grid; }
  .zx-hero__grid { grid-template-columns: 1fr; }
  .zx-hero--showcase .zx-hero__grid { grid-template-columns: 1fr; }
  .zx-hero__spot-cta { margin-left: 0; }
  .zx-tools { grid-template-columns: repeat(2, 1fr); }
  .zx-tool--wide { grid-column: span 2; }
  .zx-trust__row, .zx-info-band, .zx-stats-band, .zx-love, .zx-footer__grid { grid-template-columns: 1fr; }
  .zx-trust__item { min-height: 48px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .zx-quotes { grid-template-columns: repeat(2, 1fr); }
  .zx-final-cta { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 620px) {
  .zx-shell { width: min(100% - 22px, 1180px); }
  .zx-hero { padding-top: 38px; }
  .zx-display { font-size: clamp(54px, 17vw, 78px); }
  .zx-lead { font-size: 15px; }
  .zx-actions, .zx-final-cta > div:last-child { width: 100%; }
  .zx-actions .zx-cta, .zx-final-cta .zx-cta { width: 100%; }
  .zx-hero--showcase { padding: 48px 0 40px; }
  .zx-hero__slide { filter: blur(7px) brightness(.5); }
  .zx-hero__spotlight { flex-direction: column; align-items: flex-start; }
  .zx-hero__spot-cta { width: 100%; }
  .zx-tools, .zx-quotes { grid-template-columns: 1fr; }
  .zx-tool--wide { grid-column: span 1; }
  .zx-info-band, .zx-stats-band, .zx-love, .zx-final-cta { padding: 24px; }
}
@media (prefers-reduced-motion: reduce) {
  .zx-hero__slide { transition: none; }
}
