/* ===================================================
   WHEN A SOUL BECOMES HUMAN — Design System
   Palette:
     Deep Indigo    #1B1340
     Celestial Gold #C9A84C
     Nebula Violet  #7B4FBF
     Cosmic White   #F0EEF8
     Shadder Black  #0A0A12
   =================================================== */

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ===== TOKENS ===== */
:root {
  /* — backgrounds — */
  --bg:            #1B1340;   /* Deep Indigo — primary sections  */
  --bg-2:          #13102e;   /* Deep Indigo darkened — alt sections */
  --bg-card:       rgba(240,238,248,0.05); /* Cosmic White glass card */
  --shadow-black:  #0A0A12;   /* Shadder Black — footer, deepest bg  */

  /* — brand colours — */
  --gold:          #C9A84C;   /* Celestial Gold */
  --gold-light:    #DFB96A;   /* Celestial Gold brightened */
  --gold-dim:      rgba(201,168,76,0.15);  /* ghost tint */
  --violet:        #7B4FBF;   /* Nebula Violet */
  --violet-light:  #A07DD6;   /* Nebula Violet brightened */
  --violet-dim:    rgba(123,79,191,0.18);  /* ghost tint */

  /* — text — */
  --text:          #F0EEF8;   /* Cosmic White — headings / body */
  --text-muted:    #9896B8;   /* Cosmic White dimmed */

  /* — borders — */
  --border:        rgba(201,168,76,0.22);  /* gold hairline */
  --border-violet: rgba(123,79,191,0.30);  /* violet hairline */

  /* — rgba helpers (for overlays) — */
  --sb:  10,10,18;   /* Shadder Black RGB */
  --di:  27,19,64;   /* Deep Indigo RGB   */

  /* — typography — */
  --font-head: 'Cinzel', serif;
  --font-body: 'Raleway', sans-serif;

  /* — layout — */
  --nav-h: 72px;
}

/* ===== BASE ===== */
html { scroll-behavior: smooth; }

body {
  background: var(--shadow-black);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ===== UTILITY ===== */
.container        { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 720px; }
.section          { padding: 100px 0; }

.section-label {
  font-family: var(--font-head);
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px; display: block;
}
.section-label.center, .center { text-align: center; }

h2 {
  font-family: var(--font-head);
  font-size: clamp(28px,4vw,46px); font-weight: 600;
  line-height: 1.2; margin-bottom: 24px;
  color: var(--text);
}
h3 {
  font-family: var(--font-head);
  font-size: 20px; font-weight: 600; margin-bottom: 12px;
  color: var(--text);
}
p   { color: var(--text-muted); margin-bottom: 16px; }
em  { color: var(--text); font-style: italic; }

.center-text { text-align: center; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  list-style: none; display: flex; justify-content: center;
  gap: 8px; margin-bottom: 20px;
  font-family: var(--font-head); font-size: 12px; letter-spacing: 1px;
  color: var(--text-muted); position: relative; z-index: 1;
}
.breadcrumb a        { color: var(--text-muted); transition: color 0.2s; }
.breadcrumb a:hover  { color: var(--gold); }
.breadcrumb__sep     { color: var(--border); }
.breadcrumb__current { color: var(--gold); }

/* ===== SECTION VARIANTS ===== */
.section-faq  { background: var(--bg); }
.section-join { background: var(--bg); padding-top: 0; }

/* ===== ENVIRONMENT PAGE — ORB ===== */
.orb--env { height: 360px; }
.orb--env .orb-ring--outer { width: 320px; height: 320px; border-color: var(--border-violet); }
.orb--env .orb-ring-2      { width: 220px; height: 220px; }
.orb--env .orb-ring--inner { width: 130px; height: 130px; border-color: rgba(201,168,76,0.4); animation-duration: 8s; }
.orb--env .orb-center      { width: 80px; height: 80px; font-size: 13px; letter-spacing: 1px; }

/* ===== ENVIRONMENT PAGE — TEXT ===== */
.env-intro-text { max-width: 680px; }
.env-cta-wrap   { text-align: center; }
.btn-mt         { margin-top: 16px; }

/* ===== BLOG PAGE ===== */
.blog-card--featured { margin-bottom: 24px; padding: 48px; }
.blog-featured-title {
  font-family: var(--font-head);
  font-size: clamp(20px,3vw,28px); font-weight: 600;
  line-height: 1.25; color: var(--text); margin-bottom: 16px;
}
.blog-cta-block    { text-align: center; margin-top: 64px; }
.blog-cta-block h2 { text-align: center; margin-bottom: 16px; }
.blog-cta-block p  { text-align: center; max-width: 480px; margin: 0 auto 32px; }

/* ===== SPIRIT GROUP — ORB ===== */
.orb--spirit { height: 340px; }
.orb--spirit .orb-ring--outer { width: 300px; height: 300px; }
.orb--spirit .orb-ring-2      { width: 210px; height: 210px; }
.orb--spirit .orb-ring--inner { width: 120px; height: 120px; border-color: rgba(201,168,76,0.5); animation-duration: 7s; }
.orb--spirit .orb-center      { font-size: 11px; letter-spacing: 3px; line-height: 1.4; }

/* ===== SPIRIT GROUP — PAGE ===== */
.section-spirit-benefits { padding-top: 80px; padding-bottom: 80px; }
.sg-who-container { text-align: center; }
.sg-who-list      { text-align: left; margin-top: 40px; display: grid; gap: 16px; list-style: none; }
.purchase-card--static { cursor: default; }
.sg-who-text      { font-family: var(--font-body); color: var(--text-muted); font-size: 15px; }
.form-row--submit { justify-content: center; margin-top: 8px; }
.form-input--full { flex: 1; min-width: 100%; }
.form-disclaimer  { margin-top: 20px; font-size: 13px; text-align: center; color: var(--text-muted); }

/* Form feedback messages */
.form-feedback {
  margin-top: 20px; font-size: 14px; text-align: center;
  padding: 14px 20px; border-radius: 2px;
  font-family: var(--font-body);
}
.form-feedback--success {
  background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold-light);
}
.form-feedback--error {
  background: rgba(180,60,60,0.12); border: 1px solid rgba(180,60,60,0.35);
  color: #e09090;
}
.form-feedback--error a { color: var(--gold); text-decoration: underline; }

/* language-note last paragraph */
.language-note p:last-child { margin-bottom: 0; }

/* Accessibility */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 2px;
  font-family: var(--font-head);
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; transition: all 0.25s; border: none;
}
.btn-primary       { background: var(--gold); color: var(--shadow-black); font-weight: 600; }
.btn-primary:hover { background: var(--gold-light); }

.btn-ghost         { background: transparent; border: 1px solid rgba(201,168,76,0.45); color: var(--gold); margin-left: 12px; }
.btn-ghost:hover   { border-color: var(--gold); background: rgba(201,168,76,0.08); }

.btn-outline       { background: transparent; border: 1px solid var(--border); color: var(--text); margin-top: 8px; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.center-btn { display: block; width: fit-content; margin: 32px auto 0; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  height: var(--nav-h);
  background: rgba(var(--di),0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { font-family: var(--font-head); font-size: 18px; font-weight: 900; color: var(--text); letter-spacing: 2px; }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 36px; }
.nav-links a {
  font-family: var(--font-head); font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted); transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-toggle { display: none; background: none; border: none; color: var(--gold); font-size: 22px; cursor: pointer; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; padding-top: var(--nav-h);
  background:
    linear-gradient(to bottom,
      rgba(var(--di),0.50) 0%,
      rgba(var(--di),0.75) 55%,
      rgba(var(--sb),0.97) 100%),
    url('images/hero-stars.jpg') center 40% / cover no-repeat;
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(123,79,191,0.28) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(201,168,76,0.12) 0%, transparent 50%);
}
.hero-stars {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 45% 35%, rgba(201,168,76,0.55) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 25% 25%, rgba(160,125,214,0.60) 0%, transparent 100%),
    radial-gradient(1px   1px   at 78% 18%, rgba(240,238,248,0.40) 0%, transparent 100%),
    radial-gradient(1px   1px   at 12% 68%, rgba(240,238,248,0.30) 0%, transparent 100%);
}
.hero-content { position: relative; text-align: center; z-index: 3; padding: 0 24px; }
.hero-eyebrow { font-family: var(--font-head); font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; display: block; }
.hero-title {
  font-family: var(--font-head); font-size: clamp(42px,8vw,96px); font-weight: 900;
  line-height: 1.05; color: var(--text); margin-bottom: 20px;
}
.hero-title span { color: var(--gold); }
.hero-tagline { font-size: 16px; color: var(--text-muted); letter-spacing: 1px; margin-bottom: 40px; }
.hero-ctas { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.hero-scroll-indicator { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); }
.hero-scroll-indicator span {
  display: block; width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto; animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.3} 50%{opacity:1} }

/* ===== TWO-COL LAYOUT ===== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.col-text p:last-of-type { margin-bottom: 24px; }

/* ===== BOOK CARD ===== */
.book-card { position: relative; display: flex; justify-content: center; }
.book-glow {
  position: absolute; inset: -40px;
  background: radial-gradient(ellipse, rgba(123,79,191,0.30) 0%, transparent 70%);
  filter: blur(20px);
}
.book-cover-img {
  position: relative; z-index: 1;
  width: 240px;
  display: block;
  border-radius: 2px;
  box-shadow: 0 40px 80px rgba(var(--sb),0.7), 0 0 0 1px rgba(201,168,76,0.20), 6px 6px 0 0 rgba(201,168,76,0.12);
}

/* ===== AUTHOR ORB ===== */
.author-orb { position: relative; display: flex; align-items: center; justify-content: center; height: 320px; }
.orb-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.22);
  animation: orbSpin 20s linear infinite;
  width: 280px; height: 280px;
}
.orb-ring-2 { width: 200px; height: 200px; border-color: var(--border-violet); animation-duration: 14s; animation-direction: reverse; }
.orb-center {
  width: 120px; height: 120px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(123,79,191,0.55) 0%, rgba(var(--di),0.95) 100%);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 20px; font-weight: 900; color: var(--gold);
  letter-spacing: 2px; z-index: 1;
}
@keyframes orbSpin { to { transform: rotate(360deg); } }

/* ===== PULL QUOTE ===== */
.pull-quote {
  font-family: var(--font-head); font-size: 18px; font-style: italic;
  color: var(--text); border-left: 2px solid var(--gold);
  padding: 12px 20px; margin: 24px 0; line-height: 1.5;
  background: rgba(201,168,76,0.05);
}

/* ===== SECTION BACKGROUNDS ===== */
.section-about   { background: var(--bg); }

.section-author {
  position: relative;
  background:
    linear-gradient(to right, rgba(var(--di),0.94) 40%, rgba(var(--di),0.65) 100%),
    url('images/silhouette-milkyway.jpg') center 30% / cover no-repeat;
}
.section-author::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 72% 50%, rgba(123,79,191,0.14) 0%, transparent 60%);
}

.section-pillars { background: var(--bg-2); }

.section-characters-preview {
  position: relative;
  background:
    linear-gradient(rgba(var(--di),0.84), rgba(var(--sb),0.94)),
    url('images/galaxy-core.jpg') center / cover no-repeat;
}

.section-purchase { background: var(--bg); }

.section-newsletter {
  position: relative;
  background:
    linear-gradient(rgba(var(--di),0.80), rgba(var(--sb),0.92)),
    url('images/nebula.jpg') center / cover no-repeat;
}

/* ===== PILLARS ===== */
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.pillar-card {
  background: var(--bg-card); border: 1px solid var(--border);
  padding: 40px 32px; text-align: center;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
}
.pillar-card:hover { border-color: var(--gold); transform: translateY(-4px); background: rgba(201,168,76,0.06); }
.pillar-icon { font-size: 28px; color: var(--gold); margin-bottom: 20px; display: block; }
.pillar-card p { margin-bottom: 0; }

/* ===== CHARACTERS STRIP ===== */
.chars-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin: 40px 0 16px; }
.char-chip {
  font-family: var(--font-head); font-size: 13px; letter-spacing: 2px;
  padding: 10px 24px; border: 1px solid var(--border);
  color: var(--text-muted); transition: all 0.25s;
}
.char-chip:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.08); }
.chars-note { text-align: center; font-size: 13px; color: var(--text-muted); }

/* ===== PURCHASE ===== */
.purchase-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.purchase-card {
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 32px; border: 1px solid var(--border);
  background: var(--bg-card); transition: all 0.25s;
}
.purchase-card:hover { border-color: var(--gold); background: rgba(201,168,76,0.06); }
.purchase-icon  { color: var(--violet-light); font-size: 14px; }
.purchase-name  { font-family: var(--font-head); font-size: 14px; letter-spacing: 1px; color: var(--text); }
.purchase-arrow { color: var(--gold); font-size: 18px; transition: transform 0.2s; }
.purchase-card:hover .purchase-arrow { transform: translateX(4px); }

/* ===== NEWSLETTER ===== */
.newsletter-form { display: flex; gap: 12px; margin: 32px auto; max-width: 520px; }
.newsletter-input {
  flex: 1; background: rgba(240,238,248,0.07); border: 1px solid var(--border);
  color: var(--text); padding: 14px 20px; font-family: var(--font-body); font-size: 15px;
  outline: none; transition: border-color 0.2s;
}
.newsletter-input:focus { border-color: var(--gold); }
.newsletter-input::placeholder { color: var(--text-muted); }
.link-subtle { display: block; text-align: center; color: var(--text-muted); font-size: 13px; margin-top: 12px; transition: color 0.2s; }
.link-subtle:hover { color: var(--gold); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: calc(var(--nav-h) + 90px) 24px 90px;
  text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(rgba(var(--di),0.70), rgba(var(--sb),0.95)), var(--bg);
  border-bottom: 1px solid var(--border);
}
.page-hero--characters {
  background:
    linear-gradient(rgba(var(--di),0.65), rgba(var(--sb),0.95)),
    url('images/galaxy-core.jpg') center 60% / cover no-repeat;
}
.page-hero--environment {
  background:
    linear-gradient(rgba(var(--sb),0.40), rgba(var(--di),0.88)),
    url('images/nebula.jpg') center / cover no-repeat;
}
.page-hero--blog {
  background:
    linear-gradient(rgba(var(--di),0.58), rgba(var(--sb),0.93)),
    url('images/earth-from-space.jpg') center 35% / cover no-repeat;
}
.page-hero--spirit {
  background:
    linear-gradient(rgba(var(--sb),0.42) 0%, rgba(var(--di),0.90) 100%),
    url('images/silhouette-milkyway.jpg') center 20% / cover no-repeat;
}
.page-hero h1           { font-family: var(--font-head); font-size: clamp(36px,5vw,64px); font-weight: 900; line-height: 1.1; margin-bottom: 16px; position: relative; z-index: 1; }
.page-hero p            { font-size: 17px; max-width: 600px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero .section-label { position: relative; z-index: 1; }

/* ===== CHARACTER PAGE ===== */
.characters-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; margin-top: 48px; }
.character-card {
  background: var(--bg-card); border: 1px solid var(--border);
  padding: 40px 32px; transition: all 0.3s; position: relative; overflow: hidden;
}
.character-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.character-card:hover { border-color: rgba(201,168,76,0.55); transform: translateY(-4px); background: rgba(201,168,76,0.04); }
.character-card:hover::before { opacity: 1; }
.char-number   { font-family: var(--font-head); font-size: 11px; letter-spacing: 3px; color: var(--violet-light); margin-bottom: 12px; display: block; }
.char-name     { font-family: var(--font-head); font-size: 28px; font-weight: 900; color: var(--gold); margin-bottom: 6px; display: block; }
.char-pronounce { font-size: 13px; color: var(--text-muted); letter-spacing: 1px; font-style: italic; margin-bottom: 20px; display: block; }
.char-divider  { width: 40px; height: 1px; background: var(--border); margin-bottom: 20px; }
.char-desc     { font-size: 14px; color: var(--text-muted); margin-bottom: 0; }

.language-note {
  background: rgba(27,19,64,0.6); border: 1px solid var(--border);
  padding: 40px; margin-top: 64px; text-align: center;
}
.language-note h3 { color: var(--gold); margin-bottom: 16px; }

/* ===== ENVIRONMENT PAGE ===== */
.env-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; margin-top: 48px; }
.env-card {
  background: var(--bg-card); border: 1px solid var(--border);
  padding: 40px 32px; transition: all 0.3s;
}
.env-card:hover { border-color: var(--border-violet); transform: translateY(-4px); background: var(--violet-dim); }
.env-card-icon { font-size: 32px; margin-bottom: 20px; display: block; color: var(--violet-light); }
.env-card h3 { color: var(--text); margin-bottom: 12px; }
.env-card p  { font-size: 14px; }

.env-feature {
  position: relative;
  background:
    linear-gradient(to right, rgba(var(--di),0.92) 48%, rgba(var(--sb),0.60) 100%),
    url('images/saturn.jpg') right center / cover no-repeat;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 80px 0; margin: 80px 0 0;
}
.env-feature .two-col { gap: 60px; }
.env-stat-list { list-style: none; margin-top: 24px; }
.env-stat-list li {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid rgba(240,238,248,0.06);
  font-size: 14px; color: var(--text-muted);
}
.env-stat-list li span { color: var(--gold); font-family: var(--font-head); font-size: 11px; letter-spacing: 2px; min-width: 90px; padding-top: 2px; }

/* ===== BLOG PAGE ===== */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px,1fr)); gap: 24px; margin-top: 48px; }
.blog-card {
  background: var(--bg-card); border: 1px solid var(--border);
  padding: 36px 32px; transition: all 0.3s; display: flex; flex-direction: column;
}
.blog-card:hover { border-color: rgba(201,168,76,0.45); transform: translateY(-4px); background: rgba(27,19,64,0.5); }
.blog-meta { display: flex; gap: 16px; align-items: center; margin-bottom: 20px; }
.blog-tag  { font-family: var(--font-head); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; background: var(--violet-dim); color: var(--violet-light); padding: 4px 12px; }
.blog-date { font-size: 12px; color: var(--text-muted); }
.blog-card h3 { font-size: 20px; color: var(--text); margin-bottom: 12px; line-height: 1.35; }
.blog-card p  { font-size: 14px; flex: 1; margin-bottom: 24px; }
.blog-read-more { font-family: var(--font-head); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 8px; transition: gap 0.2s; }
.blog-card:hover .blog-read-more { gap: 14px; }

/* ===== SPIRIT GROUP PAGE ===== */
.section-spirit-benefits {
  position: relative;
  background:
    linear-gradient(rgba(var(--di),0.88), rgba(var(--sb),0.94)),
    url('images/galaxy-core.jpg') center / cover no-repeat;
}
.spirit-hero-text { font-size: 20px; max-width: 680px; margin: 0 auto; text-align: center; color: var(--text-muted); }
.spirit-benefits { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 20px; margin-top: 48px; }
.spirit-benefit {
  background: var(--bg-card); border: 1px solid var(--border);
  padding: 32px 28px; transition: all 0.3s;
}
.spirit-benefit:hover { border-color: var(--gold); background: rgba(201,168,76,0.05); }
.spirit-benefit-num { font-family: var(--font-head); font-size: 36px; color: var(--gold-dim); font-weight: 900; line-height: 1; margin-bottom: 12px; }
.spirit-benefit h3  { font-size: 17px; color: var(--text); margin-bottom: 10px; }
.spirit-benefit p   { font-size: 14px; margin-bottom: 0; }

.spirit-join-form {
  background: rgba(27,19,64,0.7); border: 1px solid var(--border);
  padding: 64px; margin-top: 80px; text-align: center;
  backdrop-filter: blur(8px);
}
.spirit-join-form h2 { margin-bottom: 12px; }
.spirit-join-form > p { margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }
.form-row { display: flex; gap: 12px; flex-wrap: wrap; max-width: 580px; margin: 0 auto 12px; }
.form-input {
  flex: 1; min-width: 200px;
  background: rgba(240,238,248,0.07); border: 1px solid var(--border);
  color: var(--text); padding: 14px 20px; font-family: var(--font-body); font-size: 15px;
  outline: none; transition: border-color 0.2s;
}
.form-input:focus { border-color: var(--gold); }
.form-input::placeholder { color: var(--text-muted); }

/* ===== FAQ (AEO visible) ===== */
.faq-list { margin-top: 40px; display: flex; flex-direction: column; gap: 2px; }
.faq-item {
  background: var(--bg-card); border: 1px solid var(--border);
  padding: 28px 32px; transition: border-color 0.25s, background 0.25s;
}
.faq-item:hover { border-color: rgba(201,168,76,0.42); background: rgba(201,168,76,0.04); }
.faq-item dt { font-family: var(--font-head); font-size: 15px; color: var(--text); margin-bottom: 10px; font-weight: 600; }
.faq-item dd { color: var(--text-muted); font-size: 14px; margin: 0; line-height: 1.7; }

/* ===== FOOTER ===== */
.footer {
  background: var(--shadow-black);
  border-top: 1px solid var(--border); padding: 64px 0 32px;
}
.footer-inner { display: grid; grid-template-columns: 1fr auto 1fr; gap: 40px; align-items: start; margin-bottom: 48px; }
.footer-logo  { font-family: var(--font-head); font-size: 20px; font-weight: 900; color: var(--text); letter-spacing: 2px; display: block; margin-bottom: 12px; }
.footer-brand p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }
.footer-nav { display: flex; flex-direction: column; gap: 12px; align-items: center; }
.footer-nav a { font-family: var(--font-head); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); transition: color 0.2s; }
.footer-nav a:hover { color: var(--gold); }
.footer-contact { text-align: right; }
.footer-contact p { font-size: 13px; color: var(--text-muted); margin-bottom: 6px; }
.footer-bottom { text-align: center; padding-top: 24px; border-top: 1px solid rgba(240,238,248,0.06); }
.footer-bottom p { font-family: var(--font-head); font-size: 11px; letter-spacing: 2px; color: var(--text-muted); margin: 0; }

/* ===== RESPONSIVE ===== */

/* ---- Tablet ---- */
@media (max-width: 1024px) {
  .pillars-grid    { grid-template-columns: repeat(2, 1fr); }
  .purchase-grid   { grid-template-columns: repeat(2, 1fr); }
  .characters-grid { grid-template-columns: repeat(2, 1fr); }
  .env-grid        { grid-template-columns: repeat(2, 1fr); }
  .blog-grid       { grid-template-columns: repeat(2, 1fr); }
  .spirit-benefits { grid-template-columns: repeat(2, 1fr); }
}

/* ---- Small tablet ---- */
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .two-col.reverse { direction: ltr; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 32px; }
  .footer-contact { text-align: center; }
  .footer-nav { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .section-author {
    background:
      linear-gradient(rgba(var(--di),0.88) 0%, rgba(var(--di),0.94) 100%),
      url('images/silhouette-milkyway.jpg') center 30% / cover no-repeat;
  }
  .blog-card[style*="flex-direction:row"] { flex-direction: column !important; gap: 0 !important; }
}

/* ---- Mobile ---- */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  /* Nav drawer */
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: var(--nav-h); left: 0; width: 100%;
    background: rgba(var(--di),0.98); backdrop-filter: blur(16px);
    padding: 20px 24px 28px; gap: 0;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links li   { border-bottom: 1px solid rgba(240,238,248,0.07); }
  .nav-links a    { display: flex; align-items: center; padding: 14px 0; font-size: 12px; min-height: 44px; }
  .nav-toggle     { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; }

  /* Layout */
  .section    { padding: 56px 0; }
  .page-hero  { padding: calc(var(--nav-h) + 56px) 20px 60px; }

  /* Typography */
  h2            { font-size: clamp(24px,6vw,36px); }
  .hero-title   { font-size: clamp(34px,10vw,56px); }
  .hero-tagline { font-size: 14px; }

  /* CTAs */
  .hero-ctas  { flex-direction: column; align-items: center; gap: 12px; }
  .btn-ghost  { margin-left: 0; }
  .btn        { padding: 14px 28px; min-height: 44px; }

  /* Stacking */
  .two-col    { gap: 40px; }
  .col-visual { order: -1; }

  /* Grids → 1 col */
  .pillars-grid, .purchase-grid, .characters-grid,
  .env-grid, .blog-grid, .spirit-benefits { grid-template-columns: 1fr; }

  /* Forms */
  .newsletter-form { flex-direction: column; }
  .newsletter-input { width: 100%; }
  .form-row   { flex-direction: column; }
  .form-input { min-width: 100%; }
  .spirit-join-form { padding: 40px 20px; }

  /* Characters */
  .chars-strip { gap: 8px; }
  .char-chip   { padding: 10px 16px; font-size: 12px; min-height: 44px; display: flex; align-items: center; }

  /* Orb */
  .author-orb { height: 240px; }
  .orb-ring   { width: 200px !important; height: 200px !important; }
  .orb-ring-2 { width: 145px !important; height: 145px !important; }
  .orb-center { width: 90px !important; height: 90px !important; font-size: 15px !important; }

  /* Cards */
  .language-note          { padding: 28px 20px; }
  .book-cover-img         { width: 200px; }
  .pull-quote             { font-size: 16px; }
  .env-feature            { margin: 48px 0 0; }
  .spirit-hero-text       { font-size: 16px; }
  .spirit-benefit         { padding: 24px 20px; }
  .spirit-benefit-num     { font-size: 28px; }
  .purchase-card          { padding: 20px 24px; min-height: 64px; }

  /* Footer */
  .footer       { padding: 48px 0 24px; }
  .footer-inner { gap: 24px; }
  .footer-nav   { gap: 0; }
  .footer-nav a { padding: 8px 12px; min-height: 44px; display: flex; align-items: center; }
}

/* ---- Very small phones ---- */
@media (max-width: 380px) {
  .container  { padding: 0 16px; }
  .hero-title { font-size: 30px; }
  .pillar-card, .env-card, .blog-card, .character-card { padding: 28px 20px; }
}

/* ---- No hover (touch devices) ---- */
@media (hover: none) {
  .pillar-card:hover, .character-card:hover, .env-card:hover,
  .blog-card:hover, .spirit-benefit:hover, .purchase-card:hover { transform: none; }
}
