/* Melissa Warner Molecule — shared skin
   Grounds: dark purple & navy. Accents: gold, rose, orchid, coral, mauve.
   Type: Georgia (evocative) / Calibri (plain). */

:root {
  --ground: #150f2d;
  --ground-deep: #0e1128;
  --gold: #d4b06a;
  --rose: #d98a9e;
  --orchid: #b57edc;
  --coral: #e8836f;
  --mauve: #b78fb5;
  --ink: #ece6f2;
  --ink-dim: #a99fc0;
  --display: Georgia, 'Times New Roman', serif;
  --plain: Calibri, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  min-height: 100%;
}

body {
  background: radial-gradient(ellipse at 50% 35%, #241a4a 0%, var(--ground) 55%, var(--ground-deep) 100%);
  color: var(--ink);
  font-family: var(--plain);
  overflow-x: hidden;
}

.marker {
  font-family: var(--plain);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 1rem;
  color: var(--ink-dim);
}

h1, h2, h3, .display { font-family: var(--display); font-weight: normal; }

a { color: var(--gold); }

button {
  font-family: inherit;
  cursor: pointer;
}

.quiet-link {
  font-family: var(--plain);
  font-size: 1.15rem;
  color: var(--ink-dim);
  text-decoration: none;
  border-bottom: 1px solid rgba(169,159,192,0.35);
}
.quiet-link:hover { color: var(--ink); }

/* ---------- Entrance chrome (the visuals live in wow.js + index.html) ---------- */

.entrance-footer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: center;
}
.compliance-line {
  font-size: 1rem;
  color: rgba(169,159,192,0.7);
}

/* ---------- Experience screens ---------- */

.experience {
  position: fixed;
  inset: 0;
  z-index: 5;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  padding: 1.5rem;
  text-align: center;
  background: radial-gradient(ellipse at 50% 40%, #1d1440 0%, var(--ground-deep) 75%);
}
.experience.active { display: flex; }

.breath-cue {
  font-family: var(--display);
  font-size: 1.65rem;
  color: var(--gold);
  min-height: 2rem;
  letter-spacing: 0.04em;
}

.exercise-text {
  max-width: 26rem;
  font-family: var(--display);
  font-size: 1.4rem;
  line-height: 1.65;
  color: var(--ink-dim);
}

.exp-actions { display: flex; gap: 1.4rem; align-items: center; }

.enter-btn {
  font-family: var(--display);
  font-size: 1.2rem;
  color: var(--ground-deep);
  background: linear-gradient(135deg, var(--gold), var(--rose));
  border: none;
  border-radius: 999px;
  padding: 0.75rem 1.9rem;
  opacity: 0;
  transition: opacity 1.2s;
  pointer-events: none;
}
.enter-btn.ready { opacity: 1; pointer-events: auto; }

/* ---------- Reduce motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html:not(.force-motion) .tunnel .ring,
  html:not(.force-motion) .wow *,
  html:not(.force-motion) .mandala * { animation: none !important; }
}
