/* ===== Venüs — Cosmic Gradient Aesthetic ===== */
:root {
  /* Reframed palette — deep cosmic black + neon gradient accents */
  --solar-yellow: #FFD24A;     /* warm yellow gradient core */
  --warm-cream: #F5EFE6;       /* off-white text on black */
  --ink-black: #0B0B10;        /* deep cosmic black */
  --ink-soft: #14141C;         /* card black */
  --venus-red: #FF3B6E;        /* hot pink/magenta */
  --sky-blue: #4FB7E8;          /* cyan blob */
  --sticker-green: #2DD4A7;     /* teal */
  --lilac: #8A6CFF;             /* electric violet */
  --paper-gray: #1A1A22;
  --white: #FFFFFF;
  --logo-pink: #FF2D7A;
  --orange: #FF6B2C;            /* sunset orange */

  --grad-cosmic: radial-gradient(circle at 30% 30%, #FFD24A 0%, #FF6B2C 40%, #FF3B6E 80%);
  --grad-violet: radial-gradient(circle at 60% 40%, #FF3B6E 0%, #8A6CFF 60%, #2A1F5C 100%);
  --grad-sun: radial-gradient(circle at 50% 50%, #FFE07A 0%, #FF6B2C 50%, #FF3B6E 100%);

  --font-display: "Yeseva One", "Playfair Display", "Fraunces", Georgia, serif;
  --font-stencil: "Bungee Inline", "Anton", "Yeseva One", Georgia, serif;
  --font-body: "Inter", "Satoshi", "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-symbol: "Times New Roman", "Cambria Math", "Apple Symbols", "DejaVu Sans", serif;

  --radius-card: 28px;
  --radius-large: 40px;
  --radius-pill: 999px;
  --shadow-card: 0 30px 80px rgba(0, 0, 0, 0.55);
  --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 80px rgba(255, 59, 110, 0.35);
}

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

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

html { scroll-behavior: smooth; background: var(--ink-black); }

body {
  font-family: var(--font-body);
  background: var(--ink-black);
  color: var(--warm-cream);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; }

/* ===== Type Utilities ===== */
.font-display { font-family: var(--font-display); font-weight: 400; font-style: normal; }
.font-body { font-family: var(--font-body); }

.label {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.body-text {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(70px, 12vw, 200px);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 130px);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.poster-word {
  font-family: var(--font-stencil);
  font-size: clamp(110px, 22vw, 340px);
  line-height: 0.78;
  font-weight: 400;
  letter-spacing: 0.02em;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 30px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  border: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255, 59, 110, 0.35); }
.btn:active { transform: translateY(0); }
.btn-black { background: var(--warm-cream); color: var(--ink-black); }
.btn-red { background: linear-gradient(135deg, #FF3B6E 0%, #FF6B2C 100%); color: var(--warm-cream); }
.btn-cream { background: var(--warm-cream); color: var(--ink-black); }
.btn-yellow { background: linear-gradient(135deg, #FFD24A 0%, #FF6B2C 100%); color: var(--ink-black); }
.btn-large { min-height: 64px; padding: 0 38px; font-size: 17px; }

/* ===== Logo Sticker ===== */
.logo-sticker {
  border-radius: 999px;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.logo-sticker img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
}

/* ===== Stickers / badges ===== */
.sticker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px 20px;
  background: var(--sticker-green);
  color: var(--ink-black);
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.12em;
  line-height: 1;
  border-radius: 999px;
  transform: rotate(-7deg);
  box-shadow: var(--shadow-soft);
}
.sticker-yellow { background: linear-gradient(135deg, #FFD24A, #FF6B2C); color: var(--ink-black); }
.sticker-blue { background: var(--sky-blue); color: var(--ink-black); }
.sticker-red { background: linear-gradient(135deg, #FF3B6E, #8A6CFF); color: var(--warm-cream); }
.sticker-black { background: var(--ink-black); color: var(--solar-yellow); border: 1px solid rgba(255,255,255,0.15); }
.sticker-cream { background: var(--warm-cream); color: var(--ink-black); }
.sticker-green { background: linear-gradient(135deg, #2DD4A7, #4FB7E8); color: var(--ink-black); }

.badge-circle {
  width: 148px;
  height: 148px;
  border-radius: 999px;
  background: var(--grad-cosmic);
  color: var(--ink-black);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 800;
  font-family: var(--font-body);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.15;
  padding: 14px;
  box-shadow: 0 20px 60px rgba(255, 107, 44, 0.4);
}

.starburst {
  background: linear-gradient(135deg, #FFD24A 0%, #FF3B6E 100%);
  color: var(--ink-black);
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 11px;
  line-height: 1.05;
  letter-spacing: 0.04em;
  padding: 8px;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(255, 59, 110, 0.45);
}

.label-sticker {
  background: var(--sticker-green);
  color: var(--ink-black);
  padding: 18px 26px;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.1em;
  display: inline-block;
  border-radius: 999px;
}

/* ===== Zodiac ===== */
.zodiac-glyph-large {
  font-family: var(--font-display);
  font-size: clamp(80px, 13vw, 220px);
  line-height: 0.8;
  font-weight: 400;
}
.zodiac-badge {
  width: 64px;
  height: 64px;
  font-family: var(--font-symbol) !important;
  font-variant-emoji: text;
  border-radius: 999px;
  background: rgba(255, 241, 216, 0.08);
  color: var(--warm-cream);
  border: 1px solid rgba(255,241,216,0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform 0.2s ease, background 0.2s ease;
  cursor: pointer;
}
.zodiac-badge:hover { transform: scale(1.08); background: rgba(255,241,216,0.14); }
.zodiac-badge.active {
  background: linear-gradient(135deg, #FFD24A 0%, #FF3B6E 100%);
  color: var(--ink-black);
  border-color: transparent;
  transform: scale(1.05);
}

.zglyph, .zodiac-pattern {
  font-family: var(--font-symbol) !important;
  font-variant-emoji: text;
}

.zodiac-pattern {
  font-family: var(--font-display);
  font-size: 96px;
  line-height: 1;
  opacity: 0.06;
  color: var(--warm-cream);
  letter-spacing: 0.2em;
  user-select: none;
  pointer-events: none;
}

/* ===== Profile Cards ===== */
.profile-card {
  width: 220px;
  height: 320px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--ink-soft);
  color: var(--warm-cream);
  box-shadow: var(--shadow-card);
  position: relative;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1);
  border: 1px solid rgba(255,241,216,0.08);
}
.profile-card-photo {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.profile-overlay {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(11, 11, 16, 0.7);
  backdrop-filter: blur(10px);
  color: var(--warm-cream);
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 1px solid rgba(255,241,216,0.08);
}
.profile-overlay .name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.01em;
}
.profile-overlay .meta {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.75;
  display: flex;
  gap: 8px;
  align-items: center;
}
.compatibility-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #FFD24A 0%, #FF3B6E 100%);
  color: var(--ink-black);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.04em;
  align-self: flex-start;
}

/* ===== Phone Frame ===== */
.phone-frame {
  width: 240px;
  border-radius: 38px;
  background: var(--ink-soft);
  padding: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(255, 59, 110, 0.15);
  flex-shrink: 0;
  border: 1px solid rgba(255,241,216,0.08);
}
.phone-screen {
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: var(--ink-black);
  aspect-ratio: 9 / 19;
  position: relative;
}

/* ===== Tool Cards ===== */
.tool-card {
  min-height: 380px;
  border-radius: 32px;
  padding: 32px;
  background: var(--ink-soft);
  color: var(--warm-cream);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  transition: transform 0.3s ease;
  border: 1px solid rgba(255,241,216,0.08);
}
.tool-card:hover { transform: translateY(-6px); }
.tool-card::before {
  content: "";
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
}
.tool-card > * { position: relative; z-index: 1; }
.tool-card-blue { background: var(--ink-soft); }
.tool-card-blue::before { background: var(--sky-blue); top: -120px; right: -100px; }
.tool-card-green { background: var(--ink-soft); }
.tool-card-green::before { background: var(--sticker-green); bottom: -120px; left: -100px; }
.tool-card-red { background: var(--ink-soft); color: var(--warm-cream); }
.tool-card-red::before { background: linear-gradient(135deg, #FF3B6E, #FF6B2C); top: -100px; left: -80px; }
.tool-card-yellow { background: var(--ink-soft); }
.tool-card-yellow::before { background: var(--solar-yellow); top: -100px; right: -80px; }
.tool-card-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 48px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* ===== Confession ===== */
.confession-card {
  width: 100%;
  min-height: 220px;
  border-radius: 24px;
  padding: 24px;
  background: var(--ink-soft);
  color: var(--warm-cream);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: pointer;
  transition: transform 0.3s ease;
  position: relative;
  border: 1px solid rgba(255,241,216,0.1);
  overflow: hidden;
}
.confession-card::after {
  content: "";
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
  bottom: -80px; right: -80px;
}
.confession-card > * { position: relative; z-index: 1; }
.confession-card:hover { transform: translateY(-4px) rotate(0deg) !important; }
.confession-card-red::after { background: linear-gradient(135deg, #FF3B6E, #FF6B2C); }
.confession-card-cream { background: var(--ink-soft); }
.confession-card-cream::after { background: var(--solar-yellow); }
.confession-card-lilac::after { background: var(--lilac); }
.confession-card-blue::after { background: var(--sky-blue); }
.confession-text {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: -0.005em;
  flex: 1;
}
.confession-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
}
.confession-meta > span:first-child {
  font-size: 12px;
  text-transform: none;
  letter-spacing: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0;
}
.confession-meta > span:last-child {
  white-space: nowrap;
  flex-shrink: 0;
}

.sign-chip {
  font-family: var(--font-symbol);
  font-variant-emoji: text;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,241,216,0.1);
  color: var(--warm-cream);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255,241,216,0.15);
}

/* ===== Score Card ===== */
.score-card {
  width: 100%;
  min-height: 320px;
  border-radius: 32px;
  padding: 34px;
  background: var(--ink-soft);
  color: var(--warm-cream);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,241,216,0.1);
}
.score-card::before {
  content: "";
  position: absolute;
  width: 360px; height: 360px;
  border-radius: 999px;
  background: var(--grad-cosmic);
  filter: blur(50px);
  opacity: 0.45;
  top: -150px; right: -150px;
  z-index: 0;
}
.score-card > * { position: relative; z-index: 1; }
.score-number {
  font-family: var(--font-display);
  font-size: clamp(96px, 10vw, 140px);
  line-height: 0.85;
  font-weight: 400;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #FFD24A 0%, #FF3B6E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.score-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* ===== Natal Chart ===== */
.natal-card {
  width: min(620px, 90vw);
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    radial-gradient(circle at 42% 38%, rgba(255, 240, 202, 0.98), rgba(255, 245, 224, 0.86) 34%, rgba(236, 209, 150, 0.56) 68%, rgba(185, 126, 49, 0.28) 100%),
    #fff7e6;
  border: 1px solid rgba(126, 83, 21, 0.22);
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow:
    0 34px 90px rgba(93, 61, 19, 0.2),
    0 0 0 14px rgba(255, 247, 230, 0.54),
    0 0 110px rgba(171, 111, 28, 0.18);
}
.natal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.28), transparent 28%),
    radial-gradient(circle at 66% 78%, rgba(184, 119, 32, 0.12), transparent 50%);
  pointer-events: none;
  z-index: 2;
}
.natal-card::after {
  content: "";
  position: absolute;
  inset: 1.8%;
  border-radius: inherit;
  border: 1px solid rgba(104, 68, 15, 0.18);
  box-shadow: inset 0 0 48px rgba(121, 82, 22, 0.12);
  pointer-events: none;
  z-index: 4;
}
.natal-chart-image {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 122%;
  height: auto;
  max-width: none;
  transform: translate(-50%, -50%) rotate(-1deg);
  transform-origin: center;
  animation: natal-chart-turn 56s linear infinite;
  will-change: transform;
  opacity: 1;
  filter:
    saturate(1.1)
    contrast(1.08)
    drop-shadow(0 10px 20px rgba(95, 65, 18, 0.12));
  z-index: 1;
}

@keyframes natal-chart-turn {
  from {
    transform: translate(-50%, -50%) rotate(-1deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(359deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .natal-chart-image {
    animation: none;
  }
}

.natal-chart-sheen {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.2), transparent 24%),
    linear-gradient(130deg, rgba(255, 255, 255, 0.18) 0%, transparent 28%, transparent 68%, rgba(167, 103, 26, 0.08) 100%);
  pointer-events: none;
  z-index: 3;
}
/* ===== Layout helpers ===== */
.section {
  position: relative;
  width: 100%;
  padding: 110px 5vw;
  overflow: hidden;
  background: var(--ink-black);
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.bg-yellow { background: var(--ink-black); }
.bg-cream { background: var(--ink-black); }
.bg-black { background: var(--ink-black); color: var(--warm-cream); }
.bg-red { background: var(--ink-black); color: var(--warm-cream); }
.bg-blue { background: var(--ink-black); }

/* Cosmic blob backgrounds for sections */
.section::before, .section::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}
.section::before {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #FF3B6E 0%, #8A6CFF 60%, transparent 100%);
  top: -200px; left: -200px;
}
.section::after {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #FFD24A 0%, #FF6B2C 50%, transparent 100%);
  bottom: -300px; right: -250px;
  opacity: 0.35;
}

.bg-cream.section::before { opacity: 0.4; }
.bg-cream.section::after { opacity: 0.3; }

.poster-bg {
  position: absolute;
  z-index: 1;
  user-select: none;
  pointer-events: none;
  font-family: var(--font-stencil) !important;
  color: var(--warm-cream) !important;
  opacity: 0.06 !important;
  letter-spacing: 0.02em !important;
}

/* ===== Animations ===== */
@keyframes float-card {
  0%, 100% { transform: translateY(0) rotate(var(--rotate, 0deg)); }
  50% { transform: translateY(-14px) rotate(var(--rotate, 0deg)); }
}
.float-anim { animation: float-card 5s ease-in-out infinite; }

@keyframes sticker-pop {
  0% { transform: scale(0.8) rotate(-10deg); opacity: 0; }
  100% { transform: scale(1) rotate(var(--rotate, -7deg)); opacity: 1; }
}
.pop-anim { animation: sticker-pop 0.6s cubic-bezier(.5,1.6,.4,1) backwards; }

@keyframes blob-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 30px) scale(0.95); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== Marquee ===== */
.marquee {
  width: 100%;
  overflow: hidden;
  background: var(--ink-black);
  color: var(--warm-cream);
  padding: 28px 0;
  position: relative;
  border-top: 1px solid rgba(255,241,216,0.08);
  border-bottom: 1px solid rgba(255,241,216,0.08);
}
.marquee-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: marquee 40s linear infinite;
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 400;
  letter-spacing: -0.01em;
  white-space: nowrap;
  align-items: center;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 40px; }
.marquee-dot {
  width: 14px; height: 14px; border-radius: 999px;
  background: linear-gradient(135deg, #FFD24A, #FF3B6E);
  display: inline-block; flex-shrink: 0;
}

@media (max-width: 560px) {
  .marquee {
    padding: 14px 0;
  }

  .marquee-track {
    gap: 24px;
    font-size: 34px;
  }

  .marquee-track span {
    gap: 24px;
  }

  .marquee-dot {
    width: 10px;
    height: 10px;
  }
}

/* ===== Nav ===== */
.nav {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  pointer-events: none;
  padding: 0 18px;
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(11, 11, 16, 0.7);
  backdrop-filter: blur(20px);
  border-radius: 999px;
  padding: 8px 8px 8px 16px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.4);
  pointer-events: auto;
  border: 1px solid rgba(255,241,216,0.12);
  max-width: 100%;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.01em;
  padding-right: 8px;
  color: var(--warm-cream);
}
.nav-brand span {
  display: block;
  line-height: 1;
  transform: translateY(-1px);
}
.nav-brand .logo-sticker {
  width: 36px;
  height: 36px;
  background: transparent;
  box-shadow: none !important;
}
.nav-brand .logo-sticker img {
  width: 100%;
  height: 100%;
}
.nav-items {
  display: flex; gap: 4px;
}
.nav-item {
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--warm-cream);
  background: transparent;
  text-decoration: none;
  transition: background 0.18s ease;
  opacity: 0.8;
}
.nav-item:hover { background: rgba(255,241,216,0.08); opacity: 1; }
.nav-item.active { background: var(--warm-cream); color: var(--ink-black); opacity: 1; }
.nav-cta {
  margin-left: 4px;
  background: linear-gradient(135deg, #FFD24A 0%, #FF3B6E 100%);
  color: var(--ink-black);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  text-decoration: none;
  letter-spacing: 0.02em;
}

@media (max-width: 820px) {
  .nav-items { display: none; }
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  position: relative;
  padding: 120px 5vw 80px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ink-black) !important;
  color: var(--warm-cream) !important;
}
/* Big cosmic blobs in hero */
.hero::before {
  content: "";
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 35%, #FFD24A 0%, #FF6B2C 35%, #FF3B6E 70%, transparent 100%);
  filter: blur(20px);
  top: -200px; right: -150px;
  z-index: 0;
  animation: blob-drift 20s ease-in-out infinite;
}
.hero::after {
  content: "";
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 999px;
  background: radial-gradient(circle at 60% 50%, #FF3B6E 0%, #8A6CFF 60%, transparent 100%);
  filter: blur(30px);
  bottom: -200px; left: -150px;
  z-index: 0;
  animation: blob-drift 25s ease-in-out infinite reverse;
}
.hero-poster {
  position: absolute;
  font-family: var(--font-stencil);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.78;
  font-size: clamp(80px, 14vw, 200px);
  color: var(--warm-cream);
  bottom: 4%;
  left: 5%;
  z-index: 0;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  opacity: 0.04;
}
.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 30px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.hero-left { display: flex; flex-direction: column; gap: 22px; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 241, 216, 0.08) !important;
  color: var(--warm-cream) !important;
  border: 1px solid rgba(255, 241, 216, 0.18);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  width: fit-content;
  backdrop-filter: blur(10px);
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.0;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--warm-cream);
  position: relative;
  z-index: 4;
}
.hero-sub {
  max-width: 480px;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: var(--warm-cream) !important;
  opacity: 0.8;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1;
  background: linear-gradient(135deg, #FFD24A 0%, #FF3B6E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-stat .lbl {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: 0.7;
}

.hero-collage {
  position: relative;
  height: 460px;
  width: 100%;
}
.collage-item {
  position: absolute;
  --rotate: 0deg;
  transform: rotate(var(--rotate));
}

@media (max-width: 720px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-collage { height: 440px; margin-top: 20px; max-width: 100%; }
}

/* ===== Sections ===== */
.section-header {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 60px;
  position: relative;
  z-index: 3;
  color: var(--warm-cream);
}
.section-header * { color: var(--warm-cream) !important; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  width: fit-content;
  opacity: 0.85;
}
.eyebrow .dot {
  width: 10px; height: 10px; border-radius: 999px;
  background: linear-gradient(135deg, #FFD24A, #FF3B6E);
}

/* Tools grid */
.tools-container {
  padding-top: 180px;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 3;
}
@media (max-width: 900px) { .tools-grid { grid-template-columns: 1fr; } }

/* Compatibility section */
.uyum-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 3;
}
@media (max-width: 1024px) { .uyum-layout { grid-template-columns: 1fr; } }

.calc-panel {
  background: var(--ink-soft);
  border-radius: 32px;
  padding: 32px;
  box-shadow: var(--shadow-card);
  color: var(--warm-cream);
  display: flex;
  flex-direction: column;
  gap: 22px;
  border: 1px solid rgba(255,241,216,0.1);
  position: relative;
  overflow: hidden;
}
.calc-panel::before {
  content: "";
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 999px;
  background: var(--lilac);
  filter: blur(80px);
  opacity: 0.25;
  top: -100px; right: -100px;
  z-index: 0;
}
.calc-panel > * { position: relative; z-index: 1; }
.calc-panel .label { color: var(--warm-cream); opacity: 0.85; }
.sign-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
@media (max-width: 600px) { .sign-grid { grid-template-columns: repeat(4, 1fr); } }

.calc-result {
  background: rgba(0,0,0,0.4);
  color: var(--warm-cream);
  border-radius: 22px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(255,241,216,0.1);
}
.calc-result-copy,
.calc-result-signs {
  min-width: 0;
}
.calc-result .pct {
  font-family: var(--font-display);
  font-size: clamp(58px, 13vw, 80px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #FFD24A 0%, #FF3B6E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.calc-result-signs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 0 1 auto;
  text-align: center;
}
.calc-result-glyphs {
  font-family: var(--font-display);
  font-size: clamp(40px, 9vw, 56px);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}
.calc-result-glyphs span {
  opacity: 0.5;
  margin: 0 6px;
  font-size: 0.64em;
}
.calc-result-elements {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
  white-space: nowrap;
}

@media (max-width: 560px) {
  .calc-result {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    padding: 22px;
  }

  .calc-result-signs {
    align-items: flex-start;
    width: 100%;
  }

  .calc-result-glyphs {
    font-size: clamp(42px, 13vw, 56px);
  }
}

/* Confessions section */
.itiraf-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 3;
}
@media (max-width: 1024px) { .itiraf-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .itiraf-grid { grid-template-columns: 1fr; } }

/* Natal */
#natal {
  scroll-margin-top: 110px;
  background:
    radial-gradient(circle at 90% 8%, rgba(255, 122, 77, 0.22), transparent 22vw),
    radial-gradient(circle at 88% 90%, rgba(255, 217, 78, 0.18), transparent 26vw),
    radial-gradient(circle at 7% 100%, rgba(201, 37, 218, 0.22), transparent 22vw),
    linear-gradient(180deg, #0b0c0d 0%, #0d0e10 48%, #090a0b 100%) !important;
  color: var(--warm-cream);
}
#natal::before {
  background: var(--grad-violet);
  opacity: 0.24;
  filter: blur(32px);
}
#natal::after {
  background: var(--grad-sun);
  opacity: 0.22;
  filter: blur(34px);
}
#natal .section-header {
  margin-bottom: 48px;
  color: var(--warm-cream);
}
#natal .section-header *,
#natal .eyebrow {
  color: var(--warm-cream) !important;
}
#natal .section-header p {
  color: rgba(250, 247, 240, 0.82) !important;
}
#natal .zodiac-pattern {
  color: rgba(250, 247, 240, 0.08) !important;
  opacity: 1;
}

.natal-layout {
  display: grid;
  grid-template-columns: minmax(420px, 1.1fr) minmax(340px, 0.9fr);
  gap: clamp(44px, 6vw, 86px);
  align-items: center;
  position: relative;
  z-index: 3;
}
@media (max-width: 1024px) { .natal-layout { grid-template-columns: 1fr; } }

.natal-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.natal-insights {
  max-width: 560px;
  color: var(--warm-cream);
}
.natal-insight-copy {
  max-width: 500px;
  margin-bottom: 18px;
  color: rgba(250, 247, 240, 0.76);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.55;
}
.natal-points {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.natal-point-card {
  background: transparent !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(250, 247, 240, 0.18) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 17px 0;
  display: grid;
  grid-template-columns: 48px minmax(126px, 1fr) auto;
  gap: 16px;
  align-items: center;
  color: var(--warm-cream) !important;
  position: relative;
  overflow: visible;
}
.natal-point-card::before {
  display: none;
}
.natal-point-card > * { position: relative; z-index: 1; }
.natal-point-card .glyph {
  font-family: var(--font-symbol);
  font-variant-emoji: text;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(126, 83, 21, 0.08);
  color: var(--warm-cream);
  font-size: 24px;
  font-weight: 400;
}
.natal-point-main {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.natal-point-label,
.natal-point-note {
  font-family: var(--font-body);
}
.natal-point-label {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(250, 247, 240, 0.58);
}
.natal-point-main strong {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.7vw, 38px);
  line-height: 0.96;
  color: var(--warm-cream);
}
.natal-point-note {
  justify-self: end;
  color: rgba(250, 247, 240, 0.62);
  font-size: 14px;
  font-weight: 700;
}
.natal-more-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
}
.natal-more-row span {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  line-height: 1;
  color: var(--warm-cream);
}
.natal-more-row .btn {
  width: auto;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--warm-cream) !important;
  color: var(--ink-black) !important;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.34);
}

@media (max-width: 620px) {
  .natal-point-card {
    grid-template-columns: 42px 1fr;
    gap: 12px;
    padding: 15px 0;
  }

  .natal-point-card .glyph {
    width: 36px;
    height: 36px;
    font-size: 22px;
  }

  .natal-point-note {
    grid-column: 2;
    justify-self: start;
    margin-top: -4px;
  }

  .natal-more-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .natal-more-row .btn {
    width: 100%;
  }
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 3;
}
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }
.testimonial {
  background: var(--ink-soft);
  border-radius: 28px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: 1px solid rgba(255,241,216,0.1);
  color: var(--warm-cream);
  position: relative;
  overflow: hidden;
}
.testimonial::before {
  content: "";
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.4;
  z-index: 0;
}
.testimonial:nth-child(1)::before { background: var(--solar-yellow); top: -100px; right: -80px; }
.testimonial:nth-child(2)::before { background: var(--sticker-green); bottom: -100px; left: -80px; }
.testimonial:nth-child(3)::before { background: var(--lilac); top: -100px; left: -80px; }
.testimonial > * { position: relative; z-index: 1; }
.testimonial.alt-1 { background: var(--ink-soft); color: var(--warm-cream); }
.testimonial.alt-2 { background: var(--ink-soft); color: var(--warm-cream); }
.testimonial.alt-2 .testimonial-meta { color: var(--warm-cream); }
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.005em;
}
.testimonial-meta {
  display: flex; align-items: center; gap: 12px;
  font-weight: 600; font-size: 13px;
  opacity: 0.85;
}
.avatar {
  width: 44px; height: 44px; border-radius: 999px;
  background: linear-gradient(135deg, #FFD24A 0%, #FF3B6E 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-black); font-family: var(--font-display); font-size: 18px; font-weight: 400;
  flex-shrink: 0;
}

/* FAQ */
.faq-list {
  display: flex; flex-direction: column; gap: 12px;
  max-width: 880px; margin: 0 auto; position: relative; z-index: 3;
}
.faq-item {
  background: var(--ink-soft);
  border: 1px solid rgba(255,241,216,0.1);
  border-radius: 20px;
  overflow: hidden;
  color: var(--warm-cream);
}
.faq-q {
  width: 100%;
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: transparent;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--warm-cream);
}
.faq-q .plus {
  width: 38px; height: 38px; border-radius: 999px;
  background: linear-gradient(135deg, #FFD24A 0%, #FF3B6E 100%);
  color: var(--ink-black);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 800; flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 28px;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 28px 24px; }
.faq-a p {
  font-size: 16px; line-height: 1.6; font-weight: 400; opacity: 0.85;
}

/* Final CTA */
.cta-poster {
  position: relative;
  padding: 200px 5vw 140px;
  background: var(--ink-black);
  text-align: center;
  overflow: hidden;
  color: var(--warm-cream);
}
.cta-poster::before {
  content: "";
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 999px;
  background: radial-gradient(circle at 40% 40%, #FFD24A 0%, #FF6B2C 40%, #FF3B6E 80%, transparent 100%);
  filter: blur(40px);
  top: -200px; right: -150px;
  opacity: 0.5;
  z-index: 0;
}
.cta-poster::after {
  content: "";
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 999px;
  background: radial-gradient(circle, #8A6CFF 0%, #FF3B6E 60%, transparent 100%);
  filter: blur(50px);
  bottom: -200px; left: -200px;
  opacity: 0.45;
  z-index: 0;
}
.cta-poster .poster-bg-word {
  position: absolute;
  top: 5%;
  left: 0; right: 0;
  text-align: center;
  font-family: var(--font-stencil);
  font-size: clamp(160px, 26vw, 380px);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--warm-cream);
  opacity: 0.04;
  z-index: 1;
  user-select: none;
  pointer-events: none;
  line-height: 0.78;
}
.cta-content {
  position: relative; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 28px;
  color: var(--warm-cream);
}
.cta-content .logo-sticker { width: 140px; height: 140px; transform: rotate(-8deg); }
.cta-content .hero-headline {
  color: var(--warm-cream) !important;
}
.cta-headline {
  font-family: var(--font-body);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--warm-cream);
  max-width: 600px;
}

/* Footer */
.footer {
  background: var(--ink-black);
  color: var(--warm-cream);
  padding: 80px 5vw 40px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,241,216,0.1);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  position: relative; z-index: 3;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand .logo-sticker { width: 64px; height: 64px; margin-bottom: 18px; }
.footer-wordmark {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 12px;
}
.footer-copy {
  font-size: 15px;
  line-height: 1.5;
  opacity: 0.85;
  max-width: 320px;
}
.footer h4 {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.16em; opacity: 0.5; margin-bottom: 18px;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer a {
  color: var(--warm-cream); text-decoration: none; font-weight: 500; font-size: 15px;
  opacity: 0.8; transition: opacity 0.2s ease;
}
.footer a:hover { opacity: 1; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255,241,216,0.1);
  font-size: 12px;
  opacity: 0.6;
  flex-wrap: wrap;
  gap: 14px;
  position: relative; z-index: 3;
}
.footer-social {
  display: flex;
  gap: 18px;
}
.footer-poster {
  position: absolute;
  bottom: -80px;
  left: 0; right: 0;
  text-align: center;
  font-family: var(--font-stencil);
  font-size: clamp(180px, 28vw, 420px);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(255, 241, 216, 0.04);
  line-height: 0.78;
  user-select: none;
  pointer-events: none;
  z-index: 1;
}

/* ===== Reference Poster Restyle ===== */
:root {
  --solar-yellow: #FFD94E;
  --warm-cream: #FAF7F0;
  --ink-black: #0B0C0D;
  --ink-soft: #111214;
  --venus-red: #FF4A83;
  --sky-blue: #4BA7D8;
  --sticker-green: #21B89E;
  --lilac: #755DDF;
  --orange: #FF7A4D;
  --paper-gray: #18181D;
  --grad-cosmic: radial-gradient(circle at 24% 26%, #FFE15A 0 14%, #FF7A4D 34%, #FF4A83 58%, #755DDF 82%, #1A3650 100%);
  --grad-violet: radial-gradient(circle at 68% 30%, #FF4A83 0 24%, #755DDF 58%, #213D57 100%);
  --grad-sun: radial-gradient(circle at 36% 28%, #FFE15A 0 18%, #FF9A56 40%, #FF4A83 70%, #2D4357 100%);
  --font-display: "Fraunces", "Yeseva One", Georgia, serif;
  --font-stencil: "Bebas Neue", "Anton", Impact, sans-serif;
  --font-body: "Inter", "Satoshi", "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-card: 20px;
  --radius-large: 34px;
  --shadow-card: 0 30px 90px rgba(0, 0, 0, 0.68), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  --shadow-soft: 0 22px 70px rgba(0, 0, 0, 0.52);
}

html,
body {
  background:
    radial-gradient(circle at 83% 9%, rgba(255, 122, 77, 0.24), transparent 26vw),
    radial-gradient(circle at 93% 21%, rgba(255, 74, 131, 0.28), transparent 28vw),
    var(--ink-black);
  max-width: 100%;
  overflow-x: hidden;
}

body {
  color: var(--warm-cream);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.085;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.75) 0 0.7px, transparent 0.9px),
    radial-gradient(circle, rgba(255,255,255,0.28) 0 0.8px, transparent 1px);
  background-size: 3px 3px, 7px 7px;
  mix-blend-mode: screen;
}

.section-title,
.hero-headline,
.tool-card-title,
.confession-text,
.testimonial-quote,
.faq-q,
.score-number,
.profile-overlay .name,
.footer-brand > div,
.nav-brand,
.hero-stat .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-variation-settings: "SOFT" 60, "WONK" 1;
  letter-spacing: 0;
}

.label,
.eyebrow,
.poster-bg,
.poster-word,
.footer-poster,
.cta-poster .poster-bg-word,
.hero-tag,
.score-label,
.confession-meta,
.nav-item,
.nav-cta {
  font-family: var(--font-stencil);
  letter-spacing: 0.045em;
  font-weight: 400;
}

.section-title {
  font-size: clamp(58px, 9vw, 150px);
  line-height: 0.88;
}

.hero-headline {
  font-size: clamp(58px, 8.2vw, 122px);
  line-height: 0.9;
}

.hero-headline span {
  color: var(--warm-cream) !important;
  text-shadow:
    0 0 34px rgba(255, 74, 131, 0.38),
    0 10px 42px rgba(0, 0, 0, 0.44);
}

.hero-sub,
.section-header p,
.tool-card p,
.score-card p,
.faq-a p,
.footer p,
.cta-content p {
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.68;
  font-weight: 400;
  color: rgba(250, 247, 240, 0.86) !important;
}

.nav {
  top: 24px;
}

.nav-inner {
  background: rgba(8, 9, 10, 0.72);
  border: 1px solid rgba(250, 247, 240, 0.18);
  border-radius: 26px;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.46);
}

.nav-brand {
  font-size: 24px;
}

.nav-item {
  font-size: 15px;
}

.nav-cta,
.btn {
  border-radius: 18px 999px 999px 18px;
}

.btn {
  min-height: 58px;
  color: var(--ink-black);
  background: var(--warm-cream);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.btn:hover {
  box-shadow: 0 22px 52px rgba(255, 74, 131, 0.26);
}

.btn-red,
.btn-yellow,
.nav-cta {
  background: var(--grad-sun);
  color: var(--ink-black);
}

.hero-actions .btn[style] {
  color: var(--warm-cream) !important;
  border-color: rgba(250, 247, 240, 0.62) !important;
  background: rgba(250, 247, 240, 0.06) !important;
  backdrop-filter: blur(14px);
}

.logo-sticker {
  background: transparent;
  box-shadow: 0 18px 60px rgba(255, 74, 131, 0.18);
}

.sticker,
.label-sticker,
.sign-chip,
.compatibility-badge {
  border-radius: 999px 42px 999px 42px;
}

.sticker {
  letter-spacing: 0.08em;
  border: 1px solid rgba(250, 247, 240, 0.2);
}

.hero {
  min-height: 100vh;
  padding-top: 132px;
  background:
    radial-gradient(circle at 91% 9%, rgba(255, 122, 77, 0.58), transparent 18vw),
    radial-gradient(circle at 90% 24%, rgba(255, 74, 131, 0.42), transparent 26vw),
    radial-gradient(circle at 0% 100%, rgba(201, 37, 218, 0.44), transparent 18vw),
    var(--ink-black) !important;
}

.hero::before {
  width: min(48vw, 680px);
  height: min(48vw, 680px);
  top: auto;
  right: -8vw;
  bottom: -18vw;
  border-radius: 58% 42% 68% 32% / 54% 35% 65% 46%;
  background:
    radial-gradient(circle at 27% 23%, #FFE15A 0 16%, #FF9A56 27%, #C982DA 48%, #223E57 75%, #0B0C0D 100%);
  filter: blur(0.6px);
  opacity: 0.98;
  box-shadow: inset -44px -52px 70px rgba(5, 7, 9, 0.62);
}

.hero::after {
  width: min(38vw, 560px);
  height: min(38vw, 560px);
  left: -17vw;
  bottom: -13vw;
  border-radius: 60% 40% 51% 49% / 42% 48% 52% 58%;
  background:
    radial-gradient(circle at 33% 24%, #FF4A83 0 20%, #C325DA 42%, #43377F 70%, #0B0C0D 100%);
  filter: blur(10px);
  opacity: 0.78;
}

.hero-content::before {
  content: "";
  position: absolute;
  left: max(-20vw, -270px);
  top: max(-17vw, -220px);
  width: min(46vw, 640px);
  aspect-ratio: 1;
  background: url("assets/milkyway.png") center / contain no-repeat;
  filter: drop-shadow(0 36px 80px rgba(0, 0, 0, 0.38));
  mix-blend-mode: screen;
  opacity: 0.4;
  pointer-events: none;
  transform: rotate(-10deg);
  z-index: -1;
}

.hero-left {
  max-width: 660px;
}

.hero-tag {
  color: var(--warm-cream) !important;
  background: transparent !important;
  border: 0;
  padding: 0;
  font-size: clamp(28px, 3.8vw, 60px);
  line-height: 0.9;
}

.hero-tag span {
  display: none !important;
}

.hero-stats {
  margin-top: 18px;
}

.hero-stat .lbl {
  font-family: var(--font-stencil);
  letter-spacing: 0.055em;
}

.hero-collage::before,
.hero-collage::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-collage::before {
  width: 420px;
  height: 310px;
  right: -18%;
  top: 6%;
  border-radius: 59% 41% 46% 54% / 40% 48% 52% 60%;
  background: var(--grad-violet);
  filter: blur(22px);
  opacity: 0.62;
}

.hero-collage::after {
  width: 290px;
  height: 350px;
  right: 2%;
  bottom: -10%;
  border-radius: 64% 36% 57% 43% / 37% 44% 56% 63%;
  background: var(--grad-sun);
  opacity: 0.86;
  box-shadow: inset -38px -44px 56px rgba(14, 20, 31, 0.58);
}

.phone-frame,
.profile-card,
.tool-card,
.confession-card,
.score-card,
.calc-panel,
.testimonial,
.faq-item,
.natal-point-card {
  background: rgba(17, 18, 20, 0.86);
  border: 1px solid rgba(250, 247, 240, 0.12);
  box-shadow: var(--shadow-card);
}

.phone-frame {
  border-radius: 42px 42px 72px 42px;
  background:
    linear-gradient(145deg, rgba(250, 247, 240, 0.12), rgba(250, 247, 240, 0.02)),
    #0E0F11;
}

.phone-screen {
  border-radius: 34px 34px 62px 34px;
}

.profile-card {
  border-radius: 34px 34px 74px 34px;
}

.profile-card-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 217, 78, 0.38), transparent 34%),
    radial-gradient(circle at 76% 24%, rgba(255, 74, 131, 0.42), transparent 34%),
    linear-gradient(160deg, rgba(11, 12, 13, 0.12), rgba(11, 12, 13, 0.42));
}

.profile-overlay,
.calc-result {
  border-radius: 20px 20px 36px 20px;
  background: rgba(8, 9, 10, 0.72);
}

.section {
  padding-top: 128px;
  padding-bottom: 128px;
  background:
    radial-gradient(circle at 88% 6%, rgba(255, 122, 77, 0.18), transparent 22vw),
    radial-gradient(circle at 10% 96%, rgba(201, 37, 218, 0.18), transparent 20vw),
    var(--ink-black);
}

.section::before {
  width: min(43vw, 620px);
  height: min(43vw, 620px);
  top: -22vw;
  left: -18vw;
  border-radius: 53% 47% 62% 38% / 45% 38% 62% 55%;
  background: var(--grad-violet);
  filter: blur(28px);
  opacity: 0.34;
}

.section::after {
  width: min(48vw, 680px);
  height: min(48vw, 680px);
  border-radius: 57% 43% 36% 64% / 38% 56% 44% 62%;
  background: var(--grad-sun);
  filter: blur(32px);
  opacity: 0.28;
}

.poster-bg,
.footer-poster,
.cta-poster .poster-bg-word {
  opacity: 0.052 !important;
  color: var(--warm-cream) !important;
}

.tool-card,
.confession-card,
.score-card,
.calc-panel,
.testimonial {
  border-radius: 28px 28px 58px 28px;
}

.tool-card::before,
.confession-card::after,
.score-card::before,
.testimonial::before,
.natal-point-card::before {
  filter: blur(34px);
  opacity: 0.48;
}

.tool-card:hover,
.confession-card:hover {
  transform: translateY(-5px) rotate(0deg) !important;
}

.tool-card-title {
  font-size: clamp(36px, 4.4vw, 58px);
  line-height: 0.94;
}

.zodiac-badge {
  border-radius: 50%;
  color: var(--warm-cream);
  background: rgba(250, 247, 240, 0.075) !important;
}

.zodiac-badge.active,
.sign-chip[style*="solar-yellow"] {
  background: var(--grad-sun) !important;
  color: var(--ink-black) !important;
}

.sign-chip {
  font-size: 13px;
  letter-spacing: 0.04em;
}

.natal-card {
  background:
    radial-gradient(circle at 42% 38%, rgba(255, 240, 202, 0.98), rgba(255, 245, 224, 0.86) 34%, rgba(236, 209, 150, 0.56) 68%, rgba(185, 126, 49, 0.28) 100%),
    #fff7e6;
  border-color: rgba(126, 83, 21, 0.22);
  box-shadow:
    0 34px 90px rgba(93, 61, 19, 0.2),
    0 0 0 14px rgba(255, 247, 230, 0.54),
    0 0 110px rgba(171, 111, 28, 0.18);
}

.natal-point-card {
  border-radius: 18px 18px 42px 18px;
}

#browse .btn {
  color: var(--warm-cream) !important;
  border-color: rgba(250, 247, 240, 0.32) !important;
}

.testimonial {
  min-height: 300px;
}

.faq-item {
  border-radius: 18px 18px 38px 18px;
}

.faq-q .plus {
  background: var(--grad-sun);
}

.cta-poster {
  background:
    radial-gradient(circle at 83% 12%, rgba(255, 122, 77, 0.42), transparent 22vw),
    radial-gradient(circle at 90% 30%, rgba(255, 74, 131, 0.36), transparent 26vw),
    radial-gradient(circle at 8% 100%, rgba(201, 37, 218, 0.38), transparent 22vw),
    var(--ink-black);
}

.cta-poster::before {
  border-radius: 54% 46% 65% 35% / 47% 40% 60% 53%;
  filter: blur(18px);
  opacity: 0.55;
}

.cta-poster::after {
  border-radius: 62% 38% 48% 52% / 45% 57% 43% 55%;
}

.footer {
  background:
    radial-gradient(circle at 78% 2%, rgba(255, 74, 131, 0.2), transparent 22vw),
    var(--ink-black);
}

@media (max-width: 900px) {
  .hero {
    padding-top: 116px;
  }

  .hero-content::before {
    left: -250px;
    top: -145px;
    width: 560px;
    opacity: 0.3;
  }

  .hero-tag {
    font-size: 34px;
  }

  .hero::before {
    width: 420px;
    height: 420px;
    right: -190px;
    bottom: -130px;
  }

  .hero::after {
    width: 320px;
    height: 320px;
    left: -180px;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 92px 5vw;
  }

  .nav {
    padding: 0 12px;
    justify-content: flex-start;
  }

  .nav-inner {
    position: relative;
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
    padding: 7px;
    gap: 8px;
  }

  .nav-brand {
    min-width: 0;
    gap: 8px;
    font-size: 22px;
    padding-right: 132px;
  }

  .nav-cta {
    position: absolute;
    right: 7px;
    top: 7px;
    bottom: 7px;
    flex: 0 0 auto;
    padding: 11px 12px;
    font-size: 12px;
    max-width: 128px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero {
    padding: 108px 5vw 72px;
  }

  .hero-content::before {
    left: -245px;
    top: -90px;
    width: 430px;
    opacity: 0.24;
  }

  .hero-content {
    min-width: 0;
    width: 90vw;
    max-width: 90vw;
    margin-left: 0;
    margin-right: auto;
  }

  .hero-left {
    min-width: 0;
    width: 90vw;
    max-width: 90vw;
  }

  .hero-tag {
    display: block;
    width: 100%;
    max-width: 300px;
    font-size: clamp(21px, 6vw, 26px);
    line-height: 1.08;
    white-space: normal;
  }

  .hero-sub {
    width: 90vw;
    max-width: 90vw !important;
    overflow-wrap: break-word;
  }

  .hero-actions,
  .hero-stats {
    width: 90vw;
    max-width: 90vw;
  }

  .hero-headline {
    font-size: clamp(50px, 17vw, 76px);
  }

  .section-title {
    font-size: clamp(46px, 15vw, 78px);
  }

  .btn {
    width: 100%;
    white-space: normal;
  }

  .nav-inner {
    width: 100%;
    justify-content: space-between;
  }

  .nav-inner {
    width: min(calc(100vw - 24px), 366px);
    max-width: min(calc(100vw - 24px), 366px);
  }

  .hero-content,
  .hero-left,
  .hero-sub,
  .hero-actions,
  .hero-stats,
  .hero-headline {
    width: min(90vw, 340px);
    max-width: min(90vw, 340px) !important;
  }

  .footer {
    padding: 58px 5vw 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px 22px;
    margin-bottom: 34px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: center;
    column-gap: 26px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(250, 247, 240, 0.12);
  }

  .footer-brand .logo-sticker {
    width: 58px;
    height: 58px;
    margin-bottom: 0;
  }

  .footer-wordmark {
    font-size: 38px;
    line-height: 0.95;
    margin-bottom: 0;
  }

  .footer-copy {
    grid-column: 1 / -1;
    margin-top: 18px;
    max-width: 100%;
    font-size: 16px;
    line-height: 1.55;
  }

  .footer h4 {
    margin-bottom: 14px;
    opacity: 0.62;
  }

  .footer ul {
    gap: 12px;
  }

  .footer a {
    font-size: 16px;
    line-height: 1.25;
  }

  .footer-bottom {
    align-items: flex-start;
    gap: 18px;
    padding-top: 22px;
    opacity: 1;
  }

  .footer-bottom > span:first-child {
    order: 2;
    width: 100%;
    color: rgba(250, 247, 240, 0.58);
    font-size: 12px;
    line-height: 1.45;
  }

  .footer-social {
    order: 1;
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .footer-social a {
    color: rgba(250, 247, 240, 0.78);
    font-size: 14px;
  }

  .footer-poster {
    bottom: -22px;
    font-size: 112px;
    opacity: 0.035 !important;
  }
}

/* ===== Confession Wall Readability Pass ===== */
#itiraf {
  scroll-margin-top: 112px;
  background:
    radial-gradient(circle at 78% 14%, rgba(255, 122, 77, 0.12), transparent 24vw),
    radial-gradient(circle at 12% 82%, rgba(117, 93, 223, 0.12), transparent 22vw),
    linear-gradient(180deg, #0B0C0D 0%, #0D0E10 48%, #090A0B 100%) !important;
}

#itiraf::before {
  opacity: 0.16;
  filter: blur(48px);
}

#itiraf::after {
  opacity: 0.12;
  filter: blur(56px);
}

#itiraf .poster-bg {
  opacity: 0.024 !important;
  transform: translateY(-2%) !important;
}

#itiraf .section-header {
  margin-bottom: 42px;
}

#itiraf .container > div:nth-of-type(2) {
  gap: 10px !important;
  margin-bottom: 42px !important;
  max-width: 1120px;
}

#itiraf .container > div:nth-of-type(2) .sign-chip {
  height: 38px !important;
  padding: 0 15px !important;
  border-radius: 999px !important;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.055em;
  background: rgba(250, 247, 240, 0.055) !important;
  color: rgba(250, 247, 240, 0.78) !important;
  border: 1px solid rgba(250, 247, 240, 0.22) !important;
  backdrop-filter: blur(10px);
}

#itiraf .container > div:nth-of-type(2) .sign-chip:hover {
  background: rgba(250, 247, 240, 0.11) !important;
  color: var(--warm-cream) !important;
}

#itiraf .container > div:nth-of-type(2) .sign-chip[style*="solar-yellow"] {
  background: linear-gradient(135deg, #FFE15A 0%, #FF8C58 58%, #FF4A83 100%) !important;
  color: var(--ink-black) !important;
  border-color: transparent !important;
}

#itiraf .itiraf-grid {
  gap: 28px;
  row-gap: 30px;
}

#itiraf .confession-card {
  min-height: 300px;
  transform: none !important;
  padding: 28px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(250, 247, 240, 0.055), rgba(250, 247, 240, 0.018)),
    rgba(15, 16, 18, 0.94);
  border: 1px solid rgba(250, 247, 240, 0.13);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.5);
}

#itiraf .confession-card::after {
  width: 180px;
  height: 180px;
  right: -64px;
  bottom: -72px;
  opacity: 0.22;
  filter: blur(46px);
}

#itiraf .confession-card:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(250, 247, 240, 0.24);
  background:
    linear-gradient(180deg, rgba(250, 247, 240, 0.075), rgba(250, 247, 240, 0.026)),
    rgba(18, 19, 22, 0.96);
}

#itiraf .confession-card .sign-chip {
  height: 30px;
  padding: 0 12px;
  border-radius: 999px !important;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.045em;
  background: rgba(250, 247, 240, 0.08);
  color: rgba(250, 247, 240, 0.82);
  border-color: rgba(250, 247, 240, 0.18);
}

#itiraf .confession-text {
  font-size: clamp(20px, 1.35vw, 26px);
  line-height: 1.24;
  font-weight: 800;
  letter-spacing: 0;
  color: rgba(250, 247, 240, 0.96);
  text-wrap: pretty;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
  line-clamp: 7;
  overflow: hidden;
}

#itiraf .confession-meta {
  opacity: 0.62;
}

#itiraf .confession-meta > span:first-child {
  color: rgba(250, 247, 240, 0.72);
}

#itiraf .confession-meta > span:last-child {
  color: rgba(250, 247, 240, 0.82);
}

@media (max-width: 1024px) {
  #itiraf .itiraf-grid {
    gap: 22px;
  }
}

@media (max-width: 600px) {
  #itiraf .section-header {
    margin-bottom: 30px;
  }

  #itiraf .container > div:nth-of-type(2) {
    margin-bottom: 30px !important;
  }

  #itiraf .confession-card {
    min-height: 250px;
    padding: 24px;
  }

  #itiraf .confession-text {
    font-size: 22px;
    -webkit-line-clamp: 6;
    line-clamp: 6;
  }
}

/* ===== Cosmic Image Assets ===== */
.cosmic-asset {
  position: absolute;
  display: block;
  max-width: none;
  pointer-events: none;
  user-select: none;
  object-fit: contain;
}

.planet-model {
  position: absolute;
  display: block;
  pointer-events: none;
  user-select: none;
}

.planet-model canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.section > .cosmic-asset,
.cta-poster > .cosmic-asset,
.planet-model {
  filter: drop-shadow(0 36px 80px rgba(0, 0, 0, 0.38));
}

#tools .tools-lights {
  width: min(58vw, 650px);
  left: -220px;
  top: 70px;
  z-index: 1;
  opacity: 0.34;
  transform: rotate(18deg);
  mix-blend-mode: screen;
}

#tools .tools-comet {
  width: min(32vw, 390px);
  right: -130px;
  top: 190px;
  z-index: 1;
  opacity: 0.46;
  transform: rotate(-18deg);
}

#natal .natal-planet {
  width: min(28vw, 360px);
  aspect-ratio: 1;
  right: -112px;
  top: 7%;
  z-index: 1;
  opacity: 0.72;
}

#browse .browse-comet {
  width: min(38vw, 500px);
  left: -185px;
  top: -120px;
  z-index: 1;
  opacity: 0.34;
  transform: rotate(16deg);
}

.cta-milkyway {
  width: min(110vw, 1120px);
  left: 50%;
  top: 46%;
  z-index: 1;
  opacity: 0.22;
  transform: translate(-50%, -50%) rotate(8deg);
  mix-blend-mode: screen;
}

.cta-planet {
  width: min(38vw, 460px);
  aspect-ratio: 1;
  right: -12vw;
  bottom: -9vw;
  z-index: 2;
  opacity: 0.66;
  transform: rotate(10deg);
}

@media (max-width: 900px) {
  #tools .tools-lights,
  #natal .natal-planet,
  #browse .browse-comet {
    opacity: 0.32;
  }

  #natal .natal-planet {
    width: 270px;
    right: -112px;
    top: 80px;
  }
}

@media (max-width: 760px) {
  #tools {
    padding-top: 44px;
  }

  #tools .poster-bg {
    display: none !important;
  }

  #tools .tools-container {
    padding-top: 0;
  }
}

@media (max-width: 560px) {
  #tools .tools-comet,
  #browse .browse-comet,
  .cta-planet {
    display: none;
  }

  #natal .natal-planet {
    width: 200px;
    right: -104px;
    top: 68px;
    opacity: 0.24;
  }

  #tools .tools-lights,
  .cta-milkyway {
    opacity: 0.16;
  }

  #tools .tools-container {
    padding-top: 0;
  }

  #tools {
    padding-top: 34px;
  }
}

.button-disabled,
.button-disabled:hover,
.button-disabled:active {
  cursor: default;
  pointer-events: none;
  opacity: 0.58;
  transform: none;
  box-shadow: none;
}
