/* ===== CSS Variables ===== */
:root {
  --bg: #14102a;
  --bg-2: #1b1638;
  --card: #1f1a3d;
  --card-2: #251f48;
  --line: rgba(233, 223, 245, 0.08);
  --line-strong: rgba(233, 223, 245, 0.16);
  --text: #e9dff5;
  --text-dim: #a89ec4;
  --text-soft: #cbc1e3;
  --gold: #e6c860;
  --gold-soft: rgba(230, 200, 96, 0.14);
  --pink: #e96b9a;
  --green: #4ade80;
  --violet: #9b6cff;
  --violet-2: #7a4fe6;
}

/* ===== Reset ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Starry background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(1px 1px at 20% 30%, rgba(233, 223, 245, 0.5) 50%, transparent 100%),
    radial-gradient(1px 1px at 70% 80%, rgba(230, 200, 96, 0.6) 50%, transparent 100%),
    radial-gradient(1px 1px at 40% 70%, rgba(233, 223, 245, 0.4) 50%, transparent 100%),
    radial-gradient(1px 1px at 85% 20%, rgba(233, 223, 245, 0.5) 50%, transparent 100%),
    radial-gradient(1px 1px at 10% 85%, rgba(230, 200, 96, 0.5) 50%, transparent 100%),
    radial-gradient(1px 1px at 55% 15%, rgba(233, 223, 245, 0.4) 50%, transparent 100%),
    radial-gradient(1px 1px at 90% 55%, rgba(233, 223, 245, 0.5) 50%, transparent 100%),
    radial-gradient(1px 1px at 30% 50%, rgba(233, 223, 245, 0.3) 50%, transparent 100%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
}

/* ===== Global utilities ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.serif {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

h2 {
  font-family: 'Newsreader', Georgia, serif;
  font-size: clamp(36px, 4.2vw, 56px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

h2 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

/* ===== Accessibility ===== */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--gold);
  color: #14102a;
  padding: 8px 16px;
  text-decoration: none;
  font-weight: 600;
  z-index: 100;
  border-radius: 0 0 8px 0;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

/* ===== Animations ===== */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-delay-80  { transition-delay: 80ms; }
.animate-delay-100 { transition-delay: 100ms; }
.animate-delay-150 { transition-delay: 150ms; }
.animate-delay-160 { transition-delay: 160ms; }
.animate-delay-240 { transition-delay: 240ms; }
.animate-delay-300 { transition-delay: 300ms; }
.animate-delay-400 { transition-delay: 400ms; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .animate-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 100px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  min-height: 44px;
}

.btn-primary {
  background: var(--gold);
  color: #14102a;
}

.btn-primary:hover {
  background: #f0d570;
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-strong);
}

.btn-ghost:hover {
  background: rgba(233, 223, 245, 0.05);
  border-color: rgba(233, 223, 245, 0.3);
}

/* ===== Logo ===== */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Newsreader', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  text-decoration: none;
}

.logo svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* ===== Nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(20, 16, 42, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-link {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--text);
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  padding: 4px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

/* Mobile nav overlay */
.nav-links.nav-open {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0;
  background: rgba(20, 16, 42, 0.97);
  z-index: 40;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.nav-links.nav-open .nav-link {
  font-size: 24px;
  font-family: 'Newsreader', Georgia, serif;
}

/* ===== Badge ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--gold-soft);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
  flex-shrink: 0;
}

/* ===== Section head ===== */
.section-head {
  max-width: 720px;
  margin-bottom: 64px;
}

.section-head-centered {
  text-align: center;
  margin: 0 auto 64px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.eyebrow-centered {
  justify-content: center;
}

.section-lead {
  font-size: 17px;
  color: var(--text-soft);
  line-height: 1.6;
}

/* ===== Hero ===== */
.hero {
  padding: 80px 0 100px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-title {
  font-size: clamp(48px, 6.4vw, 84px);
  margin-bottom: 24px;
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.hero-sub {
  font-size: 19px;
  color: var(--text-soft);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-meta {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
}

.hero-meta-text {
  font-size: 13px;
  color: var(--text-dim);
}

.hero-meta-text strong {
  color: var(--text);
  font-weight: 600;
}

/* ===== Phone Stack (Hero) ===== */
.phone-stack {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 640px;
}

.phone {
  position: absolute;
  width: 280px;
  height: 580px;
  border-radius: 42px;
  background: linear-gradient(180deg, #1b1638 0%, #14102a 100%);
  border: 1px solid var(--line-strong);
  padding: 24px 22px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(233, 223, 245, 0.06);
}

.phone::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 6px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 100px;
}

.phone-back {
  transform: rotate(-8deg) translateX(-30%);
  opacity: 0.85;
  z-index: 1;
}

.phone-front {
  z-index: 2;
  transform: rotate(4deg) translateX(20%);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.6),
    0 0 0 1px var(--line-strong),
    inset 0 1px 0 rgba(233, 223, 245, 0.06);
}

.phone-content {
  padding-top: 18px;
}

.phone-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.phone-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Newsreader', Georgia, serif;
  font-size: 14px;
  color: var(--gold);
}

.phone-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--card-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--text);
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 16px;
}

.chat-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.chat-name {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 15px;
}

.chat-status {
  font-size: 9px;
  color: var(--text-dim);
}

.msg-ai {
  font-size: 11px;
  line-height: 1.5;
  padding: 10px 12px;
  border-radius: 14px;
  margin-bottom: 8px;
  max-width: 85%;
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--text);
}

.msg-user {
  font-size: 11px;
  line-height: 1.5;
  padding: 10px 12px;
  border-radius: 14px;
  border-bottom-right-radius: 6px;
  margin-bottom: 8px;
  max-width: 85%;
  background: linear-gradient(135deg, var(--violet) 0%, var(--violet-2) 100%);
  color: white;
  margin-left: auto;
}

/* Natal chart phone content */
.ph-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--gold-soft);
  border-radius: 100px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.ph-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.ph-title {
  font-size: 32px;
  line-height: 1.05;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  color: var(--text);
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 500;
}

.ph-sub {
  font-size: 11px;
  color: var(--text-dim);
  margin-bottom: 20px;
  line-height: 1.5;
}

.ph-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.ph-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 10px;
  text-align: center;
}

.ph-icon {
  width: 32px;
  height: 32px;
  background: var(--gold-soft);
  border-radius: 50%;
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 14px;
}

.ph-card-title {
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 2px;
}

.ph-card-meta {
  font-size: 9px;
  color: var(--text-dim);
}

/* ===== ProofBar ===== */
.proof {
  padding: 40px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.proof-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
}

.proof-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.proof-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.proof-num {
  font-size: 28px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  font-family: 'Newsreader', Georgia, serif;
}

.proof-stat-label {
  font-size: 12px;
  color: var(--text-dim);
}

/* ===== Features ===== */
.features-section {
  padding: 120px 0;
}

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

.feature-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 32px 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
}

.feature-card-span2 {
  grid-column: span 2;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.feature-icon-gold   { background: var(--gold-soft); color: var(--gold); }
.feature-icon-pink   { background: rgba(233, 107, 154, 0.14); color: var(--pink); }
.feature-icon-violet { background: rgba(155, 108, 255, 0.18); color: var(--violet); }

.feature-title {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 24px;
  margin-bottom: 12px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text);
}

.feature-text {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.55;
}

/* ===== Showcase ===== */
.showcase-section {
  padding: 0 0 120px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.showcase-grid-reverse .showcase-text {
  order: 2;
}

.showcase-text h2 {
  margin-bottom: 24px;
}

.showcase-text p {
  color: var(--text-soft);
  font-size: 17px;
  margin-bottom: 24px;
}

.showcase-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.showcase-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.check-list {
  list-style: none;
  margin-top: 28px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 15px;
  color: var(--text-soft);
}

.check-item:first-child {
  border-top: none;
}

.check-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

/* Showcase phone mockup */
.showcase-phone-wrap {
  display: flex;
  justify-content: center;
}

.showcase-phone {
  width: 320px;
  height: 660px;
  border-radius: 46px;
  background: linear-gradient(180deg, #1b1638 0%, #14102a 100%);
  border: 1px solid var(--line-strong);
  padding: 28px 24px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(233, 223, 245, 0.06);
  position: relative;
}

.showcase-phone::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 7px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 100px;
}

.showcase-phone-content {
  padding-top: 18px;
}

/* Calendar phone specifics */
.cal-title {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 28px;
  line-height: 1.05;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.cal-sub {
  font-size: 11px;
  color: var(--text-dim);
  margin-bottom: 16px;
  line-height: 1.5;
}

.cal-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.cal-tab-active {
  background: var(--gold);
  color: #14102a;
  padding: 5px 10px;
  border-radius: 100px;
  font-size: 9px;
  font-weight: 600;
}

.cal-tab-inactive {
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--text-soft);
  padding: 5px 10px;
  border-radius: 100px;
  font-size: 9px;
}

.cal-month {
  text-align: center;
  font-family: 'Newsreader', Georgia, serif;
  font-size: 14px;
  margin-bottom: 14px;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  font-size: 8px;
  text-align: center;
}

.cal-day-header { color: var(--text-dim); }

.cal-num { padding: 4px 0; }

.cal-num-active {
  padding: 4px 0;
  background: var(--gold-soft);
  border-radius: 6px;
  color: var(--gold);
  font-weight: 600;
}

.cal-num-dim {
  padding: 4px 0;
  color: var(--text-dim);
}

.cal-dots {
  display: flex;
  gap: 1px;
  justify-content: center;
  margin-top: 2px;
}

.cal-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  display: inline-block;
}

/* ===== Testimonials ===== */
.testimonials-section {
  padding: 0 0 120px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
}

.testimonial-stars {
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  gap: 2px;
}

.testimonial-quote {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-size: 19px;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -0.005em;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--card-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
  color: var(--text);
}

.testimonial-name {
  font-size: 14px;
  font-weight: 600;
}

.testimonial-meta {
  font-size: 12px;
  color: var(--text-dim);
}

/* ===== Pricing ===== */
.pricing-section {
  padding: 0 0 120px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}

.price-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 40px 36px;
  position: relative;
}

.price-card-featured {
  background: linear-gradient(180deg, rgba(230, 200, 96, 0.08) 0%, var(--card) 60%);
  border: 1px solid rgba(230, 200, 96, 0.35);
}

.price-tag {
  position: absolute;
  top: -12px;
  right: 32px;
  background: var(--gold);
  color: #14102a;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-name {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 26px;
  margin-bottom: 8px;
  color: var(--text);
}

.price-desc {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 24px;
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.price-num {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 56px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
}

.price-per {
  color: var(--text-dim);
  font-size: 14px;
}

.price-features {
  list-style: none;
  margin-bottom: 28px;
}

.price-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-soft);
}

.price-feature-item svg {
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 3px;
}

.price-cta {
  width: 100%;
  justify-content: center;
}

/* ===== FAQ ===== */
.faq-section {
  padding: 0 0 120px;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-top: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

details.faq-item > summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  cursor: pointer;
  font-family: 'Newsreader', Georgia, serif;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--text);
  gap: 16px;
  user-select: none;
}

details.faq-item > summary::-webkit-details-marker { display: none; }

details.faq-item > summary::after {
  content: '+';
  color: var(--gold);
  font-size: 24px;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.3s;
  font-family: system-ui, sans-serif;
  font-weight: 300;
}

details.faq-item[open] > summary::after {
  transform: rotate(45deg);
}

details.faq-item > summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 4px;
}

.faq-answer {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.65;
  padding-bottom: 28px;
}

/* ===== CTA Banner ===== */
.cta-section {
  padding: 0 0 120px;
}

.cta-banner {
  background:
    radial-gradient(ellipse at top right, rgba(230, 200, 96, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(155, 108, 255, 0.18) 0%, transparent 50%),
    var(--card);
  border: 1px solid var(--line-strong);
  border-radius: 32px;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before,
.cta-banner::after {
  content: '✦';
  position: absolute;
  color: var(--gold);
  font-size: 24px;
}

.cta-banner::before {
  top: 30px;
  left: 60px;
  opacity: 0.3;
}

.cta-banner::after {
  bottom: 40px;
  right: 80px;
  font-size: 32px;
  opacity: 0.2;
}

.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 20px;
  justify-content: center;
}

.cta-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.cta-banner h2 {
  max-width: 720px;
  margin: 0 auto 20px;
}

.cta-lead {
  color: var(--text-soft);
  font-size: 17px;
  max-width: 540px;
  margin: 0 auto 36px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  border-radius: 14px;
  background: rgba(233, 223, 245, 0.06);
  border: 1px solid var(--line-strong);
  text-decoration: none;
  color: var(--text);
  transition: all 0.2s;
  min-height: 44px;
}

.store-btn:hover {
  background: rgba(233, 223, 245, 0.1);
}

.store-btn-small {
  font-size: 10px;
  color: var(--text-dim);
  line-height: 1;
  margin-bottom: 2px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.store-btn-big {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.1;
}

/* ===== Footer ===== */
.footer {
  border-top: 1px solid var(--line);
  padding: 60px 0 40px;
  color: var(--text-dim);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-about {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-dim);
  max-width: 320px;
  margin-top: 16px;
}

.footer-col-title {
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}

.footer-col-list {
  list-style: none;
}

.footer-col-list li {
  padding: 6px 0;
  font-size: 14px;
}

.footer-link {
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--text);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 16px;
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .container { padding: 0 20px; }

  /* Nav */
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero */
  .hero { padding: 50px 0 70px; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Phone stack */
  .phone-stack { height: 540px; }
  .phone { width: 240px; height: 500px; }

  /* ProofBar */
  .proof-stats { gap: 24px; }

  /* Features */
  .features-section { padding: 80px 0; }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .feature-card-span2 { grid-column: auto; }

  /* Showcase */
  .showcase-section { padding: 0 0 80px; }
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .showcase-grid-reverse .showcase-text { order: 1; }
  .showcase-phone { width: 280px; height: 580px; }

  /* Testimonials */
  .testimonials-section { padding: 0 0 80px; }
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Pricing */
  .pricing-section { padding: 0 0 80px; }
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* FAQ */
  .faq-section { padding: 0 0 80px; }

  /* CTA */
  .cta-section { padding: 0 0 80px; }
  .cta-banner { padding: 50px 24px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ===== Article / Content pages ===== */
.article-shell {
  padding: 56px 0 100px;
}

.article-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.breadcrumb {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.breadcrumb a {
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--text);
}

.breadcrumb span[aria-hidden] {
  color: var(--line-strong);
}

.breadcrumb .breadcrumb-current {
  color: var(--text-soft);
}

.article-header {
  margin-bottom: 48px;
}

.article-glyph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: var(--gold-soft);
  color: var(--gold);
  margin-bottom: 24px;
  box-shadow: 0 0 24px rgba(230, 200, 96, 0.12), inset 0 1px 0 rgba(230, 200, 96, 0.1);
}

.article-glyph svg,
.article-glyph img {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 0 6px rgba(230, 200, 96, 0.5));
}

/* Compat pages: two sign glyphs side by side */
.article-glyph svg + svg,
.article-glyph img + img {
  margin-left: 4px;
}

.article-glyph:has(svg + svg),
.article-glyph:has(img + img) {
  width: 88px;
  gap: 2px;
}

.article-glyph:has(svg + svg) svg,
.article-glyph:has(img + img) img {
  width: 28px;
  height: 28px;
}

.article-title {
  font-family: 'Newsreader', Georgia, serif;
  font-size: clamp(38px, 5.2vw, 60px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.article-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.article-lead {
  font-size: 19px;
  color: var(--text-soft);
  line-height: 1.6;
}

/* Meta strip (element / mode / planet / dates) */
.sign-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.sign-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 18px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  min-width: 96px;
}

.sign-meta-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 700;
}

.sign-meta-value {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 17px;
  color: var(--text);
}

/* Prose body */
.article-body h2 {
  font-size: clamp(26px, 3vw, 36px);
  margin-top: 52px;
  margin-bottom: 18px;
}

.article-body h3 {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-top: 32px;
  margin-bottom: 12px;
}

.article-body p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-soft);
  margin-bottom: 20px;
}

.article-body p:first-of-type {
  font-size: 18px;
}

.article-body a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-soft);
  transition: border-color 0.2s;
}

.article-body a:hover {
  border-bottom-color: var(--gold);
}

.article-body a.btn-primary {
  color: #14102a;
  border-bottom: none;
}

.article-body strong {
  color: var(--text);
  font-weight: 600;
}

.article-body em {
  color: var(--text);
}

.article-divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 56px 0;
}

/* Lists inside prose body (legal pages, guides) */
.article-body ul {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}

.article-body ul li {
  position: relative;
  padding-left: 22px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-soft);
  margin-bottom: 10px;
}

.article-body ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-size: 13px;
}

/* Legal pages: smaller lead, updated-date stamp */
.legal-updated {
  font-size: 14px;
  color: var(--text-dim);
  margin-top: 8px;
}

.article-body h2 + p,
.article-body h3 + p {
  margin-top: 0;
}

/* FAQ inside article reuses .faq-item; constrain width */
.article-faq {
  margin-top: 16px;
}

/* Related links */
.related {
  margin-top: 56px;
}

.related-title {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}

.related-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.2s;
}

.related-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.related-card-glyph {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--gold-soft);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(230, 200, 96, 0.1);
}

.related-card-glyph svg,
.related-card-glyph img {
  width: 22px;
  height: 22px;
  filter: drop-shadow(0 0 3px rgba(230, 200, 96, 0.4));
}

.related-card-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.related-card-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 700;
}

.related-card-name {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 16px;
}

/* Inline app CTA inside article */
.article-cta {
  margin-top: 56px;
  background:
    radial-gradient(ellipse at top right, rgba(230, 200, 96, 0.16) 0%, transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(155, 108, 255, 0.16) 0%, transparent 55%),
    var(--card);
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  padding: 40px 36px;
  text-align: center;
}

.article-cta h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin-top: 0;
  margin-bottom: 14px;
}

.article-cta p {
  color: var(--text-soft);
  font-size: 16px;
  max-width: 480px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

/* Hub / index listing pages */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.hub-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.2s;
}

.hub-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
}

.hub-card-glyph {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--gold-soft);
  color: var(--gold);
  margin: 0 auto 12px;
  box-shadow: 0 0 16px rgba(230, 200, 96, 0.1), inset 0 1px 0 rgba(230, 200, 96, 0.08);
}

.hub-card-glyph svg,
.hub-card-glyph img {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 0 4px rgba(230, 200, 96, 0.45));
}

.hub-card-name {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 21px;
}

.hub-card-meta {
  font-size: 13px;
  color: var(--text-dim);
}

@media (max-width: 960px) {
  .article-shell { padding: 36px 0 70px; }
  .article-body p { font-size: 16px; }
  .article-cta { padding: 32px 22px; }
}
