/* ============================================================
   Solmara Online — marketing stylesheet
   Direction: "illuminated night-atlas" — the game's gold-on-navy
   Conquer chrome as a full marketing canvas. Real CSS-3D voxel
   cubes carry the art style; Cinzel carries the brand.
   Shared across the landing (/) and every sub-page.
   ============================================================ */

:root {
  --night-0: #060c1e;
  --night-1: #0a1430;
  --night-2: #0d1830;
  --night-3: #15244a;
  --gold: #c9a14e;
  --gold-bright: #f0d488;
  --gold-dim: #9a8f6a;
  --parchment: #cfc6a6;
  --ink: #08101f;
  --grass: #7ec850;
  --grass-dark: #5a9e38;
  --dirt: #a9745c;
  --dirt-dark: #7d513f;
  --leaf: #57b94c;
  --leaf-dark: #3f8f38;
  --trunk: #8a5a3a;
  --water: #4fa3d9;
  --ember: #e08a3c;
  --beta: #6fc0ec;
  --font-display: 'Cinzel', Georgia, serif;
  --font-body: 'Alegreya', Georgia, serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--night-1);
  color: var(--parchment);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  overflow-x: hidden;
}

::selection { background: rgba(201, 161, 78, 0.45); color: #fff8e0; }

a { color: var(--gold-bright); }

/* ---- shared layout ---- */
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 780px; margin: 0 auto; padding: 0 24px; }

.kicker {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3.6vw, 2.4rem);
  letter-spacing: 0.08em;
  color: var(--gold-bright);
  text-shadow: 0 0 24px rgba(240, 212, 136, 0.3), 0 2px 2px rgba(0,0,0,0.9);
  margin: 0.35em 0 0.5em;
}

/* ---- gold beveled button (mirrors in-game .sm-btn) ---- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  height: 52px;
  padding: 0 2.2rem;
  cursor: pointer;
  overflow: hidden;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2a1f08;
  text-shadow: 0 1px 0 rgba(255, 240, 190, 0.6);
  background: linear-gradient(180deg, #f4dc96 0%, #d8af58 48%, #b88c34 100%);
  border: 1px solid;
  border-color: #fff0c0 #8a6420 #5c430f #d9b76a;
  border-radius: 5px;
  box-shadow:
    0 0 0 1px #1d1604,
    inset 0 1px 0 rgba(255, 248, 220, 0.7),
    inset 0 -2px 3px rgba(90, 60, 10, 0.45),
    0 4px 18px rgba(201, 161, 78, 0.35),
    0 2px 4px rgba(0, 0, 0, 0.8);
  transition: transform 0.12s ease, box-shadow 0.15s ease, filter 0.15s ease;
}
.btn::after {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 252, 235, 0.55), transparent);
  transform: skewX(-20deg);
  transition: left 0.4s ease;
  pointer-events: none;
}
.btn:hover { filter: brightness(1.07); box-shadow: 0 0 0 1px #1d1604, inset 0 1px 0 rgba(255,248,220,0.7), inset 0 -2px 3px rgba(90,60,10,0.45), 0 6px 26px rgba(240, 212, 136, 0.5), 0 2px 4px rgba(0,0,0,0.8); }
.btn:hover::after { left: 120%; }
.btn:active { transform: translateY(1px); }

.btn-ghost {
  background: linear-gradient(180deg, #1d3057 0%, #11203f 50%, #0b1326 100%);
  color: var(--gold-bright);
  text-shadow: 0 -1px 0 rgba(0,0,0,0.9);
  border-color: #e3c47c #6e5318 #4a380e #b3924a;
  box-shadow:
    0 0 0 1px #1d1604,
    inset 0 1px 0 rgba(255, 235, 180, 0.25),
    inset 0 -2px 3px rgba(0, 0, 0, 0.55),
    0 2px 4px rgba(0, 0, 0, 0.8);
}
.btn-ghost:hover { filter: none; background: linear-gradient(180deg, #27406f, #16284c 50%, #0e1830); box-shadow: 0 0 0 1px #1d1604, inset 0 1px 0 rgba(255,235,180,0.3), inset 0 -2px 3px rgba(0,0,0,0.55), 0 0 18px rgba(201,161,78,0.25), 0 2px 4px rgba(0,0,0,0.8); }

/* ---- beta pill ---- */
.beta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-family: var(--font-display);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #cdeeff;
  padding: 0.28em 0.7em 0.24em;
  border-radius: 3px;
  background: linear-gradient(180deg, rgba(111, 192, 236, 0.28), rgba(47, 122, 170, 0.18));
  border: 1px solid rgba(111, 192, 236, 0.55);
  box-shadow: 0 0 12px rgba(111, 192, 236, 0.28), inset 0 1px 0 rgba(255,255,255,0.25);
  vertical-align: middle;
}
.beta-pill::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--beta);
  box-shadow: 0 0 8px var(--beta);
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: linear-gradient(180deg, rgba(6, 12, 30, 0.92), rgba(6, 12, 30, 0.72));
  border-bottom: 1px solid rgba(201, 161, 78, 0.28);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-bright);
  text-decoration: none;
  text-shadow: 0 0 16px rgba(240, 212, 136, 0.45);
}
.logo .logo-glyph { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 1.8rem; }
.nav-links a:not(.btn) {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--parchment);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-links a:not(.btn):hover { color: var(--gold-bright); }
.nav-links a.active { color: var(--gold-bright); }
.nav-links .btn { height: 38px; padding: 0 1.3rem; font-size: 0.74rem; }
@media (max-width: 820px) { .nav-links a:not(.btn) { display: none; } }

/* ============================================================
   Hero — night sky + CSS-3D voxel diorama
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 100% 100% at 50% 50%, transparent 55%, rgba(4, 8, 18, 0.75) 100%),
    radial-gradient(ellipse 90% 45% at 50% 100%, rgba(201, 140, 40, 0.22), transparent 60%),
    radial-gradient(ellipse 60% 30% at 50% 0%, rgba(40, 70, 140, 0.35), transparent 70%),
    linear-gradient(180deg, var(--night-0) 0%, var(--night-1) 35%, var(--night-2) 65%, #111c2e 100%);
}

/* compact hero variant for sub-pages */
.page-hero {
  position: relative;
  min-height: 56svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 150px 24px 70px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(40, 70, 140, 0.35), transparent 70%),
    radial-gradient(ellipse 90% 40% at 50% 100%, rgba(201, 140, 40, 0.16), transparent 65%),
    linear-gradient(180deg, var(--night-0) 0%, var(--night-1) 55%, var(--night-2) 100%);
  border-bottom: 1px solid rgba(201, 161, 78, 0.22);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.1rem, 6vw, 3.6rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-bright);
  text-shadow: 0 0 30px rgba(240, 212, 136, 0.5), 0 3px 3px rgba(0,0,0,0.9);
  margin-top: 0.5rem;
}
.page-hero .hero-lede { animation: none; }

/* star field — three layered box-shadow star sheets */
.stars { position: absolute; inset: 0; pointer-events: none; }
.stars i {
  position: absolute;
  width: 2px; height: 2px;
  border-radius: 50%;
  background: #e8ecff;
  box-shadow:
    4vw 12vh 0 0 #dfe6ff, 12vw 32vh 0 0 #cfd8ff, 18vw 8vh 0 0 #fff,
    26vw 22vh 0 0 #dfe6ff, 33vw 8vh 0 0 #cfd8ff, 41vw 28vh 0 0 #fff,
    49vw 12vh 0 0 #dfe6ff, 56vw 30vh 0 0 #cfd8ff, 63vw 6vh 0 0 #fff,
    71vw 24vh 0 0 #dfe6ff, 79vw 10vh 0 0 #cfd8ff, 86vw 30vh 0 0 #fff,
    93vw 16vh 0 0 #dfe6ff, 9vw 48vh 0 0 #cfd8ff, 88vw 46vh 0 0 #dfe6ff;
  animation: twinkle 3.6s ease-in-out infinite;
}
.stars i:nth-child(2) {
  transform: translate(2vw, 4vh);
  opacity: 0.55;
  animation-delay: 1.4s;
  animation-duration: 5.2s;
}
.stars i:nth-child(3) {
  transform: translate(-3vw, 2vh) scale(0.7);
  opacity: 0.35;
  animation-delay: 2.6s;
  animation-duration: 7s;
}
@keyframes twinkle { 0%, 100% { opacity: 0.9; } 50% { opacity: 0.35; } }

.hero-kicker {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 1.4rem;
  animation: rise-in 0.8s 0.1s ease both;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 8vw, 5.4rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--gold-bright);
  text-shadow:
    0 0 30px rgba(240, 212, 136, 0.55),
    0 0 90px rgba(220, 170, 60, 0.3),
    0 3px 3px rgba(0, 0, 0, 0.9);
  animation: rise-in 0.9s 0.25s ease both;
}
.hero h1 small {
  display: block;
  font-size: 0.28em;
  font-weight: 600;
  letter-spacing: 0.62em;
  color: var(--parchment);
  text-shadow: 0 1px 2px #000;
  margin-top: 0.6em;
}

.hero-lede {
  max-width: 580px;
  margin: 1.8rem auto 2.4rem;
  font-size: clamp(1.02rem, 2vw, 1.18rem);
  color: var(--parchment);
  animation: rise-in 0.9s 0.4s ease both;
}
.hero-lede em { color: var(--gold-bright); font-style: italic; }

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: rise-in 0.9s 0.55s ease both;
}

.hero-sub {
  margin-top: 1.3rem;
  font-size: 0.85rem;
  color: var(--gold-dim);
  animation: rise-in 0.9s 0.7s ease both;
}
.hero-sub .sol { color: var(--gold); }

@keyframes rise-in {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- CSS-3D voxel cubes ----------------------------------------
   True isometric cube: top face (two skews) + left/right faces.
   --s sets cube size; face colors via --ct/--cl/--cr.            */
.cube {
  position: absolute;
  width: var(--s);
  height: var(--s);
  transform-style: preserve-3d;
  pointer-events: none;
}
.cube b { position: absolute; width: var(--s); height: var(--s); display: block; }
.cube .t {
  background: var(--ct);
  transform: rotate(210deg) skewX(-30deg) scaleY(0.864);
  transform-origin: 0 0;
  top: 0; left: 0;
}
.cube .l {
  background: var(--cl);
  transform: rotate(90deg) skewX(-30deg) scaleY(0.864);
  transform-origin: 0 0;
  top: 0; left: 0;
}
.cube .r {
  background: var(--cr);
  transform: rotate(-30deg) skewX(-30deg) scaleY(0.864);
  transform-origin: 0 0;
  top: 0; left: 0;
}

/* floating ambient cubes around the hero */
.float-cube { animation: bob 7s ease-in-out infinite; opacity: 0.9; }
.float-cube.fc1 { --s: 54px; top: 18%; left: 9%;  --ct:#8fd95e; --cl:#5a9e38; --cr:#71b94a; animation-delay: 0s; }
.float-cube.fc2 { --s: 34px; top: 30%; right: 12%; --ct:#f4dc96; --cl:#a87f2e; --cr:#d0a850; animation-delay: 1.6s; animation-duration: 8.5s; }
.float-cube.fc3 { --s: 26px; bottom: 26%; left: 16%; --ct:#6fc0ec; --cl:#2f7aaa; --cr:#4fa3d9; animation-delay: 3s; animation-duration: 9.5s; }
.float-cube.fc4 { --s: 40px; bottom: 20%; right: 8%; --ct:#c98ed9; --cl:#8a4d9e; --cr:#a96bc0; animation-delay: 2.2s; animation-duration: 7.8s; }
@media (max-width: 720px) { .float-cube.fc3, .float-cube.fc4 { display: none; } }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-26px); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Ornate panel — gold double-border ring (mirrors .ui-panel)
   ============================================================ */
.panel {
  position: relative;
  border-radius: 6px;
  border: 1px solid var(--ink);
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.012) 0 2px, transparent 2px 6px),
    linear-gradient(165deg, var(--night-3) 0%, var(--night-2) 55%, #0a1226 100%);
  box-shadow:
    0 0 0 1px var(--gold),
    0 0 0 3px #1d1604,
    0 0 0 4px rgba(201, 161, 78, 0.55),
    0 12px 48px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 230, 160, 0.12),
    inset 0 0 40px rgba(0, 0, 0, 0.45);
}

/* ============================================================
   Features
   ============================================================ */
.features { padding: 110px 0 30px; text-align: center; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-top: 2.6rem;
  text-align: left;
}
.feature {
  padding: 1.7rem 1.5rem 1.5rem;
}
.feature .glyph {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  border-radius: 50%;
  color: var(--gold-bright);
  text-shadow: 0 0 12px rgba(240, 212, 136, 0.6);
  background: radial-gradient(circle at 35% 30%, #21345c, #0a1226 75%);
  border: 2px solid;
  border-color: var(--gold) #6e5318 #4a380e var(--gold);
  box-shadow: 0 0 0 1px #1d1604, inset 0 2px 6px rgba(0,0,0,0.7), inset 0 0 12px rgba(60,110,220,0.2);
  margin-bottom: 1rem;
}
.feature h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 0.5rem;
}
.feature p { font-size: 0.95rem; color: var(--parchment); opacity: 0.92; }

/* ============================================================
   Classes
   ============================================================ */
.classes { padding: 110px 0 30px; text-align: center; }
.class-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
  margin-top: 2.6rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.class-card { padding: 2rem 1.8rem; overflow: hidden; }
.class-card .class-banner {
  position: relative;
  height: 120px;
  margin: -2rem -1.8rem 1.4rem;
  border-bottom: 1px solid rgba(201, 161, 78, 0.35);
  overflow: hidden;
}
.class-card.warrior  .class-banner { background: radial-gradient(ellipse 90% 120% at 50% 110%, rgba(200, 80, 50, 0.35), transparent 65%), linear-gradient(180deg, #0a1226, #132345); }
.class-card.trojan   .class-banner { background: radial-gradient(ellipse 90% 120% at 50% 110%, rgba(230, 160, 50, 0.32), transparent 65%), linear-gradient(180deg, #0a1226, #1a2640); }
.class-card.archer   .class-banner,
.class-card.ranger   .class-banner { background: radial-gradient(ellipse 90% 120% at 50% 110%, rgba(80, 180, 90, 0.3), transparent 65%), linear-gradient(180deg, #0a1226, #11304a); }
.class-card.taoist   .class-banner { background: radial-gradient(ellipse 90% 120% at 50% 110%, rgba(120, 110, 220, 0.32), transparent 65%), linear-gradient(180deg, #0a1226, #161a44); }
.class-banner .glyph-xl {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.4rem;
  filter: drop-shadow(0 0 18px rgba(240, 212, 136, 0.5));
}
.class-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.class-card .class-tag {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin: 0.2rem 0 0.9rem;
  font-family: var(--font-display);
}
.class-card p { font-size: 0.97rem; }

/* ============================================================
   How to begin
   ============================================================ */
.begin { padding: 110px 0; text-align: center; }
.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
  margin-top: 2.6rem;
  text-align: left;
}
.step {
  counter-increment: step;
  padding: 1.7rem 1.5rem 1.5rem;
  position: relative;
}
.step::before {
  content: counter(step, upper-roman);
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  text-shadow: 0 0 14px rgba(201, 161, 78, 0.5);
  margin-bottom: 0.6rem;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 0.45rem;
}
.step p { font-size: 0.93rem; opacity: 0.92; }
.step a { text-decoration: none; border-bottom: 1px solid rgba(201, 161, 78, 0.4); }

.begin .btn { margin-top: 2.8rem; }

/* ============================================================
   Generic section + prose (sub-pages)
   ============================================================ */
.section { padding: 96px 0 30px; }
.section.center { text-align: center; }
.section-lede {
  max-width: 620px;
  margin: 1.1rem auto 0;
  font-size: 1.06rem;
  color: var(--parchment);
  opacity: 0.92;
}
.prose p { margin-bottom: 1.1rem; }
.prose p:last-child { margin-bottom: 0; }
.prose em { color: var(--gold-bright); font-style: italic; }

/* split row — text beside an ornate panel/diorama */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 2.4rem;
}
.split.reverse > :first-child { order: 2; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } .split.reverse > :first-child { order: 0; } }
.split .panel { padding: 2rem 1.8rem; }
.split h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 0.7rem;
}

/* diorama tile — small voxel scene inside a panel */
.diorama {
  position: relative;
  height: 240px;
  border-radius: 6px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 50% 30%, rgba(60, 100, 200, 0.25), transparent 70%),
    linear-gradient(180deg, #0e1a38, #0a1226);
}
.diorama .cube { position: absolute; }

/* ============================================================
   Loop list (gameplay) — numbered ornate cards
   ============================================================ */
.loop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 2.6rem;
  text-align: left;
}
.loop-card { padding: 1.8rem 1.6rem 1.5rem; }
.loop-card .loop-glyph {
  font-size: 1.8rem;
  filter: drop-shadow(0 0 12px rgba(240,212,136,0.45));
  margin-bottom: 0.7rem;
}
.loop-card h3 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 0.5rem;
}
.loop-card p { font-size: 0.95rem; opacity: 0.92; }
.loop-card .tag-row { margin-top: 0.9rem; display: flex; flex-wrap: wrap; gap: 0.4rem; }
.chip {
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dim);
  padding: 0.25em 0.6em;
  border: 1px solid rgba(201, 161, 78, 0.3);
  border-radius: 3px;
  background: rgba(201, 161, 78, 0.06);
}

/* ============================================================
   Roadmap timeline
   ============================================================ */
.timeline {
  position: relative;
  max-width: 760px;
  margin: 3rem auto 0;
  padding-left: 8px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 18px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, rgba(201,161,78,0.7), rgba(201,161,78,0.15));
}
.tl-item {
  position: relative;
  padding: 0 0 2.4rem 56px;
}
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: '';
  position: absolute;
  left: 9px; top: 2px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #21345c, #0a1226 75%);
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 1px #1d1604, 0 0 12px rgba(201,161,78,0.4);
}
.tl-item.done::before { background: radial-gradient(circle at 35% 30%, #8fd95e, #3f8f38 75%); border-color: #8fd95e; box-shadow: 0 0 0 1px #1d1604, 0 0 14px rgba(126,200,80,0.6); }
.tl-item.now::before { background: radial-gradient(circle at 35% 30%, #6fc0ec, #2f7aaa 75%); border-color: #6fc0ec; box-shadow: 0 0 0 1px #1d1604, 0 0 16px rgba(111,192,236,0.7); animation: pulse 2.2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.18); } }
.tl-phase {
  font-family: var(--font-display);
  font-size: 0.64rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 0.3rem;
}
.tl-item.done .tl-phase { color: var(--grass); }
.tl-item.now .tl-phase { color: var(--beta); }
.tl-item h3 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold-bright);
  margin-bottom: 0.5rem;
}
.tl-item ul { list-style: none; }
.tl-item li {
  position: relative;
  padding-left: 1.3rem;
  font-size: 0.95rem;
  opacity: 0.92;
  margin-bottom: 0.35rem;
}
.tl-item li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold-dim);
  font-size: 0.7rem;
}

/* ============================================================
   FAQ — native details/summary accordion
   ============================================================ */
.faq-list { max-width: 760px; margin: 2.8rem auto 0; }
.faq {
  margin-bottom: 14px;
  padding: 0;
  overflow: hidden;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold-bright);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform 0.2s ease;
  line-height: 1;
}
.faq[open] summary::after { transform: rotate(45deg); }
.faq .faq-body {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.97rem;
  opacity: 0.92;
}
.faq .faq-body a { text-decoration: none; border-bottom: 1px solid rgba(201,161,78,0.4); }

/* ============================================================
   CTA band (sub-page footer call-to-action)
   ============================================================ */
.cta-band {
  margin: 90px auto 0;
  max-width: 1100px;
  text-align: center;
  padding: 3rem 2rem 3.2rem;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold-bright);
  text-shadow: 0 0 24px rgba(240,212,136,0.3);
  margin-bottom: 0.7rem;
}
.cta-band p { max-width: 480px; margin: 0 auto 1.8rem; opacity: 0.92; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  border-top: 1px solid rgba(201, 161, 78, 0.25);
  background: linear-gradient(180deg, var(--night-0), #04070f);
  padding: 2.8rem 0 2.8rem;
  text-align: center;
}
.site-footer .logo { font-size: 0.9rem; justify-content: center; }
.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin-top: 1.4rem;
}
.footer-nav a {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--parchment);
  text-decoration: none;
  opacity: 0.8;
}
.footer-nav a:hover { color: var(--gold-bright); opacity: 1; }
.site-footer .legal {
  margin-top: 1.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #4a4030;
}
.site-footer .legal .sol { color: #6a5a28; }

/* ---- scroll reveal (only hidden when JS is available to reveal it) ---- */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.js .reveal.in { opacity: 1; transform: none; }
