/* SoulSpace site — matches the app's starfield-glass design (src/tokens.js) */
:root {
  --bg: #0b0b2a;
  --bg-deep: #060618;
  --card: rgba(255, 255, 255, 0.06);
  --card-border: rgba(255, 255, 255, 0.1);
  --gold: #e8c87a;
  --gold-soft: rgba(232, 200, 122, 0.45);
  --teal: #5fc4b9;
  --text: #f4f1e8;
  --text-dim: rgba(244, 241, 232, 0.62);
}

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

body {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  background-attachment: fixed;
  color: var(--text);
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .serif {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
}

#stars {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

main { position: relative; z-index: 1; }

.wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 72px 0; }

/* hero */
.hero { text-align: center; padding: 96px 0 72px; }
.hero img.icon {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  box-shadow: 0 0 60px rgba(232, 200, 122, 0.25);
}
.hero h1 { font-size: clamp(38px, 6vw, 58px); margin: 28px 0 8px; }
.hero .by { color: var(--gold); letter-spacing: 3px; text-transform: uppercase; font-size: 13px; }
.hero .tagline {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--text-dim);
  font-size: clamp(20px, 3vw, 26px);
  margin: 18px auto 34px;
  max-width: 560px;
}
.badge img { height: 54px; }
.play-soon { display: block; margin-top: 14px; color: var(--text-dim); font-size: 14px; }

.star-divider { color: var(--gold); text-align: center; font-size: 20px; letter-spacing: 14px; padding-left: 14px; }

/* section headings */
.label {
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 13px;
  text-align: center;
  margin-bottom: 10px;
}
h2 { font-size: clamp(28px, 4vw, 38px); text-align: center; margin-bottom: 14px; }
.sub { color: var(--text-dim); text-align: center; max-width: 640px; margin: 0 auto 44px; }

/* glass cards */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 22px;
  padding: 28px 24px;
  backdrop-filter: blur(8px);
}
.card .emoji { font-size: 30px; }
.card h3 { font-size: 20px; margin: 12px 0 8px; }
.card p { color: var(--text-dim); font-size: 15px; }

/* about */
.about { display: flex; gap: 44px; align-items: center; flex-wrap: wrap; }
.about img {
  width: 300px;
  max-width: 100%;
  border-radius: 26px;
  border: 1px solid var(--card-border);
  flex-shrink: 0;
  margin: 0 auto;
}
.about div { flex: 1; min-width: 280px; }
.about h2, .about .label { text-align: left; }
.about p { color: var(--text-dim); margin-bottom: 14px; }

/* testimonials */
blockquote {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 22px;
  padding: 26px 24px;
  backdrop-filter: blur(8px);
}
blockquote p {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  color: var(--text);
}
blockquote footer { color: var(--gold); margin-top: 14px; font-size: 14px; }

/* CTA */
.cta { text-align: center; }
.cta .panel {
  background: var(--card);
  border: 1px solid var(--gold-soft);
  border-radius: 28px;
  padding: 56px 32px;
  backdrop-filter: blur(8px);
}
.cta p { color: var(--text-dim); max-width: 560px; margin: 0 auto 30px; }

/* footer */
.foot {
  border-top: 1px solid var(--card-border);
  padding: 36px 0 48px;
  text-align: center;
  color: var(--text-dim);
  font-size: 14px;
}
.foot a { color: var(--text-dim); }
.foot a:hover { color: var(--gold); }
.foot .links { margin-bottom: 10px; }

/* privacy page */
.doc { max-width: 720px; margin: 0 auto; padding: 72px 24px 96px; }
.doc h1 { font-size: 36px; margin-bottom: 6px; }
.doc .date { color: var(--gold); font-size: 14px; margin-bottom: 36px; }
.doc h2 { font-size: 24px; text-align: left; margin: 36px 0 10px; }
.doc p, .doc li { color: var(--text-dim); margin-bottom: 12px; }
.doc ul { padding-left: 22px; }
.doc a { color: var(--teal); }
.back { display: inline-block; margin-bottom: 40px; color: var(--gold); text-decoration: none; }
.back:hover { text-decoration: underline; }
