:root {
  --bg-deep: #0a0a12;
  --bg-mid: #12121f;
  --bg-card: #1a1a2e;
  --fg: #e8e6f0;
  --fg-dim: #9b97b0;
  --fg-muted: #6b6780;
  --accent: #c9a0ff;
  --accent-warm: #f0b8ff;
  --accent-glow: rgba(201, 160, 255, 0.15);
  --gold: #f4d58d;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-deep);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem 4rem;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(100, 50, 180, 0.12) 0%, transparent 70%),
              radial-gradient(ellipse 60% 50% at 20% 80%, rgba(201, 160, 255, 0.06) 0%, transparent 60%);
}

.star {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.4;
  animation: twinkle 3s ease-in-out infinite alternate;
}
.star-1 { top: 12%; left: 15%; animation-delay: 0s; }
.star-2 { top: 8%; right: 22%; animation-delay: 0.8s; }
.star-3 { top: 35%; left: 8%; animation-delay: 1.5s; width: 2px; height: 2px; }
.star-4 { top: 20%; right: 10%; animation-delay: 0.3s; width: 4px; height: 4px; opacity: 0.25; }
.star-5 { bottom: 30%; left: 25%; animation-delay: 2s; }
.star-6 { bottom: 15%; right: 30%; animation-delay: 1.2s; width: 2px; height: 2px; }
.star-7 { top: 50%; left: 50%; animation-delay: 0.6s; width: 2px; height: 2px; opacity: 0.3; }

@keyframes twinkle {
  0% { opacity: 0.2; transform: scale(1); }
  100% { opacity: 0.7; transform: scale(1.3); }
}

.orbit {
  position: absolute;
  border: 1px solid rgba(201, 160, 255, 0.06);
  border-radius: 50%;
}
.orbit-1 {
  width: 500px; height: 500px;
  top: -100px; right: -150px;
}
.orbit-2 {
  width: 350px; height: 350px;
  bottom: -50px; left: -100px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-tag {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--fg);
}

.hero h1 .accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-warm));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-dim);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* TAROT CARD */
.hero-card {
  position: relative;
  margin-top: 3.5rem;
  z-index: 1;
}

.card-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(201, 160, 255, 0.12) 0%, transparent 70%);
  border-radius: 24px;
  z-index: 0;
}

.card-inner {
  position: relative;
  z-index: 1;
  background: linear-gradient(160deg, rgba(30, 25, 55, 0.9), rgba(20, 18, 40, 0.95));
  border: 1px solid rgba(201, 160, 255, 0.15);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  width: 260px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.card-symbol {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.card-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--fg-muted);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.card-desc {
  font-size: 0.9rem;
  color: var(--fg-dim);
  line-height: 1.6;
  font-style: italic;
}

/* FEATURES */
.features {
  padding: 6rem 2rem;
  background: var(--bg-mid);
}

.features-inner {
  max-width: 960px;
  margin: 0 auto;
}

.features h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.75rem;
}

.features h2 em {
  font-style: italic;
  color: var(--accent);
}

.features-sub {
  text-align: center;
  color: var(--fg-dim);
  max-width: 550px;
  margin: 0 auto 3.5rem;
  font-size: 1rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.feature-item {
  background: rgba(26, 26, 46, 0.6);
  border: 1px solid rgba(201, 160, 255, 0.08);
  border-radius: 14px;
  padding: 2rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.feature-item:hover {
  border-color: rgba(201, 160, 255, 0.2);
  transform: translateY(-2px);
}

.feature-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.feature-item h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--fg);
}

.feature-item p {
  font-size: 0.92rem;
  color: var(--fg-dim);
  line-height: 1.65;
}

/* HOW SECTION */
.how {
  padding: 6rem 2rem;
  background: var(--bg-deep);
}

.how-inner {
  max-width: 800px;
  margin: 0 auto;
}

.how h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
}

.how-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.how-col {
  padding: 2rem;
  border-radius: 14px;
}

.how-old {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.how-new {
  background: rgba(201, 160, 255, 0.05);
  border: 1px solid rgba(201, 160, 255, 0.12);
}

.how-col h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  letter-spacing: 0.03em;
}

.how-old h3 { color: var(--fg-muted); }
.how-new h3 { color: var(--accent); }

.how-col ul {
  list-style: none;
  padding: 0;
}

.how-col li {
  font-size: 0.92rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--fg-dim);
}

.how-col li:last-child { border-bottom: none; }

.how-new li { color: var(--fg); }

.how-bottom {
  text-align: center;
  font-size: 1rem;
  color: var(--fg-dim);
  font-style: italic;
}

/* CLOSING */
.closing {
  padding: 7rem 2rem;
  position: relative;
  overflow: hidden;
  background: var(--bg-mid);
}

.closing-inner {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}

.closing-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 160, 255, 0.08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.closing p {
  color: var(--fg-dim);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.closing-whisper {
  color: var(--accent) !important;
  font-style: italic;
  font-size: 1.05rem !important;
  margin-top: 1.5rem;
}

/* FOOTER */
.site-footer {
  padding: 3rem 2rem;
  border-top: 1px solid rgba(201, 160, 255, 0.06);
  background: var(--bg-deep);
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--fg);
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .how-columns {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: 4rem 1.5rem 3rem;
    min-height: auto;
  }
  .features, .how, .closing {
    padding: 4rem 1.5rem;
  }
  .footer-inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  body { font-size: 15px; }
  .card-inner { width: 220px; padding: 2rem 1.5rem; }
}