:root {
  --bg-0: #07041a;
  --bg-1: #0f0828;
  --bg-2: #1a0f3a;
  --bg-3: #281550;
  --violet-deep: #3a1d68;
  --violet: #5a3a85;
  --lilac: #c8a8d8;
  --lilac-soft: #e0c8ec;
  --moon: #ece0f0;
  --moon-rim: #d8c4e2;
  --cream: #f4ead8;
  --gold: #d4b896;
  --teal-mist: #98b8c0;
  --ink: #ede4f0;
  --ink-dim: rgba(237,228,240,0.62);
  --ink-faint: rgba(237,228,240,0.30);
  --line: rgba(200,168,216,0.18);
  --soft-divider: linear-gradient(90deg, transparent, rgba(200,168,216,0.22), transparent);
  --surface-1: linear-gradient(180deg, rgba(58,29,104,0.28), rgba(15,8,40,0.42));
  --surface-2: linear-gradient(180deg, rgba(58,29,104,0.22), rgba(15,8,40,0.34));
  --surface-glow: 0 30px 80px -40px rgba(120,80,180,0.55), inset 0 1px 0 rgba(255,255,255,0.04);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg-0);
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 300;
  letter-spacing: 0.005em;
  line-height: 1.7;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

.serif { font-family: 'Cormorant Garamond', serif; font-weight: 300; }
.ui    { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 300; letter-spacing: 0.32em; text-transform: uppercase; font-size: 11px; }

/* ============ COSMIC BACKGROUND ============ */
.cosmos {
  position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(ellipse at 50% -10%, rgba(200,168,216,0.14), transparent 55%),
    radial-gradient(ellipse at 85% 35%, rgba(90,58,133,0.30), transparent 60%),
    radial-gradient(ellipse at 15% 80%, rgba(58,29,104,0.40), transparent 60%),
    linear-gradient(180deg, #07041a 0%, #0f0828 35%, #1a0f3a 70%, #07041a 100%);
}
.stars { position: fixed; inset: 0; z-index: -1; pointer-events: none; }
.star {
  position: absolute; background: white; border-radius: 50%;
  animation: twinkle var(--dur, 4s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
@keyframes twinkle {
  0%, 100% { opacity: var(--max, 0.7); transform: scale(1); }
  50% { opacity: 0.08; transform: scale(0.55); }
}
.firefly {
  position: absolute; width: 3px; height: 3px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,184,150,1) 0%, rgba(212,184,150,0.4) 50%, transparent 70%);
  box-shadow: 0 0 10px rgba(212,184,150,0.7), 0 0 20px rgba(212,184,150,0.3);
  animation: float var(--dur, 12s) ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0); opacity: 0.3; }
  25% { transform: translate(28px, -18px); opacity: 0.9; }
  50% { transform: translate(-18px, -36px); opacity: 0.5; }
  75% { transform: translate(14px, -22px); opacity: 0.85; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: block;
  padding: 0;
  overflow: hidden;
  background: #07041a;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  z-index: 0;
  transform: scale(1.08);
  transform-origin: center center;
}
.hero-overlay {
  position: absolute; left: 0; right: 0; bottom: 0; height: 68%;
  z-index: 1;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(7,4,26,0.18) 25%,
    rgba(7,4,26,0.60) 55%,
    rgba(7,4,26,0.88) 78%,
    rgba(7,4,26,0.97) 100%);
  pointer-events: none;
}
.hero-eyebrow-top {
  position: absolute;
  top: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(237,228,240,0.78);
  text-shadow: 0 1px 12px rgba(7,4,26,0.6);
  white-space: nowrap;
}
.hero-eyebrow-top::before, .hero-eyebrow-top::after {
  content: '';
  display: inline-block;
  width: 28px; height: 1px;
  background: rgba(237,228,240,0.45);
  vertical-align: middle;
  margin: 0 18px;
}
.hero-moon-wrap {
  position: relative;
  width: min(74vw, 660px);
  aspect-ratio: 1;
  margin: 0 auto;
}
.hero-moon {
  position: absolute; inset: 0; border-radius: 50%;
  background:
    radial-gradient(circle at 40% 38%, #f6ecf2 0%, #ece0f0 25%, #c8a8d8 55%, #6a4690 85%, #2a1450 100%);
  box-shadow:
    inset -25px -25px 70px rgba(20,8,40,0.55),
    inset 18px 18px 50px rgba(245,234,220,0.30),
    0 0 80px rgba(200,168,216,0.45),
    0 0 180px rgba(200,168,216,0.30),
    0 0 320px rgba(90,58,133,0.30);
  animation: moonBreath 10s ease-in-out infinite;
}
/* New moon overlay — dark crescent */
.hero-moon::after {
  content: '';
  position: absolute; inset: 0; border-radius: 50%;
  background:
    radial-gradient(circle at 70% 50%, rgba(7,4,26,0.92) 0%, rgba(7,4,26,0.85) 40%, transparent 62%);
  mix-blend-mode: multiply;
}
@keyframes moonBreath {
  0%, 100% { box-shadow:
    inset -25px -25px 70px rgba(20,8,40,0.55),
    inset 18px 18px 50px rgba(245,234,220,0.30),
    0 0 80px rgba(200,168,216,0.45),
    0 0 180px rgba(200,168,216,0.30),
    0 0 320px rgba(90,58,133,0.30); }
  50% { box-shadow:
    inset -25px -25px 70px rgba(20,8,40,0.55),
    inset 18px 18px 50px rgba(245,234,220,0.30),
    0 0 100px rgba(200,168,216,0.55),
    0 0 220px rgba(200,168,216,0.40),
    0 0 380px rgba(90,58,133,0.40); }
}
.crater {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(150,120,170,0.5), rgba(80,55,110,0.25) 60%, transparent);
  mix-blend-mode: multiply;
}
.scorpio-overlay { position: absolute; inset: 0; pointer-events: none; opacity: 0.7; }
.scorpio-overlay svg { width: 100%; height: 100%; }
.constellation-line {
  stroke: rgba(255,255,255,0.40);
  stroke-width: 1; fill: none;
  stroke-dasharray: 1000; stroke-dashoffset: 1000;
  animation: drawLine 4s ease-out 1s forwards;
}
@keyframes drawLine { to { stroke-dashoffset: 0; } }
.constellation-star {
  fill: white;
  filter: drop-shadow(0 0 6px white) drop-shadow(0 0 12px rgba(212,184,150,0.7));
  opacity: 0;
  animation: starFade 1.5s ease-out forwards;
}
@keyframes starFade { to { opacity: 1; } }

.hero-text {
  position: absolute;
  top: 54%; left: 0; right: 0;
  transform: translateY(-50%);
  z-index: 3;
  text-align: center;
  padding: 0 24px;
}
.eyebrow {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--lilac);
  margin-bottom: 28px;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(38px, 6vw, 80px);
  line-height: 0.96;
  letter-spacing: -0.015em;
  color: #f0e8f5;
  margin-bottom: 4px;
  text-shadow: 0 2px 40px rgba(7,4,26,0.9), 0 0 60px rgba(7,4,26,0.7);
}
.hero-title em {
  font-style: italic;
  color: var(--lilac-soft);
  font-weight: 300;
}
.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(14px, 1.5vw, 18px);
  letter-spacing: 0.2em;
  color: rgba(224,208,238,0.80);
  margin-top: 16px;
  text-shadow: 0 1px 20px rgba(7,4,26,0.9);
}
.hero-meta {
  margin-top: 20px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(200,175,225,0.60);
}
.hero-meta strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 19px;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(224,208,238,0.90);
  margin-top: 5px;
  text-shadow: 0 1px 16px rgba(7,4,26,0.9);
}
.scroll-cue {
  position: absolute;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 300;
  font-size: 9px;
  letter-spacing: 0.5em;
  color: rgba(237,228,240,0.35);
  text-transform: uppercase;
  z-index: 4;
  white-space: nowrap;
}
.scroll-cue::after {
  content: ''; display: block;
  width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--ink-faint), transparent);
  margin: 14px auto 0;
  animation: cueLine 3s ease-in-out infinite;
}
@keyframes cueLine {
  0%, 100% { opacity: 0.25; transform: scaleY(0.55); }
  50% { opacity: 0.9; transform: scaleY(1); }
}

/* ============ SECTIONS ============ */
section {
  position: relative;
  padding: 64px 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.section-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--lilac);
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 14px;
}
.section-label::before {
  content: ''; width: 28px; height: 1px;
  background: var(--lilac); opacity: 0.6;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(20px, 2.4vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  color: var(--ink);
}
.section-title em { font-style: italic; color: var(--lilac-soft); }
.section-intro {
  max-width: 660px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  line-height: 1.85;
  color: var(--ink-dim);
}


.about-visual-caption {
  position: absolute;
  bottom: 28px; left: 28px; right: 28px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.4;
  color: var(--ink);
  z-index: 2;
}

/* ============ TIMELINE ============ */
.timeline {
  margin-top: 28px;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 12px; bottom: 12px;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(180deg,
    transparent,
    rgba(200,168,216,0.35) 8%,
    rgba(200,168,216,0.35) 92%,
    transparent);
}
.tl-item {
  display: grid;
  grid-template-columns: 1fr 44px 1fr;
  grid-auto-flow: dense;
  gap: 16px;
  margin-bottom: 16px;
  align-items: center;
}

.tl-time {
  grid-column: 1;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: right;
  padding-top: 0;
}
.tl-time .date {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--lilac);
  text-transform: uppercase;
}
.tl-time .clock {
  font-size: 20px;
  font-style: italic;
  color: var(--ink);
}
.tl-dot {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tl-dot-inner {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--lilac);
  box-shadow: 0 0 14px var(--lilac), 0 0 28px rgba(200,168,216,0.4);
  position: relative;
}
.tl-dot-inner::before {
  content: '';
  position: absolute; inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(200,168,216,0.22);
  animation: pulse 4s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}
.tl-content {
  grid-column: 3;
  padding-top: 0;
}
.tl-content p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 300;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--ink-dim);
}

/* ============ ENERGY READING ============ */
.energy-reading {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  align-items: start;
}
.reading-card {
  background: var(--surface-1);
  border: 0;
  border-radius: 18px;
  padding: 24px 28px;
  backdrop-filter: blur(14px);
  box-shadow: var(--surface-glow);
}
.reading-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 26px;
  color: var(--lilac-soft);
  margin-bottom: 20px;
  line-height: 1.3;
}
.reading-card p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 300;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 14px;
}
.reading-card .quote {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 0;
  background-image: var(--soft-divider);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 60% 1px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 19px;
  color: var(--lilac-soft);
  line-height: 1.45;
}
.themes {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.theme-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 12px;
  border-bottom: 0;
  background-image: var(--soft-divider);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 100% 1px;
}
.theme-row .label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 19px;
  color: var(--ink);
}
.theme-row .label small {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 9.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 3px;
}
.theme-row .strength {
  display: flex; gap: 5px;
}
.theme-row .strength i {
  display: block;
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 0;
  background: rgba(200,168,216,0.18);
}
.theme-row .strength i.on {
  background: var(--lilac);
  box-shadow: 0 0 6px var(--lilac);
}

/* ============ ZODIAC CIRCULAR ============ */
.zodiac-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px 12px;
}
.zodiac-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 14px 8px 12px;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.4s ease, transform 0.4s ease;
  position: relative;
}
.zodiac-cell:hover { background: rgba(40,21,80,0.28); }
.zodiac-cell:hover .constellation-svg { opacity: 1; }
.zodiac-cell:hover .name { color: var(--ink); }
.zodiac-cell.active { background: rgba(70,40,110,0.32); }
.zodiac-cell.active .constellation-svg { opacity: 1; }
.zodiac-cell.active .name { color: var(--lilac); }
.zodiac-cell.active .name::after {
  content: ''; display: block; width: 22px; height: 1px;
  background: var(--lilac); margin: 8px auto 0; opacity: 0.7;
}
.zodiac-cell.is-taurus .constellation-svg { filter: drop-shadow(0 0 6px rgba(200,168,216,0.35)); }
.constellation-svg {
  width: 100%;
  max-width: 130px;
  height: 100px;
  opacity: 0.82;
  transition: opacity 0.4s ease;
}
.constellation-svg line { stroke: rgba(200,168,216,0.55); stroke-width: 0.5; }
.constellation-svg circle { fill: rgba(224,200,236,0.92); }
.zodiac-cell .name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-dim);
  transition: color 0.4s ease;
}

.zodiac-detail-inline {
  margin-top: 40px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.6s ease, opacity 0.5s ease, margin-top 0.4s ease;
}
.zodiac-detail-inline.open {
  max-height: 1200px;
  opacity: 1;
}
.zodiac-detail-inner {
  background: var(--surface-1);
  border: 0;
  border-radius: 18px;
  padding: 32px 40px;
  position: relative;
  backdrop-filter: blur(14px);
  box-shadow: var(--surface-glow);
}
.zodiac-detail-inline .pane {
  display: none;
  animation: fadeIn 0.7s ease-out;
}
.zodiac-detail-inline .pane.active { display: block; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.zodiac-detail-inline .name-big {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 34px;
  color: var(--ink);
  margin-bottom: 4px;
  display: block;
}
.zodiac-detail-inline .sign-header {
  margin-bottom: 6px;
}
.zodiac-detail-inline .dates {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--ink-faint);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.zodiac-detail-inline .seed {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.55;
  color: var(--lilac-soft);
  margin-bottom: 16px;
}
.zodiac-detail-inline .body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.85;
  color: var(--ink-dim);
}
.zodiac-detail-inline .keyword-tag {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 300;
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--lilac);
  padding: 3px 10px;
  border: 0;
  background: rgba(200,168,216,0.10);
  border-radius: 100px;
  margin-bottom: 12px;
}

/* ============ PERSONAL ENERGY ============ */
.personal {
  background: linear-gradient(180deg, transparent, rgba(40,21,80,0.30) 30%, rgba(40,21,80,0.30) 70%, transparent);
  border-radius: 4px;
  padding: 48px 32px;
  margin-top: 32px;
}
.personal h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 30px;
  color: var(--lilac-soft);
}
.personal-input {
  display: flex;
  gap: 18px;
  align-items: end;
  flex-wrap: wrap;
  margin-top: 24px;
}
.personal-input .field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.personal-input label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.hour-hint {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  color: var(--ink);
  opacity: 0.6;
  margin-top: 6px;
}
.personal-input input, .personal-input select {
  background: transparent;
  border: none;
  border-bottom: 0;
  background-image: linear-gradient(90deg, rgba(200,168,216,0.05), rgba(200,168,216,0.35), rgba(200,168,216,0.05));
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 100% 1px;
  padding: 12px 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  color: var(--ink);
  width: 140px;
  outline: none;
  transition: background-size 0.3s, background-image 0.3s;
}
.personal-input input:focus {
  background-image: linear-gradient(90deg, rgba(200,168,216,0.2), var(--lilac), rgba(200,168,216,0.2));
}
.personal-input input.input-error {
  background-image: linear-gradient(90deg, rgba(239,100,100,0.05), rgba(239,100,100,0.55), rgba(239,100,100,0.05));
  color: rgba(239,160,140,0.95);
}
.curve-error-msg {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: rgba(239,150,130,0.9);
  margin-top: 14px;
  min-height: 18px;
}
.btn {
  background: transparent;
  color: var(--lilac-soft);
  border: 0;
  background: linear-gradient(180deg, rgba(200,168,216,0.18), rgba(200,168,216,0.08));
  box-shadow: inset 0 0 0 1px rgba(200,168,216,0.30), 0 8px 24px -16px rgba(200,168,216,0.4);
  padding: 14px 32px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.4s ease;
}
.btn:hover {
  background: linear-gradient(180deg, rgba(200,168,216,0.28), rgba(200,168,216,0.14));
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(200,168,216,0.45), 0 0 28px rgba(200,168,216,0.3);
}
.btn-ghost {
  background: rgba(255,255,255,0.02);
  box-shadow: inset 0 0 0 1px rgba(200,168,216,0.12);
  color: var(--ink-dim);
}
.btn-ghost:hover {
  background: rgba(200,168,216,0.08);
  box-shadow: inset 0 0 0 1px rgba(200,168,216,0.30);
  color: var(--lilac-soft);
}

.energy-curve {
  margin-top: 28px;
  position: relative;
  background: var(--surface-2);
  border: 0;
  border-radius: 18px;
  backdrop-filter: blur(14px);
  box-shadow: var(--surface-glow);
  padding: 28px;
  min-height: 260px;
}
.curve-empty {
  text-align: center;
  padding: 40px 0;
  color: var(--ink-faint);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 20px;
}
.curve-result h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.01em;
  color: var(--ink);
  margin-bottom: 8px;
}
.curve-result .sun-sign {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 28px;
}
.curve-svg { width: 100%; height: 340px; display: block; }
.curve-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.curve-tab {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-dim);
  background: rgba(20,10,52,0.35);
  border: 1px solid rgba(200,168,216,0.15);
  padding: 9px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.curve-tab:hover { color: var(--ink); border-color: rgba(200,168,216,0.35); }
.curve-tab.active {
  color: var(--ink);
  background: rgba(200,168,216,0.12);
  border-color: rgba(200,168,216,0.5);
}
.variant-A-meta {
  margin-top: 24px;
  text-align: center;
  padding-top: 24px;
  background-image: var(--soft-divider);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 70% 1px;
}
.variant-A-meta .whisper {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  line-height: 1.5;
  color: var(--lilac-soft);
  max-width: 620px;
  margin: 0 auto 14px;
}
.variant-A-meta .timing {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.variant-B-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 40px;
  align-items: center;
}
.variant-B-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.variant-B-row dt {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 6px;
}
.variant-B-row dd {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 26px;
  color: var(--ink);
  line-height: 1.3;
}
.variant-B-row.whisper dd { font-size: 18px; color: var(--lilac-soft); line-height: 1.5; }
.variant-C-card {
  margin: 28px auto 0;
  max-width: 580px;
  padding: 24px 32px;
  background: rgba(40,22,82,0.32);
  border-radius: 16px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset, 0 20px 50px -36px rgba(0,0,0,0.6);
  text-align: center;
}
.variant-C-card .label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lilac-soft);
  margin-bottom: 14px;
}
.variant-C-card .hour {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 44px;
  letter-spacing: 0.04em;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 12px;
}
.variant-C-card .text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-dim);
  max-width: 460px;
  margin: 0 auto;
}
@media (max-width: 720px) {
  .variant-B-grid { grid-template-columns: 1fr; }
}
.curve-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 0;
  background-image: var(--soft-divider);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 70% 1px;
}
.curve-meta dt {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 8px;
}
.curve-meta dd {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  color: var(--ink);
  line-height: 1.5;
}

/* ============ MANIFEST RITUAL ============ */
.drift {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.mandala-stage {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}
.mandala-frame {
  position: relative;
  width: min(520px, 88%);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
}
.mandala-sample {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
  border-radius: 50%;
  opacity: 0.92;
}
#mandala .section-intro { max-width: 420px; }

.mandala-cta {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}
.mandala-cta .btn {
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.28em;
}
.curve-lifek-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
.curve-lifek-cta .btn {
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.28em;
}
.affirmation-cta {
  display: flex;
  margin-top: 40px;
  animation: fadeUp 0.6s ease both;
}
.affirmation-cta .btn {
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.28em;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.bottle-area {
  position: relative;
  aspect-ratio: 1;
  border-radius: 4px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 68% 18%, rgba(224,200,240,0.06) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 100%, rgba(58,29,104,0.55) 0%, transparent 60%),
    linear-gradient(180deg, #07041a 0%, #0c0625 48%, #160a38 100%);
}
/* sea — three-layer parallax waves */
.sea {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 52%;
  background: linear-gradient(180deg,
    rgba(40,20,80,0.0) 0%,
    rgba(40,20,80,0.35) 8%,
    rgba(30,14,62,0.7) 35%,
    rgba(10,5,28,0.95) 100%);
  overflow: hidden;
}
.wave {
  position: absolute;
  left: 0;
  width: 200%;
  height: 60px;
  pointer-events: none;
}
.wave svg { width: 100%; height: 100%; display: block; }
.wave-back  { top: -18px; opacity: 0.40; animation: waveDrift 26s linear infinite reverse; }
.wave-mid   { top: -8px;  opacity: 0.60; animation: waveDrift 16s linear infinite; }
.wave-front { top: 4px;   opacity: 0.90; animation: waveDrift 9s  linear infinite reverse; }
@keyframes waveDrift {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/* moon reflection shimmer */
.sea-shimmer {
  position: absolute;
  bottom: 48%; left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 48%;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(200,168,216,0.14) 30%,
    rgba(200,168,216,0.28) 70%,
    rgba(200,168,216,0.08) 100%);
  filter: blur(3px);
  animation: shimmerPulse 6s ease-in-out infinite;
}
@keyframes shimmerPulse {
  0%,100% { opacity: 0.6; transform: translateX(-50%) scaleX(1); }
  50% { opacity: 1; transform: translateX(-50%) scaleX(2.5); }
}
/* crescent moon */
.tiny-moon {
  position: absolute;
  top: 10%; right: 13%;
  width: 54px; height: 54px;
}
.tiny-moon svg { width: 100%; height: 100%; }
/* bottle */
.bottle {
  position: absolute;
  width: 120px; height: 144px;
  left: 50%;
  top: 38%;
  transform: translateX(-50%);
  animation: bottleGlow 5s ease-in-out infinite;
  cursor: grab;
  filter: drop-shadow(0 0 12px rgba(178,140,232,0.45)) drop-shadow(0 4px 18px rgba(120,80,180,0.30));
}
.bottle.released { animation: bottleSail 2.8s ease-out forwards; }
@keyframes bottleGlow {
  0%,100% { filter: drop-shadow(0 0 8px  rgba(178,140,232,0.30)) drop-shadow(0 4px 18px rgba(120,80,180,0.25)); }
  50%     { filter: drop-shadow(0 0 22px rgba(198,160,248,0.65)) drop-shadow(0 4px 24px rgba(140,95,210,0.45)); }
}
.floatingBottle {
  transform-origin: 150px 190px;
  animation: bottleFloat 5.4s ease-in-out infinite;
}
@keyframes bottleFloat {
  0%   { transform: translateY(0) rotate(1.2deg); }
  50%  { transform: translateY(-10px) rotate(3deg); }
  100% { transform: translateY(0) rotate(1.2deg); }
}
.bottle-halo {
  position: absolute;
  left: 50%;
  top: 52%;
  width: 140px;
  height: 60px;
  transform: translate(-50%, -10%);
  background: radial-gradient(ellipse at center,
    rgba(198,160,248,0.35) 0%,
    rgba(160,110,220,0.18) 35%,
    transparent 70%);
  filter: blur(8px);
  pointer-events: none;
  animation: haloBreathe 6s ease-in-out infinite;
}
@keyframes haloBreathe {
  0%,100% { opacity: 0.5; transform: translate(-50%, -10%) scale(0.9); }
  50%     { opacity: 1;   transform: translate(-50%, -10%) scale(1.15); }
}
@keyframes bottleSail {
  0%   { transform: translateX(-50%) translateY(0) rotate(0deg); opacity: 1; }
  100% { transform: translate(160%, -220%) rotate(35deg); opacity: 0; }
}
.bottle svg { width: 100%; height: 100%; }

.drift-form label {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 14px;
}
.drift-form textarea {
  width: 100%;
  background: linear-gradient(180deg, rgba(7,4,26,0.65), rgba(20,10,50,0.55));
  border: 0;
  box-shadow: inset 0 0 0 1px rgba(200,168,216,0.10), 0 12px 30px -22px rgba(120,80,180,0.5);
  border-radius: 14px;
  padding: 22px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
  min-height: 170px;
  resize: vertical;
  outline: none;
  transition: box-shadow 0.3s;
}
.drift-form textarea:focus {
  box-shadow: inset 0 0 0 1px rgba(200,168,216,0.40), 0 0 28px -8px rgba(200,168,216,0.35);
}
.drift-form textarea::placeholder {
  color: var(--ink-faint);
  font-style: italic;
}
.drift-char-count {
  text-align: right;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
  margin-top: 6px;
  transition: color 0.3s ease;
}
.drift-char-warn  { color: rgba(200, 168, 100, 0.7); }
.drift-char-limit { color: rgba(220, 100, 100, 0.8); }
.drift-prompt {
  margin-top: 16px;
  margin-bottom: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  color: var(--lilac-soft);
  line-height: 1.4;
}
.drift-actions {
  display: flex;
  gap: 12px;
  margin-top: 26px;
  align-items: center;
  flex-wrap: wrap;
}
.drift-mood {
  display: flex; gap: 8px;
  margin-top: 14px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.mood-chip {
  background: rgba(200,168,216,0.06);
  border: 0;
  color: var(--ink-dim);
  padding: 7px 16px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s;
}
.mood-chip.active {
  background: rgba(200,168,216,0.18);
  color: var(--lilac-soft);
  box-shadow: 0 0 18px -4px rgba(200,168,216,0.45);
}

/* ============ WISHES WALL ============ */
.wishes {
  position: relative;
  min-height: 480px;
  background: rgba(20,10,52,0.35);
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset, 0 30px 80px -50px rgba(0,0,0,0.7);
}
@media (max-width: 720px) {
  .wishes { padding: 20px; border-radius: 18px; }
}
#wishes-section { padding-top: 20px; padding-bottom: 100px; }
@media (max-width: 720px) {
  #wishes-section { padding-top: 12px; padding-bottom: 70px; }
}
.wishes-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 16px;
}
.wishes-count {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 19px;
  color: var(--lilac-soft);
}
.wishes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.wish-card {
  background: rgba(40,22,82,0.32);
  border: 0;
  border-radius: 16px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset, 0 20px 50px -36px rgba(0,0,0,0.6);
  padding: 26px 24px;
  position: relative;
  transition: all 0.4s;
  animation: wishIn 0.7s ease-out backwards;
}
.wish-card:hover {
  background: rgba(50,28,96,0.40);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06) inset, 0 24px 60px -32px rgba(120,80,180,0.45);
  transform: translateY(-2px);
}
@keyframes wishIn {
  from { opacity: 0; transform: translateY(20px); }
}
.wish-card .wish-tag {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 300;
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
  background: rgba(200,168,216,0.12);
  color: var(--lilac);
  border: 0;
}
.wish-card .wish-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink);
  margin-bottom: 16px;
}
.wish-card .wish-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink-faint);
}
.wish-card .like {
  display: flex; gap: 6px; align-items: center;
  cursor: pointer;
  color: var(--ink-dim);
  transition: color 0.3s;
}
.wish-card .like:hover, .wish-card .like.liked { color: var(--lilac-soft); }
.wish-card .like span {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
}
.wishes-filter {
  display: flex; gap: 6px;
  flex-wrap: wrap;
}
.filter-tab {
  background: rgba(200,168,216,0.05);
  border: 0;
  color: var(--ink-dim);
  padding: 7px 18px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s;
}
.filter-tab.active {
  background: rgba(200,168,216,0.20);
  color: var(--lilac-soft);
  box-shadow: 0 0 18px -4px rgba(200,168,216,0.4);
}

/* ============ FOOTER ============ */
footer {
  text-align: center;
  padding: 60px 24px 40px;
  color: var(--ink-faint);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 17px;
  border-top: 0;
  background-image: var(--soft-divider);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 240px 1px;
  margin-top: 40px;
}
footer .moon-glyph {
  font-size: 28px;
  color: var(--lilac-soft);
  display: block;
  margin-bottom: 14px;
  font-style: normal;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .about-grid, .energy-reading, .drift { grid-template-columns: 1fr; gap: 48px; }
  .zodiac-grid { grid-template-columns: repeat(3, 1fr); gap: 28px 18px; }
  .timeline::before { left: 50%; }
  .tl-item { grid-template-columns: 1fr 36px 1fr; gap: 16px; }
  .tl-time { text-align: right; }
  .personal { padding: 36px 24px; }
  .reading-card, .zodiac-detail-inner { padding: 24px; }
  section { padding: 48px 16px; }
  .curve-meta { grid-template-columns: 1fr; }
  .zodiac-wheel { max-width: 280px; }
}
@media (max-width: 560px) {
  .zodiac-grid { grid-template-columns: repeat(2, 1fr); }
}
.back-home {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(26, 15, 58, 0.72);
  border: 1px solid rgba(200, 168, 216, 0.22);
  border-radius: 99px;
  color: rgba(237, 228, 240, 0.7);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.back-home:hover {
  color: var(--lilac-soft);
  border-color: rgba(200, 168, 216, 0.45);
  background: rgba(40, 21, 80, 0.85);
}
