/* Auræ — getaurae.app
   Palette pulled from the app's AppTheme. One stylesheet, no external requests
   (no web fonts, no analytics) — the site keeps the same privacy posture as the app. */

:root {
  --bg:          #08040F;
  --surface:     #150D2E;
  --raised:      #1E1240;
  --violet:      #C89AF0;
  --violet-deep: #9B6FD4;
  --gold:        #F0B06A;
  --gold-antique:#C99A34;
  --silver:      #BCC4D6;
  --aqua:        #88DCC8;
  --text:        #F4F1FA;
  --text-dim:    #A79FC4;
  --line:        rgba(200,154,240,0.14);

  --serif: ui-serif, Georgia, "Times New Roman", serif;
  --sans:  -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;

  --maxw: 720px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* ── Aurora + star field (pure CSS, GPU-cheap) ─────────────────────────── */
.sky {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(60% 45% at 20% 12%, rgba(155,111,212,0.28), transparent 70%),
    radial-gradient(55% 40% at 82% 22%, rgba(240,176,106,0.14), transparent 70%),
    radial-gradient(70% 55% at 50% 100%, rgba(136,220,200,0.10), transparent 70%),
    linear-gradient(180deg, #0A0518 0%, #08040F 55%, #060309 100%);
  animation: drift 24s ease-in-out infinite alternate;
}
@keyframes drift {
  from { transform: translate3d(0,0,0) scale(1); }
  to   { transform: translate3d(0,-2%,0) scale(1.05); }
}
.stars {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    radial-gradient(1px 1px at 15% 30%, rgba(255,255,255,0.7), transparent),
    radial-gradient(1px 1px at 70% 18%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 42% 65%, rgba(255,255,255,0.6), transparent),
    radial-gradient(1px 1px at 88% 55%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 28% 85%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1.5px 1.5px at 60% 78%, rgba(200,154,240,0.6), transparent);
  opacity: 0.6;
}
@media (prefers-reduced-motion: reduce) {
  .sky { animation: none; }
}

/* ── Layout ────────────────────────────────────────────────────────────── */
main { width: 100%; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

section {
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 96px 0;
}
section.tight { min-height: auto; padding: 72px 0; }

/* ── Brand mark ────────────────────────────────────────────────────────── */
.mark { display: block; }
.mark--hero { width: 96px; height: 96px; margin: 0 auto 28px; }
.mark--nav  { width: 30px; height: 30px; }

/* ── Typography ────────────────────────────────────────────────────────── */
h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(44px, 9vw, 76px);
  letter-spacing: 0.04em;
  text-align: center;
  background: linear-gradient(180deg, #FFFFFF, var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.tagline {
  font-family: var(--serif);
  font-size: clamp(20px, 4vw, 27px);
  font-weight: 400;
  color: var(--text);
  text-align: center;
  margin-top: 18px;
  line-height: 1.4;
}
.sub {
  color: var(--text-dim);
  text-align: center;
  max-width: 46ch;
  margin: 20px auto 0;
}
h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 6vw, 40px);
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--violet-deep);
  margin-bottom: 14px;
}
p { color: var(--text-dim); }
p + p { margin-top: 16px; }
strong { color: var(--text); font-weight: 600; }
a { color: var(--violet); text-decoration: none; }
a:hover { color: var(--aqua); }

/* ── Buttons ───────────────────────────────────────────────────────────── */
.cta { text-align: center; margin-top: 36px; }
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  color: #0A0518;
  background: linear-gradient(180deg, #E8C56A, var(--gold-antique));
  border: 1px solid rgba(255,255,255,0.18);
  transition: transform 0.15s ease, filter 0.15s ease;
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.06); color: #0A0518; }
.btn--ghost {
  background: rgba(200,154,240,0.06);
  color: var(--violet);
  border: 1px solid var(--line);
}
.btn--ghost:hover { color: var(--aqua); border-color: rgba(136,220,200,0.4); }

/* ── Pillars ───────────────────────────────────────────────────────────── */
.pillars { display: grid; gap: 18px; margin-top: 8px; }
.pillar {
  padding: 22px 24px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(30,18,64,0.55), rgba(21,13,46,0.35));
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.pillar h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  margin-bottom: 6px;
  color: var(--text);
}
.pillar p { font-size: 15.5px; }

/* ── Privacy highlight ─────────────────────────────────────────────────── */
.privacy-list { list-style: none; margin-top: 20px; display: grid; gap: 14px; }
.privacy-list li {
  padding-left: 30px;
  position: relative;
  color: var(--text-dim);
}
.privacy-list li::before {
  content: "";
  position: absolute; left: 0; top: 9px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 10px rgba(136,220,200,0.7);
}
.privacy-list strong { color: var(--text); }

/* ── Tiers ─────────────────────────────────────────────────────────────── */
.tiers { display: grid; gap: 18px; margin-top: 8px; }
.tier {
  padding: 24px;
  border-radius: 18px;
  background: rgba(21,13,46,0.4);
  border: 1px solid var(--line);
}
.tier--luna  { border-top: 2px solid var(--silver); }
.tier--aurae { border-top: 2px solid var(--violet); }
.tier .name { font-family: var(--serif); font-size: 22px; color: var(--text); }
.tier .price { color: var(--text-dim); font-size: 15px; margin-top: 4px; }
.tier .desc { font-size: 15px; margin-top: 12px; }
.soon {
  display: inline-block; margin-top: 10px; font-size: 12px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
}

/* ── Long-form legal pages ─────────────────────────────────────────────── */
.doc { padding: 88px 0 64px; }
.doc h1 { text-align: left; font-size: clamp(34px, 7vw, 52px); background: none; -webkit-background-clip: initial; color: var(--text); }
.doc .updated { color: var(--text-dim); font-size: 14px; margin: 8px 0 40px; }
.doc h2 { font-size: 24px; margin: 40px 0 12px; }
.doc h3 { font-family: var(--serif); font-weight: 400; font-size: 19px; color: var(--text); margin: 24px 0 8px; }
.doc p, .doc li { color: var(--text-dim); }
.doc ul { margin: 12px 0 12px 22px; }
.doc li { margin-bottom: 8px; }
.doc .lede { color: var(--text); font-size: 18px; }

/* ── Nav + footer ──────────────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 10;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px;
  background: rgba(8,4,15,0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
nav .brand { display: flex; align-items: center; gap: 10px; font-family: var(--serif); font-size: 20px; letter-spacing: 0.06em; color: var(--text); }
nav .links a { margin-left: 20px; font-size: 14px; color: var(--text-dim); }
nav .links a:hover { color: var(--violet); }

footer {
  border-top: 1px solid var(--line);
  padding: 40px 24px 64px;
  text-align: center;
  color: var(--text-dim);
  font-size: 14px;
}
footer .links { margin-bottom: 16px; }
footer .links a { margin: 0 12px; }
footer .fine { opacity: 0.6; font-size: 13px; margin-top: 12px; }

@media (max-width: 520px) {
  nav .links a { margin-left: 14px; }
  section { min-height: 82vh; }
}
