/*
 * ═══════════════════════════════════════════════════════════════════════════
 *  LUNARA — UNIFIED CSS
 *  All 6 pages merged into one file for Laravel integration.
 *
 *  Usage in layouts/app.blade.php:
 *    <link rel="preconnect" href="https://fonts.googleapis.com">
 *    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
 *    <link href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&family=Playfair+Display:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=Jost:wght@300;400;500&display=swap" rel="stylesheet">
 *    <link rel="stylesheet" href="{{ asset('css/lunara.css') }}">
 *
 *  Each page blade template needs a body class:
 *    Home:     <body class="page-home">
 *    Features: <body class="page-features">
 *    Pricing:  <body class="page-pricing">
 *    About:    <body class="page-about">
 *    Journal:  <body class="page-journal">
 *    Download: <body class="page-download">
 *
 *  Structure:
 *    1. Reset
 *    2. Unified :root variables (all tokens merged)
 *    3. Global shared styles (nav, footer, buttons, reveal animations)
 *    4. Shared utility classes
 *    5. @keyframes (deduplicated — all 28 animations)
 *    6. Page-specific styles (scoped by body.page-X)
 * ═══════════════════════════════════════════════════════════════════════════
 */


/* ═══════════════════════════════════════════════════════════════
   1. RESET
═══════════════════════════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


/* ═══════════════════════════════════════════════════════════════
   2. UNIFIED :ROOT DESIGN TOKENS
   All variables from all 6 pages merged into one master token set.
═══════════════════════════════════════════════════════════════ */
:root {
  /* ── Core palette ── */
  --cream:         #fdf9f4;
  --cream-warm:    #f8f1e8;
  --cream-warm2:   #f8f2e9;
  --paper:         #f4ede2;
  --ivory:         #fdfbf8;
  --bg:            #f8f4ef;
  --bg-warm:       #f3ede5;

  /* ── Ink / dark tones ── */
  --ink:           #1c1624;
  --ink-dark:      #18121f;
  --ink-mid:       #3d3250;
  --ink-soft:      #7b6e8f;
  --dusk:          #2e2535;
  --dusk-mid:      #5a4e6b;
  --dusk-light:    #8e82a0;

  /* ── Lavender family ── */
  --lavender:       #c8bfe7;
  --lavender-light: #ede9f8;
  --lav:            #c8bfe7;
  --lav-deep:       #8b7cba;
  --violet:         #c4b8de;
  --violet-deep:    #8b7cba;

  /* ── Peach / rose family ── */
  --peach:          #f0c9b8;
  --peach-light:    #fce8de;
  --peach-deep:     #c98472;
  --rose:           #e8c4c0;
  --rose-deep:      #c9837a;

  /* ── Neutrals ── */
  --gold:           #d9bc94;
  --gold-light:     #efe2cc;
  --gold-light2:    #ede0cc;
  --sage:           #b8cfc4;
  --mint:           #c3e0d4;
  --blue-soft:      #bdd5ea;

  /* ── Home-page specific text tokens ── */
  --text-dark:   #2a2230;
  --text-mid:    #6b5f7a;
  --text-light:  #a89bb8;

  /* ── Glass effects ── */
  --glass-bg:     rgba(255,255,255,0.55);
  --glass-border: rgba(255,255,255,0.75);
  --glass:        rgba(255,255,255,0.52);
  --glass-b:      rgba(255,255,255,0.72);

  /* ── Shadows ── */
  --shadow-soft:  0 8px 40px rgba(140,120,180,0.10);
  --shadow-card:  0 20px 60px rgba(140,120,180,0.14);
  --sh-soft:      0 8px 48px rgba(46,37,53,0.08);
  --sh-card:      0 24px 72px rgba(46,37,53,0.13);
  --sh-float:     0 40px 100px rgba(46,37,53,0.18);
  --sh-glow:      0 0 80px rgba(139,124,186,0.30);

  /* ── Border radii ── */
  --radius-card:  28px;
  --radius-pill:  100px;
  --r-card:       28px;
  --r-pill:       999px;

  /* ── Feature accent colors (features page) ── */
  --sleep-from:   #b8aee0;
  --sleep-to:     #8e7fd4;
  --feed-from:    #f5c9b3;
  --feed-to:      #e8956e;
  --growth-from:  #bdd5ea;
  --growth-to:    #7ab0d4;
  --mile-from:    #d4c9f0;
  --mile-to:      #a090d0;
  --health-from:  #c3e0d4;
  --health-to:    #7abfa5;
  --ai-from:      #f0d4e8;
  --ai-to:        #d4a8c7;
}


/* ═══════════════════════════════════════════════════════════════
   3. GLOBAL BASE STYLES
═══════════════════════════════════════════════════════════════ */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Default light body (home, features, journal) */
body.page-home,
body.page-features,
body.page-journal {
  background: var(--cream);
  color: var(--text-dark);
}

/* Pricing uses warm bg */
body.page-pricing {
  background: var(--bg);
  color: var(--dusk);
  cursor: none;
}

/* About opens dark */
body.page-about {
  background: var(--ink);
  color: var(--cream);
}

/* Download is full dark */
body.page-download {
  background: var(--ink-dark);
  color: var(--cream);
}


/* ═══════════════════════════════════════════════════════════════
   4. SHARED COMPONENTS — NAV
═══════════════════════════════════════════════════════════════ */

/* ── Light nav (home, features, journal) ── */
body.page-home nav,
body.page-features nav,
body.page-journal nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 48px;
  background: rgba(253,249,244,0.72);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  border-bottom: 1px solid rgba(200,191,231,0.18);
  transition: all 0.4s ease;
}
body.page-home nav.scrolled,
body.page-features nav.scrolled,
body.page-journal nav.scrolled {
  padding: 16px 48px;
  background: rgba(253,249,244,0.90);
  box-shadow: 0 4px 30px rgba(140,120,180,0.08);
}
body.page-home .hero-eyebrow{
  display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-mid);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 32px;
    animation: fade-up 0.9s ease both;
    animation-delay: 0.1s;
}

/* ── Dark nav (pricing, about, download) ── */
body.page-pricing nav,
body.page-about nav,
body.page-download nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 56px;
  transition: all 0.5s ease;
}
body.page-pricing nav.scrolled {
  padding: 16px 56px;
  background: rgba(248,244,239,0.90);
  backdrop-filter: blur(28px) saturate(1.6);
  -webkit-backdrop-filter: blur(28px) saturate(1.6);
  border-bottom: 1px solid rgba(196,184,222,0.15);
  box-shadow: 0 2px 40px rgba(46,37,53,0.07);
}
body.page-about nav.scrolled {
  padding: 16px 56px;
  background: rgba(28,22,36,0.80);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-bottom: 1px solid rgba(200,191,231,0.10);
}
body.page-about nav.light-nav {
  background: rgba(253,249,244,0.80);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-bottom: 1px solid rgba(200,191,231,0.18);
}
body.page-about nav.light-nav .logo        { color: var(--ink); }
body.page-about nav.light-nav .nav-links a { color: var(--ink-soft); }
body.page-about nav.light-nav .nav-btn     { background: var(--ink); color: var(--ivory); }
body.page-download nav.scrolled {
  padding: 16px 56px;
  background: rgba(24,18,31,0.85);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-bottom: 1px solid rgba(200,191,231,0.10);
  box-shadow: 0 2px 40px rgba(0,0,0,0.25);
}

/* ── Logo shared ── */
.logo,
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 400;
  text-decoration: none;
  display: flex; align-items: center; gap: 10px;
  letter-spacing: 0.02em;
  transition: color 0.4s;
}
body.page-home .nav-logo,
body.page-features .nav-logo { font-size: 26px; color: var(--text-dark); }
body.page-pricing .logo      { color: var(--dusk); }
body.page-about .logo        { color: var(--cream); }
body.page-download .logo     { color: var(--cream); }
body.page-journal .logo      { color: var(--ink); }

.logo-gem,
.nav-logo-dot {
 width: 8px;
      height: 8px;
      border-radius: 2px;
      background: linear-gradient(135deg, var(--lav-deep), var(--peach-deep));
      transform: rotate(45deg);
      animation: gem-spin 8s ease-in-out infinite;
}
.logo-gem     { border-radius: 2px; transform: rotate(45deg); animation: gem-pulse 3.5s ease-in-out infinite; }

/* ── Nav links shared ── */
.nav-links {
  display: flex; align-items: center; gap: 36px; list-style: none;
}
.nav-links a {
  font-size: 14px; font-weight: 400;
  text-decoration: none; letter-spacing: 0.01em;
  transition: color 0.3s ease; position: relative;
}
body.page-home .nav-links a,
body.page-features .nav-links a,
body.page-journal .nav-links a { color: var(--text-mid); }
body.page-pricing .nav-links a,
body.page-about .nav-links a   { color: var(--dusk-mid); }
body.page-download .nav-links a { color: rgba(253,249,244,0.65); }

.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -3px;
  width: 0; height: 1px;
  background: linear-gradient(90deg, var(--lav-deep), var(--peach-deep));
  transition: width 0.35s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

body.page-home .nav-links a:hover,
body.page-features .nav-links a:hover,
body.page-journal .nav-links a:hover { color: var(--text-dark); }
body.page-pricing .nav-links a:hover,
body.page-pricing .nav-links a.active { color: var(--dusk); }
body.page-about .nav-links a.active,
body.page-about .nav-links a:hover { color: var(--cream); }
body.page-download .nav-links a:hover,
body.page-download .nav-links a.active { color: var(--cream); }

/* ── Hamburger button (desktop: hidden; mobile: visible) ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none; border: none;
  cursor: pointer; padding: 8px;
  border-radius: 10px;
  position: relative; z-index: 301;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1),
              opacity 0.25s ease,
              width 0.3s ease;
  transform-origin: center;
}
/* X shape when active */
.nav-hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Span colours — light pages */
body.page-home .nav-hamburger span,
body.page-features .nav-hamburger span,
body.page-journal .nav-hamburger span,
body.page-pricing .nav-hamburger span { background: var(--text-dark, #1e1928); }

/* Span colours — dark pages */
body.page-about .nav-hamburger span,
body.page-download .nav-hamburger span { background: var(--cream, #fdf9f4); }

/* ── Nav CTA buttons ── */
.nav-cta,
.nav-btn {
  border: none; cursor: pointer; letter-spacing: 0.02em;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none; display: inline-block;
  border-radius: var(--r-pill);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s;
}
.nav-cta {
  background: linear-gradient(135deg, #b8aee0 0%, #d4a8c7 100%);
  color: white; padding: 11px 26px; font-size: 14px; font-weight: 500;
  box-shadow: 0 4px 20px rgba(184,174,224,0.40);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(184,174,224,0.55); opacity: 0.92; }

body.page-pricing .nav-btn {
  background: var(--dusk); color: var(--ivory);
  padding: 11px 28px; font-size: 13px; font-weight: 400; letter-spacing: 0.05em;
  box-shadow: 0 4px 20px rgba(46,37,53,0.20);
}
body.page-pricing .nav-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(46,37,53,0.28); background: var(--dusk-mid); }

body.page-about .nav-btn {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.20);
  color: var(--cream); padding: 10px 26px;
  font-size: 13px; font-weight: 400; letter-spacing: 0.05em;
  backdrop-filter: blur(8px);
}
body.page-about .nav-btn:hover { background: rgba(255,255,255,0.22); transform: translateY(-2px); }

body.page-download .nav-btn {
  background: linear-gradient(135deg, var(--lav-deep), var(--peach-deep));
  color: white; padding: 11px 26px;
  font-size: 13px; font-weight: 400; letter-spacing: 0.04em;
  box-shadow: 0 4px 20px rgba(139,124,186,0.40);
}
body.page-download .nav-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(139,124,186,0.55); }

body.page-journal .nav-btn {
  background: var(--ink); color: var(--cream);
  padding: 10px 24px; font-size: 13px; font-weight: 400; letter-spacing: 0.04em;
  box-shadow: 0 4px 16px rgba(30,25,40,0.18);
}
body.page-journal .nav-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(30,25,40,0.24); opacity: 0.88; }

/* ══════════════════════════════════════════════════════════════
   MOBILE NAV — Premium right-slide glass panel + blur overlay
══════════════════════════════════════════════════════════════ */

/* ── Hamburger button micro-interactions ── */
.nav-hamburger {
  transition: background 0.3s ease, transform 0.2s cubic-bezier(0.16,1,0.3,1);
}
.nav-hamburger:hover  { background: rgba(120,110,150,0.10); }
.nav-hamburger:active { transform: scale(0.88); background: rgba(120,110,150,0.16); }

/* ── Full-screen blur overlay ── */
.nav-overlay {
  position: fixed; inset: 0;
  z-index: 280;
  background: rgba(10,6,18,0.48);
  backdrop-filter: blur(6px) saturate(0.85);
  -webkit-backdrop-filter: blur(6px) saturate(0.85);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.48s cubic-bezier(0.4,0,0.2,1),
              visibility 0s linear 0.48s;
}
.nav-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.48s cubic-bezier(0.4,0,0.2,1),
              visibility 0s linear 0s;
}

/* ── Glass drawer panel — slides from right ── */
.nav-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(88vw, 360px);
  z-index: 290;

  /* Glassmorphism */
  background: rgba(253,249,244,0.96);
  backdrop-filter: blur(48px) saturate(1.9);
  -webkit-backdrop-filter: blur(48px) saturate(1.9);

  /* Floating card edges */
  border-left: 1px solid rgba(184,174,224,0.20);
  border-radius: 28px 0 0 28px;
  box-shadow:
    -28px 0 90px rgba(10,6,18,0.20),
    -8px  0 28px rgba(10,6,18,0.10),
    inset 1px 0 0 rgba(255,255,255,0.65);

  display: flex;
  flex-direction: column;
  overflow: hidden;

  /* Off-screen right, invisible */
  transform: translateX(110%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.55s cubic-bezier(0.16,1,0.3,1),
              visibility 0s linear 0.55s;
}

.nav-drawer.open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
  transition: transform 0.55s cubic-bezier(0.16,1,0.3,1),
              visibility 0s linear 0s;
}

/* Drawer decorative ambient orbs */
.nav-drawer-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}
.nav-drawer.open .nav-drawer-orb { opacity: 1; }
.nav-drawer-orb-1 {
  width: 240px; height: 240px;
  top: -80px; right: -70px;
  background: radial-gradient(circle, rgba(184,174,224,0.28) 0%, transparent 68%);
  transition-delay: 0.12s;
}
.nav-drawer-orb-2 {
  width: 190px; height: 190px;
  bottom: 90px; left: -55px;
  background: radial-gradient(circle, rgba(212,168,199,0.22) 0%, transparent 68%);
  transition-delay: 0.22s;
}

/* ── Drawer header ── */
.nav-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 26px 22px;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(184,174,224,0.12);
  position: relative; z-index: 1;
}

.nav-drawer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px; font-weight: 400;
  color: var(--text-dark, #1e1928);
  text-decoration: none;
  display: flex; align-items: center; gap: 9px;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateX(14px);
  transition: opacity 0.45s ease 0.18s,
              transform 0.45s cubic-bezier(0.16,1,0.3,1) 0.18s;
}
.nav-drawer.open .nav-drawer-brand {
  opacity: 1;
  transform: translateX(0);
}

/* Close ✕ button — spins in */
.nav-drawer-close {
  width: 40px; height: 40px;
  background: rgba(120,110,150,0.09);
  border: 1px solid rgba(184,174,224,0.14);
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  position: relative;
  opacity: 0;
  transform: rotate(-75deg) scale(0.65);
  transition: background 0.25s ease,
              border-color 0.25s ease,
              transform 0.22s ease,
              opacity 0.38s ease 0.12s;
}
.nav-drawer.open .nav-drawer-close {
  opacity: 1;
  transform: rotate(0deg) scale(1);
  transition: background 0.25s ease,
              border-color 0.25s ease,
              transform 0.5s cubic-bezier(0.34,1.56,0.64,1) 0.12s,
              opacity 0.38s ease 0.12s;
}
.nav-drawer-close:hover {
  background: rgba(120,110,150,0.18);
  border-color: rgba(184,174,224,0.28);
  transform: rotate(90deg) scale(1.08) !important;
}
.nav-drawer-close:active { transform: scale(0.84) !important; }

.nav-drawer-close span {
  display: block; width: 15px; height: 1.5px;
  background: var(--text-dark, #1e1928);
  border-radius: 2px;
  position: absolute;
  transition: background 0.25s ease;
}
.nav-drawer-close span:nth-child(1) { transform: rotate(45deg); }
.nav-drawer-close span:nth-child(2) { transform: rotate(-45deg); }
.nav-drawer-close:hover span { background: var(--lav-deep, #7b6fad); }

/* ── Drawer navigation links ── */
.nav-drawer-nav {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 8px 0 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  position: relative; z-index: 1;
}

.nav-drawer-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 19px 26px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 7.5vw, 36px);
  font-weight: 300;
  color: var(--text-dark, #1e1928);
  text-decoration: none;
  letter-spacing: 0.01em;
  border-bottom: 1px solid rgba(184,174,224,0.09);
  position: relative;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;

  /* Hidden until stagger fires */
  opacity: 0;
  transform: translateX(28px);
}
.nav-drawer-link:last-child { border-bottom: none; }

/* Hover shimmer fill */
.nav-drawer-link::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg,
    rgba(184,174,224,0.10) 0%,
    rgba(212,168,199,0.07) 100%);
  transform: translateX(-102%);
  transition: transform 0.42s cubic-bezier(0.16,1,0.3,1);
}
.nav-drawer-link:hover::before,
.nav-drawer-link.active::before { transform: translateX(0); }
.nav-drawer-link:hover,
.nav-drawer-link.active { color: var(--lav-deep, #7b6fad); }
.nav-drawer-link:active { opacity: 0.65; }

/* Numbered accent beside each link */
.nav-drawer-link-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: rgba(123,111,173,0.38);
  letter-spacing: 0.12em;
  align-self: flex-start;
  margin-top: 7px;
  flex-shrink: 0;
  transition: color 0.3s ease;
}
.nav-drawer-link:hover .nav-drawer-link-num,
.nav-drawer-link.active .nav-drawer-link-num { color: rgba(123,111,173,0.72); }

/* Staggered slide-in from right */
.nav-drawer.open .nav-drawer-link:nth-child(1) {
  animation: drawer-link-in 0.55s cubic-bezier(0.16,1,0.3,1) 0.14s both;
}
.nav-drawer.open .nav-drawer-link:nth-child(2) {
  animation: drawer-link-in 0.55s cubic-bezier(0.16,1,0.3,1) 0.22s both;
}
.nav-drawer.open .nav-drawer-link:nth-child(3) {
  animation: drawer-link-in 0.55s cubic-bezier(0.16,1,0.3,1) 0.30s both;
}
.nav-drawer.open .nav-drawer-link:nth-child(4) {
  animation: drawer-link-in 0.55s cubic-bezier(0.16,1,0.3,1) 0.38s both;
}

/* ── Drawer footer ── */
.nav-drawer-footer {
  padding: 22px 26px;
  padding-bottom: max(26px, env(safe-area-inset-bottom, 0px) + 22px);
  border-top: 1px solid rgba(184,174,224,0.12);
  flex-shrink: 0;
  position: relative; z-index: 1;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease 0s,
              transform 0.5s cubic-bezier(0.16,1,0.3,1) 0s;
}
.nav-drawer.open .nav-drawer-footer {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.44s;
}

.nav-drawer-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 22px;
  background: linear-gradient(135deg, #b8aee0 0%, #d4a8c7 100%);
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  border-radius: var(--r-pill, 999px);
  box-shadow: 0 6px 28px rgba(184,174,224,0.45),
              0 2px 8px  rgba(184,174,224,0.22);
  transition: transform 0.32s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.32s ease;
  -webkit-tap-highlight-color: transparent;
}
.nav-drawer-cta svg {
  width: 15px; height: 15px; flex-shrink: 0;
  transition: transform 0.32s cubic-bezier(0.16,1,0.3,1);
}
.nav-drawer-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(184,174,224,0.58),
              0 4px 14px rgba(184,174,224,0.28);
}
.nav-drawer-cta:hover svg  { transform: translateX(4px); }
.nav-drawer-cta:active     { transform: scale(0.96); }

.nav-drawer-tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: 11.5px; font-weight: 400;
  font-style: italic;
  color: rgba(120,110,150,0.68);
  letter-spacing: 0.04em;
  text-align: center;
  margin-top: 14px;
}

/* Prevent body scroll when drawer is open */
body.nav-open { overflow: hidden; touch-action: none; }

@media (max-width: 900px) {
  body.page-home nav,
  body.page-features nav,
  body.page-journal nav { padding: 18px 24px; }
  body.page-home nav.scrolled,
  body.page-features nav.scrolled,
  body.page-journal nav.scrolled { padding: 16px 24px; }
  body.page-pricing nav,
  body.page-about nav,
  body.page-download nav { padding: 18px 24px; }
  body.page-pricing nav.scrolled,
  body.page-about nav.scrolled,
  body.page-download nav.scrolled { padding: 14px 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}


/* ═══════════════════════════════════════════════════════════════
   5. /* ─── FOOTER ─── */
═══════════════════════════════════════════════════════════════ */
footer {
  background: #110e18;
  padding: 64px 56px 0;
  position: relative;
  z-index: 10;
}

.footer-grid {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand p { font-size: 13px; line-height: 1.75; max-width: 220px; }
.footer-brand p { color: rgba(253,249,244,0.60); }

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; text-decoration: none;
  display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
  color: var(--cream);
}

.footer-col h4 {
  font-size: 12px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 16px;
  color: rgba(253,249,244,0.55);
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13px; text-decoration: none; transition: color 0.3s; color: rgba(253,249,244,0.70); }
.footer-col a:hover { color: var(--cream); }

.footer-bottom {
  max-width: 1080px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 18px; padding-bottom: 18px; font-size: 12px;
  color: rgba(253,249,244,0.42);
  border-top-color: rgba(255,255,255,0.06);
}

@media (max-width: 900px) {
  footer, .site-footer { padding: 48px 24px 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; padding-bottom: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; padding: 20px 0; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px 20px; }
  .footer-brand { grid-column: span 2; }
}


/* ═══════════════════════════════════════════════════════════════
   6. SHARED REVEAL ANIMATIONS & UTILITIES
═══════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.85s cubic-bezier(0.16,1,0.3,1),
              transform 0.85s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0; transform: translateX(-32px);
  transition: opacity 0.85s cubic-bezier(0.16,1,0.3,1),
              transform 0.85s cubic-bezier(0.16,1,0.3,1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0; transform: translateX(32px);
  transition: opacity 0.85s cubic-bezier(0.16,1,0.3,1),
              transform 0.85s cubic-bezier(0.16,1,0.3,1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Stagger delays */
.d1, .reveal-delay-1 { transition-delay: 0.08s; }
.d2, .reveal-delay-2 { transition-delay: 0.18s; }
.d3, .reveal-delay-3 { transition-delay: 0.28s; }
.d4, .reveal-delay-4 { transition-delay: 0.38s; }
.d5, .reveal-delay-5 { transition-delay: 0.48s; }
.d6, .reveal-delay-6 { transition-delay: 0.58s; }

/* Section label */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 500; color: var(--text-light);
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 20px;
}
.section-label::before {
  content: ''; display: block; width: 20px; height: 1px;
  background: linear-gradient(90deg, var(--lavender), var(--peach));
}

/* Primary button shared */
.btn-primary {
  background: linear-gradient(135deg, #b8aee0 0%, #d4a8c7 100%);
  color: white; padding: 16px 36px; border-radius: var(--r-pill);
  font-size: 15px; font-weight: 500; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 30px rgba(184,174,224,0.45);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  letter-spacing: 0.01em;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(184,174,224,0.60); }

.btn-ghost {
  color: var(--text-mid); padding: 16px 28px; border-radius: var(--r-pill);
  font-size: 15px; font-weight: 400; text-decoration: none;
  border: 1px solid rgba(200,191,231,0.45);
  background: rgba(255,255,255,0.5); backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 8px;
}
.btn-ghost:hover { background: rgba(255,255,255,0.85); color: var(--text-dark); transform: translateY(-2px); }

/* Ambient background fixed layer */
/* .ambient-bg,
.ambient,
.bg-mesh {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
} */


/* ═══════════════════════════════════════════════════════════════
   7. ALL @KEYFRAMES  (deduplicated — 28 total)
═══════════════════════════════════════════════════════════════ */

@keyframes float-orb {
  0%   { transform: translate(0,0) scale(1); }
  25%  { transform: translate(20px,-30px) scale(1.05); }
  50%  { transform: translate(-10px,20px) scale(0.96); }
  75%  { transform: translate(30px,10px) scale(1.03); }
  100% { transform: translate(0,0) scale(1); }
}

@keyframes particle-float {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.5; }
  50%       { transform: translateY(-20px) scale(1.2); opacity: 0.8; }
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.5); opacity: 0.7; }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes bar-grow {
  from { transform: scaleY(0); transform-origin: bottom; }
  to   { transform: scaleY(1); }
}

@keyframes bar-appear {
  from { transform: scaleY(0); transform-origin: bottom; }
  to   { transform: scaleY(1); }
}

@keyframes gem-pulse {
  0%,100% { transform: rotate(45deg) scale(1); box-shadow: 0 0 0 0 rgba(139,124,186,0.4); }
  50%     { transform: rotate(45deg) scale(1.15); box-shadow: 0 0 0 6px rgba(139,124,186,0); }
}

@keyframes gem-spin {
  0%,100% { transform: rotate(45deg) scale(1); }
  50%     { transform: rotate(225deg) scale(1.2); }
}

@keyframes gem-beat {
  0%,100% { transform: rotate(45deg) scale(1); }
  50%     { transform: rotate(45deg) scale(1.25); }
}

@keyframes spin-slow {
  to { transform: translateX(-50%) rotate(360deg); }
}

@keyframes glow-rotate {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes float-pro {
  0%,100% { transform: translate(0,0); }
  50%     { transform: translate(10px,-15px); }
}

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

@keyframes rise {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes grid-drift {
  0%,100% { transform: translate(0,0); }
  50%     { transform: translate(8px, 8px); }
}

@keyframes dark-float {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(20px,-30px) scale(1.04); }
  66%     { transform: translate(-15px, 20px) scale(0.97); }
}

@keyframes ink-rise {
  0%   { transform: translateY(0) scale(1); opacity: 0.35; }
  50%  { transform: translateY(-25px) scale(1.3); opacity: 0.6; }
  100% { transform: translateY(0) scale(1); opacity: 0.35; }
}

@keyframes word-rise {
  from { opacity: 0; transform: translateY(40px) rotate(1deg); }
  to   { opacity: 1; transform: translateY(0) rotate(0deg); }
}

@keyframes scroll-run {
  0%   { left: -100%; }
  100% { left: 100%; }
}

@keyframes pq-drift {
  0%,100% { transform: translate(-50%,-50%) scale(1); }
  50%     { transform: translate(-50%,-50%) scale(1.03); }
}

@keyframes cover-float {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(12px,-18px) scale(1.05); }
}

@keyframes emoji-float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-6px); }
}

@keyframes orb-drift {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(18px,-24px) scale(1.04); }
  66%     { transform: translate(-12px, 18px) scale(0.97); }
}

@keyframes scan-sweep {
  0%   { top: 10%;  opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { top: 90%; opacity: 0; }
}

@keyframes dot-pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%     { transform: scale(1.6); opacity: 0.6; }
}

@keyframes glow-breathe {
  0%,100% { opacity: 0.8; transform: scale(1); }
  50%     { opacity: 1; transform: scale(1.06); }
}

@keyframes chip-float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-8px); }
}

/* ── Hamburger / drawer animations ── */
@keyframes drawer-link-in {
  from { opacity: 0; transform: translateX(28px); }
  to   { opacity: 1; transform: translateX(0); }
}


/* ═══════════════════════════════════════════════════════════════
   8. PAGE: HOME  (body.page-home)
═══════════════════════════════════════════════════════════════ */
/* body.page-home .ambient-bg {
  background: radial-gradient(ellipse 80% 60% at 20% -10%, #e8dff5 0%, transparent 60%),
              radial-gradient(ellipse 60% 50% at 80% 110%, #fce8de 0%, transparent 60%),
              radial-gradient(ellipse 50% 40% at 50% 50%, #ddeef8 0%, transparent 70%),
              var(--cream);
} */
  .ambient-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 65%, transparent 88%);
    mask-image: linear-gradient(to bottom, black 0%, black 65%, transparent 88%);
  }

body.page-home main { position: relative; z-index: 1; }

/* Hero */
body.page-home .hero {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 140px 24px 80px;
  position: relative; overflow: hidden;
}
.orb {
  position: absolute; border-radius: 50%; pointer-events: none;
  animation: float-orb linear infinite;
}
.orb-1 { width: 380px; height: 380px; top: -80px; left: -100px; background: radial-gradient(circle, rgba(200,191,231,0.35) 0%, transparent 70%); animation-duration: 18s; }
.orb-2 { width: 280px; height: 280px; top: 20%; right: -60px; background: radial-gradient(circle, rgba(245,201,179,0.30) 0%, transparent 70%); animation-duration: 22s; animation-delay: -5s; }
.orb-3 { width: 220px; height: 220px; bottom: 10%; left: 10%; background: radial-gradient(circle, rgba(189,213,234,0.28) 0%, transparent 70%); animation-duration: 26s; animation-delay: -10s; }
.orb-4 { width: 160px; height: 160px; top: 60%; right: 15%; background: radial-gradient(circle, rgba(195,224,212,0.30) 0%, transparent 70%); animation-duration: 20s; animation-delay: -7s; }

.particle {
  position: absolute; border-radius: 50%; pointer-events: none;
  background: var(--lavender); opacity: 0.5;
  animation: particle-float ease-in-out infinite;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(200,191,231,0.82);
  margin-bottom: 32px;
  animation: fade-up 1s ease both 0.2s;
}
.eyebrow-line {
  display: block; width: 28px; height: 1px;
  background: linear-gradient(90deg, var(--lav-deep), var(--peach-deep));
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 7vw, 92px);
  font-weight: 300; line-height: 1.08; letter-spacing: -0.01em;
  color: var(--text-dark); max-width: 820px;
  animation: fade-up 1s ease both; animation-delay: 0.25s;
}
.hero-headline em {
  font-style: italic;
  background: linear-gradient(135deg, #a090d0, #d4a8c7, #e8a87c);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-sub {
  margin-top: 24px; font-size: 18px; font-weight: 400;
  color: var(--text-mid); line-height: 1.65; max-width: 480px;
  animation: fade-up 1s ease both; animation-delay: 0.4s;
}

.hero-actions {
  display: flex; align-items: center; gap: 16px; margin-top: 44px;
  flex-wrap: wrap; justify-content: center;
  animation: fade-up 1s ease both; animation-delay: 0.55s;
}

/* App mockup */
.hero-mockup {
  position: relative; margin-top: 72px; width: 100%; max-width: 900px;
  animation: fade-up 1.2s ease both; animation-delay: 0.7s;
}
.mockup-glow {
  position: absolute; inset: -40px; border-radius: 50%;
  background: radial-gradient(ellipse 80% 40% at 50% 80%, rgba(200,191,231,0.35) 0%, transparent 60%);
  filter: blur(20px);
}
.mockup-screens {
  display: flex; align-items: flex-end; justify-content: center;
  gap: 20px; position: relative;
}
.screen-card {
  background: var(--glass-bg); border: 1.5px solid var(--glass-border);
  backdrop-filter: blur(20px) saturate(1.4); -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-radius: 32px; overflow: hidden;
  box-shadow: var(--shadow-card); position: relative;
  transition: transform 0.5s ease;
}
.screen-card:hover { transform: translateY(-8px); }
.screen-main  { width: 220px; height: 420px; transform: translateY(0); }
.screen-side  { width: 160px; height: 340px; transform: translateY(20px); opacity: 0.85; }
.screen-far   { width: 120px; height: 260px; transform: translateY(50px); opacity: 0.6; }
.screen-inner { padding: 20px 16px; height: 100%; display: flex; flex-direction: column; gap: 12px; }
.screen-stat  { background: rgba(255,255,255,0.7); border-radius: 16px; padding: 14px; }
.screen-stat-label { font-size: 10px; color: var(--text-light); font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 4px; }
.screen-stat-value { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 400; color: var(--text-dark); }
.screen-stat-unit  { font-size: 12px; color: var(--text-mid); }
.screen-bar-row    { display: flex; gap: 4px; align-items: flex-end; height: 50px; }
.screen-bar { flex: 1; border-radius: 4px; background: linear-gradient(180deg, var(--lavender) 0%, rgba(200,191,231,0.3) 100%); }
.screen-avatar-row { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.65); border-radius: 14px; padding: 10px 12px; }
.avatar-circle { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, var(--lavender), var(--peach)); flex-shrink: 0; }
.avatar-text   { font-size: 11px; color: var(--text-mid); line-height: 1.4; }
.screen-pill   { background: linear-gradient(135deg, rgba(200,191,231,0.4), rgba(245,201,179,0.3)); border-radius: var(--radius-pill); padding: 8px 12px; font-size: 10px; color: var(--text-mid); font-weight: 500; text-align: center; letter-spacing: 0.04em; }
.screen-mini-stat { background: rgba(255,255,255,0.6); border-radius: 12px; padding: 10px; }
.screen-mini-label { font-size: 9px; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.06em; }
.screen-mini-val   { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--text-dark); }

/* Stats bar */
.stats-bar {
  display: flex; justify-content: space-around; align-items: center;
  padding: 56px 48px;
  background: linear-gradient(135deg, rgba(200,191,231,0.12), rgba(245,201,179,0.08));
  border-radius: 32px; gap: 24px; flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5vw, 64px); font-weight: 300;
  background: linear-gradient(135deg, #a090d0, #d4a8c7);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1;
}
.stat-label { font-size: 13px; color: var(--text-light); margin-top: 8px; letter-spacing: 0.04em; }

/* Home features grid */
body.page-home .features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px;
}
body.page-home .feature-card {
  background: var(--glass-bg); border: 1.5px solid var(--glass-border);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-card); padding: 36px 32px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1), box-shadow 0.45s ease;
  cursor: default;
}
body.page-home .feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
body.page-home .feature-icon {
  width: 52px; height: 52px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; font-size: 24px;
  background: linear-gradient(135deg, rgba(200,191,231,0.35), rgba(245,201,179,0.25));
  border: 1px solid rgba(255,255,255,0.8);
  transition: transform 0.4s ease;
}
body.page-home .feature-card:hover .feature-icon { transform: scale(1.1) rotate(-3deg); }
body.page-home .feature-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400; color: var(--text-dark); margin-bottom: 12px; line-height: 1.2; }
body.page-home .feature-desc  { font-size: 14px; color: var(--text-mid); line-height: 1.7; font-weight: 400; }
body.page-home .feature-link  { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; color: var(--text-light); margin-top: 20px; text-decoration: none; letter-spacing: 0.02em; transition: color 0.3s ease, gap 0.3s ease; }
body.page-home .feature-link:hover { color: #a090d0; gap: 8px; }

/* Features section wrapper */
.features-section { padding: 50px 24px 100px; }

/* AI section home */
body.page-home .ai-section { background: linear-gradient(135deg, rgba(200,191,231,0.15) 0%, rgba(245,201,179,0.10) 100%); border-radius: 40px; overflow: hidden; }
body.page-home .ai-inner   { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
body.page-home .ai-headline { font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 4vw, 54px); font-weight: 300; line-height: 1.15; color: var(--text-dark); margin-bottom: 24px; }
body.page-home .ai-headline em { font-style: italic; color: #a090d0; }
body.page-home .ai-body    { font-size: 16px; color: var(--text-mid); line-height: 1.75; font-weight: 400; max-width: 420px; }
body.page-home .ai-points  { list-style: none; margin-top: 32px; display: flex; flex-direction: column; gap: 14px; }
body.page-home .ai-point   { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--text-mid); line-height: 1.5; }
body.page-home .ai-point-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; margin-top: 7px; background: linear-gradient(135deg, var(--lavender), var(--peach)); }
body.page-home .ai-visual  { display: flex; flex-direction: column; gap: 16px; }
body.page-home .ai-section-inner { padding: 72px 60px; }

.insight-card { background: rgba(255,255,255,0.70); border: 1.5px solid var(--glass-border); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-radius: 22px; padding: 20px 22px; box-shadow: var(--shadow-soft); transition: transform 0.4s ease; }
.insight-card:hover { transform: translateX(6px); }
.insight-tag  { font-size: 10px; font-weight: 500; letter-spacing: 0.10em; text-transform: uppercase; color: #a090d0; margin-bottom: 8px; }
.insight-text { font-size: 14px; color: var(--text-dark); line-height: 1.55; font-weight: 400; }
.insight-meta { font-size: 11px; color: var(--text-light); margin-top: 10px; }
.insight-bar-wrap  { margin-top: 12px; }
.insight-bar-bg    { height: 4px; border-radius: 4px; background: rgba(200,191,231,0.25); }
.insight-bar-fill  { height: 4px; border-radius: 4px; background: linear-gradient(90deg, var(--lavender), var(--peach)); transition: width 1s ease 0.5s; }

/* Testimonials home */
body.page-home .testimonials-wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.testimonial-card { background: var(--glass-bg); border: 1.5px solid var(--glass-border); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-radius: var(--radius-card); padding: 36px 28px; box-shadow: var(--shadow-soft); display: flex; flex-direction: column; gap: 20px; transition: transform 0.4s ease, box-shadow 0.4s ease; }
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.testi-stars { display: flex; gap: 4px; }
.star { color: #d4a8c7; font-size: 14px; }
.testi-quote { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 400; color: var(--text-dark); line-height: 1.55; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--lavender-light), var(--peach-light)); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 500; color: var(--text-mid); flex-shrink: 0; }
.testi-name { font-size: 14px; font-weight: 500; color: var(--text-dark); }
.testi-role { font-size: 12px; color: var(--text-light); }

/* Testimonials section wrapper */
.testimonials-section { padding: 60px 24px 60px; }

/* CTA home */
body.page-home .cta-section { text-align: center; padding: 10px 24px 80px 10px; }
body.page-home .cta-inner { background: linear-gradient(135deg, rgba(200,191,231,0.18), rgba(245,201,179,0.12)); border: 1.5px solid rgba(255,255,255,0.7); border-radius: 48px; padding: 90px 48px; position: relative; overflow: hidden; max-width: 800px; margin: 0 auto; }
.cta-glow-1, .cta-glow-2 { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(40px); }
.cta-glow-1 { width: 300px; height: 300px; top: -100px; left: -80px; background: rgba(200,191,231,0.30); }
.cta-glow-2 { width: 250px; height: 250px; bottom: -80px; right: -60px; background: rgba(245,201,179,0.25); }
.cta-headline { font-family: 'Cormorant Garamond', serif; font-size: clamp(40px, 5vw, 62px); font-weight: 300; line-height: 1.1; color: var(--text-dark); position: relative; z-index: 1; }
.cta-headline em { font-style: italic; color: #a090d0; }
.cta-sub   { font-size: 17px; color: var(--text-mid); margin-top: 20px; line-height: 1.6; position: relative; z-index: 1; max-width: 440px; margin-left: auto; margin-right: auto; }
.cta-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 44px; max-width: 580px; margin-left: auto; margin-right: auto; position: relative; z-index: 1; }
.cta-funnel-btn { display: flex; align-items: center; justify-content: center; gap: 10px; background: linear-gradient(135deg, #8b7cba, #c98472); color: white; padding: 14px 16px; border-radius: 999px; font-size: 14px; font-weight: 500; text-decoration: none; letter-spacing: 0.01em; box-shadow: 0 8px 32px rgba(139,124,186,0.45); transition: transform 0.3s ease, box-shadow 0.3s ease; position: relative; overflow: hidden; }
.cta-funnel-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 48px rgba(139,124,186,0.62); color: white; }
.cta-actions .store-btn { justify-content: center; }
.store-btn { display: inline-flex; align-items: center; gap: 10px; background: var(--text-dark); color: white; padding: 14px 26px; border-radius: var(--radius-pill); text-decoration: none; font-size: 14px; font-weight: 400; transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s; box-shadow: 0 6px 24px rgba(42,34,48,0.25); }
.store-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(42,34,48,0.30); opacity: 0.9; }
.store-btn-label { text-align: left; }
.store-btn-sub  { font-size: 10px; opacity: 0.6; letter-spacing: 0.04em; display: block; }
.store-btn-name { font-size: 15px; font-weight: 500; display: block; }
.store-btn-icon { font-size: 22px; }

/* ── Premium home page additions ──────────────────────────────── */

/* New keyframes */
@keyframes float-main {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-12px); }
}
@keyframes float-side {
  0%,100% { transform: translateY(20px); }
  50%      { transform: translateY(6px); }
}
@keyframes float-far {
  0%,100% { transform: translateY(50px); }
  50%      { transform: translateY(38px); }
}
@keyframes beam-drift {
  0%,100% { opacity: 0.25; }
  50%      { opacity: 0.65; }
}
@keyframes live-pulse {
  0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(122,191,165,0.5); }
  50%      { opacity: 0.7; box-shadow: 0 0 0 5px rgba(122,191,165,0); }
}
@keyframes ring-rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes mesh-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes shimmer-pass {
  0%   { left: -80%; }
  100% { left: 160%; }
}
@keyframes cta-p-float {
  0%,100% { transform: translateY(0) scale(1); opacity: 0.4; }
  50%      { transform: translateY(-18px) scale(1.15); opacity: 0.7; }
}
@keyframes stat-pop {
  0%   { transform: scale(0.88) translateY(6px); opacity: 0.6; }
  70%  { transform: scale(1.04); }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

/* Light beams */
.hero-beam {
  position: absolute; pointer-events: none;
  width: 180px; top: 0; bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(200,191,231,0.06) 40%, transparent 100%);
  animation: beam-drift ease-in-out infinite;
}
.hero-beam-1 { left: 12%; transform: skewX(-22deg); animation-duration: 11s; }
.hero-beam-2 { right: 18%; transform: skewX(20deg); animation-duration: 14s; animation-delay: -6s; }

/* Floating card animations */
.float-card-main { animation: float-main 5.5s ease-in-out infinite; }
.float-card-mid  { animation: float-side 6.5s ease-in-out infinite; }
.float-card-slow { animation: float-far 8s ease-in-out infinite; }

/* Ensure hover lift still works over float */
.screen-card:hover { animation-play-state: paused; transform: translateY(-12px) !important; }

/* Glass reflection on main screen */
.screen-shine {
  position: absolute; top: 0; left: 0; right: 0; height: 55%;
  background: linear-gradient(135deg, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.0) 65%);
  border-radius: 30px 30px 0 0;
  pointer-events: none; z-index: 10;
}

/* Mockup glow breathing */
.mockup-glow { animation: glow-breathe 4.5s ease-in-out infinite; }

/* Trust strip */
.hero-trust {
  display: flex; align-items: center; gap: 20px; margin-top: 40px;
  flex-wrap: wrap; justify-content: center;
  animation: fade-up 1s ease both; animation-delay: 0.72s;
}
.trust-item { text-align: center; }
.trust-stars { color: #d4a8c7; font-size: 13px; letter-spacing: 3px; }
.trust-count {
  font-family: 'Cormorant Garamond', serif; font-size: 21px; font-weight: 400;
  color: var(--text-dark); line-height: 1;
}
.trust-label { font-size: 11px; color: var(--text-light); letter-spacing: 0.04em; margin-top: 3px; }
.trust-sep { width: 1px; height: 30px; background: rgba(200,191,231,0.28); flex-shrink: 0; }

/* Live eyebrow badge */
.eyebrow-live {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(195,224,212,0.14); border: 1px solid rgba(195,224,212,0.35);
  border-radius: 20px; padding: 2px 9px; font-size: 10px; color: #7abfa5;
  letter-spacing: 0.05em; margin-left: 6px;
}
.live-dot {
  width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0;
  background: #7abfa5; animation: live-pulse 2.2s ease-in-out infinite;
}

/* Stat separator (replaces inline style) */
.stat-sep { width: 1px; height: 60px; background: rgba(200,191,231,0.25); }
.stat-number.stat-pop { animation: stat-pop 0.65s cubic-bezier(0.16,1,0.3,1) both; }

/* Primary button shimmer */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after {
  content: ''; position: absolute; top: 0; left: -80%; width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.20), transparent);
  transform: skewX(-18deg);
  animation: shimmer-pass 3.5s ease-in-out infinite 2s;
}

/* Feature card enhancements */
body.page-home .feature-card { position: relative; overflow: hidden; }
.feature-card-glow {
  position: absolute; top: 0; left: 0; right: 0; height: 180px;
  background: radial-gradient(circle at 50% 0%, rgba(200,191,231,0.16), transparent 70%);
  pointer-events: none; transition: opacity 0.4s ease;
}
body.page-home .feature-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--lavender), var(--peach), transparent);
  opacity: 0; transition: opacity 0.4s ease;
}
body.page-home .feature-card:hover::after { opacity: 1; }
body.page-home .feature-card:hover {
  box-shadow: 0 24px 64px rgba(160,144,208,0.10), 0 8px 24px rgba(42,34,48,0.07);
}
body.page-home .feature-card:hover .feature-card-glow { opacity: 1.5; }
.feature-link-arrow { display: inline-block; transition: transform 0.3s ease; }
body.page-home .feature-link:hover .feature-link-arrow { transform: translateX(4px); }

/* AI live badge */
.ai-live-badge {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 28px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.07em; text-transform: uppercase;
  color: #a090d0; background: rgba(160,144,208,0.07); border: 1px solid rgba(160,144,208,0.15);
  border-radius: 20px; padding: 6px 14px;
}

/* Insight card shimmer sweep */
.insight-card { position: relative; overflow: hidden; }
.insight-card::before {
  content: ''; position: absolute; top: 0; left: -80%; width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  transform: skewX(-16deg);
  animation: shimmer-pass 5s ease-in-out infinite;
}
.insight-card:nth-child(2)::before { animation-delay: 1.8s; }
.insight-card:nth-child(3)::before { animation-delay: 3.4s; }

/* Testimonial avatar ring */
.testi-avatar-wrap { position: relative; flex-shrink: 0; width: 40px; height: 40px; }
.testi-avatar-ring {
  position: absolute; inset: -3px; border-radius: 50%;
  background: linear-gradient(135deg, var(--lavender), var(--peach), var(--mint));
  opacity: 0; transition: opacity 0.4s ease;
  animation: ring-rotate 6s linear infinite;
}
.testimonial-card:hover .testi-avatar-ring { opacity: 0.6; }
.testi-avatar { position: relative; z-index: 1; }

/* CTA enhancements */
.cta-mesh {
  position: absolute; inset: 0; border-radius: inherit; overflow: hidden; pointer-events: none;
  background: linear-gradient(270deg,
    rgba(200,191,231,0.22), rgba(245,201,179,0.18),
    rgba(189,213,234,0.15), rgba(195,224,212,0.14));
  background-size: 400% 400%;
  animation: mesh-shift 10s ease infinite;
}
.cta-particle {
  position: absolute; border-radius: 50%; pointer-events: none;
  background: rgba(200,191,231,0.5); animation: cta-p-float ease-in-out infinite;
}
.cta-p1 { width: 8px;  height: 8px;  top: 18%; left: 12%;  animation-duration: 5s; }
.cta-p2 { width: 5px;  height: 5px;  top: 72%; right: 14%; animation-duration: 7s; animation-delay: -2s; background: rgba(245,201,179,0.6); }
.cta-p3 { width: 6px;  height: 6px;  top: 40%; right: 8%;  animation-duration: 6s; animation-delay: -4s; background: rgba(195,224,212,0.5); }
.cta-eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(160,144,208,0.65); margin-bottom: 14px; position: relative; z-index: 1;
}
.cta-note {
  font-size: 12px; color: var(--text-light); margin-top: 24px; position: relative; z-index: 1;
}

/* Enhanced store buttons */
.store-btn {
  background: linear-gradient(145deg, #2e2538, #3a2e4a) !important;
  box-shadow: 0 8px 32px rgba(42,34,48,0.28), inset 0 1px 0 rgba(255,255,255,0.07) !important;
  position: relative; overflow: hidden;
}
.store-btn::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 50%;
  background: rgba(255,255,255,0.04); border-radius: inherit; pointer-events: none;
}
.store-btn:hover {
  box-shadow: 0 16px 48px rgba(42,34,48,0.38), 0 0 28px rgba(160,144,208,0.12), inset 0 1px 0 rgba(255,255,255,0.10) !important;
  transform: translateY(-4px) scale(1.02) !important;
  opacity: 1 !important;
}

@media (max-width: 900px) {
  .features-section                  { padding: 60px 20px 80px; }
  body.page-home .features-grid      { grid-template-columns: 1fr 1fr; gap: 16px; }
  body.page-home .ai-section-inner   { padding: 56px 40px; }
  body.page-home .ai-inner           { grid-template-columns: 1fr; gap: 40px; }
  .testimonials-section              { padding: 60px 20px 80px; }
  body.page-home .testimonials-wrap  { grid-template-columns: repeat(2, 1fr); max-width: 720px; margin: 56px auto 0; }
}
@media (max-width: 600px) {
  /* Testimonials section — mobile */
  .testimonials-section                  { padding: 40px 20px 0px 25px; }
  body.page-home .testimonials-wrap      { grid-template-columns: repeat(2, 1fr); gap: 12px; max-width: 100%; margin-top: 32px; }
  .testimonial-card                      { padding: 20px 14px; gap: 14px; border-radius: 20px; }
  .testi-quote                           { font-size: 15px; line-height: 1.5; }
  .testi-name                            { font-size: 13px; }
  .testi-role                            { font-size: 11px; }
  .testi-avatar-wrap                     { width: 34px; height: 34px; }
  .testi-avatar                          { width: 34px; height: 34px; font-size: 13px; }
  /* AI Insights section — mobile */
  body.page-home .ai-section         { border-radius: 24px; }
  body.page-home .ai-section-inner   { padding: 36px 25px; }
  body.page-home .ai-body            { font-size: 14px; max-width: 100%; }
  body.page-home .ai-points          { margin-top: 18px; gap: 10px; }
  body.page-home .ai-point           { font-size: 13px; }
  .insight-card                      { padding: 16px 14px; border-radius: 18px; }
  .insight-text                      { font-size: 13px; }
  .insight-meta                      { font-size: 10.5px; }
  .ai-live-badge                     { font-size: 12px; margin-top: 18px; padding: 8px 14px; }
  /* Features section — 2 columns on mobile */
  .features-section                       { padding: 20px 16px 0px; }
  body.page-home .features-grid           { grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 28px; }
  body.page-home .feature-card            { padding: 20px 14px; border-radius: 18px; }
  body.page-home .feature-icon            { width: 42px; height: 42px; border-radius: 14px; font-size: 20px; margin-bottom: 14px; }
  body.page-home .feature-title           { font-size: 16px; margin-bottom: 8px; }
  body.page-home .feature-desc            { font-size: 12.5px; line-height: 1.6; }
  body.page-home .feature-link            { font-size: 12px; margin-top: 14px; }
  .screen-far, .screen-side { display: none; }
  .screen-main { width: 200px; height: 380px; }
  .stats-bar { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 12px; padding: 40px 24px; }
  .stats-bar .stat-sep { display: none; }
  body.page-home .cta-inner { padding: 60px 24px; border-radius: 32px; }
  .cta-actions { grid-template-columns: 1fr; max-width: 300px; gap: 10px; }
}

.section-inner {max-width: 1080px; margin: 0 auto;}

/* ═══════════════════════════════════════════════════════════════
   9. PAGE: FEATURES  (body.page-features)
═══════════════════════════════════════════════════════════════ */
body.page-features main { position: relative; z-index: 1; }

/* Page hero */
body.page-features .page-hero { padding: 110px 24px 20px; text-align: center; position: relative; overflow: hidden; }
.hero-orb { position: absolute; border-radius: 50%; pointer-events: none; animation: float-orb ease-in-out infinite; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--glass-bg); border: 1px solid var(--glass-border); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); padding: 8px 18px; border-radius: var(--radius-pill); font-size: 13px; font-weight: 500; color: var(--text-mid); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 28px; animation: fade-up 0.8s ease both 0.1s; }

/* .hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(48px, 6.5vw, 82px); font-weight: 300; line-height: 1.1; color: var(--text-dark); max-width: 780px; margin: 0 auto; animation: fade-up 0.9s ease both 0.25s; } */

body.page-features .hero-title em, body.page-features .hero-sub { color: inherit; }
body.page-features .hero-title em { font-style: italic; background: linear-gradient(135deg, #a090d0, #d4a8c7, #e8a87c); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { font-size: 18px; color: var(--text-mid); max-width: 480px; margin: 24px auto 0; line-height: 1.65; font-weight: 400; animation: fade-up 0.9s ease both 0.4s; }

/* Feature nav pills */
.feature-nav { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 52px; flex-wrap: wrap; animation: fade-up 0.9s ease both 0.5s; }
.fnav-pill { display: inline-flex; align-items: center; gap: 8px; padding: 10px 22px; border-radius: var(--r-pill); font-size: 13px; font-weight: 400; color: var(--text-mid); background: rgba(255,255,255,0.6); border: 1.5px solid rgba(200,191,231,0.30); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); cursor: pointer; transition: all 0.3s ease; text-decoration: none; }
.fnav-pill:hover, .fnav-pill.active { background: rgba(255,255,255,0.90); color: var(--text-dark); border-color: rgba(200,191,231,0.60); box-shadow: 0 4px 18px rgba(140,120,180,0.12); transform: translateY(-2px); }
.fnav-dot { width: 6px; height: 6px; border-radius: 50%; }

/* Feature rows */
body.page-features .feat-section { padding: 20px 24px 60px; position: relative; }
body.page-features .feat-inner   { max-width: 1080px; margin: 0 auto; }
body.page-features .feat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; padding: 72px 0; border-bottom: 1px solid rgba(200,191,231,0.15); }
body.page-features .feat-row:last-child { border-bottom: none; }
body.page-features .feat-row.reverse { direction: rtl; }
body.page-features .feat-row.reverse > * { direction: ltr; }

.feat-icon-large { width: 64px; height: 64px; border-radius: 22px; display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 28px; border: 1.5px solid rgba(255,255,255,0.85); transition: transform 0.5s ease; position: relative; }
.feat-icon-large::after { content: ''; position: absolute; inset: -6px; border-radius: 28px; border: 1px solid rgba(255,255,255,0.40); }
.feat-section-tag { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 16px; display: inline-block; }
.feat-headline    { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 3.5vw, 46px); font-weight: 300; line-height: 1.15; color: var(--text-dark); margin-bottom: 20px; }
.feat-headline em { font-style: italic; }
.feat-body        { font-size: 15px; color: var(--text-mid); line-height: 1.75; font-weight: 400; max-width: 400px; }
.feat-points      { list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.feat-point       { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-mid); line-height: 1.5; }
.feat-check       { width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 9px; color: white; margin-top: 2px; }

/* Feature visual cards */
.feat-card-main { background: var(--glass-bg); border: 1.5px solid var(--glass-border); backdrop-filter: blur(20px) saturate(1.3); -webkit-backdrop-filter: blur(20px) saturate(1.3); border-radius: 32px; padding: 32px; box-shadow: var(--shadow-card); position: relative; z-index: 1; transition: transform 0.5s cubic-bezier(0.16,1,0.3,1); }
.feat-card-main:hover { transform: translateY(-8px) rotate(0.5deg); }
.feat-card-float { position: absolute; background: rgba(255,255,255,0.75); border: 1.5px solid var(--glass-border); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-radius: 20px; padding: 16px 18px; box-shadow: var(--shadow-soft); transition: transform 0.6s ease; z-index: 2; }
.feat-visual:hover .feat-card-float { transform: translateY(-4px) scale(1.02); }

/* Sleep bars */
.sleep-visual-bars { display: flex; align-items: flex-end; gap: 6px; height: 90px; }
.sleep-bar { flex: 1; border-radius: 6px 6px 3px 3px; background: linear-gradient(180deg, var(--sleep-from), rgba(200,191,231,0.2)); transition: height 0.5s ease; animation: bar-grow 1.2s cubic-bezier(0.16,1,0.3,1) both; }
.sleep-legend { display: flex; gap: 12px; margin-top: 16px; flex-wrap: wrap; }
.sleep-legend-item { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--text-light); }
.legend-dot { width: 8px; height: 8px; border-radius: 50%; }
.sleep-phases { display: flex; gap: 8px; margin-top: 14px; }
.phase-chip { flex: 1; padding: 8px 10px; border-radius: 12px; background: linear-gradient(135deg, rgba(200,191,231,0.25), rgba(200,191,231,0.10)); text-align: center; font-size: 10px; color: var(--text-mid); font-weight: 500; letter-spacing: 0.04em; }

/* Feeding timeline */
.feed-timeline { display: flex; flex-direction: column; gap: 12px; }
.feed-entry { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.65); border-radius: 14px; padding: 12px 14px; transition: transform 0.3s ease; }
.feed-entry:hover { transform: translateX(4px); }
.feed-time { font-size: 11px; color: var(--text-light); min-width: 44px; font-weight: 500; }
.feed-icon-sm { width: 32px; height: 32px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.feed-info { flex: 1; }
.feed-name { font-size: 13px; color: var(--text-dark); font-weight: 400; }
.feed-sub  { font-size: 11px; color: var(--text-light); margin-top: 2px; }
.feed-dur  { font-family: 'Cormorant Garamond', serif; font-size: 18px; color: var(--text-dark); }

/* Growth chart */
.growth-chart  { padding: 8px 0; }
.chart-svg     { width: 100%; height: 120px; }
.growth-stats  { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-top: 16px; }
.growth-stat-cell { background: rgba(255,255,255,0.65); border-radius: 14px; padding: 12px 14px; text-align: center; }
.growth-stat-num  { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 300; color: var(--text-dark); }
.growth-stat-lbl  { font-size: 10px; color: var(--text-light); margin-top: 4px; letter-spacing: 0.06em; text-transform: uppercase; }
.growth-stat-pct  { font-size: 11px; color: #7abfa5; font-weight: 500; margin-top: 2px; }

/* Milestones */
.mile-list { display: flex; flex-direction: column; gap: 10px; }
.mile-item { display: flex; align-items: center; gap: 14px; background: rgba(255,255,255,0.65); border-radius: 16px; padding: 14px 16px; transition: transform 0.35s ease; }
.mile-item:hover { transform: translateX(5px); }
.mile-check-ring { width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 12px; }
.mile-text { flex: 1; }
.mile-name { font-size: 13px; color: var(--text-dark); font-weight: 400; }
.mile-age  { font-size: 11px; color: var(--text-light); margin-top: 2px; }
.mile-status { font-size: 10px; font-weight: 500; letter-spacing: 0.06em; padding: 3px 10px; border-radius: var(--r-pill); }
.mile-done { background: rgba(195,224,212,0.35); color: #5faa8c; }
.mile-soon { background: rgba(200,191,231,0.35); color: #8e7fd4; }
.mile-future { background: rgba(200,200,200,0.20); color: var(--text-light); }

/* Vaccine */
.vaccine-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.vaccine-card { background: rgba(255,255,255,0.65); border-radius: 16px; padding: 14px 16px; transition: transform 0.35s ease; }
.vaccine-card:hover { transform: translateY(-3px); }
.vaccine-name  { font-size: 13px; color: var(--text-dark); font-weight: 400; }
.vaccine-date  { font-size: 11px; color: var(--text-light); margin-top: 3px; }
.vaccine-badge { display: inline-flex; align-items: center; gap: 4px; font-size: 10px; font-weight: 500; letter-spacing: 0.05em; padding: 3px 10px; border-radius: var(--r-pill); margin-top: 8px; }
.vax-done { background: rgba(195,224,212,0.4); color: #5faa8c; }
.vax-due  { background: rgba(245,201,179,0.4); color: #d4794a; }
.health-summary { margin-top: 14px; background: rgba(255,255,255,0.6); border-radius: 14px; padding: 12px 14px; display: flex; align-items: center; gap: 12px; }
.health-icon { font-size: 20px; }
.health-summary-text { font-size: 13px; color: var(--text-dark); line-height: 1.4; }
.health-summary-sub  { font-size: 11px; color: var(--text-light); }

/* AI bubbles */
.ai-feed { display: flex; flex-direction: column; gap: 12px; }
.ai-bubble { background: rgba(255,255,255,0.70); border-radius: 20px; padding: 18px 20px; border: 1px solid rgba(255,255,255,0.85); position: relative; transition: transform 0.4s ease; }
.ai-bubble:hover { transform: translateY(-4px); }
.ai-bubble::before { content: '✦'; position: absolute; top: 14px; right: 16px; font-size: 10px; color: var(--lavender); opacity: 0.6; }
.ai-bubble-tag  { font-size: 10px; font-weight: 500; letter-spacing: 0.10em; text-transform: uppercase; margin-bottom: 8px; }
.ai-bubble-text { font-size: 13px; color: var(--text-dark); line-height: 1.55; font-weight: 300; }
.ai-confidence  { margin-top: 10px; }
.ai-conf-bar-bg { height: 3px; border-radius: 3px; background: rgba(200,191,231,0.20); }
.ai-conf-bar    { height: 3px; border-radius: 3px; }

/* Features CTA */
body.page-features .cta-banner { margin: 60px auto 100px; max-width: 860px; padding: 0 24px; }
body.page-features .cta-inner  { background: linear-gradient(135deg, rgba(200,191,231,0.20), rgba(245,201,179,0.14)); border: 1.5px solid rgba(255,255,255,0.72); border-radius: 44px; padding: 72px 48px; text-align: center; position: relative; overflow: hidden; }
.cta-g1, .cta-g2 { position: absolute; border-radius: 50%; filter: blur(36px); pointer-events: none; }
.cta-g1 { width: 280px; height: 280px; top: -100px; left: -60px; background: rgba(200,191,231,0.28); }
.cta-g2 { width: 220px; height: 220px; bottom: -70px; right: -50px; background: rgba(245,201,179,0.22); }
.cta-hl { font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 4.5vw, 54px); font-weight: 300; line-height: 1.1; color: var(--text-dark); position: relative; z-index: 1; }
.cta-hl em { font-style: italic; color: #a090d0; }
.cta-sub-text { font-size: 16px; color: var(--text-mid); margin-top: 18px; line-height: 1.6; position: relative; z-index: 1; }
.cta-btns { display: flex; gap: 12px; justify-content: center; margin-top: 36px; flex-wrap: wrap; position: relative; z-index: 1; }

@media (max-width: 900px) {
  body.page-features .feat-row { grid-template-columns: 1fr; gap: 40px; }
  body.page-features .feat-row.reverse { direction: ltr; }
}
@media (max-width: 600px) {
  .vaccine-grid { grid-template-columns: 1fr; }
  .growth-stats { grid-template-columns: 1fr 1fr; }
}


/* ═══════════════════════════════════════════════════════════════
   10. PAGE: PRICING  (body.page-pricing)
═══════════════════════════════════════════════════════════════ */
body.page-pricing {
  font-family: 'Jost', sans-serif;
}

/* Cursor */
#cursor { width: 10px; height: 10px; border-radius: 50%; background: var(--rose-deep); position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none; transform: translate(-50%,-50%); transition: width 0.3s ease, height 0.3s ease, background 0.3s ease; mix-blend-mode: multiply; }
#cursor-ring { width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid rgba(197,131,122,0.4); position: fixed; top: 0; left: 0; z-index: 9998; pointer-events: none; transform: translate(-50%,-50%); transition: all 0.18s ease; }

/* Constellation canvas */
#constellation { position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0.5; }

/* Ambient */
body.page-pricing .ambient {
  background: radial-gradient(ellipse 65% 55% at 15% -5%, rgba(196,184,222,0.28) 0%, transparent 60%),
              radial-gradient(ellipse 55% 45% at 88% 95%, rgba(232,196,192,0.24) 0%, transparent 60%),
              radial-gradient(ellipse 45% 35% at 60% 50%, rgba(212,184,150,0.14) 0%, transparent 65%),
              var(--bg);
}

/* Hero */
body.page-pricing .pricing-hero { padding: 160px 24px 80px; text-align: center; position: relative; overflow: hidden; }
.hero-deco-line { position: absolute; pointer-events: none; opacity: 0.12; }
.hero-deco-line-1 { top: 140px; left: 50%; transform: translateX(-50%); width: 600px; height: 600px; border-radius: 50%; border: 1px solid var(--violet-deep); animation: spin-slow 60s linear infinite; }
.hero-deco-line-2 { top: 180px; left: 50%; transform: translateX(-50%); width: 400px; height: 400px; border-radius: 50%; border: 1px solid var(--rose-deep); animation: spin-slow 40s linear infinite reverse; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; padding: 7px 18px; border-radius: var(--r-pill); background: rgba(255,255,255,0.60); border: 1px solid rgba(196,184,222,0.40); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dusk-mid); margin-bottom: 28px; animation: rise 0.9s cubic-bezier(0.16,1,0.3,1) both 0.1s; }
.eyebrow-gem { width: 5px; height: 5px; border-radius: 1px; background: linear-gradient(135deg, var(--violet-deep), var(--rose-deep)); transform: rotate(45deg); }
.pricing-title { font-family: 'Playfair Display', serif; font-size: clamp(50px, 7vw, 88px); font-weight: 300; line-height: 1.06; letter-spacing: -0.01em; color: var(--dusk); max-width: 860px; margin: 0 auto; animation: rise 1s cubic-bezier(0.16,1,0.3,1) both 0.22s; }
.pricing-title em { font-style: italic; background: linear-gradient(135deg, var(--violet-deep) 0%, var(--rose-deep) 60%, var(--gold) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.pricing-sub { font-size: 17px; font-weight: 300; color: var(--dusk-mid); max-width: 460px; margin: 22px auto 0; line-height: 1.7; animation: rise 1s cubic-bezier(0.16,1,0.3,1) both 0.36s; }

/* Billing toggle */
.billing-toggle { display: inline-flex; align-items: center; gap: 14px; margin-top: 44px; padding: 6px; background: rgba(255,255,255,0.55); border: 1px solid rgba(196,184,222,0.35); border-radius: var(--r-pill); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); animation: rise 1s cubic-bezier(0.16,1,0.3,1) both 0.48s; }
.toggle-opt { padding: 9px 24px; border-radius: var(--r-pill); font-size: 13px; font-weight: 400; color: var(--dusk-mid); cursor: pointer; transition: all 0.35s ease; letter-spacing: 0.03em; }
.toggle-opt.active { background: var(--dusk); color: var(--ivory); box-shadow: 0 4px 18px rgba(46,37,53,0.20); }
.toggle-badge { font-size: 10px; font-weight: 500; letter-spacing: 0.06em; background: linear-gradient(135deg, var(--violet), var(--rose)); color: white; padding: 3px 10px; border-radius: var(--r-pill); }

/* Plan cards */
.pricing-stage { padding: 60px 24px 60px; perspective: 1200px; }
.pricing-grid { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.12fr 1fr; gap: 24px; align-items: start; }
.plan-card { border-radius: var(--r-card); padding: 44px 36px; position: relative; overflow: hidden; transition: transform 0.6s cubic-bezier(0.16,1,0.3,1), box-shadow 0.5s ease; will-change: transform; opacity: 0; transform: translateY(40px); }
.plan-card.visible { opacity: 1; transform: translateY(0); transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1), box-shadow 0.5s ease; }
.plan-card:hover { transform: translateY(-10px) scale(1.01); }
.card-starter, .card-family { background: var(--glass); border: 1.5px solid rgba(255,255,255,0.75); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); box-shadow: var(--sh-soft); margin-top: 24px; }
.card-starter:hover, .card-family:hover { box-shadow: var(--sh-card); }
.card-pro { background: linear-gradient(160deg, #2e2535 0%, #3d3050 40%, #2a2038 100%); border: 1.5px solid rgba(196,184,222,0.25); box-shadow: var(--sh-float); color: var(--ivory); z-index: 2; margin-top: 0; }
.card-pro::before { content: ''; position: absolute; inset: 0; border-radius: var(--r-card); background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(196,184,222,0.15) 0%, transparent 60%); pointer-events: none; }
.card-pro .plan-price-int { color: var(--ivory); }
.card-pro .plan-desc { color: rgba(253,250,246,0.65); }
.card-pro .feature-item { color: rgba(253,250,246,0.80); }
.card-pro .feature-check { color: var(--violet); }
.card-pro .plan-badge { background: linear-gradient(135deg, var(--violet-deep), var(--rose-deep)); color: white; border: none; }
.plan-badge { display: inline-flex; align-items: center; gap: 6px; padding: 5px 14px; border-radius: var(--r-pill); font-size: 10px; font-weight: 500; letter-spacing: 0.10em; text-transform: uppercase; margin-bottom: 28px; border: 1px solid rgba(196,184,222,0.35); color: var(--dusk-mid); background: rgba(255,255,255,0.50); }
.plan-name { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 400; margin-bottom: 10px; line-height: 1.1; }
.plan-desc { font-size: 14px; font-weight: 400; color: var(--dusk-mid); line-height: 1.6; margin-bottom: 32px; max-width: 240px; }
.plan-price { display: flex; align-items: flex-start; gap: 4px; margin-bottom: 8px; }
.plan-currency { font-size: 20px; font-weight: 300; color: var(--dusk-light); margin-top: 8px; }
.plan-price-int { font-family: 'Playfair Display', serif; font-size: 60px; font-weight: 300; line-height: 1; color: var(--dusk); letter-spacing: -0.02em; }
.plan-period { font-size: 13px; font-weight: 300; color: var(--dusk-light); align-self: flex-end; margin-bottom: 6px; }
.plan-annual-note { font-size: 12px; color: var(--dusk-light); margin-bottom: 36px; }
.plan-annual-note span { color: var(--rose-deep); font-weight: 500; }
.plan-price-orig { display: none; text-decoration: line-through; opacity: 0.40; font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 300; line-height: 1; color: var(--dusk); align-self: flex-end; margin-bottom: 12px; margin-right: 2px; }
.plan-price-orig-pro { color: var(--ivory); }
.plan-save-tag { display: none; font-family: 'Jost', sans-serif; font-size: 11px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: #6a9a6a; background: rgba(106,154,106,0.10); border: 1px solid rgba(106,154,106,0.22); border-radius: 20px; padding: 4px 14px; margin: -10px auto 14px; width: fit-content; }
.plan-save-tag-pro { color: #e8c4c0; background: rgba(232,196,192,0.10); border-color: rgba(232,196,192,0.25); }
.plan-cta { display: block; width: 100%; padding: 15px; border-radius: var(--r-pill); text-align: center; font-family: 'Jost', sans-serif; font-size: 14px; font-weight: 400; letter-spacing: 0.04em; text-decoration: none; transition: transform 0.35s ease, box-shadow 0.35s ease, opacity 0.3s; margin-bottom: 36px; cursor: pointer; border: none; }
.cta-ghost { background: transparent; border: 1.5px solid rgba(196,184,222,0.50); color: var(--dusk); }
.cta-ghost:hover { background: rgba(255,255,255,0.80); border-color: var(--violet); transform: translateY(-2px); }
.cta-primary { background: linear-gradient(135deg, var(--violet-deep), var(--rose-deep)); color: white; box-shadow: 0 8px 32px rgba(139,124,186,0.45); }
.cta-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 44px rgba(139,124,186,0.60); opacity: 0.93; }
.cta-dark { background: transparent; border: 1.5px solid rgba(196,184,222,0.30); color: var(--ivory); }
.cta-dark:hover { background: rgba(196,184,222,0.10); border-color: rgba(196,184,222,0.55); transform: translateY(-2px); }
.feature-divider { height: 1px; background: rgba(196,184,222,0.18); margin-bottom: 28px; }
.feature-divider-dark { background: rgba(255,255,255,0.10); }
.features-label { font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--dusk-light); margin-bottom: 16px; }
.features-label-light { color: rgba(253,250,246,0.60); }
.feature-list { display: flex; flex-direction: column; gap: 13px; }
.feature-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; font-weight: 300; color: var(--dusk-mid); line-height: 1.45; }
.feature-check { width: 17px; height: 17px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 9px; margin-top: 1px; background: rgba(139,124,186,0.12); color: var(--violet-deep); font-weight: 600; }
.feature-check-rose { background: rgba(201,131,122,0.12); color: var(--rose-deep); }
.feature-check-pro  { background: rgba(196,184,222,0.20); color: var(--violet); }
.feature-muted { opacity: 0.40; }
.pro-glow { position: absolute; inset: -2px; border-radius: calc(var(--r-card) + 2px); background: linear-gradient(135deg, var(--violet-deep), var(--rose-deep), var(--violet-deep)); z-index: -1; animation: glow-rotate 4s linear infinite; background-size: 200% 200%; }
.pro-orb-1, .pro-orb-2 { position: absolute; border-radius: 50%; pointer-events: none; animation: float-pro ease-in-out infinite; }
.pro-orb-1 { width: 180px; height: 180px; top: -60px; right: -40px; background: radial-gradient(circle, rgba(196,184,222,0.20) 0%, transparent 70%); animation-duration: 8s; }
.pro-orb-2 { width: 120px; height: 120px; bottom: -30px; left: -20px; background: radial-gradient(circle, rgba(232,196,192,0.20) 0%, transparent 70%); animation-duration: 11s; animation-delay: -4s; }

/* Compare table */
.compare-section { padding: 60px 24px 100px; }
.compare-inner   { max-width: 900px; margin: 0 auto; }
.section-eyebrow { display: flex; align-items: center; gap: 12px; font-size: 18px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dusk-light); margin-bottom: 18px; }
.section-eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: linear-gradient(90deg, var(--violet-deep), var(--rose)); }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(32px, 4vw, 48px); font-weight: 300; line-height: 1.15; color: var(--dusk); margin-bottom: 48px; }
.section-title em { font-style: italic; color: var(--violet-deep); }
.compare-table { width: 100%; border-collapse: separate; border-spacing: 0; }
.compare-table thead tr th { font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--dusk-light); padding: 16px 20px; text-align: center; }
.compare-table thead tr th:first-child { text-align: left; }
.col-highlight { background: var(--dusk); border-radius: 20px 20px 0 0; }
.col-highlight-label { color: var(--ivory) !important; }
.compare-table tbody tr td { padding: 16px 20px; font-size: 16px; color: var(--dusk-mid); border-bottom: 1px solid rgba(196,184,222,0.14); text-align: center; font-weight: 400; }
.compare-table tbody tr td:first-child { text-align: left; color: var(--dusk); font-weight: 400; }
.compare-table tbody tr:last-child td { border-bottom: none; }
.col-mid { background: var(--dusk); color: var(--ivory) !important; }
.col-mid-last { border-radius: 0 0 20px 20px !important; }
.check-y { color: var(--violet); font-size: 16px; }
.check-n { color: var(--dusk-light); font-size: 18px; opacity: 0.3; }
.row-group-label { font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--dusk-light); padding: 24px 20px 10px !important; border-bottom: none !important; background: transparent !important; }
.compare-table tbody tr:hover td { background: rgba(196,184,222,0.05); }
.compare-table tbody tr:hover td.col-mid { background: rgba(255,255,255,0.04); }

/* Social proof strip */
.proof-strip  { padding: 60px 24px; overflow: hidden; }
.proof-inner  { max-width: 1080px; margin: 0 auto; }
.proof-track  { display: flex; gap: 20px; animation: scroll-proof 40s linear infinite; width: max-content; }
.proof-track:hover { animation-play-state: paused; }
.proof-card   { background: var(--glass); border: 1.5px solid rgba(255,255,255,0.72); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-radius: 22px; padding: 28px; min-width: 300px; max-width: 300px; box-shadow: var(--sh-soft); flex-shrink: 0; }
.proof-stars  { color: var(--rose-deep); font-size: 13px; letter-spacing: 2px; margin-bottom: 12px; }
.proof-quote  { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 300; font-style: italic; color: var(--dusk); line-height: 1.6; margin-bottom: 18px; }
.proof-author { display: flex; align-items: center; gap: 10px; }
.proof-avatar { width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 500; color: white; }
.proof-name   { font-size: 13px; color: var(--dusk); font-weight: 400; }
.proof-role   { font-size: 11px; color: var(--dusk-light); }

/* FAQ */
.faq-section { padding: 40px 24px 60px; }
.faq-inner   { max-width: 720px; margin: 0 auto; }
.faq-list    { display: flex; flex-direction: column; gap: 0; margin-top: 48px; }
.faq-item    { border-bottom: 1px solid rgba(196,184,222,0.20); overflow: hidden; }
.faq-q       { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; cursor: pointer; font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 400; color: var(--dusk); transition: color 0.3s ease; gap: 16px; -webkit-user-select: none; user-select: none; }
.faq-q:hover { color: var(--violet-deep); }
.faq-icon    { width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0; background: rgba(196,184,222,0.20); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--dusk-mid); transition: transform 0.4s ease, background 0.3s ease; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--dusk); color: var(--ivory); }
.faq-a       { max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.16,1,0.3,1), padding 0.4s ease; }
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 22px; }
.faq-a p     { font-size: 15px; font-weight: 300; color: var(--dusk-mid); line-height: 1.75; }

/* Pricing final CTA */
.final-cta        { padding: 40px 24px 80px; }
.final-cta-inner  { max-width: 960px; margin: 0 auto; position: relative; border-radius: 44px; overflow: hidden; background: linear-gradient(145deg, #2e2535 0%, #3d3050 50%, #2a2038 100%); padding: 100px 60px; text-align: center; }
.fcta-orb-1, .fcta-orb-2 { position: absolute; border-radius: 50%; filter: blur(48px); pointer-events: none; }
.fcta-orb-1 { width: 400px; height: 400px; top: -120px; left: -80px; background: rgba(196,184,222,0.18); }
.fcta-orb-2 { width: 300px; height: 300px; bottom: -80px; right: -60px; background: rgba(232,196,192,0.15); }
.fcta-tag   { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(253,250,246,0.50); margin-bottom: 24px; position: relative; z-index: 1; }
.fcta-title { font-family: 'Playfair Display', serif; font-size: clamp(36px, 5vw, 60px); font-weight: 300; color: var(--ivory); line-height: 1.1; position: relative; z-index: 1; }
.fcta-title em { font-style: italic; background: linear-gradient(135deg, var(--violet), var(--rose), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.fcta-sub   { font-size: 17px; font-weight: 300; color: rgba(253,250,246,0.65); margin: 20px auto 44px; max-width: 420px; line-height: 1.65; position: relative; z-index: 1; }
.fcta-btns  { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.fcta-btn-main { background: linear-gradient(135deg, var(--violet-deep), var(--rose-deep)); color: white; padding: 16px 38px; border-radius: var(--r-pill); font-family: 'Jost', sans-serif; font-size: 14px; font-weight: 400; letter-spacing: 0.04em; text-decoration: none; box-shadow: 0 8px 32px rgba(139,124,186,0.50); transition: transform 0.35s ease, box-shadow 0.35s ease; }
.fcta-btn-main:hover { transform: translateY(-3px); box-shadow: 0 14px 48px rgba(139,124,186,0.65); }
.fcta-btn-ghost { background: rgba(255,255,255,0.08); border: 1.5px solid rgba(255,255,255,0.18); color: rgba(253,250,246,0.80); padding: 16px 32px; border-radius: var(--r-pill); font-family: 'Jost', sans-serif; font-size: 14px; font-weight: 400; letter-spacing: 0.04em; text-decoration: none; transition: all 0.35s ease; }
.fcta-btn-ghost:hover { background: rgba(255,255,255,0.14); transform: translateY(-2px); }
.fcta-note { font-size: 12px; color: rgba(253,250,246,0.55); margin-top: 22px; position: relative; z-index: 1; }

@media (max-width: 960px) {
  body.page-pricing { cursor: auto; }
  #cursor, #cursor-ring { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .plan-card { margin-top: 0 !important; }
}
@media (max-width: 640px) {
  .final-cta-inner { padding: 64px 28px; border-radius: 32px; }
  .compare-section { display: none; }
}


/* ═══════════════════════════════════════════════════════════════
   11. PAGE: ABOUT  (body.page-about)
═══════════════════════════════════════════════════════════════ */

/* Dark chapter */
.chapter-dark { min-height: 100vh; background: var(--ink); position: relative; overflow: hidden; display: flex; flex-direction: column; }
.scan-grid { position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(200,191,231,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(200,191,231,0.04) 1px, transparent 1px); background-size: 80px 80px; animation: grid-drift 30s ease-in-out infinite; }
.dark-orb { position: absolute; border-radius: 50%; pointer-events: none; animation: dark-float ease-in-out infinite; }
.dark-orb-1 { width: 600px; height: 600px; top: -150px; left: -100px; background: radial-gradient(circle, rgba(139,124,186,0.18) 0%, transparent 65%); filter: blur(2px); animation-duration: 20s; }
.dark-orb-2 { width: 400px; height: 400px; bottom: -80px; right: -60px; background: radial-gradient(circle, rgba(201,132,114,0.15) 0%, transparent 65%); filter: blur(2px); animation-duration: 26s; animation-delay: -8s; }
.dark-orb-3 { width: 280px; height: 280px; top: 40%; left: 60%; background: radial-gradient(circle, rgba(200,191,231,0.10) 0%, transparent 65%); animation-duration: 18s; animation-delay: -4s; }
.ink-dot { position: absolute; border-radius: 50%; pointer-events: none; background: rgba(200,191,231,0.35); animation: ink-rise ease-in-out infinite; }
.chapter-label { position: absolute; top: 130px; left: 56px; display: flex; align-items: center; gap: 12px; font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(200,191,231,0.72); animation: fade-in 1.2s ease both 0.3s; }
.chapter-label::before { content: ''; display: block; width: 36px; height: 1px; background: linear-gradient(90deg, var(--lav-deep), transparent); }
.hero-text-block { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; min-height: 100vh; padding: 160px 56px 100px; max-width: 1080px; }
.hero-chapter-num { font-family: 'Cormorant Garamond', serif; font-size: 120px; font-weight: 300; line-height: 1; color: rgba(200,191,231,0.06); letter-spacing: -0.04em; position: absolute; top: 60px; right: 56px; pointer-events: none; animation: fade-in 1.5s ease both 0.5s; }
/* .hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(200,191,231,0.55); margin-bottom: 32px; animation: fade-up 1s ease both 0.2s; } */
.eyebrow-line { display: block; width: 28px; height: 1px; background: linear-gradient(90deg, var(--lav-deep), var(--peach-deep)); }
body.page-about .hero-title {
       font-family: 'Cormorant Garamond', serif;
    font-size: clamp(56px, 7.5vw, 100px);
    font-weight: 300;
    line-height: 1.02;
    letter-spacing: -0.02em;
    color: var(--cream);
    max-width: 800px;
  }
body.page-about .hero-title em { font-style: italic; background: linear-gradient(135deg, var(--lavender) 0%, var(--peach) 60%, var(--gold) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.word-reveal { display: inline-block; animation: word-rise 1.1s cubic-bezier(0.16,1,0.3,1) both; }
body.page-about .hero-tagline { margin-top: 44px; max-width: 520px; font-size: 19px; font-weight: 300; color: rgba(253,249,244,0.60); line-height: 1.70; animation: fade-up 1.1s ease both 0.8s; }
body.page-about .hero-tagline em { color: rgba(253,249,244,0.90); font-style: normal; }
.scroll-hint { position: absolute; bottom: 48px; left: 56px; z-index: 2; display: flex; align-items: center; gap: 14px; font-size: 11px; color: rgba(200,191,231,0.35); letter-spacing: 0.10em; text-transform: uppercase; animation: fade-in 1.5s ease both 1.2s; }
.scroll-track { width: 40px; height: 1px; background: rgba(200,191,231,0.20); position: relative; overflow: hidden; }
.scroll-fill  { position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, var(--lavender), transparent); animation: scroll-run 2.5s ease-in-out infinite; }

/* Cream chapter */
.chapter-cream { background: var(--cream); color: var(--ink); position: relative; }

/* Origin */
.origin-section { padding: 100px 56px 80px; max-width: 1080px; margin: 0 auto; }
.origin-grid    { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.origin-label   { display: flex; align-items: center; gap: 12px; font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 20px; }
.origin-label::before { content: ''; display: block; width: 24px; height: 1px; background: linear-gradient(90deg, var(--lav-deep), var(--peach-deep)); }
.origin-headline { font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 4vw, 52px); font-weight: 400; line-height: 1.12; color: var(--ink); margin-bottom: 28px; }
.origin-headline em { font-style: italic; color: var(--lav-deep); }
.origin-body { font-size: 16px; font-weight: 300; color: var(--ink-soft); line-height: 1.80; max-width: 420px; }
.founder-card { background: linear-gradient(145deg, #2e2535 0%, #3d3050 100%); border-radius: 36px; padding: 52px 44px; position: relative; overflow: hidden; box-shadow: var(--sh-card); }
.founder-orb { position: absolute; border-radius: 50%; pointer-events: none; animation: dark-float ease-in-out infinite; }
.founder-orb-1 { width: 250px; height: 250px; top: -60px; right: -40px; background: radial-gradient(circle, rgba(200,191,231,0.15) 0%, transparent 65%); animation-duration: 14s; }
.founder-orb-2 { width: 180px; height: 180px; bottom: -50px; left: -30px; background: radial-gradient(circle, rgba(240,201,184,0.12) 0%, transparent 65%); animation-duration: 18s; animation-delay: -5s; }
.founder-quote-mark { font-family: 'Cormorant Garamond', serif; font-size: 120px; font-weight: 300; line-height: 0.6; color: rgba(200,191,231,0.12); position: absolute; top: 28px; left: 32px; }
.founder-quote { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 300; font-style: italic; color: var(--ivory); line-height: 1.55; position: relative; z-index: 1; margin-bottom: 32px; }
.founder-credit { display: flex; align-items: center; gap: 14px; position: relative; z-index: 1; }
.founder-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--lav-deep), var(--peach-deep)); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 400; color: white; flex-shrink: 0; border: 2px solid rgba(255,255,255,0.15); }
.founder-name  { font-size: 15px; font-weight: 400; color: var(--ivory); font-family: 'Cormorant Garamond', serif; letter-spacing: 0.02em; }
.founder-title { font-size: 12px; color: rgba(253,249,244,0.65); margin-top: 2px; }
.float-stat { position: absolute; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-radius: 18px; padding: 14px 18px; z-index: 2; transition: transform 0.5s ease; }
.float-stat:hover { transform: scale(1.05) translateY(-3px); }
.float-stat-val { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300; color: var(--ivory); }
.float-stat-lbl { font-size: 10px; color: rgba(253,249,244,0.62); letter-spacing: 0.08em; margin-top: 2px; }
.stat-pos-1 { bottom: -20px; right: -20px; }
.stat-pos-2 { top: -16px; left: -16px; }

/* Pull quote */
.pullquote-section { background: var(--cream-warm); padding: 100px 56px; text-align: center; position: relative; overflow: hidden; }
.pq-bg-text { position: absolute; font-family: 'Cormorant Garamond', serif; font-size: clamp(100px, 14vw, 200px); font-weight: 300; color: rgba(139,124,186,0.05); white-space: nowrap; top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none; letter-spacing: -0.04em; animation: pq-drift 25s ease-in-out infinite; }
.pq-inner   { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }
.pq-text    { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 4.5vw, 58px); font-weight: 300; font-style: italic; line-height: 1.25; color: var(--ink); letter-spacing: -0.01em; }
.pq-text em { font-style: normal; font-weight: 400; background: linear-gradient(135deg, var(--lav-deep), var(--peach-deep)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.pq-attribution { margin-top: 40px; display: flex; align-items: center; justify-content: center; gap: 16px; }
.pq-line { width: 40px; height: 1px; background: var(--gold); }
.pq-name { font-size: 13px; color: var(--ink-soft); letter-spacing: 0.06em; }

/* Values */
.values-section { background: var(--cream); padding: 100px 56px; }
.values-inner   { max-width: 1080px; margin: 0 auto; }
.values-header  { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 72px; }
.values-headline { font-family: 'Cormorant Garamond', serif; font-size: clamp(38px, 4.5vw, 56px); font-weight: 400; line-height: 1.1; color: var(--ink); }
.values-headline em { font-style: italic; color: var(--lav-deep); }
.values-intro { font-size: 15px; font-weight: 400; color: var(--ink-soft); line-height: 1.78; }
.values-grid  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card   { background: var(--glass); border: 1.5px solid rgba(255,255,255,0.75); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-radius: var(--r-card); padding: 40px 32px; box-shadow: var(--sh-soft); position: relative; overflow: hidden; transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), box-shadow 0.5s ease; }
.value-card:hover { transform: translateY(-7px); box-shadow: var(--sh-card); }
.value-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--color-from), var(--color-to)); opacity: 0; transition: opacity 0.4s ease; }
.value-card:hover::before { opacity: 1; }
.value-num   { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 300; line-height: 1; color: #00000045; margin-bottom: 20px; letter-spacing: -0.03em; }
.value-title { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 400; color: var(--ink); margin-bottom: 14px; line-height: 1.15; }
.value-body  { font-size: 14px; font-weight: 400; color: var(--ink-soft); line-height: 1.72; }

/* Team */
.team-section { background: var(--cream-warm); padding: 100px 56px; }
.team-inner   { max-width: 1080px; margin: 0 auto; }
.team-grid    { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.team-card    { border-radius: 24px; overflow: hidden; position: relative; transition: transform 0.5s cubic-bezier(0.16,1,0.3,1); box-shadow: var(--sh-soft); }
.team-card:hover { transform: translateY(-8px); }
.team-portrait { height: 220px; width: 100%; position: relative; overflow: hidden; }
.team-portrait-inner { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; position: relative; }
.portrait-initial { font-family: 'Cormorant Garamond', serif; font-size: 72px; font-weight: 300; color: rgba(255,255,255,0.70); position: relative; z-index: 1; }
.portrait-pattern { position: absolute; inset: 0; background-image: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.08) 0%, transparent 40%), radial-gradient(circle at 70% 70%, rgba(255,255,255,0.06) 0%, transparent 40%); }
.team-info  { background: white; padding: 22px 22px 24px; }
.team-name  { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 400; color: var(--ink); margin-bottom: 4px; }
.team-role  { font-size: 12px; color: var(--ink-soft); letter-spacing: 0.04em; margin-bottom: 14px; }
.team-bio   { font-size: 13px; font-weight: 400; color: var(--ink-soft); line-height: 1.6; }

/* Impact */
.impact-section { background: var(--ink); padding: 100px 56px; position: relative; overflow: hidden; }
.impact-inner   { max-width: 1080px; margin: 0 auto; }
.impact-bg { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 60% 50% at 20% 50%, rgba(139,124,186,0.12) 0%, transparent 60%), radial-gradient(ellipse 50% 40% at 80% 50%, rgba(201,132,114,0.10) 0%, transparent 60%); }
.impact-label { display: flex; align-items: center; gap: 12px; font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(200,191,231,0.72); margin-bottom: 20px; position: relative; z-index: 1; }
.impact-label::before { content: ''; display: block; width: 24px; height: 1px; background: linear-gradient(90deg, var(--lav-deep), var(--peach-deep)); }
.impact-headline { font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 5vw, 58px); font-weight: 300; color: var(--cream); margin-bottom: 64px; line-height: 1.1; position: relative; z-index: 1; max-width: 560px; }
.impact-headline em { font-style: italic; color: var(--lavender); }
.impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(200,191,231,0.10); border-radius: 24px; overflow: hidden; position: relative; z-index: 1; }
.impact-cell { background: rgba(255,255,255,0.03); padding: 44px 36px; transition: background 0.4s ease; }
.impact-cell:hover { background: rgba(255,255,255,0.06); }
.impact-num  { font-family: 'Cormorant Garamond', serif; font-size: clamp(44px, 5vw, 64px); font-weight: 300; line-height: 1; margin-bottom: 10px; background: linear-gradient(135deg, var(--lavender), var(--peach)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.impact-desc { font-size: 13px; font-weight: 400; color: rgba(200,191,231,0.78); line-height: 1.55; }

/* Timeline */
.timeline-section { background: var(--cream); padding: 100px 56px; }
.timeline-inner   { max-width: 800px; margin: 0 auto; }
.timeline-list    { position: relative; margin-top: 60px; }
.timeline-list::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 1px; background: linear-gradient(180deg, var(--lavender), var(--peach), transparent); }
.timeline-item    { display: grid; grid-template-columns: 120px 1fr; gap: 40px; padding: 0 0 56px 0; position: relative; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before { content: ''; position: absolute; left: -4px; top: 8px; width: 9px; height: 9px; border-radius: 50%; background: linear-gradient(135deg, var(--lav-deep), var(--peach-deep)); box-shadow: 0 0 0 3px var(--cream), 0 0 0 4px rgba(139,124,186,0.25); }
.tl-year    { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300; color: var(--lav-deep); text-align: right; padding-right: 8px; line-height: 1; }
.tl-title   { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400; color: var(--ink); margin-bottom: 8px; }
.tl-body    { font-size: 14px; font-weight: 400; color: var(--ink-soft); line-height: 1.70; }

/* Close CTA */
.chapter-close { background: var(--ink); padding: 140px 56px 60px; position: relative; overflow: hidden; text-align: center; }
.close-orb-1, .close-orb-2 { position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; }
.close-orb-1 { width: 500px; height: 500px; top: -100px; left: -100px; background: rgba(139,124,186,0.14); animation: dark-float 20s ease-in-out infinite; }
.close-orb-2 { width: 400px; height: 400px; bottom: -80px; right: -80px; background: rgba(201,132,114,0.12); animation: dark-float 25s ease-in-out infinite reverse; }
.close-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(200,191,231,0.72); margin-bottom: 28px; position: relative; z-index: 1; }
.close-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(50px, 7vw, 86px); font-weight: 300; line-height: 1.06; letter-spacing: -0.02em; color: var(--cream); max-width: 760px; margin: 0 auto; position: relative; z-index: 1; }
.close-title em { font-style: italic; background: linear-gradient(135deg, var(--lavender), var(--peach), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.close-sub  { font-size: 18px; font-weight: 400; color: rgba(253,249,244,0.72); max-width: 440px; margin: 28px auto 0; line-height: 1.70; position: relative; z-index: 1; }
.close-actions { display: flex; gap: 16px; justify-content: center; margin-top: 52px; flex-wrap: wrap; position: relative; z-index: 1; }
.btn-grad { background: linear-gradient(135deg, var(--lav-deep), var(--peach-deep)); color: white; padding: 17px 42px; border-radius: var(--r-pill); font-size: 14px; font-weight: 400; letter-spacing: 0.05em; text-decoration: none; display: inline-block; box-shadow: 0 10px 40px rgba(139,124,186,0.45); transition: transform 0.4s ease, box-shadow 0.4s ease; }
.btn-grad:hover { transform: translateY(-4px); box-shadow: 0 18px 56px rgba(139,124,186,0.60); }
.btn-outline-light { color: rgba(253,249,244,0.70); padding: 17px 36px; border: 1.5px solid rgba(200,191,231,0.25); border-radius: var(--r-pill); font-size: 14px; font-weight: 400; text-decoration: none; letter-spacing: 0.04em; background: rgba(255,255,255,0.04); transition: all 0.35s ease; }
.btn-outline-light:hover { background: rgba(255,255,255,0.10); color: var(--cream); transform: translateY(-2px); }

@media (max-width: 960px) {
  .hero-text-block { padding: 130px 24px 80px; }
  .chapter-label, .scroll-hint { left: 24px; }
  .hero-chapter-num { display: none; }
  .origin-section { padding: 80px 24px 60px; }
  .origin-grid { grid-template-columns: 1fr; gap: 40px; }
  .pullquote-section, .values-section, .team-section { padding: 80px 24px; }
  .values-header { grid-template-columns: 1fr; gap: 24px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .impact-section { padding: 80px 24px; }
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .timeline-section { padding: 80px 24px; }
  .chapter-close { padding: 100px 24px 60px; }
}
@media (max-width: 600px) {
  .values-grid { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .team-grid   { grid-template-columns: 1fr;  margin: 0 auto;padding: 30px 0 30px 0; }
  .timeline-item { grid-template-columns: 70px 1fr; gap: 20px; }
  .tl-year { font-size: 20px; }
  .chapter-close{padding: 40px 24px 60px;}
}


/* ═══════════════════════════════════════════════════════════════
   12. PAGE: JOURNAL  (body.page-journal)
═══════════════════════════════════════════════════════════════ */

/* Reading progress */
#reading-bar { position: fixed; top: 0; left: 0; z-index: 300; height: 2px; width: 0%; background: linear-gradient(90deg, var(--lav-deep), var(--peach-deep), var(--gold)); transition: width 0.1s linear; }

/* Ambient */
body.page-journal .ambient {
  background: radial-gradient(ellipse 60% 45% at 10% 0%, rgba(200,191,231,0.22) 0%, transparent 55%),
              radial-gradient(ellipse 50% 40% at 90% 90%, rgba(240,201,184,0.18) 0%, transparent 55%),
              var(--cream);
}

/* Journal hero */
.journal-hero { padding: 140px 56px 80px; position: relative; overflow: hidden; }
.hero-header  { display: flex; align-items: flex-end; justify-content: space-between; max-width: 1080px; margin: 0 auto 64px; gap: 32px; flex-wrap: wrap; }
.journal-issue { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 18px; }
.journal-issue::before { content: ''; display: block; width: 22px; height: 1px; background: linear-gradient(90deg, var(--lav-deep), var(--peach-deep)); }
.journal-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(52px, 7vw, 90px); font-weight: 300; line-height: 0.95; letter-spacing: -0.02em; color: var(--ink); }
.journal-title em { font-style: italic; background: linear-gradient(135deg, var(--lav-deep), var(--peach-deep)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle { font-size: 15px; font-weight: 400; color: var(--ink-soft); max-width: 280px; line-height: 1.65; text-align: right; }

/* Featured article */
.featured-article { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 1.3fr 1fr; gap: 0; border-radius: 36px; overflow: hidden; box-shadow: var(--sh-card); background: var(--glass); border: 1.5px solid var(--glass-b); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); cursor: pointer; transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), box-shadow 0.5s ease; }
.featured-article:hover { transform: translateY(-6px); box-shadow: 0 32px 88px rgba(30,25,40,0.16); }
.feat-cover     { position: relative; overflow: hidden; min-height: 480px; }
.feat-cover-bg  { width: 100%; height: 100%; position: relative; transition: transform 0.7s cubic-bezier(0.16,1,0.3,1); display: flex; align-items: center; justify-content: center; }
.featured-article:hover .feat-cover-bg { transform: scale(1.04); }
.feat-cover-pattern { position: absolute; inset: 0; overflow: hidden; }
.feat-cover-circle  { position: absolute; border-radius: 50%; background: radial-gradient(circle, rgba(200,191,231,0.20) 0%, transparent 65%); animation: cover-float ease-in-out infinite; }
.feat-cover-text { position: relative; z-index: 1; padding: 48px 40px; display: flex; flex-direction: column; justify-content: flex-end; height: 100%; }
.feat-category   { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.18); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border-radius: var(--r-pill); padding: 5px 14px; font-size: 10px; font-weight: 500; letter-spacing: 0.10em; text-transform: uppercase; color: rgba(253,249,244,0.80); margin-bottom: auto; }
.feat-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 3vw, 40px); font-weight: 400; font-style: italic; color: var(--cream); line-height: 1.20; margin-top: 32px; }
.feat-content { padding: 44px 40px; display: flex; flex-direction: column; justify-content: space-between; }
.feat-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--lav-deep); margin-bottom: 18px; }
.feat-tag-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--lav-deep); }
.feat-article-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(26px, 2.5vw, 34px); font-weight: 400; color: var(--ink); line-height: 1.22; margin-bottom: 18px; }
.feat-excerpt  { font-size: 14px; font-weight: 400; color: var(--ink-soft); line-height: 1.78; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.feat-meta     { display: flex; align-items: center; justify-content: space-between; margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(200,191,231,0.20); }
.feat-author   { display: flex; align-items: center; gap: 10px; }
.feat-avatar   { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--lav-deep), var(--peach-deep)); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 15px; color: white; font-weight: 400; flex-shrink: 0; }
.feat-author-name { font-size: 13px; font-weight: 400; color: var(--ink); }
.feat-author-role { font-size: 11px; color: var(--ink-soft); }
.feat-read-time   { font-size: 11px; color: var(--ink-soft); letter-spacing: 0.04em; display: flex; align-items: center; gap: 5px; }
.feat-read-btn    { display: inline-flex; align-items: center; gap: 7px; margin-top: 24px; font-size: 13px; font-weight: 500; color: var(--lav-deep); text-decoration: none; letter-spacing: 0.02em; transition: gap 0.3s ease, color 0.3s ease; }
.feat-read-btn:hover { gap: 12px; color: var(--ink); }

/* Category filter */
.category-filter { max-width: 1080px; margin: 64px auto 48px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.filter-pill { padding: 9px 20px; border-radius: var(--r-pill); font-size: 13px; font-weight: 400; color: var(--ink-soft); background: rgba(255,255,255,0.55); border: 1.5px solid rgba(200,191,231,0.28); cursor: pointer; transition: all 0.3s ease; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); letter-spacing: 0.02em; -webkit-user-select: none; user-select: none; }
.filter-pill:hover { background: white; border-color: rgba(139,124,186,0.40); color: var(--ink); transform: translateY(-1px); }
.filter-pill.active { background: var(--ink); color: var(--cream); border-color: var(--ink); box-shadow: 0 4px 16px rgba(30,25,40,0.18); }
.filter-count { display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; border-radius: 50%; font-size: 10px; margin-left: 4px; background: rgba(200,191,231,0.25); color: var(--ink-soft); }
.filter-pill.active .filter-count { background: rgba(255,255,255,0.15); color: rgba(253,249,244,0.70); }

/* Article grid */
.article-grid { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.article-card { background: var(--glass); border: 1.5px solid rgba(255,255,255,0.78); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-radius: var(--r-card); overflow: hidden; box-shadow: var(--sh-soft); transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), box-shadow 0.5s ease; cursor: pointer; display: flex; flex-direction: column; }
.article-card:hover { transform: translateY(-8px); box-shadow: var(--sh-card); }
.article-card.wide { grid-column: span 2; }
.card-cover    { height: 200px; overflow: hidden; position: relative; }
.card-cover-bg { width: 100%; height: 100%; position: relative; transition: transform 0.7s cubic-bezier(0.16,1,0.3,1); display: flex; align-items: center; justify-content: center; }
.article-card:hover .card-cover-bg { transform: scale(1.06); }
.card-cover-emoji { font-size: 48px; position: relative; z-index: 1; filter: drop-shadow(0 4px 16px rgba(0,0,0,0.15)); animation: emoji-float 5s ease-in-out infinite; }
.card-cat-badge { position: absolute; top: 14px; left: 14px; z-index: 2; background: rgba(255,255,255,0.85); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border-radius: var(--r-pill); padding: 4px 12px; font-size: 10px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mid); }
.card-body    { padding: 24px 24px 20px; flex: 1; display: flex; flex-direction: column; }
.card-title   { font-family: 'Cormorant Garamond', serif; font-size: 21px; font-weight: 400; color: var(--ink); line-height: 1.25; margin-bottom: 10px; transition: color 0.3s; }
.article-card:hover .card-title { color: var(--lav-deep); }
.card-excerpt { font-size: 13px; font-weight: 400; color: var(--ink-soft); line-height: 1.70; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.card-footer  { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; padding-top: 14px; border-top: 1px solid rgba(200,191,231,0.18); }
.card-author  { font-size: 12px; color: var(--ink-soft); display: flex; align-items: center; gap: 6px; }
.card-dot     { width: 3px; height: 3px; border-radius: 50%; background: var(--lavender); }
.card-read-time { font-size: 11px; color: var(--ink-soft); opacity: 0.7; }
.card-arrow   { width: 30px; height: 30px; border-radius: 50%; background: rgba(200,191,231,0.18); display: flex; align-items: center; justify-content: center; font-size: 12px; color: var(--lav-deep); transition: all 0.3s ease; }
.article-card:hover .card-arrow { background: var(--ink); color: var(--cream); transform: rotate(-45deg); }
.article-card.wide .card-body   { padding: 28px 32px 24px; }
.article-card.wide .card-title  { font-size: 26px; }
.article-card.wide .card-cover  { height: 240px; }
.article-card.wide .card-excerpt { -webkit-line-clamp: 2; }

/* Newsletter */
.newsletter-section { max-width: 1080px; margin: 60px auto; background: linear-gradient(135deg, rgba(200,191,231,0.15), rgba(240,201,184,0.10)); border: 1.5px solid rgba(255,255,255,0.75); border-radius: 36px; padding: 64px 56px; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; position: relative; overflow: hidden; box-shadow: var(--sh-soft); }
.nl-orb-1, .nl-orb-2 { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(32px); }
.nl-orb-1 { width: 280px; height: 280px; top: -80px; left: -60px; background: rgba(200,191,231,0.22); }
.nl-orb-2 { width: 200px; height: 200px; bottom: -60px; right: -40px; background: rgba(240,201,184,0.18); }
.nl-label { display: flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 14px; position: relative; z-index: 1; }
.nl-label::before { content: ''; display: block; width: 20px; height: 1px; background: linear-gradient(90deg, var(--lav-deep), var(--peach-deep)); }
.nl-title    { font-family: 'Cormorant Garamond', serif; font-size: clamp(30px, 3.5vw, 42px); font-weight: 400; line-height: 1.15; color: var(--ink); position: relative; z-index: 1; margin-bottom: 14px; }
.nl-title em { font-style: italic; color: var(--lav-deep); }
.nl-sub      { font-size: 14px; font-weight: 400; color: var(--ink-soft); line-height: 1.65; position: relative; z-index: 1; }
.nl-form-side { position: relative; z-index: 1; }
.nl-stats    { display: flex; gap: 32px; margin-bottom: 32px; }
.nl-stat-num { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 300; color: var(--ink); line-height: 1; }
.nl-stat-lbl { font-size: 12px; color: var(--ink-soft); margin-top: 4px; }
.nl-input-row { display: flex; gap: 10px; }
.nl-input { flex: 1; padding: 14px 20px; border-radius: var(--r-pill); border: 1.5px solid rgba(200,191,231,0.40); background: rgba(255,255,255,0.70); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 400; color: var(--ink); outline: none; transition: border-color 0.3s, box-shadow 0.3s; }
.nl-input::placeholder { color: var(--ink-soft); }
.nl-input:focus { border-color: var(--lav-deep); box-shadow: 0 0 0 3px rgba(139,124,186,0.12); }
.nl-btn  { background: var(--ink); color: var(--cream); padding: 14px 26px; border-radius: var(--r-pill); font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 400; border: none; cursor: pointer; white-space: nowrap; transition: transform 0.3s, box-shadow 0.3s, opacity 0.3s; box-shadow: 0 4px 16px rgba(30,25,40,0.20); }
.nl-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(30,25,40,0.28); opacity: 0.88; }
.nl-note { font-size: 11px; color: var(--ink-soft); margin-top: 10px; }

/* More articles list */
.more-section { max-width: 1080px; margin: 0 auto; padding: 20px 0 60px; }
.more-header  { display: flex; align-items: center; justify-content: space-between; margin-bottom: 36px; }
.more-title   { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 400; color: var(--ink); }
.more-title em { font-style: italic; color: var(--lav-deep); }
.more-link    { font-size: 13px; color: var(--ink-soft); text-decoration: none; display: flex; align-items: center; gap: 5px; transition: gap 0.3s, color 0.3s; }
.more-link:hover { gap: 9px; color: var(--ink); }
.list-article { display: flex; align-items: flex-start; gap: 24px; padding: 24px 0; border-bottom: 1px solid rgba(200,191,231,0.18); cursor: pointer; transition: opacity 0.3s; }
.list-article:last-child { border-bottom: none; }
.list-article:hover { opacity: 0.80; }
.list-num     { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300; color: rgba(200,191,231,0.50); min-width: 40px; line-height: 1.1; }
.list-cat     { font-size: 10px; font-weight: 500; letter-spacing: 0.10em; text-transform: uppercase; color: var(--lav-deep); margin-bottom: 7px; }
.list-title   { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400; color: var(--ink); line-height: 1.25; margin-bottom: 7px; transition: color 0.3s; }
.list-article:hover .list-title { color: var(--lav-deep); }
.list-meta    { font-size: 12px; color: var(--ink-soft); display: flex; gap: 14px; align-items: center; }
.list-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--lavender); }
.list-thumb   { width: 96px; height: 80px; border-radius: 14px; flex-shrink: 0; overflow: hidden; display: flex; align-items: center; justify-content: center; font-size: 32px; transition: transform 0.4s ease; }
.list-article:hover .list-thumb { transform: scale(1.05); }

/* Topics */
.topics-section { max-width: 1080px; margin: 0 auto; padding: 0 0 80px; }
.topics-title   { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 400; color: var(--ink); margin-bottom: 24px; }
.topics-cloud   { display: flex; flex-wrap: wrap; gap: 10px; }
.topic-tag { padding: 9px 20px; border-radius: var(--r-pill); font-size: 13px; font-weight: 400; background: rgba(255,255,255,0.60); border: 1.5px solid rgba(200,191,231,0.28); color: var(--ink-soft); cursor: pointer; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); transition: all 0.3s ease; }
.topic-tag:hover { background: white; border-color: var(--lav-deep); color: var(--lav-deep); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(139,124,186,0.12); }

@media (max-width: 960px) {
  .journal-hero { padding: 120px 24px 60px; }
  .hero-header  { flex-direction: column; gap: 16px; }
  .hero-subtitle { text-align: left; max-width: 100%; }
  .featured-article { grid-template-columns: 1fr; }
  .feat-cover   { min-height: 280px; }
  .category-filter, .article-grid, .newsletter-section,
  .more-section, .topics-section { padding-left: 24px; padding-right: 24px; }
  .article-grid { grid-template-columns: 1fr; }
  .article-card.wide { grid-column: span 1; }
  .newsletter-section { grid-template-columns: 1fr; gap: 32px; padding: 48px 28px; }
  .nl-input-row { flex-direction: column; }
}
@media (max-width: 600px) {
  .article-grid { grid-template-columns: 1fr; padding: 0 16px; }
  .nl-stats     { gap: 20px; }
}


/* ═══════════════════════════════════════════════════════════════
   13. PAGE: DOWNLOAD  (body.page-download)
═══════════════════════════════════════════════════════════════ */

/* Noise texture */
.bg-noise { position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0.025; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); background-size: 200px 200px; }

/* BG mesh */
body.page-download .bg-mesh { background: radial-gradient(ellipse 70% 55% at 15% -5%, rgba(139,124,186,0.22) 0%, transparent 55%), radial-gradient(ellipse 55% 45% at 88% 95%, rgba(201,132,114,0.18) 0%, transparent 55%), radial-gradient(ellipse 40% 30% at 50% 45%, rgba(217,188,148,0.10) 0%, transparent 60%), var(--ink-dark); }

/* Hero */
body.page-download .hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; padding: 120px 56px 80px; position: relative; overflow: hidden; }
.hero-orb-1 { width: 560px; height: 560px; top: -150px; left: -100px; background: radial-gradient(circle, rgba(139,124,186,0.18) 0%, transparent 65%); animation-duration: 20s; }
.hero-orb-2 { width: 380px; height: 380px; bottom: -80px; right: 200px; background: radial-gradient(circle, rgba(201,132,114,0.14) 0%, transparent 65%); animation-duration: 26s; animation-delay: -8s; }
.hero-orb-3 { width: 250px; height: 250px; top: 30%; right: 100px; background: radial-gradient(circle, rgba(217,188,148,0.12) 0%, transparent 65%); animation-duration: 18s; animation-delay: -4s; }
.scan-beam  { position: absolute; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent 0%, rgba(200,191,231,0.20) 20%, rgba(200,191,231,0.50) 50%, rgba(200,191,231,0.20) 80%, transparent 100%); animation: scan-sweep 8s ease-in-out infinite; pointer-events: none; z-index: 0; }

/* Hero text */
.hero-text { position: relative; z-index: 2; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: #7e678f; border: 1px solid rgba(255,255,255,0.15); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-radius: var(--r-pill); padding: 7px 16px; font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: #ffffff; margin-bottom: 28px; animation: fade-up 0.9s cubic-bezier(0.16,1,0.3,1) both 0.1s; }
.badge-dot  { width: 5px; height: 5px; border-radius: 50%; background: linear-gradient(135deg, var(--lav-deep), var(--peach-deep)); animation: dot-pulse 2s ease-in-out infinite; }
body.page-download .hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(52px, 6.5vw, 86px); font-weight: 300; line-height: 1.05; letter-spacing: -0.02em; color: var(--cream); margin-bottom: 28px; animation: fade-up 1s cubic-bezier(0.16,1,0.3,1) both 0.25s; }
body.page-download .hero-title em { font-style: italic; background: linear-gradient(135deg, var(--lav) 0%, var(--peach) 60%, var(--gold) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
body.page-download .hero-body { font-size: 17px; font-weight: 400; color: rgba(253,249,244,0.78); line-height: 1.72; max-width: 440px; margin-bottom: 44px; animation: fade-up 1s cubic-bezier(0.16,1,0.3,1) both 0.4s; }
.store-row  { display: flex; gap: 14px; flex-wrap: wrap; animation: fade-up 1s cubic-bezier(0.16,1,0.3,1) both 0.55s; }
body.page-download .store-btn { display: inline-flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.10); border: 1.5px solid rgba(255,255,255,0.18); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-radius: 18px; padding: 14px 22px; text-decoration: none; transition: all 0.35s ease; position: relative; overflow: hidden; }
body.page-download .store-btn::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.05), transparent); opacity: 0; transition: opacity 0.3s; }
body.page-download .store-btn:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.28); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.25); }
body.page-download .store-btn:hover::before { opacity: 1; }
.store-icon { font-size: 28px; line-height: 1; }
.store-sub  { font-size: 10px; font-weight: 400; color: rgba(253,249,244,0.68); letter-spacing: 0.06em; display: block; }
.store-name { font-size: 16px; font-weight: 500; color: var(--cream); display: block; margin-top: 1px; }
.rating-strip { display: flex; align-items: center; gap: 20px; margin-top: 36px; flex-wrap: wrap; animation: fade-up 1s cubic-bezier(0.16,1,0.3,1) both 0.7s; }
.rating-item  { display: flex; align-items: center; gap: 8px; }
.rating-stars { color: #d9bc94; font-size: 13px; letter-spacing: 1px; }
.rating-text  { font-size: 12px; color: rgba(253,249,244,0.68); }
.rating-sep   { width: 1px; height: 18px; background: rgba(200,191,231,0.20); }
.rating-num   { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 300; color: var(--cream); }

/* Phone mockup */
.hero-visual { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; padding: 20px 0; animation: fade-up 1.2s cubic-bezier(0.16,1,0.3,1) both 0.5s; }
.phone-stage { position: relative; width: 340px; height: 680px; }
.phone-glow  { position: absolute; inset: -60px; background: radial-gradient(ellipse 70% 50% at 50% 55%, rgba(139,124,186,0.28) 0%, transparent 65%); filter: blur(20px); pointer-events: none; z-index: 0; animation: glow-breathe 4s ease-in-out infinite; }
.phone-shell { position: absolute; inset: 0; z-index: 1; background: linear-gradient(160deg, #2a2240 0%, #1e1928 60%, #16121e 100%); border-radius: 48px; border: 1.5px solid rgba(200,191,231,0.20); box-shadow: 0 40px 120px rgba(0,0,0,0.60), inset 0 1px 0 rgba(255,255,255,0.08), inset 0 -1px 0 rgba(255,255,255,0.03); overflow: hidden; }
.phone-island { position: absolute; top: 14px; left: 50%; transform: translateX(-50%); width: 100px; height: 28px; background: #000; border-radius: 20px; z-index: 5; }
.phone-screen { position: absolute; inset: 0; padding: 52px 20px 20px; display: flex; flex-direction: column; gap: 12px; overflow: hidden; }
.phone-screen::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% 20%, rgba(139,124,186,0.10) 0%, transparent 60%); pointer-events: none; }
.status-bar { display: flex; justify-content: space-between; align-items: center; font-size: 10px; color: rgba(253,249,244,0.60); padding: 0 4px; letter-spacing: 0.02em; }
.screen-greeting { font-size: 11px; color: rgba(253,249,244,0.50); letter-spacing: 0.03em; }
.screen-name { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 300; color: var(--cream); line-height: 1.1; margin-top: 2px; }
.screen-main-card { background: linear-gradient(135deg, rgba(200,191,231,0.15) 0%, rgba(240,201,184,0.10) 100%); border: 1px solid rgba(200,191,231,0.25); border-radius: 20px; padding: 16px 16px 14px; }
.smc-label { font-size: 9px; font-weight: 500; letter-spacing: 0.10em; text-transform: uppercase; color: rgba(200,191,231,0.60); }
.smc-value { font-family: 'Cormorant Garamond', serif; font-size: 38px; font-weight: 300; color: var(--cream); line-height: 1; margin: 4px 0; }
.smc-sub   { font-size: 11px; color: rgba(253,249,244,0.50); }
.smc-bar-row { display: flex; gap: 3px; align-items: flex-end; height: 36px; margin-top: 10px; }
.smc-bar   { flex: 1; border-radius: 3px 3px 2px 2px; background: linear-gradient(180deg, rgba(200,191,231,0.50), rgba(200,191,231,0.15)); animation: bar-appear 0.8s cubic-bezier(0.16,1,0.3,1) both; }
.screen-stats-row { display: flex; gap: 8px; }
.screen-stat-mini { flex: 1; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 11px 12px; }
.ssm-label { font-size: 8px; color: rgba(253,249,244,0.40); letter-spacing: 0.08em; text-transform: uppercase; }
.ssm-val   { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 300; color: var(--cream); margin-top: 2px; }
.screen-insight { background: linear-gradient(135deg, rgba(139,124,186,0.20), rgba(201,132,114,0.15)); border: 1px solid rgba(200,191,231,0.20); border-radius: 16px; padding: 12px 14px; display: flex; gap: 10px; align-items: flex-start; }
.insight-star { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.screen-bottom-nav { display: flex; justify-content: space-around; align-items: center; background: rgba(255,255,255,0.05); border-radius: 20px; padding: 10px 0; margin-top: auto; border: 1px solid rgba(255,255,255,0.07); }
.bnav-item { display: flex; flex-direction: column; align-items: center; gap: 3px; font-size: 7px; color: rgba(253,249,244,0.40); letter-spacing: 0.05em; text-transform: uppercase; }
.bnav-item.active { color: var(--lav); }
.bnav-icon { font-size: 18px; }
.phone-chip { position: absolute; z-index: 3; background: rgba(255,255,255,0.10); border: 1.5px solid rgba(255,255,255,0.18); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-radius: 18px; padding: 12px 16px; white-space: nowrap; animation: chip-float ease-in-out infinite; box-shadow: 0 8px 32px rgba(0,0,0,0.25); transition: transform 0.4s ease; }
.phone-chip:hover { transform: scale(1.05) translateY(-2px) !important; }
.chip-label { font-size: 10px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(253,249,244,0.68); margin-bottom: 4px; }
.chip-val   { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 300; color: var(--cream); }
.chip-sub   { font-size: 10px; color: rgba(253,249,244,0.60); margin-top: 2px; }

/* Feature strips */
.strips-section { position: relative; z-index: 1; background: var(--ink-dark); padding: 80px 56px 60px; }
.strips-header  { max-width: 1080px; margin: 0 auto 56px; }
.strip-eyebrow  { display: flex; align-items: center; gap: 12px; font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(200,191,231,0.72); margin-bottom: 14px; }
.strip-eyebrow::before { content: ''; display: block; width: 22px; height: 1px; background: linear-gradient(90deg, var(--lav-deep), var(--peach-deep)); }
.strip-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(34px, 4vw, 50px); font-weight: 300; line-height: 1.1; color: var(--cream); }
.strip-title em { font-style: italic; color: var(--lav); }
.feature-strips { max-width: 1080px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.feat-strip { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 24px; padding: 28px 32px; display: flex; align-items: center; gap: 28px; transition: all 0.4s cubic-bezier(0.16,1,0.3,1); cursor: pointer; position: relative; overflow: hidden; }
.feat-strip::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: linear-gradient(180deg, var(--feat-from), var(--feat-to)); opacity: 0; transition: opacity 0.4s ease; }
.feat-strip:hover { background: rgba(255,255,255,0.06); border-color: rgba(200,191,231,0.18); transform: translateX(4px); }
.feat-strip:hover::before { opacity: 1; }
.strip-icon { width: 52px; height: 52px; border-radius: 16px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 22px; transition: transform 0.4s ease; }
.feat-strip:hover .strip-icon { transform: scale(1.12) rotate(-4deg); }
.strip-text {}
.strip-name { font-size: 16px; font-weight: 500; color: var(--cream); margin-bottom: 5px; }
.strip-desc { font-size: 13px; font-weight: 400; color: rgba(253,249,244,0.74); line-height: 1.55; }
.strip-arrow { font-size: 16px; color: rgba(200,191,231,0.35); transition: all 0.3s ease; }
.feat-strip:hover .strip-arrow { color: var(--lav); transform: translateX(4px); }

/* Cream section */
.cream-section { background: var(--cream); color: var(--ink); position: relative; }

/* Stats bar */
body.page-download .stats-bar { background: linear-gradient(135deg, rgba(200,191,231,0.12), rgba(240,201,184,0.08)); border-top: 1px solid rgba(200,191,231,0.15); border-bottom: 1px solid rgba(200,191,231,0.15); padding: 52px 56px; display: flex; justify-content: space-around; align-items: center; gap: 20px; flex-wrap: wrap; }
body.page-download .stat-item { text-align: center; }
body.page-download .stat-num { font-family: 'Cormorant Garamond', serif; font-size: clamp(40px, 4.5vw, 58px); font-weight: 300; line-height: 1; background: linear-gradient(135deg, var(--lav-deep), var(--peach-deep)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
body.page-download .stat-lbl { font-size: 13px; color: var(--ink-soft); margin-top: 7px; }
body.page-download .stat-div { width: 1px; height: 56px; background: rgba(200,191,231,0.25); }

/* Proof section download */
.proof-section   { padding: 100px 56px 80px; max-width: 1080px; margin: 0 auto; }
.proof-header    { margin-bottom: 56px; }
.proof-eyebrow   { display: flex; align-items: center; gap: 12px; font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 14px; }
.proof-eyebrow::before { content: ''; display: block; width: 22px; height: 1px; background: linear-gradient(90deg, var(--lav-deep), var(--peach-deep)); }
.proof-title     { font-family: 'Cormorant Garamond', serif; font-size: clamp(34px, 4vw, 50px); font-weight: 400; line-height: 1.1; color: var(--ink); }
.proof-title em  { font-style: italic; color: var(--lav-deep); }
.proof-grid      { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
body.page-download .proof-card { background: rgba(255,255,255,0.70); border: 1.5px solid rgba(255,255,255,0.80); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-radius: var(--r-card); padding: 36px 32px; box-shadow: 0 8px 40px rgba(30,25,40,0.07); transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), box-shadow 0.5s ease; position: relative; }
body.page-download .proof-card:hover { transform: translateY(-6px); box-shadow: 0 24px 64px rgba(30,25,40,0.12); }
body.page-download .proof-card.large { grid-row: span 2; display: flex; flex-direction: column; justify-content: space-between; }
.proof-rating    { color: #d9bc94; font-size: 15px; letter-spacing: 2px; margin-bottom: 18px; }
body.page-download .proof-quote { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 400; font-style: italic; color: var(--ink); line-height: 1.55; margin-bottom: 24px; flex: 1; }
body.page-download .proof-card.large .proof-quote { font-size: 24px; }
.proof-author-row { display: flex; align-items: center; gap: 12px; }
.proof-av        { width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 17px; color: white; font-weight: 400; }
.proof-name      { font-size: 14px; font-weight: 400; color: var(--ink); }
.proof-role      { font-size: 12px; color: var(--ink-soft); margin-top: 2px; }
.proof-badge     { position: absolute; top: 20px; right: 20px; background: rgba(200,191,231,0.20); border-radius: var(--r-pill); padding: 4px 12px; font-size: 10px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--lav-deep); }

/* Download CTA */
.download-cta    { background: var(--ink-dark); padding: 120px 56px 140px; text-align: center; position: relative; overflow: hidden; }
.dcta-orb-1, .dcta-orb-2, .dcta-orb-3 { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(50px); }
.dcta-orb-1 { width: 500px; height: 500px; top: -120px; left: -100px; background: rgba(139,124,186,0.16); animation: orb-drift 22s ease-in-out infinite; }
.dcta-orb-2 { width: 380px; height: 380px; bottom: -100px; right: -80px; background: rgba(201,132,114,0.14); animation: orb-drift 28s ease-in-out infinite reverse; }
.dcta-orb-3 { width: 280px; height: 280px; top: 40%; left: 55%; background: rgba(217,188,148,0.10); animation: orb-drift 18s ease-in-out infinite; animation-delay: -6s; }
.dcta-phones { display: flex; align-items: flex-end; justify-content: center; gap: 16px; margin-bottom: 56px; position: relative; z-index: 1; }
.mini-phone  { background: linear-gradient(160deg, #2a2240, #1e1928); border-radius: 24px; border: 1px solid rgba(200,191,231,0.18); overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,0.50); transition: transform 0.4s ease; }
.mini-phone:hover { transform: translateY(-8px) scale(1.03); }
.mp-main { width: 140px; height: 280px; }
.mp-side { width: 100px; height: 220px; opacity: 0.75; }
.mp-far  { width: 75px;  height: 165px; opacity: 0.50; }
.mp-screen { padding: 20px 12px 12px; height: 100%; display: flex; flex-direction: column; gap: 8px; }
.mp-bar-row { display: flex; gap: 3px; align-items: flex-end; height: 40px; }
.mp-bar     { flex: 1; border-radius: 2px; background: linear-gradient(180deg, rgba(200,191,231,0.45), rgba(200,191,231,0.10)); }
.mp-card    { background: rgba(255,255,255,0.06); border-radius: 8px; padding: 8px; font-size: 8px; color: rgba(253,249,244,0.50); }
.mp-island  { width: 50px; height: 12px; background: #000; border-radius: 8px; margin: 0 auto 8px; }
.dcta-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(200,191,231,0.72); margin-bottom: 20px; position: relative; z-index: 1; }
.dcta-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(44px, 6vw, 80px); font-weight: 300; line-height: 1.05; color: var(--cream); position: relative; z-index: 1; letter-spacing: -0.02em; }
.dcta-title em { font-style: italic; background: linear-gradient(135deg, var(--lav), var(--peach), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.dcta-sub   { font-size: 18px; font-weight: 400; color: rgba(253,249,244,0.76); max-width: 420px; margin: 22px auto 52px; line-height: 1.65; position: relative; z-index: 1; }
.dcta-store-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; margin-bottom: 28px; }
.dcta-store-btn { display: inline-flex; align-items: center; gap: 14px; background: rgba(255,255,255,0.10); border: 1.5px solid rgba(255,255,255,0.20); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-radius: 20px; padding: 18px 28px; text-decoration: none; transition: all 0.4s ease; }
.dcta-store-btn:hover { background: rgba(255,255,255,0.18); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.30); }
.dcta-store-btn.primary { background: linear-gradient(135deg, var(--lav-deep), var(--peach-deep)); border-color: transparent; box-shadow: 0 8px 32px rgba(139,124,186,0.45); }
.dcta-store-btn.primary:hover { box-shadow: 0 16px 56px rgba(139,124,186,0.60); }
.dcta-icon  { font-size: 32px; }
.dcta-sub-text { font-size: 11px; color: rgba(253,249,244,0.72); display: block; letter-spacing: 0.05em; }
.dcta-name  { font-size: 18px; font-weight: 500; color: var(--cream); display: block; margin-top: 1px; }
.dcta-qr-note { font-size: 12px; color: rgba(253,249,244,0.50); position: relative; z-index: 1; }

@media (max-width: 960px) {
  body.page-download .hero { grid-template-columns: 1fr; padding: 120px 24px 60px; gap: 40px; }
  .hero-visual { order: -1; }
  .phone-stage { width: 260px; height: 520px; }
  .phone-chip  { display: none; }
  .strips-section  { padding: 60px 24px; }
  .proof-section   { padding: 60px 24px; }
  .proof-grid      { grid-template-columns: 1fr; }
  body.page-download .proof-card.large { grid-row: span 1; }
  body.page-download .stats-bar { padding: 40px 24px; }
  body.page-download .stat-div { display: none; }
  .download-cta    { padding: 80px 24px 100px; }
  .dcta-phones     { gap: 10px; }
  .mp-side, .mp-far { display: none; }
}
.social-proof-section {
  padding: 45px 24px 19px;
}
@media (max-width: 600px) {
  .store-row { flex-direction: column; max-width: 260px; }
  .dcta-store-row { flex-direction: column; align-items: center; }
  body.page-home .hero{ padding: 100px 16px 40px; }
  .social-proof-section { padding: 5px 24px 30px; }
  .faq-section{ padding: 40px 24px 60px; }
  body.page-home .cta-section{padding: 20px 24px;}
  body.page-features .feat-row{padding: 40px 0;}
  body.page-pricing .pricing-hero{padding: 80px 16px 40px;}
  .proof-strip{    padding: 10px 24px;}
  .team-section{        padding: 40px 24px;}
}