/* ============================================================
   Prompt Matrix v3 — "Artwork"
   Massive type · WebGL center stage · ruthless minimalism
============================================================ */

:root {
  --bg-0: #050509;
  --bg-1: #0a0a14;
  --ink-0: #f4f5fb;
  --ink-1: #c8cad6;
  --ink-2: #8a8da0;
  --ink-3: #555867;
  --line: rgba(255, 255, 255, 0.07);
  --line-strong: rgba(255, 255, 255, 0.15);

  --cyan: oklch(0.86 0.16 200);
  --cyan-rgb: 64, 224, 255;
  --violet: oklch(0.65 0.22 290);
  --violet-rgb: 158, 102, 255;
  --magenta-rgb: 255, 102, 196;
  --amber-rgb: 255, 196, 100;
  --green-rgb: 80, 220, 160;
  --red-rgb: 255, 90, 120;

  --glass: rgba(18, 20, 36, 0.5);

  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 36px;

  --font-display: 'Space Grotesk', 'Helvetica Neue', sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  background: var(--bg-0);
  color: var(--ink-0);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background:
    radial-gradient(1400px 1000px at 50% -10%, rgba(var(--violet-rgb), 0.22), transparent 60%),
    radial-gradient(1000px 800px at -10% 30%, rgba(var(--cyan-rgb), 0.13), transparent 60%),
    radial-gradient(900px 700px at 110% 70%, rgba(var(--violet-rgb), 0.18), transparent 60%),
    linear-gradient(180deg, #050509 0%, #07071a 100%);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.04em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; color: var(--ink-1); }

::selection { background: rgba(var(--cyan-rgb), 0.35); color: #fff; }

/* ----------------------- Ambient ----------------------- */

.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.ambient .grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 80%);
}
.float-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: drift 32s ease-in-out infinite;
  will-change: transform;
}
.float-orb.cyan    { width: 520px; height: 520px; background: radial-gradient(circle, rgba(var(--cyan-rgb), 0.6), transparent 70%); top: -10%; left: -10%; }
.float-orb.violet  { width: 600px; height: 600px; background: radial-gradient(circle, rgba(var(--violet-rgb), 0.55), transparent 70%); top: 30%; right: -15%; animation-delay: -8s; animation-duration: 38s; }
.float-orb.magenta { width: 400px; height: 400px; background: radial-gradient(circle, rgba(var(--magenta-rgb), 0.4), transparent 70%); bottom: 0%; left: 30%; animation-delay: -15s; animation-duration: 40s; }

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25%      { transform: translate(60px, -40px) scale(1.07); }
  50%      { transform: translate(-40px, 30px) scale(0.95); }
  75%      { transform: translate(30px, 50px) scale(1.03); }
}

/* ----------------------- Scarcity strip ----------------------- */

.scarcity {
  position: relative;
  z-index: 60;
  padding: 8px 20px;
  background: rgba(var(--violet-rgb), 0.08);
  border-bottom: 1px solid var(--line);
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.05em;
  color: var(--ink-1);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.scarcity .dot {
  width: 6px; height: 6px;
  background: var(--cyan); border-radius: 50%;
  box-shadow: 0 0 10px rgba(var(--cyan-rgb), 0.9);
  animation: pulse 1.6s ease-in-out infinite;
}
.scarcity b { color: var(--cyan); font-weight: 600; }
.scarcity .sep { color: var(--ink-3); }

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.45; transform: scale(0.85); }
}

/* ----------------------- Layout ----------------------- */

.page {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
section { position: relative; }

/* ----------------------- Nav ----------------------- */

.nav {
  position: sticky;
  top: 14px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px 10px 22px;
  margin: 14px auto 0;
  max-width: 1180px;
  border-radius: 100px;
  background: rgba(8, 8, 16, 0.65);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--line);
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.6);
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 600; font-size: 16px;
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: conic-gradient(from 200deg,
    rgba(var(--cyan-rgb), 1), rgba(var(--violet-rgb), 1), rgba(var(--cyan-rgb), 1));
  position: relative;
  box-shadow: 0 0 18px rgba(var(--cyan-rgb), 0.4);
  animation: ring-spin 12s linear infinite;
}
.brand-mark::after {
  content: ''; position: absolute; inset: 5px;
  background: var(--bg-0); border-radius: 5px;
}
.brand-mark::before {
  content: ''; position: absolute; left: 50%; top: 50%;
  width: 6px; height: 6px; transform: translate(-50%, -50%);
  background: var(--cyan); border-radius: 50%;
  z-index: 1; box-shadow: 0 0 10px rgba(var(--cyan-rgb), 0.9);
}
@keyframes ring-spin { to { transform: rotate(360deg); } }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 13.5px; color: var(--ink-1);
  text-decoration: none; transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--ink-0); }
@media (max-width: 720px) {
  .nav-links a:not(.btn) { display: none; }
}

/* ----------------------- Buttons ----------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.005em;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.3s ease;
  white-space: nowrap;
}
.btn-pill { padding: 10px 20px; font-size: 13px; font-weight: 600; }
.btn-big { padding: 20px 34px; font-size: 16.5px; }
.btn-huge { padding: 24px 44px; font-size: 18px; }

/* Restrain the cyan halo when the primary button is small (nav pill) */
.btn-primary.btn-pill {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.28) inset,
    0 6px 18px -4px rgba(var(--cyan-rgb), 0.5),
    0 0 26px -8px rgba(var(--cyan-rgb), 0.55);
}
.btn-primary.btn-pill:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.38) inset,
    0 10px 26px -4px rgba(var(--cyan-rgb), 0.7),
    0 0 40px -8px rgba(var(--cyan-rgb), 0.75);
}

.btn-primary {
  color: #04111a;
  background: linear-gradient(180deg, oklch(0.93 0.16 200), oklch(0.78 0.18 210));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.22) inset,
    0 14px 40px -8px rgba(var(--cyan-rgb), 0.7),
    0 0 80px -10px rgba(var(--cyan-rgb), 0.7);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.32) inset,
    0 20px 50px -8px rgba(var(--cyan-rgb), 0.9),
    0 0 100px -10px rgba(var(--cyan-rgb), 0.9);
}

.btn-ghost {
  color: var(--ink-0);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(var(--cyan-rgb), 0.5);
  transform: translateY(-3px);
}

.btn-violet {
  color: #fff;
  background: linear-gradient(180deg, oklch(0.7 0.22 290), oklch(0.55 0.24 295));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.2) inset,
    0 14px 40px -8px rgba(var(--violet-rgb), 0.75),
    0 0 90px -10px rgba(var(--violet-rgb), 0.75);
}
.btn-violet:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.32) inset,
    0 20px 56px -8px rgba(var(--violet-rgb), 0.95),
    0 0 120px -10px rgba(var(--violet-rgb), 0.95);
}

/* ----------------------- HERO — the artwork ----------------------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 0 80px;
  overflow: hidden;
}

.hero-canvas-wrap {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  z-index: 1;
}
.hero-canvas-wrap canvas {
  width: min(780px, 92vw);
  aspect-ratio: 1/1;
  filter:
    drop-shadow(0 0 80px rgba(var(--violet-rgb), 0.45))
    drop-shadow(0 0 40px rgba(var(--cyan-rgb), 0.35));
  pointer-events: auto;
  /* Dim the 3D scene in the center where text reads, keep it bright at edges */
  -webkit-mask-image: radial-gradient(circle at center, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.55) 28%, #000 56%);
          mask-image: radial-gradient(circle at center, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.55) 28%, #000 56%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  pointer-events: none;
}
.hero-content > * { pointer-events: auto; }
/* Soft dark scrim behind the headline so it sits on a calm zone */
.hero-content::before {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  width: 120%; height: 130%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(ellipse 50% 45% at center, rgba(5, 5, 12, 0.78) 0%, rgba(5, 5, 12, 0.55) 35%, rgba(5, 5, 12, 0) 70%);
  z-index: -1;
  pointer-events: none;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px 7px 8px;
  border-radius: 100px;
  background: rgba(10, 12, 24, 0.75);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line-strong);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-1);
  margin-bottom: 36px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}
.hero-tag .live {
  width: 7px; height: 7px;
  background: var(--cyan); border-radius: 50%;
  box-shadow: 0 0 10px rgba(var(--cyan-rgb), 1);
  animation: pulse 1.4s ease-in-out infinite;
}

.hero h1 {
  font-size: clamp(56px, 12vw, 188px);
  line-height: 0.86;
  font-weight: 700;
  letter-spacing: -0.06em;
  margin: 0;
  color: #fdfdff;
  /* Strong dark halo + faint cyan ambience for legibility on any background */
  text-shadow:
    0 2px 30px rgba(0, 0, 0, 0.55),
    0 0 60px rgba(0, 0, 0, 0.45),
    0 0 90px rgba(var(--cyan-rgb), 0.12);
}
.hero h1 .line {
  display: block;
}
.hero h1 .word-glow {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-style: italic;
  font-weight: 700;
  /* Sharper, less hazy text — the colored glow lives behind, not in, the letters */
  text-shadow:
    0 2px 30px rgba(0, 0, 0, 0.6),
    0 0 50px rgba(0, 0, 0, 0.5);
}
.hero h1 .word-glow::after {
  content: attr(data-text);
  position: absolute; left: 0; top: 0;
  color: transparent;
  background: linear-gradient(180deg, rgba(var(--cyan-rgb), 0.85), rgba(var(--violet-rgb), 0.85));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: blur(42px);
  opacity: 0.85;
  z-index: -1;
  pointer-events: none;
}

.hero-sub {
  margin-top: 32px;
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--ink-1);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
  text-wrap: pretty;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.6);
}

.hero-cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-foot {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 32px;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
  z-index: 3;
  padding: 10px 22px;
  background: rgba(8, 10, 22, 0.5);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: 100px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}
.hero-foot .stars { color: oklch(0.85 0.14 80); letter-spacing: 0; font-size: 13px; }
.hero-foot b { color: var(--ink-0); font-weight: 600; }
.hero-foot .sep {
  width: 1px; height: 14px;
  background: var(--line-strong);
}
@media (max-width: 720px) {
  .hero-foot { font-size: 10px; gap: 14px; bottom: 16px; padding: 0 16px; flex-wrap: wrap; justify-content: center; }
  .hero-foot .sep { display: none; }
}

/* ----------------------- Big section header ----------------------- */

section.big {
  padding: 180px 0;
}
@media (max-width: 720px) {
  section.big { padding: 120px 0; }
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 28px;
}
.section-eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(var(--cyan-rgb), 0.9);
}
.section-eyebrow.violet .dot { background: rgba(var(--violet-rgb), 1); box-shadow: 0 0 10px rgba(var(--violet-rgb), 0.9); }

.section-title {
  font-size: clamp(40px, 6vw, 90px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  font-weight: 700;
  max-width: 14ch;
}
.section-title.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-title.wide { max-width: 22ch; }
.section-title em {
  font-style: italic;
  background: linear-gradient(180deg, #fff, oklch(0.78 0.18 220));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ----------------------- Compare ----------------------- */

.compare-stage {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 220px 1fr;
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 1000px) {
  .compare-stage {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .compare-stage .uplift-stage { order: -1; padding: 40px 0; }
}

.compare-card {
  position: relative;
  padding: 36px 32px;
  border-radius: var(--radius-xl);
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-height: 380px;
}
.compare-card .label-big {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.compare-card.bad {
  opacity: 0.85;
  border-color: rgba(var(--red-rgb), 0.18);
}
.compare-card.bad .label-big { color: #ff8aa0; }
.compare-card.good {
  border-color: rgba(var(--cyan-rgb), 0.35);
  box-shadow: 0 30px 100px -20px rgba(var(--cyan-rgb), 0.3);
}
.compare-card.good .label-big { color: var(--cyan); }

.compare-card .prompt {
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.65;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid var(--line);
  color: var(--ink-0);
  margin-bottom: 18px;
}
.compare-card .prompt .ann { color: var(--cyan); }
.compare-card .prompt .ann-v { color: rgba(var(--violet-rgb), 1); }
.compare-card .prompt .ann-d { color: var(--ink-3); }

.compare-card .reaction {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-top: auto;
  line-height: 1.2;
}
.compare-card.bad .reaction { color: var(--ink-2); }
.compare-card.bad .reaction em { color: #ff8aa0; font-style: normal; }
.compare-card.good .reaction { color: var(--ink-0); }
.compare-card.good .reaction em { color: var(--cyan); font-style: normal; }

.compare-card .verdict {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.compare-card .verdict .v-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.compare-card.bad .verdict .v-num  { color: #ff8aa0; }
.compare-card.good .verdict .v-num { color: var(--cyan); }
.compare-card .verdict .v-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.uplift-stage {
  display: grid;
  place-items: center;
  position: relative;
  overflow: visible;
  min-width: 0;
}
.uplift-stage .uplift {
  text-align: center;
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  isolation: isolate;
}
.uplift-stage .uplift .x {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(54px, 6.5vw, 88px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  background: linear-gradient(180deg, #fff, var(--cyan), rgba(var(--violet-rgb), 1));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  position: relative;
  white-space: nowrap;
}
.uplift-stage .uplift .x::after {
  content: '3.4×';
  position: absolute;
  left: 0; top: 0;
  width: 100%;
  background: linear-gradient(180deg, rgba(var(--cyan-rgb), 0.8), rgba(var(--violet-rgb), 0.8));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: blur(22px);
  opacity: 0.6;
  z-index: -1;
  pointer-events: none;
}
.uplift-stage .uplift .label {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.uplift-stage .uplift .line-up {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, transparent, var(--cyan), transparent);
  margin: 16px auto;
}

/* ----------------------- Database — gallery ----------------------- */

.gallery {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1080px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .gallery { grid-template-columns: 1fr; } }

.cat {
  position: relative;
  padding: 36px 28px 32px;
  border-radius: var(--radius-xl);
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--line);
  cursor: pointer;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  transform-style: preserve-3d;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
  will-change: transform;
}
.cat .glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(var(--cyan-rgb), 0.22), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.cat:hover .glow { opacity: 1; }

/* Big gradient mark on each cat */
.cat-mark {
  width: 88px; height: 88px;
  border-radius: 22px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(var(--cyan-rgb), 0.18), rgba(var(--cyan-rgb), 0.04));
  border: 1px solid rgba(var(--cyan-rgb), 0.3);
  box-shadow: 0 0 40px rgba(var(--cyan-rgb), 0.18), inset 0 0 30px rgba(var(--cyan-rgb), 0.05);
  margin-bottom: 28px;
  transition: transform 0.5s ease;
}
.cat:hover .cat-mark { transform: translateZ(28px) scale(1.05) rotate(-3deg); }
.cat-mark svg { width: 36px; height: 36px; color: var(--cyan); }

.cat h3 {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
  line-height: 1.05;
}
.cat .count {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: auto;
}
.cat .free-badge {
  position: absolute;
  top: 20px; right: 20px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.08em;
  padding: 4px 8px;
  border-radius: 100px;
  background: rgba(var(--green-rgb), 0.15);
  color: oklch(0.85 0.16 160);
  border: 1px solid rgba(var(--green-rgb), 0.35);
  text-transform: uppercase;
  font-weight: 600;
}
.cat .open-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--ink-2);
}
.cat .open-row .open {
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease;
}
.cat:hover .open-row .open { gap: 12px; }

.cat:hover {
  border-color: rgba(var(--cyan-rgb), 0.45);
  box-shadow: 0 40px 100px -25px rgba(var(--cyan-rgb), 0.55), 0 0 0 1px rgba(var(--cyan-rgb), 0.25);
}

/* Color variants */
.cat.violet .cat-mark {
  background: linear-gradient(135deg, rgba(var(--violet-rgb), 0.18), rgba(var(--violet-rgb), 0.04));
  border-color: rgba(var(--violet-rgb), 0.3);
  box-shadow: 0 0 40px rgba(var(--violet-rgb), 0.2), inset 0 0 30px rgba(var(--violet-rgb), 0.05);
}
.cat.violet .cat-mark svg { color: rgba(var(--violet-rgb), 1); }
.cat.violet:hover {
  border-color: rgba(var(--violet-rgb), 0.45);
  box-shadow: 0 40px 100px -25px rgba(var(--violet-rgb), 0.55), 0 0 0 1px rgba(var(--violet-rgb), 0.25);
}
.cat.violet:hover .glow { background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(var(--violet-rgb), 0.22), transparent 60%); }
.cat.violet .open-row .open { color: rgba(var(--violet-rgb), 1); }

.cat.magenta .cat-mark {
  background: linear-gradient(135deg, rgba(var(--magenta-rgb), 0.18), rgba(var(--magenta-rgb), 0.04));
  border-color: rgba(var(--magenta-rgb), 0.3);
  box-shadow: 0 0 40px rgba(var(--magenta-rgb), 0.2), inset 0 0 30px rgba(var(--magenta-rgb), 0.05);
}
.cat.magenta .cat-mark svg { color: #ff9bd0; }
.cat.magenta:hover {
  border-color: rgba(var(--magenta-rgb), 0.45);
  box-shadow: 0 40px 100px -25px rgba(var(--magenta-rgb), 0.55), 0 0 0 1px rgba(var(--magenta-rgb), 0.25);
}
.cat.magenta:hover .glow { background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(var(--magenta-rgb), 0.22), transparent 60%); }
.cat.magenta .open-row .open { color: #ff9bd0; }

.cat.amber .cat-mark {
  background: linear-gradient(135deg, rgba(var(--amber-rgb), 0.18), rgba(var(--amber-rgb), 0.04));
  border-color: rgba(var(--amber-rgb), 0.3);
  box-shadow: 0 0 40px rgba(var(--amber-rgb), 0.2), inset 0 0 30px rgba(var(--amber-rgb), 0.05);
}
.cat.amber .cat-mark svg { color: #ffd28a; }
.cat.amber:hover {
  border-color: rgba(var(--amber-rgb), 0.45);
  box-shadow: 0 40px 100px -25px rgba(var(--amber-rgb), 0.45), 0 0 0 1px rgba(var(--amber-rgb), 0.25);
}
.cat.amber:hover .glow { background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(var(--amber-rgb), 0.22), transparent 60%); }
.cat.amber .open-row .open { color: #ffd28a; }

/* ----------------------- Pricing — the moment ----------------------- */

.pricing-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.pricing-card {
  position: relative;
  margin-top: 60px;
  width: 100%;
  max-width: 720px;
  border-radius: var(--radius-xl);
  padding: 70px 50px 56px;
  background:
    radial-gradient(ellipse at top, rgba(var(--violet-rgb), 0.22), transparent 60%),
    radial-gradient(ellipse at bottom, rgba(var(--cyan-rgb), 0.18), transparent 60%),
    rgba(8, 8, 18, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line-strong);
  overflow: hidden;
}
.pricing-card::before {
  content: '';
  position: absolute; inset: -2px;
  border-radius: var(--radius-xl);
  padding: 2px;
  background: conic-gradient(from 0deg, rgba(var(--cyan-rgb), 0.7), rgba(var(--violet-rgb), 0.7), rgba(var(--cyan-rgb), 0.7));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0.55;
  animation: ring-spin 14s linear infinite;
  pointer-events: none;
}

@media (max-width: 720px) {
  .pricing-card { padding: 56px 28px 44px; }
}

.pricing-card .strike {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--ink-3);
  text-decoration: line-through;
}
.pricing-card .price {
  font-family: var(--font-display);
  font-size: clamp(80px, 14vw, 200px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 16px 0 8px;
  background: linear-gradient(180deg, #fff, var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}
.pricing-card .price .dol {
  font-size: 0.4em;
  margin-top: 0.2em;
  margin-right: 6px;
  color: var(--ink-1);
  -webkit-text-fill-color: var(--ink-1);
}
.pricing-card .price::after {
  content: '$89';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(var(--cyan-rgb), 0.7), rgba(var(--violet-rgb), 0.7));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: blur(36px);
  z-index: -1;
}
.pricing-card .lifetime {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 36px;
}

.pricing-card .pay-btn {
  margin-top: 8px;
}

.pricing-card .meta {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.pricing-card .meta span { display: flex; align-items: center; gap: 8px; }
.pricing-card .meta .ok { color: var(--cyan); }

.pricing-includes {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 760px;
}
.pricing-includes span {
  padding: 9px 16px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.pricing-includes span .c {
  color: var(--cyan);
  font-size: 13px;
}

/* ----------------------- Sticky buy ----------------------- */

.sticky-buy {
  position: fixed;
  bottom: 18px; left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 8px 8px 22px;
  border-radius: 100px;
  background: rgba(8, 10, 22, 0.92);
  backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--line-strong);
  box-shadow: 0 20px 60px -10px rgba(0, 0, 0, 0.7), 0 0 60px -10px rgba(var(--cyan-rgb), 0.3);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
  max-width: calc(100vw - 32px);
}
.sticky-buy.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.sticky-buy .copy { font-size: 13.5px; color: var(--ink-0); }
.sticky-buy .copy b { color: var(--cyan); }
.sticky-buy .copy small {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ----------------------- Footer ----------------------- */

.footer {
  padding: 80px 0 50px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--ink-2);
}
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a {
  color: var(--ink-2);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--ink-0); }

/* ----------------------- Reveal ----------------------- */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1s ease, transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }
