/*
Theme Name: CoreAllure Full Theme
Theme URI: https://coreallure.com
Author: Lyndon Davis
Description: The full cinematic CoreAllure theme. Homepage with iPhone app carousel (real Amanda photos, voice intro animation, Soul Signal converging orbs, 48-hour rule). About, Contact, Privacy, Terms, Disclaimer, and Safety Tips pages baked in. Styled blog with category filters. Mobile bottom tab bar (Home, About, Blog, Contact, Join). Active page highlighting. iOS frosted glass detail on the launch pill. Working contact form that opens the visitor's email app pre-filled to info@coreallure.com.
Version: 2.0
License: All rights reserved
Text Domain: coreallure-full-theme
*/

:root {
  --bg-deepest: #0a0418;
  --bg-deep: #14092a;
  --bg-mid: #1f1238;
  --bg-card: #2a1947;
  --bg-card-soft: rgba(58, 36, 84, 0.4);
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-bg-warm: rgba(255, 111, 184, 0.04);
  --border-subtle: rgba(232, 184, 200, 0.08);
  --border-glow: rgba(255, 111, 184, 0.3);
  --pink-neon: #ff6fb8;
  --pink-bright: #e879b8;
  --pink-soft: #f5b8d4;
  --purple-bright: #a855f7;
  --purple-deep: #7c3aed;
  --magenta-glow: #ff4f9e;
  --text-pure: #ffffff;
  --text-warm: #f5d9d9;
  --text-soft: #e8b8c8;
  --text-mute: #9f8bb8;
  --text-dim: #6b5a82;
  --grad-cta: linear-gradient(135deg, #ff6fb8 0%, #a855f7 100%);
  --grad-cta-hover: linear-gradient(135deg, #ff4f9e 0%, #7c3aed 100%);
  --grad-luna: radial-gradient(circle at 35% 35%, #ffd4e8 0%, #ff6fb8 30%, #a855f7 65%, #4c1d95 100%);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Manrope', sans-serif;
  background: var(--bg-deepest);
  color: var(--text-warm);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* PARALLAX BACKGROUND LAYERS */
.parallax-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.parallax-layer {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  will-change: transform;
}

.parallax-layer.l1 {
  width: 700px; height: 700px;
  background: rgba(168, 85, 247, 0.4);
  top: -10%; left: -10%;
}
.parallax-layer.l2 {
  width: 600px; height: 600px;
  background: rgba(255, 111, 184, 0.35);
  top: 30%; right: -15%;
  opacity: 0.5;
}
.parallax-layer.l3 {
  width: 800px; height: 800px;
  background: rgba(124, 58, 237, 0.4);
  top: 80%; left: 20%;
}
.parallax-layer.l4 {
  width: 500px; height: 500px;
  background: rgba(255, 111, 184, 0.25);
  top: 150%; right: 10%;
}
.parallax-layer.l5 {
  width: 700px; height: 700px;
  background: rgba(168, 85, 247, 0.3);
  top: 220%; left: -5%;
}

::selection { background: var(--pink-neon); color: var(--bg-deepest); }

/* NAV — becomes more opaque on scroll */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.25rem 2.5rem;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(10, 4, 24, 0.6);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.3s ease, padding 0.3s ease, top 0.2s ease;
}
nav.scrolled {
  background: rgba(10, 4, 24, 0.85);
  padding: 1rem 2.5rem;
}
/* Push nav down when WordPress admin bar is present (only visible to logged-in users) */
.admin-bar nav { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar nav { top: 46px; }
}

.logo {
  display: flex; align-items: center; gap: 0.7rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500; font-size: 1.45rem;
  color: var(--text-pure); text-decoration: none;
}
.logo-orb {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--grad-luna);
  box-shadow: 0 0 16px rgba(255, 111, 184, 0.6), inset -3px -3px 6px rgba(76, 29, 149, 0.4);
  position: relative;
  animation: orb-breathe 4s ease-in-out infinite;
}
.logo-orb::after {
  content: ''; position: absolute;
  top: 18%; left: 22%; width: 30%; height: 30%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.7), transparent 70%);
  border-radius: 50%;
}

.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-links a {
  font-size: 0.85rem; color: var(--text-soft);
  text-decoration: none; transition: color 0.3s ease;
  font-weight: 400;
  position: relative;
  padding: 0.25rem 0;
}
.nav-links a:hover { color: var(--text-pure); }
.nav-links a.active {
  color: var(--pink-neon);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--pink-neon), transparent);
  box-shadow: 0 0 8px rgba(255, 111, 184, 0.6);
}

nav .cta {
  font-size: 0.85rem; font-weight: 500;
  color: var(--text-pure); text-decoration: none;
  padding: 0.7rem 1.5rem;
  background: var(--grad-cta); border-radius: 100px;
  transition: all 0.35s ease;
  box-shadow: 0 4px 20px rgba(255, 111, 184, 0.3);
}
nav .cta:hover {
  background: var(--grad-cta-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(255, 111, 184, 0.5);
}

/* MAIN — everything sits above parallax */
main { position: relative; z-index: 1; }

/* ============ ACT 1: THE PAIN ============ */
.act-1 {
  min-height: 92vh;
  padding: 8rem 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--pink-neon);
  margin-bottom: 2.5rem;
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--border-glow);
  border-radius: 100px;
  background: rgba(255, 111, 184, 0.05);
  backdrop-filter: blur(10px);
  opacity: 0; transform: translateY(20px);
  animation: reveal 1s 0.1s ease-out forwards;
}

.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--pink-neon);
  box-shadow: 0 0 8px var(--pink-neon);
  animation: pulse 2s ease-in-out infinite;
}

.act-1-content { max-width: 1100px; }

.hero-stat {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--text-pure);
  margin-bottom: 3rem;
  max-width: 900px;
  margin-left: auto; margin-right: auto;
  opacity: 0; transform: translateY(30px);
  animation: reveal 1.2s 0.3s ease-out forwards;
}

.hero-stat em {
  font-style: italic;
  background: linear-gradient(135deg, #ff6fb8 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat .strike {
  position: relative;
  display: inline-block;
  color: var(--text-soft);
}

.hero-stat .strike::after {
  content: '';
  position: absolute;
  top: 52%;
  left: -3%;
  width: 0%;
  height: 3px;
  background: var(--pink-neon);
  transform: rotate(-3deg);
  box-shadow: 0 0 12px var(--pink-neon), 0 0 24px rgba(255, 111, 184, 0.5);
  animation: strike-through 1s 1.5s ease-out forwards;
}

@keyframes strike-through {
  to { width: 106%; }
}

.tagline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text-pure);
  margin-bottom: 2rem;
  opacity: 0; transform: translateY(20px);
  animation: reveal 1s 0.7s ease-out forwards;
}

.tagline em {
  font-style: italic;
  background: linear-gradient(135deg, #ff6fb8 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.25rem;
  color: var(--text-soft);
  max-width: 580px;
  margin: 0 auto 3rem;
  line-height: 1.65;
  opacity: 0; transform: translateY(20px);
  animation: reveal 1s 0.9s ease-out forwards;
  font-weight: 400;
}

@media (max-width: 720px) {
  .hero-sub {
    font-size: 1.15rem;
    line-height: 1.55;
    padding: 0 0.5rem;
  }
}

.big-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--grad-cta);
  color: var(--text-pure);
  text-decoration: none;
  padding: 1.15rem 2.5rem;
  border-radius: 100px;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.35s ease;
  box-shadow: 0 6px 32px rgba(255, 111, 184, 0.4);
  position: relative;
  overflow: hidden;
  opacity: 0; transform: translateY(20px);
  animation: reveal 1s 1.1s ease-out forwards;
}

.big-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.big-cta:hover {
  background: var(--grad-cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(255, 111, 184, 0.6);
}

.big-cta:hover::before { transform: translateX(100%); }

.big-cta .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.big-cta:hover .arrow { transform: translateX(4px); }

.hero-meta {
  margin-top: 1.5rem;
  font-size: 1rem;
  color: var(--text-soft);
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem 0.75rem;
  opacity: 0;
  animation: reveal 1s 1.3s ease-out forwards;
  font-weight: 500;
  line-height: 1.5;
}

@media (max-width: 720px) {
  .hero-meta {
    font-size: 1.05rem;
    flex-direction: column;
    gap: 0.85rem;
  }
}

.live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--pink-neon);
  box-shadow: 0 0 10px var(--pink-neon);
  animation: pulse 2s ease-in-out infinite;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-dim);
  opacity: 0;
  animation: reveal 1s 1.8s ease-out forwards, scroll-bob 2.5s 2s ease-in-out infinite;
}

.scroll-indicator::after {
  content: '↓';
  display: block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

@keyframes scroll-bob {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
  50% { transform: translateX(-50%) translateY(6px); opacity: 1; }
}

/* ============ ACT 2: MEET LUNA ============ */
.act-2 {
  padding: 5rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.act-2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1300px;
  width: 100%;
}

.act-2-visual {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.luna-stage {
  position: relative;
  width: 460px;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.luna-glow {
  position: absolute;
  width: 110%; height: 110%;
  background: radial-gradient(circle, rgba(255, 111, 184, 0.4) 0%, rgba(168, 85, 247, 0.2) 40%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  animation: luna-pulse 6s ease-in-out infinite;
}

.luna-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 111, 184, 0.25);
}

.luna-ring.r1 { width: 440px; height: 440px; animation: rotate 50s linear infinite; }
.luna-ring.r2 { width: 360px; height: 360px; animation: rotate 35s linear reverse infinite; border-color: rgba(168, 85, 247, 0.3); }
.luna-ring.r3 { width: 280px; height: 280px; animation: rotate 25s linear infinite; border-color: rgba(255, 111, 184, 0.2); }

.luna-orb-large {
  position: relative;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: var(--grad-luna);
  box-shadow:
    0 0 100px rgba(255, 111, 184, 0.6),
    0 0 200px rgba(168, 85, 247, 0.4),
    inset -30px -30px 80px rgba(76, 29, 149, 0.5),
    inset 30px 30px 80px rgba(255, 212, 232, 0.25);
  animation: orb-float 6s ease-in-out infinite;
}

.luna-orb-large::after {
  content: '';
  position: absolute;
  top: 15%; left: 18%;
  width: 35%; height: 35%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9), transparent 60%);
  border-radius: 50%;
  filter: blur(8px);
}

.luna-orb-large::before {
  content: '';
  position: absolute;
  inset: 30%;
  background: radial-gradient(circle, rgba(255, 200, 230, 0.6), transparent 70%);
  border-radius: 50%;
  filter: blur(20px);
}

.act-2-content { padding-right: 1rem; }

.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--pink-neon);
  margin-bottom: 1.5rem;
}

.act-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--text-pure);
  margin-bottom: 1.75rem;
}

.act-title em {
  font-style: italic;
  background: linear-gradient(135deg, #ff6fb8 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.act-text {
  font-size: 1.15rem;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  max-width: 480px;
}

.act-text strong { color: var(--text-pure); font-weight: 500; }

/* Glass feature list under Luna */
.luna-features {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.luna-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  transition: all 0.4s ease;
}

.luna-feature:hover {
  background: rgba(255, 111, 184, 0.06);
  border-color: var(--border-glow);
  transform: translateX(6px);
}

.luna-feature-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--grad-luna);
  box-shadow: 0 0 16px rgba(255, 111, 184, 0.4);
  flex-shrink: 0;
  position: relative;
}

.luna-feature-icon::after {
  content: '';
  position: absolute;
  top: 18%; left: 22%;
  width: 30%; height: 30%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.7), transparent 70%);
  border-radius: 50%;
}

.luna-feature-text {
  font-size: 0.95rem;
  color: var(--text-soft);
}

.luna-feature-text strong { color: var(--text-pure); font-weight: 500; }

/* ============ ACT 3: 48 HOURS ============ */
.act-3 {
  padding: 5rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.act-3-inner {
  max-width: 900px;
  width: 100%;
}

.glass-panel-large {
  padding: 4rem 3rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  backdrop-filter: blur(30px) saturate(200%);
  -webkit-backdrop-filter: blur(30px) saturate(200%);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.glass-panel-large::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.clock-large {
  position: relative;
  width: 200px; height: 200px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clock-large-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255, 111, 184, 0.3);
  box-shadow:
    0 0 30px rgba(255, 111, 184, 0.3),
    inset 0 0 30px rgba(255, 111, 184, 0.1);
}

.clock-large-ring::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border-top: 3px solid var(--pink-neon);
  border-right: 3px solid var(--pink-neon);
  border-bottom: 3px solid transparent;
  border-left: 3px solid transparent;
  animation: tick 10s linear infinite;
  filter: drop-shadow(0 0 8px var(--pink-neon));
}

.clock-large-ring::after {
  content: '';
  position: absolute;
  inset: 15px;
  border-radius: 50%;
  border: 1px solid rgba(255, 111, 184, 0.15);
}

.clock-large-num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 5.5rem;
  color: var(--text-pure);
  line-height: 1;
  text-shadow: 0 0 20px rgba(255, 111, 184, 0.5);
}

.clock-large-label {
  position: absolute;
  bottom: 25%;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.act-3-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--text-pure);
  margin-bottom: 1.5rem;
}

.act-3-title em {
  font-style: italic;
  background: linear-gradient(135deg, #ff6fb8 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.act-3-sub {
  font-size: 1.15rem;
  color: var(--text-soft);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 2.5rem;
}

.three-pills {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.pill {
  padding: 0.6rem 1.25rem;
  background: rgba(255, 111, 184, 0.08);
  border: 1px solid var(--border-glow);
  border-radius: 100px;
  font-size: 0.82rem;
  color: var(--text-soft);
  backdrop-filter: blur(10px);
}

/* ============ ACT 4: VOICE IS DIFFERENT ============ */
.act-4 {
  padding: 5rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.act-4-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1300px;
  width: 100%;
}

.act-4-content { padding-right: 1rem; }

.act-4-visual {
  position: relative;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Voice card — glassmorphism with playable wave */
.voice-card {
  width: 100%;
  max-width: 440px;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.voice-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.voice-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6fb8, #a855f7);
  box-shadow: 0 0 20px rgba(255, 111, 184, 0.3);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.voice-avatar::after {
  content: '';
  position: absolute;
  inset: 10%;
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.3), transparent 60%);
  border-radius: 50%;
}

.voice-info { flex: 1; }

.voice-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--text-pure);
  line-height: 1.2;
}

.voice-tag {
  font-size: 0.78rem;
  color: var(--pink-neon);
  font-style: italic;
  margin-top: 0.15rem;
}

.voice-play-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad-cta);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(255, 111, 184, 0.4);
  transition: all 0.3s ease;
}

.voice-play-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 24px rgba(255, 111, 184, 0.6);
}

.voice-play-btn::after {
  content: '';
  width: 0; height: 0;
  border-style: solid;
  border-width: 7px 0 7px 11px;
  border-color: transparent transparent transparent white;
  margin-left: 3px;
}

.voice-waveform {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 80px;
  margin-bottom: 2rem;
}

.voice-waveform .bar {
  flex: 1;
  background: linear-gradient(180deg, var(--pink-neon), var(--purple-bright));
  border-radius: 4px;
  animation: wave-pulse 1.8s ease-in-out infinite;
  opacity: 0.7;
  box-shadow: 0 0 6px rgba(255, 111, 184, 0.4);
}

.voice-waveform .bar:nth-child(1) { height: 30%; animation-delay: 0s; }
.voice-waveform .bar:nth-child(2) { height: 55%; animation-delay: 0.05s; }
.voice-waveform .bar:nth-child(3) { height: 80%; animation-delay: 0.1s; }
.voice-waveform .bar:nth-child(4) { height: 95%; animation-delay: 0.15s; opacity: 1; }
.voice-waveform .bar:nth-child(5) { height: 70%; animation-delay: 0.2s; }
.voice-waveform .bar:nth-child(6) { height: 100%; animation-delay: 0.25s; opacity: 1; }
.voice-waveform .bar:nth-child(7) { height: 60%; animation-delay: 0.3s; }
.voice-waveform .bar:nth-child(8) { height: 85%; animation-delay: 0.35s; opacity: 1; }
.voice-waveform .bar:nth-child(9) { height: 45%; animation-delay: 0.4s; }
.voice-waveform .bar:nth-child(10) { height: 75%; animation-delay: 0.45s; }
.voice-waveform .bar:nth-child(11) { height: 35%; animation-delay: 0.5s; }
.voice-waveform .bar:nth-child(12) { height: 60%; animation-delay: 0.55s; }
.voice-waveform .bar:nth-child(13) { height: 50%; animation-delay: 0.6s; }
.voice-waveform .bar:nth-child(14) { height: 30%; animation-delay: 0.65s; }
.voice-waveform .bar:nth-child(15) { height: 65%; animation-delay: 0.7s; }
.voice-waveform .bar:nth-child(16) { height: 40%; animation-delay: 0.75s; }
.voice-waveform .bar:nth-child(17) { height: 55%; animation-delay: 0.8s; }
.voice-waveform .bar:nth-child(18) { height: 25%; animation-delay: 0.85s; }

.voice-insight {
  padding: 1rem 1.25rem;
  background: rgba(255, 111, 184, 0.06);
  border: 1px solid var(--border-glow);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.voice-insight-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.voice-insight-tag {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  background: linear-gradient(135deg, #ff6fb8, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============ ACT 5: HOW REAL MATCHES START ============ */
.act-5 {
  padding: 5rem 2.5rem;
  text-align: center;
  position: relative;
}

.act-5-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.act-5 .act-title { margin-bottom: 1.25rem; }

.act-5-sub {
  font-size: 1.1rem;
  color: var(--text-soft);
  max-width: 580px;
  margin: 0 auto 3.5rem;
  line-height: 1.7;
}

.match-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.match-card {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.match-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow:
    0 20px 50px rgba(255, 111, 184, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.match-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 111, 184, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.match-card:hover::before { opacity: 1; }

.match-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--pink-neon);
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
}

.match-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.85rem;
  line-height: 1.1;
  color: var(--text-pure);
  margin-bottom: 1rem;
}

.match-card h3 em {
  font-style: italic;
  background: linear-gradient(135deg, #ff6fb8, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.match-card p {
  font-size: 0.95rem;
  color: var(--text-mute);
  line-height: 1.65;
}

/* ============ ACT 6: WAITLIST CLOSE ============ */
.act-6 {
  padding: 6rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.act-6::before {
  content: '';
  position: absolute;
  width: 1000px; height: 1000px;
  background: radial-gradient(circle, rgba(255, 111, 184, 0.2) 0%, rgba(168, 85, 247, 0.1) 30%, transparent 60%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: -1;
  animation: glow-breathe 8s ease-in-out infinite;
}

.act-6-inner {
  max-width: 740px;
  margin: 0 auto;
  position: relative;
}

.act-6-orb {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--grad-luna);
  margin: 0 auto 2rem;
  box-shadow:
    0 0 50px rgba(255, 111, 184, 0.5),
    inset -15px -15px 30px rgba(76, 29, 149, 0.5);
  position: relative;
  animation: orb-float 6s ease-in-out infinite;
}

.act-6-orb::after {
  content: '';
  position: absolute;
  top: 18%; left: 22%;
  width: 30%; height: 30%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.7), transparent 70%);
  border-radius: 50%;
}

.act-6 h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.75rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text-pure);
  margin-bottom: 2rem;
}

.act-6 h2 em {
  font-style: italic;
  background: linear-gradient(135deg, #ff6fb8, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.act-6 .act-text {
  text-align: center;
  margin: 0 auto 3rem;
  max-width: 540px;
}

/* FOOTER */
footer {
  padding: 4rem 2.5rem 2.5rem;
  border-top: 1px solid var(--border-subtle);
  position: relative;
  z-index: 1;
  background: rgba(10, 4, 24, 0.5);
  backdrop-filter: blur(20px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.footer-tag {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-soft);
  margin: 1.25rem 0;
  max-width: 280px;
  line-height: 1.4;
}

.footer-col h4 {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--pink-neon);
  margin-bottom: 1.25rem;
}

.footer-col a {
  display: block; color: var(--text-mute);
  text-decoration: none; font-size: 0.88rem;
  margin-bottom: 0.7rem;
  transition: color 0.3s ease;
}

.footer-col a:hover { color: var(--text-pure); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* ANIMATIONS */
@keyframes reveal {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

@keyframes orb-breathe {
  0%, 100% { box-shadow: 0 0 16px rgba(255, 111, 184, 0.6), inset -3px -3px 6px rgba(76, 29, 149, 0.4); }
  50% { box-shadow: 0 0 24px rgba(255, 111, 184, 0.9), inset -3px -3px 6px rgba(76, 29, 149, 0.4); }
}

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

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

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

@keyframes rotate {
  to { transform: rotate(360deg); }
}

@keyframes tick {
  to { transform: rotate(360deg); }
}

@keyframes wave-pulse {
  0%, 100% { transform: scaleY(0.4); opacity: 0.5; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* SCROLL ANIMATIONS */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-up.delay-1 { transition-delay: 0.15s; }
.fade-in-up.delay-2 { transition-delay: 0.3s; }
.fade-in-up.delay-3 { transition-delay: 0.45s; }
.fade-in-up.delay-4 { transition-delay: 0.6s; }

.slide-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* HAMBURGER + MOBILE MENU */
/* MOBILE */
@media (max-width: 900px) {
  nav {
    padding: 1rem 1.25rem;
  }
  .nav-links, .nav-cta-desktop { display: none; }
  .logo { font-size: 1.3rem; }
  .logo-orb { width: 22px; height: 22px; }

  .act-1 { padding: 8rem 1.25rem 2rem; min-height: auto; }
  .act-2, .act-3, .act-4, .act-5 { padding: 3rem 1.25rem; min-height: auto; }
  .act-6 { padding: 4rem 1.25rem; }

  .eyebrow {
    margin-bottom: 2rem;
    font-size: 0.65rem;
    padding: 0.45rem 0.9rem;
  }

  .act-2-grid, .act-4-grid { grid-template-columns: 1fr; gap: 3rem; }
  .act-2-visual, .act-4-visual { order: -1; height: 380px; }
  .luna-stage { width: 320px; height: 320px; }
  .luna-orb-large { width: 200px; height: 200px; }
  .luna-ring.r1 { width: 300px; height: 300px; }
  .luna-ring.r2 { width: 250px; height: 250px; }
  .luna-ring.r3 { width: 200px; height: 200px; }

  .glass-panel-large { padding: 3rem 1.5rem; }
  .clock-large { width: 180px; height: 180px; }
  .clock-large-num { font-size: 4rem; }

  .voice-card { padding: 2rem 1.5rem; }
  .voice-waveform { height: 60px; }

  .match-grid { grid-template-columns: 1fr; gap: 1rem; }
  .match-card { padding: 2rem 1.75rem; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .big-cta { width: 100%; padding: 1rem 1.5rem; font-size: 0.95rem; }

  .parallax-layer { filter: blur(60px); }
}

/* ============ MOBILE BOTTOM TAB BAR ============ */
.tab-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 110;
  padding: 0.55rem 0.5rem calc(0.55rem + env(safe-area-inset-bottom)) 0.5rem;
  background: rgba(10, 4, 24, 0.85);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  justify-content: space-around;
  align-items: stretch;
  gap: 0.35rem;
}
.tab-bar a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 0.4rem 0.25rem;
  text-decoration: none;
  color: var(--text-mute);
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  font-weight: 400;
  border-radius: 12px;
  transition: color 0.2s ease, background 0.2s ease;
}
.tab-bar a .tab-icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
}
.tab-bar a .tab-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.tab-bar a.active {
  color: var(--pink-neon);
}
.tab-bar a.active .tab-icon svg {
  fill: rgba(255, 111, 184, 0.15);
}
.tab-bar a.tab-cta {
  background: var(--grad-cta);
  color: var(--text-pure);
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(255, 111, 184, 0.35);
}
.tab-bar a.tab-cta .tab-icon svg {
  stroke: white;
  fill: none;
}
.tab-bar a:active { transform: scale(0.96); }

/* Push content above the tab bar on mobile so the footer isn't covered */
@media (max-width: 900px) {
  .tab-bar { display: flex; }
  body { padding-bottom: calc(70px + env(safe-area-inset-bottom)); }
}

/* ============ BLOG STYLES ============ */
.blog-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 9rem 2rem 5rem;
  position: relative;
  z-index: 1;
}
.blog-hero {
  text-align: center;
  margin-bottom: 4rem;
}
.blog-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--text-pure);
  line-height: 1.15;
  margin: 1rem auto 0;
  max-width: 800px;
}
.blog-hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, #ff6fb8, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.blog-cat-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2.5rem;
}
.cat-pill {
  display: inline-block;
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  color: var(--text-soft);
  border-radius: 100px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all 0.2s ease;
}
.cat-pill:hover {
  border-color: var(--border-glow);
  color: var(--text-pure);
}
.cat-pill.active {
  background: var(--grad-cta);
  border-color: transparent;
  color: white;
  box-shadow: 0 4px 14px rgba(255, 111, 184, 0.3);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}
.blog-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
  box-shadow: 0 20px 50px rgba(255, 111, 184, 0.12);
}
.blog-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.blog-card-image {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-mid);
}
.blog-card-image-placeholder {
  background: linear-gradient(135deg, var(--bg-mid) 0%, var(--bg-deep) 50%, var(--purple-deep) 100%);
}
.blog-card-body {
  padding: 1.5rem;
}
.blog-card-cat {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink-neon);
  margin-bottom: 0.6rem;
}
.blog-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--text-pure);
  line-height: 1.25;
  margin-bottom: 0.6rem;
}
.blog-card-excerpt {
  font-size: 0.88rem;
  color: var(--text-mute);
  line-height: 1.55;
  margin-bottom: 1rem;
}
.blog-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--text-dim);
}
.blog-card-read { color: var(--pink-neon); }

.blog-pagination {
  margin-top: 4rem;
  text-align: center;
}
.blog-pagination .nav-links {
  display: inline-flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.blog-pagination a,
.blog-pagination .page-numbers {
  padding: 0.6rem 1rem;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  color: var(--text-soft);
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.85rem;
}
.blog-pagination .current {
  background: var(--grad-cta);
  border-color: transparent;
  color: white;
}

/* Individual post */
.blog-post {
  max-width: 760px;
  margin: 0 auto;
}
.blog-post-header { text-align: center; margin-bottom: 2.5rem; }
.blog-post-cat {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink-neon);
  text-decoration: none;
  margin-bottom: 1.5rem;
}
.blog-post-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  color: var(--text-pure);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}
.blog-post-meta {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--text-mute);
}
.blog-post-feature {
  width: 100%;
  height: 420px;
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  margin-bottom: 3rem;
}
.blog-post-content {
  font-size: 1.06rem;
  line-height: 1.85;
  color: var(--text-warm);
}
.blog-post-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 2rem;
  color: var(--text-pure);
  margin: 2.8rem 0 1rem;
  line-height: 1.2;
}
.blog-post-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--text-pure);
  margin: 2rem 0 0.8rem;
}
.blog-post-content p { margin-bottom: 1.3rem; }
.blog-post-content a { color: var(--pink-neon); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.blog-post-content blockquote {
  border-left: 3px solid var(--pink-neon);
  padding: 0.4rem 1.4rem;
  margin: 2rem 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--text-pure);
  line-height: 1.5;
}
.blog-post-content ul, .blog-post-content ol { margin: 1rem 0 1.5rem 1.5rem; }
.blog-post-content li { margin-bottom: 0.6rem; }
.blog-post-content img { max-width: 100%; height: auto; border-radius: 12px; margin: 1.5rem 0; }
.blog-post-content strong { color: var(--text-pure); font-weight: 500; }
.blog-post-content em { font-style: italic; }

.blog-post-tags {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.blog-tag {
  padding: 0.35rem 0.8rem;
  background: var(--glass-bg-warm);
  border: 1px solid var(--border-glow);
  color: var(--text-soft);
  border-radius: 100px;
  font-size: 0.75rem;
  text-decoration: none;
}
.blog-post-cta {
  margin-top: 4rem;
  padding: 3rem 2rem;
  text-align: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 22px;
}
.blog-post-cta p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--text-pure);
  margin-bottom: 1.5rem;
}
.related-posts {
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--glass-border);
}
.related-title {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 2rem;
  color: var(--text-pure);
  margin-bottom: 2.5rem;
}

/* Generic WP page (About/Contact/etc.) */
.page-main {
  max-width: 760px;
  margin: 0 auto;
  padding: 9rem 2rem 5rem;
  position: relative;
  z-index: 1;
}
.page-header { text-align: center; margin-bottom: 3rem; }
.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--text-pure);
  line-height: 1.15;
}
.page-content {
  font-size: 1.06rem;
  line-height: 1.85;
  color: var(--text-warm);
}
.page-content h2, .page-content h3 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--text-pure);
  margin: 2.2rem 0 1rem;
}
.page-content h2 { font-size: 1.9rem; }
.page-content h3 { font-size: 1.4rem; }
.page-content p { margin-bottom: 1.2rem; }
.page-content a { color: var(--pink-neon); }

@media (max-width: 700px) {
  .blog-main, .page-main { padding: 7rem 1.25rem 4rem; }
  .blog-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .blog-post-feature { height: 240px; }
}



/* ===== Imported from about.html ===== */

:root {
  --bg-deepest: #0a0418;
  --bg-deep: #14092a;
  --bg-mid: #1f1238;
  --bg-card: #2a1947;
  --bg-card-soft: rgba(58, 36, 84, 0.4);
  --border-subtle: rgba(232, 184, 200, 0.08);
  --border-glow: rgba(255, 111, 184, 0.3);
  --pink-neon: #ff6fb8;
  --pink-bright: #e879b8;
  --purple-bright: #a855f7;
  --purple-deep: #7c3aed;
  --text-pure: #ffffff;
  --text-warm: #f5d9d9;
  --text-soft: #e8b8c8;
  --text-mute: #9f8bb8;
  --text-dim: #6b5a82;
  --grad-cta: linear-gradient(135deg, #ff6fb8 0%, #a855f7 100%);
  --grad-cta-hover: linear-gradient(135deg, #ff4f9e 0%, #7c3aed 100%);
  --grad-luna: radial-gradient(circle at 35% 35%, #ffd4e8 0%, #ff6fb8 30%, #a855f7 65%, #4c1d95 100%);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  background: var(--bg-deepest);
  color: var(--text-warm);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(168, 85, 247, 0.18), transparent),
    radial-gradient(ellipse 60% 50% at 90% 30%, rgba(255, 111, 184, 0.15), transparent),
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(124, 58, 237, 0.2), transparent);
  pointer-events: none;
  z-index: 0;
}

::selection { background: var(--pink-neon); color: var(--bg-deepest); }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 1.25rem 2.5rem;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(10, 4, 24, 0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
}

.logo {
  display: flex; align-items: center; gap: 0.7rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.45rem;
  color: var(--text-pure);
  text-decoration: none;
}

.logo-orb {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--grad-luna);
  box-shadow: 0 0 16px rgba(255, 111, 184, 0.6), inset -3px -3px 6px rgba(76, 29, 149, 0.4);
  position: relative;
}

.logo-orb::after {
  content: '';
  position: absolute;
  top: 18%; left: 22%;
  width: 30%; height: 30%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.7), transparent 70%);
  border-radius: 50%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.85rem;
  color: var(--text-soft);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 400;
}

.nav-links a:hover { color: var(--text-pure); }
.nav-links a.active { color: var(--pink-neon); }

nav .cta {
  font-size: 0.85rem; font-weight: 500;
  color: var(--text-pure); text-decoration: none;
  padding: 0.7rem 1.5rem;
  background: var(--grad-cta);
  border-radius: 100px;
  transition: all 0.35s ease;
  box-shadow: 0 4px 20px rgba(255, 111, 184, 0.25);
}

nav .cta:hover {
  background: var(--grad-cta-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(255, 111, 184, 0.45);
}

/* HERO */
.page-hero {
  padding: 11rem 2.5rem 6rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--pink-neon);
  margin-bottom: 2rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-glow);
  border-radius: 100px;
  background: rgba(255, 111, 184, 0.05);
}

.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--pink-neon);
  box-shadow: 0 0 8px var(--pink-neon);
  animation: pulse 2s ease-in-out infinite;
}

.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text-pure);
  margin-bottom: 2rem;
  opacity: 0;
  animation: rise 1s 0.1s ease-out forwards;
}

.page-title em {
  font-style: italic;
  background: linear-gradient(135deg, #ff6fb8, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-sub {
  font-size: 1.15rem;
  color: var(--text-soft);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto;
  font-weight: 300;
  opacity: 0;
  animation: rise 1s 0.3s ease-out forwards;
}

/* STORY SECTION */
.story {
  padding: 5rem 2.5rem 8rem;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.story-block {
  margin-bottom: 4rem;
}

.story-block h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--text-pure);
  margin-bottom: 1.75rem;
}

.story-block h2 em {
  font-style: italic;
  background: linear-gradient(135deg, #ff6fb8, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.story-block p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-soft);
  margin-bottom: 1.25rem;
  font-weight: 300;
}

.story-block p strong {
  color: var(--text-pure);
  font-weight: 500;
}

.pull-quote {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.4;
  color: var(--text-pure);
  padding: 3rem 0;
  margin: 3rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  text-align: center;
}

.pull-quote .accent {
  background: linear-gradient(135deg, #ff6fb8, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* VALUES GRID */
.values {
  padding: 6rem 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.values-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-pure);
  text-align: center;
  margin-bottom: 1rem;
}

.values-title em {
  font-style: italic;
  background: linear-gradient(135deg, #ff6fb8, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.values-sub {
  text-align: center;
  color: var(--text-mute);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto 4rem;
  line-height: 1.7;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value {
  padding: 2.25rem 2rem;
  background: var(--bg-card-soft);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.value:hover {
  border-color: var(--border-glow);
  background: rgba(58, 36, 84, 0.6);
  transform: translateY(-3px);
}

.value-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--pink-neon);
  margin-bottom: 1rem;
}

.value h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--text-pure);
  margin-bottom: 0.85rem;
  line-height: 1.1;
}

.value h3 em {
  font-style: italic;
  background: linear-gradient(135deg, #ff6fb8, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.value p {
  font-size: 0.95rem;
  color: var(--text-mute);
  line-height: 1.65;
}

/* FOUNDER */
.founder {
  padding: 8rem 2.5rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border-subtle);
}

.founder-orb {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--grad-luna);
  margin: 0 auto 2.5rem;
  box-shadow:
    0 0 40px rgba(255, 111, 184, 0.5),
    inset -10px -10px 25px rgba(76, 29, 149, 0.5);
  position: relative;
  animation: float 6s ease-in-out infinite;
}

.founder-orb::after {
  content: '';
  position: absolute;
  top: 18%; left: 22%;
  width: 30%; height: 30%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.7), transparent 70%);
  border-radius: 50%;
}

.founder-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--pink-neon);
  margin-bottom: 2.5rem;
}

.founder-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.3rem, 2.3vw, 1.7rem);
  line-height: 1.5;
  color: var(--text-warm);
  margin-bottom: 3rem;
}

.founder-text p { margin-bottom: 1.5rem; }

.founder-sig {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 2rem;
  background: linear-gradient(135deg, #ff6fb8, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.founder-role {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-mute);
}

/* CTA */
.cta-section {
  padding: 8rem 2.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border-subtle);
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255, 111, 184, 0.15), transparent 60%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: -1;
}

.cta-inner { max-width: 600px; margin: 0 auto; position: relative; }

.cta-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text-pure);
  margin-bottom: 1.5rem;
}

.cta-section h2 em {
  font-style: italic;
  background: linear-gradient(135deg, #ff6fb8, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-section p {
  font-size: 1.05rem;
  color: var(--text-soft);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.cta-btn {
  display: inline-block;
  background: var(--grad-cta);
  color: var(--text-pure);
  padding: 1.1rem 2.5rem;
  border-radius: 100px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 111, 184, 0.4);
}

.cta-btn:hover {
  background: var(--grad-cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(255, 111, 184, 0.6);
}

/* FOOTER */
footer {
  padding: 4rem 2.5rem 2.5rem;
  border-top: 1px solid var(--border-subtle);
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.footer-tag {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-soft);
  margin: 1.25rem 0;
  max-width: 280px;
  line-height: 1.4;
}

.footer-col h4 {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--pink-neon);
  margin-bottom: 1.25rem;
}

.footer-col a {
  display: block;
  color: var(--text-mute);
  text-decoration: none;
  font-size: 0.88rem;
  margin-bottom: 0.7rem;
  transition: color 0.3s ease;
}

.footer-col a:hover { color: var(--text-pure); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--text-dim);
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

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


/* HAMBURGER + MOBILE MENU */
@media (max-width: 900px) {
    nav { padding: 1rem 1.25rem; }
  .nav-links, .nav-cta-desktop { display: none; }
  .logo { font-size: 1.3rem; }
  .logo-orb { width: 22px; height: 22px; }

  .page-hero { padding: 8rem 1.25rem 4rem; }
  .story, .values, .founder, .cta-section { padding-left: 1.25rem; padding-right: 1.25rem; }
  .values, .founder, .cta-section { padding-top: 5rem; padding-bottom: 5rem; }
  .values-grid { grid-template-columns: 1fr; gap: 1rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============ MOBILE BOTTOM TAB BAR ============ */
.tab-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 110;
  padding: 0.55rem 0.5rem calc(0.55rem + env(safe-area-inset-bottom)) 0.5rem;
  background: rgba(10, 4, 24, 0.85);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  justify-content: space-around;
  align-items: stretch;
  gap: 0.35rem;
}
.tab-bar a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 0.4rem 0.25rem;
  text-decoration: none;
  color: var(--text-mute);
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  font-weight: 400;
  border-radius: 12px;
  transition: color 0.2s ease, background 0.2s ease;
}
.tab-bar a .tab-icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
}
.tab-bar a .tab-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.tab-bar a.active {
  color: var(--pink-neon);
}
.tab-bar a.active .tab-icon svg {
  fill: rgba(255, 111, 184, 0.15);
}
.tab-bar a.tab-cta {
  background: var(--grad-cta);
  color: var(--text-pure);
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(255, 111, 184, 0.35);
}
.tab-bar a.tab-cta .tab-icon svg {
  stroke: white;
  fill: none;
}
.tab-bar a:active { transform: scale(0.96); }

/* Push content above the tab bar on mobile so the footer isn't covered */
@media (max-width: 900px) {
  .tab-bar { display: flex; }
  body { padding-bottom: calc(70px + env(safe-area-inset-bottom)); }
}



/* ===== Imported from contact.html ===== */

:root {
  --bg-deepest: #0a0418;
  --bg-deep: #14092a;
  --bg-mid: #1f1238;
  --bg-card: #2a1947;
  --bg-card-soft: rgba(58, 36, 84, 0.4);
  --border-subtle: rgba(232, 184, 200, 0.08);
  --border-glow: rgba(255, 111, 184, 0.3);
  --pink-neon: #ff6fb8;
  --purple-bright: #a855f7;
  --purple-deep: #7c3aed;
  --text-pure: #ffffff;
  --text-warm: #f5d9d9;
  --text-soft: #e8b8c8;
  --text-mute: #9f8bb8;
  --text-dim: #6b5a82;
  --grad-cta: linear-gradient(135deg, #ff6fb8 0%, #a855f7 100%);
  --grad-cta-hover: linear-gradient(135deg, #ff4f9e 0%, #7c3aed 100%);
  --grad-luna: radial-gradient(circle at 35% 35%, #ffd4e8 0%, #ff6fb8 30%, #a855f7 65%, #4c1d95 100%);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  background: var(--bg-deepest);
  color: var(--text-warm);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(168, 85, 247, 0.18), transparent),
    radial-gradient(ellipse 60% 50% at 90% 30%, rgba(255, 111, 184, 0.15), transparent),
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(124, 58, 237, 0.2), transparent);
  pointer-events: none;
  z-index: 0;
}

::selection { background: var(--pink-neon); color: var(--bg-deepest); }

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 1.25rem 2.5rem;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(10, 4, 24, 0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
}

.logo {
  display: flex; align-items: center; gap: 0.7rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.45rem;
  color: var(--text-pure);
  text-decoration: none;
}

.logo-orb {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--grad-luna);
  box-shadow: 0 0 16px rgba(255, 111, 184, 0.6), inset -3px -3px 6px rgba(76, 29, 149, 0.4);
  position: relative;
}

.logo-orb::after {
  content: '';
  position: absolute;
  top: 18%; left: 22%;
  width: 30%; height: 30%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.7), transparent 70%);
  border-radius: 50%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.85rem;
  color: var(--text-soft);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 400;
}

.nav-links a:hover { color: var(--text-pure); }
.nav-links a.active { color: var(--pink-neon); }

nav .cta {
  font-size: 0.85rem; font-weight: 500;
  color: var(--text-pure); text-decoration: none;
  padding: 0.7rem 1.5rem;
  background: var(--grad-cta);
  border-radius: 100px;
  transition: all 0.35s ease;
  box-shadow: 0 4px 20px rgba(255, 111, 184, 0.25);
}

nav .cta:hover {
  background: var(--grad-cta-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(255, 111, 184, 0.45);
}

/* PAGE HERO */
.page-hero {
  padding: 11rem 2.5rem 4rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--pink-neon);
  margin-bottom: 2rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-glow);
  border-radius: 100px;
  background: rgba(255, 111, 184, 0.05);
}

.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--pink-neon);
  box-shadow: 0 0 8px var(--pink-neon);
  animation: pulse 2s ease-in-out infinite;
}

.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text-pure);
  margin-bottom: 2rem;
  opacity: 0;
  animation: rise 1s 0.1s ease-out forwards;
}

.page-title em {
  font-style: italic;
  background: linear-gradient(135deg, #ff6fb8, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-sub {
  font-size: 1.15rem;
  color: var(--text-soft);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto;
  font-weight: 300;
  opacity: 0;
  animation: rise 1s 0.3s ease-out forwards;
}

/* CONTACT GRID */
.contact-section {
  padding: 4rem 2.5rem 6rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
}

/* Info column */
.contact-info {
  padding: 2.5rem;
  background: var(--bg-card-soft);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  backdrop-filter: blur(10px);
  height: fit-content;
}

.info-block {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.info-block:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.info-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--pink-neon);
  margin-bottom: 1rem;
}

.info-block h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--text-pure);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.info-block a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 1.05rem;
  transition: color 0.3s ease;
  display: inline-block;
  position: relative;
}

.info-block a:hover {
  color: var(--pink-neon);
}

.info-block p {
  font-size: 0.95rem;
  color: var(--text-mute);
  line-height: 1.6;
  margin-top: 0.5rem;
}

.social-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.social-pill {
  padding: 0.5rem 1rem;
  border-radius: 100px;
  background: rgba(255, 111, 184, 0.08);
  border: 1px solid var(--border-glow);
  color: var(--text-soft);
  font-size: 0.78rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-pill:hover {
  background: var(--grad-cta);
  color: var(--text-pure);
  border-color: transparent;
}

/* FORM */
.contact-form {
  padding: 2.5rem;
  background: var(--bg-card-soft);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  backdrop-filter: blur(10px);
}

.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 2rem;
  color: var(--text-pure);
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.form-title em {
  font-style: italic;
  background: linear-gradient(135deg, #ff6fb8, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.form-sub {
  font-size: 0.95rem;
  color: var(--text-mute);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.form-field {
  margin-bottom: 1.25rem;
}

.form-field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 0.6rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  color: var(--text-pure);
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.3s ease;
}

.form-field textarea {
  resize: vertical;
  min-height: 130px;
  font-family: 'Manrope', sans-serif;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--pink-neon);
  background: rgba(255, 111, 184, 0.05);
  box-shadow: 0 0 0 3px rgba(255, 111, 184, 0.1);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-dim);
}

.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff6fb8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  padding-right: 2.5rem;
}

.form-field select option { background: var(--bg-deep); color: var(--text-pure); }

.submit-btn {
  width: 100%;
  border: none;
  background: var(--grad-cta);
  color: var(--text-pure);
  padding: 1.1rem;
  border-radius: 100px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 111, 184, 0.4);
  margin-top: 0.5rem;
}

.submit-btn:hover {
  background: var(--grad-cta-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(255, 111, 184, 0.6);
}

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-mute);
  margin-top: 1.25rem;
  font-style: italic;
}

/* FAQ */
.faq {
  padding: 6rem 2.5rem;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border-subtle);
}

.faq-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-pure);
  text-align: center;
  margin-bottom: 1rem;
}

.faq-title em {
  font-style: italic;
  background: linear-gradient(135deg, #ff6fb8, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-sub {
  text-align: center;
  color: var(--text-mute);
  font-size: 1rem;
  margin-bottom: 3.5rem;
}

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.5rem 0;
  cursor: pointer;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--text-pure);
  line-height: 1.3;
}

.faq-q::after {
  content: '+';
  font-family: 'Manrope', sans-serif;
  color: var(--pink-neon);
  font-size: 1.6rem;
  font-weight: 300;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-q::after {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.7;
}

.faq-item.open .faq-a {
  max-height: 400px;
  padding-top: 1rem;
}

/* FOOTER */
footer {
  padding: 4rem 2.5rem 2.5rem;
  border-top: 1px solid var(--border-subtle);
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.footer-tag {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-soft);
  margin: 1.25rem 0;
  max-width: 280px;
  line-height: 1.4;
}

.footer-col h4 {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--pink-neon);
  margin-bottom: 1.25rem;
}

.footer-col a {
  display: block;
  color: var(--text-mute);
  text-decoration: none;
  font-size: 0.88rem;
  margin-bottom: 0.7rem;
  transition: color 0.3s ease;
}

.footer-col a:hover { color: var(--text-pure); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--text-dim);
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}


/* HAMBURGER + MOBILE MENU */
@media (max-width: 900px) {
    nav { padding: 1rem 1.25rem; }
  .nav-links, .nav-cta-desktop { display: none; }
  .logo { font-size: 1.3rem; }
  .logo-orb { width: 22px; height: 22px; }

  .page-hero { padding: 8rem 1.25rem 3rem; }
  .contact-section, .faq { padding-left: 1.25rem; padding-right: 1.25rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .contact-info, .contact-form { padding: 2rem 1.5rem; }
  .faq { padding-top: 4rem; padding-bottom: 4rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============ MOBILE BOTTOM TAB BAR ============ */
.tab-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 110;
  padding: 0.55rem 0.5rem calc(0.55rem + env(safe-area-inset-bottom)) 0.5rem;
  background: rgba(10, 4, 24, 0.85);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  justify-content: space-around;
  align-items: stretch;
  gap: 0.35rem;
}
.tab-bar a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 0.4rem 0.25rem;
  text-decoration: none;
  color: var(--text-mute);
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  font-weight: 400;
  border-radius: 12px;
  transition: color 0.2s ease, background 0.2s ease;
}
.tab-bar a .tab-icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
}
.tab-bar a .tab-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.tab-bar a.active {
  color: var(--pink-neon);
}
.tab-bar a.active .tab-icon svg {
  fill: rgba(255, 111, 184, 0.15);
}
.tab-bar a.tab-cta {
  background: var(--grad-cta);
  color: var(--text-pure);
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(255, 111, 184, 0.35);
}
.tab-bar a.tab-cta .tab-icon svg {
  stroke: white;
  fill: none;
}
.tab-bar a:active { transform: scale(0.96); }

/* Push content above the tab bar on mobile so the footer isn't covered */
@media (max-width: 900px) {
  .tab-bar { display: flex; }
  body { padding-bottom: calc(70px + env(safe-area-inset-bottom)); }
}



/* ===== Imported from privacy.html ===== */

:root {
  --bg-deepest: #0a0418;
  --bg-card-soft: rgba(58, 36, 84, 0.4);
  --border-subtle: rgba(232, 184, 200, 0.08);
  --border-glow: rgba(255, 111, 184, 0.3);
  --pink-neon: #ff6fb8;
  --purple-bright: #a855f7;
  --text-pure: #ffffff;
  --text-warm: #f5d9d9;
  --text-soft: #e8b8c8;
  --text-mute: #9f8bb8;
  --text-dim: #6b5a82;
  --grad-cta: linear-gradient(135deg, #ff6fb8 0%, #a855f7 100%);
  --grad-cta-hover: linear-gradient(135deg, #ff4f9e 0%, #7c3aed 100%);
  --grad-luna: radial-gradient(circle at 35% 35%, #ffd4e8 0%, #ff6fb8 30%, #a855f7 65%, #4c1d95 100%);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', sans-serif;
  background: var(--bg-deepest);
  color: var(--text-warm);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
body::before {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(168, 85, 247, 0.18), transparent),
    radial-gradient(ellipse 60% 50% at 90% 30%, rgba(255, 111, 184, 0.15), transparent),
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(124, 58, 237, 0.2), transparent);
  pointer-events: none;
  z-index: 0;
}
::selection { background: var(--pink-neon); color: var(--bg-deepest); }

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 1.25rem 2.5rem;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(10, 4, 24, 0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
}
.logo {
  display: flex; align-items: center; gap: 0.7rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500; font-size: 1.45rem;
  color: var(--text-pure); text-decoration: none;
}
.logo-orb {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--grad-luna);
  box-shadow: 0 0 16px rgba(255, 111, 184, 0.6), inset -3px -3px 6px rgba(76, 29, 149, 0.4);
  position: relative;
}
.logo-orb::after {
  content: ''; position: absolute;
  top: 18%; left: 22%; width: 30%; height: 30%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.7), transparent 70%);
  border-radius: 50%;
}
.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-links a {
  font-size: 0.85rem; color: var(--text-soft);
  text-decoration: none; transition: color 0.3s ease; font-weight: 400;
}
.nav-links a:hover { color: var(--text-pure); }
nav .cta {
  font-size: 0.85rem; font-weight: 500;
  color: var(--text-pure); text-decoration: none;
  padding: 0.7rem 1.5rem;
  background: var(--grad-cta); border-radius: 100px;
  transition: all 0.35s ease;
  box-shadow: 0 4px 20px rgba(255, 111, 184, 0.25);
}
nav .cta:hover {
  background: var(--grad-cta-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(255, 111, 184, 0.45);
}

.page-hero {
  padding: 10rem 2.5rem 3rem;
  max-width: 820px; margin: 0 auto;
  text-align: center; position: relative; z-index: 1;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--pink-neon);
  margin-bottom: 2rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-glow);
  border-radius: 100px;
  background: rgba(255, 111, 184, 0.05);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--pink-neon);
  box-shadow: 0 0 8px var(--pink-neon);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1; letter-spacing: -0.02em;
  color: var(--text-pure); margin-bottom: 1.5rem;
}
.page-title em {
  font-style: italic;
  background: linear-gradient(135deg, #ff6fb8, #a855f7);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-sub {
  font-size: 1.1rem; color: var(--text-soft);
  line-height: 1.7; max-width: 580px; margin: 0 auto;
}
.last-updated {
  margin-top: 1.75rem;
  font-size: 0.72rem; color: var(--text-mute);
  letter-spacing: 0.2em; text-transform: uppercase;
}

.legal-toc {
  max-width: 820px; margin: 3rem auto 0;
  padding: 0 2.5rem; position: relative; z-index: 1;
}
.toc-card {
  padding: 2rem;
  background: var(--bg-card-soft);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}
.toc-label {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--pink-neon); margin-bottom: 1.25rem;
}
.toc-list {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0.4rem 1.5rem; list-style: none;
}
.toc-list a {
  color: var(--text-soft); text-decoration: none;
  font-size: 0.92rem; padding: 0.35rem 0;
  display: flex; gap: 0.6rem;
  transition: color 0.3s ease;
}
.toc-list a:hover { color: var(--pink-neon); }
.toc-list a span {
  color: var(--pink-neon);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 0.85rem; min-width: 1.5rem;
}

.legal-content {
  max-width: 760px; margin: 0 auto;
  padding: 4rem 2.5rem 5rem;
  position: relative; z-index: 1;
}
.legal-notice {
  padding: 1.5rem 1.75rem;
  background: rgba(255, 111, 184, 0.05);
  border: 1px solid var(--border-glow);
  border-radius: 16px;
  margin-bottom: 3rem;
  font-size: 0.95rem; color: var(--text-soft); line-height: 1.7;
}
.legal-notice strong { color: var(--pink-neon); font-weight: 600; }
.legal-content section { margin-bottom: 3rem; scroll-margin-top: 6rem; }
.legal-content section:last-of-type { margin-bottom: 0; }
.legal-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(1.7rem, 2.8vw, 2.2rem);
  line-height: 1.15; letter-spacing: -0.01em;
  color: var(--text-pure); margin-bottom: 1.25rem;
  display: flex; align-items: baseline; gap: 1rem;
}
.legal-content h2 .num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 0.95rem;
  color: var(--pink-neon); letter-spacing: 0.05em;
  font-weight: 400; min-width: 2.5rem;
}
.legal-content h2 em {
  font-style: italic;
  background: linear-gradient(135deg, #ff6fb8, #a855f7);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.legal-content h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 500; font-size: 1.02rem;
  color: var(--text-pure);
  margin: 1.5rem 0 0.5rem; letter-spacing: 0.005em;
}
.legal-content p {
  font-size: 1rem; color: var(--text-soft);
  line-height: 1.75; margin-bottom: 1rem;
}
.legal-content ul, .legal-content ol {
  margin: 0.25rem 0 1rem 1.5rem;
  color: var(--text-soft); font-size: 1rem; line-height: 1.75;
}
.legal-content li { margin-bottom: 0.4rem; }
.legal-content li::marker { color: var(--pink-neon); }
.legal-content a {
  color: var(--pink-neon); text-decoration: none;
  border-bottom: 1px solid rgba(255, 111, 184, 0.3);
  transition: border-color 0.3s ease;
}
.legal-content a:hover { border-bottom-color: var(--pink-neon); }
.legal-content strong { color: var(--text-pure); font-weight: 500; }

.legal-end {
  margin-top: 4rem; padding-top: 3rem;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}
.legal-end-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 1.25rem;
  color: var(--text-soft); margin-bottom: 1.25rem; line-height: 1.5;
}
.legal-end-contact { font-size: 0.95rem; color: var(--text-mute); }
.legal-end-contact a {
  color: var(--pink-neon); text-decoration: none;
  border-bottom: 1px solid rgba(255, 111, 184, 0.3);
}
.related-legal {
  max-width: 820px; margin: 2rem auto 6rem;
  padding: 0 2.5rem; position: relative; z-index: 1;
}
.related-legal-title {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--pink-neon); text-align: center; margin-bottom: 1.5rem;
}
.related-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.related-card {
  padding: 1.5rem; background: var(--bg-card-soft);
  border: 1px solid var(--border-subtle); border-radius: 16px;
  text-decoration: none; transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}
.related-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-3px);
}
.related-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400; font-size: 1.25rem;
  color: var(--text-pure); margin-bottom: 0.3rem;
}
.related-card p {
  font-size: 0.85rem; color: var(--text-mute); line-height: 1.5;
}

footer {
  padding: 4rem 2.5rem 2.5rem;
  border-top: 1px solid var(--border-subtle);
  position: relative; z-index: 1;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; max-width: 1200px; margin: 0 auto 3rem;
}
.footer-tag {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 1.05rem;
  color: var(--text-soft); margin: 1.25rem 0;
  max-width: 280px; line-height: 1.4;
}
.footer-col h4 {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--pink-neon); margin-bottom: 1.25rem;
}
.footer-col a {
  display: block; color: var(--text-mute);
  text-decoration: none; font-size: 0.88rem;
  margin-bottom: 0.7rem; transition: color 0.3s ease;
}
.footer-col a:hover { color: var(--text-pure); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  font-size: 0.78rem; color: var(--text-dim);
}


/* HAMBURGER + MOBILE MENU */
@media (max-width: 900px) {
    nav { padding: 1rem 1.25rem; }
  .nav-links, .nav-cta-desktop { display: none; }
  .logo { font-size: 1.3rem; }
  .logo-orb { width: 22px; height: 22px; }

  .page-hero { padding: 7.5rem 1.25rem 2.5rem; }
  .legal-toc, .legal-content, .related-legal { padding-left: 1.25rem; padding-right: 1.25rem; }
  .toc-list { grid-template-columns: 1fr; }
  .legal-content { padding-top: 3rem; padding-bottom: 4rem; }
  .legal-content h2 { flex-direction: column; gap: 0.25rem; align-items: flex-start; }
  .related-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============ MOBILE BOTTOM TAB BAR ============ */
.tab-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 110;
  padding: 0.55rem 0.5rem calc(0.55rem + env(safe-area-inset-bottom)) 0.5rem;
  background: rgba(10, 4, 24, 0.85);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  justify-content: space-around;
  align-items: stretch;
  gap: 0.35rem;
}
.tab-bar a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 0.4rem 0.25rem;
  text-decoration: none;
  color: var(--text-mute);
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  font-weight: 400;
  border-radius: 12px;
  transition: color 0.2s ease, background 0.2s ease;
}
.tab-bar a .tab-icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
}
.tab-bar a .tab-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.tab-bar a.active {
  color: var(--pink-neon);
}
.tab-bar a.active .tab-icon svg {
  fill: rgba(255, 111, 184, 0.15);
}
.tab-bar a.tab-cta {
  background: var(--grad-cta);
  color: var(--text-pure);
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(255, 111, 184, 0.35);
}
.tab-bar a.tab-cta .tab-icon svg {
  stroke: white;
  fill: none;
}
.tab-bar a:active { transform: scale(0.96); }

/* Push content above the tab bar on mobile so the footer isn't covered */
@media (max-width: 900px) {
  .tab-bar { display: flex; }
  body { padding-bottom: calc(70px + env(safe-area-inset-bottom)); }
}



/* ===== Imported from terms.html ===== */

:root {
  --bg-deepest: #0a0418;
  --bg-card-soft: rgba(58, 36, 84, 0.4);
  --border-subtle: rgba(232, 184, 200, 0.08);
  --border-glow: rgba(255, 111, 184, 0.3);
  --pink-neon: #ff6fb8;
  --purple-bright: #a855f7;
  --text-pure: #ffffff;
  --text-warm: #f5d9d9;
  --text-soft: #e8b8c8;
  --text-mute: #9f8bb8;
  --text-dim: #6b5a82;
  --grad-cta: linear-gradient(135deg, #ff6fb8 0%, #a855f7 100%);
  --grad-cta-hover: linear-gradient(135deg, #ff4f9e 0%, #7c3aed 100%);
  --grad-luna: radial-gradient(circle at 35% 35%, #ffd4e8 0%, #ff6fb8 30%, #a855f7 65%, #4c1d95 100%);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Manrope', sans-serif; background: var(--bg-deepest); color: var(--text-warm); font-weight: 300; line-height: 1.7; overflow-x: hidden; -webkit-font-smoothing: antialiased; position: relative; }
body::before { content: ''; position: fixed; inset: 0; background: radial-gradient(ellipse 80% 50% at 20% 0%, rgba(168, 85, 247, 0.18), transparent), radial-gradient(ellipse 60% 50% at 90% 30%, rgba(255, 111, 184, 0.15), transparent), radial-gradient(ellipse 70% 60% at 50% 100%, rgba(124, 58, 237, 0.2), transparent); pointer-events: none; z-index: 0; }
::selection { background: var(--pink-neon); color: var(--bg-deepest); }
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; padding: 1.25rem 2.5rem; display: flex; justify-content: space-between; align-items: center; background: rgba(10, 4, 24, 0.7); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border-subtle); }
.logo { display: flex; align-items: center; gap: 0.7rem; font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: 1.45rem; color: var(--text-pure); text-decoration: none; }
.logo-orb { width: 26px; height: 26px; border-radius: 50%; background: var(--grad-luna); box-shadow: 0 0 16px rgba(255, 111, 184, 0.6), inset -3px -3px 6px rgba(76, 29, 149, 0.4); position: relative; }
.logo-orb::after { content: ''; position: absolute; top: 18%; left: 22%; width: 30%; height: 30%; background: radial-gradient(circle, rgba(255, 255, 255, 0.7), transparent 70%); border-radius: 50%; }
.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-links a { font-size: 0.85rem; color: var(--text-soft); text-decoration: none; transition: color 0.3s ease; font-weight: 400; }
.nav-links a:hover { color: var(--text-pure); }
nav .cta { font-size: 0.85rem; font-weight: 500; color: var(--text-pure); text-decoration: none; padding: 0.7rem 1.5rem; background: var(--grad-cta); border-radius: 100px; transition: all 0.35s ease; box-shadow: 0 4px 20px rgba(255, 111, 184, 0.25); }
nav .cta:hover { background: var(--grad-cta-hover); transform: translateY(-1px); box-shadow: 0 6px 28px rgba(255, 111, 184, 0.45); }
.page-hero { padding: 10rem 2.5rem 3rem; max-width: 820px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.eyebrow { display: inline-flex; align-items: center; gap: 0.7rem; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--pink-neon); margin-bottom: 2rem; padding: 0.5rem 1rem; border: 1px solid var(--border-glow); border-radius: 100px; background: rgba(255, 111, 184, 0.05); }
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--pink-neon); box-shadow: 0 0 8px var(--pink-neon); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.3); } }
.page-title { font-family: 'Cormorant Garamond', serif; font-weight: 400; font-size: clamp(2.8rem, 6vw, 4.5rem); line-height: 1; letter-spacing: -0.02em; color: var(--text-pure); margin-bottom: 1.5rem; }
.page-title em { font-style: italic; background: linear-gradient(135deg, #ff6fb8, #a855f7); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.page-sub { font-size: 1.1rem; color: var(--text-soft); line-height: 1.7; max-width: 580px; margin: 0 auto; }
.last-updated { margin-top: 1.75rem; font-size: 0.72rem; color: var(--text-mute); letter-spacing: 0.2em; text-transform: uppercase; }
.legal-toc { max-width: 820px; margin: 3rem auto 0; padding: 0 2.5rem; position: relative; z-index: 1; }
.toc-card { padding: 2rem; background: var(--bg-card-soft); border: 1px solid var(--border-subtle); border-radius: 20px; backdrop-filter: blur(10px); }
.toc-label { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--pink-neon); margin-bottom: 1.25rem; }
.toc-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.4rem 1.5rem; list-style: none; }
.toc-list a { color: var(--text-soft); text-decoration: none; font-size: 0.92rem; padding: 0.35rem 0; display: flex; gap: 0.6rem; transition: color 0.3s ease; }
.toc-list a:hover { color: var(--pink-neon); }
.toc-list a span { color: var(--pink-neon); font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 0.85rem; min-width: 1.5rem; }
.legal-content { max-width: 760px; margin: 0 auto; padding: 4rem 2.5rem 5rem; position: relative; z-index: 1; }
.legal-notice { padding: 1.5rem 1.75rem; background: rgba(255, 111, 184, 0.05); border: 1px solid var(--border-glow); border-radius: 16px; margin-bottom: 3rem; font-size: 0.95rem; color: var(--text-soft); line-height: 1.7; }
.legal-notice strong { color: var(--pink-neon); font-weight: 600; }
.legal-content section { margin-bottom: 3rem; scroll-margin-top: 6rem; }
.legal-content section:last-of-type { margin-bottom: 0; }
.legal-content h2 { font-family: 'Cormorant Garamond', serif; font-weight: 400; font-size: clamp(1.7rem, 2.8vw, 2.2rem); line-height: 1.15; letter-spacing: -0.01em; color: var(--text-pure); margin-bottom: 1.25rem; display: flex; align-items: baseline; gap: 1rem; }
.legal-content h2 .num { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 0.95rem; color: var(--pink-neon); letter-spacing: 0.05em; font-weight: 400; min-width: 2.5rem; }
.legal-content h2 em { font-style: italic; background: linear-gradient(135deg, #ff6fb8, #a855f7); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.legal-content h3 { font-family: 'Manrope', sans-serif; font-weight: 500; font-size: 1.02rem; color: var(--text-pure); margin: 1.5rem 0 0.5rem; letter-spacing: 0.005em; }
.legal-content p { font-size: 1rem; color: var(--text-soft); line-height: 1.75; margin-bottom: 1rem; }
.legal-content ul, .legal-content ol { margin: 0.25rem 0 1rem 1.5rem; color: var(--text-soft); font-size: 1rem; line-height: 1.75; }
.legal-content li { margin-bottom: 0.4rem; }
.legal-content li::marker { color: var(--pink-neon); }
.legal-content a { color: var(--pink-neon); text-decoration: none; border-bottom: 1px solid rgba(255, 111, 184, 0.3); transition: border-color 0.3s ease; }
.legal-content a:hover { border-bottom-color: var(--pink-neon); }
.legal-content strong { color: var(--text-pure); font-weight: 500; }
.legal-end { margin-top: 4rem; padding-top: 3rem; border-top: 1px solid var(--border-subtle); text-align: center; }
.legal-end-text { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.25rem; color: var(--text-soft); margin-bottom: 1.25rem; line-height: 1.5; }
.legal-end-contact { font-size: 0.95rem; color: var(--text-mute); }
.legal-end-contact a { color: var(--pink-neon); text-decoration: none; border-bottom: 1px solid rgba(255, 111, 184, 0.3); }
.related-legal { max-width: 820px; margin: 2rem auto 6rem; padding: 0 2.5rem; position: relative; z-index: 1; }
.related-legal-title { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--pink-neon); text-align: center; margin-bottom: 1.5rem; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.related-card { padding: 1.5rem; background: var(--bg-card-soft); border: 1px solid var(--border-subtle); border-radius: 16px; text-decoration: none; transition: all 0.4s ease; backdrop-filter: blur(10px); }
.related-card:hover { border-color: var(--border-glow); transform: translateY(-3px); }
.related-card h4 { font-family: 'Cormorant Garamond', serif; font-weight: 400; font-size: 1.25rem; color: var(--text-pure); margin-bottom: 0.3rem; }
.related-card p { font-size: 0.85rem; color: var(--text-mute); line-height: 1.5; }
footer { padding: 4rem 2.5rem 2.5rem; border-top: 1px solid var(--border-subtle); position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; max-width: 1200px; margin: 0 auto 3rem; }
.footer-tag { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.05rem; color: var(--text-soft); margin: 1.25rem 0; max-width: 280px; line-height: 1.4; }
.footer-col h4 { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--pink-neon); margin-bottom: 1.25rem; }
.footer-col a { display: block; color: var(--text-mute); text-decoration: none; font-size: 0.88rem; margin-bottom: 0.7rem; transition: color 0.3s ease; }
.footer-col a:hover { color: var(--text-pure); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 2rem; border-top: 1px solid var(--border-subtle); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: 0.78rem; color: var(--text-dim); }

/* HAMBURGER + MOBILE MENU */
@media (max-width: 900px) {
    nav { padding: 1rem 1.25rem; }
  .nav-links, .nav-cta-desktop { display: none; }
  .logo { font-size: 1.3rem; }
  .logo-orb { width: 22px; height: 22px; }

  .page-hero { padding: 7.5rem 1.25rem 2.5rem; }
  .legal-toc, .legal-content, .related-legal { padding-left: 1.25rem; padding-right: 1.25rem; }
  .toc-list { grid-template-columns: 1fr; }
  .legal-content { padding-top: 3rem; padding-bottom: 4rem; }
  .legal-content h2 { flex-direction: column; gap: 0.25rem; align-items: flex-start; }
  .related-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============ MOBILE BOTTOM TAB BAR ============ */
.tab-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 110;
  padding: 0.55rem 0.5rem calc(0.55rem + env(safe-area-inset-bottom)) 0.5rem;
  background: rgba(10, 4, 24, 0.85);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  justify-content: space-around;
  align-items: stretch;
  gap: 0.35rem;
}
.tab-bar a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 0.4rem 0.25rem;
  text-decoration: none;
  color: var(--text-mute);
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  font-weight: 400;
  border-radius: 12px;
  transition: color 0.2s ease, background 0.2s ease;
}
.tab-bar a .tab-icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
}
.tab-bar a .tab-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.tab-bar a.active {
  color: var(--pink-neon);
}
.tab-bar a.active .tab-icon svg {
  fill: rgba(255, 111, 184, 0.15);
}
.tab-bar a.tab-cta {
  background: var(--grad-cta);
  color: var(--text-pure);
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(255, 111, 184, 0.35);
}
.tab-bar a.tab-cta .tab-icon svg {
  stroke: white;
  fill: none;
}
.tab-bar a:active { transform: scale(0.96); }

/* Push content above the tab bar on mobile so the footer isn't covered */
@media (max-width: 900px) {
  .tab-bar { display: flex; }
  body { padding-bottom: calc(70px + env(safe-area-inset-bottom)); }
}



/* ===== Imported from disclaimer.html ===== */

:root { --bg-deepest: #0a0418; --bg-card-soft: rgba(58, 36, 84, 0.4); --border-subtle: rgba(232, 184, 200, 0.08); --border-glow: rgba(255, 111, 184, 0.3); --pink-neon: #ff6fb8; --purple-bright: #a855f7; --text-pure: #ffffff; --text-warm: #f5d9d9; --text-soft: #e8b8c8; --text-mute: #9f8bb8; --text-dim: #6b5a82; --grad-cta: linear-gradient(135deg, #ff6fb8 0%, #a855f7 100%); --grad-cta-hover: linear-gradient(135deg, #ff4f9e 0%, #7c3aed 100%); --grad-luna: radial-gradient(circle at 35% 35%, #ffd4e8 0%, #ff6fb8 30%, #a855f7 65%, #4c1d95 100%); }
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Manrope', sans-serif; background: var(--bg-deepest); color: var(--text-warm); font-weight: 300; line-height: 1.7; overflow-x: hidden; -webkit-font-smoothing: antialiased; position: relative; }
body::before { content: ''; position: fixed; inset: 0; background: radial-gradient(ellipse 80% 50% at 20% 0%, rgba(168, 85, 247, 0.18), transparent), radial-gradient(ellipse 60% 50% at 90% 30%, rgba(255, 111, 184, 0.15), transparent), radial-gradient(ellipse 70% 60% at 50% 100%, rgba(124, 58, 237, 0.2), transparent); pointer-events: none; z-index: 0; }
::selection { background: var(--pink-neon); color: var(--bg-deepest); }
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; padding: 1.25rem 2.5rem; display: flex; justify-content: space-between; align-items: center; background: rgba(10, 4, 24, 0.7); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border-subtle); }
.logo { display: flex; align-items: center; gap: 0.7rem; font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: 1.45rem; color: var(--text-pure); text-decoration: none; }
.logo-orb { width: 26px; height: 26px; border-radius: 50%; background: var(--grad-luna); box-shadow: 0 0 16px rgba(255, 111, 184, 0.6), inset -3px -3px 6px rgba(76, 29, 149, 0.4); position: relative; }
.logo-orb::after { content: ''; position: absolute; top: 18%; left: 22%; width: 30%; height: 30%; background: radial-gradient(circle, rgba(255, 255, 255, 0.7), transparent 70%); border-radius: 50%; }
.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-links a { font-size: 0.85rem; color: var(--text-soft); text-decoration: none; transition: color 0.3s ease; font-weight: 400; }
.nav-links a:hover { color: var(--text-pure); }
nav .cta { font-size: 0.85rem; font-weight: 500; color: var(--text-pure); text-decoration: none; padding: 0.7rem 1.5rem; background: var(--grad-cta); border-radius: 100px; transition: all 0.35s ease; box-shadow: 0 4px 20px rgba(255, 111, 184, 0.25); }
nav .cta:hover { background: var(--grad-cta-hover); transform: translateY(-1px); box-shadow: 0 6px 28px rgba(255, 111, 184, 0.45); }
.page-hero { padding: 10rem 2.5rem 3rem; max-width: 820px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.eyebrow { display: inline-flex; align-items: center; gap: 0.7rem; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--pink-neon); margin-bottom: 2rem; padding: 0.5rem 1rem; border: 1px solid var(--border-glow); border-radius: 100px; background: rgba(255, 111, 184, 0.05); }
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--pink-neon); box-shadow: 0 0 8px var(--pink-neon); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.3); } }
.page-title { font-family: 'Cormorant Garamond', serif; font-weight: 400; font-size: clamp(2.8rem, 6vw, 4.5rem); line-height: 1; letter-spacing: -0.02em; color: var(--text-pure); margin-bottom: 1.5rem; }
.page-title em { font-style: italic; background: linear-gradient(135deg, #ff6fb8, #a855f7); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.page-sub { font-size: 1.1rem; color: var(--text-soft); line-height: 1.7; max-width: 580px; margin: 0 auto; }
.last-updated { margin-top: 1.75rem; font-size: 0.72rem; color: var(--text-mute); letter-spacing: 0.2em; text-transform: uppercase; }
.legal-content { max-width: 760px; margin: 0 auto; padding: 4rem 2.5rem 5rem; position: relative; z-index: 1; }
.legal-notice { padding: 1.5rem 1.75rem; background: rgba(255, 111, 184, 0.05); border: 1px solid var(--border-glow); border-radius: 16px; margin-bottom: 3rem; font-size: 0.95rem; color: var(--text-soft); line-height: 1.7; }
.legal-notice strong { color: var(--pink-neon); font-weight: 600; }
.legal-content section { margin-bottom: 3rem; scroll-margin-top: 6rem; }
.legal-content section:last-of-type { margin-bottom: 0; }
.legal-content h2 { font-family: 'Cormorant Garamond', serif; font-weight: 400; font-size: clamp(1.7rem, 2.8vw, 2.2rem); line-height: 1.15; letter-spacing: -0.01em; color: var(--text-pure); margin-bottom: 1.25rem; display: flex; align-items: baseline; gap: 1rem; }
.legal-content h2 .num { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 0.95rem; color: var(--pink-neon); letter-spacing: 0.05em; font-weight: 400; min-width: 2.5rem; }
.legal-content h2 em { font-style: italic; background: linear-gradient(135deg, #ff6fb8, #a855f7); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.legal-content h3 { font-family: 'Manrope', sans-serif; font-weight: 500; font-size: 1.02rem; color: var(--text-pure); margin: 1.5rem 0 0.5rem; letter-spacing: 0.005em; }
.legal-content p { font-size: 1rem; color: var(--text-soft); line-height: 1.75; margin-bottom: 1rem; }
.legal-content ul, .legal-content ol { margin: 0.25rem 0 1rem 1.5rem; color: var(--text-soft); font-size: 1rem; line-height: 1.75; }
.legal-content li { margin-bottom: 0.4rem; }
.legal-content li::marker { color: var(--pink-neon); }
.legal-content a { color: var(--pink-neon); text-decoration: none; border-bottom: 1px solid rgba(255, 111, 184, 0.3); transition: border-color 0.3s ease; }
.legal-content a:hover { border-bottom-color: var(--pink-neon); }
.legal-content strong { color: var(--text-pure); font-weight: 500; }
.legal-end { margin-top: 4rem; padding-top: 3rem; border-top: 1px solid var(--border-subtle); text-align: center; }
.legal-end-text { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.25rem; color: var(--text-soft); margin-bottom: 1.25rem; line-height: 1.5; }
.legal-end-contact { font-size: 0.95rem; color: var(--text-mute); }
.legal-end-contact a { color: var(--pink-neon); text-decoration: none; border-bottom: 1px solid rgba(255, 111, 184, 0.3); }
.related-legal { max-width: 820px; margin: 2rem auto 6rem; padding: 0 2.5rem; position: relative; z-index: 1; }
.related-legal-title { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--pink-neon); text-align: center; margin-bottom: 1.5rem; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.related-card { padding: 1.5rem; background: var(--bg-card-soft); border: 1px solid var(--border-subtle); border-radius: 16px; text-decoration: none; transition: all 0.4s ease; backdrop-filter: blur(10px); }
.related-card:hover { border-color: var(--border-glow); transform: translateY(-3px); }
.related-card h4 { font-family: 'Cormorant Garamond', serif; font-weight: 400; font-size: 1.25rem; color: var(--text-pure); margin-bottom: 0.3rem; }
.related-card p { font-size: 0.85rem; color: var(--text-mute); line-height: 1.5; }
footer { padding: 4rem 2.5rem 2.5rem; border-top: 1px solid var(--border-subtle); position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; max-width: 1200px; margin: 0 auto 3rem; }
.footer-tag { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.05rem; color: var(--text-soft); margin: 1.25rem 0; max-width: 280px; line-height: 1.4; }
.footer-col h4 { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--pink-neon); margin-bottom: 1.25rem; }
.footer-col a { display: block; color: var(--text-mute); text-decoration: none; font-size: 0.88rem; margin-bottom: 0.7rem; transition: color 0.3s ease; }
.footer-col a:hover { color: var(--text-pure); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 2rem; border-top: 1px solid var(--border-subtle); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: 0.78rem; color: var(--text-dim); }

/* HAMBURGER + MOBILE MENU */
@media (max-width: 900px) {
    nav { padding: 1rem 1.25rem; }
  .nav-links, .nav-cta-desktop { display: none; }
  .logo { font-size: 1.3rem; }
  .logo-orb { width: 22px; height: 22px; }

  .page-hero { padding: 7.5rem 1.25rem 2.5rem; }
  .legal-content, .related-legal { padding-left: 1.25rem; padding-right: 1.25rem; }
  .legal-content { padding-top: 3rem; padding-bottom: 4rem; }
  .legal-content h2 { flex-direction: column; gap: 0.25rem; align-items: flex-start; }
  .related-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============ MOBILE BOTTOM TAB BAR ============ */
.tab-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 110;
  padding: 0.55rem 0.5rem calc(0.55rem + env(safe-area-inset-bottom)) 0.5rem;
  background: rgba(10, 4, 24, 0.85);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  justify-content: space-around;
  align-items: stretch;
  gap: 0.35rem;
}
.tab-bar a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 0.4rem 0.25rem;
  text-decoration: none;
  color: var(--text-mute);
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  font-weight: 400;
  border-radius: 12px;
  transition: color 0.2s ease, background 0.2s ease;
}
.tab-bar a .tab-icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
}
.tab-bar a .tab-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.tab-bar a.active {
  color: var(--pink-neon);
}
.tab-bar a.active .tab-icon svg {
  fill: rgba(255, 111, 184, 0.15);
}
.tab-bar a.tab-cta {
  background: var(--grad-cta);
  color: var(--text-pure);
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(255, 111, 184, 0.35);
}
.tab-bar a.tab-cta .tab-icon svg {
  stroke: white;
  fill: none;
}
.tab-bar a:active { transform: scale(0.96); }

/* Push content above the tab bar on mobile so the footer isn't covered */
@media (max-width: 900px) {
  .tab-bar { display: flex; }
  body { padding-bottom: calc(70px + env(safe-area-inset-bottom)); }
}



/* ===== Imported from safety.html ===== */

:root { --bg-deepest: #0a0418; --bg-card-soft: rgba(58, 36, 84, 0.4); --border-subtle: rgba(232, 184, 200, 0.08); --border-glow: rgba(255, 111, 184, 0.3); --pink-neon: #ff6fb8; --purple-bright: #a855f7; --text-pure: #ffffff; --text-warm: #f5d9d9; --text-soft: #e8b8c8; --text-mute: #9f8bb8; --text-dim: #6b5a82; --grad-cta: linear-gradient(135deg, #ff6fb8 0%, #a855f7 100%); --grad-cta-hover: linear-gradient(135deg, #ff4f9e 0%, #7c3aed 100%); --grad-luna: radial-gradient(circle at 35% 35%, #ffd4e8 0%, #ff6fb8 30%, #a855f7 65%, #4c1d95 100%); }
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Manrope', sans-serif; background: var(--bg-deepest); color: var(--text-warm); font-weight: 300; line-height: 1.7; overflow-x: hidden; -webkit-font-smoothing: antialiased; position: relative; }
body::before { content: ''; position: fixed; inset: 0; background: radial-gradient(ellipse 80% 50% at 20% 0%, rgba(168, 85, 247, 0.18), transparent), radial-gradient(ellipse 60% 50% at 90% 30%, rgba(255, 111, 184, 0.15), transparent), radial-gradient(ellipse 70% 60% at 50% 100%, rgba(124, 58, 237, 0.2), transparent); pointer-events: none; z-index: 0; }
::selection { background: var(--pink-neon); color: var(--bg-deepest); }
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; padding: 1.25rem 2.5rem; display: flex; justify-content: space-between; align-items: center; background: rgba(10, 4, 24, 0.7); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border-subtle); }
.logo { display: flex; align-items: center; gap: 0.7rem; font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: 1.45rem; color: var(--text-pure); text-decoration: none; }
.logo-orb { width: 26px; height: 26px; border-radius: 50%; background: var(--grad-luna); box-shadow: 0 0 16px rgba(255, 111, 184, 0.6), inset -3px -3px 6px rgba(76, 29, 149, 0.4); position: relative; }
.logo-orb::after { content: ''; position: absolute; top: 18%; left: 22%; width: 30%; height: 30%; background: radial-gradient(circle, rgba(255, 255, 255, 0.7), transparent 70%); border-radius: 50%; }
.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-links a { font-size: 0.85rem; color: var(--text-soft); text-decoration: none; transition: color 0.3s ease; font-weight: 400; }
.nav-links a:hover { color: var(--text-pure); }
nav .cta { font-size: 0.85rem; font-weight: 500; color: var(--text-pure); text-decoration: none; padding: 0.7rem 1.5rem; background: var(--grad-cta); border-radius: 100px; transition: all 0.35s ease; box-shadow: 0 4px 20px rgba(255, 111, 184, 0.25); }
nav .cta:hover { background: var(--grad-cta-hover); transform: translateY(-1px); box-shadow: 0 6px 28px rgba(255, 111, 184, 0.45); }

.page-hero { padding: 10rem 2.5rem 3rem; max-width: 820px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.eyebrow { display: inline-flex; align-items: center; gap: 0.7rem; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--pink-neon); margin-bottom: 2rem; padding: 0.5rem 1rem; border: 1px solid var(--border-glow); border-radius: 100px; background: rgba(255, 111, 184, 0.05); }
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--pink-neon); box-shadow: 0 0 8px var(--pink-neon); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.3); } }
.page-title { font-family: 'Cormorant Garamond', serif; font-weight: 400; font-size: clamp(2.8rem, 6vw, 4.5rem); line-height: 1; letter-spacing: -0.02em; color: var(--text-pure); margin-bottom: 1.5rem; }
.page-title em { font-style: italic; background: linear-gradient(135deg, #ff6fb8, #a855f7); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.page-sub { font-size: 1.1rem; color: var(--text-soft); line-height: 1.7; max-width: 580px; margin: 0 auto; }

.safety-emergency { max-width: 820px; margin: 3rem auto 0; padding: 0 2.5rem; position: relative; z-index: 1; }
.emergency-card { padding: 2rem 2.25rem; background: rgba(255, 111, 184, 0.08); border: 1.5px solid var(--pink-neon); border-radius: 20px; box-shadow: 0 0 30px rgba(255, 111, 184, 0.2); }
.emergency-label { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--pink-neon); margin-bottom: 1rem; }
.emergency-card p { font-size: 1.02rem; color: var(--text-soft); line-height: 1.65; margin-bottom: 0.5rem; }
.emergency-card strong { color: var(--text-pure); }
.emergency-card a { color: var(--pink-neon); text-decoration: none; border-bottom: 1px solid rgba(255, 111, 184, 0.4); }

.safety-section { max-width: 1100px; margin: 0 auto; padding: 5rem 2.5rem 3rem; position: relative; z-index: 1; }
.section-title { font-family: 'Cormorant Garamond', serif; font-weight: 400; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.05; letter-spacing: -0.02em; color: var(--text-pure); text-align: center; margin-bottom: 1rem; }
.section-title em { font-style: italic; background: linear-gradient(135deg, #ff6fb8, #a855f7); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-intro { text-align: center; color: var(--text-mute); max-width: 600px; margin: 0 auto 3.5rem; line-height: 1.7; font-size: 1.02rem; }

.tip-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.tip-card { padding: 2.25rem 2rem; background: var(--bg-card-soft); border: 1px solid var(--border-subtle); border-radius: 20px; backdrop-filter: blur(10px); transition: all 0.4s ease; }
.tip-card:hover { border-color: var(--border-glow); transform: translateY(-3px); }
.tip-num { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 0.9rem; color: var(--pink-neon); letter-spacing: 0.05em; margin-bottom: 1rem; }
.tip-card h3 { font-family: 'Cormorant Garamond', serif; font-weight: 400; font-size: 1.55rem; line-height: 1.15; color: var(--text-pure); margin-bottom: 0.85rem; letter-spacing: -0.005em; }
.tip-card h3 em { font-style: italic; background: linear-gradient(135deg, #ff6fb8, #a855f7); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.tip-card p { font-size: 0.95rem; color: var(--text-soft); line-height: 1.65; }

.safety-section.online .tip-grid { grid-template-columns: repeat(2, 1fr); }
.safety-section.in-person .tip-grid { grid-template-columns: repeat(2, 1fr); }

.red-flags { max-width: 900px; margin: 4rem auto; padding: 3rem 2.5rem; background: var(--bg-card-soft); border: 1px solid var(--border-subtle); border-radius: 24px; backdrop-filter: blur(10px); position: relative; z-index: 1; }
.red-flag-title { font-family: 'Cormorant Garamond', serif; font-weight: 400; font-size: clamp(1.7rem, 3vw, 2.3rem); color: var(--text-pure); margin-bottom: 0.75rem; line-height: 1.1; text-align: center; }
.red-flag-title em { font-style: italic; background: linear-gradient(135deg, #ff6fb8, #a855f7); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.red-flag-intro { text-align: center; color: var(--text-mute); margin-bottom: 2.5rem; font-size: 0.98rem; }
.red-flag-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 2.5rem; }
.red-flag { display: flex; align-items: flex-start; gap: 0.85rem; padding: 0.5rem 0; }
.flag-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--pink-neon); box-shadow: 0 0 6px var(--pink-neon); margin-top: 0.6rem; flex-shrink: 0; }
.red-flag-text { font-size: 0.95rem; color: var(--text-soft); line-height: 1.5; }

.report-section { max-width: 760px; margin: 4rem auto 6rem; padding: 0 2.5rem; text-align: center; position: relative; z-index: 1; }
.report-card { padding: 3rem 2.5rem; background: linear-gradient(135deg, rgba(255, 111, 184, 0.08), rgba(168, 85, 247, 0.05)); border: 1px solid var(--border-glow); border-radius: 24px; }
.report-card h3 { font-family: 'Cormorant Garamond', serif; font-weight: 400; font-size: clamp(1.7rem, 3vw, 2.3rem); color: var(--text-pure); margin-bottom: 1rem; line-height: 1.1; }
.report-card h3 em { font-style: italic; background: linear-gradient(135deg, #ff6fb8, #a855f7); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.report-card p { color: var(--text-soft); font-size: 1rem; line-height: 1.7; margin-bottom: 1.75rem; }
.report-card .report-btn { display: inline-block; background: var(--grad-cta); color: var(--text-pure); text-decoration: none; padding: 0.9rem 2rem; border-radius: 100px; font-weight: 600; font-size: 0.92rem; transition: all 0.3s ease; box-shadow: 0 4px 20px rgba(255, 111, 184, 0.4); }
.report-card .report-btn:hover { background: var(--grad-cta-hover); transform: translateY(-1px); box-shadow: 0 6px 28px rgba(255, 111, 184, 0.5); }

.related-legal { max-width: 820px; margin: 2rem auto 6rem; padding: 0 2.5rem; position: relative; z-index: 1; }
.related-legal-title { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--pink-neon); text-align: center; margin-bottom: 1.5rem; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.related-card { padding: 1.5rem; background: var(--bg-card-soft); border: 1px solid var(--border-subtle); border-radius: 16px; text-decoration: none; transition: all 0.4s ease; backdrop-filter: blur(10px); }
.related-card:hover { border-color: var(--border-glow); transform: translateY(-3px); }
.related-card h4 { font-family: 'Cormorant Garamond', serif; font-weight: 400; font-size: 1.25rem; color: var(--text-pure); margin-bottom: 0.3rem; }
.related-card p { font-size: 0.85rem; color: var(--text-mute); line-height: 1.5; }

footer { padding: 4rem 2.5rem 2.5rem; border-top: 1px solid var(--border-subtle); position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; max-width: 1200px; margin: 0 auto 3rem; }
.footer-tag { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.05rem; color: var(--text-soft); margin: 1.25rem 0; max-width: 280px; line-height: 1.4; }
.footer-col h4 { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--pink-neon); margin-bottom: 1.25rem; }
.footer-col a { display: block; color: var(--text-mute); text-decoration: none; font-size: 0.88rem; margin-bottom: 0.7rem; transition: color 0.3s ease; }
.footer-col a:hover { color: var(--text-pure); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 2rem; border-top: 1px solid var(--border-subtle); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: 0.78rem; color: var(--text-dim); }


/* HAMBURGER + MOBILE MENU */
@media (max-width: 900px) {
    nav { padding: 1rem 1.25rem; }
  .nav-links, .nav-cta-desktop { display: none; }
  .logo { font-size: 1.3rem; }
  .logo-orb { width: 22px; height: 22px; }

  .page-hero { padding: 7.5rem 1.25rem 2.5rem; }
  .safety-emergency, .safety-section, .red-flags, .report-section, .related-legal { padding-left: 1.25rem; padding-right: 1.25rem; }
  .safety-section { padding-top: 4rem; }
  .red-flags { padding: 2.5rem 1.75rem; margin: 3rem 1.25rem; }
  .tip-grid, .red-flag-list { grid-template-columns: 1fr; gap: 1rem; }
  .related-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============ MOBILE BOTTOM TAB BAR ============ */
.tab-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 110;
  padding: 0.55rem 0.5rem calc(0.55rem + env(safe-area-inset-bottom)) 0.5rem;
  background: rgba(10, 4, 24, 0.85);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  justify-content: space-around;
  align-items: stretch;
  gap: 0.35rem;
}
.tab-bar a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 0.4rem 0.25rem;
  text-decoration: none;
  color: var(--text-mute);
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  font-weight: 400;
  border-radius: 12px;
  transition: color 0.2s ease, background 0.2s ease;
}
.tab-bar a .tab-icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
}
.tab-bar a .tab-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.tab-bar a.active {
  color: var(--pink-neon);
}
.tab-bar a.active .tab-icon svg {
  fill: rgba(255, 111, 184, 0.15);
}
.tab-bar a.tab-cta {
  background: var(--grad-cta);
  color: var(--text-pure);
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(255, 111, 184, 0.35);
}
.tab-bar a.tab-cta .tab-icon svg {
  stroke: white;
  fill: none;
}
.tab-bar a:active { transform: scale(0.96); }

/* Push content above the tab bar on mobile so the footer isn't covered */
@media (max-width: 900px) {
  .tab-bar { display: flex; }
  body { padding-bottom: calc(70px + env(safe-area-inset-bottom)); }
}



/* ===== iPhone mockup styles from v3 ===== */

:root {
  --bg-deepest: #0a0418;
  --bg-deep: #14092a;
  --pink-neon: #ff6fb8;
  --purple-bright: #a855f7;
  --purple-deep: #7c3aed;
  --text-pure: #ffffff;
  --text-warm: #f5d9d9;
  --text-soft: #e8b8c8;
  --text-mute: #9f8bb8;
  --text-dim: #6b5a82;
  --border-glow: rgba(255, 111, 184, 0.3);
  --grad-cta: linear-gradient(135deg, #ff6fb8 0%, #a855f7 100%);
  --grad-luna: radial-gradient(circle at 35% 35%, #ffd4e8 0%, #ff6fb8 30%, #a855f7 65%, #4c1d95 100%);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Manrope', sans-serif;
  background: var(--bg-deepest);
  color: var(--text-warm);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--pink-neon); color: var(--bg-deepest); }

/* PARALLAX BACKGROUND */
.parallax-bg { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.parallax-layer {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.4;
  will-change: transform;
}
.parallax-layer.l1 { width: 700px; height: 700px; background: rgba(168, 85, 247, 0.4); top: -10%; left: -10%; }
.parallax-layer.l2 { width: 600px; height: 600px; background: rgba(255, 111, 184, 0.35); top: 30%; right: -15%; opacity: 0.5; }
.parallax-layer.l3 { width: 800px; height: 800px; background: rgba(124, 58, 237, 0.4); top: 80%; left: 20%; }
.parallax-layer.l4 { width: 500px; height: 500px; background: rgba(255, 111, 184, 0.25); top: 150%; right: 10%; }
.parallax-layer.l5 { width: 700px; height: 700px; background: rgba(168, 85, 247, 0.3); top: 220%; left: -5%; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.25rem 2.5rem;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(10, 4, 24, 0.6);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(232, 184, 200, 0.08);
}
.logo {
  display: flex; align-items: center; gap: 0.7rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500; font-size: 1.45rem;
  color: var(--text-pure); text-decoration: none;
}
.logo-orb {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--grad-luna);
  box-shadow: 0 0 16px rgba(255, 111, 184, 0.6);
}
.nav-cta {
  font-size: 0.85rem; font-weight: 500;
  color: var(--text-pure); text-decoration: none;
  padding: 0.7rem 1.5rem;
  background: var(--grad-cta); border-radius: 100px;
  box-shadow: 0 4px 20px rgba(255, 111, 184, 0.3);
}

main { position: relative; z-index: 1; padding-top: 6rem; }

/* CONCEPT BANNER */
.concept-banner {
  background: rgba(255, 111, 184, 0.08);
  border-bottom: 1px solid var(--border-glow);
  padding: 0.6rem 1rem;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink-neon);
  position: fixed;
  top: 75px;
  left: 0; right: 0;
  z-index: 99;
  backdrop-filter: blur(20px);
}

/* ============ ACT 1: HERO with letter-by-letter ============ */
.act-1 {
  min-height: 90vh;
  padding: 7rem 2rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.act-1-inner { max-width: 1100px; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--pink-neon);
  margin-bottom: 2.5rem;
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--border-glow);
  border-radius: 100px;
  background: rgba(255, 111, 184, 0.05);
  opacity: 0;
  animation: fade-up 1s 0.2s ease-out forwards;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--pink-neon);
  box-shadow: 0 0 8px var(--pink-neon);
  animation: pulse 2s ease-in-out infinite;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--text-pure);
  margin-bottom: 3rem;
}
/* Letter-by-letter animation */
.hero-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: word-rise 0.6s ease-out forwards;
  margin: 0 0.15em;
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, #ff6fb8 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-title .strike {
  position: relative;
  display: inline-block;
  color: var(--text-soft);
}
.hero-title .strike::after {
  content: '';
  position: absolute;
  top: 52%;
  left: -3%;
  width: 0%;
  height: 3px;
  background: var(--pink-neon);
  transform: rotate(-3deg);
  box-shadow: 0 0 12px var(--pink-neon), 0 0 24px rgba(255, 111, 184, 0.5);
  animation: strike-through 1s 2.5s ease-out forwards;
}
@keyframes strike-through { to { width: 106%; } }

.tagline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  line-height: 1.2;
  color: var(--text-pure);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fade-up 1s 3s ease-out forwards;
}
.tagline em {
  font-style: italic;
  background: linear-gradient(135deg, #ff6fb8, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-soft);
  max-width: 560px;
  margin: 0 auto 3rem;
  line-height: 1.7;
  opacity: 0;
  animation: fade-up 1s 3.3s ease-out forwards;
}

.big-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--grad-cta);
  color: var(--text-pure);
  text-decoration: none;
  padding: 1.15rem 2.5rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 6px 32px rgba(255, 111, 184, 0.4);
  opacity: 0;
  animation: fade-up 1s 3.5s ease-out forwards;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.big-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(255, 111, 184, 0.6);
}

.hero-trust {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 1s 3.7s ease-out forwards;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-mute);
}
.trust-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--pink-neon);
  box-shadow: 0 0 10px var(--pink-neon);
  animation: pulse 2s ease-in-out infinite;
}
.trust-avatars {
  display: flex;
  align-items: center;
}
.trust-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--grad-luna);
  border: 2px solid var(--bg-deepest);
  margin-left: -8px;
}
.trust-avatar:first-child { margin-left: 0; }

/* ============ ACT 2: APP IN ACTION — carousel ============ */
.act-mockup {
  padding: 6rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.app-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1300px;
  width: 100%;
}
.app-showcase-text { padding-right: 1rem; }
.carousel-dots {
  display: flex;
  gap: 0.6rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.carousel-dots .dot {
  width: 32px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease, width 0.3s ease;
  position: relative;
  overflow: hidden;
}
.carousel-dots .dot:hover { background: rgba(255, 255, 255, 0.3); }
.carousel-dots .dot.active {
  background: rgba(255, 111, 184, 0.2);
  width: 48px;
}
.carousel-dots .dot.active::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--pink-neon), var(--purple-bright));
  border-radius: 2px;
  transform-origin: left;
  animation: dot-fill 4.5s linear forwards;
  box-shadow: 0 0 8px var(--pink-neon);
}
@keyframes dot-fill {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* iPhone mockup carousel */
.iphone-mockup {
  position: relative;
  width: 320px;
  height: 660px;
  margin: 0 auto;
  background: #0a0418;
  border-radius: 48px;
  padding: 12px;
  box-shadow:
    0 0 0 2px #2a1947,
    0 0 0 4px #1f1238,
    0 30px 80px rgba(255, 111, 184, 0.3),
    0 0 120px rgba(168, 85, 247, 0.2);
  animation: phone-float 6s ease-in-out infinite;
}
.iphone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #14092a 0%, #1f1238 100%);
  border-radius: 36px;
  position: relative;
  overflow: hidden;
}
.iphone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 26px;
  background: #000;
  border-radius: 100px;
  z-index: 3;
}
.iphone-statusbar {
  position: absolute;
  top: 18px;
  left: 0; right: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  font-size: 0.7rem;
  color: var(--text-pure);
  font-weight: 600;
  pointer-events: none;
}
.iphone-statusbar .signal-bars {
  font-size: 0.5rem;
  letter-spacing: 2px;
  color: var(--text-pure);
}

.iphone-carousel {
  width: 100%;
  height: 100%;
  position: relative;
}
.iphone-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.iphone-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.iphone-content {
  padding: 60px 24px 24px;
  height: 100%;
  position: relative;
}
.discover-scroll::-webkit-scrollbar { width: 0; display: none; }
.iphone-app-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--text-pure);
  text-align: center;
  margin-bottom: 24px;
  opacity: 0.9;
}
.iphone-luna-stage {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 16px auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.iphone-luna-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 111, 184, 0.25);
}
.iphone-luna-ring.r1 { width: 170px; height: 170px; animation: rotate 40s linear infinite; }
.iphone-luna-ring.r2 { width: 130px; height: 130px; animation: rotate 30s linear reverse infinite; border-color: rgba(168, 85, 247, 0.3); }
.iphone-luna-orb {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--grad-luna);
  box-shadow:
    0 0 40px rgba(255, 111, 184, 0.6),
    inset -15px -15px 30px rgba(76, 29, 149, 0.5);
  animation: orb-pulse 4s ease-in-out infinite;
  position: relative;
}
.iphone-luna-orb::after {
  content: '';
  position: absolute;
  top: 18%; left: 22%;
  width: 30%; height: 30%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.7), transparent 70%);
  border-radius: 50%;
}
.iphone-luna-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--text-pure);
  text-align: center;
  margin-bottom: 6px;
}
.iphone-luna-title em {
  font-style: italic;
  background: linear-gradient(135deg, #ff6fb8, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.iphone-luna-sub {
  font-size: 0.7rem;
  color: var(--text-mute);
  text-align: center;
  margin-bottom: 20px;
}
.iphone-prompt {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 10px 12px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.iphone-prompt-dot {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--grad-luna);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(255, 111, 184, 0.4);
}
.iphone-prompt-text {
  font-size: 0.7rem;
  color: var(--text-soft);
  line-height: 1.35;
}

.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--pink-neon);
  margin-bottom: 1.5rem;
}
.act-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--text-pure);
  margin-bottom: 1.5rem;
}
.act-title em {
  font-style: italic;
  background: linear-gradient(135deg, #ff6fb8, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.act-text {
  font-size: 1.1rem;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  max-width: 460px;
}
.act-text strong { color: var(--text-pure); font-weight: 500; }

/* ============ ACT 3: 48 HOURS — same glass panel ============ */
.act-3 {
  padding: 5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.act-3-inner { max-width: 900px; width: 100%; }
.glass-panel-large {
  padding: 4rem 3rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  backdrop-filter: blur(30px) saturate(200%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.clock-large {
  position: relative;
  width: 200px; height: 200px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.clock-ring-bg {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255, 111, 184, 0.2);
}
.clock-ring-arc {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border-top: 3px solid var(--pink-neon);
  border-right: 3px solid var(--pink-neon);
  border-bottom: 3px solid transparent;
  border-left: 3px solid transparent;
  animation: rotate 10s linear infinite;
  filter: drop-shadow(0 0 8px var(--pink-neon));
}
.clock-num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 5rem;
  color: var(--text-pure);
  text-shadow: 0 0 20px rgba(255, 111, 184, 0.5);
}
.three-pills {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.pill {
  padding: 0.6rem 1.25rem;
  background: rgba(255, 111, 184, 0.08);
  border: 1px solid var(--border-glow);
  border-radius: 100px;
  font-size: 0.82rem;
  color: var(--text-soft);
}

/* ============ ACT 4: VOICE — interactive player ============ */
.act-4 {
  padding: 5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.act-4-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1300px;
  width: 100%;
}
.voice-card {
  width: 100%;
  max-width: 440px;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  backdrop-filter: blur(30px) saturate(180%);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.voice-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.voice-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: url('assets/amanda-voice-card.jpg') center/cover no-repeat;
  border: 2px solid rgba(255, 111, 184, 0.5);
  box-shadow: 0 0 20px rgba(255, 111, 184, 0.3);
}
.voice-info { flex: 1; }
.voice-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--text-pure);
}
.voice-tag {
  font-size: 0.78rem;
  color: var(--pink-neon);
  font-style: italic;
  margin-top: 0.15rem;
}
.voice-play-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--grad-cta);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(255, 111, 184, 0.4);
  transition: all 0.3s ease;
  position: relative;
}
.voice-play-btn .play-icon {
  width: 0; height: 0;
  border-style: solid;
  border-width: 7px 0 7px 11px;
  border-color: transparent transparent transparent white;
  margin-left: 3px;
  transition: opacity 0.2s ease;
}
.voice-play-btn .pause-icon {
  width: 12px;
  height: 14px;
  border-left: 3px solid white;
  border-right: 3px solid white;
  opacity: 0;
  position: absolute;
  transition: opacity 0.2s ease;
}
.voice-play-btn.playing .play-icon { opacity: 0; }
.voice-play-btn.playing .pause-icon { opacity: 1; }
.voice-progress {
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  margin-bottom: 1.25rem;
  overflow: hidden;
}
.voice-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--pink-neon), var(--purple-bright));
  border-radius: 4px;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px var(--pink-neon);
}
.voice-waveform {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 80px;
  margin-bottom: 1rem;
}
.voice-waveform .bar {
  flex: 1;
  background: linear-gradient(180deg, var(--pink-neon), var(--purple-bright));
  border-radius: 4px;
  opacity: 0.4;
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.voice-waveform.playing .bar {
  animation: wave-pulse 1.4s ease-in-out infinite;
  opacity: 0.9;
}
.voice-waveform.playing .bar:nth-child(2n) { animation-delay: 0.1s; }
.voice-waveform.playing .bar:nth-child(3n) { animation-delay: 0.2s; }
.voice-waveform.playing .bar:nth-child(5n) { animation-delay: 0.05s; }
.voice-waveform .bar:nth-child(1) { height: 30%; }
.voice-waveform .bar:nth-child(2) { height: 55%; }
.voice-waveform .bar:nth-child(3) { height: 80%; }
.voice-waveform .bar:nth-child(4) { height: 95%; }
.voice-waveform .bar:nth-child(5) { height: 70%; }
.voice-waveform .bar:nth-child(6) { height: 100%; }
.voice-waveform .bar:nth-child(7) { height: 60%; }
.voice-waveform .bar:nth-child(8) { height: 85%; }
.voice-waveform .bar:nth-child(9) { height: 45%; }
.voice-waveform .bar:nth-child(10) { height: 75%; }
.voice-waveform .bar:nth-child(11) { height: 35%; }
.voice-waveform .bar:nth-child(12) { height: 60%; }
.voice-waveform .bar:nth-child(13) { height: 50%; }
.voice-waveform .bar:nth-child(14) { height: 30%; }
.voice-waveform .bar:nth-child(15) { height: 65%; }
.voice-waveform .bar:nth-child(16) { height: 40%; }
.voice-waveform .bar:nth-child(17) { height: 55%; }
.voice-waveform .bar:nth-child(18) { height: 25%; }
.voice-insight {
  padding: 1rem 1.25rem;
  background: rgba(255, 111, 184, 0.06);
  border: 1px solid var(--border-glow);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.voice-insight-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.voice-insight-tag {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  background: linear-gradient(135deg, #ff6fb8, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============ NEW: SOUL SIGNAL MOMENT ============ */
.act-soul {
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
}
.soul-inner {
  max-width: 900px;
  margin: 0 auto;
}
.soul-stage {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 0 auto 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.soul-orb {
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--grad-luna);
  box-shadow: 0 0 60px rgba(255, 111, 184, 0.6), inset -10px -10px 25px rgba(76, 29, 149, 0.5);
}
.soul-orb.left {
  animation: orb-converge-left 4s ease-in-out infinite;
}
.soul-orb.right {
  animation: orb-converge-right 4s ease-in-out infinite;
}
.soul-pulse {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 2px solid var(--pink-neon);
  opacity: 0;
  animation: soul-pulse 4s ease-out infinite;
}

/* ============ ACT 5: REAL MATCHES START ============ */
.act-5 {
  padding: 5rem 2rem;
  text-align: center;
}
.act-5-inner { max-width: 1200px; margin: 0 auto; }
.act-5-sub {
  font-size: 1.1rem;
  color: var(--text-soft);
  max-width: 580px;
  margin: 0 auto 3.5rem;
  line-height: 1.7;
}
.match-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.match-card {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  backdrop-filter: blur(20px) saturate(180%);
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.match-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
}
.match-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--pink-neon);
  margin-bottom: 1.25rem;
}
.match-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.85rem;
  line-height: 1.1;
  color: var(--text-pure);
  margin-bottom: 1rem;
}
.match-card h3 em {
  font-style: italic;
  background: linear-gradient(135deg, #ff6fb8, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.match-card p {
  font-size: 0.95rem;
  color: var(--text-mute);
  line-height: 1.65;
}

/* ============ NEW: TESTIMONIALS ============ */
.act-testimonials {
  padding: 6rem 2rem;
  text-align: center;
}
.testimonials-inner { max-width: 1100px; margin: 0 auto; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  backdrop-filter: blur(20px) saturate(180%);
  text-align: left;
  position: relative;
}
.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.4;
  color: var(--text-pure);
  margin-bottom: 1.5rem;
}
.testimonial-quote::before {
  content: '"';
  display: block;
  font-size: 3rem;
  line-height: 0.5;
  margin-bottom: 0.5rem;
  color: var(--pink-neon);
  opacity: 0.5;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--grad-luna);
  box-shadow: 0 0 12px rgba(255, 111, 184, 0.4);
}
.testimonial-name {
  font-size: 0.85rem;
  color: var(--text-pure);
}
.testimonial-meta {
  font-size: 0.75rem;
  color: var(--text-mute);
}

/* ============ ACT 6: FINAL CLOSE ============ */
.act-6 {
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.act-6::before {
  content: '';
  position: absolute;
  width: 1000px; height: 1000px;
  background: radial-gradient(circle, rgba(255, 111, 184, 0.2) 0%, rgba(168, 85, 247, 0.1) 30%, transparent 60%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: -1;
  animation: glow-breathe 8s ease-in-out infinite;
}
.act-6-inner { max-width: 740px; margin: 0 auto; }
.act-6-orb {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--grad-luna);
  margin: 0 auto 2rem;
  box-shadow: 0 0 50px rgba(255, 111, 184, 0.5), inset -15px -15px 30px rgba(76, 29, 149, 0.5);
  animation: orb-pulse 4s ease-in-out infinite;
}
.act-6 h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.75rem, 6vw, 5rem);
  line-height: 1;
  color: var(--text-pure);
  margin-bottom: 2rem;
}
.act-6 h2 em {
  font-style: italic;
  background: linear-gradient(135deg, #ff6fb8, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.act-6 .act-text {
  text-align: center;
  margin: 0 auto 3rem;
  max-width: 540px;
}

/* FOOTER */
footer {
  padding: 3rem 2rem;
  border-top: 1px solid rgba(232, 184, 200, 0.08);
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-dim);
  position: relative;
  z-index: 1;
}

/* ANIMATIONS */
@keyframes fade-up {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes word-rise {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
@keyframes orb-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
@keyframes phone-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes rotate {
  to { transform: rotate(360deg); }
}
@keyframes cursor-blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}
@keyframes glow-breathe {
  0%, 100% { opacity: 0.8; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}
@keyframes wave-pulse {
  0%, 100% { transform: scaleY(0.6); }
  50% { transform: scaleY(1); }
}
@keyframes orb-converge-left {
  0%, 100% { transform: translateX(-60px); }
  50% { transform: translateX(-15px); box-shadow: 0 0 80px rgba(255, 111, 184, 0.8), inset -10px -10px 25px rgba(76, 29, 149, 0.5); }
}
@keyframes orb-converge-right {
  0%, 100% { transform: translateX(60px); }
  50% { transform: translateX(15px); box-shadow: 0 0 80px rgba(168, 85, 247, 0.8), inset -10px -10px 25px rgba(76, 29, 149, 0.5); }
}
@keyframes orb-mini-left {
  0%, 100% { transform: translateX(-30px); }
  50% { transform: translateX(-8px); box-shadow: 0 0 45px rgba(255, 111, 184, 0.8); }
}
@keyframes orb-mini-right {
  0%, 100% { transform: translateX(30px); }
  50% { transform: translateX(8px); box-shadow: 0 0 45px rgba(168, 85, 247, 0.8); }
}
@keyframes soul-pulse {
  0% { transform: scale(0.8); opacity: 0; }
  50% { opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}

@media (max-width: 900px) {
  .concept-banner { font-size: 0.65rem; padding: 0.5rem; }
  .app-showcase { grid-template-columns: 1fr; gap: 3rem; }
  .app-showcase-text { padding-right: 0; text-align: center; }
  .carousel-dots { justify-content: center; }
  .act-4-grid { grid-template-columns: 1fr; gap: 3rem; }
  .match-grid, .testimonials-grid { grid-template-columns: 1fr; gap: 1rem; }
  .iphone-mockup { width: 260px; height: 540px; }
  .iphone-luna-stage { width: 140px; height: 140px; }
  .iphone-luna-orb { width: 80px; height: 80px; }
  .glass-panel-large { padding: 3rem 1.5rem; }
  nav { padding: 1rem 1.25rem; }
}

/* ===== Launch tag pill — iOS frosted glass ===== */
.launch-tag {
  display: inline-block;
  font-weight: 600;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  border: 0.5px solid rgba(255, 255, 255, 0.3);
  padding: 6px 18px;
  border-radius: 999px;
  margin-left: 6px;
  font-size: 0.95em;
  letter-spacing: 0.02em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    inset 0 -1px 0 rgba(255, 255, 255, 0.05),
    0 2px 12px rgba(0, 0, 0, 0.2);
}
