/* ============================================================
 * LifeIndex landing page
 * Light, dawn-warm palette — no dark colors anywhere.
 * Tied to the existing app's morning-gradient feel:
 *   #efe4ff → #fde6d3 → #fff3e0  (lilac → peach → cream)
 * ============================================================ */

:root {
  --bg-cream:        #fefaf3;
  --bg-cream-soft:   #fff6e8;
  --bg-lilac-wash:   #f4eefb;
  --bg-mint-wash:    #ecf5ee;

  --hero-grad: linear-gradient(180deg, #efe4ff 0%, #fde6d3 50%, #fff3e0 100%);

  --accent:          #ff9800;   /* amber — CTAs, key moments */
  --accent-strong:   #e87f00;
  --gold:            #d4a574;   /* honey gold — headings, dividers */
  --gold-soft:       #e9c79a;
  --lavender:        #a78bfa;
  --lavender-soft:   #c8b8fc;

  --text:            #3d3548;   /* warm plum — never pure black */
  --text-muted:      #7a7088;
  --text-soft:       #9a90a8;
  --border-soft:     rgba(61, 53, 72, 0.08);
  --border-mid:      rgba(61, 53, 72, 0.14);

  --radius-md:       12px;
  --radius-lg:       18px;
  --shadow-sm:       0 1px 3px rgba(61, 53, 72, 0.04), 0 4px 12px rgba(61, 53, 72, 0.06);
  --shadow-md:       0 4px 14px rgba(61, 53, 72, 0.08), 0 12px 40px rgba(61, 53, 72, 0.06);
  --shadow-glow:     0 8px 28px rgba(255, 152, 0, 0.22);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-cream);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

/* ========== Nav ========== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  background: rgba(254, 250, 243, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.5px;
}
.brand-mark {
  font-size: 18px;
  color: var(--accent);
  filter: drop-shadow(0 1px 4px rgba(255, 152, 0, 0.4));
}
.brand-name { letter-spacing: 1.2px; }
.brand-name-aura {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.4px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-left: 2px;
}
.hero-eyebrow {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-strong);
  font-weight: 600;
  margin: 0 0 18px;
  opacity: 0.9;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.18s;
}
.nav-links a:hover { color: var(--accent-strong); }
.nav-cta {
  background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: var(--shadow-glow);
  transition: transform 0.18s, box-shadow 0.18s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 10px 32px rgba(255, 152, 0, 0.32); }


/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 88vh;
  padding: 64px 24px 120px;
  background: var(--hero-grad);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-mandala {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(680px, 90vw);
  height: min(680px, 90vw);
  transform: translate(-50%, -50%) rotate(-12deg);
  color: var(--gold);
  opacity: 0.18;
  pointer-events: none;
  animation: mandala-drift 60s linear infinite;
}
@keyframes mandala-drift {
  to { transform: translate(-50%, -50%) rotate(348deg); }
}

.dust {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.dust span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 152, 0, 0.55);
  filter: blur(0.4px);
  animation: dust-rise 18s linear infinite;
  opacity: 0;
}
.dust span:nth-child(1)  { left: 5%;  animation-delay: 0s;   }
.dust span:nth-child(2)  { left: 12%; animation-delay: 2s;   }
.dust span:nth-child(3)  { left: 22%; animation-delay: 5s;   }
.dust span:nth-child(4)  { left: 28%; animation-delay: 8s;   }
.dust span:nth-child(5)  { left: 35%; animation-delay: 11s;  }
.dust span:nth-child(6)  { left: 42%; animation-delay: 14s;  }
.dust span:nth-child(7)  { left: 48%; animation-delay: 1.5s; }
.dust span:nth-child(8)  { left: 55%; animation-delay: 4s;   }
.dust span:nth-child(9)  { left: 62%; animation-delay: 7s;   }
.dust span:nth-child(10) { left: 68%; animation-delay: 10s;  }
.dust span:nth-child(11) { left: 75%; animation-delay: 13s;  }
.dust span:nth-child(12) { left: 82%; animation-delay: 16s;  }
.dust span:nth-child(13) { left: 88%; animation-delay: 0.7s; }
.dust span:nth-child(14) { left: 92%; animation-delay: 3.4s; }
.dust span:nth-child(15) { left: 18%; animation-delay: 9s;   }
.dust span:nth-child(16) { left: 32%; animation-delay: 13s;  }
.dust span:nth-child(17) { left: 50%; animation-delay: 17s;  }
.dust span:nth-child(18) { left: 70%; animation-delay: 6s;   }
.dust span:nth-child(19) { left: 85%; animation-delay: 11s;  }
.dust span:nth-child(20) { left: 8%;  animation-delay: 15s;  }
.dust span:nth-child(21) { left: 25%; animation-delay: 0s;   }
.dust span:nth-child(22) { left: 60%; animation-delay: 2.5s; }
.dust span:nth-child(23) { left: 78%; animation-delay: 14.5s;}
.dust span:nth-child(24) { left: 95%; animation-delay: 8.5s; }
@keyframes dust-rise {
  0%   { bottom: -10px; opacity: 0; }
  10%  { opacity: 0.7; }
  90%  { opacity: 0.4; }
  100% { bottom: 110%; opacity: 0; }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  text-align: center;
}
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(40px, 7vw, 76px);
  line-height: 1.05;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent-strong);
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--text-muted);
  margin: 0 auto 36px;
  max-width: 580px;
  line-height: 1.6;
}
.hero-cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.cta-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
  color: #fff;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  box-shadow: var(--shadow-glow);
  transition: transform 0.18s, box-shadow 0.18s;
}
.cta-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(255, 152, 0, 0.35); }
.cta-large { padding: 16px 40px; font-size: 18px; }
.cta-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 16px;
  color: var(--text);
  border: 1px solid var(--border-mid);
  transition: border-color 0.18s, background 0.18s;
}
.cta-secondary:hover { border-color: var(--accent); background: rgba(255, 152, 0, 0.05); }

/* Honest single line under the hero CTAs — replaces the old
 * "Coming soon to App Store / Play Store" pretense. There's no
 * native app yet; the site IS the product. */
.hero-fineprint {
  font-size: 13px;
  color: var(--text-soft);
  font-style: italic;
  margin: 0;
}


/* ========== STATS STRIP ========== */
.stats-strip {
  background: linear-gradient(180deg, #fff3e0 0%, var(--bg-cream-soft) 100%);
  padding: 64px 24px 56px;
}
.stats-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 28px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent, #b45309);
  max-width: 1080px;
}
.stats-live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.55);
  animation: livePulse 1.8s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.55); }
  50%      { box-shadow: 0 0 0 8px rgba(16,185,129,0); }
}
.stats-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ============================================================
 * TRUST STRIP — 4 reasons readers feel safe handing over data.
 * Sits directly under the live stats so the trust signals land
 * while the user is still anchored on real numbers.
 * ============================================================ */
.trust-strip {
  background: linear-gradient(180deg, var(--bg-cream-soft) 0%, #fff8eb 100%);
  padding: 40px 24px;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.trust-strip-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 900px) {
  .trust-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}
@media (max-width: 480px) {
  .trust-strip-inner { grid-template-columns: 1fr; gap: 18px; }
  .trust-strip { padding: 30px 18px; }
}
.trust-pill {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.trust-pill-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  color: var(--accent-strong, #b45309);
}
.trust-pill-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}
.trust-pill-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.trust-pill-text strong {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
  line-height: 1.2;
}
.trust-pill-text span {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.45;
}
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; gap: 14px; }
  .stats-strip { padding: 48px 16px; }
}
.stat-card {
  text-align: center;
  padding: 24px 20px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
}
.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
  position: relative;
}
.stat-num::after {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  margin: 10px auto 0;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease 0.2s;
}
.stat-card.in-view .stat-num::after { transform: scaleX(1); }
.stat-desc {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.45;
}


/* ========== Section eyebrow heading ========== */
.section-eyebrow {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 600;
  color: var(--text);
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: -0.2px;
}


/* ========== PILLARS ========== */
.pillars {
  background: var(--bg-cream);
  padding: 96px 24px;
}
.pillars-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pillar {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pillar-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.10), rgba(167, 139, 250, 0.12));
  color: var(--accent-strong, #b45309);
}
.pillar-icon svg {
  width: 26px;
  height: 26px;
  display: block;
}
.pillar h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.25;
}
.pillar p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.55;
}


/* ========== APP PREVIEW ========== */
.preview {
  background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-lilac-wash) 100%);
  padding: 96px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.preview-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: -0.2px;
}
.preview-text p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 460px;
}
.preview-phones {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: center;
}
.phone {
  position: relative;
  background: linear-gradient(160deg, #2a2540 0%, #1a1730 100%);
  border-radius: 28px;
  padding: 8px;
  box-shadow: 0 16px 48px rgba(61, 53, 72, 0.18), 0 4px 12px rgba(61, 53, 72, 0.10);
  aspect-ratio: 9 / 19;
  transform-origin: center center;
}
.phone-1 { transform: translateY(20px) rotate(-4deg); }
.phone-2 { transform: translateY(-10px) rotate(0deg); z-index: 2; }
.phone-3 { transform: translateY(20px) rotate(4deg); }
.phone-screen {
  background: linear-gradient(160deg, #e8f5e9 0%, #f3e5f5 40%, #fff3e0 80%, #e3f2fd 100%);
  border-radius: 22px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
/* Cream variant — matches the in-app today's-breakdown popup */
.phone-screen-light {
  background: linear-gradient(180deg, #fef9ed 0%, #fcecd0 65%, #f9d8a8 100%);
}
.phone-body-today {
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 10px 10px 12px;
}
.phone-today-eyebrow {
  font-family: var(--font-sans, -apple-system, system-ui, sans-serif);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #5b4220;
  margin-top: 2px;
}
.phone-today-sub {
  font-family: var(--font-serif, "Cormorant Garamond", Georgia, serif);
  font-size: 9.5px;
  font-style: italic;
  color: #8a6d2e;
  margin-bottom: 2px;
}
.phone-bloom {
  width: 100%;
  max-width: 150px;
  aspect-ratio: 1;
  height: auto;
  display: block;
  margin: 0 auto;
}
.phone-today-band {
  font-family: var(--font-serif, "Cormorant Garamond", Georgia, serif);
  font-size: 13px;
  color: #2d1810;
  margin-top: 4px;
}
.phone-today-band em { font-style: italic; }
.phone-today-cta {
  font-size: 8.5px;
  font-style: italic;
  color: #a8854d;
  margin-top: 2px;
  letter-spacing: 0.02em;
}
.phone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
}
.phone-bars { color: var(--text-muted); letter-spacing: 1px; font-size: 8px; }
.phone-body {
  flex: 1;
  padding: 12px 14px;
  font-size: 11px;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.phone-greeting {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.phone-letter {
  font-size: 10px;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.4;
}
.phone-tile {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  padding: 10px;
}
.phone-tile-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.phone-tile-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 40px;
}
.phone-tile-bars span {
  flex: 1;
  background: linear-gradient(180deg, var(--accent), var(--gold));
  border-radius: 2px;
  min-height: 6px;
}
.phone-aura-msg {
  background: rgba(167, 139, 250, 0.18);
  border-radius: 10px;
  padding: 10px 12px;
}
.phone-aura-name {
  font-size: 9px;
  font-weight: 700;
  color: var(--lavender);
  margin-bottom: 4px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.phone-aura-text {
  font-size: 10px;
  color: var(--text);
  line-height: 1.45;
}
.phone-suggestions {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.phone-suggestions span {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: 7px 10px;
  font-size: 9px;
  color: var(--text);
}
.phone-section-title {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
}
.phone-nature-headline {
  font-family: var(--font-serif);
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-strong);
}
.phone-nature-text {
  font-size: 10px;
  color: var(--text);
  line-height: 1.5;
}


/* ========== TESTIMONIALS ========== */
.testimonials {
  background: linear-gradient(180deg, var(--bg-lilac-wash) 0%, var(--bg-cream-soft) 100%);
  padding: 96px 24px;
}
.testimonials-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testimonial {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: -8px;
  left: 16px;
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
}
.testimonial:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.testimonial blockquote {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 16px;
  font-style: italic;
}
.testimonial figcaption {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.testimonial figcaption span {
  color: var(--text-muted);
  font-weight: 400;
}


/* ========== HOW IT WORKS ========== */
.how-it-works {
  background: linear-gradient(180deg, var(--bg-cream-soft) 0%, var(--bg-mint-wash) 100%);
  padding: 96px 24px;
}
.steps {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.step {
  text-align: center;
  padding: 28px 24px;
}
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
  color: #fff;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-glow);
}
.step h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.step p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.55;
}


/* ========== FAQs ========== */
.faqs {
  background: var(--bg-cream);
  padding: 96px 24px;
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq[open] { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--accent);
  transition: transform 0.2s;
}
.faq[open] summary::after { content: '−'; transform: rotate(0deg); }
.faq p {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.65;
}
.faq p em { color: var(--accent-strong); font-style: italic; }


/* ========== FINAL CTA ========== */
.final-cta {
  text-align: center;
  padding: 96px 24px;
  background: linear-gradient(180deg, var(--bg-cream) 0%, #fde6d3 100%);
}
.final-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}
.final-cta p {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 32px;
  font-style: italic;
}
.final-cta p em {
  color: var(--accent-strong);
  font-style: italic;
  font-weight: 600;
}
.final-cta-fineprint {
  font-size: 13px !important;
  color: var(--text-soft) !important;
  margin-top: 18px !important;
  margin-bottom: 0 !important;
  font-style: normal !important;
  letter-spacing: 0.2px;
}


/* ========== Footer ========== */
.site-footer {
  background: #fff8eb;
  padding: 40px 24px 32px;
  border-top: 1px solid var(--border-soft);
}
.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 17px;
  color: var(--text);
}
.footer-tagline {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
  font-weight: 400;
  margin-left: 6px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 13.5px;
  color: var(--text-muted);
}
.footer-links a:hover { color: var(--accent-strong); }
.footer-meta {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  font-size: 12.5px;
  color: var(--text-soft);
}


/* ============================================================
 * RESPONSIVE
 * ============================================================ */

@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 100%; }
  .pillars-grid, .steps { grid-template-columns: 1fr; gap: 20px; }
  .preview { grid-template-columns: 1fr; gap: 32px; padding: 64px 24px; }
  .preview-phones { gap: 8px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 16px; text-align: center; }
  .footer-links, .footer-meta { justify-content: center; }
}

@media (max-width: 640px) {
  .site-nav { padding: 12px 16px; }
  .nav-links { display: none; }
  .nav-cta { padding: 8px 14px; font-size: 13px; }
  .brand-name { font-size: 16px; }

  .hero { min-height: auto; padding: 48px 18px 80px; }
  .hero-cta-row { flex-direction: column; gap: 10px; }
  .hero-cta-row a { width: 100%; }
  .hero-app-stores { flex-direction: column; gap: 8px; padding-top: 8px; }

  .stats-grid { grid-template-columns: 1fr; gap: 12px; }
  .stat-card { padding: 18px 14px; }
  .stat-desc { font-size: 11.5px; }

  .pillars, .testimonials, .how-it-works, .faqs, .final-cta { padding: 64px 18px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .preview { padding: 48px 18px; }

  .phone-1 { transform: translateY(0) rotate(-2deg) scale(0.85); }
  .phone-2 { transform: translateY(-8px) rotate(0deg) scale(0.92); }
  .phone-3 { transform: translateY(0) rotate(2deg) scale(0.85); }

  .footer-meta { flex-wrap: wrap; }
}


/* ============================================================
 * PRICING SECTION
 * ============================================================ */
.pricing-section {
  padding: 96px 24px 88px;
  background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-cream-soft) 100%);
  text-align: center;
}
.pricing-section .section-eyebrow {
  margin-bottom: 12px;
}
.pricing-section .section-sub {
  max-width: 540px;
  margin: 0 auto 56px;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.5;
}
.pricing-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  text-align: left;
}
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* Pre-launch lone-card layout — only the Founder's Pass is visible
   while monthly tiers are gated. Centers the single card cleanly so it
   doesn't sit awkwardly in column 4 of a 4-up grid. Remove this block
   and drop the .pricing-grid-founder-only class on the grid the day
   payments open. */
.pricing-grid-founder-only {
  display: flex;
  justify-content: center;
}
.pricing-grid-founder-only .price-card {
  flex: 0 1 420px;
  max-width: 420px;
  width: 100%;
}

.price-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(212, 165, 116, 0.18);
  border-radius: 18px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 24px rgba(60, 40, 0, 0.04);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(60, 40, 0, 0.08);
  border-color: rgba(255, 152, 0, 0.3);
}
.price-card-featured {
  border: 1.5px solid var(--accent);
  background: linear-gradient(180deg, #fff 0%, #fff8ef 100%);
  box-shadow: 0 14px 40px rgba(255, 152, 0, 0.18);
}
.price-card-founder {
  border: 1.5px solid var(--gold);
  background: linear-gradient(180deg, #fff 0%, #fdf4e3 100%);
}
.price-card-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--gold));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}
.price-card-badge-limited {
  background: linear-gradient(135deg, var(--gold) 0%, #b88546 100%);
}
.price-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}
.price-card-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}
.price-card-currency {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-muted);
}
.price-card-num {
  font-size: 36px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.5px;
}
.price-card-per {
  font-size: 14px;
  color: var(--text-muted);
  margin-left: 4px;
}
.price-card-annual {
  font-size: 12px;
  color: var(--accent-strong);
  margin-bottom: 18px;
  font-weight: 500;
}
.price-card:not(.price-card-featured):not(.price-card-founder) .price-card-annual {
  color: var(--text-muted);
}
.price-card-features {
  list-style: none;
  padding: 0;
  margin: 8px 0 24px;
  flex: 1;
}
.price-card-features li {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.5;
  padding: 7px 0 7px 22px;
  position: relative;
  border-top: 1px solid rgba(60, 40, 0, 0.05);
}
.price-card-features li:first-child { border-top: none; }
.price-card-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 7px;
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
}
.price-card-features li strong {
  color: var(--text);
  font-weight: 600;
}
.price-card-cta {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.price-card-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255, 152, 0, 0.3);
}
.price-card-cta-secondary {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(60, 40, 0, 0.15);
}
.price-card-cta-secondary:hover {
  border-color: var(--accent);
  background: rgba(255, 152, 0, 0.05);
  color: var(--accent-strong);
  box-shadow: none;
}
.price-card-cta-founder {
  background: linear-gradient(135deg, var(--gold) 0%, #b88546 100%);
}

.pricing-foot {
  max-width: 720px;
  margin: 48px auto 0;
  text-align: center;
}
.pricing-foot p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 6px 0;
  line-height: 1.5;
}
.pricing-foot-alt {
  font-size: 12px !important;
  color: var(--text-soft) !important;
  opacity: 0.85;
}

/* ============================================================
 * MOBILE APPS — COMING SOON
 * ============================================================ */
.mobile-apps-soon {
  padding: 96px 24px;
  background: var(--bg-cream);
  border-top: 1px solid rgba(212, 165, 116, 0.15);
  text-align: center;
}
.mobile-apps-inner {
  max-width: 720px;
  margin: 0 auto;
}
.mobile-apps-soon .section-eyebrow {
  margin-bottom: 16px;
}
.mobile-apps-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 14px;
  letter-spacing: 0.3px;
}
.mobile-apps-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 auto 36px;
  max-width: 520px;
}
.store-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.store-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1a1a1a;
  color: #fff;
  padding: 10px 22px 10px 18px;
  border-radius: 12px;
  min-width: 200px;
  opacity: 0.9;
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.store-badge:hover { opacity: 1; transform: translateY(-1px); }
.store-badge-icon {
  width: 28px;
  height: 28px;
  display: inline-block;
  flex-shrink: 0;
}
.store-badge-apple .store-badge-icon {
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M17.05 20.28c-.98.95-2.05.8-3.08.35-1.09-.46-2.09-.48-3.24 0-1.44.62-2.2.44-3.06-.35C2.79 15.25 3.51 7.59 9.05 7.31c1.35.07 2.29.74 3.08.8 1.18-.24 2.31-.93 3.57-.84 1.51.12 2.65.72 3.4 1.8-3.12 1.87-2.38 5.98.48 7.13-.57 1.5-1.31 2.99-2.54 4.09zM12.03 7.25c-.15-2.23 1.66-4.07 3.74-4.25.29 2.58-2.34 4.5-3.74 4.25z'/></svg>") center/contain no-repeat;
}
.store-badge-google .store-badge-icon {
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%2300d4ff' d='M3.6 2.5c-.4.4-.6 1-.6 1.7v15.6c0 .7.2 1.3.6 1.7l8.7-8.5L3.6 2.5z'/><path fill='%23ffd60a' d='M16.7 9.4l-2.8-1.6L4.6 16.5l9.3 5.5 2.8-1.6c1.3-.7 1.3-2.6 0-3.3l-2.8-1.6 2.8-3.3z'/><path fill='%23ff4444' d='M4.6 16.5L13.9 7.8 3.6 2.5l1 13.6.6.4z'/><path fill='%2300c853' d='M3.6 22 13.9 16.2l9.3 5.3c-.5.3-1.1.5-1.6.5L4.6 16.5 3.6 22z'/></svg>") center/contain no-repeat;
}
.store-badge-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.1;
}
.store-badge-line1 {
  font-size: 10px;
  letter-spacing: 0.4px;
  opacity: 0.75;
  text-transform: uppercase;
}
.store-badge-line2 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-top: 2px;
}
.store-badge-tag {
  margin-left: auto;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
}

.footer-meta-sep {
  color: var(--text-muted);
  opacity: 0.5;
}

/* ============================================================
 * HERO NEWSFLASH — small inline note under fineprint announcing
 * recent additions. Italic-serif so it reads like a brand whisper,
 * not a hard ad.
 * ============================================================ */
.hero-newsflash {
  margin: 18px auto 0;
  max-width: 540px;
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(212, 165, 70, 0.25);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text);
  line-height: 1.45;
}
.hero-newsflash-dot {
  color: var(--accent);
  font-size: 14px;
  line-height: 1.45;
  flex-shrink: 0;
}
.hero-newsflash-text strong {
  color: var(--text);
  font-weight: 700;
}
@media (max-width: 480px) {
  .hero-newsflash {
    border-radius: 18px;
    font-size: 12px;
    padding: 10px 14px;
  }
}


/* ============================================================
 * FEATURES — what Aura reads for you (4 cards, breadth)
 * Sits between stats-strip and pillars. Cards have an icon, a
 * title, a 2-3 sentence pitch, and a tier-tag at the bottom.
 * ============================================================ */
.features {
  background: linear-gradient(180deg, var(--bg-cream-soft) 0%, var(--bg-cream) 100%);
  padding: 96px 24px;
}
.features-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-card {
  position: relative;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 28px 22px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 165, 70, 0.45);
}
.feature-card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.10), rgba(167, 139, 250, 0.12));
  color: var(--accent-strong, #b45309);
}
.feature-card-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}
.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 10px;
  line-height: 1.3;
}
.feature-card h3 em {
  font-style: italic;
  color: var(--accent);
}
.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0 0 16px;
  flex: 1;
}
.feature-card-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent-strong, #c8842b);
  background: rgba(245, 158, 11, 0.08);
  padding: 5px 10px;
  border-radius: 999px;
  align-self: flex-start;
}
.feature-card-new {
  border-color: rgba(212, 165, 70, 0.45);
  background: linear-gradient(180deg, rgba(255, 248, 235, 0.95), rgba(255, 255, 255, 0.85));
}
.feature-card-badge {
  position: absolute;
  top: -10px;
  right: 16px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  padding: 4px 12px;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}
@media (max-width: 1080px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; gap: 16px; }
  .features { padding: 72px 16px; }
  .feature-card { padding: 24px 20px 22px; }
}


/* ============================================================
 * ACCESSIBILITY: respect reduced motion
 * ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .hero-mandala { animation: none; }
  .dust { display: none; }
  * { scroll-behavior: auto !important; transition: none !important; }
}
