/* ===========================================================
   Wasteland — unofficial fan support page
   Standalone stylesheet (does not touch ../styles/styles.css)
   =========================================================== */

:root {
  --ash:      #100e0d;
  --soot:     #1a1715;
  --soot-2:   #232019;
  --bone:     #ece5d8;
  --muted:    #9a8f83;
  --rust:     #d9622b;
  --toxic:    #a3e635;
  --line:     rgba(236, 229, 216, .12);
  --violet:   #8b5cf6;
  --sky:      #38bdf8;
  --radius:   18px;
  --maxw:     1120px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--ash);
  color: var(--bone);
  font-family: 'Rubik', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
em { font-style: normal; color: var(--toxic); }

/* ---------- disclaimer bar ---------- */
.disclaimer-bar {
  background: var(--soot-2);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: .8rem;
  text-align: center;
  padding: .7rem 1rem;
}
.disclaimer-bar a { color: var(--toxic); border-bottom: 1px solid transparent; }
.disclaimer-bar a:hover { border-color: var(--toxic); }
.dot {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--rust); margin-right: .5rem; vertical-align: middle;
}

/* ---------- nav ---------- */
.nav {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding: 1.5rem 1.5rem;
}
.wordmark {
  font-family: 'Bungee', cursive; font-size: 1.05rem;
  letter-spacing: .08em; color: var(--bone);
}
.nav-links { display: flex; gap: 1.75rem; font-size: .92rem; color: var(--muted); }
.nav-links a { border-bottom: 1px solid transparent; padding-bottom: 2px; }
.nav-links a:hover { color: var(--bone); border-color: var(--rust); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .85rem 1.6rem; border-radius: 999px;
  font-weight: 700; font-size: .95rem; letter-spacing: .01em;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.btn-sm { padding: .55rem 1.1rem; font-size: .85rem; }
.btn-primary { background: var(--toxic); color: #14200a; }
.btn-primary:hover { transform: translateY(-2px); background: #b9f14a; }
.btn-ghost { border-color: var(--line); color: var(--bone); }
.btn-ghost:hover { border-color: var(--rust); transform: translateY(-2px); }

/* ---------- hero ---------- */
.hero {
  background:
    radial-gradient(900px 480px at 78% 8%, rgba(163,230,53,.10), transparent 62%),
    radial-gradient(700px 420px at 12% 82%, rgba(217,98,43,.12), transparent 60%),
    var(--ash);
  border-bottom: 1px solid var(--line);
}
.hero-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 3rem 1.5rem 5.5rem;
  display: grid; grid-template-columns: 1.15fr .85fr;
  gap: 3rem; align-items: center;
}
.eyebrow {
  display: inline-block; font-family: 'Bungee', cursive;
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--rust); margin-bottom: 1rem;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.6vw, 4rem);
  line-height: 1.05; font-weight: 800; letter-spacing: -.02em;
  margin-bottom: 1.25rem;
}
.lede { color: var(--muted); font-size: 1.06rem; max-width: 52ch; margin-bottom: 2rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: .9rem; }
.cta-row.centered { justify-content: center; margin-top: 1.75rem; }
.microcopy { color: var(--muted); font-size: .82rem; margin-top: 1.1rem; }

.hero-art { position: relative; display: grid; place-items: center; }
.glow {
  position: absolute; width: 78%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(163,230,53,.22), transparent 68%);
  filter: blur(14px);
}
.m-hero,
.hero-shot { position: relative; width: 100%; max-width: 380px; animation: bob 6s ease-in-out infinite; }
.hero-shot {
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(0,0,0,.55);
}
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* ---------- monsters (all colour lives here, not in the markup) ----------
   Each <svg class="monster m-0x"> sets its own body/accent colour.
   Recolour the whole cast by editing these variables only.            */
.monster {
  --m-body:   var(--rust);
  --m-accent: var(--toxic);
  --m-dark:   #12100f;
  --m-light:  var(--bone);
  --m-stroke: 9;
}
.monster .body    { fill: var(--m-body); }
.monster .eye     { fill: var(--m-dark); }
.monster .glint   { fill: var(--m-light); }
.monster .bulb    { fill: var(--m-accent); }
.monster .base    { fill: var(--m-dark); opacity: .35; }
.monster .shadow  { fill: #000; opacity: .45; }
.monster .mouth,
.monster .antenna { fill: none; stroke-linecap: round; }
.monster .mouth   { stroke: var(--m-dark);   stroke-width: 8; }
.monster .antenna { stroke: var(--m-accent); stroke-width: var(--m-stroke); }

/* hero body uses a gradient — stop-color is a CSS property, so it lives here too */
.monster .body-grad { fill: url(#gooA); }
.monster .stop-a { stop-color: var(--toxic); }
.monster .stop-b { stop-color: #3f6212; }

.m-hero   { --m-accent: var(--rust); --m-stroke: 11; }
.m-hero .mouth { stroke-width: 9; }
.m-01     { --m-body: var(--rust);   --m-accent: var(--toxic); }
.m-02     { --m-body: var(--toxic);  --m-accent: var(--rust); }
.m-03     { --m-body: var(--violet); --m-accent: var(--rust); }
.m-04     { --m-body: var(--sky);    --m-accent: var(--toxic); }

/* ---------- sections ---------- */
.section { max-width: var(--maxw); margin: 0 auto; padding: 5.5rem 1.5rem; }
.band { max-width: none; background: var(--soot); border-block: 1px solid var(--line); }
.band > * { max-width: var(--maxw); margin-inline: auto; }
.section-head { margin-bottom: 3rem; }
.section-head .sub { max-width: 62ch; }
.section-head h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.6rem); font-weight: 800;
  letter-spacing: -.015em; line-height: 1.1;
}
.sub { color: var(--muted); margin-top: .85rem; }

/* ---------- creature grid ---------- */
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.card {
  background: var(--soot); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.25rem;
  transition: transform .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-6px); border-color: rgba(217,98,43,.55); }
.card-art {
  border-radius: 12px; margin-bottom: 1.1rem; padding: 1rem;
  display: grid; place-items: center;
}
/* real collection art — square crop, fills the card edge to edge */
.card { padding: .6rem; }
.art-img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover;
  border-radius: 12px; display: block;
}
.art-1 { background: color-mix(in srgb, var(--rust) 10%, transparent); }
.art-2 { background: color-mix(in srgb, var(--toxic) 10%, transparent); }
.art-3 { background: color-mix(in srgb, var(--violet) 12%, transparent); }
.art-4 { background: color-mix(in srgb, var(--sky) 10%, transparent); }
.card h3 { font-size: 1.02rem; font-weight: 700; margin-bottom: .3rem; }
.card p { color: var(--muted); font-size: .88rem; line-height: 1.5; }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; list-style: none; }
.step {
  background: var(--ash); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.9rem 1.6rem;
}
.step-num {
  font-family: 'Bungee', cursive; font-size: 1.6rem;
  color: var(--rust); display: block; margin-bottom: .9rem;
}
.step h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: .6rem; }
.step p { color: var(--muted); font-size: .93rem; margin-bottom: 1.1rem; }
.link-out {
  color: var(--toxic); font-size: .88rem; font-weight: 700;
  background: none; border: none; padding: 0; cursor: pointer;
  font-family: inherit;
}
.link-out:hover { color: #c6f76a; }

/* ---------- hero stat row ---------- */
.stat-row {
  display: flex; flex-wrap: wrap; gap: 2.25rem;
  list-style: none; margin: 0 0 2rem;
  padding: 1.25rem 0; border-block: 1px solid var(--line);
}
.stat-num {
  display: block; font-family: 'Bungee', cursive;
  font-size: 1.25rem; color: var(--toxic); line-height: 1.2;
}
.stat-label {
  display: block; font-size: .78rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: .1em; margin-top: .3rem;
}

/* ---------- forge flow ---------- */
.flow {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem; list-style: none; margin-bottom: 1.5rem;
}
.flow-step {
  position: relative; background: var(--ash);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
}
/* connecting arrow between steps */
.flow-step + .flow-step::before {
  content: "→"; position: absolute; left: -1.1rem; top: 2rem;
  color: var(--rust); font-size: 1rem; line-height: 1;
}
.flow-num {
  font-family: 'Bungee', cursive; font-size: 1.35rem;
  color: var(--rust); display: block; margin-bottom: .8rem;
}
.flow-step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .5rem; }
.flow-step p { color: var(--muted); font-size: .9rem; }
.flow-step strong { color: var(--bone); }

/* ---------- callouts ---------- */
.callout {
  display: flex; gap: 1.1rem; align-items: flex-start;
  background: var(--ash); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.3rem 1.5rem; margin-top: 1rem;
}
.callout p { color: var(--muted); font-size: .93rem; }
.callout-tag {
  flex: none; font-family: 'Bungee', cursive; font-size: .62rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--toxic); border: 1px solid var(--line);
  border-radius: 999px; padding: .4rem .8rem; margin-top: .15rem;
}
.callout-warn { border-color: rgba(217,98,43,.45); background: color-mix(in srgb, var(--rust) 7%, var(--ash)); }
.callout-warn .callout-tag { color: var(--rust); border-color: rgba(217,98,43,.5); }
.callout-warn p { color: var(--bone); }

/* ---------- mint facts ---------- */
.facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; }
.fact {
  background: var(--soot); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.4rem;
}
.fact dt {
  font-size: .72rem; text-transform: uppercase; letter-spacing: .12em;
  color: var(--muted); margin-bottom: .55rem;
}
.fact dd { font-size: 1.12rem; font-weight: 700; line-height: 1.35; }

/* ---------- personal takes ---------- */
.takes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.take {
  background: var(--ash); border: 1px solid var(--line);
  border-left: 3px solid var(--toxic);
  border-radius: 4px var(--radius) var(--radius) 4px;
  padding: 1.6rem 1.7rem;
}
.take h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .55rem; }
.take p { color: var(--muted); font-size: .95rem; }

/* ---------- whitelist ---------- */
.whitelist-card {
  border: 1px solid rgba(217,98,43,.4);
  background: linear-gradient(180deg, rgba(217,98,43,.09), transparent 70%), var(--soot);
  border-radius: 24px; padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center; max-width: 760px; margin: 0 auto;
}
.whitelist-card h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); font-weight: 800; margin-bottom: 1.25rem; }
.honest { color: var(--muted); margin-bottom: 1rem; }
.honest strong { color: var(--bone); }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--line); background: var(--soot-2); }
.footer-inner { max-width: var(--maxw); margin: 0 auto; padding: 3rem 1.5rem; text-align: center; }
.wordmark.small { font-family: 'Bungee', cursive; font-size: .95rem; margin-bottom: 1rem; }
.fine { color: var(--muted); font-size: .8rem; line-height: 1.7; max-width: 70ch; margin: 0 auto .6rem; }
.fine a { color: var(--toxic); }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; padding-bottom: 4rem; }
  .hero-art { order: -1; }
  .m-hero,
  .hero-shot { max-width: 280px; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .flow { grid-template-columns: repeat(2, 1fr); }
  .flow-step:nth-child(odd) + .flow-step::before { content: none; }
  .takes { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .section { padding: 3.75rem 1.25rem; }
  .grid { gap: 1rem; }
  .flow { grid-template-columns: 1fr; }
  .flow-step::before { content: none !important; }
  .stat-row { gap: 1.5rem; }
  .callout { flex-direction: column; gap: .8rem; }
  .cta-row .btn { width: 100%; justify-content: center; }
}
