:root {
  --bg: #050507;
  --text: #f0ece4;
  --muted: rgba(240,236,228,0.35);
  --accent: #d4a253;
  --glow: rgba(212,162,83,0.4);
  --glow-soft: rgba(212,162,83,0.08);
  --glass: rgba(255,255,255,0.03);
  --glass-border: rgba(212,162,83,0.1);
  --glass-hover: rgba(255,255,255,0.06);
  --max-w: 720px;
  --font: -apple-system, 'SF Pro Display', 'Helvetica Neue', sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--accent); text-decoration:none; transition: opacity 0.2s; }
a:hover { opacity: 0.7; }

/* ═══════════════════════════════════════ */
/* STAR FIELD BACKGROUND                   */
/* ═══════════════════════════════════════ */

.stars {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(1px 1px at 10% 20%, rgba(212,162,83,0.3), transparent),
    radial-gradient(1px 1px at 30% 70%, rgba(255,255,255,0.15), transparent),
    radial-gradient(1px 1px at 50% 10%, rgba(212,162,83,0.2), transparent),
    radial-gradient(1px 1px at 70% 40%, rgba(255,255,255,0.1), transparent),
    radial-gradient(1px 1px at 90% 80%, rgba(212,162,83,0.25), transparent),
    radial-gradient(1px 1px at 15% 90%, rgba(255,255,255,0.12), transparent),
    radial-gradient(1px 1px at 45% 50%, rgba(212,162,83,0.15), transparent),
    radial-gradient(1px 1px at 80% 15%, rgba(255,255,255,0.08), transparent),
    radial-gradient(0.5px 0.5px at 25% 35%, rgba(255,255,255,0.2), transparent),
    radial-gradient(0.5px 0.5px at 65% 65%, rgba(212,162,83,0.18), transparent),
    radial-gradient(0.5px 0.5px at 85% 55%, rgba(255,255,255,0.12), transparent),
    radial-gradient(0.5px 0.5px at 5% 60%, rgba(212,162,83,0.2), transparent),
    radial-gradient(0.5px 0.5px at 55% 85%, rgba(255,255,255,0.1), transparent),
    radial-gradient(0.5px 0.5px at 35% 25%, rgba(212,162,83,0.12), transparent),
    radial-gradient(0.5px 0.5px at 75% 90%, rgba(255,255,255,0.15), transparent);
}

.content { position: relative; z-index: 1; }

/* ═══════════════════════════════════════ */
/* FLOWER OF LIFE (pure CSS)               */
/* ═══════════════════════════════════════ */

.flower-container {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto 32px;
}

.flower-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--accent);
  opacity: 0.25;
  animation: flower-breathe 8s ease-in-out infinite;
}

.flower-ring.center { width:80px; height:80px; top:40px; left:40px; opacity:0.4; }
.flower-ring.r1 { width:80px; height:80px; top:0; left:40px; animation-delay: -1s; }
.flower-ring.r2 { width:80px; height:80px; top:20px; left:74px; animation-delay: -2s; }
.flower-ring.r3 { width:80px; height:80px; top:60px; left:74px; animation-delay: -3s; }
.flower-ring.r4 { width:80px; height:80px; top:80px; left:40px; animation-delay: -4s; }
.flower-ring.r5 { width:80px; height:80px; top:60px; left:6px; animation-delay: -5s; }
.flower-ring.r6 { width:80px; height:80px; top:20px; left:6px; animation-delay: -6s; }

.flower-glow {
  position: absolute;
  width: 120px; height: 120px;
  top: 20px; left: 20px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--glow) 0%, transparent 70%);
  filter: blur(20px);
  animation: flower-breathe 8s ease-in-out infinite;
}

@keyframes flower-breathe {
  0%, 100% { transform: scale(1); opacity: 0.25; }
  50% { transform: scale(1.08); opacity: 0.5; }
}

/* ═══════════════════════════════════════ */
/* HERO                                    */
/* ═══════════════════════════════════════ */

.hero {
  text-align: center;
  padding: 100px 24px 48px;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 200;
  letter-spacing: 0.15em;
  color: var(--accent);
  text-shadow: 0 0 60px var(--glow);
  margin-bottom: 4px;
}

.hero .subtitle-large {
  font-size: 1.1rem;
  font-weight: 200;
  letter-spacing: 0.3em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero .tagline {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(240,236,228,0.55);
  line-height: 1.9;
  max-width: 480px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════ */
/* PROOF BAR                               */
/* ═══════════════════════════════════════ */

.proof-bar {
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 24px;
  margin: 16px auto 48px;
  max-width: var(--max-w);
  flex-wrap: wrap;
}

.proof-item {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.6;
}

/* ═══════════════════════════════════════ */
/* GLASS CARDS (Features)                  */
/* ═══════════════════════════════════════ */

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: var(--max-w);
  margin: 0 auto 64px;
  padding: 0 24px;
}

.feature-card {
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 0.5px solid var(--glass-border);
  border-radius: 20px;
  padding: 28px 24px;
  transition: background 0.3s, border-color 0.3s;
}
.feature-card:hover {
  background: var(--glass-hover);
  border-color: rgba(212,162,83,0.25);
}

.feature-card .icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 8px var(--glow));
}

.feature-card h3 {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 300;
}

/* ═══════════════════════════════════════ */
/* SCIENCE SECTION                         */
/* ═══════════════════════════════════════ */

section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 64px 24px;
}

section h2 {
  font-size: 1.5rem;
  font-weight: 200;
  text-align: center;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 300;
  margin-bottom: 32px;
}

.science-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.science-card {
  background: var(--glass);
  border: 0.5px solid var(--glass-border);
  border-radius: 16px;
  padding: 22px 20px;
  transition: border-color 0.3s;
}
.science-card:hover { border-color: rgba(212,162,83,0.3); }

.study-badge {
  display: inline-block;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.science-card h4 {
  font-size: 0.92rem;
  font-weight: 500;
  margin-bottom: 6px;
}

.science-card p {
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 300;
}

/* ═══════════════════════════════════════ */
/* COACH SECTION                           */
/* ═══════════════════════════════════════ */

.coach-features {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.coach-feature {
  background: var(--glass);
  border: 0.5px solid var(--glass-border);
  border-radius: 18px;
  padding: 28px 18px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}
.coach-feature:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.coach-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 14px;
  filter: drop-shadow(0 0 12px var(--glow));
}

.coach-feature h4 {
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.coach-feature p {
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 300;
}

.coming-tag {
  display: inline-block;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
}

/* ═══════════════════════════════════════ */
/* BUTTONS                                 */
/* ═══════════════════════════════════════ */

.btn-accent {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(135deg, var(--accent), #c4883a);
  color: var(--bg);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  border-radius: 28px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 0 24px var(--glow);
}
.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px var(--glow);
  text-decoration: none;
}

.coming-soon {
  display: inline-block;
  padding: 14px 40px;
  border: 1px solid rgba(212,162,83,0.4);
  border-radius: 28px;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.coming-soon:hover {
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(212,162,83,0.15);
}

/* ═══════════════════════════════════════ */
/* SIGNUP SECTION                          */
/* ═══════════════════════════════════════ */

.signup-section {
  background: linear-gradient(135deg, rgba(212,162,83,0.06), rgba(212,162,83,0.02));
  border: 0.5px solid var(--glass-border);
  border-radius: 24px;
  margin-top: 16px;
}

.signup-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 380px;
  margin: 0 auto;
}

.signup-form input[type="email"],
.signup-form select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(0,0,0,0.5);
  border: 0.5px solid var(--glass-border);
  border-radius: 12px;
  color: var(--text);
  font-size: 0.88rem;
  font-family: var(--font);
  outline: none;
  transition: border-color 0.3s;
}
.signup-form input:focus,
.signup-form select:focus { border-color: var(--accent); }
.signup-form input::placeholder { color: var(--muted); }
.signup-form select { appearance: none; cursor: pointer; }
.signup-form button { width: 100%; padding: 14px; }

.form-note {
  font-size: 0.68rem;
  color: var(--muted);
  text-align: center;
  margin-top: 2px;
  font-weight: 300;
}

/* ═══════════════════════════════════════ */
/* HARDWARE                                */
/* ═══════════════════════════════════════ */

.hardware-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}

.hw-card {
  background: var(--glass);
  border: 0.5px solid var(--glass-border);
  border-radius: 16px;
  padding: 22px 18px;
  text-align: center;
  transition: border-color 0.3s;
}
.hw-card:hover { border-color: rgba(212,162,83,0.3); }
.hw-card h4 {
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--accent);
}
.hw-card p {
  font-size: 0.74rem;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 300;
}

/* ═══════════════════════════════════════ */
/* BRAND / CTA / FOOTER                    */
/* ═══════════════════════════════════════ */

.brand-section {
  text-align: center;
  padding: 48px 24px;
}
.brand-text {
  font-size: 0.76rem;
  color: var(--muted);
  font-weight: 300;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.cta { text-align: center; }

footer {
  text-align: center;
  padding: 40px 24px;
  border-top: 0.5px solid var(--glass-border);
  margin-top: 64px;
}
footer p { font-size: 0.72rem; color: var(--muted); font-weight: 300; }
footer nav { margin-top: 14px; }
footer nav a {
  color: var(--muted);
  font-size: 0.72rem;
  margin: 0 14px;
  font-weight: 300;
  letter-spacing: 0.02em;
}
footer nav a:hover { color: var(--accent); }

/* ═══════════════════════════════════════ */
/* LEGAL PAGES                             */
/* ═══════════════════════════════════════ */

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 24px 24px 0;
}
.legal-header a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
}
.legal-header a:hover { color: var(--accent); }
.legal-header img { height: 28px; opacity: 0.5; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.legal h1 {
  font-size: 1.6rem;
  font-weight: 200;
  margin-bottom: 8px;
  color: var(--accent);
  letter-spacing: 0.04em;
}
.legal .subtitle { color: var(--muted); font-size: 0.82rem; margin-bottom: 40px; font-weight: 300; }
.legal h2 { font-size: 1rem; font-weight: 600; margin: 36px 0 12px; color: var(--text); }
.legal p, .legal li { font-size: 0.88rem; color: rgba(240,236,228,0.6); margin-bottom: 12px; font-weight: 300; }
.legal ul { padding-left: 20px; }
.legal li { margin-bottom: 6px; }

/* ═══════════════════════════════════════ */
/* RESPONSIVE                              */
/* ═══════════════════════════════════════ */

@media (max-width: 600px) {
  .hero { padding: 64px 20px 32px; }
  .hero h1 { font-size: 2.2rem; }
  .features, .science-grid { grid-template-columns: 1fr; }
  .coach-features, .hardware-grid { grid-template-columns: 1fr; }
  .container { padding: 40px 20px 60px; }
  .proof-bar { gap: 16px; }
  .flower-container { width: 120px; height: 120px; }
  .flower-ring { width: 60px !important; height: 60px !important; }
  .flower-ring.center { top: 30px !important; left: 30px !important; }
}
