/* ==============================================================
   Solane — Cosmic Marketing Site
   Palette: deep midnight + aurora accents
   ============================================================== */

:root {
  --bg-deep:     #05060f;
  --bg-mid:      #0b0d1f;
  --bg-soft:     #11132a;
  --surface:     rgba(20, 22, 48, 0.6);
  --surface-hi:  rgba(30, 34, 70, 0.75);
  --border:      rgba(139, 92, 246, 0.18);
  --border-hi:   rgba(245, 158, 11, 0.35);

  --amber:       #B08D49;
  --amber-soft:  #FCD34D;
  --violet:      #C084FC;
  --violet-deep: #8B5CF6;
  --blue:        #60A5FA;
  --blue-deep:   #3B82F6;
  --pink:        #F472B6;
  --teal:        #2DD4BF;

  --text:        #E8EAF6;
  --text-soft:   rgba(232, 234, 246, 0.7);
  --text-muted:  rgba(232, 234, 246, 0.45);

  --radius-sm:   8px;
  --radius:      14px;
  --radius-lg:   24px;
  --radius-xl:   32px;

  --shadow-glow: 0 0 60px -10px rgba(192, 132, 252, 0.4);
  --shadow-card: 0 20px 60px -20px rgba(0, 0, 0, 0.6);

  --font-sans:   'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-serif:  'Fraunces', Georgia, serif;
  --font-mono:   'JetBrains Mono', 'Fira Code', monospace;
}

/* ==============================================================
   RESET + BASE
   ============================================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-deep);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}

a { color: var(--amber); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--amber-soft); }

img { max-width: 100%; height: auto; display: block; }

::selection { background: rgba(245, 158, 11, 0.3); color: var(--text); }

/* ==============================================================
   COSMIC BACKGROUND — animated starfield + nebula
   ============================================================== */
.cosmos-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(139, 92, 246, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 90%, rgba(245, 158, 11, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 40%, rgba(96, 165, 250, 0.18) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-mid) 100%);
  overflow: hidden;
}

.cosmos-bg::before, .cosmos-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, white, transparent),
    radial-gradient(1px 1px at 60% 70%, white, transparent),
    radial-gradient(1px 1px at 80% 10%, white, transparent),
    radial-gradient(2px 2px at 90% 60%, white, transparent),
    radial-gradient(1px 1px at 33% 88%, white, transparent),
    radial-gradient(1px 1px at 55% 22%, white, transparent),
    radial-gradient(1px 1px at 12% 65%, white, transparent),
    radial-gradient(2px 2px at 78% 40%, white, transparent);
  background-size: 600px 600px;
  background-repeat: repeat;
  opacity: 0.5;
  animation: drift 200s linear infinite;
}
.cosmos-bg::after {
  background-size: 900px 900px;
  opacity: 0.3;
  animation-duration: 380s;
  animation-direction: reverse;
}

@keyframes drift {
  from { transform: translate(0, 0); }
  to   { transform: translate(-600px, -600px); }
}

/* shooting star */
.shooting-star {
  position: fixed;
  top: 12%;
  left: -100px;
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, white, transparent);
  filter: drop-shadow(0 0 6px white);
  animation: shoot 9s linear infinite;
  z-index: -1;
  opacity: 0;
}
.shooting-star:nth-child(2) { top: 40%; animation-delay: 4s; animation-duration: 7s; }
.shooting-star:nth-child(3) { top: 70%; animation-delay: 6s; animation-duration: 11s; }

@keyframes shoot {
  0%   { transform: translate(0, 0) rotate(20deg); opacity: 0; }
  10%  { opacity: 1; }
  100% { transform: translate(120vw, 60vh) rotate(20deg); opacity: 0; }
}

/* ==============================================================
   NAVBAR
   ============================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  background: rgba(5, 6, 15, 0.6);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
}
.logo-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--amber), var(--violet));
  border-radius: 50%;
  font-size: 18px;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  padding: 10px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--amber), var(--amber-soft));
  color: var(--bg-deep);
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(245, 158, 11, 0.3);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 32px rgba(245, 158, 11, 0.5); }

@media (max-width: 720px) {
  .nav-links { display: none; }
}

/* ==============================================================
   HERO
   ============================================================== */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 32px 80px;
  text-align: center;
  position: relative;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--amber);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 8px var(--amber);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 7vw, 84px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--amber) 0%, var(--violet) 50%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-soft);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  border: 1px solid transparent;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--amber), var(--amber-soft));
  color: var(--bg-deep);
  box-shadow: 0 8px 32px rgba(245, 158, 11, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 44px rgba(245, 158, 11, 0.5); color: var(--bg-deep); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); border-color: var(--violet); color: var(--text); }

.store-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
  flex-wrap: wrap;
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: var(--text);
  transition: border-color 0.2s, transform 0.2s;
}
.store-badge:hover { border-color: var(--amber); transform: translateY(-2px); color: var(--text); }
.store-badge svg { width: 28px; height: 28px; }
.store-badge-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.1; }
.store-badge-text small { font-size: 10px; opacity: 0.6; text-transform: uppercase; letter-spacing: 0.1em; }
.store-badge-text strong { font-size: 16px; font-weight: 600; }

/* ==============================================================
   ASTRO SIMULATION — natal chart wheel
   ============================================================== */
.astro-sim {
  position: relative;
  max-width: 720px;
  margin: 60px auto 0;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 22, 48, 0.9) 0%, rgba(10, 11, 30, 0.95) 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-glow), inset 0 0 80px rgba(139, 92, 246, 0.15);
}
.astro-sim svg {
  width: 100%;
  height: 100%;
  display: block;
}
.astro-rotate { animation: rotate 240s linear infinite; transform-origin: center; }
@keyframes rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.astro-center {
  position: absolute;
  inset: 50% 50% auto auto;
  transform: translate(50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--amber) 0%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}
.astro-label {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
}
.astro-label .live-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 700;
  margin-bottom: 8px;
}
.astro-label .live-dot::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 8px var(--amber);
  animation: pulse 1.5s ease-in-out infinite;
}
.astro-label h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--text);
  font-weight: 500;
}
.astro-label p {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ==============================================================
   SECTIONS
   ============================================================== */
section {
  padding: 100px 32px;
  position: relative;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.section-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--violet), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-sub {
  color: var(--text-soft);
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto;
}

/* ==============================================================
   FEATURE GRID
   ============================================================== */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.feature-card {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(192, 132, 252, 0.05) 100%);
  pointer-events: none;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hi);
  box-shadow: var(--shadow-card);
}
.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(192, 132, 252, 0.15));
  border: 1px solid rgba(245, 158, 11, 0.3);
  font-size: 22px;
  margin-bottom: 20px;
}
.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}
.feature-card p {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.6;
}

/* ==============================================================
   HOW IT WORKS
   ============================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.step {
  text-align: center;
  position: relative;
}
.step-num {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--blue));
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  margin: 0 auto 20px;
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.4);
}
.step h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}
.step p {
  color: var(--text-soft);
  font-size: 14px;
}

/* ==============================================================
   FORECAST PREVIEW (mock card)
   ============================================================== */
.preview-section {
  background: linear-gradient(180deg, transparent 0%, rgba(20, 22, 48, 0.4) 50%, transparent 100%);
}
.preview-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 880px) {
  .preview-grid { grid-template-columns: 1fr; }
}
.preview-text h2 {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 20px;
}
.preview-text h2 em {
  font-style: italic;
  color: var(--amber);
}
.preview-text p {
  color: var(--text-soft);
  font-size: 16px;
  margin-bottom: 16px;
}
.preview-list {
  list-style: none;
  margin-top: 24px;
}
.preview-list li {
  padding: 12px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-bottom: 1px solid var(--border);
  color: var(--text-soft);
  font-size: 15px;
}
.preview-list li:last-child { border-bottom: none; }
.preview-list .check {
  color: var(--amber);
  font-weight: 700;
  margin-top: 2px;
  flex-shrink: 0;
}

.forecast-mock {
  background: linear-gradient(180deg, rgba(30, 27, 75, 0.6) 0%, rgba(15, 23, 42, 0.9) 100%);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-xl);
  padding: 32px;
  position: relative;
  box-shadow: var(--shadow-card);
}
.forecast-mock::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--amber), var(--violet), var(--blue));
  opacity: 0.4;
  z-index: -1;
  filter: blur(20px);
}
.mock-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}
.mock-badge {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--amber);
}
.mock-energy {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.mock-energy strong {
  font-size: 28px;
  font-weight: 700;
  color: var(--amber);
  font-family: var(--font-serif);
}
.mock-energy span {
  font-size: 12px;
  color: var(--text-muted);
}
.mock-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 4px;
}
.mock-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.mock-h2 {
  font-size: 14px;
  font-weight: 700;
  color: var(--violet);
  margin: 16px 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.mock-body {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.7;
  font-family: var(--font-serif);
  font-style: italic;
}
.mock-body strong {
  color: var(--amber);
  font-style: normal;
  font-weight: 600;
}
.mock-transit {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.mock-transit:last-child { border-bottom: none; }
.mock-transit-name { color: var(--text); font-weight: 500; }
.mock-transit-orb { color: var(--amber); font-family: var(--font-mono); font-size: 12px; }

/* ==============================================================
   PRICING
   ============================================================== */
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}
.price-card {
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
  backdrop-filter: blur(12px);
}
.price-card.featured {
  border-color: var(--amber);
  background: var(--surface-hi);
  box-shadow: 0 20px 60px -20px rgba(245, 158, 11, 0.4);
}
.price-card.featured::before {
  content: 'Most popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 14px;
  background: linear-gradient(135deg, var(--amber), var(--amber-soft));
  color: var(--bg-deep);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 999px;
}
.price-tier {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--violet);
  font-weight: 700;
  margin-bottom: 8px;
}
.price-name {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 16px;
}
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 24px;
}
.price-amount strong {
  font-size: 44px;
  font-weight: 600;
  font-family: var(--font-serif);
}
.price-amount span {
  color: var(--text-muted);
  font-size: 14px;
}
.price-features {
  list-style: none;
  margin-bottom: 28px;
}
.price-features li {
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-soft);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.price-features li::before {
  content: '✦';
  color: var(--amber);
  flex-shrink: 0;
}

/* ==============================================================
   FAQ
   ============================================================== */
.faq {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  padding: 8px 0;
  user-select: none;
}
.faq-q::after {
  content: '+';
  font-size: 24px;
  color: var(--amber);
  transition: transform 0.3s;
  font-weight: 300;
}
.faq-item[open] .faq-q::after { transform: rotate(45deg); }
.faq-a {
  padding: 12px 0 4px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.7;
}

/* ==============================================================
   CTA SECTION
   ============================================================== */
.cta-section {
  text-align: center;
  padding: 120px 32px;
  position: relative;
}
.cta-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 48px;
  border-radius: var(--radius-xl);
  background: radial-gradient(ellipse at top, rgba(245, 158, 11, 0.15) 0%, transparent 60%),
              linear-gradient(180deg, rgba(30, 27, 75, 0.6) 0%, rgba(11, 13, 31, 0.95) 100%);
  border: 1px solid var(--border-hi);
  box-shadow: var(--shadow-glow);
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '✦';
  position: absolute;
  top: 24px;
  right: 32px;
  color: var(--amber);
  font-size: 18px;
  opacity: 0.4;
}
.cta-card h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 16px;
}
.cta-card p {
  color: var(--text-soft);
  margin-bottom: 32px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

/* ==============================================================
   FOOTER
   ============================================================== */
footer {
  border-top: 1px solid var(--border);
  padding: 60px 32px 40px;
  background: rgba(5, 6, 15, 0.8);
  margin-top: 80px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 760px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 12px;
  line-height: 1.6;
  max-width: 320px;
}
.footer-col h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: var(--text-soft);
  font-size: 14px;
}
.footer-col a:hover { color: var(--amber); }
.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 12px;
  flex-wrap: wrap;
  gap: 12px;
}

/* ==============================================================
   LEGAL PAGES (privacy / terms / support)
   ============================================================== */
.legal-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 80px 32px;
}
.legal-page h1 {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.legal-page .legal-meta {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.legal-page h2 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
  margin: 48px 0 16px;
  color: var(--amber);
  letter-spacing: -0.01em;
}
.legal-page h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 24px 0 8px;
  color: var(--violet);
}
.legal-page p {
  color: var(--text-soft);
  margin-bottom: 16px;
  line-height: 1.75;
}
.legal-page ul, .legal-page ol {
  color: var(--text-soft);
  margin: 0 0 16px 24px;
  line-height: 1.75;
}
.legal-page li { margin-bottom: 8px; }
.legal-page strong { color: var(--text); font-weight: 600; }
.legal-page table {
  width: 100%;
  margin: 16px 0 24px;
  border-collapse: collapse;
  background: rgba(20, 22, 48, 0.4);
  border-radius: var(--radius);
  overflow: hidden;
}
.legal-page th, .legal-page td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.legal-page th {
  background: rgba(139, 92, 246, 0.1);
  color: var(--violet);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.legal-page td { color: var(--text-soft); }
.legal-page hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 32px 0;
}

.callout {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(192, 132, 252, 0.08));
  border-left: 3px solid var(--amber);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin: 24px 0;
  font-size: 14px;
  color: var(--text);
}

/* ==============================================================
   UTILS
   ============================================================== */
.center { text-align: center; }
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s ease forwards;
}
@keyframes fadeIn {
  to { opacity: 1; transform: translateY(0); }
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.25s; }
.delay-3 { animation-delay: 0.4s; }
.delay-4 { animation-delay: 0.55s; }
