/* ── Hero Oracle ──────────────────────────────────────────── */
.hero__oracle {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  width: 100%;
  max-width: 740px;
}


.hero__oracle-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.80;
}

/* Much larger heading — editorial, commanding */
.hero__oracle-heading {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 800;
  line-height: 1.10;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--text);
}

.hero__oracle-sub {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.72;
  max-width: 480px;
  margin: 0;
}

/* ── Oracle input box ─────────────────────────────────────── */
.oracle-box {
  position: relative;
  width: 100%;
  background: rgba(4, 3, 14, 0.88);
  border: 1.5px solid rgba(160, 100, 240, 0.58);
  border-radius: 22px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  /* linear + 5 sine-curve stops keeps the glow always visible and
     removes the ease-in-out "flash" where it lingered at both dim ends */
  animation: oracle-glow 16s linear infinite;
}

@keyframes oracle-glow {
  /* sin-curve approximation: 0° → 90° → 180° → 270° → 360°
     All stops use identical 5 shadow layers so CSS interpolates cleanly. */
  0% {
    box-shadow:
      0 0 26px rgba(112, 54, 224, 0.40),
      0 0 60px rgba(112, 54, 224, 0.14),
      0 0 110px rgba(196,126,158, 0.06),
      0 10px 44px rgba(0,0,0, 0.48),
      inset 0 1px 0 rgba(255,255,255, 0.03);
    border-color: rgba(160,100,240, 0.46);
  }
  25% {
    box-shadow:
      0 0 52px rgba(160,100,240, 0.62),
      0 0 115px rgba(160,100,240, 0.26),
      0 0 170px rgba(196,126,158, 0.22),
      0 10px 44px rgba(0,0,0, 0.48),
      inset 0 1px 0 rgba(255,255,255, 0.06);
    border-color: rgba(195,135,255, 0.72);
  }
  50% {
    box-shadow:
      0 0 84px rgba(160,100,240, 0.88),
      0 0 170px rgba(160,100,240, 0.46),
      0 0 260px rgba(196,126,158, 0.50),
      0 10px 44px rgba(0,0,0, 0.48),
      inset 0 1px 0 rgba(255,255,255, 0.09);
    border-color: rgba(218,148,255, 0.94);
  }
  75% {
    box-shadow:
      0 0 52px rgba(160,100,240, 0.62),
      0 0 115px rgba(160,100,240, 0.26),
      0 0 170px rgba(196,126,158, 0.22),
      0 10px 44px rgba(0,0,0, 0.48),
      inset 0 1px 0 rgba(255,255,255, 0.06);
    border-color: rgba(195,135,255, 0.72);
  }
  100% {
    box-shadow:
      0 0 26px rgba(112, 54, 224, 0.40),
      0 0 60px rgba(112, 54, 224, 0.14),
      0 0 110px rgba(196,126,158, 0.06),
      0 10px 44px rgba(0,0,0, 0.48),
      inset 0 1px 0 rgba(255,255,255, 0.03);
    border-color: rgba(160,100,240, 0.46);
  }
}

.oracle-box:focus-within {
  animation: oracle-glow-focus 12s linear infinite;
}

@keyframes oracle-glow-focus {
  0%, 100% {
    box-shadow:
      0 0 55px rgba(160,100,240, 0.68),
      0 0 120px rgba(160,100,240, 0.30),
      0 0 180px rgba(196,126,158, 0.28),
      0 10px 44px rgba(0,0,0, 0.50),
      inset 0 1px 0 rgba(255,255,255, 0.07);
    border-color: rgba(210,140,255, 0.82);
  }
  50% {
    box-shadow:
      0 0 110px rgba(160,100,240, 0.96),
      0 0 220px rgba(160,100,240, 0.54),
      0 0 340px rgba(196,126,158, 0.58),
      0 10px 44px rgba(0,0,0, 0.50),
      inset 0 1px 0 rgba(255,255,255, 0.11);
    border-color: rgba(235,162,255, 1.00);
  }
}

.oracle-input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 1.12rem;
  line-height: 1.72;
  padding: 1.6rem 5.5rem 1.6rem 1.85rem;
  resize: none;
  min-height: 128px;
  max-height: 280px;
  overflow-y: auto;
  box-sizing: border-box;
  border-radius: 20px;
}

.oracle-input::placeholder { color: var(--text-dim); font-style: italic; }

.oracle-send {
  position: absolute;
  bottom: 1.15rem;
  right: 1.15rem;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(112,54,224,0.38), rgba(196,126,158,0.32));
  border: 1px solid rgba(255,255,255,0.05);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.32);
  transition: background 0.28s, color 0.28s, transform 0.28s, box-shadow 0.28s;
}

.oracle-send--ready {
  background: linear-gradient(135deg, var(--violet), var(--violet-2), var(--rose));
  color: #fff;
  box-shadow: 0 4px 28px rgba(112,54,224,0.58);
}

.oracle-send--ready:hover {
  transform: scale(1.14);
  box-shadow: 0 6px 40px rgba(112,54,224,0.72), 0 0 45px rgba(196,126,158,0.28);
}

.hero__oracle-hint {
  font-family: var(--font-ui);
  font-size: 0.70rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ── Celestial ring illustration ──────────────────────────── */
.hero-astral-ring {
  position: absolute;
  right: -18%;
  top: -20%;
  width: 700px;
  height: 700px;
  pointer-events: none;
  animation: gentle-rotate 200s linear infinite;
  opacity: 0.65;
}

.hero-ring-svg {
  width: 100%;
  height: 100%;
}

/* ── Hero tagline + daily card ───────────────────────────── */
.hero-tagline {
  padding: 4.5rem 0 3rem;
  border-top: 1px solid rgba(190, 145, 255, 0.12);
  position: relative;
}

/* Gradient line accent */
.hero-tagline::before {
  content: '';
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  width: 240px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--violet-2), var(--gold), transparent);
  box-shadow: 0 0 24px rgba(201,149,64,0.42);
}

.hero-tagline__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 5rem;
}

.hero-tagline__copy { min-width: 0; }

.hero-tagline__headline {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.10;
  margin-bottom: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.hero-tagline__headline em {
  font-style: italic;
  color: var(--gold);
  background: none;
  -webkit-text-fill-color: unset;
}

.hero-tagline__visual { flex-shrink: 0; }

@media (max-width: 768px) {
  .hero-tagline__inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-tagline__visual { display: flex; justify-content: center; }
}

/* ── PWA install banner ───────────────────────────────────── */
.pwa-banner {
  position: fixed;
  top: calc(var(--nav-height) + env(safe-area-inset-top, 0px));
  left: 0; right: 0;
  z-index: 1100;
  background: linear-gradient(135deg, rgba(112,54,224,0.16), rgba(160,100,240,0.10));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(160,100,240,0.22);
  padding: 0.85rem 0;
}

.pwa-banner__inner {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.pwa-banner__icon { font-size: 1rem; color: var(--gold); flex-shrink: 0; }

.pwa-banner__text {
  flex: 1;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  line-height: 1.48;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.pwa-banner__text strong { color: var(--text); font-weight: 600; }

.pwa-banner__install {
  flex-shrink: 0;
  padding: 0.48rem 1.2rem;
  background: linear-gradient(135deg, var(--violet), var(--violet-2));
  color: #fff;
  border: none;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  cursor: pointer;
  transition: opacity 0.2s, box-shadow 0.2s;
}
.pwa-banner__install:hover { opacity: 0.85; box-shadow: 0 0 22px rgba(112,54,224,0.42); }

.pwa-banner__dismiss {
  flex-shrink: 0;
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 0.88rem;
  cursor: pointer;
  padding: 0.75rem;
  margin: -0.75rem;
  line-height: 1;
  transition: color 0.2s;
}
.pwa-banner__dismiss:hover { color: var(--text-muted); }

@media (max-width: 480px) { .pwa-banner__text { font-size: 0.80rem; } }

/* ── Hero section ─────────────────────────────────────────── */
.hero {
  margin-top: calc(-1 * (var(--nav-height) + env(safe-area-inset-top, 0px)));
  padding-top: calc(var(--nav-height) + env(safe-area-inset-top, 0px) + 3rem);
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

/* ── Hero Cosmos ──────────────────────────────────────────── */
.hero-cosmos {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: visible;
  z-index: 0;
}

/* Dense starfield layer 1 */
.hero-cosmos::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1.8px 1.8px at 4%  12%, rgba(255,255,255,0.90) 0%, transparent 100%),
    radial-gradient(1px   1px   at 14% 6%,  rgba(201,149,64,0.85)  0%, transparent 100%),
    radial-gradient(2.2px 2.2px at 24% 20%, rgba(255,255,255,0.82) 0%, transparent 100%),
    radial-gradient(1px   1px   at 34% 4%,  rgba(160,100,240,0.88) 0%, transparent 100%),
    radial-gradient(1.8px 1.8px at 46% 15%, rgba(255,255,255,0.88) 0%, transparent 100%),
    radial-gradient(1px   1px   at 58% 8%,  rgba(122,176,204,0.78) 0%, transparent 100%),
    radial-gradient(2px   2px   at 68% 18%, rgba(255,255,255,0.72) 0%, transparent 100%),
    radial-gradient(1px   1px   at 80% 5%,  rgba(201,149,64,0.82)  0%, transparent 100%),
    radial-gradient(1.8px 1.8px at 90% 13%, rgba(255,255,255,0.92) 0%, transparent 100%),
    radial-gradient(1px   1px   at 97% 7%,  rgba(122,176,204,0.68) 0%, transparent 100%),
    radial-gradient(1px   1px   at 2%  32%, rgba(255,255,255,0.62) 0%, transparent 100%),
    radial-gradient(2.2px 2.2px at 18% 38%, rgba(201,149,64,0.78)  0%, transparent 100%),
    radial-gradient(1px   1px   at 40% 30%, rgba(160,100,240,0.70) 0%, transparent 100%),
    radial-gradient(1.8px 1.8px at 64% 35%, rgba(255,255,255,0.72) 0%, transparent 100%),
    radial-gradient(1px   1px   at 84% 28%, rgba(122,176,204,0.80) 0%, transparent 100%),
    radial-gradient(3.5px 3.5px at 22% 10%, rgba(201,149,64,0.92)  0%, rgba(201,149,64,0.22) 55%, transparent 100%),
    radial-gradient(3.5px 3.5px at 74% 16%, rgba(122,176,204,0.88) 0%, rgba(122,176,204,0.18) 55%, transparent 100%),
    radial-gradient(4.5px 4.5px at 50% 6%,  rgba(255,255,255,1.00) 0%, rgba(255,255,255,0.26) 60%, transparent 100%);
  animation: star-twinkle 5.5s ease-in-out infinite alternate;
}

/* Starfield layer 2 */
.hero-cosmos::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1px   1px   at 8%  22%, rgba(255,255,255,0.70) 0%, transparent 100%),
    radial-gradient(1.8px 1.8px at 20% 14%, rgba(122,176,204,0.80) 0%, transparent 100%),
    radial-gradient(1px   1px   at 36% 25%, rgba(160,100,240,0.62) 0%, transparent 100%),
    radial-gradient(2px   2px   at 52% 10%, rgba(255,255,255,0.82) 0%, transparent 100%),
    radial-gradient(1px   1px   at 70% 22%, rgba(201,149,64,0.70)  0%, transparent 100%),
    radial-gradient(1.8px 1.8px at 86% 18%, rgba(255,255,255,0.60) 0%, transparent 100%),
    radial-gradient(1px   1px   at 6%  48%, rgba(122,176,204,0.50) 0%, transparent 100%),
    radial-gradient(2px   2px   at 26% 42%, rgba(255,255,255,0.60) 0%, transparent 100%),
    radial-gradient(3.5px 3.5px at 38% 18%, rgba(201,149,64,0.78)  0%, rgba(201,149,64,0.18) 55%, transparent 100%);
  animation: star-twinkle 7.5s ease-in-out infinite alternate-reverse;
  opacity: 0.70;
}

/* ── Moon — refined, larger ───────────────────────────────── */
.hero-moon {
  position: absolute;
  top: 5%;
  left: 3%;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 28%,
    rgba(255, 248, 225, 0.80) 0%,
    rgba(201, 149, 64, 0.52) 22%,
    rgba(112, 54, 224, 0.22) 50%,
    transparent 70%);
  border: 1.5px solid rgba(160, 100, 240, 0.58);
  box-shadow:
    inset 58px 12px 72px 0px #050410,
    0 0   65px rgba(160, 100, 240, 0.58),
    0 0  130px rgba(112,  54, 224, 0.30),
    0 0  210px rgba(80,   20, 180, 0.16);
  animation: moon-ritual 5s ease-in-out infinite alternate;
}

/* Orbital ring */
.hero-moon::before {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px solid transparent;
  border-top-color: rgba(201, 149, 64, 0.65);
  border-right-color: rgba(201, 149, 64, 0.18);
  animation: orbital-ring 10s linear infinite;
}

/* Orbiting planet/star */
.hero-moon::after {
  content: '';
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,126,158,1) 0%, rgba(160,100,240,0.80) 55%, transparent 100%);
  box-shadow: 0 0 14px rgba(196,126,158,1), 0 0 28px rgba(160,100,240,0.72);
  bottom: 6px; left: -14px;
  animation: orbit-star-b 7.5s ease-in-out infinite alternate-reverse;
}

@keyframes orbital-ring {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes moon-ritual {
  from {
    box-shadow:
      inset 58px 12px 72px 0px #050410,
      0 0  48px rgba(160, 100, 240, 0.44),
      0 0  96px rgba(112,  54, 224, 0.20),
      0 0 160px rgba(80,   20, 180, 0.10);
    border-color: rgba(160, 100, 240, 0.40);
    transform: scale(1);
  }
  to {
    box-shadow:
      inset 58px 12px 72px 0px #050410,
      0 0  100px rgba(200, 140, 255, 1.00),
      0 0  200px rgba(160, 100, 240, 0.70),
      0 0  320px rgba(112,  54, 224, 0.44),
      0 0  500px rgba(80,   20, 180, 0.22),
      0 0  640px rgba(56,   10, 140, 0.10);
    border-color: rgba(220, 165, 255, 0.92);
    transform: scale(1.04);
  }
}

@keyframes orbit-star-a {
  0%   { transform: translate(0px,   0px) scale(1);    opacity: 0.72; }
  50%  { transform: translate(6px, -10px) scale(1.45); opacity: 1.00; }
  100% { transform: translate(-4px, -5px) scale(0.82); opacity: 0.52; }
}
@keyframes orbit-star-b {
  0%   { transform: translate(0px,  0px) scale(1);    opacity: 0.68; }
  50%  { transform: translate(-8px, 6px) scale(1.40); opacity: 1.00; }
  100% { transform: translate(5px,  4px) scale(0.78); opacity: 0.48; }
}
@keyframes star-twinkle {
  from { opacity: 0.38; }
  to   { opacity: 1; }
}

/* ── Floating sparkles ────────────────────────────────────── */
.sparkle {
  position: absolute;
  border-radius: 50%;
  animation: sparkle-pulse 4s ease-in-out infinite;
}

.sparkle.s1  { width:5px;  height:5px;  top:20%; left:18%; background:rgba(201,149,64,0.92);  box-shadow:0 0 10px rgba(201,149,64,0.9);  animation-delay:0s; }
.sparkle.s2  { width:3px;  height:3px;  top:38%; left:11%; background:rgba(122,176,204,0.88); box-shadow:0 0 9px rgba(122,176,204,0.9);  animation-delay:-1.5s; }
.sparkle.s3  { width:6px;  height:6px;  top:14%; left:44%; background:rgba(255,255,255,0.95); box-shadow:0 0 12px rgba(255,255,255,0.8); animation-delay:-3.0s; }
.sparkle.s4  { width:3px;  height:3px;  top:58%; left:20%; background:rgba(160,100,240,0.92); box-shadow:0 0 9px rgba(160,100,240,0.9);  animation-delay:-2.0s; }
.sparkle.s5  { width:4px;  height:4px;  top:44%; left:7%;  background:rgba(196,126,158,0.78); box-shadow:0 0 10px rgba(196,126,158,0.8); animation-delay:-4.2s; }
.sparkle.s6  { width:2px;  height:2px;  top:26%; left:32%; background:rgba(201,149,64,0.82);  box-shadow:0 0 8px rgba(201,149,64,0.8);   animation-delay:-1.0s; }
.sparkle.s7  { width:4px;  height:4px;  top:32%; left:55%; background:rgba(255,255,255,0.70); box-shadow:0 0 9px rgba(255,255,255,0.6);  animation-delay:-2.8s; }
.sparkle.s8  { width:2px;  height:2px;  top:16%; left:70%; background:rgba(201,149,64,0.65);  box-shadow:0 0 7px rgba(201,149,64,0.6);   animation-delay:-0.7s; }

@keyframes sparkle-pulse {
  0%,100% { opacity:0.22; transform:scale(1); }
  50%      { opacity:1;    transform:scale(1.9); }
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.75;
  margin-bottom: 1rem;
}

/* ── Hero desc / CTA ─────────────────────────────────────── */
.hero__desc {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 440px;
  line-height: 1.72;
  margin-bottom: 2rem;
}

.hero__desc em {
  font-style: italic;
  color: var(--gold);
}

.hero__desc--short { display: none; }
.hero__desc--full  { display: block; }

@media (max-width: 640px) {
  .hero__desc--full  { display: none; }
  .hero__desc--short { display: block; }
  .hero__inner {
    min-height: 0;
    justify-content: flex-start;
  }
}

/* ── Hero Visual / cards ──────────────────────────────────── */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
}

.hero-cards { width: 340px; height: 390px; }
.hero-tarot { width: 340px; height: 390px; filter: drop-shadow(0 0 30px rgba(196,126,158,0.22)); }

.hero-card--c {
  animation: hcard-float 4s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center bottom;
}
.hero-card--l {
  animation: hcard-side-l 5.5s ease-in-out infinite -1.5s;
  transform-box: fill-box;
  transform-origin: center bottom;
}
.hero-card--r {
  animation: hcard-side-r 6s ease-in-out infinite -3s;
  transform-box: fill-box;
  transform-origin: center bottom;
}

@keyframes hcard-float {
  0%, 100% {
    transform: translateY(0px) scale(1) rotate(0deg);
    filter: drop-shadow(0 6px 20px rgba(0,0,0,0.72)) drop-shadow(0 0 8px rgba(201,149,64,0.10));
  }
  45%, 55% {
    transform: translateY(-34px) scale(1.06) rotate(0.6deg);
    filter: drop-shadow(0 28px 44px rgba(0,0,0,0.50)) drop-shadow(0 0 44px rgba(201,149,64,0.92)) drop-shadow(0 0 72px rgba(196,126,158,0.52));
  }
}

@keyframes hcard-side-l {
  0%, 100% {
    transform: translateY(0px) rotate(0deg) scale(1);
    filter: drop-shadow(0 5px 16px rgba(0,0,0,0.68)) drop-shadow(0 0 5px rgba(160,100,240,0.08));
  }
  45%, 55% {
    transform: translateY(-24px) rotate(4deg) scale(1.05);
    filter: drop-shadow(0 22px 36px rgba(0,0,0,0.46)) drop-shadow(0 0 36px rgba(160,100,240,0.86)) drop-shadow(0 0 58px rgba(160,100,240,0.42));
  }
}

@keyframes hcard-side-r {
  0%, 100% {
    transform: translateY(0px) rotate(0deg) scale(1);
    filter: drop-shadow(0 5px 16px rgba(0,0,0,0.68)) drop-shadow(0 0 5px rgba(196,126,158,0.08));
  }
  45%, 55% {
    transform: translateY(-24px) rotate(-4deg) scale(1.05);
    filter: drop-shadow(0 22px 36px rgba(0,0,0,0.46)) drop-shadow(0 0 36px rgba(196,126,158,0.86)) drop-shadow(0 0 58px rgba(196,126,158,0.42));
  }
}

/* ── Prop card animations ──────────────────────────────── */
.pc1-card-float { animation: pc1-float 4.5s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
.pc1-orb-pulse  { animation: pc1-orb 3s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
@keyframes pc1-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
@keyframes pc1-orb {
  0%, 100% { opacity: 0.80; transform: scale(1); }
  50%       { opacity: 1;    transform: scale(1.20); filter: drop-shadow(0 0 10px rgba(196,126,158,0.85)); }
}

.pc2-spoke { animation: dash-flow 2.5s linear infinite; }
.pc2-hex   { animation: dash-flow 4s linear infinite reverse; }
@keyframes dash-flow {
  from { stroke-dashoffset: 0; }
  to   { stroke-dashoffset: -24; }
}

.pc2-card-n { animation: card-node 3.5s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
.pc2-card-1 { animation-delay:  0.0s; }
.pc2-card-2 { animation-delay:  0.6s; }
.pc2-card-3 { animation-delay:  1.2s; }
.pc2-card-4 { animation-delay:  1.8s; }
.pc2-card-5 { animation-delay:  2.4s; }
.pc2-card-6 { animation-delay:  3.0s; }
@keyframes card-node {
  0%, 100% { opacity: 0.74; transform: scale(1); }
  50%       { opacity: 1;    transform: scale(1.12); }
}

.pc3-card-l { animation: pc3-drift-l 5s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
.pc3-card-r { animation: pc3-drift-r 5s ease-in-out infinite -2.5s; transform-box: fill-box; transform-origin: center; }
.pc3-axis   { animation: axis-pulse 3s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
@keyframes pc3-drift-l {
  0%, 100% { transform: translateX(0px) translateY(0px); }
  50%       { transform: translateX(7px) translateY(-5px); }
}
@keyframes pc3-drift-r {
  0%, 100% { transform: translateX(0px)  translateY(0px); }
  50%       { transform: translateX(-7px) translateY(-5px); }
}
@keyframes axis-pulse {
  0%, 100% { opacity: 0.60; }
  50%       { opacity: 1; }
}

/* ── Category pill icons ──────────────────────────────────── */
.cat-pill__icon { animation: pill-icon-float 3.5s ease-in-out infinite; will-change: transform, filter; }
.cat-grid .cat-pill:nth-child(1) .cat-pill__icon { animation-delay: 0.0s; }
.cat-grid .cat-pill:nth-child(2) .cat-pill__icon { animation-delay: 0.6s; }
.cat-grid .cat-pill:nth-child(3) .cat-pill__icon { animation-delay: 1.2s; }
.cat-grid .cat-pill:nth-child(4) .cat-pill__icon { animation-delay: 1.8s; }
.cat-grid .cat-pill:nth-child(5) .cat-pill__icon { animation-delay: 2.4s; }
@keyframes pill-icon-float {
  0%, 100% { transform: translateY(0px) scale(1);     filter: drop-shadow(0 0 3px currentColor); }
  50%       { transform: translateY(-8px) scale(1.08); filter: drop-shadow(0 0 14px currentColor); }
}

/* ── Section divider ──────────────────────────────────────── */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0 auto 1.75rem;
  font-size: 0.62rem;
  color: var(--gold);
  filter: drop-shadow(0 0 8px rgba(201,149,64,0.75));
  letter-spacing: 0.10em;
  animation: divider-pulse 4.5s ease-in-out infinite;
}
@keyframes divider-pulse {
  0%,100% { filter: drop-shadow(0 0 5px rgba(201,149,64,0.55)); opacity:0.72; }
  50%     { filter: drop-shadow(0 0 16px rgba(201,149,64,0.92)); opacity:1; }
}
.section-divider::before,
.section-divider::after {
  content: '';
  flex: 0 0 88px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,149,64,0.75), transparent);
}

/* ── Categories ───────────────────────────────────────────── */
.categories { padding: 4rem 0 5rem; }

.categories__header { text-align: center; margin-bottom: 3rem; }
.categories__header h2 { letter-spacing: 0.04em; margin-bottom: 0.7rem; }
.categories__header p { color: var(--text-muted); font-size: 1rem; font-family: var(--font-heading); }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.1rem;
}

.cat-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2.25rem 0.85rem 1.75rem;
  background: linear-gradient(165deg, rgba(140,90,240,0.06), rgba(70,30,160,0.02));
  border: 1px solid var(--border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius-lg);
  color: var(--text-muted);
  font-size: 0.88rem;
  font-family: var(--font-ui);
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: all 0.38s cubic-bezier(0.2,0.8,0.2,1);
  cursor: pointer;
  text-align: center;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

/* Shimmer on hover */
.cat-pill::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
  transition: left 0.55s ease;
}
.cat-pill:hover::before { left: 100%; }

.cat-pill:hover {
  transform: translateY(-8px);
}

/* Per-category hover states */
.cat-pill[href*="relationship"]:hover {
  border-color: var(--rose);
  color: var(--rose-light);
  background: var(--rose-dim);
  box-shadow: 0 0 36px rgba(196,126,158,0.24), 0 14px 32px rgba(0,0,0,0.42);
}
.cat-pill[href*="career"]:hover {
  border-color: var(--violet-2);
  color: var(--purple-light);
  background: var(--purple-dim);
  box-shadow: 0 0 36px rgba(160,100,240,0.26), 0 14px 32px rgba(0,0,0,0.42);
}
.cat-pill[href*="finance"]:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: var(--gold-dim);
  box-shadow: 0 0 36px rgba(201,149,64,0.26), 0 14px 32px rgba(0,0,0,0.42);
}
.cat-pill[href*="health"]:hover {
  border-color: #4ECBA8;
  color: #80DCC0;
  background: rgba(78,203,168,0.10);
  box-shadow: 0 0 36px rgba(78,203,168,0.22), 0 14px 32px rgba(0,0,0,0.42);
}
.cat-pill[href*="spirituality"]:hover {
  border-color: var(--azure);
  color: var(--azure);
  background: var(--azure-dim);
  box-shadow: 0 0 36px rgba(122,176,204,0.24), 0 14px 32px rgba(0,0,0,0.42);
}

.cat-pill__icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  transition: transform 0.38s cubic-bezier(0.2,0.8,0.2,1), filter 0.38s;
  filter: drop-shadow(0 0 4px currentColor);
  color: var(--text-muted);
}
.cat-pill__icon svg { width: 100%; height: 100%; }
.cat-pill:hover .cat-pill__icon { transform: scale(1.20); filter: drop-shadow(0 0 16px currentColor); }

.cat-pill[href*="relationship"] .cat-pill__icon { color: var(--rose-light); }
.cat-pill[href*="career"]       .cat-pill__icon { color: var(--purple-light); }
.cat-pill[href*="finance"]      .cat-pill__icon { color: var(--gold-light); }
.cat-pill[href*="health"]       .cat-pill__icon { color: #80DCC0; }
.cat-pill[href*="spirituality"] .cat-pill__icon { color: var(--azure); }

/* ── Feature tiles ────────────────────────────────────────── */
.features-section { padding: 2.5rem 0 4.5rem; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.feature-tile {
  background: linear-gradient(158deg, rgba(140,90,240,0.07), rgba(70,30,160,0.02));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 2.75rem 2.25rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  transition: border-color 0.32s, transform 0.38s cubic-bezier(0.2,0.8,0.2,1), box-shadow 0.38s;
  position: relative;
  overflow: hidden;
}

.feature-tile::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  border-radius: 99px 99px 0 0;
  transition: filter 0.32s;
}

.feature-tile--reading::before   { background: linear-gradient(90deg, var(--violet), var(--violet-2), var(--petal)); }
.feature-tile--community::before { background: linear-gradient(90deg, #8B2880, #C47E9E); }
.feature-tile--exchange::before  { background: linear-gradient(90deg, #7A5A10, var(--gold), var(--gold-light)); }

.feature-tile:hover {
  border-color: var(--border-2);
  transform: translateY(-10px);
  box-shadow: 0 32px 80px rgba(0,0,0,0.55), 0 0 48px rgba(112,54,224,0.16);
}

.feature-tile:hover::before { filter: brightness(1.35) blur(0px); }

.feature-tile::after {
  content: '';
  position: absolute;
  top: -35px; right: -35px;
  width: 110px; height: 110px;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.38s;
}
.feature-tile--reading::after   { background: radial-gradient(circle, rgba(160,100,240,0.32), transparent 65%); }
.feature-tile--community::after { background: radial-gradient(circle, rgba(196,126,158,0.28), transparent 65%); }
.feature-tile--exchange::after  { background: radial-gradient(circle, rgba(201,149,64,0.26), transparent 65%); }
.feature-tile:hover::after { opacity: 1; }

.feature-tile__glyph { font-size: 1.65rem; line-height: 1; }

.feature-tile--reading .feature-tile__glyph   { color: var(--violet-2); filter: drop-shadow(0 0 9px rgba(160,100,240,0.70)); }
.feature-tile--community .feature-tile__glyph { color: #C47E9E; filter: drop-shadow(0 0 9px rgba(196,126,158,0.70)); }
.feature-tile--exchange .feature-tile__glyph  { color: var(--gold); filter: drop-shadow(0 0 9px rgba(201,149,64,0.70)); }

.feature-tile__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.20;
  color: var(--text);
  letter-spacing: 0em;
  font-weight: 700;
}

.feature-tile__desc {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.78;
  flex: 1;
}

.feature-tile__cta { align-self: flex-start; margin-top: 0.35rem; }

/* ── Spreads strip ────────────────────────────────────────── */
.spreads-section { padding: 1rem 0 3.5rem; }

.spreads-section__label {
  font-size: 0.74rem;
  color: var(--text-dim);
  text-align: center;
  margin-bottom: 1.1rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.spreads-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.spread-chip {
  background: linear-gradient(162deg, rgba(140,90,240,0.07), rgba(70,30,160,0.02));
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  transition: all 0.28s;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.spread-chip::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--violet), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s cubic-bezier(0.2,0.8,0.2,1);
}

.spread-chip:hover {
  border-color: rgba(201,149,64,0.52);
  background: var(--gold-dim);
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.42), 0 0 22px rgba(201,149,64,0.14);
}

.spread-chip:hover::before { transform: scaleX(1); }

.spread-chip__name { font-family: var(--font-display); font-size: 0.90rem; color: var(--text); letter-spacing: 0em; font-weight: 700; }
.spread-chip__desc { font-size: 0.78rem; color: var(--text-muted); font-family: var(--font-ui); }

/* ── Preview sections ─────────────────────────────────────── */
.preview-section {
  padding: 3.5rem 0;
  border-top: 1px solid rgba(190,145,255,0.10);
}

.preview-section__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.preview-section__header h2 { font-size: clamp(1.4rem, 3vw, 2rem); }

.preview-section__more {
  font-family: var(--font-ui);
  font-size: 0.84rem;
  color: var(--gold);
  white-space: nowrap;
  transition: color 0.2s, text-shadow 0.2s;
  letter-spacing: 0.04em;
}
.preview-section__more:hover {
  color: var(--gold-light);
  text-shadow: 0 0 16px rgba(201,149,64,0.58);
}

.preview-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.1rem;
}

/* Preview card — editorial */
.preview-card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  background: linear-gradient(162deg, rgba(140,90,240,0.07), rgba(70,30,160,0.02));
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.28s, transform 0.28s, box-shadow 0.28s;
  min-width: 0;
  animation: preview-float 4s ease-in-out infinite;
  will-change: transform;
}
.preview-card:hover {
  border-color: rgba(196,126,158,0.58);
  transform: translateY(-9px) !important;
  color: var(--text);
  box-shadow: 0 18px 52px rgba(0,0,0,0.52), 0 0 32px rgba(196,126,158,0.18);
  animation-play-state: paused;
}

.preview-row .preview-card:nth-child(1) { animation-delay: 0.0s; }
.preview-row .preview-card:nth-child(2) { animation-delay: 0.6s; }
.preview-row .preview-card:nth-child(3) { animation-delay: 1.2s; }
.preview-row .preview-card:nth-child(4) { animation-delay: 1.8s; }
.preview-row .preview-card:nth-child(5) { animation-delay: 2.4s; }

@keyframes preview-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-7px); }
}

.preview-card__badge {
  font-size: 0.70rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  padding: 0.22rem 0.65rem;
  border-radius: 999px;
  align-self: flex-start;
  animation: badge-glow 4s ease-in-out infinite;
  will-change: filter;
}
.preview-row .preview-card:nth-child(1) .preview-card__badge { animation-delay: 0.0s; }
.preview-row .preview-card:nth-child(2) .preview-card__badge { animation-delay: 0.6s; }
.preview-row .preview-card:nth-child(3) .preview-card__badge { animation-delay: 1.2s; }
.preview-row .preview-card:nth-child(4) .preview-card__badge { animation-delay: 1.8s; }
.preview-row .preview-card:nth-child(5) .preview-card__badge { animation-delay: 2.4s; }
@keyframes badge-glow {
  0%, 100% { filter: none; }
  50%       { filter: brightness(1.45) drop-shadow(0 0 5px currentColor); }
}
.preview-card__badge--relationship { background: rgba(196,126,158,.13); color: var(--rose-light); }
.preview-card__badge--career       { background: rgba(112,54,224,.13);  color: var(--purple-light); }
.preview-card__badge--finance      { background: rgba(201,149,64,.12);  color: var(--gold-light); }
.preview-card__badge--health       { background: rgba(78,203,168,.12);  color: #80DCC0; }
.preview-card__badge--spirituality { background: rgba(122,176,204,.12); color: var(--azure); }

.preview-card__spread {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.preview-card__question {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.58;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
  font-style: italic;
}

.preview-card__status {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  margin-top: auto;
  letter-spacing: 0.05em;
}
.preview-card__status--available { color: var(--success); }
.preview-card__status--taken     { color: var(--gold); }

.preview-empty { color: var(--text-dim); font-size: 0.95rem; grid-column: 1 / -1; padding: 2rem 0; font-family: var(--font-ui); }

.preview-skeleton {
  height: 150px;
  background: linear-gradient(90deg, var(--surface) 25%, var(--surface-2) 50%, var(--surface) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── Hero CTA row ─────────────────────────────────────────── */
.hero__cta-row {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

/* ── Hero daily card widget ───────────────────────────────── */
.hero-daily-widget {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}

.hero-daily-widget__label {
  font-family: var(--font-ui);
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(196, 126, 158, 0.60);
}

.hero-daily-flip .daily-flip__inner {
  width: 210px;
  aspect-ratio: 400 / 680;
  transform-style: preserve-3d;
}

/* More dramatic hero card back */
.hero-daily-flip .daily-flip__back {
  background: linear-gradient(162deg, #300A70 0%, #1C0640 58%, #100328 100%);
  border: 2px solid rgba(196, 126, 158, 0.58);
  box-shadow:
    0 28px 90px rgba(0,0,0,0.84),
    0 0   78px rgba(112, 54, 224, 0.44),
    0 0  140px rgba(160, 100, 240, 0.22);
  animation: hero-back-pulse 3.5s ease-in-out infinite;
  will-change: transform;
}

@keyframes hero-back-pulse {
  0%, 100% {
    box-shadow:
      0 28px 90px rgba(0,0,0,0.84),
      0 0   55px rgba(112, 54, 224, 0.32),
      0 0  110px rgba(160, 100, 240, 0.14);
    border-color: rgba(196, 126, 158, 0.44);
  }
  50% {
    box-shadow:
      0 28px 90px rgba(0,0,0,0.74),
      0 0  145px rgba(160, 100, 255, 0.94),
      0 0  250px rgba(112, 54, 224, 0.52),
      0 0  370px rgba(80,  20, 180, 0.24);
    border-color: rgba(196, 126, 158, 1.00);
  }
}

.hero-daily-flip.daily-flip--revealed .daily-flip__back,
.daily-flip--revealed .hero-daily-flip .daily-flip__back {
  animation: none;
  box-shadow: none;
}
.hero-daily-flip.daily-flip--revealed .daily-back-design::before,
.hero-daily-flip.daily-flip--revealed .daily-back-design::after { animation: none; }

.hero-daily-flip:not(.daily-flip--revealed):hover .daily-flip__back {
  transform: translateY(-12px) scale(1.03);
}

/* Larger inner design */
.hero-daily-flip .daily-back-design {
  width: 86%;
  height: 86%;
  border-radius: 15px;
}

/* Hero CSS moon — larger */
.hero-daily-flip .daily-back-design::after {
  content: '';
  width: 68px;
  height: 68px;
  font-size: unset;
  line-height: unset;
  color: unset;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 38%,
    #FFF9E8 0%, #F5D880 28%, #C99540 58%, rgba(185,120,35,0.35) 82%, transparent 100%);
  box-shadow:
    inset 20px -5px 0 3px #100328,
    0 0 18px rgba(201,149,64,0.55),
    0 0 40px rgba(185,120,35,0.28);
  animation: hero-crescent-pulse 9s ease-in-out infinite;
}

@keyframes hero-crescent-pulse {
  0%   { box-shadow: inset 20px -5px 0 3px #100328, 0 0 11px rgba(201,149,64,0.42), 0 0 26px rgba(185,120,35,0.18); }
  50%  { box-shadow: inset 20px -5px 0 3px #100328, 0 0 26px rgba(201,149,64,0.86), 0 0 58px rgba(185,120,35,0.50), 0 0 92px rgba(200,120,20,0.24); }
  100% { box-shadow: inset 20px -5px 0 3px #100328, 0 0 11px rgba(201,149,64,0.42), 0 0 26px rgba(185,120,35,0.18); }
}

/* Hero hint text */
.hero-daily-flip .daily-flip__hint {
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  color: rgba(196, 126, 158, 0.72);
  animation: hero-hint-pulse 3s ease-in-out infinite;
}

@keyframes hero-hint-pulse {
  0%, 100% { opacity: 0.48; text-shadow: none; }
  50%       { opacity: 1;    text-shadow: 0 0 24px rgba(196,126,158,0.68); }
}

.hero-daily-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  text-align: center;
}

.hero-signin-error {
  font-size: 0.84rem;
  color: var(--rose);
  margin-top: 0.25rem;
}

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-banner { padding: 4.5rem 0 6rem; }

.cta-banner__inner {
  background: linear-gradient(148deg, rgba(80, 15, 160, 0.12), rgba(40, 8, 110, 0.05));
  border: 1px solid rgba(160,100,240,0.28);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  padding: 5.5rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 90px rgba(112,54,224,0.12),
    0 0 180px rgba(196,126,158,0.06),
    inset 0 0 100px rgba(112,54,224,0.04);
  animation: cta-pulse 7s ease-in-out infinite;
}

@keyframes cta-pulse {
  0%, 100% {
    box-shadow: 0 0 70px rgba(112,54,224,0.10), 0 0 140px rgba(196,126,158,0.05);
    border-color: rgba(160,100,240,0.26);
  }
  50% {
    box-shadow: 0 0 120px rgba(112,54,224,0.20), 0 0 240px rgba(196,126,158,0.10), 0 0 340px rgba(122,176,204,0.05);
    border-color: rgba(160,100,240,0.52);
  }
}

.cta-banner__inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 85% at 10% 50%, rgba(112,54,224,0.10) 0%, transparent 65%),
    radial-gradient(ellipse 65% 85% at 90% 50%, rgba(196,126,158,0.08) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 50% 0%,  rgba(122,176,204,0.05) 0%, transparent 60%);
  pointer-events: none;
}

/* Decorative star in CTA */
.cta-banner__inner::after {
  content: '✦';
  position: absolute;
  top: 1.75rem; right: 2.25rem;
  font-size: 0.82rem;
  color: rgba(201,149,64,0.38);
  animation: sparkle-pulse 3.5s ease-in-out infinite;
}

.cta-banner__inner > * { position: relative; }
.cta-banner h2 {
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--text) 20%, var(--violet-2) 55%, var(--petal) 88%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-banner p {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.78;
  font-family: var(--font-heading);
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-section {
  padding: 4.5rem 0 6rem;
  border-top: 1px solid rgba(190,145,255,0.10);
}

.faq-section__header { text-align: center; margin-bottom: 3rem; }

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-item {
  background: linear-gradient(162deg, rgba(140,90,240,0.06), rgba(70,30,160,0.02));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
  transition: border-color 0.28s, box-shadow 0.28s;
}

.faq-item:has(.faq-item__q[aria-expanded="true"]) {
  border-color: rgba(160,100,240,0.42);
  box-shadow: 0 0 28px rgba(112,54,224,0.10);
}

.faq-item__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.4rem 1.75rem;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1.38;
  letter-spacing: 0.01em;
}

.faq-item__q:hover { color: var(--gold-light); }
.faq-item__q[aria-expanded="true"] { color: var(--gold-light); }

.faq-item__icon {
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--text-dim);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s;
  user-select: none;
}

.faq-item__q[aria-expanded="true"] .faq-item__icon {
  transform: rotate(45deg);
  color: var(--gold);
  filter: drop-shadow(0 0 9px rgba(201,149,64,0.68));
}

.faq-item__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item__a.is-open { grid-template-rows: 1fr; }

.faq-item__a-inner { overflow: hidden; padding: 0 1.75rem; }
.faq-item__a.is-open .faq-item__a-inner { padding-bottom: 1.6rem; }

.faq-item__a p {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.82;
}

.faq-item__a p strong { color: var(--text); font-weight: 500; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: 1fr; }
  .spreads-row   { grid-template-columns: repeat(2, 1fr); }
  .cat-grid      { grid-template-columns: repeat(3, 1fr); }
  .preview-row   { grid-template-columns: repeat(3, 1fr); }
  .hero-astral-ring { right: -35%; width: 500px; height: 500px; }
}

@media (max-width: 600px) {
  .preview-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero {
    padding-bottom: 4rem;
    min-height: 0;
  }
  .hero__inner { min-height: 0; justify-content: flex-start; }
  .hero-cosmos { overflow: visible; }
  .hero-astral-ring { display: none; }

  .hero__oracle { gap: 1.15rem; max-width: 100%; }
  .hero__oracle-heading { font-size: 2.4rem; line-height: 1.10; }
  .hero__oracle-hint { display: none; }
  .oracle-input { font-size: 1rem; }

  .hero-tagline { padding: 3.5rem 0 0; }
  .hero-tagline__inner { grid-template-columns: 1fr; gap: 0; }
  .hero-tagline__headline { font-size: 2.2rem; }
  .hero__desc  { margin-left: auto; margin-right: auto; }
  .hero__cta-row { justify-content: center; margin-bottom: 3.5rem; }

  .hero-tagline__visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid rgba(190,145,255,0.12);
    padding: 3rem 0 3.5rem;
    width: 100%;
  }
  .hero-daily-flip .daily-flip__inner { width: 165px; }

  .cat-grid { grid-template-columns: repeat(2, 1fr); }

  .hero-moon {
    width: 130px; height: 130px;
    top: 80px; left: 10px;
    box-shadow:
      inset 36px 8px 46px 0px #050410,
      0 0 38px rgba(160,100,240,0.68),
      0 0 75px rgba(112,54,224,0.40),
      0 0 100px rgba(80,20,180,0.22);
    border-color: rgba(160,100,240,0.60);
  }
  .hero-moon::before { inset: -12px; }
  .hero-moon::after  { display: none; }
  .sparkle.s3, .sparkle.s6, .sparkle.s7, .sparkle.s8 { display: none; }
}
