/* === Screen-reader only utility === */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* === Zero Noise Report — Cosmic palette === */
:root {
  /* deep void backgrounds — violet undertone */
  --void: #03001a;
  --deep: #060321;
  --ink: #0a0628;
  --night: #11092e;
  --char: #1b1240;

  /* glow palette — nebula (violet · pink · teal) */
  --glow-1: #38e8d8;     /* teal core */
  --glow-2: #9b6dff;     /* violet — PRIMARY accent */
  --glow-3: #ff3d8f;     /* hot pink */
  --glow-4: #7b5cff;     /* deep violet */
  --glow-5: #4ed3ff;     /* cyan rim */

  /* text */
  --bone: #f4f0ff;
  --bone-dim: #c7c0e0;
  --muted: #847a9e;
  --muted-dim: #4f4869;
  --line: rgba(244, 240, 255, 0.08);
  --line-strong: rgba(244, 240, 255, 0.16);

  /* market */
  --up: #4ade80;
  --down: #ff4d5e;

  --font-display: "Familjen Grotesk", "Helvetica Neue", sans-serif;
  --font-body: "Geist", "Helvetica Neue", sans-serif;
  --font-mono: "Geist Mono", "JetBrains Mono", monospace;
  --font-serif: "Instrument Serif", "Times New Roman", serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { background: var(--void); color: var(--bone); scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--void);
  color: var(--bone);
  overflow-x: hidden;
  min-height: 100vh;
}

#starfield {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

#root {
  position: relative;
  z-index: 1;
}

/* ========= Typography ========= */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.95;
  margin: 0;
  text-wrap: balance;
}
.serif-italic { font-family: var(--font-serif); font-style: italic; font-weight: 400; letter-spacing: -0.01em; }
.mono { font-family: var(--font-mono); font-weight: 500; letter-spacing: -0.01em; }
.eyebrow {
  font-family: var(--font-mono);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--glow-2);
  font-weight: 500;
}
.eyebrow.dim { color: var(--muted); }

/* ========= Layout ========= */
.container { max-width: 1320px; margin: 0 auto; padding: 0 32px; position: relative; }
.container-narrow { max-width: 980px; margin: 0 auto; padding: 0 32px; position: relative; }

section { position: relative; }
.section-pad { padding: 140px 0; }
.section-pad-sm { padding: 96px 0; }

.hairline { height: 1px; background: var(--line); }

/* ========= Nav ========= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  background: rgba(5, 3, 8, 0.55);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1320px;
  margin: 0 auto;
  padding: 18px 32px;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 18px;
  color: var(--bone);
  text-decoration: none;
}
.nav-logo .logomark {
  width: 32px; height: 32px;
  position: relative;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--bone-dim);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--glow-2); }

/* ========= Buttons ========= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--glow-1) 0%, var(--glow-2) 40%, var(--glow-3) 100%);
  color: #0a0510;
  box-shadow: 0 0 30px rgba(155, 109, 255, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 0 50px rgba(155, 109, 255, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.3); }
.btn-ghost {
  background: transparent;
  color: var(--bone);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover { background: rgba(245, 236, 220, 0.05); border-color: var(--bone-dim); }
.btn-sm { height: 38px; padding: 0 18px; font-size: 13px; }
.btn-lg { height: 58px; padding: 0 32px; font-size: 15px; }

/* ========= Hero ========= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-inner { position: relative; z-index: 2; width: 100%; }
.hero-blackhole {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 3;
}
.hero-eyebrow-row {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 32px;
  justify-content: center;
}
.hero-eyebrow-row .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--glow-2);
  box-shadow: 0 0 12px var(--glow-2);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero h1 {
  font-size: clamp(56px, 10vw, 152px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.88;
  text-align: center;
  margin: 0;
  text-wrap: balance;
}
.hero h1 .accent {
  background: linear-gradient(180deg, var(--glow-1) 0%, var(--glow-2) 45%, var(--glow-3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 400;
}
.hero-sub {
  font-size: clamp(17px, 1.6vw, 22px);
  max-width: 680px;
  margin: 32px auto 0;
  text-align: center;
  color: var(--bone-dim);
  line-height: 1.45;
  font-weight: 400;
}
.hero-ctas {
  display: flex; gap: 16px; justify-content: center;
  margin-top: 48px;
  flex-wrap: wrap;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 980px;
  margin: 96px auto 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.hero-stat {
  padding: 24px 16px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.hero-stat:last-child { border-right: 0; }
.hero-stat .num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--bone);
  display: block;
  line-height: 1;
}
.hero-stat .lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  display: block;
  margin-top: 10px;
}

/* ========= Ticker ========= */
.ticker {
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  overflow: hidden;
  background: rgba(5, 3, 8, 0.6);
  backdrop-filter: blur(8px);
}
.ticker-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: ticker-scroll 60s linear infinite;
  will-change: transform;
}
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.02em;
}
.ticker-symbol { color: var(--bone); font-weight: 600; }
.ticker-price { color: var(--bone-dim); }
.ticker-change.up { color: var(--up); }
.ticker-change.down { color: var(--down); }

/* ========= Pillars ========= */
.section-header { text-align: center; max-width: 820px; margin: 0 auto 80px; }
.section-header h2 {
  font-size: clamp(40px, 6vw, 88px);
  letter-spacing: -0.035em;
  line-height: 0.95;
  margin: 18px 0 24px;
}
.section-header p {
  color: var(--bone-dim);
  font-size: 18px;
  line-height: 1.5;
  max-width: 620px;
  margin: 0 auto;
  text-wrap: balance;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.pillar {
  padding: 40px 28px 48px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background 0.3s ease;
  cursor: default;
}
.pillar:hover { background: rgba(155, 109, 255, 0.04); }
.pillar-icon {
  width: 56px; height: 56px;
  margin-bottom: 28px;
  position: relative;
}
.pillar h3 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.pillar p {
  color: var(--bone-dim);
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 24px;
}
.pillar-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: auto;
}
.pillar-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  padding: 4px 8px;
  border: 1px solid var(--line);
  border-radius: 4px;
}

/* ========= Sample Report ========= */
.sample-section {
  background: linear-gradient(180deg, transparent 0%, rgba(155, 109, 255, 0.04) 50%, transparent 100%);
}
.sample-card {
  max-width: 880px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(20, 12, 30, 0.85) 0%, rgba(8, 4, 14, 0.95) 100%);
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  padding: 56px 56px 48px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  box-shadow: 0 40px 100px rgba(155, 109, 255, 0.12), 0 0 80px rgba(123, 92, 255, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.sample-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% -20%, rgba(155, 109, 255, 0.15), transparent 50%);
  pointer-events: none;
}
.sample-header {
  display: flex; justify-content: space-between; align-items: baseline;
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
  margin-bottom: 32px;
  position: relative;
}
.sample-issue {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
}
.sample-date {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--glow-2);
  letter-spacing: 0.1em;
}
.sample-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 20px;
}
.sample-deck {
  color: var(--bone-dim);
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 32px;
}
.sample-pulls {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}
.sample-pull {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
  background: rgba(0, 0, 0, 0.3);
}
.sample-pull .label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 10px;
}
.sample-pull .ticker-row {
  display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px;
}
.sample-pull .sym { font-family: var(--font-mono); font-weight: 600; color: var(--bone); }
.sample-pull .move { font-family: var(--font-mono); font-size: 14px; font-weight: 600; }
.sample-pull .note { font-size: 12px; color: var(--bone-dim); line-height: 1.45; }
.up { color: var(--up); }
.down { color: var(--down); }

.sample-body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--bone-dim);
}
.sample-body p { margin: 0 0 18px; }
.sample-body strong { color: var(--bone); font-weight: 600; }
.sample-body .quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: var(--bone);
  margin: 32px 0;
  padding-left: 24px;
  border-left: 2px solid var(--glow-2);
}

/* ========= Products (orbital + grid) ========= */
.products-section { overflow: hidden; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.product-card {
  background: linear-gradient(180deg, rgba(20, 12, 30, 0.6) 0%, rgba(5, 3, 8, 0.9) 100%);
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  padding: 0;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--glow-2);
  box-shadow: 0 30px 80px rgba(155, 109, 255, 0.2), 0 0 40px rgba(123, 92, 255, 0.15);
}
.product-card-cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.product-card-cover::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5, 3, 8, 0.9) 100%);
}
.product-card-body { padding: 24px 24px 28px; flex: 1; display: flex; flex-direction: column; }
.product-tier {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--glow-2);
  margin-bottom: 10px;
}
.product-name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  line-height: 1.05;
}
.product-tagline {
  color: var(--bone-dim);
  font-size: 13px;
  line-height: 1.45;
  margin-bottom: 20px;
  flex: 1;
}
.product-price-row {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.product-price {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--bone);
}
.product-cta {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--glow-2);
  display: inline-flex; align-items: center; gap: 6px;
}
.product-card:hover .product-cta { color: var(--glow-1); }

.product-card.featured {
  grid-column: span 12;
  flex-direction: row;
}
.product-card.featured .product-card-cover {
  width: 50%;
  aspect-ratio: auto;
  min-height: 460px;
}
.product-card.featured .product-card-body {
  padding: 56px 56px 48px;
  justify-content: center;
}
.product-card.featured .product-name { font-size: 44px; line-height: 1; }
.product-card.featured .product-tagline { font-size: 16px; max-width: 420px; margin-bottom: 32px; }
.product-card.featured .product-price { font-size: 44px; }

/* products grid layout */
.product-card.span-3 { grid-column: span 3; }
.product-card.span-4 { grid-column: span 4; }
.product-card.span-6 { grid-column: span 6; }

/* ========= Newsletter Signup ========= */
.signup-section {
  position: relative;
  padding: 160px 0;
}
.signup-card {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.signup-card h2 {
  font-size: clamp(40px, 6vw, 80px);
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 24px;
}
.signup-card .lede {
  color: var(--bone-dim);
  font-size: 18px;
  margin-bottom: 40px;
  line-height: 1.5;
}
.signup-form {
  display: flex;
  gap: 8px;
  max-width: 520px;
  margin: 0 auto;
  background: rgba(245, 236, 220, 0.04);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 6px 6px 6px 22px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.signup-form:focus-within {
  border-color: var(--glow-2);
  box-shadow: 0 0 0 4px rgba(155, 109, 255, 0.12), 0 0 40px rgba(155, 109, 255, 0.2);
}
.signup-form input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 0;
}
.signup-form input::placeholder { color: var(--muted); }
.signup-meta {
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}
.signup-success {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 24px;
  border-radius: 999px;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.3);
  color: var(--up);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.05em;
}
.beehiiv-embed-wrapper {
  margin: 24px auto 0;
  max-width: 480px;
  border-radius: 12px;
  overflow: hidden;
}
.signup-pro-nudge {
  margin-top: 20px;
  text-align: center;
}

/* ========= Music for traders ========= */
.music-section {
  background: linear-gradient(180deg, transparent 0%, rgba(78, 211, 255, 0.04) 50%, transparent 100%);
}
.music-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  background: linear-gradient(135deg, rgba(11, 7, 22, 0.9) 0%, rgba(5, 3, 8, 0.9) 100%);
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  padding: 56px;
  position: relative;
  overflow: hidden;
}
.music-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 100% 50%, rgba(78, 211, 255, 0.15), transparent 60%);
  pointer-events: none;
}
.music-text { position: relative; z-index: 2; }
.music-text h2 {
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.035em;
  line-height: 0.95;
  margin: 14px 0 20px;
}
.music-text p {
  color: var(--bone-dim);
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 28px;
  max-width: 460px;
}
.music-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* equalizer bars */
.eq {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 200px;
  position: relative;
  z-index: 2;
}
.eq-bar {
  width: 16px;
  background: linear-gradient(180deg, var(--glow-5) 0%, var(--glow-4) 100%);
  border-radius: 8px;
  box-shadow: 0 0 16px rgba(78, 211, 255, 0.4);
  animation: eq-pulse 1.2s ease-in-out infinite;
}
.eq-bar:nth-child(1) { animation-delay: 0s; }
.eq-bar:nth-child(2) { animation-delay: 0.15s; }
.eq-bar:nth-child(3) { animation-delay: 0.3s; }
.eq-bar:nth-child(4) { animation-delay: 0.45s; }
.eq-bar:nth-child(5) { animation-delay: 0.6s; }
.eq-bar:nth-child(6) { animation-delay: 0.3s; }
.eq-bar:nth-child(7) { animation-delay: 0.15s; }
.eq-bar:nth-child(8) { animation-delay: 0s; }
.eq-bar:nth-child(9) { animation-delay: 0.45s; }
.eq-bar:nth-child(10) { animation-delay: 0.2s; }
.eq-bar:nth-child(11) { animation-delay: 0.55s; }
.eq-bar:nth-child(12) { animation-delay: 0.1s; }
@keyframes eq-pulse {
  0%, 100% { height: 30%; }
  50% { height: 100%; }
}

/* ========= Affiliate ========= */
.affiliate-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  padding: 56px;
  background:
    radial-gradient(circle at 0% 0%, rgba(155, 109, 255, 0.12), transparent 50%),
    linear-gradient(180deg, rgba(20, 12, 30, 0.6) 0%, rgba(5, 3, 8, 0.95) 100%);
  position: relative;
  overflow: hidden;
}
.affiliate-card .big-num {
  font-family: var(--font-display);
  font-size: clamp(80px, 14vw, 220px);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.85;
  background: linear-gradient(180deg, var(--glow-1) 0%, var(--glow-3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.18;
  pointer-events: none;
}
.affiliate-text { position: relative; z-index: 2; max-width: 600px; }
.affiliate-text h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  letter-spacing: -0.03em;
  line-height: 0.98;
  margin: 12px 0 16px;
}
.affiliate-text p { color: var(--bone-dim); font-size: 16px; line-height: 1.55; margin-bottom: 28px; }
.affiliate-cta { position: relative; z-index: 2; }

/* ========= FAQ ========= */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  cursor: pointer;
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--bone);
}
.faq-q .plus {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 300;
  color: var(--glow-2);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item.open .plus { transform: rotate(45deg); }
.faq-a {
  color: var(--bone-dim);
  font-size: 15px;
  line-height: 1.6;
  margin-top: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin-top 0.3s ease;
}
.faq-item.open .faq-a { max-height: 400px; margin-top: 16px; }

/* ========= Footer ========= */
.footer {
  position: relative;
  border-top: 1px solid var(--line);
  padding: 80px 0 40px;
  background: var(--void);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
.footer-logo-block .nav-logo { font-size: 22px; }
.footer-tagline {
  color: var(--bone-dim);
  font-size: 14px;
  margin-top: 20px;
  max-width: 320px;
  line-height: 1.55;
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  color: var(--bone-dim);
  font-size: 14px;
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--glow-2); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
}
.footer-socials { display: flex; gap: 18px; }
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--bone-dim);
  transition: border-color 0.2s, color 0.2s;
}
.footer-socials a:hover { border-color: var(--glow-2); color: var(--glow-2); }

/* ========= Logomark ========= */
.znr-mark {
  position: relative;
  display: inline-block;
}
.znr-mark .ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.2px solid var(--glow-2);
  box-shadow: 0 0 12px rgba(155, 109, 255, 0.5);
  animation: spin 14s linear infinite;
}
.znr-mark .ring::before {
  content: '';
  position: absolute;
  width: 4px; height: 4px;
  background: var(--glow-2);
  border-radius: 50%;
  top: -2px; left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 8px var(--glow-2);
}
.znr-mark .core {
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: var(--void);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: -0.04em;
  color: var(--bone);
}
@keyframes spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }

/* ========= Reveal animations ========= */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s cubic-bezier(.2,.65,.3,1), transform 0.9s cubic-bezier(.2,.65,.3,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ========= Responsive ========= */
@media (max-width: 1100px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card.span-3, .product-card.span-4 { grid-column: span 6; }
  .product-card.featured { flex-direction: column; }
  .product-card.featured .product-card-cover { width: 100%; min-height: 320px; }
  .product-card.featured .product-card-body { padding: 32px; }
  .music-card { grid-template-columns: 1fr; padding: 40px; }
  .music-visual { aspect-ratio: auto; min-height: 240px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 720px) {
  .section-pad { padding: 96px 0; }
  .container, .container-narrow { padding: 0 20px; }
  .nav-inner { padding: 14px 20px; }
  .nav-links { display: none; }
  .pillars-grid { grid-template-columns: 1fr; }
  .product-card.span-3, .product-card.span-4, .product-card.span-6 { grid-column: span 12; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stat:nth-child(2) { border-right: 0; }
  .hero-stat:nth-child(1), .hero-stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .sample-card { padding: 32px 24px; }
  .sample-pulls { grid-template-columns: 1fr; }
  .affiliate-card { grid-template-columns: 1fr; padding: 40px 28px; }
  .signup-form { flex-direction: column; border-radius: 16px; padding: 14px; }
  .signup-form .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; }
}

/* ========= Black Hole ========= */
.blackhole {
  position: relative;
  pointer-events: none;
}
.bh-halo {
  position: absolute;
  inset: -20%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(155, 109, 255, 0.25) 0%, rgba(255, 61, 143, 0.12) 25%, rgba(56, 232, 216, 0.05) 50%, transparent 70%);
  filter: blur(40px);
  animation: bh-halo-pulse 8s ease-in-out infinite;
}
@keyframes bh-halo-pulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.08); opacity: 1; }
}

/* the disk — large flattened ellipse with conic gradient (rotates) */
.bh-disk {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  transform: rotateX(72deg);
  transform-style: preserve-3d;
}
.bh-disk-1 {
  background:
    conic-gradient(from 0deg,
      rgba(255, 61, 143, 0) 0%,
      rgba(155, 109, 255, 0.85) 12%,
      rgba(56, 232, 216, 0.9) 28%,
      rgba(255, 61, 143, 0.95) 45%,
      rgba(78, 211, 255, 0.85) 60%,
      rgba(155, 109, 255, 0.8) 78%,
      rgba(255, 61, 143, 0) 100%);
  -webkit-mask: radial-gradient(closest-side, transparent 28%, black 32%, black 100%);
          mask: radial-gradient(closest-side, transparent 28%, black 32%, black 100%);
  filter: blur(6px) brightness(1.1);
  animation: bh-rotate 22s linear infinite;
  opacity: 0.95;
}
.bh-disk-2 {
  background:
    conic-gradient(from 180deg,
      transparent 0%,
      rgba(56, 232, 216, 0.8) 14%,
      rgba(155, 109, 255, 0.95) 32%,
      rgba(255, 61, 143, 0.9) 52%,
      transparent 75%,
      rgba(78, 211, 255, 0.6) 88%,
      transparent 100%);
  -webkit-mask: radial-gradient(closest-side, transparent 30%, black 35%, black 85%, transparent 100%);
          mask: radial-gradient(closest-side, transparent 30%, black 35%, black 85%, transparent 100%);
  filter: blur(14px);
  animation: bh-rotate 32s linear infinite reverse;
  opacity: 0.85;
}
.bh-disk-3 {
  background:
    conic-gradient(from 90deg,
      transparent 0%,
      rgba(244, 240, 255, 0.8) 8%,
      transparent 16%,
      rgba(255, 61, 143, 0.6) 35%,
      transparent 50%,
      rgba(56, 232, 216, 0.7) 70%,
      transparent 85%);
  -webkit-mask: radial-gradient(closest-side, transparent 31%, black 33%, black 50%, transparent 70%);
          mask: radial-gradient(closest-side, transparent 31%, black 33%, black 50%, transparent 70%);
  filter: blur(2px);
  animation: bh-rotate 16s linear infinite;
  opacity: 0.95;
}
@keyframes bh-rotate {
  to { transform: rotateX(72deg) rotate(360deg); }
}

/* upper crescent of the back side of the disk (gravitational lensing) */
.bh-lens-top {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 14%;
  transform: translate(-50%, -50%) translateY(-26%);
  border-radius: 50%;
  background:
    conic-gradient(from 270deg,
      transparent 0deg,
      rgba(155, 109, 255, 0.6) 90deg,
      rgba(56, 232, 216, 0.7) 180deg,
      rgba(255, 61, 143, 0.6) 270deg,
      transparent 360deg);
  -webkit-mask: radial-gradient(ellipse 50% 100% at center, black 30%, transparent 80%);
          mask: radial-gradient(ellipse 50% 100% at center, black 30%, transparent 80%);
  filter: blur(8px);
  animation: bh-rotate-flat 24s linear infinite;
  opacity: 0.75;
}
@keyframes bh-rotate-flat {
  to { transform: translate(-50%, -50%) translateY(-26%) rotate(360deg); }
}

/* event horizon */
.bh-event {
  position: absolute;
  inset: 28%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, #000 70%, rgba(20, 8, 50, 0.7) 100%);
  box-shadow:
    inset 0 0 60px 10px rgba(0, 0, 0, 0.95),
    0 0 80px rgba(0, 0, 0, 0.9),
    0 0 30px rgba(155, 109, 255, 0.6);
  z-index: 3;
}
.bh-event-shine {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 30%, rgba(155, 109, 255, 0.18) 0%, transparent 50%);
}

/* photon ring — sharp thin glowing line */
.bh-ring {
  position: absolute;
  inset: 27%;
  border-radius: 50%;
  border: 1.5px solid rgba(244, 240, 255, 0.9);
  box-shadow:
    0 0 24px rgba(155, 109, 255, 0.9),
    0 0 12px rgba(244, 240, 255, 0.7),
    inset 0 0 12px rgba(155, 109, 255, 0.4);
  z-index: 4;
  animation: bh-ring-shimmer 4s ease-in-out infinite;
}
@keyframes bh-ring-shimmer {
  0%, 100% { box-shadow: 0 0 24px rgba(155, 109, 255, 0.9), 0 0 12px rgba(244, 240, 255, 0.7), inset 0 0 12px rgba(155, 109, 255, 0.4); }
  50% { box-shadow: 0 0 40px rgba(255, 61, 143, 0.9), 0 0 20px rgba(244, 240, 255, 0.9), inset 0 0 18px rgba(56, 232, 216, 0.5); }
}

.bh-photon {
  position: absolute;
  inset: 25%;
  border-radius: 50%;
  border: 0.5px solid rgba(56, 232, 216, 0.6);
  z-index: 4;
  opacity: 0.6;
}

/* particles streaming in */
.bh-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.bh-particle {
  position: absolute;
  top: 50%; left: 50%;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(244, 240, 255, 0.95);
  box-shadow: 0 0 6px rgba(155, 109, 255, 0.9);
  transform-origin: 0 0;
  animation: bh-particle var(--dur) linear infinite;
  animation-delay: var(--delay);
  opacity: 0;
}
@keyframes bh-particle {
  0% {
    transform: rotate(var(--start)) translateX(45%) scale(0.4);
    opacity: 0;
  }
  10% { opacity: 1; }
  80% { opacity: 1; }
  100% {
    transform: rotate(calc(var(--start) + 540deg)) translateX(15%) scale(0.1);
    opacity: 0;
  }
}

/* responsive scale */
@media (max-width: 900px) {
  .blackhole { transform: scale(0.7); }
}
@media (max-width: 600px) {
  .blackhole { transform: scale(0.5); }
}

/* ========= Tarot product cards ========= */
.tarot-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  margin-top: 80px;
  perspective: 1800px;
}
.tarot {
  position: relative;
  aspect-ratio: 5 / 8.4;
  border-radius: 18px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(.2,.7,.2,1);
  display: block;
}
.tarot:hover {
  transform: translateY(-14px) rotateX(4deg) rotateY(-2deg);
}
.tarot::before {
  /* outer ornate frame */
  content: '';
  position: absolute; inset: 0;
  border-radius: 18px;
  padding: 1.4px;
  background: linear-gradient(180deg, var(--glow-5) 0%, var(--glow-2) 35%, var(--glow-3) 80%, var(--glow-4) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  z-index: 3;
  pointer-events: none;
  opacity: 0.55;
  transition: opacity 0.5s;
}
.tarot:hover::before { opacity: 1; }
.tarot::after {
  /* inner thin gold-violet hairline */
  content: '';
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(244, 240, 255, 0.15);
  border-radius: 12px;
  z-index: 3;
  pointer-events: none;
}

.tarot-inner {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, #08051c 0%, #02000a 100%);
}
.tarot-cover {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1), filter 0.6s ease;
  filter: saturate(1.05) brightness(0.92);
}
.tarot:hover .tarot-cover {
  transform: scale(1.12);
  filter: saturate(1.15) brightness(1);
}
.tarot-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(155, 109, 255, 0.55), transparent 60%);
  opacity: 0.5;
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.4s;
}
.tarot:hover .tarot-glow { opacity: 0.85; }

/* top label band */
.tarot-band {
  position: absolute;
  top: 0; left: 0; right: 0;
  padding: 16px 18px 14px;
  display: flex; justify-content: space-between; align-items: baseline;
  z-index: 4;
  background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, transparent 100%);
}
.tarot-roman {
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  color: var(--glow-1);
  letter-spacing: 0.04em;
}
.tarot-tier {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-dim);
}

/* bottom revealed details */
.tarot-foot {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 22px 20px 22px;
  z-index: 4;
  background: linear-gradient(180deg, transparent 0%, rgba(3, 0, 20, 0.92) 35%, rgba(3, 0, 20, 0.98) 100%);
}
.tarot-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}
.tarot-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13px;
  color: var(--bone-dim);
  line-height: 1.3;
  margin-bottom: 14px;
}
.tarot-meta {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.tarot-price {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--bone);
}
.tarot-cta {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--glow-2);
  display: inline-flex; align-items: center; gap: 6px;
}
.tarot:hover .tarot-cta { color: var(--glow-1); }

/* reveal panel on hover - bullet points */
.tarot-reveal {
  position: absolute;
  inset: 0;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(3, 0, 20, 0.2) 0%, rgba(3, 0, 20, 0.55) 35%, rgba(3, 0, 20, 0.98) 70%);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.5s cubic-bezier(.2,.7,.2,1);
  z-index: 5;
  pointer-events: none;
}
.tarot:hover .tarot-reveal { opacity: 1; transform: translateY(0); }

.tarot-reveal-list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}
.tarot-reveal-list li {
  font-size: 12.5px;
  line-height: 1.4;
  color: var(--bone);
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
  display: flex; gap: 10px; align-items: baseline;
}
.tarot-reveal-list li::before {
  content: '◆';
  color: var(--glow-2);
  font-size: 7px;
  flex-shrink: 0;
}

@media (max-width: 1100px) {
  .tarot-row { grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .tarot:nth-child(4), .tarot:nth-child(5) { /* keep flow */ }
}
@media (max-width: 720px) {
  .tarot-row { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (max-width: 460px) {
  .tarot-row { grid-template-columns: 1fr; }
}

/* ========= Custom scroll feel ========= */
::selection { background: var(--glow-2); color: var(--void); }
