/* ============================================================
   TWO WOLVES — $WOLVES
   Duality theme: storm-blue (black wolf) × moon-gold (white wolf)
   ============================================================ */

:root {
  --bg: #05070d;
  --bg-soft: #0a0e18;
  --ink: #eef1f8;
  --muted: #97a0b5;
  --blue: #4f8dff;
  --blue-deep: #1b3f8f;
  --gold: #e8b95c;
  --gold-soft: #f5dfae;
  --line: rgba(255, 255, 255, 0.08);
  --card: rgba(255, 255, 255, 0.03);
  --font-display: "Cinzel", serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gold); color: #14100a; }

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

/* ---------- utility text ---------- */
.grad {
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.grad--gold { background-image: linear-gradient(105deg, #f7e3b0, #e8b95c 45%, #b57e24); }
.grad--duo  { background-image: linear-gradient(100deg, #6ea2ff 0%, #cfe0ff 38%, #f5dfae 62%, #e8b95c 100%); }
.txt-blue { color: var(--blue); }
.txt-gold { color: var(--gold); }

/* ============ LOADER ============ */
.loader {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
.loader.done { opacity: 0; visibility: hidden; }
.loader__logo {
  width: 96px; height: 96px; border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px rgba(232, 185, 92, 0.4), 0 0 60px rgba(232, 185, 92, 0.25);
  animation: loaderPulse 1.4s ease-in-out infinite;
}
.loader__text {
  font-family: var(--font-display); font-weight: 700; letter-spacing: 0.5em;
  font-size: 0.8rem; color: var(--gold-soft); padding-left: 0.5em;
  animation: loaderFade 1.4s ease-in-out infinite;
}
@keyframes loaderPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 2px rgba(232,185,92,.4), 0 0 40px rgba(232,185,92,.2); }
  50% { transform: scale(1.06); box-shadow: 0 0 0 2px rgba(232,185,92,.7), 0 0 90px rgba(232,185,92,.45); }
}
@keyframes loaderFade { 0%, 100% { opacity: .5; } 50% { opacity: 1; } }

/* ============ STARFIELD CANVAS ============ */
#stars {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
}

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 14px 0;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}
.nav.scrolled {
  background: rgba(5, 7, 13, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
  padding: 8px 0;
}
.nav__inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__brand img {
  width: 42px; height: 42px; border-radius: 50%; object-fit: cover;
  box-shadow: 0 0 0 1.5px rgba(232, 185, 92, 0.5);
  transition: transform 0.5s var(--ease-out);
}
.nav__brand:hover img { transform: rotate(-12deg) scale(1.08); }
.nav__brand span {
  font-family: var(--font-display); font-weight: 900; letter-spacing: 0.08em; font-size: 1.05rem;
}
.nav__brand em { font-style: normal; color: var(--gold); }
.nav__links { display: flex; gap: 28px; }
.nav__links a {
  font-size: 0.86rem; font-weight: 600; color: var(--muted);
  position: relative; transition: color 0.3s ease;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -5px; height: 2px; width: 0;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  transition: width 0.35s var(--ease-out);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { display: flex; gap: 10px; }

.nav__burger { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
.nav__burger span { width: 24px; height: 2px; background: var(--ink); transition: 0.3s; display: block; }
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(5, 7, 13, 0.96);
  backdrop-filter: blur(18px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 30px;
  opacity: 0; visibility: hidden; transition: 0.4s ease;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--ink);
  transition: color .3s;
}
.mobile-menu a:hover { color: var(--gold); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body); font-weight: 800; letter-spacing: 0.02em;
  border-radius: 999px; cursor: pointer; border: 1.5px solid transparent;
  position: relative; overflow: hidden;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease, background 0.35s ease, color 0.3s ease;
}
.btn--sm { padding: 9px 18px; font-size: 0.82rem; }
.btn--lg { padding: 15px 32px; font-size: 0.98rem; }
.btn--gold {
  background: linear-gradient(115deg, #f2d492, #e8b95c 55%, #c98f2e);
  color: #17110a;
  box-shadow: 0 6px 26px rgba(232, 185, 92, 0.28);
}
.btn--gold:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 40px rgba(232, 185, 92, 0.45); }
.btn--blue {
  background: rgba(79, 141, 255, 0.1);
  border-color: rgba(79, 141, 255, 0.45);
  color: #cfe0ff;
}
.btn--blue:hover { transform: translateY(-3px); background: rgba(79, 141, 255, 0.2); box-shadow: 0 10px 34px rgba(79, 141, 255, 0.3); }
.btn--ghost { border-color: var(--line); color: var(--muted); }
.btn--ghost:hover { color: var(--ink); border-color: rgba(255,255,255,.25); }

/* shine sweep on gold buttons */
.btn--gold::after {
  content: ""; position: absolute; top: 0; left: -80%; width: 50%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-20deg);
  animation: btnShine 3.4s ease-in-out infinite;
}
@keyframes btnShine {
  0%, 55% { left: -80%; }
  85%, 100% { left: 130%; }
}

/* ============ HERO ============ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
  z-index: 1;
}
.hero__bg { position: absolute; inset: -12% 0; z-index: -3; }
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
  animation: heroZoom 22s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.09); } }

.hero__moonglow {
  position: absolute; z-index: -2; left: 50%; top: 38%;
  width: 900px; height: 900px; transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(245, 223, 174, 0.16) 0%, rgba(245, 223, 174, 0.05) 35%, transparent 65%);
  animation: moonBreathe 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes moonBreathe {
  0%, 100% { opacity: 0.75; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.07); }
}
.hero__vignette {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(5,7,13,0.55) 0%, rgba(5,7,13,0.25) 35%, rgba(5,7,13,0.55) 70%, var(--bg) 100%),
    radial-gradient(ellipse at center, transparent 30%, rgba(5,7,13,0.55) 100%);
}

.hero__content { padding: 120px 24px 80px; max-width: 900px; }

.hero__eyebrow {
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.32em; color: var(--gold-soft);
  text-shadow: 0 0 18px rgba(232,185,92,.5);
  margin-bottom: 22px;
}

.hero__title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(3.4rem, 11vw, 8.2rem);
  line-height: 0.98; letter-spacing: 0.02em;
  margin-bottom: 26px;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .word {
  display: inline-block;
  transform: translateY(110%);
  animation: riseUp 1s var(--ease-out) forwards;
}
.hero__title .line:nth-child(2) .word { animation-delay: 0.15s; }
.word--blue {
  background-image: linear-gradient(180deg, #dfe9ff, #6ea2ff 70%, #35549e);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 26px rgba(79, 141, 255, 0.35));
}
.word--gold {
  background-image: linear-gradient(180deg, #fbeecd, #e8b95c 65%, #a5731f);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 30px rgba(232, 185, 92, 0.4));
}
@keyframes riseUp { to { transform: translateY(0); } }

.hero__tag { font-size: clamp(1rem, 2.2vw, 1.25rem); color: #cdd5e6; margin-bottom: 36px; }
.hero__tag b { color: var(--ink); }

.hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 34px; }

.hero__ca {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(10, 14, 24, 0.7); border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  border-radius: 14px; padding: 12px 16px;
  font-size: 0.85rem;
}
.hero__ca-label {
  font-weight: 800; font-size: 0.72rem; letter-spacing: 0.18em;
  color: var(--gold); border: 1px solid rgba(232,185,92,.4);
  border-radius: 6px; padding: 2px 8px;
}
.hero__ca code { color: var(--muted); font-family: ui-monospace, monospace; }
.hero__ca-copy {
  background: none; border: 0; color: var(--muted); cursor: pointer;
  display: grid; place-items: center; padding: 4px;
  transition: color 0.25s, transform 0.25s;
}
.hero__ca-copy:hover { color: var(--gold); transform: scale(1.15); }

.hero__scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,0.3); border-radius: 14px;
}
.hero__scroll span {
  position: absolute; left: 50%; top: 7px; width: 4px; height: 8px;
  background: var(--gold); border-radius: 4px; transform: translateX(-50%);
  animation: scrollHint 1.8s ease-in-out infinite;
}
@keyframes scrollHint {
  0% { opacity: 0; top: 6px; }
  35% { opacity: 1; }
  100% { opacity: 0; top: 22px; }
}

/* ============ MARQUEE ============ */
.marquee {
  position: relative; z-index: 2;
  overflow: hidden; white-space: nowrap;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: rgba(10, 14, 24, 0.65);
  backdrop-filter: blur(8px);
  padding: 14px 0;
}
.marquee__track {
  display: inline-flex; align-items: center; gap: 34px;
  animation: marquee 26s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span {
  font-family: var(--font-display); font-weight: 700; letter-spacing: 0.22em;
  font-size: 0.85rem; color: var(--gold-soft);
}
.marquee__track i { color: var(--blue); font-style: normal; font-size: 0.7rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============ SECTIONS ============ */
.section { position: relative; z-index: 1; padding: 110px 0; }
.section__inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section__eyebrow {
  text-align: center; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.34em;
  color: var(--blue); margin-bottom: 14px;
}
.section__title {
  text-align: center;
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: 0.02em; margin-bottom: 54px;
}

/* scroll reveal */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.reveal.in { opacity: 1; transform: none; }

/* ============ PARABLE ============ */
.parable {
  background:
    radial-gradient(ellipse 60% 50% at 20% 10%, rgba(79, 141, 255, 0.07), transparent),
    radial-gradient(ellipse 60% 50% at 80% 90%, rgba(232, 185, 92, 0.07), transparent);
}
.parable__story { max-width: 780px; margin: 0 auto; text-align: center; }
.parable__quote {
  font-size: clamp(1.15rem, 2.5vw, 1.5rem); line-height: 1.75; color: #d6dcea;
  font-weight: 500;
}
.parable__quote .q-mark {
  font-family: var(--font-display); color: var(--gold); font-size: 1.6em; line-height: 0;
  vertical-align: -0.15em;
}
.parable__punch { margin: 34px 0; font-size: clamp(1.2rem, 3vw, 1.7rem); }
.parable__punch em { display: block; color: var(--muted); font-size: 0.75em; margin-bottom: 8px; }
.parable__punch strong { font-family: var(--font-display); font-weight: 900; letter-spacing: 0.04em; font-size: 1.25em; }
.parable__body { color: var(--muted); font-size: 1.02rem; max-width: 640px; margin: 0 auto; }

/* ============ WOLVES ============ */
.wolves__grid {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 26px; align-items: stretch;
}
.wolf-card {
  position: relative; border-radius: 22px; padding: 38px 32px;
  border: 1px solid var(--line);
  background: var(--card);
  overflow: hidden;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s ease, border-color 0.5s ease;
  will-change: transform;
}
.wolf-card__glow {
  position: absolute; inset: 0; opacity: 0; transition: opacity 0.6s ease; pointer-events: none;
}
.wolf-card--dark .wolf-card__glow {
  background: radial-gradient(ellipse at 30% 0%, rgba(79, 141, 255, 0.22), transparent 60%);
}
.wolf-card--light .wolf-card__glow {
  background: radial-gradient(ellipse at 70% 0%, rgba(232, 185, 92, 0.22), transparent 60%);
}
.wolf-card:hover .wolf-card__glow { opacity: 1; }
.wolf-card--dark:hover { border-color: rgba(79, 141, 255, 0.5); box-shadow: 0 24px 70px rgba(27, 63, 143, 0.35); }
.wolf-card--light:hover { border-color: rgba(232, 185, 92, 0.5); box-shadow: 0 24px 70px rgba(150, 108, 32, 0.3); }
.wolf-card__badge { font-size: 2rem; margin-bottom: 14px; }
.wolf-card h3 { font-family: var(--font-display); font-size: 1.55rem; font-weight: 700; margin-bottom: 4px; }
.wolf-card--dark h3 { color: #cfe0ff; }
.wolf-card--light h3 { color: var(--gold-soft); }
.wolf-card__sub { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.3em; color: var(--muted); margin-bottom: 18px; }
.wolf-card > p:not(.wolf-card__sub) { color: #b7bfd2; font-size: 0.96rem; margin-bottom: 20px; }
.wolf-card ul li {
  padding: 8px 0 8px 26px; position: relative; color: var(--muted); font-size: 0.92rem;
  border-top: 1px solid var(--line);
}
.wolf-card ul li::before {
  content: "◆"; position: absolute; left: 4px; font-size: 0.6rem; top: 12px;
}
.wolf-card--dark ul li::before { color: var(--blue); }
.wolf-card--light ul li::before { color: var(--gold); }

.wolves__moon {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
}
.moon {
  width: 130px; height: 130px; border-radius: 50%; overflow: hidden;
  border: 2px solid rgba(245, 223, 174, 0.5);
  box-shadow: 0 0 50px rgba(245, 223, 174, 0.3), inset 0 0 30px rgba(0,0,0,0.4);
  animation: moonFloat 5s ease-in-out infinite;
}
.moon img { width: 100%; height: 100%; object-fit: cover; }
@keyframes moonFloat {
  0%, 100% { transform: translateY(0); box-shadow: 0 0 40px rgba(245,223,174,.25), inset 0 0 30px rgba(0,0,0,.4); }
  50% { transform: translateY(-14px); box-shadow: 0 0 80px rgba(245,223,174,.5), inset 0 0 30px rgba(0,0,0,.4); }
}
.wolves__vs { font-family: var(--font-display); font-size: 1.6rem; color: var(--muted); }

/* ============ TOKENOMICS ============ */
.tokenomics {
  background:
    radial-gradient(ellipse 50% 60% at 50% 0%, rgba(232, 185, 92, 0.06), transparent);
}
.tokenomics__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 44px;
}
.stat {
  border: 1px solid var(--line); border-radius: 20px; background: var(--card);
  padding: 34px 22px; text-align: center;
  transition: transform 0.5s var(--ease-out), border-color 0.4s, box-shadow 0.5s;
  will-change: transform;
}
.stat:hover { border-color: rgba(232,185,92,.45); box-shadow: 0 18px 55px rgba(150,108,32,.22); }
.stat__num {
  display: block; font-family: var(--font-display); font-weight: 900;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem); margin-bottom: 8px;
  background-image: linear-gradient(105deg, #f7e3b0, #e8b95c 50%, #cfe0ff);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stat__label { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; color: var(--muted); text-transform: uppercase; }
.tokenomics__note { text-align: center; max-width: 640px; margin: 0 auto; color: var(--muted); }
.tokenomics__note a { color: var(--gold); border-bottom: 1px dotted rgba(232,185,92,.5); transition: color .3s; }
.tokenomics__note a:hover { color: var(--gold-soft); }

/* ============ HOW TO BUY ============ */
.howto__steps {
  list-style: none; counter-reset: step;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.step {
  position: relative; border: 1px solid var(--line); border-radius: 20px;
  background: var(--card); padding: 34px 26px;
  transition: transform 0.5s var(--ease-out), border-color 0.4s, box-shadow 0.5s;
  will-change: transform;
}
.step:hover { border-color: rgba(79, 141, 255, 0.45); box-shadow: 0 18px 55px rgba(27, 63, 143, 0.25); }
.step__num {
  font-family: var(--font-display); font-weight: 900; font-size: 2.6rem; line-height: 1;
  background-image: linear-gradient(180deg, rgba(110,162,255,.9), rgba(110,162,255,.15));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  display: block; margin-bottom: 16px;
}
.step:nth-child(even) .step__num {
  background-image: linear-gradient(180deg, rgba(232,185,92,.95), rgba(232,185,92,.15));
}
.step h3 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 10px; }
.step p { font-size: 0.92rem; color: var(--muted); }
.step p b { color: var(--ink); }
.howto__cta { text-align: center; margin-top: 46px; }

/* ============ ROADMAP ============ */
.roadmap {
  background:
    radial-gradient(ellipse 50% 60% at 50% 100%, rgba(79, 141, 255, 0.06), transparent);
}
.roadmap__line {
  position: relative;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.roadmap__line::before {
  content: ""; position: absolute; top: 7px; left: 6%; right: 6%; height: 2px;
  background: linear-gradient(90deg, var(--blue-deep), var(--blue), var(--gold-soft), var(--gold));
  opacity: 0.55;
}
.phase { position: relative; padding-top: 38px; }
.phase__dot {
  position: absolute; top: 0; left: 0;
  width: 16px; height: 16px; border-radius: 50%;
}
.phase__dot--blue { background: var(--blue); box-shadow: 0 0 18px var(--blue); animation: dotPulse 2.4s infinite; }
.phase__dot--moon { background: #cfe0ff; box-shadow: 0 0 18px #cfe0ff; animation: dotPulse 2.4s 0.8s infinite; }
.phase__dot--gold { background: var(--gold); box-shadow: 0 0 18px var(--gold); animation: dotPulse 2.4s 1.6s infinite; }
@keyframes dotPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.35); }
}
.phase__tag { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.3em; color: var(--muted); }
.phase h3 { font-family: var(--font-display); font-size: 1.35rem; margin: 10px 0 16px; }
.phase ul li {
  padding: 9px 0 9px 24px; position: relative; color: var(--muted); font-size: 0.93rem;
  border-top: 1px solid var(--line);
}
.phase ul li::before { content: "🐾"; position: absolute; left: 0; top: 9px; font-size: 0.7rem; }

/* ============ JOIN / FOOTER ============ */
.join { overflow: hidden; text-align: center; }
.join__bg { position: absolute; inset: -15% 0; z-index: -2; }
.join__bg img { width: 100%; height: 100%; object-fit: cover; }
.join__overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(5,7,13,0.72) 40%, rgba(5,7,13,0.72) 60%, var(--bg) 100%);
}
.join__inner p { color: #cdd5e6; margin-bottom: 34px; font-size: 1.05rem; }
.join__logo {
  width: 110px; height: 110px; border-radius: 50%; object-fit: cover; margin: 0 auto 26px;
  border: 2px solid rgba(245, 223, 174, 0.55);
  box-shadow: 0 0 60px rgba(245, 223, 174, 0.35);
  animation: moonFloat 5s ease-in-out infinite;
}
.join .section__title { margin-bottom: 18px; }

.footer { border-top: 1px solid var(--line); background: #04060b; position: relative; z-index: 1; }
.footer__inner { max-width: 1200px; margin: 0 auto; padding: 44px 24px; text-align: center; }
.footer__brand {
  display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 18px;
}
.footer__brand img { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; }
.footer__brand span { font-family: var(--font-display); font-weight: 700; letter-spacing: 0.08em; font-size: 0.95rem; }
.footer__brand em { font-style: normal; color: var(--gold); }
.footer__links { display: flex; justify-content: center; gap: 26px; margin-bottom: 22px; }
.footer__links a { font-size: 0.85rem; font-weight: 600; color: var(--muted); transition: color 0.3s; }
.footer__links a:hover { color: var(--gold); }
.footer__disclaimer { font-size: 0.75rem; color: #5b6478; max-width: 720px; margin: 0 auto; line-height: 1.7; }

/* ============ TOAST ============ */
.toast {
  position: fixed; bottom: 30px; left: 50%; transform: translate(-50%, 80px);
  background: rgba(10, 14, 24, 0.95); border: 1px solid rgba(232,185,92,.45);
  color: var(--gold-soft); font-weight: 700; font-size: 0.9rem;
  padding: 13px 26px; border-radius: 999px; z-index: 999;
  opacity: 0; transition: 0.45s var(--ease-out); pointer-events: none;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1020px) {
  .tokenomics__grid, .howto__steps { grid-template-columns: repeat(2, 1fr); }
  .wolves__grid { grid-template-columns: 1fr; }
  .wolves__moon { flex-direction: row; order: -1; }
  .moon { width: 90px; height: 90px; }
}
@media (max-width: 780px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .roadmap__line { grid-template-columns: 1fr; gap: 40px; }
  .roadmap__line::before { top: 0; bottom: 0; left: 7px; right: auto; width: 2px; height: auto;
    background: linear-gradient(180deg, var(--blue-deep), var(--blue), var(--gold-soft), var(--gold)); }
  .phase { padding-top: 0; padding-left: 36px; }
  .section { padding: 80px 0; }
}
@media (max-width: 540px) {
  .tokenomics__grid, .howto__steps { grid-template-columns: 1fr; }
  .hero__ca { max-width: 92vw; }
  .hero__ca code { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 48vw; }
}

/* reduced motion */
@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; }
  .reveal { opacity: 1; transform: none; }
}
