/* public_html/assets/css/bloom-landing.css
   Bloom premium landing system. Implements bloom_landing_redesign.md.
   Display: Cormorant Garamond. UI/body: DM Sans. Single accent #e8447a. */

:root {
  --primary: #e8447a;
  --primary-active: #c73368;
  --primary-tint: #fdf0f4;
  --ink: #222222;
  --body: #3f3f3f;
  --muted: #6a6a6a;
  --muted-soft: #929292;
  --canvas: #ffffff;
  --soft: #f7f7f7;
  --hairline: #dddddd;
  --hairline-soft: #ebebeb;
  --border-strong: #c1c1c1;
  --success: #1a7a3a;
  --legal: #428bff;
  --phase-menstrual: #E87D8B;
  --phase-follicular: #F5C842;
  --phase-ovulatory: #4CAF76;
  --phase-luteal: #7B68EE;
  --error: #D94F4F;
  --font-heading: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; padding-top: 64px;
  background-color: var(--canvas); color: var(--ink);
  font-family: var(--font-body); font-size: 16px; font-weight: 400; line-height: 1.6;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 600; line-height: 1.12; color: var(--ink); margin: 0; font-optical-sizing: auto; letter-spacing: -0.015em; }
h1 { font-size: clamp(38px, 5.2vw, 66px); font-weight: 540; }
h2 { font-size: clamp(30px, 4vw, 50px); font-weight: 540; }
h3 { font-size: clamp(22px, 3vw, 32px); }
h4 { font-size: 20px; font-weight: 600; }
p { margin: 0; }
a { color: var(--primary); text-decoration: none; }
img { max-width: 100%; display: block; }
.bloom-italic { font-style: italic; color: var(--primary); font-weight: 400; }

.bloom-container { max-width: 1200px; margin: 0 auto; padding: 0 80px; }
section { padding: 96px 0; }
.section-heading { font-family: var(--font-heading); font-size: 40px; font-weight: 600; text-align: center; margin-bottom: 56px; color: var(--ink); }
.eyebrow { font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--primary); margin-bottom: 16px; display: block; }
.eyebrow-soft { font-family: var(--font-body); font-size: 12px; font-weight: 500; letter-spacing: 0.08em; color: var(--muted-soft); margin-bottom: 16px; display: block; }
.bloom-divider { width: 48px; height: 2px; background: var(--primary); margin: 0 auto 48px; }
.trust-line { font-family: var(--font-body); font-size: 13px; font-weight: 400; color: var(--muted-soft); }
.text-link { color: var(--primary); font-family: var(--font-body); font-size: 15px; font-weight: 500; display: inline-flex; align-items: center; gap: 6px; }
.text-link svg { width: 16px; height: 16px; }

/* Buttons */
.btn-bloom-primary { display: inline-flex; align-items: center; gap: 8px; background-color: var(--primary); color: #fff; font-family: var(--font-body); font-size: 15px; font-weight: 500; padding: 14px 28px; border-radius: 8px; border: none; cursor: pointer; transition: background-color 120ms ease, transform 150ms ease; text-decoration: none; line-height: 1.25; }
.btn-bloom-primary:hover { background-color: var(--primary-active); transform: scale(1.02); }
.btn-bloom-primary:active { background-color: var(--primary-active); transform: scale(0.99); }
.btn-bloom-secondary { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--ink); font-family: var(--font-body); font-size: 15px; font-weight: 500; padding: 13px 27px; border-radius: 8px; border: 1.5px solid var(--ink); cursor: pointer; transition: background-color 120ms ease, border-color 120ms ease; text-decoration: none; line-height: 1.25; }
.btn-bloom-secondary:hover { background-color: var(--soft); }
.btn-bloom-ghost { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--ink); font-family: var(--font-body); font-size: 15px; font-weight: 500; padding: 13px 27px; border-radius: 8px; border: 1.5px solid var(--hairline); cursor: pointer; transition: background-color 120ms ease, border-color 120ms ease; text-decoration: none; line-height: 1.25; }
.btn-bloom-ghost:hover { border-color: var(--border-strong); background-color: var(--soft); }

/* Navigation */
nav.bloom-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: 64px; background-color: rgba(255,255,255,0.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid transparent; transition: border-color 200ms ease; }
nav.bloom-nav.scrolled { border-bottom-color: var(--hairline-soft); }
.bloom-nav .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.bloom-nav .nav-links { display: flex; gap: 30px; align-items: center; }
.bloom-nav .nav-links a { font-family: var(--font-body); font-size: 14px; font-weight: 500; color: var(--body); transition: color 120ms ease; }
.bloom-nav .nav-links a:hover { color: var(--ink); }
.bloom-nav .nav-cta { display: flex; align-items: center; gap: 10px; }
.bloom-nav .nav-cta .btn-bloom-primary { padding: 10px 20px; font-size: 14px; }
.bloom-nav .nav-cta a.signin { font-family: var(--font-body); font-size: 14px; font-weight: 500; color: var(--ink); }

/* Entrance animation */
.bloom-animate { opacity: 0; transform: translateY(24px); transition: opacity 600ms ease, transform 600ms ease; }
.bloom-animate.in-view { opacity: 1; transform: translateY(0); }
.bloom-animate-delay-1 { transition-delay: 100ms; }
.bloom-animate-delay-2 { transition-delay: 200ms; }
.bloom-animate-delay-3 { transition-delay: 300ms; }
.bloom-animate-delay-4 { transition-delay: 400ms; }

/* Feature card */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { background: var(--canvas); border: 1px solid var(--hairline-soft); border-radius: 16px; padding: 32px; transition: border-color 200ms ease, box-shadow 200ms ease; }
.feature-card:hover { border-color: var(--primary); box-shadow: 0 4px 24px rgba(232,68,122,0.08); }
.feature-card-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--primary-tint); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.feature-card-icon svg { width: 22px; height: 22px; color: var(--primary); }
.feature-card h3 { font-family: var(--font-body); font-size: 17px; font-weight: 600; color: var(--ink); margin-bottom: 8px; line-height: 1.3; }
.feature-card p { font-family: var(--font-body); font-size: 14px; font-weight: 400; color: var(--muted); line-height: 1.6; margin: 0; }

/* Alternating feature row */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-bottom: 80px; }
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse .feature-row-text { order: 2; }
.feature-row-text .eyebrow { margin-bottom: 12px; }
.feature-row-text h3 { font-family: var(--font-heading); font-size: 36px; font-weight: 600; color: var(--ink); line-height: 1.2; margin-bottom: 16px; }
.feature-row-text p { font-size: 16px; color: var(--body); line-height: 1.7; margin-bottom: 24px; }
.feature-row-visual { background: var(--primary-tint); border-radius: 24px; aspect-ratio: 4 / 3; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; padding: 32px; }

/* Stat block */
.stats-band { display: flex; justify-content: center; align-items: stretch; border-top: 1px solid var(--hairline-soft); }
.stat-block { text-align: center; padding: 24px 48px; }
.stat-block + .stat-block { border-left: 1px solid var(--hairline-soft); }
.stat-number { font-family: var(--font-heading); font-size: 56px; font-weight: 700; color: var(--ink); line-height: 1; display: block; margin-bottom: 8px; }
.stat-label { font-family: var(--font-body); font-size: 14px; font-weight: 500; color: var(--muted); }

/* Phone mockup */
.phone-frame { width: 260px; height: 520px; background: #1a1a1a; border-radius: 40px; padding: 12px; box-shadow: 0 32px 80px rgba(0,0,0,0.18), 0 8px 16px rgba(0,0,0,0.08); position: relative; margin: 0 auto; z-index: 2; }
.phone-screen { background: #fff; border-radius: 30px; height: 100%; overflow: hidden; position: relative; padding: 16px; }
.hero-orb { position: absolute; width: 400px; height: 400px; border-radius: 50%; background: linear-gradient(135deg, var(--primary-tint) 0%, var(--soft) 100%); z-index: 1; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }

/* Two-column hero */
.hero-2col { display: grid; grid-template-columns: 55% 45%; gap: 48px; align-items: center; min-height: calc(100vh - 64px); padding: 64px 0; }
.hero-2col.split6040 { grid-template-columns: 60% 40%; }
.hero-2col .hero-text h1 { font-size: clamp(40px, 5.5vw, 68px); font-weight: 600; margin-bottom: 22px; }
.hero-2col .hero-text p.lead { font-size: 16px; color: var(--body); max-width: 440px; margin-bottom: 28px; line-height: 1.7; }
.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }

/* Score ring */
.score-ring { width: 200px; height: 200px; border-radius: 50%; display: flex; align-items: center; justify-content: center; position: relative; }
.score-ring .ring-center { text-align: center; }
.score-ring .ring-num { font-family: var(--font-heading); font-size: 48px; font-weight: 700; color: var(--ink); line-height: 1; }
.score-ring .ring-label { font-family: var(--font-body); font-size: 12px; color: var(--muted); }
.score-bars { margin-top: 24px; width: 100%; max-width: 260px; }
.score-bar-row { margin-bottom: 12px; }
.score-bar-row .lbl { font-family: var(--font-body); font-size: 12px; color: var(--muted); margin-bottom: 4px; display: block; }
.score-bar-track { height: 6px; background: var(--hairline-soft); border-radius: 3px; overflow: hidden; }
.score-bar-fill { height: 100%; border-radius: 3px; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.price-card2 { background: #fff; border: 1px solid var(--hairline-soft); border-radius: 16px; padding: 36px; display: flex; flex-direction: column; }
.price-card2.recommended { border: 2px solid var(--primary); box-shadow: 0 8px 32px rgba(232,68,122,0.12); position: relative; }
.price-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--primary); color: #fff; font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 14px; border-radius: 99px; }
.price-name { font-family: var(--font-body); font-size: 14px; font-weight: 500; color: var(--muted); }
.price-name.accent { color: var(--primary); font-weight: 600; }
.price-amt { font-family: var(--font-heading); font-size: 48px; font-weight: 700; color: var(--ink); line-height: 1; margin: 10px 0 2px; }
.price-sub { font-family: var(--font-body); font-size: 14px; color: var(--muted); }
.price-divider { height: 1px; background: var(--hairline-soft); margin: 20px 0; }
.price-features { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.price-features li { font-family: var(--font-body); font-size: 14px; color: var(--body); padding: 8px 0; display: flex; align-items: flex-start; gap: 10px; }
.price-features li svg { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; margin-top: 1px; }
.price-features li.free svg { color: var(--phase-ovulatory); }
.save-pill { display: inline-block; background: #eef8f2; color: var(--success); font-family: var(--font-body); font-size: 11px; font-weight: 600; border-radius: 99px; padding: 3px 10px; margin-left: 8px; }
.market-pills { display: flex; gap: 8px; justify-content: center; margin-top: 18px; }
.market-pills a { font-family: var(--font-body); font-size: 14px; font-weight: 500; padding: 8px 18px; border-radius: 6px; }
.market-pills a.active { background: var(--primary); color: #fff; }
.market-pills a.inactive { background: #fff; border: 1px solid var(--hairline); color: var(--muted); }

/* FAQ accordion */
.faq { max-width: 760px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--hairline-soft); }
.faq summary { list-style: none; cursor: pointer; padding: 18px 0; font-family: var(--font-body); font-size: 15px; font-weight: 500; color: var(--ink); display: flex; justify-content: space-between; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 22px; color: var(--primary); font-weight: 400; }
.faq details[open] summary::after { content: '-'; }
.faq .faq-a { font-family: var(--font-body); font-size: 14px; color: var(--body); padding: 0 0 18px; line-height: 1.7; }

/* Closing CTA */
.closing-cta { text-align: center; }
.closing-cta.tint { background: var(--primary-tint); }
.closing-cta.ivory { background: #fff9e6; }
.closing-cta.ink { background: var(--ink); }
.closing-cta.ink h2, .closing-cta.ink p { color: #fff; }
.cta-marker { display: flex; flex-direction: column; align-items: center; gap: 8px; margin-bottom: 24px; }
.cta-marker span { height: 2px; background: var(--primary); display: block; }
.cta-marker span:nth-child(1) { width: 40px; }
.cta-marker span:nth-child(2) { width: 60px; }
.cta-marker span:nth-child(3) { width: 40px; }
.closing-cta h2 { font-size: clamp(32px, 4vw, 48px); }
.closing-cta p { font-family: var(--font-body); font-size: 17px; color: var(--body); max-width: 480px; margin: 24px auto 30px; }
.closing-cta.ink p { color: #cccccc; }

/* Feature pills strip */
.pill-strip { background: var(--soft); padding: 20px 0; overflow: hidden; }
.pill-strip-inner { display: flex; gap: 0; justify-content: center; align-items: center; flex-wrap: wrap; font-family: var(--font-body); font-size: 13px; font-weight: 500; color: var(--body); }
.pill-strip-inner span.pill { padding: 0 18px; }
.pill-strip-inner span.dot { width: 4px; height: 4px; border-radius: 50%; background: var(--hairline); }

/* Numbered rows (features) */
.num-row { display: grid; grid-template-columns: 80px 1fr 60px; gap: 24px; align-items: center; padding: 32px 0; border-bottom: 1px solid var(--hairline-soft); }
.num-row:last-child { border-bottom: none; }
.num-row .num { font-family: var(--font-heading); font-size: 64px; font-weight: 400; color: var(--hairline-soft); line-height: 1; }
.num-row .num-title { font-family: var(--font-body); font-size: 20px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.num-row .num-desc { font-family: var(--font-body); font-size: 15px; color: var(--body); }

/* fact list (home safety, etc.) */
.fact-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fact-item { display: flex; align-items: center; gap: 10px; font-family: var(--font-body); font-size: 15px; font-weight: 500; color: var(--ink); }
.fact-item svg { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

/* Footer */
.bloom-footer { background: #1C2B35; color: #cccccc; padding: 72px 0 0; font-family: var(--font-body); }
.bloom-footer .cols { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.bloom-footer .brandcol p { color: #888888; font-size: 14px; margin-top: 16px; max-width: 280px; line-height: 1.7; }
.bloom-footer h4 { font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #888888; margin: 0 0 16px; }
.bloom-footer ul { list-style: none; padding: 0; margin: 0; }
.bloom-footer li { line-height: 2.2; }
.bloom-footer li a { color: #cccccc; font-size: 14px; }
.bloom-footer li a:hover { color: #f0608c; }
.bloom-footer .legal { background: #131e24; }
.bloom-footer .legal-inner { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; flex-wrap: wrap; gap: 8px; }
.bloom-footer .legal-inner span { color: #666666; font-size: 12px; }
.bloom-footer .legal-inner a { color: var(--legal); font-size: 12px; }

/* ===================================================================
   DARK LUXE HERO SYSTEM (bloom_landing_redesign — premium overhaul)
   Deep plum hero bands, Rose-Quartz spotlight, gold hairlines, glass.
   =================================================================== */
.hero-dark {
  position: relative;
  margin-top: -64px;                         /* pull up behind fixed nav */
  padding: calc(64px + 88px) 0 100px;
  overflow: hidden;
  isolation: isolate;
  --gold: #d9b48a;
  background:
    radial-gradient(115% 80% at 72% -12%, rgba(232,68,122,0.42) 0%, rgba(232,68,122,0) 55%),
    radial-gradient(95% 75% at 8% 115%, rgba(123,104,238,0.28) 0%, rgba(123,104,238,0) 60%),
    linear-gradient(158deg, #190d13 0%, #271320 46%, #180c12 100%);
}
.hero-dark::after {                          /* fine grain texture */
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-dark > .bloom-container { position: relative; z-index: 2; }
.hero-dark .orb { position: absolute; border-radius: 50%; filter: blur(72px); z-index: 0; pointer-events: none; }
.hero-dark .orb1 { width: 500px; height: 500px; top: -140px; right: -90px; background: radial-gradient(circle, rgba(232,68,122,0.75) 0%, rgba(232,68,122,0) 70%); opacity: 0.85; }
.hero-dark .orb2 { width: 440px; height: 440px; bottom: -180px; left: -120px; background: radial-gradient(circle, rgba(123,104,238,0.6) 0%, rgba(123,104,238,0) 70%); opacity: 0.7; }
.hero-dark .gold-rule { position: absolute; left: 0; right: 0; top: 64px; height: 1px; z-index: 1; background: linear-gradient(90deg, transparent, rgba(217,180,138,0.45), transparent); }

/* Dark hero typography */
.hero-dark h1, .hero-dark h2, .hero-dark h3 { color: #ffffff; }
.hero-dark .hero-2col { min-height: auto; padding: 0; }
.hero-dark .hero-text p.lead, .hero-dark .lead { color: rgba(255,255,255,0.74); }
.hero-dark p { color: rgba(255,255,255,0.74); }
.hero-dark .bloom-italic { color: #f7adc7; }
.hero-dark .trust-line { color: rgba(255,255,255,0.5); }
.hero-dark .eyebrow { color: #f7adc7; }
.hero-dark .eyebrow-soft { color: rgba(255,255,255,0.62); }
.hero-dark .text-link { color: #f7adc7; }

/* Chip eyebrow */
.hero-chip { display: inline-flex; align-items: center; gap: 9px; padding: 7px 16px; margin-bottom: 26px; border: 1px solid rgba(217,180,138,0.45); border-radius: 999px; background: rgba(255,255,255,0.05); font-family: var(--font-body); font-size: 12px; font-weight: 500; letter-spacing: 0.05em; color: rgba(255,255,255,0.88); }
.hero-chip .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 10px 1px rgba(232,68,122,0.95); }

/* Glass card (for abstract hero visuals) */
.glass { background: rgba(255,255,255,0.06); -webkit-backdrop-filter: blur(22px); backdrop-filter: blur(22px); border: 1px solid rgba(255,255,255,0.14); border-radius: 28px; box-shadow: 0 40px 100px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.12); }
.hero-dark .glass { padding: 32px; position: relative; z-index: 2; }
.hero-dark .glass::before { content: ""; position: absolute; inset: -1px; border-radius: 28px; padding: 1px; background: linear-gradient(140deg, rgba(247,173,199,0.5), rgba(217,180,138,0.25), transparent 60%); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }

/* Glowing visuals on dark */
.hero-dark .hero-orb { display: none; }
.hero-dark .phone-frame { box-shadow: 0 44px 90px rgba(0,0,0,0.5), 0 0 90px rgba(232,68,122,0.42); }
.hero-dark .score-ring { filter: drop-shadow(0 0 40px rgba(232,68,122,0.4)); }
.hero-dark .score-ring .ring-num, .hero-dark .glass .ring-num { color: #fff; }
.hero-dark .glass .ring-label, .hero-dark .glass .lbl { color: rgba(255,255,255,0.7); }

/* Buttons on dark */
.hero-dark .btn-bloom-primary { box-shadow: 0 12px 32px rgba(232,68,122,0.48); }
.hero-dark .btn-bloom-ghost, .hero-dark .btn-bloom-secondary { border-color: rgba(255,255,255,0.32); color: #fff; }
.hero-dark .btn-bloom-ghost:hover, .hero-dark .btn-bloom-secondary:hover { border-color: rgba(255,255,255,0.65); background: rgba(255,255,255,0.07); }

/* Slim hero (pricing / about / contact / legal) */
.hero-dark.slim { padding: calc(64px + 76px) 0 76px; text-align: center; }
.hero-dark.slim .bloom-container { max-width: 860px; }
.hero-dark.slim .hero-chip, .hero-dark.slim .market-pills { justify-content: center; }
.hero-dark.slim h1 { font-size: clamp(38px, 5vw, 60px); }
.hero-dark.slim .lead { margin-left: auto; margin-right: auto; max-width: 560px; }
.hero-dark.slim .market-pills a.inactive { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.7); }

/* Nav: transparent over hero, solid on scroll */
nav.bloom-nav { background: transparent; -webkit-backdrop-filter: none; backdrop-filter: none; border-bottom: 1px solid transparent; }
nav.bloom-nav .nav-links a { color: rgba(255,255,255,0.82); }
nav.bloom-nav .nav-links a:hover { color: #ffffff; }
nav.bloom-nav .nav-cta a.signin { color: #ffffff; }
nav.bloom-nav .nav-inner > a img { filter: brightness(0) invert(1); transition: filter 200ms ease; }
nav.bloom-nav.scrolled { background: rgba(255,255,255,0.92); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); border-bottom-color: var(--hairline-soft); }
nav.bloom-nav.scrolled .nav-links a { color: var(--body); }
nav.bloom-nav.scrolled .nav-links a:hover { color: var(--ink); }
nav.bloom-nav.scrolled .nav-cta a.signin { color: var(--ink); }
nav.bloom-nav.scrolled .nav-inner > a img { filter: none; }

@media (max-width: 768px) {
  .hero-dark { padding: calc(64px + 48px) 0 64px; text-align: center; }
  .hero-dark .hero-chip { justify-content: center; }
  .hero-dark .orb1 { width: 320px; height: 320px; }
  .hero-dark .orb2 { width: 300px; height: 300px; }
  .hero-dark.slim { padding: calc(64px + 44px) 0 56px; }
}

/* ===================================================================
   PREMIUM OVERHAUL v2 — Fraunces type, app mockup, bento, segmented.
   =================================================================== */

/* --- Type polish --- */
.bloom-italic { font-style: italic; font-weight: 500; }
.eyebrow { font-size: 12px; letter-spacing: 0.16em; }
.section-heading { font-weight: 540; letter-spacing: -0.02em; font-size: clamp(30px, 4vw, 46px); }
.lead { letter-spacing: -0.01em; }
.btn-bloom-primary, .btn-bloom-secondary, .btn-bloom-ghost { border-radius: 10px; font-weight: 600; letter-spacing: -0.005em; }
.text-link { font-weight: 600; }
.text-link:hover { gap: 9px; }

/* --- Premium phone app screen --- */
.phone-frame { width: 280px; height: 580px; background: linear-gradient(160deg, #2b2b30, #141417); border-radius: 46px; padding: 11px; }
.phone-frame .phone-notch { position: absolute; top: 20px; left: 50%; transform: translateX(-50%); width: 96px; height: 24px; background: #141417; border-radius: 0 0 16px 16px; z-index: 5; }
.phone-screen { border-radius: 36px; padding: 0; }
.app-screen { display: flex; flex-direction: column; height: 100%; background: linear-gradient(180deg, #fff7fa 0%, #ffffff 32%); font-family: var(--font-body); }
.app-status { display: flex; justify-content: space-between; align-items: center; padding: 16px 22px 4px; font-size: 12px; font-weight: 700; color: var(--ink); }
.app-status .app-dots { width: 42px; height: 8px; border-radius: 4px; background: linear-gradient(90deg, var(--ink) 0 60%, var(--hairline) 60% 100%); opacity: 0.55; }
.app-head { display: flex; justify-content: space-between; align-items: center; padding: 8px 22px 6px; }
.app-hi { font-family: var(--font-heading); font-size: 19px; font-weight: 600; color: var(--ink); letter-spacing: -0.01em; }
.app-date { font-size: 11px; color: var(--muted); margin-top: 2px; }
.app-ava { width: 36px; height: 36px; border-radius: 50%; background: radial-gradient(circle at 30% 30%, #f7adc7, var(--primary)); box-shadow: 0 4px 12px rgba(232,68,122,0.35); }
.app-ring-wrap { display: flex; flex-direction: column; align-items: center; padding: 10px 0 4px; }
.app-ring { width: 168px; height: 168px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: conic-gradient(from 220deg, var(--primary) 0%, #f7adc7 46%, rgba(232,68,122,0.10) 46%, rgba(232,68,122,0.10) 100%); box-shadow: 0 14px 36px rgba(232,68,122,0.28); position: relative; }
.app-ring::after { content: ""; position: absolute; width: 9px; height: 9px; border-radius: 50%; background: #fff; border: 2px solid var(--primary); top: 12px; left: 50%; transform: translateX(-50%); box-shadow: 0 0 8px rgba(232,68,122,0.7); }
.app-ring-inner { width: 130px; height: 130px; border-radius: 50%; background: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: inset 0 1px 4px rgba(0,0,0,0.04); }
.app-day { font-family: var(--font-heading); font-size: 52px; font-weight: 600; color: var(--ink); line-height: 1; letter-spacing: -0.02em; }
.app-day-lbl { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.14em; margin-top: 4px; }
.app-phase { display: inline-flex; align-items: center; gap: 7px; margin-top: 14px; padding: 7px 16px; border-radius: 999px; background: rgba(76,175,118,0.12); color: #2f8c5a; font-size: 12px; font-weight: 600; }
.app-phase .app-phase-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--phase-ovulatory); }
.app-metrics { display: flex; gap: 10px; padding: 16px 18px 6px; }
.app-metric { flex: 1; background: #fff; border: 1px solid var(--hairline-soft); border-radius: 16px; padding: 12px 14px; box-shadow: 0 4px 14px rgba(20,10,15,0.04); }
.app-metric-lbl { font-size: 11px; color: var(--muted); display: block; }
.app-metric-val { font-family: var(--font-heading); font-size: 24px; font-weight: 600; color: var(--ink); display: block; margin: 2px 0 8px; letter-spacing: -0.01em; }
.app-metric .app-bar { display: block; height: 5px; border-radius: 3px; background: var(--hairline-soft); overflow: hidden; }
.app-metric .app-bar i { display: block; height: 100%; border-radius: 3px; background: linear-gradient(90deg, #f7adc7, var(--primary)); }
.app-insight { display: flex; align-items: center; gap: 12px; margin: 8px 18px; padding: 14px; border-radius: 16px; background: linear-gradient(135deg, #2a1420, #3a1a2a); color: #fff; }
.app-insight-ic { width: 34px; height: 34px; border-radius: 10px; background: rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.app-insight-ic svg { width: 18px; height: 18px; color: #f7adc7; }
.app-insight-t { font-size: 13px; font-weight: 700; }
.app-insight-d { font-size: 11px; color: rgba(255,255,255,0.65); margin-top: 1px; }
.app-tabbar { margin-top: auto; display: flex; justify-content: space-around; align-items: center; padding: 14px 22px calc(14px + env(safe-area-inset-bottom)); border-top: 1px solid var(--hairline-soft); background: #fff; }
.app-tabbar svg { width: 22px; height: 22px; color: var(--border-strong); }
.app-tabbar .active svg { color: var(--primary); }

/* --- Bento grid (replaces card grids) --- */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.bento-tile { position: relative; border-radius: 22px; padding: 30px; background: var(--canvas); border: 1px solid var(--hairline-soft); overflow: hidden; display: flex; flex-direction: column; min-height: 210px; transition: transform 240ms cubic-bezier(.2,.7,.3,1), box-shadow 240ms ease, border-color 240ms ease; }
.bento-tile:hover { transform: translateY(-5px); box-shadow: 0 22px 56px rgba(20,10,15,0.10); border-color: var(--hairline); }
.bento-tile .b-ic { color: var(--primary); margin-bottom: 18px; }
.bento-tile .b-ic svg { width: 28px; height: 28px; }
.bento-tile .b-num { font-family: var(--font-heading); font-size: 50px; font-weight: 500; color: var(--primary); line-height: 1; letter-spacing: -0.02em; margin-bottom: 14px; }
.bento-tile h3 { font-family: var(--font-heading); font-size: 25px; font-weight: 560; letter-spacing: -0.02em; margin: auto 0 8px; }
.bento-tile p { font-family: var(--font-body); font-size: 14px; color: var(--muted); line-height: 1.6; margin: 0; }
.bento-tile.span2 { grid-column: span 2; }
.bento-tile.span3 { grid-column: span 3; }
.bento-tile.tint { background: var(--primary-tint); border-color: transparent; }
.bento-tile.feature { background: linear-gradient(155deg, #221019 0%, #3a1a2a 60%, #4a1f33 100%); border-color: transparent; }
.bento-tile.feature h3 { color: #fff; }
.bento-tile.feature p { color: rgba(255,255,255,0.7); }
.bento-tile.feature .b-ic { color: #f7adc7; }
.bento-tile.feature .b-orb { position: absolute; width: 220px; height: 220px; border-radius: 50%; right: -60px; top: -60px; background: radial-gradient(circle, rgba(232,68,122,0.55), transparent 70%); filter: blur(28px); }
.bento-tile.cta { background: linear-gradient(135deg, #221019, #3a1a2a); border-color: transparent; flex-direction: row; align-items: center; justify-content: space-between; gap: 24px; min-height: auto; }
.bento-tile.cta .bento-cta-text h3 { color: #fff; margin: 0 0 6px; }
.bento-tile.cta .bento-cta-text p { color: rgba(255,255,255,0.7); }
.bento-tile .b-mini-ring { width: 84px; height: 84px; border-radius: 50%; background: conic-gradient(var(--primary) 0 68%, rgba(255,255,255,0.18) 68% 100%); display: flex; align-items: center; justify-content: center; margin-top: auto; }
.bento-tile .b-mini-ring span { width: 60px; height: 60px; border-radius: 50%; background: #2a1420; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 22px; color: #fff; }

/* --- Glass segmented control (pricing markets) --- */
.segmented { display: inline-flex; padding: 5px; gap: 4px; border-radius: 14px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.segmented a { font-family: var(--font-body); font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.7); padding: 9px 22px; border-radius: 10px; transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease; }
.segmented a.active { background: var(--primary); color: #fff; box-shadow: 0 8px 20px rgba(232,68,122,0.45); }
.segmented a:not(.active):hover { color: #fff; background: rgba(255,255,255,0.07); }

/* --- Dark-glass hero visual fixes --- */
.hero-dark .glass { color: rgba(255,255,255,0.86); }
.hero-dark .glass .ring-num { color: #fff; }
.hero-dark .glass .ring-label, .hero-dark .glass .lbl { color: rgba(255,255,255,0.7); }
.hero-dark .glass .score-bar-track { background: rgba(255,255,255,0.16); }
.dark-ring-inner { background: rgba(255,255,255,0.06) !important; border: 1px solid rgba(255,255,255,0.12); }

/* --- Pricing hero focal preview --- */
.price-peek { display: inline-flex; align-items: baseline; gap: 8px; margin-top: 26px; padding: 14px 24px; border-radius: 16px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); color: #fff; }
.price-peek .pp-amt { font-family: var(--font-heading); font-size: 30px; font-weight: 600; }
.price-peek .pp-sub { font-size: 13px; color: rgba(255,255,255,0.6); }

@media (max-width: 900px) {
  .bento { grid-template-columns: 1fr 1fr; }
  .bento-tile.span2, .bento-tile.span3 { grid-column: span 2; }
  .bento-tile.cta { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .bento { grid-template-columns: 1fr; }
  .bento-tile.span2, .bento-tile.span3 { grid-column: span 1; }
  .phone-frame { width: 250px; height: 520px; }
}

/* Responsive */
@media (max-width: 1024px) { .bloom-container { padding: 0 48px; } }
@media (max-width: 768px) {
  .bloom-container { padding: 0 24px; }
  section { padding: 64px 0; }
  .hero-2col, .hero-2col.split6040 { grid-template-columns: 1fr; gap: 40px; min-height: auto; text-align: center; }
  .hero-2col .hero-text p.lead { margin-left: auto; margin-right: auto; }
  .hero-cta-row { justify-content: center; }
  .hero-2col .hero-text h1 { font-size: 36px; }
  .feature-grid, .pricing-grid { grid-template-columns: 1fr; }
  .feature-row, .feature-row.reverse, .two-col { grid-template-columns: 1fr; gap: 40px; }
  .feature-row.reverse .feature-row-text { order: 0; }
  .fact-list { grid-template-columns: 1fr; }
  .bloom-nav .nav-links { display: none; }
  .phone-frame { width: 220px; height: 440px; }
  .stats-band { flex-direction: column; }
  .stat-block + .stat-block { border-left: none; border-top: 1px solid var(--hairline-soft); }
  .num-row { grid-template-columns: 56px 1fr; }
  .num-row .num-visual { display: none; }
  .bloom-footer .cols { grid-template-columns: 1fr 1fr; }
  .section-heading { font-size: 32px; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
