/* ── TOP BANNER ── */
.top-banner {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(17,17,17,0.92);
  border-bottom: 1px solid rgba(255,46,149,0.22);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.68rem; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--cream-dim); opacity: 1;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.top-banner.hidden { opacity: 0; transform: translateY(-100%); pointer-events: none; }
.top-banner-text { display: flex; align-items: center; gap: 12px; }
.top-banner-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 8px var(--gold); flex-shrink: 0;
}
.top-banner-dismiss {
  position: absolute; right: 20px;
  background: none; border: none; cursor: none;
  color: var(--cream-dim); opacity: 0.3;
  font-size: 0.72rem; transition: opacity 0.2s; line-height: 1;
}
.top-banner-dismiss:hover { opacity: 0.8; }
body.has-banner nav { top: calc(36px + 12px); }

/* ── NAV ── */
nav {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%); z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 32px;
  width: calc(100% - 80px); max-width: 1280px;
  background: rgba(246,242,238,0.95);
  backdrop-filter: blur(20px) saturate(1.5);
  border-radius: 999px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.1), 0 0 0 1px rgba(255,46,149,0.1);
  transition: box-shadow 0.3s;
}
.nav-logo { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; background: linear-gradient(135deg, var(--gold), var(--gold-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: 2px; }
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a { color: var(--ink); text-decoration: none; font-family: 'Inter', system-ui, sans-serif; font-size: 0.78rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; transition: color 0.25s; cursor: none; }
.nav-links a:hover { color: var(--gold); }
.nav-cta { background: transparent; border: 1.5px solid var(--gold); color: var(--gold); padding: 10px 28px; border-radius: 999px; font-family: 'Inter', system-ui, sans-serif; font-size: 0.76rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; cursor: none; transition: all 0.25s; text-decoration: none; }
.nav-cta:hover { background: var(--gold); color: #fff; box-shadow: 0 4px 20px rgba(255,46,149,0.4); transform: translateY(-1px); }

/* ── HERO ── */
.hero { position: relative; height: 100vh; overflow: hidden; }
.hero-sticky {
  height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
  text-align: center;
  padding: 170px 80px 120px;
  position: relative;
  overflow: hidden;
  perspective: 900px;
}
body.has-banner .hero-sticky { padding-top: 206px; }
/* Hero reveals always visible — don't rely on IntersectionObserver for above-fold content */
.hero-sticky .reveal { opacity: 1 !important; transform: translateY(0) !important; transition: none !important; }

/* ── HERO SLIDER ── */
.hero-slider {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
}
.hero-slide {
  position: absolute; inset: 0;
  transform: translateX(100%);
  transition: transform 0.9s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}
.hero-slide img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero-slide.active  { transform: translateX(0); }
.hero-slide.exiting { transform: translateX(-100%); }
/* Dark scrim so text always pops */
.hero-slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.58) 0%,
    rgba(0,0,0,0.32) 55%,
    rgba(0,0,0,0.44) 100%
  );
}
/* Ensure hero content stays above slider + gradients */
.hero-content {
  position: relative; z-index: 2;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.08s linear;
}
.hero-content.tilt-snap { transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1); }
/* Dark rectangle zone — isolates text from image, makes pink pop */
.hero-content::before {
  content: '';
  position: absolute;
  inset: -52px -72px -44px -72px;
  background: rgba(10, 4, 28, 0.62);
  border-radius: 20px;
  box-shadow: 0 0 0 1px rgba(255,46,149,0.18), 0 12px 60px rgba(0,0,0,0.6);
  z-index: -1;
  pointer-events: none;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(180deg, rgba(246,242,238,0.55) 0%, rgba(246,242,238,0.2) 60%, rgba(246,242,238,0) 100%),
    radial-gradient(ellipse 70% 56% at 50% 36%, rgba(255,46,149,0.18) 0%, transparent 62%),
    radial-gradient(ellipse 46% 38% at 54% 32%, rgba(196,115,243,0.14) 0%, transparent 56%),
    radial-gradient(ellipse 42% 46% at 12% 82%, rgba(255,200,198,0.32) 0%, transparent 62%),
    radial-gradient(ellipse 45% 48% at 88% 8%,  rgba(237,216,248,0.3) 0%, transparent 58%);
  animation: heroBgPulse 8s ease-in-out infinite;
}
.hero-brand-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('/images/kamzour-emblem.png');
  background-repeat: no-repeat;
  background-position: 50% 38%;
  background-size: min(760px, 82vw) auto;
  opacity: 0.12;
  mix-blend-mode: multiply;
  pointer-events: none;
  animation: emblemBreathe 8s ease-in-out infinite;
  -webkit-mask-image: radial-gradient(ellipse 44% 38% at 50% 38%, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.46) 48%, transparent 76%);
  mask-image: radial-gradient(ellipse 44% 38% at 50% 38%, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.46) 48%, transparent 76%);
}
@keyframes heroBgPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.75; } }
@keyframes emblemBreathe {
  0%,100% { opacity: 0.12; }
  40%      { opacity: 0.48; }
  60%      { opacity: 0.48; }
}

.hero-ring {
  position: absolute; border-radius: 50%; top: 50%; left: 50%;
  --rx: 0px; --ry: 0px;
  border: 1px solid rgba(255,46,149,0.13);
  animation: ringPulse 6s ease-in-out infinite;
}
.hero-ring:nth-child(1) { width: 500px;  height: 500px;  animation-delay: 0s; }
.hero-ring:nth-child(2) { width: 750px;  height: 750px;  animation-delay: 1s;  border-color: rgba(255,46,149,0.08); }
.hero-ring:nth-child(3) { width: 1000px; height: 1000px; animation-delay: 2s;  border-color: rgba(255,46,149,0.07); }
.hero-ring:nth-child(4) { width: 1300px; height: 1300px; animation-delay: 3s;  border-color: rgba(255,46,149,0.05); }
@keyframes ringPulse {
  0%,100% { transform: translate(calc(-50% + var(--rx)), calc(-50% + var(--ry))) scale(1);    opacity: 1; }
  50%      { transform: translate(calc(-50% + var(--rx)), calc(-50% + var(--ry))) scale(1.04); opacity: 0.6; }
}

/* ── HERO IMAGE COLUMNS ── */
.hero-cols-left,
.hero-cols-right {
  position: absolute; top: 0; bottom: 0; z-index: 0;
  display: flex; gap: 10px;
  padding: 10px;
  overflow: hidden;
  pointer-events: none;
  width: 300px;
}
.hero-cols-left  { left: 0; }
.hero-cols-right { right: 0; }

.hero-cols-left {
  -webkit-mask-image:
    linear-gradient(to right,  black 0%, black 55%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image:
    linear-gradient(to right,  black 0%, black 55%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-composite: destination-in;
  mask-composite: intersect;
}
.hero-cols-right {
  -webkit-mask-image:
    linear-gradient(to left,   black 0%, black 55%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image:
    linear-gradient(to left,   black 0%, black 55%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-composite: destination-in;
  mask-composite: intersect;
}

.hero-col { flex: 1; overflow: hidden; }

.hero-col-inner {
  display: flex; flex-direction: column; gap: 10px;
  animation: heroColUp var(--col-dur, 36s) linear infinite;
  will-change: transform;
}
.hero-col-even .hero-col-inner {
  animation-name: heroColDown;
  animation-delay: -18s;
}
@keyframes heroColUp   { from { transform: translateY(0); } to { transform: translateY(-50%); } }
@keyframes heroColDown { from { transform: translateY(-50%); } to { transform: translateY(0); } }

.hero-col-img {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 2/3;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.hero-col-img.loaded { opacity: 1; }
.hero-col-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* ── HERO CONTENT ── */
.hero-content { position: relative; z-index: 1; width: 100%; max-width: 900px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 2.4px;
  text-transform: uppercase; color: var(--ink); margin-bottom: 36px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; width: 48px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.hero-eyebrow::after { background: linear-gradient(to left, transparent, var(--gold)); }
.hero h1 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(3.6rem, 8vw, 7.5rem);
  font-weight: 900; line-height: 1.06; margin-bottom: 28px; letter-spacing: -0.002em;
  /* Constant forward lean — bottom of text always closer to viewer */
  transform: perspective(700px) rotateX(-10deg);
  transform-origin: center 85%;
  filter:
    drop-shadow(0 16px 0 rgba(80,0,160,0.75))
    drop-shadow(0 28px 48px rgba(0,0,0,0.9))
    drop-shadow(0 0 64px rgba(255,46,149,0.55));
}
.hero-phrase { display: block; }

/* ── Per-word psychology colours ── */
.word-feel {
  color: #ff2e95;
  font-family: 'Playfair Display', serif;
  font-style: italic;
}
.word-see {
  color: #00e5ff;
}
.word-imagine {
  color: #ffe14d;
  font-family: 'Playfair Display', serif;
  font-style: italic;
}
.word-own {
  color: #ffb347;
  letter-spacing: 0.04em;
}
.word-it {
  color: rgba(255,255,255,0.35);
  font-size: 0.62em;
  font-weight: 500;
  font-style: normal;
  font-family: 'Inter', system-ui, sans-serif;
  vertical-align: middle;
}

.hero h1 .grad {
  background: linear-gradient(135deg, #ff2e95 0%, #d63aff 45%, #7e24dd 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  position: relative; display: inline-block; overflow: hidden;
}
.hero h1 .grad::after {
  content: '';
  position: absolute; top: 0; left: -80%; width: 55%; height: 100%;
  background: linear-gradient(105deg, transparent 20%, rgba(255,255,255,0.52) 50%, transparent 80%);
  pointer-events: none;
  animation: shimmerSweep 6s ease-in-out infinite;
  animation-delay: 1.4s;
}
@keyframes shimmerSweep {
  0%   { left: -80%; opacity: 0; }
  8%   { opacity: 1; }
  38%  { left: 130%; opacity: 0.6; }
  39%  { opacity: 0; }
  100% { left: 130%; opacity: 0; }
}
.hero-tagline {
  font-family: 'Playfair Display', serif; font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-style: italic; color: rgba(255,255,255,0.82); margin: 0 auto 44px; max-width: 580px;
  line-height: 1.6;
  animation: taglineFloat 4.2s ease-in-out infinite;
}
@keyframes taglineFloat {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-7px); }
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn-primary { background: var(--accent); color: var(--frost); padding: 16px 52px; border-radius: var(--button-radius); font-family: 'Inter', system-ui, sans-serif; font-size: 0.82rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; cursor: none; border: none; transition: all 0.28s; text-decoration: none; display: inline-block; box-shadow: 0 6px 28px rgba(255,46,149,0.32); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(255,46,149,0.55); }
.btn-outline { background: transparent; border: 1.5px solid rgba(15,23,42,0.48); color: var(--ink); padding: 16px 52px; border-radius: var(--button-radius); font-family: 'Inter', system-ui, sans-serif; font-size: 0.82rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; cursor: none; transition: all 0.28s; text-decoration: none; display: inline-block; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); box-shadow: 0 4px 20px rgba(255,46,149,0.2); }
.hero-actions .btn-outline { border-color: rgba(255,255,255,0.55); color: rgba(255,255,255,0.88); }
.hero-actions .btn-outline:hover { border-color: var(--gold); color: var(--gold); }


.hero-scroll { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; animation: scrollBounce 2.2s ease-in-out infinite; z-index: 1; }
.hero-scroll-label { font-size: 0.62rem; letter-spacing: 3px; text-transform: uppercase; color: var(--ink); opacity: 0.5; }
@keyframes scrollBounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(10px)} }

.cupid-arrow { display: flex; align-items: center; gap: 6px; }
.cupid-inner { display: flex; flex-direction: column; align-items: center; }
.cupid-heart { font-size: 13px; color: #e0445f; line-height: 1; margin-bottom: 2px; filter: drop-shadow(0 0 5px rgba(224,68,95,0.9)); animation: cupidPulse 1.8s ease-in-out infinite; }
@keyframes cupidPulse { 0%,100%{ transform: scale(1); } 40%{ transform: scale(1.3); } 60%{ transform: scale(1); } }
.cupid-shaft { width: 1px; height: 36px; background: linear-gradient(to bottom, rgba(255,46,149,0.8), rgba(255,46,149,0.15)); }
.cupid-tip { width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 7px solid rgba(255,46,149,0.7); }
.cupid-wings { font-size: 1rem; color: var(--gold); opacity: 0.35; line-height: 1; font-style: italic; }
.cupid-wings-left  { transform: rotate(40deg)  scaleX(-1); }
.cupid-wings-right { transform: rotate(-40deg); }

/* ── STATS ── */
.stats { background: var(--graphite); border-top: 1px solid rgba(255,46,149,0.14); border-bottom: 1px solid rgba(255,46,149,0.14); padding: 60px; display: flex; justify-content: center; flex-wrap: wrap; box-shadow: var(--card-shadow); }
.stat { text-align: center; padding: 20px 80px; border-right: 1px solid rgba(255,46,149,0.12); }
.stat:last-child { border-right: none; }
.stat-number { font-family: 'Inter', system-ui, sans-serif; font-size: 3.2rem; font-weight: 900; letter-spacing: -0.03em; background: linear-gradient(135deg, #ff2e95, #d63aff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; }
.stat-label { font-family: 'Inter', system-ui, sans-serif; font-size: 0.7rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--cream-dim); margin-top: 10px; }

/* ── GALLERY — PINTEREST SHOWCASE (cycling CTA + flanking columns) ── */
.gallery-section {
  position: relative;
  min-height: 920px;
  background: #faf9f7;
  overflow: hidden;
}
.gallery-section::before {
  content: '';
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(ellipse 80% 62% at 50% 28%,
    rgba(250,249,247,0.96) 0%,
    rgba(250,249,247,0.72) 32%,
    rgba(250,249,247,0.22) 58%,
    transparent 80%
  );
}
.gallery-header { text-align: center; padding: 80px 40px 0; position: relative; z-index: 2; }
.gallery-header .section-eyebrow { color: var(--accent); }
.gallery-header .section-title { color: var(--ink); }
.gallery-sub {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem; color: var(--slate);
  margin: 0 auto; max-width: 480px;
  line-height: 1.7; font-weight: 400;
}

/* Gradient blob pill behind cycling em text */
.gallery-em-wrap {
  position: relative;
  display: inline-block;
}
.gallery-em-blob {
  position: absolute;
  inset: -14px -28px;
  border-radius: 99px;
  filter: blur(16px);
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(135deg, rgba(255,46,149,0.32) 0%, rgba(196,115,243,0.24) 60%, rgba(126,36,221,0.18) 100%);
  transition: background 1s ease;
}
.gallery-em-wrap em {
  position: relative;
  z-index: 1;
}
.em-word {
  display: inline-block;
  transition: opacity 0.32s ease;
}

/* Showcase container — full bleed background */
.gallery-showcase {
  position: absolute; inset: 0;
  display: flex; align-items: stretch;
  height: 100%; overflow: hidden;
  z-index: 0;
}

/* Left/right image column groups */
.showcase-side {
  flex: 1;
  display: flex; gap: 8px; height: 100%;
  overflow: hidden; padding: 0 8px;
}
.showcase-left {
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image:         linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
}
.showcase-right {
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image:         linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
}

/* Individual column */
.showcase-col { flex: 1; overflow: hidden; }
.showcase-col-inner {
  display: flex; flex-direction: column; gap: 8px;
  animation: scUp var(--sc-dur, 44s) linear infinite;
  will-change: transform;
}
.sc-col-even .showcase-col-inner {
  animation-name: scDown;
  animation-delay: -22s;
}
@keyframes scUp   { from { transform: translateY(0); }    to { transform: translateY(-50%); } }
@keyframes scDown { from { transform: translateY(-50%); } to { transform: translateY(0); }    }

/* Images inside columns — height set by JS */
.sc-img {
  width: 100%; border-radius: 14px; overflow: hidden;
  flex-shrink: 0;
  opacity: 0; transition: opacity 0.6s ease;
}
.sc-img.loaded { opacity: 1; }
.sc-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Center CTA panel — lives in .gallery-header now */
.showcase-center {
  display: flex; flex-direction: column;
  align-items: center; gap: 0; text-align: center;
}
.gallery-header .showcase-center {
  max-width: 380px;
  margin: 0 auto 24px;
  padding: 0;
}
.showcase-cta {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.sc-cta-icon { font-size: 2.2rem; display: block; }
.sc-cta-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem); font-weight: 900;
  color: var(--ink); letter-spacing: -0.02em; line-height: 1.1;
}

/* Progress dots — now sit directly under h2 */
.gallery-header .showcase-dots { margin: 20px auto 0; }
.showcase-dots { display: flex; gap: 8px; align-items: center; justify-content: center; }
.sc-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(15,23,42,0.2);
  transition: all 0.4s ease; cursor: pointer;
}
.sc-dot.sc-dot-active { width: 24px; border-radius: 4px; background: var(--accent); }
.sc-dot:hover:not(.sc-dot-active) { background: rgba(15,23,42,0.45); }

/* Reveal */
.gallery-showcase { opacity: 0; transition: opacity 1.2s ease; }
.gallery-showcase.showcase-visible { opacity: 1; }

@media (max-width: 1024px) {
  .gallery-section { min-height: 760px; }
}
@media (max-width: 768px) {
  .gallery-section { min-height: 600px; }
  .showcase-left { display: none; }
  .showcase-right { display: none; }
}

/* ── GENERATE SECTION — MASCULINE ENERGY ── */
.generate-section {
  background: linear-gradient(135deg, #0D0A1E 0%, #1A1030 40%, #120820 70%, #0A0614 100%);
  padding: 140px 60px;
  position: relative;
  overflow: hidden;
}
.generate-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(139,26,74,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 30%, rgba(214,58,255,0.1) 0%, transparent 50%);
  pointer-events: none;
}
/* ── TYPEWRITER FULL-BG ── */
.gen-ghost-wrap {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
}

/* Shared phase base */
.gen-bg-phase {
  position: absolute; inset: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 1.1s ease;
}
.gen-bg-phase.active { opacity: 1; }

/* ── SHORT phase: large, centered, dramatic ── */
.gen-bg-phase--short {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 100px 18%;
}
.gen-bg-label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.58rem; font-weight: 700;
  letter-spacing: 5px; text-transform: uppercase;
  margin-bottom: 28px; display: block;
}
.gen-bg-phase--short .gen-bg-label { color: rgba(255,46,149,0.4); }
.gen-bg-phase--short .gen-bg-content {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  line-height: 1.65; letter-spacing: 0.01em;
  color: rgba(255,100,170,0.16);
  white-space: pre-wrap;
}

/* ── LONG phase: smaller, flowing, fills section ── */
.gen-bg-phase--long {
  padding: 108px 80px 80px;
  display: flex; flex-direction: column;
}
.gen-bg-phase--long .gen-bg-label { color: rgba(168,100,255,0.45); }
.gen-bg-phase--long .gen-bg-content {
  font-family: 'Playfair Display', serif;
  font-size: 0.92rem; line-height: 2.05;
  color: rgba(190,140,255,0.12);
  white-space: pre-wrap; word-break: break-word;
  flex: 1; overflow: hidden;
}

/* Blinking cursor — shared */
.gen-bg-cursor {
  display: inline-block; width: 2px; height: 0.9em;
  background: rgba(255,46,149,0.5); vertical-align: text-bottom;
  animation: cursorBlink 0.75s step-end infinite; margin-left: 1px;
}
@keyframes cursorBlink { 0%,100%{opacity:1} 50%{opacity:0} }

.generate-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 80px;
  position: relative; z-index: 1;
}
.generate-float {
  flex: 0 0 380px;
  height: 460px;
  position: relative;
}
.generate-float-card {
  position: absolute;
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
  transition: transform 0.4s ease;
}
.generate-float-card:nth-child(1) { width: 195px; height: 255px; top: 50px; left: 0;   z-index: 3; transform: rotate(-5deg); }
.generate-float-card:nth-child(2) { width: 215px; height: 275px; top: 20px; left: 100px; z-index: 2; transform: rotate(2deg); }
.generate-float-card:nth-child(3) { width: 175px; height: 235px; top: 90px; left: 205px; z-index: 1; transform: rotate(-2deg); }
.generate-float:hover .generate-float-card:nth-child(1) { transform: rotate(-8deg) translateY(-8px); }
.generate-float:hover .generate-float-card:nth-child(2) { transform: rotate(3deg) translateY(-4px); }
.generate-float:hover .generate-float-card:nth-child(3) { transform: rotate(-4deg) translateY(-6px); }
.generate-float-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.generate-float-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #2a1228, #4a1e35); display: flex; align-items: center; justify-content: center; font-size: 3rem; }

.generate-text { flex: 1; }
.generate-text .section-eyebrow {
  margin-bottom: 20px;
  font-size: 0.82rem; letter-spacing: 4px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.generate-text .section-title { color: var(--cream); margin-bottom: 0; }
.generate-sub {
  font-size: 1rem; color: var(--cream-dim); line-height: 1.85;
  margin: 24px 0 44px; font-weight: 300;
}

/* Scroll word reveal — bidirectional, blur + color morph + scramble */
.gen-word {
  display: inline;
  opacity: 0.15;
  filter: blur(6px);
  transition: opacity 0.5s ease, filter 0.5s ease;
}
.gen-word.lit {
  opacity: 1;
  filter: blur(0px);
}

/* Big gradient 3 */
.gen-num {
  display: inline-block;
  font-size: 3.6rem; font-weight: 900; line-height: 0.85;
  vertical-align: -0.18em;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 60%, #7e24dd 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
}

/* Card AI generation — spinning ring indicator */
@keyframes genRing {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}
.generate-float-card::before {
  content: '';
  position: absolute;
  width: 54px; height: 54px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  border: 2px solid rgba(255,255,255,0.08);
  border-top-color: var(--accent2);
  border-right-color: rgba(255,46,149,0.5);
  border-radius: 50%;
  box-sizing: border-box;
  opacity: 0;
  pointer-events: none;
  z-index: 10;
  transition: opacity 0.3s;
}
.generate-float-card.gen-animating::before {
  opacity: 1;
  animation: genRing 0.85s linear infinite;
}

/* Card AI generation animation */
@keyframes genBlurReveal {
  0%   { filter: blur(0px)  brightness(1)    grayscale(0);   }
  12%  { filter: blur(2px)  brightness(0.35) grayscale(0.7); }
  40%  { filter: blur(14px) brightness(0.55) grayscale(0.5); }
  72%  { filter: blur(4px)  brightness(0.85) grayscale(0.1); }
  100% { filter: blur(0px)  brightness(1)    grayscale(0);   }
}
@keyframes scanFade {
  0%,18%  { opacity: 0.75; background-position: 0 0; }
  80%,100%{ opacity: 0;    background-position: 0 -80px; }
}
.generate-float-card.gen-animating img {
  animation: genBlurReveal 5s ease-in-out forwards;
}
.generate-float-card::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 3px,
    rgba(196,115,243,0.07) 3px, rgba(196,115,243,0.07) 5px
  );
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s;
}
.generate-float-card.gen-animating::after {
  animation: scanFade 5s ease forwards;
}

/* ── SANCTUARY SECTION — FEMININE ENERGY ── */
.sanctuary-section {
  background: linear-gradient(135deg, #FFF0F6 0%, #FFE4EE 40%, #FFF5F8 100%);
  padding: 140px 60px;
  position: relative;
  overflow: hidden;
}
.sanctuary-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 80% 50%, rgba(255,182,193,0.35) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 30%, rgba(255,105,180,0.12) 0%, transparent 55%);
  pointer-events: none;
}
.sanctuary-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 80px;
  position: relative; z-index: 1;
}
.sanctuary-text { flex: 1; }
.sanctuary-text .section-eyebrow { color: #C2185B; }
.sanctuary-text .section-title { color: #1A0A12; }
.sanctuary-sub {
  font-size: 1rem; color: #5D3A44; line-height: 1.85;
  margin: 20px 0 44px; font-weight: 400;
}
.sanctuary-rooms {
  flex: 0 0 480px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.room-card {
  border-radius: 24px;
  aspect-ratio: 1 / 1;
  cursor: pointer;
  position: relative; overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 28px rgba(0,0,0,0.14);
}
.room-card:hover { box-shadow: 0 20px 50px rgba(0,0,0,0.22); }
.room-passionate { background: linear-gradient(150deg, #6D0000 0%, #C62828 55%, #E53935 100%); }
.room-mysterious { background: linear-gradient(150deg, #0D1B4E 0%, #1A237E 55%, #3949AB 100%); }
.room-tender     { background: linear-gradient(150deg, #AD1457 0%, #E91E63 55%, #F8BBD0 100%); }
.room-bold       { background: linear-gradient(150deg, #38006B 0%, #7B1FA2 55%, #CE93D8 100%); }
.room-card-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
  z-index: 0; border-radius: inherit;
}

/* ── ROOM SYMBOLS ── */
.room-symbol {
  position: absolute; left: 50%; top: 42%;
  pointer-events: none; z-index: 1;
}

/* — PASSIONATE: 3 flickering flames — */
.room-passionate .room-symbol {
  width: 28px; height: 56px;
  transform: translate(-50%, -50%);
  border-radius: 50% 50% 30% 30% / 70% 70% 30% 30%;
  background: linear-gradient(to top, #FF6B00, #FF2D55 55%, #FFE040);
  animation: flameDance 1.9s ease-in-out infinite 0.3s;
}
.room-passionate .room-symbol::before,
.room-passionate .room-symbol::after {
  content: '';
  position: absolute; bottom: 0;
  border-radius: 50% 50% 30% 30% / 70% 70% 30% 30%;
  background: linear-gradient(to top, #FF6B00, #FF2D55 55%, #FFE040);
}
.room-passionate .room-symbol::before {
  width: 20px; height: 44px; left: -24px;
  animation: flameDance 2.3s ease-in-out infinite 0s;
}
.room-passionate .room-symbol::after {
  width: 22px; height: 48px; left: 26px;
  animation: flameDance 1.7s ease-in-out infinite 0.6s;
}
@keyframes flameDance {
  0%,100% { transform: scaleY(1) skewX(0deg); opacity: 0.9; }
  20%      { transform: scaleY(1.14) skewX(-5deg); opacity: 1; }
  50%      { transform: scaleY(0.86) skewX(4deg); opacity: 0.78; }
  75%      { transform: scaleY(1.06) skewX(-2deg); opacity: 0.94; }
}

/* — MYSTERIOUS: blinking eye — */
.room-mysterious .room-symbol {
  width: 74px; height: 42px;
  transform: translate(-50%, -50%);
  border: 2.5px solid rgba(255,255,255,0.72);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  animation: eyeBlink 5s ease-in-out infinite 1s;
}
.room-mysterious .room-symbol .eye-pupil {
  display: block;
  width: 22px; height: 22px;
  background: radial-gradient(circle, rgba(255,255,255,0.96) 18%, rgba(147,197,253,0.7) 55%, rgba(29,78,216,0.9) 100%);
  border-radius: 50%;
  position: relative;
  animation: irisDrift 6s ease-in-out infinite;
  flex-shrink: 0;
}
.room-mysterious .room-symbol .eye-pupil::after {
  content: '';
  position: absolute;
  width: 7px; height: 7px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  top: 3px; left: 3px;
}
@keyframes eyeBlink {
  0%,38%,100% { transform: translate(-50%, -50%) scaleY(1); }
  46%          { transform: translate(-50%, -50%) scaleY(0.06); }
  54%          { transform: translate(-50%, -50%) scaleY(1); }
}
@keyframes irisDrift {
  0%,100% { transform: translateX(0px); }
  30%      { transform: translateX(11px); }
  70%      { transform: translateX(-9px); }
}

/* — TENDER: double-beat heartbeat — */
.room-tender .room-symbol {
  transform: translate(-50%, -50%);
  font-size: 3rem; line-height: 1;
  color: rgba(255,255,255,0.92);
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.55));
  animation: heartBeat 1.9s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
  text-align: center; white-space: nowrap;
}
@keyframes heartBeat {
  0%   { transform: translate(-50%, -50%) scale(1);    filter: drop-shadow(0 0 6px rgba(255,255,255,0.45)); }
  14%  { transform: translate(-50%, -50%) scale(1.22); filter: drop-shadow(0 0 22px rgba(255,255,255,0.9)); }
  28%  { transform: translate(-50%, -50%) scale(1);    filter: drop-shadow(0 0 6px rgba(255,255,255,0.45)); }
  42%  { transform: translate(-50%, -50%) scale(1.12); filter: drop-shadow(0 0 14px rgba(255,255,255,0.7)); }
  56%  { transform: translate(-50%, -50%) scale(1);    filter: drop-shadow(0 0 6px rgba(255,255,255,0.45)); }
  100% { transform: translate(-50%, -50%) scale(1);    filter: drop-shadow(0 0 6px rgba(255,255,255,0.45)); }
}

/* — BOLD: lightning bolt + electric ring — */
.room-bold .room-symbol {
  width: 38px; height: 62px;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,0.92);
  clip-path: polygon(62% 0%, 18% 54%, 46% 54%, 38% 100%, 82% 46%, 54% 46%);
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.65));
  animation: boltFlash 2.6s ease-in-out infinite;
}
.room-bold .room-symbol .bolt-ring {
  display: block;
  position: absolute; top: 50%; left: 50%;
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.75);
  transform: translate(-50%, -50%) scale(0.1);
  animation: electricRing 2.6s ease-out infinite;
}
@keyframes boltFlash {
  0%,100% { opacity: 0.72; filter: drop-shadow(0 0 4px rgba(255,255,255,0.4)); }
  48%,52%  { opacity: 1;    filter: drop-shadow(0 0 22px rgba(255,255,255,1)) drop-shadow(0 0 44px rgba(206,147,216,0.85)); }
}
@keyframes electricRing {
  0%   { transform: translate(-50%, -50%) scale(0.15); opacity: 0.9; }
  100% { transform: translate(-50%, -50%) scale(2.8);  opacity: 0; }
}

/* — Sanctuary mouse wave chars — */
.wave-char { display: inline-block; will-change: transform; }

/* ── COMMUNITY SECTION — QUEER ENERGY ── */
.community-section {
  background: linear-gradient(160deg, #1A0A30 0%, #2D1B5E 45%, #0A0620 100%);
  padding: 120px 60px; text-align: center;
  position: relative; overflow: hidden;
}
.community-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 20% 60%, rgba(0,201,177,0.1) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 80% 30%, rgba(214,58,255,0.12) 0%, transparent 50%);
  pointer-events: none;
}
.community-section .section-eyebrow { color: #CE93D8; position: relative; z-index: 1; }
.instagram-number {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(4rem, 10vw, 8rem); font-weight: 900;
  letter-spacing: -0.04em; line-height: 1;
  background: linear-gradient(135deg, #00C9B1, #D63AFF, #FF6B9D);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  position: relative; z-index: 1;
}
.community-channels {
  display: flex; justify-content: center; gap: 12px; flex-wrap: wrap;
  max-width: 860px; margin: 0 auto; position: relative; z-index: 1;
}
.channel-handle {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(214,58,255,0.22);
  padding: 13px 24px; font-size: 0.86rem; border-radius: 99px;
  transition: border-color 0.28s, box-shadow 0.28s, transform 0.2s;
  cursor: default;
}
.channel-handle:hover { border-color: rgba(214,58,255,0.55); box-shadow: 0 6px 22px rgba(214,58,255,0.2); transform: translateY(-2px); }
.channel-name { color: #CE93D8; font-weight: 600; }
.channel-mystery .channel-name { color: var(--cream-dim); }
.channel-blur { filter: blur(5px); transition: filter 0.4s ease; user-select: none; }
.channel-mystery:hover .channel-blur { filter: blur(0); color: #CE93D8; }
.platform-row { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; }
.platform-badge {
  display: inline-flex; align-items: center;
  padding: 10px 22px; border-radius: 40px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.5px;
  border: 1px solid rgba(214,58,255,0.28); transition: transform 0.2s, box-shadow 0.3s;
  cursor: default; color: var(--cream-dim);
  background: rgba(255,255,255,0.06);
}
.platform-badge:hover { transform: translateY(-2px); box-shadow: 0 0 22px rgba(214,58,255,0.2); }

/* ── WAITLIST SECTION ── */
.waitlist-section {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 80px 40px;
  overflow: hidden;
}
.waitlist-masonry-bg {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 6px; padding: 6px;
  pointer-events: none;
}
.waitlist-bg-img {
  border-radius: 10px;
  overflow: hidden;
  background: #1a1228;
}
.waitlist-bg-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  opacity: 0; transition: opacity 0.8s ease;
}
.waitlist-bg-img img.loaded { opacity: 1; }
.waitlist-dim {
  position: absolute; inset: 0;
  background: rgba(6, 3, 14, 0.72);
  backdrop-filter: blur(3px);
  pointer-events: none;
}
.waitlist-inner {
  position: relative; z-index: 1;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 32px;
  padding: 64px 60px;
  max-width: 580px; width: 100%;
  text-align: center;
  box-shadow: 0 40px 100px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,46,149,0.1) inset;
}
.waitlist-kicker {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-style: italic;
  color: rgba(255,255,255,0.6); margin-bottom: 4px;
}
.waitlist-kicker-bold {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; font-style: italic;
  color: var(--cream); margin-bottom: 28px;
}
.waitlist-card-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900; color: #fff;
  letter-spacing: -0.02em; line-height: 1.1;
  margin-bottom: 0;
}
.waitlist-card-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.waitlist-card-sub {
  font-size: 0.92rem; color: rgba(255,255,255,0.6);
  line-height: 1.75; margin: 20px 0 36px;
}
.waitlist-form {
  display: flex; gap: 0;
  border: 1.5px solid rgba(255,46,149,0.3); border-radius: 999px;
  overflow: hidden; transition: border-color 0.3s, box-shadow 0.3s;
}
.waitlist-form:focus-within { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(255,46,149,0.14); }
.waitlist-input {
  flex: 1; background: rgba(255,255,255,0.06); border: none;
  padding: 18px 24px; color: var(--cream);
  font-family: 'Inter', system-ui, sans-serif; font-size: 0.95rem; outline: none;
}
.waitlist-input::placeholder { color: rgba(200,191,176,0.5); }
.waitlist-btn {
  background: linear-gradient(135deg, #ff2e95, #d63aff); color: #fff;
  border: none; padding: 16px 44px;
  font-family: 'Inter', system-ui, sans-serif; font-size: 0.8rem;
  font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
  cursor: pointer; transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  white-space: nowrap; border-radius: 999px;
  box-shadow: 0 4px 24px rgba(255,46,149,0.35);
}
.waitlist-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(255,46,149,0.55); }
.waitlist-btn:active { transform: translateY(0); opacity: 0.9; }
.waitlist-success { display: none; color: var(--gold); font-size: 1rem; margin-top: 20px; font-family: 'Playfair Display', serif; font-style: italic; }
.waitlist-error   { display: none; color: #e07070; font-size: 0.85rem; margin-top: 12px; }
.waitlist-badge {
  font-size: 0.7rem; color: rgba(255,255,255,0.35);
  letter-spacing: 1.2px; margin-top: 22px;
  font-weight: 600; text-transform: uppercase;
}

/* ── FLOATING PILL ── */
.floating-pill {
  position: fixed; bottom: 32px; right: 32px; z-index: 300;
  display: flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  background: linear-gradient(135deg, #ff2e95, #d63aff);
  color: #fff; border: none; border-radius: 999px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.5px;
  cursor: none;
  box-shadow: 0 8px 32px rgba(255,46,149,0.5);
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.25s;
  pointer-events: none;
}
.floating-pill.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.floating-pill:hover { transform: translateY(-3px) !important; box-shadow: 0 14px 44px rgba(255,46,149,0.7); }
.floating-pill-heart { font-size: 1rem; animation: heartbeat 1.8s ease-in-out infinite; }
@keyframes pillGlow {
  0%,100% { box-shadow: 0 8px 32px rgba(255,46,149,0.5); }
  50%      { box-shadow: 0 8px 48px rgba(255,46,149,0.8), 0 0 0 10px rgba(255,46,149,0.07); }
}

/* ── COMING SOON OVERLAY ── */
.coming-soon-overlay {
  position: fixed; inset: 0; background: rgba(8,6,16,0.88);
  backdrop-filter: blur(10px); z-index: 500;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
}
.coming-soon-overlay.open { opacity: 1; pointer-events: all; }
.coming-soon-card {
  position: relative; background: var(--graphite);
  border: 1px solid rgba(255,46,149,0.28);
  padding: 64px 52px; max-width: 480px; width: 90%; text-align: center;
  border-radius: var(--card-radius); box-shadow: var(--card-shadow);
  transform: translateY(24px); transition: transform 0.4s ease;
}
.coming-soon-overlay.open .coming-soon-card { transform: translateY(0); }
.coming-soon-close {
  position: absolute; top: 20px; right: 22px;
  background: none; border: none; color: var(--cream-dim);
  font-size: 1rem; cursor: pointer; opacity: 0.5; transition: opacity 0.2s;
}
.coming-soon-close:hover { opacity: 1; }
.coming-soon-heart {
  font-size: 3rem; color: #e0445f;
  filter: drop-shadow(0 0 14px rgba(224,68,95,0.65));
  margin-bottom: 26px; display: block;
  animation: heartbeat 1.8s ease-in-out infinite;
}
.coming-soon-title { font-family: 'Inter', system-ui, sans-serif; font-size: 1.6rem; font-weight: 900; color: var(--cream); margin-bottom: 16px; letter-spacing: -0.002em; }
.coming-soon-body  { font-size: 0.9rem; color: var(--cream-dim); line-height: 1.85; font-weight: 300; margin-bottom: 38px; }
.coming-soon-cta-btn {
  display: inline-block; padding: 14px 40px;
  background: linear-gradient(135deg, #ff2e95, #d63aff); color: #fff;
  font-family: 'Inter', system-ui, sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  text-decoration: none; border-radius: 999px; border: none; transition: opacity 0.25s, transform 0.22s;
  box-shadow: 0 4px 18px rgba(255,46,149,0.36);
}
.coming-soon-cta-btn:hover { opacity: 0.88; transform: translateY(-2px); }

/* ── WQ OVERLAY ── */
.wq-overlay {
  position: fixed; inset: 0; z-index: 1200;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  background:
    radial-gradient(ellipse 70% 50% at 50% 8%, rgba(255,46,149,0.18), transparent 62%),
    rgba(4,3,10,0.9);
  backdrop-filter: blur(14px);
  opacity: 0; pointer-events: none; transition: opacity 0.28s ease;
}
.wq-overlay.open { opacity: 1; pointer-events: all; }
.wq-card {
  position: relative; width: min(720px, 100%);
  max-height: min(90vh, 780px); overflow: auto;
  padding: 42px;
  background: linear-gradient(145deg, rgba(15,15,20,0.99), rgba(10,10,15,0.99));
  border: 1px solid rgba(255,46,149,0.24); border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  transform: translateY(18px) scale(0.98); transition: transform 0.28s ease;
}
.wq-overlay.open .wq-card { transform: translateY(0) scale(1); }
.wq-close {
  position: absolute; top: 18px; right: 18px;
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,46,149,0.18); border-radius: 50%;
  color: var(--cream-dim); cursor: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.wq-close:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.wq-progress-dots { display: flex; gap: 8px; margin: 0 48px 34px 0; }
.wq-dot { width: 8px; height: 8px; border-radius: 999px; background: rgba(245,240,232,0.18); transition: width 0.22s, background 0.22s, box-shadow 0.22s; }
.wq-dot.active { width: 30px; background: var(--gold); box-shadow: 0 0 16px rgba(255,46,149,0.55); }
.wq-dot.done   { background: rgba(255,46,149,0.55); }
.wq-step { display: none; min-height: 360px; }
.wq-step.active { display: block; animation: wqStepIn 0.25s ease both; }
@keyframes wqStepIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.wq-eyebrow { color: var(--gold); font-size: 0.68rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 14px; }
.wq-title { max-width: 590px; font-family: 'Playfair Display', serif; font-size: clamp(2rem, 5vw, 3.1rem); line-height: 1.08; color: var(--cream); margin-bottom: 14px; }
.wq-subtitle { max-width: 540px; color: var(--cream-dim); font-size: 0.95rem; line-height: 1.75; font-weight: 300; margin-bottom: 30px; }
.wq-fields { display: grid; gap: 14px; }
.wq-input {
  width: 100%; min-height: 58px; padding: 0 18px;
  background: rgba(8,6,16,0.68); border: 1px solid rgba(255,46,149,0.18);
  border-radius: 999px; color: var(--cream);
  font-family: 'Inter', sans-serif; font-size: 0.95rem; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.wq-input:focus { border-color: rgba(255,46,149,0.72); box-shadow: 0 0 0 4px rgba(255,46,149,0.08); }
.wq-input::placeholder { color: rgba(200,191,176,0.58); }
.wq-options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.wq-option {
  min-height: 58px; display: flex; align-items: center;
  padding: 14px 18px;
  background: rgba(8,6,16,0.52); border: 1px solid rgba(255,46,149,0.16);
  border-radius: 999px; color: var(--cream-dim); font-size: 0.9rem;
  line-height: 1.35; cursor: none; user-select: none;
  transition: transform 0.2s, border-color 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s;
}
.wq-option:hover { border-color: rgba(255,46,149,0.58); color: var(--cream); transform: translateY(-1px); }
.wq-option.selected { background: linear-gradient(135deg, rgba(255,46,149,0.92), rgba(214,58,255,0.88)); border-color: transparent; color: #fff; box-shadow: 0 10px 28px rgba(255,46,149,0.28); }
.wq-qlabel { color: var(--cream); font-family: 'Playfair Display', serif; font-size: 1.1rem; margin: 24px 0 12px; }
.wq-skip { display: none; width: fit-content; margin: 22px auto 0; color: var(--gold); font-size: 0.78rem; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; cursor: none; }
.wq-nav { display: flex; justify-content: space-between; gap: 14px; margin-top: 34px; padding-top: 24px; border-top: 1px solid rgba(255,46,149,0.14); }
.wq-btn-back, .wq-btn-next { min-height: 48px; padding: 0 26px; border-radius: 999px; font-family: 'Inter', sans-serif; font-size: 0.76rem; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; cursor: none; transition: opacity 0.2s, transform 0.2s; }
.wq-btn-back { background: transparent; border: 1px solid rgba(255,46,149,0.24); color: var(--cream-dim); }
.wq-btn-next { background: linear-gradient(135deg, #ff2e95, #d63aff); border: 1px solid transparent; color: #fff; box-shadow: 0 8px 28px rgba(255,46,149,0.32); }
.wq-btn-back:hover, .wq-btn-next:hover { transform: translateY(-1px); }
.wq-btn-back:disabled, .wq-btn-next:disabled { opacity: 0.38; transform: none; pointer-events: none; }
.wq-result { min-height: 430px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 18px 0 6px; position: relative; overflow: hidden; border-radius: 8px; }
.wq-result::before, .wq-result::after { content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0; }
.wq-result > * { position: relative; z-index: 1; }
.wq-result-heart { color: #e0445f; font-size: 3.2rem; line-height: 1; margin-bottom: 22px; filter: drop-shadow(0 0 16px rgba(224,68,95,0.72)); animation: wqHeartReveal 1.3s ease both; }
.wq-result-label { color: var(--gold); font-size: 0.72rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 12px; }
.wq-result-archetype { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 6vw, 4rem); line-height: 1.05; color: var(--cream); margin-bottom: 18px; }
.wq-result-desc { max-width: 560px; color: var(--cream-dim); font-size: 1rem; line-height: 1.9; font-weight: 300; }
.wq-result-confirm { margin-top: 28px; color: var(--gold); font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.05rem; }
.wq-result-romantic::before { opacity:1; background: radial-gradient(circle at 50% 18%, rgba(224,68,95,0.2), transparent 22%), radial-gradient(circle at 26% 62%, rgba(255,46,149,0.16), transparent 28%), radial-gradient(circle at 74% 62%, rgba(255,46,149,0.12), transparent 28%); animation: wqRomanticBloom 3.2s ease-in-out infinite alternate; }
.wq-result-romantic .wq-result-heart { animation: wqHeartReveal 1.1s ease both, heartbeat 1.8s ease-in-out 1.1s infinite; }
.wq-result-sensual::before { opacity:1; background: linear-gradient(115deg, transparent 18%, rgba(214,58,255,0.18) 42%, rgba(255,46,149,0.12) 50%, transparent 74%); transform: translateX(-42%); animation: wqSensualSweep 3.4s ease-in-out infinite; }
.wq-result-sensual .wq-result-archetype { text-shadow: 0 0 26px rgba(214,58,255,0.24); }
.wq-result-power::before { opacity:1; inset:12px; border:1px solid rgba(255,46,149,0.26); box-shadow: inset 0 0 0 1px rgba(255,46,149,0.06), 0 0 30px rgba(255,46,149,0.1); animation: wqPowerPulse 1.8s ease-in-out infinite; }
.wq-result-power .wq-result-heart { color: var(--gold); filter: drop-shadow(0 0 18px rgba(255,46,149,0.76)); }
.wq-result-fantasy::before { opacity:1; background-image: radial-gradient(circle at 22% 28%, rgba(214,58,255,0.7) 0 2px, transparent 3px), radial-gradient(circle at 70% 22%, rgba(255,46,149,0.65) 0 2px, transparent 3px), radial-gradient(circle at 78% 70%, rgba(245,240,232,0.5) 0 1px, transparent 2px), radial-gradient(circle at 32% 76%, rgba(255,46,149,0.6) 0 1px, transparent 2px); animation: wqFantasyFloat 4s ease-in-out infinite alternate; }
.wq-result-mix::before { opacity:1; background: conic-gradient(from 140deg at 50% 48%, transparent 0 18%, rgba(255,46,149,0.14), transparent 36% 55%, rgba(255,46,149,0.14), transparent 74% 100%); filter: blur(2px); animation: wqMixTurn 7s linear infinite; }
.wq-result-mix::after { opacity:0.65; inset:18%; border-radius:50%; border:1px solid rgba(255,46,149,0.14); animation: wqMixBreath 2.8s ease-in-out infinite; }
@keyframes wqHeartReveal     { from { opacity:0; transform:translateY(10px) scale(0.72);} to {opacity:1; transform:translateY(0) scale(1);} }
@keyframes wqRomanticBloom   { from { transform:scale(0.96); filter:blur(0);} to {transform:scale(1.05); filter:blur(2px);} }
@keyframes wqSensualSweep    { 0%{transform:translateX(-48%);opacity:0;} 28%,62%{opacity:1;} 100%{transform:translateX(48%);opacity:0;} }
@keyframes wqPowerPulse      { 0%,100%{transform:scale(0.985);opacity:0.55;} 50%{transform:scale(1);opacity:1;} }
@keyframes wqFantasyFloat    { from{transform:translateY(10px);opacity:0.52;} to{transform:translateY(-8px);opacity:1;} }
@keyframes wqMixTurn         { to{transform:rotate(360deg);} }
@keyframes wqMixBreath       { 0%,100%{transform:scale(0.9);opacity:0.32;} 50%{transform:scale(1.08);opacity:0.8;} }

/* ── MOBILE NAV DRAWER ── */
.nav-hamburger { display: none; }
.mobile-nav-drawer {
  position: fixed; top:0; right:0; bottom:0; z-index:950;
  width: min(82vw, 292px);
  background: rgba(10,10,15,0.98); backdrop-filter: blur(24px) saturate(1.5);
  border-left: 1px solid rgba(255,46,149,0.2);
  padding: 80px 32px 48px;
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.36s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
}
.mobile-nav-drawer.open { transform: translateX(0); pointer-events: all; }
.mobile-nav-backdrop { position:fixed; inset:0; z-index:940; background:rgba(4,3,10,0.72); backdrop-filter:blur(3px); opacity:0; pointer-events:none; transition:opacity 0.3s; }
.mobile-nav-backdrop.open { opacity:1; pointer-events:all; }
.mobile-nav-close { position:absolute; top:18px; right:18px; width:38px; height:38px; display:flex; align-items:center; justify-content:center; background:rgba(255,255,255,0.03); border:1px solid rgba(255,46,149,0.2); border-radius:50%; color:var(--cream-dim); font-size:0.9rem; cursor:pointer; transition:background 0.2s, border-color 0.2s, color 0.2s; }
.mobile-nav-close:hover { background:var(--gold); border-color:var(--gold); color:var(--dark); }
.mobile-nav-links { list-style:none; flex:1; }
.mobile-nav-links li { border-bottom:1px solid rgba(255,46,149,0.1); }
.mobile-nav-links a { display:block; padding:19px 0; font-family:'Playfair Display',serif; font-size:1.2rem; font-style:italic; letter-spacing:0.5px; color:var(--cream); text-decoration:none; transition:color 0.2s, padding-left 0.2s; }
.mobile-nav-links a:hover { color:var(--gold); padding-left:8px; }
.mobile-nav-cta { display:block; margin-top:28px; padding:16px 24px; text-align:center; background:linear-gradient(135deg,#ff2e95,#d63aff); color:#fff; font-family:'Inter',system-ui,sans-serif; font-size:0.72rem; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; text-decoration:none; border-radius:999px; border:none; transition:opacity 0.25s; box-shadow:0 4px 18px rgba(255,46,149,0.35); }
.mobile-nav-cta:hover { opacity:0.88; }

/* ── FOOTER ── */
footer { background:rgba(10,10,15,0.96); border-top:1px solid rgba(255,46,149,0.14); padding:40px 60px; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:20px; }
.footer-logo { font-family:'Playfair Display',serif; font-size:1.2rem; font-weight:700; background:linear-gradient(135deg,#ff2e95,#d63aff); -webkit-background-clip:text; -webkit-text-fill-color:transparent; letter-spacing:2px; }
.footer-copy  { font-family:'Inter',system-ui,sans-serif; font-size:0.78rem; color:var(--cream-dim); }
.footer-links { display:flex; gap:28px; }
.footer-links a { font-family:'Inter',system-ui,sans-serif; font-size:0.78rem; color:var(--cream-dim); text-decoration:none; transition:color 0.25s; cursor:none; }
.footer-links a:hover { color:var(--gold); }

/* ── LIGHTBOX ── */
.lightbox { position:fixed; inset:0; z-index:1000; display:flex; align-items:center; justify-content:center; opacity:0; pointer-events:none; transition:opacity 0.35s ease; }
.lightbox.open { opacity:1; pointer-events:all; }
.lightbox-backdrop { position:absolute; inset:0; background:rgba(4,3,10,0.93); backdrop-filter:blur(12px); cursor:none; }
.lightbox-content { position:relative; z-index:1; max-width:90vw; max-height:88vh; display:flex; flex-direction:column; align-items:center; gap:20px; }
.lightbox-img-wrap { position:relative; border:1px solid rgba(255,46,149,0.2); border-radius:16px; overflow:hidden; box-shadow:0 40px 100px rgba(0,0,0,0.8), 0 0 60px rgba(255,46,149,0.1); }
.lightbox-img { display:block; max-width:88vw; max-height:78vh; object-fit:contain; transform:scale(0.94); transition:transform 0.4s cubic-bezier(0.34,1.56,0.64,1); }
.lightbox.open .lightbox-img { transform:scale(1); }
.lightbox-close { position:absolute; top:-18px; right:-18px; width:40px; height:40px; background:var(--dark-card); border:1px solid var(--border); border-radius:50%; color:var(--cream-dim); font-size:1.1rem; display:flex; align-items:center; justify-content:center; cursor:none; transition:all 0.2s; z-index:2; }
.lightbox-close:hover { background:var(--gold); color:var(--dark); border-color:var(--gold); }
.lightbox-nav { display:flex; gap:12px; }
.lightbox-btn { background:rgba(26,18,40,0.9); border:1px solid var(--border); color:var(--cream-dim); padding:10px 28px; border-radius:2px; font-size:0.75rem; letter-spacing:2px; text-transform:uppercase; cursor:none; transition:all 0.2s; font-family:'Inter',sans-serif; }
.lightbox-btn:hover { border-color:var(--gold); color:var(--gold); }
.lightbox-counter { font-size:0.72rem; color:var(--cream-dim); letter-spacing:2px; align-self:center; }

/* ── HEARTBEAT (shared) ── */
@keyframes heartbeat { 0%,100%{transform:scale(1);} 14%{transform:scale(1.2);} 28%{transform:scale(1);} 42%{transform:scale(1.1);} 56%{transform:scale(1);} }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */

/* Tablet & small desktop */
@media (max-width: 1200px) {
  .hero-sticky { padding: 160px 60px 100px; }
  body.has-banner .hero-sticky { padding-top: 196px; }
  .masonry-grid { column-count: 4; }
  .generate-inner { gap: 50px; }
  .generate-float { flex: 0 0 300px; height: 380px; }
  .sanctuary-inner { gap: 50px; }
  .sanctuary-rooms { flex: 0 0 380px; }
}

@media (max-width: 1024px) {
  nav { width: calc(100% - 48px); padding: 12px 24px; }
  .nav-links { display: none; }
  .nav-hamburger {
    display: flex; flex-direction: column; justify-content: space-between;
    width: 26px; height: 17px; background: none; border: none; padding: 0;
  }
  .nav-hamburger span { display: block; width: 100%; height: 1.5px; background: var(--accent); border-radius: 1px; transition: transform 0.26s ease, opacity 0.2s; }

  .hero-sticky { padding: 150px 40px 90px; }
  body.has-banner .hero-sticky { padding-top: 186px; }

  .generate-section, .sanctuary-section { padding: 100px 40px; }
  .generate-inner { flex-direction: column; gap: 60px; align-items: flex-start; }
  .generate-float { flex: none; width: 100%; max-width: 380px; height: 360px; margin: 0 auto; }
  .sanctuary-inner { flex-direction: column; gap: 60px; }
  .sanctuary-rooms { flex: none; width: 100%; max-width: 480px; margin: 0 auto; }

  .community-section { padding: 100px 30px; }
  .stats { padding: 40px 20px; }
  .stat { flex: 1 1 180px; border-right: none; padding: 20px 30px; }

  footer { flex-direction: column; text-align: center; padding: 32px 30px; }
  .footer-links { justify-content: center; }
}

@media (max-width: 768px) {
  nav { width: calc(100% - 32px); padding: 10px 20px; top: 10px; border-radius: 16px; }
  body.has-banner nav { top: calc(36px + 8px); }
  .hero-sticky { padding: 130px 24px 80px; }
  body.has-banner .hero-sticky { padding-top: 166px; }
  .hero-float { display: none; }
  .hero-ring:nth-child(1) { width: 360px; height: 360px; }
  .hero-ring:nth-child(2) { width: 560px; height: 560px; }
  .hero-ring:nth-child(3), .hero-ring:nth-child(4) { display: none; }
  .hero h1 { font-size: clamp(3rem, 12vw, 5rem); }
  .hero .reveal { opacity: 1; transform: none; }

  .masonry-grid { column-count: 3; padding: 0 20px; }

  .generate-section { padding: 80px 24px; }
  .generate-float { max-width: 300px; height: 300px; }
  .generate-float-card:nth-child(1) { width: 155px; height: 200px; }
  .generate-float-card:nth-child(2) { width: 165px; height: 215px; left: 80px; }
  .generate-float-card:nth-child(3) { width: 140px; height: 185px; left: 165px; top: 70px; }
  .generate-text .section-title { font-size: clamp(1.9rem, 6vw, 2.8rem); }

  .sanctuary-section { padding: 80px 24px; }
  .sanctuary-rooms { grid-template-columns: 1fr 1fr; gap: 10px; }
  .room-card { height: auto; aspect-ratio: 1 / 1; }

  .community-section { padding: 80px 24px; }
  .community-channels { gap: 8px; }

  .waitlist-section { padding: 60px 20px; min-height: auto; }
  .waitlist-masonry-bg { grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(4, 1fr); }
  .waitlist-inner { padding: 44px 28px; border-radius: 24px; }
  .waitlist-form { flex-direction: column; border-radius: 16px; overflow: visible; border: none; gap: 12px; }
  .waitlist-input { border: 1.5px solid rgba(255,46,149,0.3); border-radius: 999px; padding: 16px 20px; }
  .waitlist-btn { border-radius: 999px; padding: 16px 24px; width: 100%; }

  .floating-pill { bottom: 20px; right: 20px; padding: 12px 20px; font-size: 0.76rem; }

  .top-banner { height: auto; padding: 8px 44px 8px 16px; font-size: 0.62rem; letter-spacing: 0.8px; text-align: center; line-height: 1.45; }
  .top-banner-text { min-width: 0; max-width: 100%; justify-content: center; flex-wrap: wrap; }
  .top-banner-dot { display: none; }
  .nav-studio { display: none !important; }
  .nav-right .nav-cta { display: none; }
  nav { padding: 15px 18px; }

  /* WQ overlay mobile */
  .wq-overlay { padding: 12px; align-items: flex-end; }
  .wq-card { max-height: 94vh; padding: 30px 20px 22px; border-radius: 8px 8px 0 0; }
  .wq-progress-dots { margin-bottom: 24px; }
  .wq-step { min-height: 360px; }
  .wq-options { grid-template-columns: 1fr; }
  .wq-option { min-height: 52px; border-radius: 18px; }
  .wq-nav { flex-direction: column-reverse; }
  .wq-btn-back, .wq-btn-next { width: 100%; }
}

@media (max-width: 480px) {
  .masonry-grid { column-count: 2; column-gap: 8px; padding: 0 12px; }
  .masonry-item { margin-bottom: 8px; border-radius: 14px; }
  .masonry-cta { min-height: 160px; padding: 20px 16px; }
  .sanctuary-rooms { grid-template-columns: 1fr 1fr; }
  .room-card { border-radius: 18px; }
  .waitlist-masonry-bg { grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(5, 1fr); }
  .generate-float { display: none; }
  .generate-inner { align-items: center; text-align: center; }
  .generate-text .generate-sub { font-size: 0.92rem; }
  .sanctuary-inner { text-align: center; }
  .sanctuary-text .btn-primary { display: inline-block; }
}

/* ── EXCLUSIVE ACCESS MODAL ── */
.exclusive-modal {
  position: fixed;
  inset: 0;
  z-index: 9100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.exclusive-modal.open {
  opacity: 1;
  pointer-events: all;
}
.excl-bg-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.excl-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
}
.excl-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(0,0,0,0.52) 0%, rgba(22,0,48,0.64) 100%);
}
.excl-card {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.055);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 24px;
  padding: 52px 48px 44px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  box-shadow: 0 28px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,46,149,0.14);
}
.excl-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.45);
  font-size: 1rem;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.18s;
}
.excl-close:hover { color: #fff; }
.excl-lock {
  font-size: 2.2rem;
  margin-bottom: 14px;
}
.excl-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.65rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.excl-sub {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin: 0 0 30px;
}
.excl-cta {
  display: inline-block;
  background: linear-gradient(135deg, #ff2e95, #c473f3);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 13px 36px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 4px 24px rgba(255,46,149,0.32);
}
.excl-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,46,149,0.52);
}

/* ── NAV AUTH SLOT ── */
#navAuthSlot { display: flex; align-items: center; gap: 8px; }

.nav-signin {
  background: none;
  border: 1.5px solid rgba(180,80,120,0.35);
  color: var(--ink);
  padding: 9px 20px;
  border-radius: 999px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: none;
  transition: all 0.22s;
}
.nav-signin:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Nav user button (logged-in state on landing page) */
.nav-user-wrap { position: relative; }
.nav-user-btn {
  display: flex; align-items: center; gap: 8px;
  background: rgba(0,0,0,0.06);
  border: 1.5px solid rgba(180,80,120,0.25);
  border-radius: 50px;
  padding: 6px 14px 6px 8px;
  cursor: none; color: var(--ink);
  font-size: 0.8rem; font-family: 'Inter', sans-serif;
  transition: background 0.18s;
}
.nav-user-btn:hover { background: rgba(0,0,0,0.1); }
.nav-user-name { font-weight: 600; font-size: 0.8rem; max-width: 120px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.nav-user-avatar {
  width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(135deg, #ff2e95, #7e24dd);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 700;
}
.nav-user-caret { opacity: 0.4; font-size: 0.65rem; }
.nav-user-dropdown {
  position: absolute; top: calc(100% + 12px); right: 0;
  background: rgba(16, 4, 28, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 8px;
  min-width: 230px;
  opacity: 0; pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 600;
  color: #fff;
}
.nav-user-dropdown.open { opacity: 1; pointer-events: all; transform: translateY(0); }
.nud-head { display: flex; align-items: center; gap: 12px; padding: 10px 10px 12px; }
.nud-avatar {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #ff2e95, #7e24dd);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.88rem; font-weight: 700;
}
.nud-email { font-size: 0.8rem; font-weight: 600; }
.nud-archetype { font-size: 0.73rem; color: rgba(255,255,255,0.45); margin-top: 2px; }
.nud-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 4px 0; }
.nud-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; font-size: 0.84rem;
  color: rgba(255,255,255,0.8);
  border-radius: 10px; text-decoration: none;
  width: 100%; text-align: left;
  background: none; border: none; cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.14s, color 0.14s;
}
.nud-item:hover { background: rgba(255,255,255,0.07); color: #fff; }
.nud-signout { color: rgba(255,100,100,0.75); }
.nud-signout:hover { color: #ff7070; background: rgba(255,80,80,0.08); }

/* ── WAITLIST SECTION: new CTA style ── */
.waitlist-cta-wrap { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.waitlist-signin-link {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.45);
}
.waitlist-signin-inline {
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.75);
  font-size: 0.84rem; text-decoration: underline;
  text-underline-offset: 3px; font-family: 'Inter', sans-serif;
}
.waitlist-signin-inline:hover { color: #fff; }
.wq-result-enter {
  display: inline-block;
  margin-top: 18px;
  background: linear-gradient(135deg, #ff2e95, #c473f3);
  color: #fff;
  border-radius: 50px;
  padding: 12px 32px;
  font-size: 0.84rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 4px 20px rgba(255,46,149,0.35);
}
.wq-result-enter:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,46,149,0.52); }

/* ── AUTH MODALS (kz-modal) ── */
.kz-modal {
  position: fixed; inset: 0; z-index: 9200;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.28s ease;
}
.kz-modal.open { opacity: 1; pointer-events: all; }

.kz-modal-card {
  position: relative;
  background: linear-gradient(160deg, rgba(22,6,40,0.98) 0%, rgba(12,2,24,0.99) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 44px 40px 36px;
  width: min(460px, calc(100vw - 32px));
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,46,149,0.1);
  transform: translateY(16px);
  transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1);
  color: #fff;
}
.kz-modal.open .kz-modal-card { transform: translateY(0); }

.kz-modal-close {
  position: absolute; top: 14px; right: 18px;
  background: none; border: none;
  color: rgba(255,255,255,0.35); font-size: 0.95rem;
  cursor: pointer; padding: 4px 8px;
  transition: color 0.18s;
}
.kz-modal-close:hover { color: #fff; }

.kz-modal-logo {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, #ff2e95, #7e24dd);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 1.1rem; color: #fff;
  margin-bottom: 20px;
}
.kz-modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700;
  color: #fff; margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.kz-modal-sub {
  font-size: 0.88rem; color: rgba(255,255,255,0.5);
  margin-bottom: 28px; line-height: 1.55;
}
.kz-modal-question {
  color: rgba(255,255,255,0.75);
  font-style: italic; font-size: 0.95rem;
  margin-bottom: 20px !important;
}
.kz-form-group { margin-bottom: 16px; }
.kz-label {
  display: block; font-size: 0.78rem; font-weight: 600;
  color: rgba(255,255,255,0.55); letter-spacing: 0.05em;
  text-transform: uppercase; margin-bottom: 6px;
}
.kz-hint { text-transform: none; letter-spacing: 0; font-weight: 400; opacity: 0.6; }
.kz-input {
  width: 100%; padding: 11px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: #fff; font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.18s, background 0.18s;
}
.kz-input:focus { border-color: rgba(255,46,149,0.55); background: rgba(255,255,255,0.09); }
.kz-input::placeholder { color: rgba(255,255,255,0.25); }
.kz-select { cursor: pointer; }
.kz-select option { background: #1a0030; color: #fff; }
.kz-error {
  font-size: 0.82rem; color: #ff7070;
  background: rgba(255,80,80,0.1);
  border: 1px solid rgba(255,80,80,0.2);
  border-radius: 8px; padding: 8px 12px;
  margin-bottom: 14px;
}
.kz-btn-primary {
  width: 100%; padding: 13px;
  background: linear-gradient(135deg, #ff2e95, #c473f3);
  color: #fff; border: none; border-radius: 50px;
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  cursor: pointer; font-family: 'Inter', sans-serif;
  transition: transform 0.18s, box-shadow 0.18s, opacity 0.18s;
  box-shadow: 0 4px 20px rgba(255,46,149,0.3);
  margin-top: 6px;
}
.kz-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,46,149,0.5); }
.kz-btn-primary:disabled { opacity: 0.55; transform: none; }
.kz-modal-footer {
  margin-top: 18px; text-align: center;
  font-size: 0.82rem; color: rgba(255,255,255,0.4);
}
.kz-link {
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.65); font-size: 0.82rem;
  text-decoration: underline; text-underline-offset: 2px;
  font-family: 'Inter', sans-serif;
  transition: color 0.16s;
}
.kz-link:hover { color: #fff; }
.kz-link-inline {
  color: #c473f3; text-decoration: underline; text-underline-offset: 2px;
  font-size: inherit;
}
.kz-link-inline:hover { color: #ff2e95; }

/* ── Signup: age / terms checkboxes ── */
.kz-check-row {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 10px; cursor: pointer;
}
.kz-checkbox {
  flex-shrink: 0; margin-top: 2px;
  width: 16px; height: 16px;
  accent-color: #ff2e95; cursor: pointer;
}
.kz-check-row span {
  font-size: 0.8rem; color: rgba(255,255,255,0.55); line-height: 1.5;
}

/* ── Signup: quiz nudge banner ── */
.kz-quiz-nudge {
  display: flex; align-items: center; gap: 10px;
  background: rgba(196,115,243,0.08);
  border: 1px solid rgba(196,115,243,0.2);
  border-radius: 12px; padding: 10px 14px;
  margin: 14px 0 6px;
}
.kz-quiz-badge {
  flex-shrink: 0;
  background: linear-gradient(135deg, #ff2e95, #c473f3);
  color: #fff; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: 50px; padding: 3px 8px;
  white-space: nowrap;
}
.kz-quiz-nudge-text {
  font-size: 0.8rem; color: rgba(255,255,255,0.6); line-height: 1.4;
}

/* ── Ghost / secondary button ── */
.kz-btn-ghost {
  width: 100%; padding: 11px;
  background: transparent;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer; font-family: 'Inter', sans-serif;
  transition: border-color 0.18s, color 0.18s, background 0.18s;
  margin-top: 8px;
}
.kz-btn-ghost:hover { border-color: rgba(255,255,255,0.3); color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.04); }
.kz-btn-ghost:disabled { opacity: 0.4; cursor: not-allowed; }

/* ── Contact section ── */
.contact-links {
  display: flex; flex-direction: column; gap: 10px;
  margin: 24px 0 20px;
}
.contact-link-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  text-decoration: none;
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem; font-family: 'Inter', sans-serif;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}
.contact-link-item:hover {
  background: rgba(255,46,149,0.1);
  border-color: rgba(255,46,149,0.3);
  color: #fff;
}
.contact-link-icon {
  font-size: 1rem; opacity: 0.7; width: 20px; text-align: center;
}
