/* ═══════════════════════════════════════════════════════════════════
   DON'T OPEN THAT EGG — Landing (pawnshop arcano, ambar + magenta)
═══════════════════════════════════════════════════════════════════ */

:root {
  --bg-base: #0e0612;
  --bg-deep: #1a0d1f;
  --surface: #261430;
  --surface-2: #2a1a2e;
  --border: #3a2542;
  --amber: #e8a050;
  --amber-bright: #ffc878;
  --amber-deep: #c47828;
  --magenta: #9b5fb8;
  --magenta-bright: #c585e8;
  --blood: #a0282a;
  --blood-bright: #d04545;
  --wood: #5a3a2a;
  --paper: #e8dccc;
  --paper-dim: #b8a890;
  --gold: #e8b65a;
}

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

html { color-scheme: dark; background: var(--bg-base); scroll-behavior: smooth; }
body {
  background: var(--bg-base);
  color: var(--paper);
  font-family: 'Georgia', 'Crimson Pro', serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }

/* ─── Effects ─── */
.vignette {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 99;
  background:
    radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.6) 100%);
}
.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 98;
  opacity: 0.07;
  background-image:
    url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence baseFrequency='0.9'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  background-size: 200px 200px;
  mix-blend-mode: overlay;
}

/* ─── Topbar ─── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 22px;
  padding: 12px 28px;
  background: linear-gradient(180deg, rgba(14,6,18,0.96), rgba(14,6,18,0.78));
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 18px rgba(0,0,0,0.6);
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'IM Fell English SC', 'Cinzel', serif;
  color: var(--amber-bright);
  text-shadow: 0 0 14px rgba(232, 160, 80, 0.4), 1px 1px 0 #000;
}
.brand-egg { font-size: 26px; filter: drop-shadow(0 0 8px var(--amber)); }
.brand-name {
  font-size: 14px;
  line-height: 1.05;
  letter-spacing: 0.06em;
}
.nav {
  display: flex; gap: 26px;
}
.nav a {
  font-family: 'IM Fell English SC', serif;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper-dim);
  transition: color 0.15s, text-shadow 0.15s;
}
.nav a:hover { color: var(--amber-bright); text-shadow: 0 0 8px rgba(232,160,80,0.4); }

.btn-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'IM Fell English SC', serif;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(180deg, var(--amber-deep), #8a4818);
  color: #1a0d1f;
  font-weight: 700;
  border: 1px solid var(--amber-bright);
  padding: 10px 20px;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.2),
    0 0 18px -6px var(--amber-bright);
  transition: transform 0.12s, box-shadow 0.18s, filter 0.15s;
}
.btn-cta:hover { transform: translateY(-1px); filter: brightness(1.15); box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 0 26px -4px var(--amber-bright); }
.btn-cta.small { font-size: 13px; padding: 8px 14px; }
.btn-cta.big { font-size: 18px; padding: 14px 26px; }
.btn-cta.huge { font-size: 22px; padding: 18px 38px; }
.btn-ghost {
  display: inline-flex; align-items: center;
  font-family: 'IM Fell English SC', serif;
  font-size: 18px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  color: var(--amber-bright);
  border: 1px solid var(--amber-deep);
  padding: 14px 26px;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
}
.btn-ghost:hover { color: #fff; border-color: var(--amber-bright); }
.btn-ghost.big { font-size: 18px; }

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  padding: 60px 8vw;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(1.15) contrast(1.05);
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(232,160,80,0.25), transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(155,95,184,0.3), transparent 50%),
    linear-gradient(180deg, rgba(14,6,18,0.4) 0%, rgba(14,6,18,0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero-stamp {
  display: inline-block;
  font-family: 'IM Fell English SC', serif;
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--amber-bright);
  background: rgba(0,0,0,0.5);
  border: 1px solid var(--amber-deep);
  padding: 5px 14px;
  margin-bottom: 26px;
  text-transform: uppercase;
  transform: rotate(-1deg);
  box-shadow: 0 0 12px -4px var(--amber);
}
.hero-h1 {
  font-family: 'Cinzel', serif;
  font-weight: 900;
  font-size: clamp(60px, 9vw, 128px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--paper);
  text-shadow:
    0 2px 0 #000,
    0 0 22px rgba(232, 160, 80, 0.35),
    0 0 4px rgba(0,0,0,0.7);
  margin-bottom: 28px;
}
.hero-quote {
  font-family: 'IM Fell English SC', serif;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.3;
  color: var(--paper);
  margin-bottom: 18px;
  font-style: normal;
  max-width: 600px;
}
.hero-quote em {
  font-style: italic;
  color: var(--blood-bright);
  text-shadow: 0 0 8px rgba(208, 69, 69, 0.4);
}
.amber { color: var(--amber-bright); text-shadow: 0 0 8px rgba(255, 200, 120, 0.5); }
.hero-tagline {
  font-size: 16px;
  color: var(--paper-dim);
  margin-bottom: 30px;
  max-width: 580px;
  line-height: 1.55;
}
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-bottom: 24px;
}
.hero-meta { display: flex; flex-wrap: wrap; gap: 10px; }
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: 'IM Fell English SC', serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper-dim);
  background: rgba(0,0,0,0.5);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 2px;
}
.badge-led {
  width: 8px; height: 8px; border-radius: 50%;
  box-shadow: 0 0 6px currentColor;
}
.badge-led.amber { background: var(--amber-bright); color: var(--amber-bright); }
.badge-led.purple { background: var(--magenta-bright); color: var(--magenta-bright); }
.badge-led.red { background: var(--blood-bright); color: var(--blood-bright); }

/* ═══════════ SECTION TITLE ═══════════ */
.section-title {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  text-align: center;
  margin-bottom: 38px;
  color: var(--paper);
  text-shadow: 0 2px 0 #000;
}

/* ═══════════ PITCH ═══════════ */
.pitch {
  padding: 80px 6vw;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(232,160,80,0.07), transparent 60%),
    var(--bg-base);
  position: relative;
}
.pitch-header { text-align: center; margin-bottom: 44px; }
.pitch-header h2 {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.0;
}
.pitch-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1180px;
  margin: 0 auto;
}
.pitch-card {
  position: relative;
  padding: 36px 32px;
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(38, 20, 48, 0.9), rgba(14, 6, 18, 0.95));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 14px 40px -16px rgba(0, 0, 0, 0.8);
}
.pitch-card.pitch-day {
  border-color: color-mix(in oklab, var(--amber) 50%, var(--border));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 0 30px -8px rgba(232, 160, 80, 0.35),
    0 14px 40px -16px rgba(0, 0, 0, 0.8);
}
.pitch-card.pitch-night {
  border-color: color-mix(in oklab, var(--magenta) 50%, var(--border));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 0 30px -8px rgba(155, 95, 184, 0.35),
    0 14px 40px -16px rgba(0, 0, 0, 0.8);
}
.pitch-stamp {
  font-family: 'IM Fell English SC', serif;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper-dim);
  margin-bottom: 14px;
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--border);
}
.pitch-day .pitch-stamp { color: var(--amber-bright); border-color: var(--amber-deep); }
.pitch-night .pitch-stamp { color: var(--magenta-bright); border-color: var(--magenta); }

.pitch-card h3 {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: 26px;
  line-height: 1.15;
  margin-bottom: 14px;
  color: var(--paper);
}
.pitch-card p {
  font-size: 15px;
  color: var(--paper);
  margin-bottom: 18px;
  line-height: 1.6;
}
.pitch-card p strong {
  color: var(--amber-bright);
  font-weight: 400;
  font-style: italic;
}
.pitch-night strong { color: var(--magenta-bright); }
.pitch-list {
  list-style: none;
  padding: 12px 0 0;
  border-top: 1px dashed rgba(255,255,255,0.08);
}
.pitch-list li {
  position: relative;
  padding: 6px 0 6px 22px;
  font-family: 'IM Fell English SC', serif;
  font-size: 15px;
  color: var(--paper);
  letter-spacing: 0.02em;
}
.pitch-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--amber-bright);
}
.pitch-night .pitch-list li::before { color: var(--magenta-bright); }

/* ═══════════ LOOP ═══════════ */
.loop-sec {
  padding: 80px 6vw;
  background:
    linear-gradient(180deg, var(--bg-base), var(--bg-deep) 50%, var(--bg-base));
}
.loop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}
.loop-step {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 18px;
  background: linear-gradient(180deg, rgba(38, 20, 48, 0.7), rgba(14, 6, 18, 0.7));
  border: 1px solid var(--border);
  position: relative;
}
.loop-step.ending {
  border-color: var(--blood);
  background:
    linear-gradient(180deg, rgba(160, 40, 42, 0.15), rgba(14, 6, 18, 0.9));
  grid-column: span 2;
}
.loop-n {
  font-family: 'Cinzel', serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--amber-bright);
  line-height: 1;
  text-shadow: 0 0 12px rgba(232, 160, 80, 0.4), 1px 1px 0 #000;
  flex-shrink: 0;
}
.loop-step.ending .loop-n { color: var(--blood-bright); text-shadow: 0 0 12px rgba(208, 69, 69, 0.4); }
.loop-step h4 {
  font-family: 'IM Fell English SC', serif;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--paper);
  line-height: 1.3;
  text-transform: uppercase;
  padding-top: 4px;
}

/* ═══════════ SYSTEMS ═══════════ */
.systems {
  padding: 80px 6vw;
  background: var(--bg-base);
}
.systems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}
.sys-card {
  padding: 26px 22px;
  background: linear-gradient(180deg, rgba(38, 20, 48, 0.9), rgba(14, 6, 18, 0.9));
  border: 1px solid var(--border);
  position: relative;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.sys-card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in oklab, var(--amber) 50%, var(--border));
  box-shadow: 0 8px 22px -8px var(--amber-deep), inset 0 1px 0 rgba(255,255,255,0.04);
}
.sys-num {
  font-family: 'Cinzel', serif;
  font-weight: 900;
  font-size: 44px;
  line-height: 1;
  color: var(--amber-bright);
  text-shadow: 0 0 14px rgba(232,160,80,0.45), 2px 2px 0 #000;
  margin-bottom: 8px;
}
.sys-card h3 {
  font-family: 'IM Fell English SC', serif;
  font-size: 18px;
  letter-spacing: 0.06em;
  color: var(--paper);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.sys-card p {
  font-size: 13.5px;
  color: var(--paper-dim);
  line-height: 1.5;
}

/* ═══════════ CREATURES ═══════════ */
.creatures {
  padding: 80px 6vw;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(155, 95, 184, 0.08), transparent 60%),
    var(--bg-base);
}
.creatures-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}
.creature-card {
  background: linear-gradient(180deg, rgba(38, 20, 48, 0.9), rgba(14, 6, 18, 0.9));
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}
.creature-card:hover {
  transform: translateY(-4px);
  border-color: var(--blood);
}
.creature-img {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  filter: brightness(0.85) contrast(1.05) saturate(1.15);
  border-bottom: 1px solid var(--border);
}
.creature-info { padding: 18px 20px; }
.creature-tag {
  display: inline-block;
  font-family: 'IM Fell English SC', serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blood-bright);
  border: 1px solid var(--blood);
  padding: 2px 8px;
  margin-bottom: 8px;
  background: rgba(160, 40, 42, 0.1);
}
.creature-card h3 {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 6px;
  color: var(--paper);
}
.creature-card p {
  font-family: 'IM Fell English SC', serif;
  font-size: 14px;
  color: var(--paper-dim);
  font-style: italic;
  line-height: 1.45;
}

/* ═══════════ INFLUENCES ═══════════ */
.influences {
  padding: 80px 6vw;
  background: var(--bg-deep);
}
.influences-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto 22px;
}
.inf {
  padding: 18px 16px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(38, 20, 48, 0.7), transparent);
  transition: border-color 0.18s;
}
.inf:hover { border-color: var(--amber-deep); }
.inf h4 {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--amber-bright);
  margin-bottom: 4px;
}
.inf p {
  font-family: 'IM Fell English SC', serif;
  font-size: 13px;
  color: var(--paper-dim);
  font-style: italic;
  line-height: 1.4;
}
.influences-note {
  text-align: center;
  font-family: 'IM Fell English SC', serif;
  font-size: 14px;
  color: var(--paper-dim);
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
  padding: 12px;
  border-top: 1px dashed rgba(255,255,255,0.08);
}

/* ═══════════ STATUS ═══════════ */
.status-sec {
  padding: 80px 6vw;
  background: var(--bg-base);
}
.status-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 44px 38px;
  background: linear-gradient(180deg, rgba(38, 20, 48, 0.9), rgba(14, 6, 18, 0.95));
  border: 1px solid color-mix(in oklab, var(--amber) 35%, var(--border));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 0 36px -10px var(--amber-deep);
  text-align: center;
}
.status-stamp {
  display: inline-block;
  font-family: 'IM Fell English SC', serif;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--amber-bright);
  background: rgba(0,0,0,0.5);
  border: 1px solid var(--amber-deep);
  padding: 4px 14px;
  margin-bottom: 18px;
  transform: rotate(-1deg);
}
.status-card h2 {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  margin-bottom: 18px;
}
.status-lead {
  font-size: 15.5px;
  color: var(--paper);
  margin-bottom: 28px;
  line-height: 1.6;
}
.status-lead strong { color: var(--amber-bright); font-style: italic; font-weight: 400; }

.timeline {
  text-align: left;
  margin: 28px 0 28px;
  position: relative;
  padding-left: 24px;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 8px; bottom: 8px; left: 7px;
  width: 1px;
  background: linear-gradient(180deg, var(--amber-bright), var(--amber-deep), var(--border));
}
.tl-item {
  display: flex; gap: 18px;
  padding: 8px 0;
  position: relative;
}
.tl-dot {
  position: absolute;
  left: -17px; top: 14px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--bg-base);
  border: 2px solid var(--border);
}
.tl-item.done .tl-dot { background: var(--amber-bright); border-color: var(--amber); box-shadow: 0 0 12px var(--amber); }
.tl-item.current .tl-dot { background: var(--amber); border-color: var(--amber-bright); animation: tlPulse 2s infinite; }
@keyframes tlPulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--amber-bright); }
  50% { box-shadow: 0 0 0 8px transparent; }
}
.tl-body { flex: 1; }
.tl-body h4 {
  font-family: 'IM Fell English SC', serif;
  font-size: 16px;
  letter-spacing: 0.06em;
  color: var(--paper);
  margin-bottom: 4px;
  text-transform: uppercase;
}
.tl-item.done h4 { color: var(--amber-bright); }
.tl-item.current h4 { color: var(--amber-bright); text-shadow: 0 0 8px rgba(232,160,80,0.4); }
.tl-body p { font-size: 13.5px; color: var(--paper-dim); line-height: 1.5; }

.status-cta {
  font-family: 'IM Fell English SC', serif;
  font-size: 15px;
  color: var(--paper);
  margin-bottom: 14px;
  font-style: italic;
}
.waitlist-form {
  display: flex; gap: 8px; flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 14px;
}
.waitlist-form input {
  flex: 1; max-width: 320px;
  padding: 12px 16px;
  background: rgba(0,0,0,0.5);
  border: 1px solid var(--border);
  color: var(--paper);
  font-family: 'IM Fell English SC', serif;
  font-size: 15px;
  letter-spacing: 0.04em;
}
.waitlist-form input:focus {
  outline: none;
  border-color: var(--amber-bright);
  box-shadow: 0 0 12px -4px var(--amber);
}
.status-foot {
  font-family: 'IM Fell English SC', serif;
  font-size: 13px;
  color: var(--paper-dim);
}
.status-foot a {
  color: var(--amber-bright);
  border-bottom: 1px dashed var(--amber-deep);
}

/* ═══════════ CTA FINAL ═══════════ */
.cta-final-sec {
  padding: 100px 6vw;
  background:
    radial-gradient(ellipse at center, rgba(160, 40, 42, 0.18), transparent 65%),
    var(--bg-base);
  text-align: center;
}
.cta-final-card { max-width: 700px; margin: 0 auto; }
.cta-final-card h2 {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.1;
  margin-bottom: 18px;
  color: var(--paper);
  text-shadow: 0 2px 0 #000;
}
.cta-final-card p {
  font-family: 'IM Fell English SC', serif;
  font-size: 18px;
  color: var(--paper-dim);
  font-style: italic;
  margin-bottom: 30px;
}

/* ═══════════ FOOTER ═══════════ */
.footer {
  padding: 24px 0;
  background: #06030a;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-brand {
  font-family: 'IM Fell English SC', serif;
  font-size: 16px;
  letter-spacing: 0.12em;
  color: var(--amber-bright);
}
.footer-meta {
  font-family: 'IM Fell English SC', serif;
  font-size: 13px;
  color: var(--paper-dim);
  letter-spacing: 0.04em;
}
.footer-meta a { color: var(--amber-bright); border-bottom: 1px dashed var(--amber-deep); }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 900px) {
  .topbar { padding: 10px 16px; }
  .nav { display: none; }
  .hero { padding: 50px 6vw; }
  .pitch-grid { grid-template-columns: 1fr; }
  .loop-step.ending { grid-column: auto; }
  .footer-inner { flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .tl-item.current .tl-dot { animation: none; }
}
