/* ─────────────────────────────────────────
   ENEA — Landing Page Styles
   ───────────────────────────────────────── */

/* ── TOKENS ── */
:root {
  --bg:           #0C0C0C;
  --bg-surface:   #141414;
  --bg-card:      #1A1A1A;
  --bg-card-2:    #222222;
  --text:         #F2F2F0;
  --text-muted:   #888884;
  --text-dim:     #555550;
  --border:       #2A2A28;
  --border-light: #333330;
  --coral:        #FE8282;
  --coral-dim:    #CC5555;
  --gold:         #C9A042;
  --gold-light:   #E6C068;
  --gold-dim:     #7A6025;
  --purple:       #9B6FE0;
  --white:        #F5F5F0;
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-sans:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-pill:  999px;
  --radius-lg:    20px;
  --radius-md:    12px;
  --radius-sm:    8px;
  --max-w:        1920px;
  --nav-h:        64px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── UTILITIES ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 96px);
}
.text-center { text-align: center; }
.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 52px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 20px;
}
.section-sub {
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 640px;
}
.text-center .section-sub,
.section-sub.text-center { margin: 0 auto 48px; }

/* ── FADE ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-delay { transition-delay: 0.15s; }
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(12, 12, 12, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.nav.scrolled { border-bottom-color: var(--border); }
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 48px;
  width: auto;
  display: block;
}
.nav-cta {
  font-size: 14px;
  font-weight: 500;
  color: var(--bg);
  background: var(--white);
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.85; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding: calc(var(--nav-h) + 60px) 24px 80px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(201, 160, 66, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(155, 111, 224, 0.06) 0%, transparent 50%);
  pointer-events: none;
}
.hero-stars::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 15%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 25% 35%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 40% 8%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 60% 20%, rgba(255,255,255,0.35) 0%, transparent 100%),
    radial-gradient(1px 1px at 75% 12%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 85% 40%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 92% 25%, rgba(255,255,255,0.45) 0%, transparent 100%),
    radial-gradient(1px 1px at 5% 55%, rgba(255,255,255,0.35) 0%, transparent 100%),
    radial-gradient(1px 1px at 15% 75%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 30% 60%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 50% 80%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 65%, rgba(255,255,255,0.35) 0%, transparent 100%),
    radial-gradient(1px 1px at 88% 85%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 95% 55%, rgba(255,255,255,0.4) 0%, transparent 100%);
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 120px);
  align-items: center;
  padding: 0 clamp(24px, 5vw, 96px);
}
.hero-text { max-width: 520px; }
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 460px;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-phone {
  display: flex;
  justify-content: center;
  position: relative;
}
.hero-phone::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 160, 66, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* ── STORE BUTTONS ── */
.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  color: var(--bg);
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  transition: transform 0.2s, opacity 0.2s;
  white-space: nowrap;
}
.btn-store:hover { transform: translateY(-2px); opacity: 0.92; }
.btn-store svg { flex-shrink: 0; }
.btn-store-text { display: flex; flex-direction: column; line-height: 1.3; }
.btn-store-text span { font-size: 10px; font-weight: 400; opacity: 0.6; }
.btn-store-text strong { font-size: 15px; font-weight: 600; }
.btn-store-lg { padding: 16px 28px; }
.btn-store-lg .btn-store-text strong { font-size: 17px; }
.btn-store-lg svg { width: 28px; height: 28px; }

/* ── PHONE MOCKUP ── */
.phone-mockup {
  width: 300px;
  background: #0A0A0A;
  border-radius: 44px;
  border: 1.5px solid #2E2E2C;
  box-shadow:
    0 0 0 0.5px #1A1A18,
    0 40px 100px rgba(0,0,0,0.7),
    inset 0 1px 0 rgba(255,255,255,0.05);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.phone-mockup.phone-sm { width: 270px; }
.phone-notch {
  width: 120px;
  height: 30px;
  background: #0A0A0A;
  border-radius: 0 0 20px 20px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  border: 1.5px solid #2E2E2C;
  border-top: none;
}
.phone-screen {
  padding: 0;
  background: var(--bg);
  min-height: 580px;
  display: flex;
  flex-direction: column;
}
.phone-status {
  padding: 4px 24px 0;
  display: flex;
  justify-content: flex-start;
}
.phone-time {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}

/* ── DAILY QUOTE SCREEN ── */
.quote-screen {
  flex: 1;
  padding: 10px 20px 16px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.qs-date {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.qs-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201, 160, 66, 0.12);
  border: 1px solid rgba(201, 160, 66, 0.3);
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
  width: fit-content;
}
.qs-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.qs-badge-moon { background: rgba(155, 111, 224, 0.12); border-color: rgba(155, 111, 224, 0.3); color: #C4A8F0; }
.qs-dot-moon { background: var(--purple); }
.qs-circle-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 10px 0;
  min-height: 200px;
}
.qs-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(201, 160, 66, 0.15);
  pointer-events: none;
}
.qs-open-mark, .qs-close-mark {
  font-family: var(--font-serif);
  font-size: 28px;
  color: rgba(201, 160, 66, 0.3);
  line-height: 1;
  position: relative;
  z-index: 1;
}
.qs-close-mark { text-align: right; }
.qs-quote {
  font-family: var(--font-serif);
  font-size: 14px;
  line-height: 1.65;
  color: var(--text);
  position: relative;
  z-index: 1;
  padding: 4px 0;
}
.qs-quote-sm { font-size: 13px; }
.qs-exclusive {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-align: center;
  margin: 12px 0 8px;
}
.qs-separator {
  height: 1px;
  background: var(--border);
  margin-bottom: 8px;
}
.qs-actions {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--text-muted);
  padding: 0 4px;
}

/* ── PHONE TABS ── */
.phone-tabs {
  display: flex;
  border-top: 1px solid var(--border);
  padding: 8px 0 10px;
  background: var(--bg-surface);
}
.phone-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 9px;
  color: var(--text-dim);
}
.phone-tab.active { color: var(--coral); }
.tab-icon { font-size: 14px; line-height: 1; }
.tab-dot-red {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
}

/* ── HOW IT WORKS ── */
.how-section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.how-section .section-title { margin-bottom: 60px; }
.pillars {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.pillar {
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  text-align: center;
  padding: 32px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.pillar-result {
  background: linear-gradient(135deg, rgba(201,160,66,0.08), rgba(155,111,224,0.06));
  border-color: rgba(201,160,66,0.25);
}
.pillar-icon {
  font-size: 28px;
  margin-bottom: 14px;
  display: block;
}
.pillar-gold { color: var(--gold); }
.pillar-coral { color: var(--coral); }
.pillar-purple { color: var(--purple); }
.pillar-white { color: var(--text); }
.pillar h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--text);
}
.pillar p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }
.pillar-plus, .pillar-equals {
  font-size: 28px;
  color: var(--text-dim);
  padding: 0 10px;
  align-self: center;
  flex-shrink: 0;
  font-family: var(--font-sans);
  font-weight: 300;
}

/* ── FEATURE SECTIONS ── */
.feature-section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.feature-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 140px);
  align-items: center;
}
.feature-reverse .feature-inner { }
.feature-text {}
.feature-desc {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text-muted);
}
.check {
  color: var(--coral);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 1px;
}
.feature-phone {
  display: flex;
  justify-content: center;
}

/* ── NATAL CARDS ── */
.natal-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
}
.natal-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.natal-symbol {
  font-size: 22px;
  color: var(--coral);
  width: 36px;
  text-align: center;
  flex-shrink: 0;
}
.natal-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 2px;
}
.natal-card p { font-size: 13px; color: var(--text-muted); margin: 0; }

/* ── NATAL SCREEN (phone) ── */
.natal-screen {
  padding: 8px 16px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.ns-step {
  font-size: 10px;
  color: var(--text-dim);
  text-align: center;
  margin-bottom: 12px;
}
.ns-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.2;
}
.ns-title-lg { font-size: 20px; }
.ns-sub { font-size: 11px; color: var(--text-muted); line-height: 1.55; margin-bottom: 14px; }

/* ── CSS NATAL CHART ── */
.natal-chart-css {
  display: flex;
  justify-content: center;
  margin: 8px 0 12px;
}
.chart-outer {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 1px solid #3A3A3A;
  position: relative;
  background: #111111;
}
.chart-inner {
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px solid #2E2E2E;
  background: #0E0E0E;
  overflow: hidden;
}
.chart-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1px solid #3A3A3A;
  background: #131313;
}
.chart-planet {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
}
.p1 { background: var(--coral); top: 25%; left: 20%; }
.p2 { background: #6A9DE8; top: 35%; left: 55%; }
.p3 { background: #E8C86A; top: 60%; left: 30%; }
.p4 { background: #9B6FE0; top: 20%; right: 20%; }
.p5 { background: #6AE8B8; bottom: 25%; right: 25%; }
.chart-line {
  position: absolute;
  top: 50%; left: 50%;
  transform-origin: 0 0;
  height: 1px;
  background: rgba(155, 111, 224, 0.25);
  width: 45%;
}
.l1 { transform: rotate(40deg); }
.l2 { transform: rotate(140deg); }
.l3 { transform: rotate(220deg); }
.chart-zodiac-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}
.czr {
  position: absolute;
  font-size: 8px;
  color: var(--purple);
  transform: translate(-50%, -50%);
  background: rgba(155, 111, 224, 0.15);
  border: 1px solid rgba(155, 111, 224, 0.4);
  border-radius: 3px;
  padding: 1px 2px;
  line-height: 1;
}
.czr-0  { top: 5%; left: 50%; }
.czr-1  { top: 12%; left: 75%; }
.czr-2  { top: 30%; left: 92%; }
.czr-3  { top: 50%; left: 98%; }
.czr-4  { top: 70%; left: 92%; }
.czr-5  { top: 88%; left: 75%; }
.czr-6  { top: 95%; left: 50%; }
.czr-7  { top: 88%; left: 25%; }
.czr-8  { top: 70%; left: 8%; }
.czr-9  { top: 50%; left: 2%; }
.czr-10 { top: 30%; left: 8%; }
.czr-11 { top: 12%; left: 25%; }

.ns-planets {
  display: flex;
  gap: 6px;
}
.ns-planet {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 14px;
  color: var(--gold-light);
}
.ns-plabel { font-size: 8px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.ns-pvalue { font-size: 9px; color: var(--purple); font-weight: 500; }

/* ── ENNEAGRAM SCREEN (phone) ── */
.ennea-screen {
  padding: 8px 16px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.ennea-btn {
  background: var(--white);
  color: var(--bg);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  padding: 10px;
  margin-bottom: 10px;
  cursor: pointer;
}
.ennea-divider {
  font-size: 9px;
  color: var(--text-dim);
  text-align: center;
  border-top: 1px solid var(--border);
  padding-top: 8px;
  margin-bottom: 8px;
}
.ennea-list { display: flex; flex-direction: column; gap: 6px; }
.ennea-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.ennea-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  color: var(--coral);
  flex-shrink: 0;
}
.ennea-row div { display: flex; flex-direction: column; }
.ennea-row strong { font-size: 10px; font-weight: 600; color: var(--text); }
.ennea-row span { font-size: 9px; color: var(--text-dim); }

/* ── ENNEAGRAM TYPES GRID (feature text side) ── */
.ennea-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 28px;
}
.ett {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 10px;
  text-align: center;
  transition: border-color 0.2s;
}
.ett:hover { border-color: var(--coral-dim); }
.ett span {
  font-size: 22px;
  font-weight: 700;
  color: var(--coral);
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-serif);
}
.ett p { font-size: 10px; color: var(--text-muted); line-height: 1.4; }

/* ── ZODIAC SECTION ── */
.zodiac-section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  overflow: hidden;
}
.zodiac-section .container { margin-bottom: 56px; }

/* Fan layout */
.zodiac-fan {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 20px 0 220px;
  gap: 0;
}

.zodiac-card {
  position: relative;
  flex-shrink: 0;
  width: 180px;
  height: 240px;
  border-radius: 20px;
  overflow: hidden;
  transform: translateY(var(--ty, 0px));
  margin-right: -36px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
  z-index: 1;
  box-shadow: 0 12px 40px rgba(0,0,0,0.55);
}
.zodiac-fan .zodiac-card:last-child { margin-right: 0; }

.zodiac-card:hover {
  transform: translateY(calc(var(--ty, 0px) - 28px)) scale(1.06);
  z-index: 10;
  box-shadow: 0 32px 60px rgba(0,0,0,0.7);
}

.zodiac-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Color tint overlay — mix-blend-mode: color keeps blacks dark */
.zodiac-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--tint, transparent);
  mix-blend-mode: color;
  opacity: 0.5;
  pointer-events: none;
  border-radius: inherit;
}

.zodiac-card span {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-shadow: 0 1px 8px rgba(0,0,0,0.8);
}

/* ── BIG QUOTE ── */
.big-quote-section {
  padding: 120px 0;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg) 0%, #0F0E0A 50%, var(--bg) 100%);
}
.bq-inner {
  position: relative;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 60px 40px;
}
.bq-circle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(201, 160, 66, 0.1);
  pointer-events: none;
}
.bq-circle::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 380px; height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(201, 160, 66, 0.06);
}
.bq-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.bq-text {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3.5vw, 36px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text);
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
}
.bq-credit {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--coral-dim);
  position: relative;
  z-index: 1;
}

/* ── DOWNLOAD ── */
.download-section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.download-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.download-title {
  font-family: var(--font-serif);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
}
.download-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}
.download-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER ── */
.footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo {
  display: flex;
  align-items: center;
}
.footer-logo img {
  height: 28px;
  width: auto;
  display: block;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.footer-logo:hover img {
  opacity: 0.9;
}
.footer-nav {
  display: flex;
  gap: 28px;
}
.footer-nav a {
  font-size: 13px;
  color: var(--text-dim);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--text-muted); }
.footer-bmc {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 8px;
}
.bmc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFDD00;
  color: #000;
  font-family: 'Cookie', 'Inter', cursive, sans-serif;
  font-size: 17px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
}
.bmc-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.footer-copy {
  font-size: 12px;
  color: var(--text-dim);
  width: 100%;
  text-align: center;
  margin-top: 12px;
}

/* ─────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────── */

@media (max-width: 900px) {
  .pillars {
    gap: 12px;
  }
  .pillar-plus, .pillar-equals {
    width: 100%;
    text-align: center;
    padding: 4px 0;
  }
  .pillar { max-width: 100%; min-width: 0; }
  .pillars { flex-direction: column; align-items: center; }
  .pillar { width: 100%; max-width: 400px; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }
  .hero-text { margin: 0 auto; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-phone { order: -1; }

  .feature-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .feature-reverse .feature-phone { order: -1; }
  .feature-desc { margin-left: auto; margin-right: auto; }
  .feature-list li { justify-content: center; }
  .natal-cards { max-width: 360px; margin: 28px auto 0; }
  .ennea-types-grid { max-width: 360px; margin: 28px auto 0; }
  .feature-phone { justify-content: center; }

  .zodiac-fan { gap: 0; }
  .zodiac-card { width: 140px; height: 186px; margin-right: -28px; }
}

@media (max-width: 600px) {
  :root { --nav-h: 56px; }

  .hero { padding-top: calc(var(--nav-h) + 40px); }
  .hero-headline { font-size: 38px; }

  .zodiac-fan { overflow-x: auto; justify-content: flex-start; padding-left: 20px; }
  .zodiac-card { width: 120px; height: 160px; margin-right: -24px; }

  .bq-circle { width: 320px; height: 320px; }
  .bq-text { font-size: 22px; }
  .bq-inner { padding: 40px 20px; }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-nav { justify-content: center; }

  .phone-mockup { width: 260px; }
  .phone-mockup.phone-sm { width: 240px; }

  .download-buttons { flex-direction: column; align-items: center; }
  .btn-store { width: 220px; justify-content: center; }

  .how-section, .zodiac-section { padding: 60px 0; }
  .feature-section { padding: 60px 0; }
  .big-quote-section { padding: 80px 0; }
  .download-section { padding: 80px 0; }
}
.fade-up { opacity: 1 !important; transform: translateY(0) !important; }
