/* ============================================================
   CAELISTA — AI Cosmic Oracle
   Design system. Built pixel-faithful to Diana's UI.
   Brand: deep navy #152238 + gold, elegant serif, starfield.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Cinzel:wght@400;500;600&family=Inter:wght@300;400;500;600&display=swap');

:root {
  /* ---- core navy palette (from #152238) ---- */
  --navy-900: #0c1424;   /* deepest, page base */
  --navy-850: #101a2e;
  --navy-800: #152238;   /* brand navy */
  --navy-700: #1b2c49;
  --navy-600: #22375a;
  --navy-panel: rgba(20, 32, 56, 0.72);
  --navy-card: rgba(16, 26, 46, 0.85);

  /* ---- gold accents ---- */
  --gold-100: #f6e7b8;
  --gold-200: #ecd190;
  --gold-300: #e3bf6e;   /* primary gold */
  --gold-400: #d4a64a;
  --gold-500: #b8893a;
  --gold-deep: #8a6422;
  --gold-grad: linear-gradient(135deg, #f6e7b8 0%, #e3bf6e 45%, #b8893a 100%);
  --gold-grad-soft: linear-gradient(135deg, #ecd190 0%, #c79a4a 100%);

  /* ---- accent (AirLnk royal blue) used sparingly ---- */
  --accent: #334fb4;

  /* ---- text ---- */
  --ink: #f3eede;
  --ink-soft: #cdd3df;
  --ink-mut: #8d97ab;
  --ink-faint: #5e6a82;

  /* ---- lines / glass ---- */
  --hair: rgba(227, 191, 110, 0.18);
  --hair-soft: rgba(227, 191, 110, 0.10);
  --glass-brd: rgba(227, 191, 110, 0.22);

  --serif: 'Cormorant Garamond', Georgia, serif;
  --display: 'Cinzel', serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;

  --r-lg: 22px;
  --r-md: 16px;
  --r-sm: 11px;
  --shadow-card: 0 24px 60px -20px rgba(0,0,0,0.6);
  --maxw: 1240px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--navy-900);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.5;
  position: relative;
  min-height: 100vh;
}

/* ===== starfield background (fixed, behind everything) ===== */
.sky {
  position: fixed; inset: 0; z-index: -3;
  background:
    radial-gradient(1200px 700px at 78% -8%, rgba(51,79,180,0.18), transparent 60%),
    radial-gradient(900px 600px at 10% 8%, rgba(227,191,110,0.07), transparent 55%),
    radial-gradient(1400px 900px at 50% 120%, rgba(27,44,73,0.55), transparent 60%),
    linear-gradient(180deg, var(--navy-900) 0%, #0a1120 55%, var(--navy-900) 100%);
}
#stars { position: fixed; inset: 0; z-index: -2; pointer-events: none; }
.vignette {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(120% 90% at 50% 35%, transparent 55%, rgba(4,8,16,0.55) 100%);
}

/* ============================================================
   APP SHELL — left sidebar + content (matches Diana)
   ============================================================ */
.app {
  display: grid;
  grid-template-columns: 232px 1fr;
  min-height: 100vh;
  max-width: 1480px;
  margin: 0 auto;
}

/* ---------- sidebar ---------- */
.sidebar {
  border-right: 1px solid var(--hair-soft);
  padding: 26px 18px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  position: sticky;
  top: 0;
  height: 100vh;
  background: linear-gradient(180deg, rgba(12,20,36,0.4), rgba(12,20,36,0));
}
.brand {
  display: flex; align-items: center; gap: 11px;
  padding: 4px 6px 18px;
  border-bottom: 1px solid var(--hair-soft);
}
.brand .mark { width: 34px; height: 34px; flex: 0 0 34px; }
.brand .wordmark { display: flex; flex-direction: column; line-height: 1; }
.brand .wordmark b {
  font-family: var(--display); font-weight: 600; letter-spacing: 3px;
  font-size: 15px; color: var(--ink);
}
.brand .wordmark span {
  font-size: 7.5px; letter-spacing: 2.6px; color: var(--gold-300);
  margin-top: 4px; font-weight: 500;
}
.nav { display: flex; flex-direction: column; gap: 3px; }
.nav a {
  display: flex; align-items: center; gap: 13px;
  padding: 11px 13px; border-radius: var(--r-sm);
  color: var(--ink-mut); text-decoration: none;
  font-size: 13.5px; font-weight: 500;
  transition: background .2s, color .2s;
  cursor: pointer;
}
.nav a svg { width: 17px; height: 17px; opacity: .8; }
.nav a:hover { color: var(--ink-soft); background: rgba(227,191,110,0.05); }
.nav a.active {
  color: var(--gold-100); background: rgba(227,191,110,0.10);
  box-shadow: inset 2px 0 0 var(--gold-300);
}
.nav a.active svg { opacity: 1; }
.side-foot { margin-top: auto; font-size: 10.5px; color: var(--ink-faint); letter-spacing: 1px; padding-left: 6px;}
.side-live {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 10px; letter-spacing: 1.5px; color: var(--gold-300); font-weight: 600;
}

/* ---------- content ---------- */
.content { min-width: 0; position: relative; }
.screen { display: none; animation: fade .55s ease both; }
.screen.active { display: block; }
@keyframes fade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* ============================================================
   SHARED bits
   ============================================================ */
.eyebrow {
  font-family: var(--sans); font-size: 10.5px; font-weight: 600;
  letter-spacing: 3.5px; text-transform: uppercase; color: var(--gold-300);
}
.h-display {
  font-family: var(--serif); font-weight: 500;
  line-height: 1.02; letter-spacing: .5px;
}
.gold-text {
  background: var(--gold-grad); -webkit-background-clip: text;
  background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
}
.btn {
  font-family: var(--sans); font-weight: 600; font-size: 14px;
  border: none; cursor: pointer; border-radius: 999px;
  padding: 15px 34px; letter-spacing: .4px;
  display: inline-flex; align-items: center; gap: 10px;
  transition: transform .18s ease, box-shadow .25s ease, filter .2s;
}
.btn-gold {
  background: var(--gold-grad); color: #2a1d05;
  box-shadow: 0 12px 30px -10px rgba(227,191,110,0.55), inset 0 1px 0 rgba(255,255,255,0.35);
}
.btn-gold:hover { transform: translateY(-2px); filter: brightness(1.05); box-shadow: 0 18px 40px -12px rgba(227,191,110,0.7); }
.btn-ghost {
  background: rgba(227,191,110,0.04); color: var(--gold-200);
  border: 1px solid var(--glass-brd);
}
.btn-ghost:hover { background: rgba(227,191,110,0.1); transform: translateY(-1px); }
.btn-text {
  background: none; border: none; color: var(--ink-mut); cursor: pointer;
  font-family: var(--sans); font-size: 13px; padding: 8px 4px; letter-spacing: .3px;
  display: inline-flex; align-items: center; gap: 8px; transition: color .2s;
}
.btn-text:hover { color: var(--gold-200); }
.card {
  background: var(--navy-card); border: 1px solid var(--glass-brd);
  border-radius: var(--r-lg); box-shadow: var(--shadow-card);
  backdrop-filter: blur(8px);
}
.divider-row {
  display: flex; align-items: center; gap: 14px; color: var(--gold-400);
  justify-content: center; margin: 14px 0;
}
.divider-row::before, .divider-row::after {
  content: ""; height: 1px; flex: 1; max-width: 80px;
  background: linear-gradient(90deg, transparent, var(--gold-400));
}
.divider-row::after { background: linear-gradient(90deg, var(--gold-400), transparent); }

/* ============================================================
   1. LANDING
   ============================================================ */
.landing {
  display: grid; grid-template-columns: 1.05fr .95fr;
  align-items: center; min-height: 100vh;
  padding: 40px 56px;
  gap: 30px;
}
.landing-copy { max-width: 540px; }
.landing-copy .eyebrow { margin-bottom: 22px; display: block; }
.landing h1 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(46px, 5.4vw, 78px); line-height: 0.98;
  letter-spacing: 0.5px; margin-bottom: 26px;
}
.landing h1 .l2 { display: block; }
.landing .lede {
  font-size: 18px; color: var(--ink-soft); line-height: 1.65;
  max-width: 440px; margin-bottom: 38px; font-weight: 300;
}
.features { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.feature { display: flex; gap: 16px; align-items: flex-start; }
.feature .ficon {
  flex: 0 0 42px; width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  background: radial-gradient(circle at 35% 30%, rgba(227,191,110,0.22), rgba(227,191,110,0.04));
  border: 1px solid var(--glass-brd);
}
.feature .ficon svg { width: 19px; height: 19px; stroke: var(--gold-200); }
.feature h4 {
  font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: 2px;
  color: var(--gold-200); margin-bottom: 5px; text-transform: uppercase;
}
.feature p { font-size: 13.5px; color: var(--ink-mut); line-height: 1.5; }
.landing-cta { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.store-badges { display: flex; gap: 12px; margin-top: 30px; }
.store-badge {
  display: inline-flex; align-items: center; gap: 9px;
  border: 1px solid var(--glass-brd); border-radius: 11px;
  padding: 9px 15px; background: rgba(8,14,26,0.5);
  text-decoration: none; transition: border-color .2s, transform .2s;
}
.store-badge:hover { border-color: var(--gold-400); transform: translateY(-1px); }
.store-badge svg { width: 22px; height: 22px; }
.store-badge .sb-t { line-height: 1.1; }
.store-badge .sb-t small { display: block; font-size: 8.5px; color: var(--ink-mut); letter-spacing: .5px; }
.store-badge .sb-t b { display: block; font-size: 14px; color: var(--ink); font-weight: 500; letter-spacing: .3px; }

/* hero portrait */
.landing-hero {
  position: relative; display: grid; place-items: center;
  align-self: stretch;
}
.hero-frame {
  position: relative; width: 100%; max-width: 460px; aspect-ratio: 0.78;
  border-radius: 200px 200px 26px 26px;
  overflow: hidden;
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.hero-frame::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 50% 18%, transparent 40%, rgba(12,20,36,0.55) 100%);
}
.hero-glow {
  position: absolute; width: 130%; height: 130%; z-index: -1;
  background: radial-gradient(circle, rgba(227,191,110,0.18), transparent 62%);
  filter: blur(20px);
}

/* ============================================================
   GENERIC inner-screen header
   ============================================================ */
.page-head {
  padding: 40px 56px 0;
  display: flex; align-items: center; justify-content: space-between;
}
.page-head .eyebrow { display: block; margin-bottom: 8px; }
.page-head h2 { font-family: var(--serif); font-size: 38px; font-weight: 500; letter-spacing: .5px; }
.page-head .pchip {
  display: inline-flex; align-items: center; gap: 9px;
  border: 1px solid var(--hair); border-radius: 999px; padding: 7px 15px;
  font-size: 12px; color: var(--ink-soft);
}
.page-head .pchip .av { width: 22px; height: 22px; border-radius: 50%; object-fit: cover; }

/* ============================================================
   2. STEPPER + BIRTH-DATA FORM
   ============================================================ */
.guide-wrap { padding: 30px 56px 60px; }
.stepper { display: flex; align-items: center; gap: 0; margin: 8px 0 40px; max-width: 620px; }
.step { display: flex; align-items: center; gap: 11px; }
.step .dot {
  width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center; font-size: 12px; font-weight: 600;
  border: 1px solid var(--hair); color: var(--ink-mut);
  background: var(--navy-800); transition: all .3s;
}
.step .lbl { font-size: 12.5px; color: var(--ink-mut); letter-spacing: .5px; white-space: nowrap; }
.step.done .dot, .step.current .dot {
  background: var(--gold-grad); color: #2a1d05; border-color: transparent;
  box-shadow: 0 0 0 4px rgba(227,191,110,0.12);
}
.step.current .lbl, .step.done .lbl { color: var(--gold-100); }
.step-line { flex: 1; height: 1px; background: var(--hair); margin: 0 14px; min-width: 26px; }
.step-line.done { background: var(--gold-400); }

.form-card {
  display: grid; grid-template-columns: 300px 1fr;
  overflow: hidden; max-width: 920px;
}
.form-portrait { position: relative; }
.form-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: top center; min-height: 480px; }
.form-portrait::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 55%, var(--navy-card));
}
.form-body { padding: 42px 44px; }
.form-body h3 { font-family: var(--serif); font-size: 30px; font-weight: 500; margin-bottom: 8px; }
.form-body .sub { color: var(--ink-mut); font-size: 14px; margin-bottom: 30px; }
.field { margin-bottom: 22px; }
.field label {
  display: block; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold-200); margin-bottom: 9px; font-weight: 600;
}
.field .inp, .field input, .field select {
  width: 100%; background: rgba(8,14,26,0.55); color: var(--ink);
  border: 1px solid var(--hair); border-radius: var(--r-sm);
  padding: 13px 15px; font-size: 14px; font-family: var(--sans);
  transition: border-color .2s, box-shadow .2s; outline: none;
}
.field input::placeholder { color: var(--ink-faint); }
.field input:focus, .field select:focus {
  border-color: var(--gold-400); box-shadow: 0 0 0 3px rgba(227,191,110,0.12);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.time-row { display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: end; }
.ampm { display: flex; gap: 0; border: 1px solid var(--hair); border-radius: var(--r-sm); overflow: hidden; }
.ampm button {
  background: rgba(8,14,26,0.5); border: none; color: var(--ink-mut);
  padding: 13px 16px; font-size: 13px; cursor: pointer; font-family: var(--sans); transition: all .2s;
}
.ampm button.on { background: var(--gold-grad); color: #2a1d05; font-weight: 600; }
.tcheck { display: flex; align-items: center; gap: 9px; margin-top: 11px; }
.tcheck input { width: auto; accent-color: var(--gold-400); }
.tcheck label { margin: 0; text-transform: none; letter-spacing: 0; font-size: 12.5px; color: var(--ink-mut); font-weight: 400; cursor: pointer;}
.form-foot { margin-top: 32px; display: flex; align-items: center; justify-content: space-between; gap: 16px;}
.form-hint { font-size: 12px; color: var(--ink-faint); display: flex; align-items: center; gap: 7px;}

/* ============================================================
   3. LIVE READING — "Caelista Speaks"
   ============================================================ */
.reading-top {
  display: flex; gap: 14px; padding: 24px 56px 0; flex-wrap: wrap;
}
.rt-chip {
  flex: 1; min-width: 180px;
  display: flex; align-items: center; gap: 13px;
  border: 1px solid var(--hair-soft); border-radius: var(--r-md);
  padding: 14px 18px; background: rgba(16,26,46,0.4);
}
.rt-chip svg { width: 20px; height: 20px; stroke: var(--gold-300); flex: 0 0 20px;}
.rt-chip b { font-size: 12px; letter-spacing: 1.5px; color: var(--gold-200); display:block; text-transform: uppercase; font-weight: 600;}
.rt-chip span { font-size: 12px; color: var(--ink-mut); }

.reading-stage {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  padding: 22px 56px 50px; align-items: stretch;
}
.reading-portrait-wrap {
  position: relative; border-radius: var(--r-lg) 0 0 var(--r-lg);
  overflow: hidden; min-height: 540px;
  border: 1px solid var(--glass-brd); border-right: none;
  display: grid; place-items: center;
}
.reading-portrait-wrap img.face {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  position: absolute; inset: 0;
}
.reading-portrait-wrap::after {
  content:""; position:absolute; inset:0;
  background: radial-gradient(90% 70% at 50% 28%, transparent 45%, rgba(8,12,22,0.7) 100%);
}
.astrolabe {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  width: 180px; height: 180px; z-index: 2; opacity: .92;
  animation: spin 60s linear infinite;
}
@keyframes spin { to { transform: translateX(-50%) rotate(360deg); } }
.live-tag {
  position: absolute; top: 18px; left: 18px; z-index: 3;
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(8,12,22,0.7); border: 1px solid rgba(227,80,80,0.4);
  border-radius: 999px; padding: 6px 13px; font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; color: #ff7b7b; backdrop-filter: blur(4px);
}
.live-tag .pulse { width: 7px; height: 7px; border-radius: 50%; background: #ff5b5b; animation: pulse 1.4s infinite; }
@keyframes pulse { 0%,100%{opacity:1; box-shadow:0 0 0 0 rgba(255,91,91,.6);} 50%{opacity:.5; box-shadow:0 0 0 6px rgba(255,91,91,0);} }

.reading-panel {
  background: var(--navy-card); border: 1px solid var(--glass-brd);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  padding: 36px 38px; display: flex; flex-direction: column;
  backdrop-filter: blur(8px);
}
.waveform { display: flex; align-items: center; gap: 14px; margin-bottom: 6px; }
.wave-speaking { font-size: 13px; color: var(--ink-soft); letter-spacing: .5px; display:flex; align-items:center; gap:9px;}
.wave-bars { display: flex; align-items: center; gap: 3px; height: 30px; flex: 1; }
.wave-bars i {
  width: 3px; background: var(--gold-grad); border-radius: 3px; height: 20%;
  opacity: .55;
}
.wave-bars.playing i { animation: wv 1s ease-in-out infinite; }
@keyframes wv { 0%,100%{height:18%;} 50%{height:90%;} }
.wave-time { font-size: 12px; color: var(--gold-200); font-variant-numeric: tabular-nums; }
.reading-panel h3 {
  font-family: var(--serif); font-size: 28px; font-weight: 500;
  margin: 22px 0 18px;
}
.reading-text {
  font-family: var(--serif); font-size: 19px; line-height: 1.62;
  color: var(--ink-soft); font-weight: 400; flex: 1;
  min-height: 220px;
}
.reading-text .seg-cur { color: var(--ink); }
.reading-text .cursor {
  display: inline-block; width: 2px; height: 1.05em; background: var(--gold-300);
  margin-left: 2px; vertical-align: text-bottom; animation: blink 1s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }
.reading-controls { display: flex; align-items: center; gap: 16px; margin-top: 24px; }
.play-btn {
  width: 56px; height: 56px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--gold-grad); color: #2a1d05; display: grid; place-items: center;
  box-shadow: 0 10px 26px -8px rgba(227,191,110,0.6); transition: transform .18s, filter .2s;
  flex: 0 0 56px;
}
.play-btn:hover { transform: scale(1.05); filter: brightness(1.05); }
.play-btn svg { width: 22px; height: 22px; }
.reading-progress { flex: 1; height: 4px; background: rgba(227,191,110,0.14); border-radius: 4px; overflow: hidden; cursor: pointer;}
.reading-progress .bar { height: 100%; width: 0%; background: var(--gold-grad); border-radius: 4px; transition: width .15s linear;}
.skip-link { margin-left: auto; }

/* ============================================================
   4. COSMIC BLUEPRINT (in-app grid)
   ============================================================ */
.blueprint-wrap { padding: 30px 56px 60px; }
.bp-head { margin-bottom: 30px; }
.bp-head .eyebrow { display:block; margin-bottom: 10px; }
.bp-head h2 { font-family: var(--serif); font-size: 40px; font-weight: 500; }
.bp-head p { color: var(--ink-mut); font-size: 15px; margin-top: 6px; }

.bp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 30px; }
.bp-tile {
  background: var(--navy-card); border: 1px solid var(--hair-soft);
  border-radius: var(--r-md); padding: 26px 24px; cursor: pointer;
  transition: border-color .25s, transform .25s, background .25s;
  position: relative; overflow: hidden;
}
.bp-tile:hover { border-color: var(--glass-brd); transform: translateY(-3px); background: rgba(20,32,56,0.95); }
.bp-tile .tile-ic {
  width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center;
  background: radial-gradient(circle at 35% 30%, rgba(227,191,110,0.18), rgba(227,191,110,0.03));
  border: 1px solid var(--hair); margin-bottom: 18px;
}
.bp-tile .tile-ic svg { width: 24px; height: 24px; stroke: var(--gold-200); }
.bp-tile h4 { font-family: var(--serif); font-size: 21px; font-weight: 500; margin-bottom: 4px; }
.bp-tile .tt { font-size: 12px; color: var(--gold-300); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px; font-weight: 600;}
.bp-tile .tv { font-size: 13.5px; color: var(--ink-mut); line-height: 1.55; }
.bp-tile .tv b { color: var(--ink-soft); font-weight: 600; }

.bp-message {
  margin-top: 26px;
}
.bp-message .card { padding: 32px 34px; display: flex; gap: 24px; align-items: center; }
.bp-message .msg-av { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; flex: 0 0 64px; border: 2px solid var(--glass-brd);}
.bp-message h4 { font-family: var(--serif); font-size: 22px; margin-bottom: 6px; font-weight: 500; }
.bp-message p { color: var(--ink-soft); font-size: 15px; line-height: 1.6; font-family: var(--serif); }

.bp-cta-row { display: flex; gap: 16px; margin-top: 34px; flex-wrap: wrap; align-items: center;}

/* ============================================================
   5. "YOUR READING IS READY" / report card
   ============================================================ */
.ready-wrap {
  padding: 50px 56px; display: grid; grid-template-columns: 1fr 1fr;
  gap: 50px; align-items: center; min-height: 80vh;
}
.ready-copy .eyebrow { display:block; margin-bottom: 16px; }
.ready-copy h2 { font-family: var(--serif); font-size: 46px; font-weight: 500; line-height: 1.05; margin-bottom: 18px; }
.ready-copy p.lede { font-size: 18px; color: var(--ink-soft); line-height: 1.6; max-width: 420px; margin-bottom: 30px; font-weight: 300;}
.ready-copy .archetype-call {
  font-family: var(--serif); font-size: 26px; color: var(--gold-100);
  margin-bottom: 26px;
}
.ready-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.report-card-3d {
  perspective: 1400px; display: grid; place-items: center;
}
.report-card {
  width: 340px; aspect-ratio: 0.7; border-radius: 16px;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(51,79,180,0.25), transparent 55%),
    linear-gradient(160deg, #1a2945, #0d1729);
  border: 1px solid var(--glass-brd);
  box-shadow: 0 40px 80px -24px rgba(0,0,0,0.7), inset 0 1px 0 rgba(227,191,110,0.18);
  position: relative; overflow: hidden;
  transform: rotateY(-16deg) rotateX(4deg);
  transition: transform .5s ease;
  padding: 30px 26px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.report-card:hover { transform: rotateY(-6deg) rotateX(2deg); }
.report-card .rc-mark { width: 40px; height: 40px; margin: 6px auto 14px; }
.report-card .rc-wm { font-family: var(--display); letter-spacing: 4px; font-size: 17px; color: var(--gold-100); }
.report-card .rc-sub { font-size: 8px; letter-spacing: 3px; color: var(--gold-300); margin-top: 6px; }
.report-card .rc-portrait {
  width: 150px; height: 150px; border-radius: 50%; object-fit: cover; object-position: top center;
  margin: 26px auto; border: 2px solid var(--glass-brd);
  box-shadow: 0 0 40px rgba(227,191,110,0.25);
}
.report-card .rc-name { font-family: var(--serif); font-size: 24px; color: var(--ink); }
.report-card .rc-date { font-size: 11px; color: var(--ink-mut); letter-spacing: 1px; margin-top: 6px; }
.report-card .rc-foot { margin-top: auto; font-size: 9px; letter-spacing: 2px; color: var(--gold-400); }
.report-card .rc-star { position: absolute; opacity: .5; }

/* ============================================================
   FULL REPORT — "Your Cosmic Blueprint" downloadable layout
   (modal overlay, print/PDF-ready)
   ============================================================ */
.report-overlay {
  position: fixed; inset: 0; z-index: 100; display: none;
  background: rgba(4,8,16,0.82); backdrop-filter: blur(6px);
  overflow-y: auto; padding: 30px 20px;
}
.report-overlay.open { display: block; animation: fade .3s ease; }
.report-doc {
  max-width: 900px; margin: 0 auto;
  background: linear-gradient(180deg, #0e1830, #0a1326);
  border: 1px solid var(--glass-brd); border-radius: var(--r-lg);
  box-shadow: 0 40px 100px rgba(0,0,0,0.6); overflow: hidden;
}
.report-bar {
  position: sticky; top: 0; z-index: 5;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 26px; background: rgba(10,18,38,0.92);
  border-bottom: 1px solid var(--hair-soft); backdrop-filter: blur(8px);
}
.report-bar .rb-title { font-family: var(--display); letter-spacing: 2px; font-size: 14px; color: var(--gold-100); }
.report-bar .rb-actions { display: flex; gap: 12px; }
.report-bar .x { background: none; border: 1px solid var(--hair); color: var(--ink-mut); width: 34px; height:34px; border-radius: 50%; cursor: pointer; font-size: 16px; transition: all .2s;}
.report-bar .x:hover { color: var(--ink); border-color: var(--gold-400); }

.report-pages { padding: 40px 48px 60px; }
.rpage { margin-bottom: 46px; }
.rpage-cover { text-align: center; padding: 30px 0 40px; border-bottom: 1px solid var(--hair-soft); }
.rpage-cover .eyebrow { display:block; margin-bottom: 14px; }
.rpage-cover .cover-card {
  display: inline-flex; flex-direction: column; align-items: center;
  background: linear-gradient(160deg, #1a2945, #0d1729);
  border: 1px solid var(--glass-brd); border-radius: 14px;
  padding: 26px 40px; margin-top: 10px;
}
.rpage-cover .cover-card img { width: 130px; height: 130px; border-radius: 50%; object-fit: cover; object-position: top center; border: 2px solid var(--glass-brd); margin-bottom: 16px;}
.rpage-cover h1 { font-family: var(--serif); font-size: 44px; font-weight: 500; margin-bottom: 8px;}
.rpage-cover .cover-card .cn { font-family: var(--serif); font-size: 26px; color: var(--gold-100); }
.rpage-cover .cover-card .cd { font-size: 12px; color: var(--ink-mut); letter-spacing: 1px; margin-top: 5px; }

.rsec-title { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.rsec-title .num {
  width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--gold-400);
  display: grid; place-items: center; font-family: var(--serif); color: var(--gold-200); font-size: 15px; flex:0 0 30px;
}
.rsec-title h3 { font-family: var(--serif); font-size: 26px; font-weight: 500; }
.rsec-title .h-sub { font-size: 12px; color: var(--gold-300); letter-spacing: 2px; text-transform: uppercase; margin-left: 6px;}

.essence-list { display: grid; gap: 12px; }
.essence-row {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 18px; background: rgba(16,26,46,0.5);
  border: 1px solid var(--hair-soft); border-radius: var(--r-sm);
}
.essence-row .er-glyph { font-size: 20px; color: var(--gold-300); flex: 0 0 26px; text-align:center;}
.essence-row b { font-family: var(--serif); font-size: 18px; color: var(--ink); display:block; margin-bottom: 3px; }
.essence-row p { font-size: 13.5px; color: var(--ink-mut); line-height: 1.5; }

.placement-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.placement {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 15px; background: rgba(16,26,46,0.5);
  border: 1px solid var(--hair-soft); border-radius: var(--r-sm);
}
.placement .pg { font-size: 17px; color: var(--gold-300); width: 24px; text-align:center; flex:0 0 24px;}
.placement .pb { font-size: 13px; color: var(--ink-mut); width: 64px; flex: 0 0 64px;}
.placement .ps { font-family: var(--serif); font-size: 16px; color: var(--ink); flex: 1; }
.placement .pd { font-size: 12px; color: var(--gold-200); font-variant-numeric: tabular-nums;}

.report-two { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.stat-list { display: grid; gap: 11px; }
.stat-line { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--hair-soft); }
.stat-line .k { font-size: 13px; color: var(--ink-mut); letter-spacing: .5px; }
.stat-line .v { font-family: var(--serif); font-size: 16px; color: var(--ink); text-align: right; }
.big-num {
  font-family: var(--serif); font-size: 88px; line-height: 1; color: transparent;
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text;
  text-align: center; margin: 8px 0;
}
.center-note { text-align: center; color: var(--ink-mut); font-size: 13.5px; font-family: var(--serif); font-style: italic; }

.archetype-panel {
  background:
    radial-gradient(100% 80% at 50% 0%, rgba(51,79,180,0.18), transparent 60%),
    linear-gradient(160deg, rgba(26,41,69,0.7), rgba(13,23,41,0.7));
  border: 1px solid var(--glass-brd); border-radius: var(--r-md);
  padding: 34px 36px; text-align: center; position: relative; overflow: hidden;
}
.archetype-panel .ap-name { font-family: var(--serif); font-size: 34px; color: var(--gold-100); margin-bottom: 6px; }
.archetype-panel .ap-tag { font-style: italic; color: var(--ink-soft); font-family: var(--serif); font-size: 17px; margin-bottom: 18px; }
.archetype-panel .ap-keys { display: flex; gap: 10px; justify-content: center; margin-bottom: 20px; flex-wrap: wrap;}
.archetype-panel .ap-keys span {
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold-200);
  border: 1px solid var(--glass-brd); border-radius: 999px; padding: 6px 14px;
}
.archetype-panel .ap-body { font-size: 15px; color: var(--ink-soft); line-height: 1.7; max-width: 620px; margin: 0 auto; }
.archetype-panel .ap-orig { margin-top: 18px; font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-400); opacity: .7;}

.integration-list { display: grid; gap: 14px; }
.int-row { display: flex; gap: 16px; align-items: flex-start; }
.int-row .ir-mark { flex: 0 0 28px; width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--gold-400); display: grid; place-items: center; color: var(--gold-200); }
.int-row .ir-mark svg { width: 14px; height: 14px; stroke: var(--gold-200); }
.int-row b { font-family: var(--serif); font-size: 18px; color: var(--ink); display: block; margin-bottom: 4px; }
.int-row p { font-size: 13.5px; color: var(--ink-mut); line-height: 1.55; }
.blessing {
  text-align: center; font-family: var(--serif); font-size: 22px; font-style: italic;
  color: var(--gold-100); padding: 28px 20px 6px; line-height: 1.5;
}
.report-foot {
  text-align: center; padding-top: 30px; border-top: 1px solid var(--hair-soft);
  font-family: var(--display); letter-spacing: 3px; font-size: 12px; color: var(--gold-300);
}

/* ============================================================
   Loading / generating overlay
   ============================================================ */
.gen-overlay {
  position: fixed; inset: 0; z-index: 90; display: none;
  background: rgba(6,10,20,0.92); backdrop-filter: blur(8px);
  place-items: center; flex-direction: column;
}
.gen-overlay.open { display: grid; }
.gen-inner { text-align: center; }
.gen-ring { width: 90px; height: 90px; margin: 0 auto 26px; position: relative; }
.gen-ring svg { width: 100%; height: 100%; animation: spin 8s linear infinite; }
.gen-ring .core {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-size: 30px; color: var(--gold-200); animation: pulse2 2s ease-in-out infinite;
}
@keyframes pulse2 { 0%,100%{opacity:.7; transform: scale(1);} 50%{opacity:1; transform: scale(1.12);} }
.gen-inner h3 { font-family: var(--serif); font-size: 26px; font-weight: 500; margin-bottom: 8px; }
.gen-inner p { color: var(--gold-200); font-size: 14px; letter-spacing: .5px; min-height: 20px; }

/* ============================================================
   Mobile (Diana shows phone screens too)
   ============================================================ */
.mobile-banner {
  display: none;
}
@media (max-width: 980px) {
  .app { grid-template-columns: 1fr; }
  .sidebar {
    position: fixed; bottom: 0; top: auto; left: 0; right: 0; height: auto;
    flex-direction: row; align-items: center; z-index: 50;
    padding: 10px 14px; gap: 10px; border-right: none; border-top: 1px solid var(--hair-soft);
    background: rgba(10,18,38,0.96); backdrop-filter: blur(10px); justify-content: space-around;
  }
  .brand, .side-foot { display: none; }
  .nav { flex-direction: row; gap: 2px; }
  .nav a { flex-direction: column; gap: 4px; padding: 6px 9px; font-size: 9.5px; }
  .nav a span { display: none; }
  .nav a.active { box-shadow: none; }
  .content { padding-bottom: 70px; }

  .landing { grid-template-columns: 1fr; padding: 30px 22px 50px; text-align: center; min-height: auto;}
  .landing-copy { max-width: none; }
  .landing .lede, .landing-copy .eyebrow { margin-left: auto; margin-right: auto; }
  .features { text-align: left; max-width: 380px; margin: 0 auto 36px; }
  .landing-cta, .store-badges { justify-content: center; }
  .landing-hero { order: -1; margin-bottom: 20px; }
  .hero-frame { max-width: 280px; }

  .page-head, .guide-wrap, .blueprint-wrap, .reading-stage, .reading-top, .ready-wrap { padding-left: 22px; padding-right: 22px; }
  .page-head { flex-direction: column; align-items: flex-start; gap: 14px; }
  .form-card { grid-template-columns: 1fr; }
  .form-portrait { display: none; }
  .reading-stage { grid-template-columns: 1fr; }
  .reading-portrait-wrap { border-radius: var(--r-lg) var(--r-lg) 0 0; border-right: 1px solid var(--glass-brd); border-bottom: none; min-height: 360px;}
  .reading-panel { border-radius: 0 0 var(--r-lg) var(--r-lg); }
  .bp-grid { grid-template-columns: repeat(2, 1fr); }
  .ready-wrap { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .ready-copy .ready-cta { justify-content: center; }
  .stepper { overflow-x: auto; }
  .report-two, .placement-grid { grid-template-columns: 1fr; }
  .report-pages { padding: 26px 20px 50px; }
}
@media (max-width: 540px) {
  .bp-grid { grid-template-columns: 1fr; }
  .landing h1 { font-size: 40px; }
}

/* ============================================================
   Print = clean report (PDF via browser)
   ============================================================ */
@media print {
  .sidebar, .report-bar, .gen-overlay, .sky, #stars, .vignette { display: none !important; }
  body, .report-overlay, .report-doc { background: #0c1424 !important; }
  .report-overlay { position: static; padding: 0; }
  .report-doc { box-shadow: none; border: none; max-width: none; }
  .rpage { break-inside: avoid; }
}

/* ===================== Paywall · Membership ===================== */
.paywall-wrap { max-width: 940px; margin: 0 auto; padding: 6px 0 48px; }
.plan-grid { display: grid; grid-template-columns: 1.12fr 1fr; gap: 22px; margin-top: 28px; align-items: start; }
.plan { position: relative; background: var(--navy-card); border: 1px solid var(--glass-brd); border-radius: var(--r-lg); padding: 32px 28px; box-shadow: var(--shadow-card); }
.plan-hero { border: 1.5px solid var(--gold-300); background: linear-gradient(180deg, rgba(227,191,110,0.09), rgba(16,26,46,0.92)); box-shadow: 0 26px 72px -22px rgba(227,191,110,0.45); }
.plan-badge { position: absolute; top: -13px; left: 26px; background: var(--gold-grad); color: #1a1305; font-family: var(--sans); font-weight: 700; font-size: 11px; letter-spacing: .12em; padding: 6px 14px; border-radius: 100px; box-shadow: 0 8px 20px -8px rgba(227,191,110,.7); }
.plan-name { font-family: var(--serif); font-size: 24px; color: var(--ink); margin-bottom: 4px; }
.plan-hero .plan-name { color: var(--gold-100); }
.plan-price { display: flex; align-items: baseline; gap: 8px; margin: 8px 0 2px; }
.plan-price .amt { font-family: var(--display); font-size: 48px; font-weight: 600; line-height: 1; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.plan-alt .plan-price .amt { background: none; -webkit-text-fill-color: var(--ink); color: var(--ink); }
.plan-price .per { color: var(--ink-mut); font-size: 15px; font-family: var(--sans); }
.plan-tag { color: var(--ink-soft); font-family: var(--serif); font-style: italic; font-size: 16px; margin-bottom: 18px; }
.plan-feats { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-direction: column; gap: 11px; }
.plan-feats li { position: relative; padding-left: 26px; color: var(--ink-soft); font-size: 14px; line-height: 1.5; }
.plan-feats li::before { content: "✓"; position: absolute; left: 2px; top: 0; color: var(--gold-300); font-weight: 700; }
.plan-feats li b { color: var(--gold-100); }
.plan-cta { width: 100%; justify-content: center; margin-top: 4px; }
.plan-fine { text-align: center; color: var(--ink-mut); font-size: 12px; margin-top: 12px; }
@media (max-width: 760px) {
  .plan-grid { grid-template-columns: 1fr; }
  .plan-hero { order: -1; }
  .plan-price .amt { font-size: 42px; }
}

/* ===================== Talk to Caelista (chat) ===================== */
.talk-wrap { max-width: 820px; margin: 0 auto; padding: 6px 0 40px; }
.chat-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; height: min(62vh, 560px); }
.chat-messages { flex: 1; overflow-y: auto; padding: 24px; display: flex; flex-direction: column; gap: 14px; }
.chat-row { display: flex; gap: 10px; align-items: flex-end; max-width: 86%; }
.chat-row.user { align-self: flex-end; flex-direction: row-reverse; }
.chat-row.caelista { align-self: flex-start; }
.chat-av { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; border: 1px solid var(--glass-brd); flex: none; }
.bubble { padding: 13px 17px; border-radius: 16px; font-size: 14.5px; line-height: 1.55; }
.chat-row.caelista .bubble { background: rgba(227,191,110,0.10); border: 1px solid var(--hair); color: var(--ink); border-bottom-left-radius: 5px; }
.chat-row.user .bubble { background: var(--navy-600); color: var(--ink); border-bottom-right-radius: 5px; }
.bubble.typing { display: flex; gap: 5px; align-items: center; }
.bubble.typing span { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-300); opacity: .5; animation: cblink 1s infinite; }
.bubble.typing span:nth-child(2) { animation-delay: .2s; }
.bubble.typing span:nth-child(3) { animation-delay: .4s; }
@keyframes cblink { 0%,60%,100% { opacity:.3; transform: translateY(0); } 30% { opacity:1; transform: translateY(-3px); } }
.chat-input { display: flex; gap: 10px; padding: 16px; border-top: 1px solid var(--hair-soft); background: var(--navy-card); }
.chat-input input { flex: 1; background: var(--navy-900); border: 1px solid var(--glass-brd); border-radius: 100px; padding: 13px 18px; color: var(--ink); font-family: var(--sans); font-size: 14.5px; outline: none; }
.chat-input input:focus { border-color: var(--gold-400); }
.chat-send { flex: none; width: 46px; height: 46px; border-radius: 50%; border: none; background: var(--gold-grad); color: #1a1305; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: transform .15s; }
.chat-send:hover { transform: scale(1.06); }
.chat-fine { text-align: center; color: var(--ink-mut); font-size: 12px; margin-top: 12px; }


/* §07 Caelista Voice & Motion — idle "breathing glow" on her avatar (oracle presence) */
@keyframes caelBreathe {
  0%, 100% { box-shadow: 0 0 9px 1px rgba(227,191,110,0.16); transform: scale(1); }
  50%      { box-shadow: 0 0 20px 4px rgba(227,191,110,0.34); transform: scale(1.04); }
}
.chat-row.caelista .chat-av,
.page-head .pchip .av { animation: caelBreathe 5.5s ease-in-out infinite; will-change: box-shadow, transform; }
@media (prefers-reduced-motion: reduce) {
  .chat-row.caelista .chat-av, .page-head .pchip .av { animation: none; }
}

/* ============================================================
   DIANA PIXEL-FAITHFUL PASS — premium "consultation chamber"
   (right nav rail · goddess presence · gold richness · sacred depth)
   ============================================================ */
:root { --rail: 234px; }

/* deeper, richer cosmic ground + gold vignette glow */
body {
  background:
    radial-gradient(130% 90% at 82% -5%, rgba(227,191,110,0.13), transparent 52%),
    radial-gradient(100% 80% at 50% 118%, rgba(51,79,180,0.14), transparent 60%),
    var(--navy-900);
}
.vignette {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background: radial-gradient(120% 100% at 50% 50%, transparent 55%, rgba(5,9,18,0.7) 100%);
}

/* --- premium typography weight --- */
.h-display, .landing h1, .bp-head h2, .page-head h2, .reading-panel h3,
.ready-copy h2, .form-body h3 { font-family: var(--display) !important; letter-spacing: .6px; }
.lede, .reading-text { font-family: var(--serif); }

/* ============================================================
   SHELL — nav rail on the RIGHT (desktop). Mobile keeps bottom-nav.
   ============================================================ */
@media (min-width: 981px) {
  .app { grid-template-columns: 1fr var(--rail); max-width: 1520px; }
  .content { grid-column: 1; grid-row: 1; }
  .sidebar {
    grid-column: 2; grid-row: 1;
    border-right: none; border-left: 1px solid var(--hair);
    background: linear-gradient(200deg, rgba(20,32,56,0.6), rgba(12,20,36,0.12));
    padding: 32px 16px 26px;
  }
  .brand { justify-content: center; padding-bottom: 22px; }
  .brand .wordmark { align-items: center; text-align: center; }
}

/* refined rail nav — gold-pill active, glow on hover */
.nav { gap: 4px; }
.nav a { padding: 12px 14px; border-radius: 12px; letter-spacing: .3px; border: 1px solid transparent; }
.nav a:hover { background: rgba(227,191,110,0.06); color: var(--gold-100); }
.nav a.active {
  background: linear-gradient(100deg, rgba(227,191,110,0.18), rgba(227,191,110,0.04));
  border: 1px solid var(--glass-brd); box-shadow: 0 6px 18px -10px rgba(227,191,110,0.5);
}
.nav a svg { stroke: currentColor; }
.side-live::before { content: ""; }

/* ============================================================
   GODDESS HERO — she floats in golden aura (landing)
   ============================================================ */
.landing { grid-template-columns: 1.02fr .98fr; padding: 36px 5.2vw; gap: 24px; }
.landing-hero { overflow: visible; }
.hero-frame {
  max-width: 540px; aspect-ratio: .70; border-radius: 0;
  box-shadow: none; background: none;
  -webkit-mask: radial-gradient(72% 82% at 50% 40%, #000 58%, transparent 90%);
          mask: radial-gradient(72% 82% at 50% 40%, #000 58%, transparent 90%);
}
.hero-frame::after {
  background: radial-gradient(120% 85% at 50% 8%, transparent 58%, var(--navy-900) 100%);
}
.hero-glow {
  width: 165%; height: 165%; filter: blur(30px);
  background: radial-gradient(circle at 50% 42%,
     rgba(246,231,184,0.34), rgba(227,191,110,0.12) 42%, transparent 70%);
  animation: aura 7s ease-in-out infinite;
}
@keyframes aura { 0%,100% { opacity:.85; transform: scale(1); } 50% { opacity:1; transform: scale(1.06); } }

/* ============================================================
   INNER HEADERS — more air, gold eyebrows
   ============================================================ */
.page-head, .blueprint-wrap, .guide-wrap, .reading-top, .reading-stage,
.ready-wrap, .talk-wrap, .paywall-wrap { }
.page-head h2, .bp-head h2 { font-size: clamp(32px, 3.4vw, 44px); }

/* ============================================================
   LIVE READING — Caelista bigger, floating, astrolabe aglow
   ============================================================ */
.reading-stage { grid-template-columns: 1.05fr .95fr; gap: 22px; align-items: center; }
.reading-portrait-wrap {
  border: none; border-radius: var(--r-lg); min-height: 560px;
  background: radial-gradient(60% 60% at 50% 40%, rgba(227,191,110,0.12), transparent 70%);
}
.reading-portrait-wrap img.face {
  -webkit-mask: radial-gradient(70% 80% at 50% 38%, #000 56%, transparent 88%);
          mask: radial-gradient(70% 80% at 50% 38%, #000 56%, transparent 88%);
}
.reading-portrait-wrap::after {
  background: radial-gradient(80% 70% at 50% 26%, transparent 48%, rgba(8,12,22,0.55) 100%);
}
.astrolabe {
  bottom: auto; top: 50%; transform: translate(-50%, -50%); width: 220px; height: 220px;
  filter: drop-shadow(0 0 22px rgba(227,191,110,0.6));
}
@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }
.reading-panel { border: 1px solid var(--glass-brd); border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(20,32,56,0.7), rgba(14,22,40,0.85)); }

/* ============================================================
   COSMIC BLUEPRINT — refined gold-icon tiles
   ============================================================ */
.bp-tile {
  background: linear-gradient(180deg, rgba(22,35,60,0.7), rgba(14,22,40,0.8));
  border: 1px solid var(--hair); border-radius: var(--r-md); padding: 28px 26px;
}
.bp-tile:hover { border-color: var(--gold-400); transform: translateY(-3px);
  box-shadow: 0 18px 40px -22px rgba(227,191,110,0.5); }
.bp-tile .tile-ic {
  width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center;
  background: radial-gradient(circle at 35% 30%, rgba(227,191,110,0.22), rgba(227,191,110,0.03));
  border: 1px solid var(--glass-brd); margin-bottom: 16px;
}
.bp-tile .tile-ic svg { width: 24px; height: 24px; stroke: var(--gold-200); }
.bp-tile .tt { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-300); }
.bp-tile h4 { font-family: var(--display); font-size: 19px; font-weight: 500; margin: 4px 0 8px; color: var(--ink); }
.bp-tile .tv { font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; }
.bp-message .card { background: linear-gradient(110deg, rgba(227,191,110,0.08), rgba(16,26,46,0.85)); }

/* ============================================================
   BIRTH FORM + READY — premium gold framing
   ============================================================ */
.form-card { background: linear-gradient(180deg, rgba(20,32,56,0.72), rgba(12,20,36,0.9)); }
.form-portrait img { -webkit-mask: linear-gradient(90deg, #000 70%, transparent);
                              mask: linear-gradient(90deg, #000 70%, transparent); }
.report-card-3d .report-card {
  background: linear-gradient(160deg, #1a294a, #0d1424);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.8), 0 0 60px -20px rgba(227,191,110,0.35);
}

/* gold focus glow on inputs site-wide */
input:focus, select:focus, .chat-input input:focus {
  border-color: var(--gold-400) !important; box-shadow: 0 0 0 3px rgba(227,191,110,0.14) !important;
}

/* ============================================================
   UN-BOX THE GODDESS — full-bleed, dissolved into the cosmos
   (screen-blend kills her dark photo background; feather kills edges)
   ============================================================ */
/* landing */
.landing-hero { overflow: visible; align-self: stretch; }
.hero-frame {
  overflow: visible !important; background: none !important; box-shadow: none !important;
  border: none !important; border-radius: 0 !important;
  max-width: 600px; aspect-ratio: .66; margin-top: -24px;
  -webkit-mask: none !important; mask: none !important;       /* mask goes on the IMG */
}
.hero-frame::after { content: none !important; display: none !important; }   /* kill the navy box overlay */
.hero-frame img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  mix-blend-mode: screen;                                     /* her near-black bg melts away */
  -webkit-mask: radial-gradient(ellipse 64% 80% at 52% 40%, #000 38%, rgba(0,0,0,.55) 60%, transparent 80%);
          mask: radial-gradient(ellipse 64% 80% at 52% 40%, #000 38%, rgba(0,0,0,.55) 60%, transparent 80%);
}
/* deeper aura + nebula behind her for Diana's density */
.hero-glow {
  width: 175%; height: 175%; filter: blur(34px);
  background:
    radial-gradient(circle at 50% 40%, rgba(246,231,184,0.40), rgba(227,191,110,0.12) 40%, transparent 66%),
    radial-gradient(circle at 60% 62%, rgba(51,79,180,0.22), transparent 60%);
}
.landing-hero::before {  /* slow constellation ring — gold filigree atmosphere */
  content: ""; position: absolute; width: 118%; height: 118%; z-index: -1;
  background:
    radial-gradient(circle, transparent 47%, rgba(227,191,110,0.10) 48%, transparent 49%),
    radial-gradient(circle, transparent 63%, rgba(227,191,110,0.06) 64%, transparent 65%);
  animation: aura 14s ease-in-out infinite;
}

/* reading portrait — same dissolve, bigger presence */
.reading-portrait-wrap { border: none !important; background: none !important; overflow: visible; }
.reading-portrait-wrap::after { content: none !important; display: none !important; }
.reading-portrait-wrap img.face {
  mix-blend-mode: screen;
  -webkit-mask: radial-gradient(ellipse 66% 78% at 50% 40%, #000 36%, rgba(0,0,0,.5) 60%, transparent 80%);
          mask: radial-gradient(ellipse 66% 78% at 50% 40%, #000 36%, rgba(0,0,0,.5) 60%, transparent 80%);
}

/* guide / birth-form portrait — dissolve the rectangle */
.form-portrait { background: none !important; }
.form-portrait::after { content: none !important; display: none !important; }
.form-portrait img {
  mix-blend-mode: screen;
  -webkit-mask: radial-gradient(ellipse 74% 86% at 46% 42%, #000 40%, transparent 82%);
          mask: radial-gradient(ellipse 74% 86% at 46% 42%, #000 40%, transparent 82%);
}
