/* ============================================================
   PROJECT WARDEN — pre-launch landing
   Visual system: warm low-poly frontier. Stone, parchment, gold,
   verdant green, with sparing magical accents (wisp cyan / violet).
   Type: Cinzel (carved display) · Spectral (warm serif body) ·
         Space Mono (build-log labels).
   ============================================================ */

:root {
  /* surfaces — warm near-black, slightly green-shifted earth */
  --bg:        #14110a;
  --bg-2:      #1a160d;
  --bg-3:      #211b11;
  --panel:     rgba(33, 27, 17, 0.72);
  --panel-solid:#211b11;
  --glass:     rgba(20, 17, 10, 0.55);

  /* lines / borders — antique brass */
  --line:      rgba(138, 115, 64, 0.32);
  --line-soft: rgba(138, 115, 64, 0.16);
  --border:    #6a5830;
  --border-lit:#8a7340;

  /* ink — parchment */
  --ink:       #f2ead4;
  --ink-dim:   #c3b48d;
  --ink-mut:   #8f8060;
  --ink-faint: #6b5f46;

  /* gold (primary accent / CTA) */
  --gold:      #e8c040;
  --gold-lit:  #f6d667;
  --gold-deep: #b8902a;

  /* verdant (the living world) */
  --verdant:   #8fd35b;
  --verdant-d: #5da832;
  --verdant-dd:#3d7a1e;

  /* magical accents — used sparingly */
  --wisp:      #b8efdc;
  --violet:    #c08be8;
  --ember:     #ff7a3c;

  /* rarity */
  --r-common:  #c8c8c8;
  --r-uncommon:#56c24a;
  --r-rare:    #5a92f5;
  --r-elite:   #c060ea;
  --r-legend:  #f0a020;

  --hp:        #56c84a;

  /* type */
  --display: "Cinzel", Georgia, serif;
  --serif:   "Spectral", Georgia, serif;
  --mono:    "Space Mono", "Courier New", monospace;

  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* warm grain / vignette overlay for the whole page */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 60;
  background:
    radial-gradient(130% 90% at 50% 0%, transparent 55%, rgba(0,0,0,0.35) 100%);
  mix-blend-mode: multiply;
}

::selection { background: rgba(232, 192, 64, 0.28); color: #fff; }

/* ---------- type primitives ---------- */
h1, h2, h3 { font-family: var(--display); font-weight: 700; margin: 0; line-height: 1.04; letter-spacing: 0.005em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }

.eyebrow {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  transform: rotate(45deg);
  background: var(--gold);
  box-shadow: 0 0 10px rgba(232,192,64,0.6);
}

.lede { font-size: 21px; color: var(--ink-dim); line-height: 1.6; }
.muted { color: var(--ink-mut); }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
section { position: relative; }

/* ---------- badges / pills ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-dim);
  padding: 8px 15px 8px 13px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--glass);
  backdrop-filter: blur(6px);
}
.pill .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--verdant);
  box-shadow: 0 0 0 0 rgba(143,211,91,0.6);
  animation: pulse 2.6s var(--ease) infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(143,211,91,0.55); }
  70%  { box-shadow: 0 0 0 9px rgba(143,211,91,0); }
  100% { box-shadow: 0 0 0 0 rgba(143,211,91,0); }
}

/* ---------- buttons ---------- */
.btn {
  font-family: var(--mono);
  font-size: 13.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease);
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(180deg, var(--gold-lit), var(--gold) 55%, var(--gold-deep));
  color: #2a1f08;
  font-weight: 700;
  border-color: rgba(255,235,170,0.6);
  box-shadow: 0 1px 0 rgba(255,245,210,0.5) inset, 0 10px 24px -10px rgba(232,192,64,0.7);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 1px 0 rgba(255,245,210,0.6) inset, 0 16px 30px -10px rgba(232,192,64,0.85); }
.btn-ghost {
  background: rgba(40, 33, 19, 0.4);
  color: var(--ink);
  border-color: var(--border);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-lit); transform: translateY(-2px); background: rgba(40,33,19,0.65); }
.btn-block { width: 100%; }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  transition: background .3s var(--ease), border-color .3s var(--ease), padding .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(16, 13, 7, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding: 12px 32px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand .sigil {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  transform: rotate(45deg);
  border: 1.5px solid var(--gold);
  border-radius: 5px;
  background: linear-gradient(135deg, rgba(232,192,64,0.18), transparent);
}
.brand .sigil i {
  width: 9px; height: 9px;
  background: var(--gold);
  display: block;
  box-shadow: 0 0 10px rgba(232,192,64,0.7);
}
.brand .name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.18em;
  color: var(--ink);
}
.nav-right { display: flex; align-items: center; gap: 26px; }
.nav-link {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
  transition: color .18s var(--ease);
}
.nav-link:hover { color: var(--gold-lit); }
.nav .btn { padding: 11px 20px; }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
#world {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
  /* golden-hour sky behind the transparent 3D canvas */
  background:
    radial-gradient(120% 80% at 70% 12%, #f0d28a 0%, #d9b06a 16%, #9fb487 42%, #5d7d62 66%, #2c3d33 100%);
}
#world canvas { display: block; width: 100% !important; height: 100% !important; }
.hero-veil {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(12,10,5,0.78) 0%, rgba(12,10,5,0.45) 38%, rgba(12,10,5,0.05) 64%, rgba(12,10,5,0) 100%),
    linear-gradient(0deg, rgba(12,10,5,0.85) 0%, rgba(12,10,5,0.18) 30%, rgba(12,10,5,0) 55%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; }
.hero-content { max-width: 660px; padding-top: 60px; }
.hero h1 {
  font-size: clamp(58px, 9vw, 124px);
  font-weight: 800;
  letter-spacing: 0.02em;
  margin: 22px 0 0;
  line-height: 0.96;
  text-shadow: 0 4px 40px rgba(0,0,0,0.5);
}
.hero h1 .sub-mark { display: block; font-size: 0.31em; letter-spacing: 0.5em; color: var(--gold); font-weight: 600; margin-bottom: 0.5em; }
.hero-sub {
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 27px);
  color: var(--ink);
  font-style: italic;
  margin-top: 26px;
  font-weight: 500;
}
.hero-support { font-size: 18.5px; color: var(--ink-dim); margin-top: 18px; max-width: 540px; }
.hero-ctas { display: flex; gap: 14px; margin-top: 38px; flex-wrap: wrap; }
.hero-meta {
  display: flex; gap: 22px; margin-top: 40px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-mut);
}
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta span::before { content: ""; width: 5px; height: 5px; transform: rotate(45deg); background: var(--ink-faint); }
.scroll-cue {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ink-mut);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scroll-cue .line { width: 1px; height: 38px; background: linear-gradient(var(--gold), transparent); animation: drop 2.2s var(--ease) infinite; }
@keyframes drop { 0%{ transform: scaleY(0); transform-origin: top; } 50%{ transform: scaleY(1); transform-origin: top; } 51%{ transform: scaleY(1); transform-origin: bottom; } 100%{ transform: scaleY(0); transform-origin: bottom; } }

/* ---------- generic section header ---------- */
.section-head { max-width: 720px; }
.section-head h2 { font-size: clamp(32px, 4.4vw, 52px); margin-top: 18px; }
.section-head .lede { margin-top: 20px; }

.band { padding: 120px 0; }
.band.tight { padding: 96px 0; }
.rule { height: 1px; background: linear-gradient(90deg, transparent, var(--line), transparent); }

/* ---------- "what is" genre tags ---------- */
.whatis { background: linear-gradient(180deg, var(--bg), var(--bg-2)); }
.whatis-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; }
.whatis-body p + p { margin-top: 18px; }
.tagcloud { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
.tag {
  font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.06em;
  padding: 9px 14px; border: 1px solid var(--line); border-radius: 3px;
  color: var(--ink-dim); background: var(--bg-3);
}
.tag b { color: var(--gold); font-weight: 700; }
.loop-card {
  border: 1px solid var(--line);
  background: var(--panel-solid);
  border-radius: 6px;
  padding: 26px;
  box-shadow: 0 1px 0 rgba(255,235,170,0.04) inset, 0 30px 60px -40px rgba(0,0,0,0.8);
}
.loop-card .lbl { font-family: var(--mono); font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-mut); }
.loop-flow { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.loop-step {
  font-family: var(--mono); font-size: 12.5px;
  padding: 8px 12px; border-radius: 3px;
  background: var(--bg-2); border: 1px solid var(--line-soft); color: var(--ink-dim);
  display: inline-flex; align-items: center; gap: 9px;
}
.loop-step::after { content: "→"; color: var(--gold-deep); margin-left: 3px; }
.loop-step:last-child::after { content: "↻"; color: var(--verdant); }

/* ---------- pillars ---------- */
.pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 56px; }
.pillar {
  position: relative;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg-3), var(--bg-2));
  border-radius: 6px;
  padding: 30px 26px 34px;
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.pillar::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent, var(--gold)), transparent);
  opacity: 0.55;
}
.pillar:hover { transform: translateY(-6px); border-color: var(--border-lit); box-shadow: 0 30px 50px -30px rgba(0,0,0,0.85); }
.pillar .glyph {
  width: 52px; height: 52px; margin-bottom: 22px;
  display: grid; place-items: center;
  border: 1.5px solid var(--accent, var(--gold));
  color: var(--accent, var(--gold));
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent, var(--gold)) 12%, transparent);
}
.pillar .glyph svg { width: 26px; height: 26px; }
.pillar h3 { font-size: 21px; letter-spacing: 0.02em; }
.pillar .idx { position: absolute; top: 22px; right: 24px; font-family: var(--mono); font-size: 12px; color: var(--ink-faint); }
.pillar p { font-size: 16px; color: var(--ink-dim); margin-top: 12px; line-height: 1.55; }

/* ---------- open-world sandbox ---------- */
.sandbox { background: linear-gradient(180deg, var(--bg-2), var(--bg)); }
.sandbox-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.sandbox-copy h2 { font-size: clamp(34px, 4.6vw, 56px); margin-top: 18px; line-height: 1.02; }

.sandbox-menus { position: relative; min-height: 416px; }
.ctx-cursor { position: absolute; width: 26px; height: 26px; z-index: 5; left: 196px; top: 70px;
  filter: drop-shadow(0 3px 5px rgba(0,0,0,0.5)); animation: cursorBob 4s var(--ease) infinite; }
@keyframes cursorBob { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-3px,5px); } }

.ctxmenu {
  position: absolute;
  width: 268px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--panel-solid);
  box-shadow: 0 26px 50px -26px rgba(0,0,0,0.9), 0 1px 0 rgba(255,235,170,0.05) inset;
  overflow: hidden;
}
.ctx-a { left: 8px;   top: 0;   z-index: 4; }
.ctx-b { left: 150px; top: 138px; z-index: 3; }
.ctx-c { left: 36px;  top: 250px; z-index: 2; }
.ctx-head {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); padding: 10px 14px;
  background: linear-gradient(180deg, rgba(232,192,64,0.10), rgba(232,192,64,0.02));
  border-bottom: 1px solid var(--line);
}
.ctx-row {
  display: flex; align-items: baseline; gap: 8px; width: 100%; white-space: nowrap;
  font-family: var(--serif); font-size: 15px; text-align: left;
  padding: 9px 14px; background: none; border: 0; border-bottom: 1px solid var(--line-soft);
  cursor: pointer; transition: background .14s var(--ease);
}
.ctx-row:last-child { border-bottom: 0; }
.ctx-row .act { color: var(--ink); }
.ctx-row .act.dim { color: var(--ink-mut); }
.ctx-row .obj { color: var(--gold-lit); }
.ctx-row.hot, .ctx-row:hover { background: rgba(232,192,64,0.12); }
.ctx-row.hot .act, .ctx-row:hover .act { color: #fff; }

/* ---------- dev status ---------- */
.devstatus { background: linear-gradient(180deg, var(--bg), #0f0d07); }
.dev-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; margin-top: 56px; align-items: start; }
.dev-copy p + p { margin-top: 16px; }
.honesty {
  margin-top: 26px; padding: 20px 22px; border-left: 2px solid var(--gold);
  background: rgba(232,192,64,0.05); border-radius: 0 6px 6px 0;
  font-style: italic; color: var(--ink); font-size: 17px;
}
.statusboard {
  border: 1px solid var(--line); border-radius: 8px; overflow: hidden;
  background: var(--panel-solid);
  box-shadow: 0 30px 70px -45px rgba(0,0,0,0.9);
}
.sb-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px; border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(232,192,64,0.06), transparent);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-dim);
}
.sb-head .build { color: var(--verdant); }
.sb-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 15px 18px; border-bottom: 1px solid var(--line-soft); }
.sb-row:last-child { border-bottom: 0; }
.sb-row .sb-label { display: flex; flex: 1; min-width: 0; flex-direction: column; gap: 3px; }
.sb-row .sb-label b { display: block; font-family: var(--serif); font-weight: 600; font-size: 16px; color: var(--ink); }
.sb-row .sb-label span { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; color: var(--ink-mut); }
.chip {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 100px; white-space: nowrap; border: 1px solid; flex: 0 0 auto;
}
.chip.prog   { color: var(--verdant); border-color: rgba(143,211,91,0.4); background: rgba(143,211,91,0.08); }
.chip.proto  { color: var(--gold-lit); border-color: rgba(232,192,64,0.4); background: rgba(232,192,64,0.08); }
.chip.planned{ color: var(--ink-mut); border-color: var(--line); background: var(--bg-2); }
.chip.live   { color: var(--wisp); border-color: rgba(184,239,220,0.4); background: rgba(184,239,220,0.08); }

/* ---------- final CTA ---------- */
.gates { position: relative; overflow: hidden; padding: 150px 0; text-align: center; background: #0f0d07; }
.gates::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(80% 120% at 50% 120%, rgba(232,192,64,0.16), transparent 60%);
}
.gates-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.gates h2 { font-size: clamp(36px, 5.5vw, 64px); margin-top: 22px; }
.gates .lede { margin: 24px auto 0; max-width: 560px; }
.signup { display: flex; gap: 10px; margin: 38px auto 0; max-width: 520px; }
.signup input {
  flex: 1; min-width: 0;
  font-family: var(--serif); font-size: 16px;
  padding: 16px 18px; border-radius: 4px;
  background: rgba(20,17,10,0.7); border: 1px solid var(--border); color: var(--ink);
  outline: none; transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.signup input::placeholder { color: var(--ink-mut); }
.signup input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(232,192,64,0.14); }
.signup-note { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; color: var(--ink-mut); margin-top: 16px; }
.signup-ok { color: var(--verdant); font-family: var(--mono); font-size: 14px; letter-spacing: 0.06em; margin-top: 8px; min-height: 20px; }

/* ---------- footer ---------- */
footer { padding: 64px 0 48px; border-top: 1px solid var(--line); background: var(--bg); }
.foot-grid { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.foot-links { display: flex; gap: 40px; flex-wrap: wrap; }
.foot-col { display: flex; flex-direction: column; gap: 12px; }
.foot-col .h { font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-mut); margin-bottom: 4px; }
.foot-col a { color: var(--ink-dim); font-size: 15px; transition: color .15s var(--ease); }
.foot-col a:hover { color: var(--gold-lit); }
.foot-bottom { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-top: 48px; padding-top: 26px; border-top: 1px solid var(--line-soft); font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.06em; color: var(--ink-faint); }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- paquirri awakening ---------- */
.awakening { background: linear-gradient(180deg, var(--bg), #100d07); position: relative; }
.awk-stage { --el: var(--gold); margin-top: 52px; display: grid; grid-template-columns: 232px 1fr; gap: 28px; align-items: start; }

/* roster rail */
.awk-roster { display: flex; flex-direction: column; gap: 6px; max-height: 560px; overflow: auto; padding-right: 6px; }
.awk-roster::-webkit-scrollbar { width: 6px; }
.awk-roster::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }
.awk-chip {
  --el: var(--gold);
  display: flex; align-items: center; gap: 12px; text-align: left;
  padding: 8px 12px 8px 8px; border-radius: 6px; cursor: pointer;
  background: var(--bg-3); border: 1px solid var(--line-soft); color: var(--ink-dim);
  font-family: var(--serif); font-size: 15.5px; transition: border-color .16s var(--ease), background .16s var(--ease), color .16s var(--ease), transform .16s var(--ease);
}
.awk-chip:hover { border-color: color-mix(in srgb, var(--el) 55%, var(--border)); color: var(--ink); transform: translateX(2px); }
.awk-chip.on { border-color: var(--el); background: color-mix(in srgb, var(--el) 12%, var(--bg-3)); color: var(--ink); }
.awk-chip-thumb {
  width: 42px; height: 42px; flex: 0 0 auto; border-radius: 5px;
  display: grid; place-items: center;
  background: radial-gradient(circle at 50% 60%, color-mix(in srgb, var(--el) 34%, transparent), transparent 70%), #15110a;
  border: 1px solid var(--line-soft);
}
.awk-chip-thumb img { width: 88%; height: 88%; object-fit: contain; filter: drop-shadow(0 2px 2px rgba(0,0,0,0.5)); }
.awk-chip-name { font-weight: 500; letter-spacing: 0.01em; }
.awk-chip.on .awk-chip-name { color: var(--el); font-weight: 600; }

/* display */
.awk-display {
  border: 1px solid var(--line); border-radius: 12px; overflow: hidden;
  background:
    radial-gradient(120% 90% at 50% 0%, color-mix(in srgb, var(--el) 9%, transparent), transparent 60%),
    linear-gradient(180deg, var(--bg-3), var(--bg-2));
  box-shadow: 0 40px 80px -50px rgba(0,0,0,0.9);
  transition: background .4s var(--ease);
}
.awk-pods { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: end; gap: 6px; padding: 30px 26px 14px; }
.awk-pod { display: flex; flex-direction: column; align-items: center; gap: 0; }
.awk-plate {
  width: 100%; height: 240px; position: relative;
  display: flex; align-items: flex-end; justify-content: center;
}
.awk-plate::after {
  content: ""; position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  width: 78%; height: 30px; border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--el) 55%, transparent), transparent 70%);
  filter: blur(3px); opacity: 0.6;
}
.awk-fig { position: relative; z-index: 1; object-fit: contain; filter: drop-shadow(0 14px 16px rgba(0,0,0,0.55)); }
.awk-pod[data-lvl="0"] .awk-fig { max-height: 132px; max-width: 86%; }
.awk-pod[data-lvl="1"] .awk-fig { max-height: 176px; max-width: 92%; }
.awk-pod[data-lvl="2"] .awk-fig { max-height: 220px; max-width: 100%; }
.awk-podfoot { text-align: center; margin-top: 12px; display: flex; flex-direction: column; gap: 4px; }
.awk-lvl {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--el); opacity: 0.95;
}
.awk-podname { font-family: var(--display); font-weight: 700; font-size: 17px; color: var(--ink); letter-spacing: 0.01em; }
.awk-arrow {
  display: flex; flex-direction: column; align-items: center; gap: 2px; padding-bottom: 64px; color: var(--ink-mut);
}
.awk-arrow span { font-size: 20px; color: var(--el); }
.awk-arrow em { font-family: var(--mono); font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; font-style: normal; }

/* pop-in animation on switch */
@keyframes awkPop { from { opacity: 0; transform: translateY(14px) scale(0.96); } to { opacity: 1; transform: none; } }
.awk-pod.pop { animation: awkPop .5s var(--ease) both; }
.awk-fig { animation: awkFloat 5s ease-in-out infinite; }
.awk-pod[data-lvl="1"] .awk-fig { animation-delay: -1.6s; }
.awk-pod[data-lvl="2"] .awk-fig { animation-delay: -3.1s; }
@keyframes awkFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

/* meta strip */
.awk-meta { border-top: 1px solid var(--line); padding: 22px 26px 26px; background: rgba(16,13,7,0.4); }
.awk-metahead { display: flex; align-items: center; justify-content: space-between; gap: 12px 16px; flex-wrap: wrap; }
.awk-species { font-size: 26px; letter-spacing: 0.01em; flex: 1 1 auto; }
.awk-tags { display: flex; gap: 7px; flex-wrap: nowrap; flex: 0 0 auto; }
.awk-tag {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 100px; border: 1px solid var(--line); color: var(--ink-dim); background: var(--bg-2);
}
.awk-tag-el { color: var(--el); border-color: color-mix(in srgb, var(--el) 45%, transparent); background: color-mix(in srgb, var(--el) 10%, transparent); }
.awk-blurb { color: var(--ink-dim); font-size: 16.5px; margin-top: 14px; max-width: 80ch; line-height: 1.6; }
.awk-fuel { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 20px; }
.awk-fuel-lbl { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mut); margin-right: 4px; }
.awk-fueltag { font-family: var(--mono); font-size: 11.5px; color: var(--ink-dim); padding: 6px 11px; border-radius: 4px; border: 1px solid var(--line-soft); background: var(--bg-3); }

@media (max-width: 980px) {
  .awk-stage { grid-template-columns: minmax(0, 1fr); min-width: 0; }
  .awk-display { min-width: 0; }
  .awk-roster { flex-direction: row; width: 100%; max-width: 100%; max-height: none; overflow-x: auto; overflow-y: hidden; padding-bottom: 8px; }
  .awk-chip { flex: 0 0 auto; }
  .awk-chip-name { white-space: nowrap; }
}
@media (max-width: 700px) {
  .awk-pods { grid-template-columns: 1fr; gap: 4px; padding: 24px 16px 8px; }
  .awk-arrow { flex-direction: row; gap: 8px; padding: 4px 0; }
  .awk-arrow span { transform: rotate(45deg); }
  .awk-pod[data-lvl="0"] .awk-fig, .awk-pod[data-lvl="1"] .awk-fig, .awk-pod[data-lvl="2"] .awk-fig { max-height: 180px; }
  .awk-tags { flex: 1 1 100%; max-width: 100%; flex-wrap: wrap; }
}
@media (prefers-reduced-motion: reduce) { .awk-fig { animation: none; } .awk-pod.pop { animation: none; } }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .whatis-grid { grid-template-columns: 1fr; gap: 36px; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .creature-rail { grid-template-columns: repeat(3, 1fr); }
  .sandbox-grid { grid-template-columns: 1fr; gap: 44px; }
  .sandbox-menus { min-height: 360px; max-width: 360px; }
  .dev-grid { grid-template-columns: 1fr; gap: 36px; }
  .nav-right .nav-link { display: none; }
}
@media (max-width: 620px) {
  body { font-size: 17px; }
  .wrap { padding: 0 20px; }
  .nav, .nav.scrolled { padding: 12px 20px; }
  .nav-right { display: none; }
  .band { padding: 84px 0; }
  .pillars-grid { grid-template-columns: 1fr; }
  .creature-rail { grid-template-columns: repeat(2, 1fr); }
  .ctxmenu { width: min(268px, calc(100vw - 40px)); }
  .ctx-b { left: 70px; }
  .ctx-c { left: 18px; }
  .signup { flex-direction: column; }
  .hero-content { padding-top: 80px; }
  .brand .name { font-size: 15px; letter-spacing: 0.12em; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .pill .dot, .scroll-cue .line { animation: none; }
}
