/* =========================================================
   COPPER WOLF — Premium Meme Token Landing
   Copper Metal × Acid Lime × Black × Industrial Future
   ========================================================= */

:root {
  --bg: #050704;
  --bg-2: #0A0D08;
  --bg-3: #141814;
  --bg-4: #1a1f1a;
  --copper: #B95D28;
  --copper-mid: #D97732;
  --copper-hot: #F08A3C;
  --bronze: #C47A3A;
  --lime: #C7FF00;
  --lime-hot: #9EFF00;
  --lime-soft: #E6FF57;
  --amber: #E8A84A;
  --text: #F2F0E8;
  --text-dim: #9A9E92;
  --text-mute: #5C6158;
  --border: rgba(185, 93, 40, 0.35);
  --border-lime: rgba(199, 255, 0, 0.35);
  --glass: rgba(10, 13, 8, 0.72);
  --font-display: "Arial Narrow", "Roboto Condensed", Impact, "Helvetica Neue", Arial, sans-serif;
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --nav-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}

::selection {
  background: rgba(199, 255, 0, 0.25);
  color: var(--text);
}

/* ---------- UTILITIES ---------- */
.text-lime { color: var(--lime); }
.text-copper { color: var(--copper-hot); }

.label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lime);
}

.label--muted { color: var(--text-mute); }

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px var(--lime);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}

/* ---------- GLOBAL FX ---------- */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
  mix-blend-mode: overlay;
}

.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 8999;
  opacity: 0.03;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 2px,
    rgba(0, 0, 0, 0.4) 2px,
    rgba(0, 0, 0, 0.4) 4px
  );
}

.pointer-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, rgba(199, 255, 0, 0.07) 0%, rgba(185, 93, 40, 0.04) 40%, transparent 70%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  will-change: transform;
}

.pointer-glow.is-active { opacity: 1; }

/* ---------- BUTTONS ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.7rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
  isolation: isolate;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.28) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.55s var(--ease);
  z-index: -1;
}

.btn:hover::before { transform: translateX(120%); }

.btn:active { transform: scale(0.97); }

.btn__arrow {
  transition: transform 0.25s var(--ease);
}

.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--copper {
  background: linear-gradient(135deg, #8a3f16 0%, var(--copper) 40%, var(--copper-hot) 100%);
  color: #120a04;
  border-color: rgba(240, 138, 60, 0.55);
  box-shadow:
    0 0 0 1px rgba(185, 93, 40, 0.3),
    0 8px 28px rgba(185, 93, 40, 0.28),
    inset 0 1px 0 rgba(255, 220, 160, 0.35);
}

.btn--copper:hover {
  box-shadow:
    0 0 24px rgba(199, 255, 0, 0.25),
    0 0 48px rgba(185, 93, 40, 0.35),
    0 8px 28px rgba(185, 93, 40, 0.4),
    inset 0 1px 0 rgba(255, 220, 160, 0.45);
  border-color: var(--lime);
}

.btn--ghost {
  background: rgba(20, 24, 20, 0.6);
  color: var(--text);
  border-color: var(--border);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  border-color: var(--lime);
  color: var(--lime);
  box-shadow: 0 0 20px rgba(199, 255, 0, 0.12);
}

.btn--lime {
  background: linear-gradient(135deg, #8ab800 0%, var(--lime) 50%, var(--lime-soft) 100%);
  color: #0a0d04;
  border-color: rgba(230, 255, 87, 0.5);
  box-shadow: 0 8px 28px rgba(199, 255, 0, 0.22);
}

.btn--lime:hover {
  box-shadow: 0 0 32px rgba(199, 255, 0, 0.4);
}

.btn--icon {
  width: 48px;
  height: 48px;
  padding: 0;
  background: rgba(20, 24, 20, 0.6);
  border-color: var(--border);
  color: var(--text);
}

.btn--icon:hover {
  color: var(--lime);
  border-color: var(--lime);
  box-shadow: 0 0 18px rgba(199, 255, 0, 0.2);
}

.btn--lg {
  padding: 1.15rem 2.2rem;
  font-size: 0.95rem;
}

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.35s ease, backdrop-filter 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  background: var(--glass);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom-color: rgba(185, 93, 40, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.nav__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 1001;
}

.nav__logo {
  width: 42px;
  height: 42px;
  object-fit: cover;
  object-position: center top;
  border-radius: 2px;
  border: 1px solid var(--border);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.nav__brand:hover .nav__logo {
  border-color: var(--lime);
  box-shadow: 0 0 18px rgba(199, 255, 0, 0.25), 0 0 24px rgba(185, 93, 40, 0.3);
}

.nav__wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  line-height: 1;
  display: flex;
  gap: 0.35em;
}

.nav__wordmark-copper { color: var(--copper-hot); }
.nav__wordmark-wolf { color: var(--lime); }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.4rem;
}

.nav__link {
  position: relative;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--text-dim);
  padding: 0.35rem 0;
  transition: color 0.25s ease;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}

.nav__link:hover,
.nav__link:focus-visible {
  color: var(--text);
}

.nav__link:hover::after,
.nav__link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__cta {
  padding: 0.65rem 1.2rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  background: linear-gradient(135deg, #8a3f16, var(--copper-mid), var(--copper-hot));
  color: #120a04;
  border: 1px solid rgba(240, 138, 60, 0.5);
  box-shadow: 0 0 16px rgba(185, 93, 40, 0.25);
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.25s ease;
}

.nav__cta:hover {
  border-color: var(--lime);
  box-shadow: 0 0 22px rgba(199, 255, 0, 0.3), 0 0 28px rgba(185, 93, 40, 0.35);
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 1001;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--copper-hot);
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

.nav.is-open .nav__toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background: var(--lime);
}

.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }

.nav.is-open .nav__toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background: var(--lime);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 1.5rem) 0 4rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(199, 255, 0, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 60%, rgba(185, 93, 40, 0.12) 0%, transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 60%, #070a06 100%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(199, 255, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(199, 255, 0, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 65% 55%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 65% 55%, black 20%, transparent 75%);
  animation: grid-drift 40s linear infinite;
  opacity: 0.7;
}

@keyframes grid-drift {
  from { transform: translateY(0); }
  to { transform: translateY(60px); }
}

.hero__glow {
  position: absolute;
  width: 700px;
  height: 700px;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(199, 255, 0, 0.18) 0%, rgba(185, 93, 40, 0.08) 35%, transparent 65%);
  filter: blur(20px);
  pointer-events: none;
  will-change: transform;
}

.hero__haze {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(240, 138, 60, 0.04) 55%, transparent 70%);
  animation: haze-move 12s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes haze-move {
  from { transform: translateX(-4%); opacity: 0.5; }
  to { transform: translateX(4%); opacity: 1; }
}

.hero__sparks {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__sparks span {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 8px var(--lime), 0 0 14px var(--copper-hot);
  animation: spark-float linear infinite;
  opacity: 0;
}

@keyframes spark-float {
  0% { transform: translateY(20px) scale(0.4); opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 0.8; }
  100% { transform: translateY(-100vh) scale(1); opacity: 0; }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.hero__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero__welcome {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  color: var(--lime);
  margin-bottom: 1rem;
  opacity: 0.85;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.02em;
  margin-bottom: 1.1rem;
}

.hero__title-copper,
.hero__title-wolf {
  display: block;
  font-size: clamp(4.5rem, 12vw, 9.5rem);
}

.hero__title-copper {
  background: linear-gradient(180deg, #ffc078 0%, var(--copper-hot) 35%, var(--copper) 70%, #6b3010 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 4px 20px rgba(185, 93, 40, 0.4));
}

.hero__title-wolf {
  background: linear-gradient(180deg, var(--lime-soft) 0%, var(--lime) 40%, var(--copper-hot) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 24px rgba(199, 255, 0, 0.25));
}

.hero__slogan {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--copper-hot);
  margin-bottom: 1.1rem;
}

.hero__narrative {
  max-width: 34rem;
  font-size: 1.02rem;
  color: var(--text-dim);
  margin-bottom: 2rem;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.hero__coords {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: var(--text-mute);
}

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

.hero__radial {
  position: absolute;
  width: 90%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 255, 0, 0.22) 0%, rgba(185, 93, 40, 0.1) 30%, transparent 62%);
  animation: radial-breathe 5s ease-in-out infinite;
  filter: blur(8px);
  z-index: 0;
}

@keyframes radial-breathe {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.08); opacity: 1; }
}

.hero__floor {
  position: absolute;
  bottom: 8%;
  left: 10%;
  right: 10%;
  height: 40%;
  background:
    linear-gradient(to top, transparent, transparent),
    repeating-linear-gradient(90deg, rgba(199, 255, 0, 0.15) 0 1px, transparent 1px 48px),
    repeating-linear-gradient(0deg, rgba(199, 255, 0, 0.1) 0 1px, transparent 1px 48px);
  transform: perspective(400px) rotateX(68deg);
  transform-origin: center bottom;
  mask-image: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  z-index: 0;
  animation: floor-pulse 4s ease-in-out infinite;
}

@keyframes floor-pulse {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 0.75; }
}

.hero__wolf-wrap {
  position: relative;
  z-index: 2;
  width: min(100%, 620px);
  will-change: transform;
}

.hero__wolf {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 40px rgba(199, 255, 0, 0.15));
  animation: wolf-float 6s ease-in-out infinite;
  transform-origin: center center;
}

@keyframes wolf-float {
  0%, 100% { transform: translateY(0) rotate(-0.5deg); }
  50% { transform: translateY(-14px) rotate(0.5deg); }
}

.hero__shadow {
  position: absolute;
  bottom: 10%;
  left: 50%;
  width: 55%;
  height: 28px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.65) 0%, transparent 70%);
  animation: shadow-pulse 6s ease-in-out infinite;
  z-index: 1;
}

@keyframes shadow-pulse {
  0%, 100% { transform: translateX(-50%) scaleX(1); opacity: 0.7; }
  50% { transform: translateX(-50%) scaleX(0.85); opacity: 0.45; }
}

.hero__scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 28px;
  height: 44px;
  border: 1px solid rgba(199, 255, 0, 0.35);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.hero__scroll span {
  width: 4px;
  height: 8px;
  background: var(--lime);
  border-radius: 2px;
  animation: scroll-bob 1.6s ease-in-out infinite;
}

@keyframes scroll-bob {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.3; }
}

/* ---------- TICKER ---------- */
.ticker {
  position: relative;
  z-index: 5;
  background: linear-gradient(90deg, rgba(185, 93, 40, 0.12), rgba(20, 24, 20, 0.95), rgba(199, 255, 0, 0.08));
  border-top: 1px solid rgba(185, 93, 40, 0.4);
  border-bottom: 1px solid rgba(199, 255, 0, 0.25);
  overflow: hidden;
  padding: 0.95rem 0;
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.ticker:hover .ticker__track {
  animation-play-state: paused;
}

.ticker__group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-right: 1.5rem;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.ticker__copper { color: var(--copper-hot); }
.ticker__lime { color: var(--lime); }
.ticker__dot { color: var(--text-mute); }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- SECTIONS ---------- */
.section {
  position: relative;
  padding: clamp(4.5rem, 10vw, 8rem) 0;
  overflow: hidden;
}

.section__inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section__header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  max-width: 48rem;
}

.section__label {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--lime);
  margin-bottom: 1.25rem;
}

.section__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.4rem, 6vw, 4.75rem);
  line-height: 0.95;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.section__title--sm {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
}

.section__lead {
  font-size: 1.15rem;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ---------- THESIS / PILLARS ---------- */
.thesis {
  background:
    radial-gradient(ellipse 50% 40% at 90% 20%, rgba(185, 93, 40, 0.08), transparent),
    var(--bg);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.pillar {
  position: relative;
  padding: 1.75rem 1.4rem;
  background: linear-gradient(160deg, rgba(20, 24, 20, 0.9), rgba(10, 13, 8, 0.95));
  border: 1px solid var(--border);
  transition: border-color 0.35s ease, transform 0.35s var(--ease), box-shadow 0.35s ease;
}

.pillar:hover {
  border-color: var(--border-lime);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), 0 0 24px rgba(199, 255, 0, 0.06);
}

.pillar__icon {
  width: 56px;
  height: 56px;
  color: var(--copper-hot);
  margin-bottom: 1.25rem;
}

.pillar__icon svg { width: 100%; height: 100%; }

.pillar__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.pillar__text {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.55;
}

.pillar__line {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--copper), var(--lime));
  transition: width 0.6s var(--ease);
}

.pillar.is-visible .pillar__line,
.pillar:hover .pillar__line {
  width: 100%;
}

.cu-panel {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 130px;
  border: 1px solid var(--border);
  background: rgba(20, 24, 20, 0.7);
  margin-left: auto;
  text-align: center;
  position: relative;
}

.cu-panel::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(199, 255, 0, 0.15);
  pointer-events: none;
}

.cu-panel__num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--lime);
  align-self: flex-start;
  margin: 0.5rem 0 0 0.65rem;
}

.cu-panel__sym {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--copper-hot);
  line-height: 1;
  margin: 0.4rem 0;
}

.cu-panel__name {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--text-dim);
}

/* ---------- WOLF SECTION ---------- */
.wolf-section {
  background:
    radial-gradient(ellipse 45% 55% at 15% 50%, rgba(199, 255, 0, 0.06), transparent),
    linear-gradient(180deg, var(--bg-2), var(--bg));
}

.wolf-section__bg-type {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(8rem, 22vw, 18rem);
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(185, 93, 40, 0.18);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  line-height: 0.85;
}

.wolf-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  max-width: 1200px;
}

.wolf-section__frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg);
}

.wolf-section__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(199, 255, 0, 0.12);
  margin: 6px;
  pointer-events: none;
  z-index: 2;
}

.wolf-section__img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s var(--ease);
}

.wolf-section__frame:hover .wolf-section__img {
  transform: scale(1.04);
}

.wolf-section__glow {
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  background: linear-gradient(to top, rgba(5, 7, 4, 0.85), transparent);
  pointer-events: none;
  z-index: 1;
}

.wolf-section__narrative {
  color: var(--text-dim);
  font-size: 1.05rem;
  margin: 1.25rem 0 0.85rem;
  line-height: 1.7;
}

.wolf-section__together {
  color: var(--text);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}

.wolf-section__together strong {
  color: var(--copper-hot);
  font-family: var(--font-display);
  letter-spacing: 0.08em;
}

.principles {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.principle {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.1rem 0;
  border-top: 1px solid rgba(185, 93, 40, 0.25);
  transition: border-color 0.3s ease;
}

.principle:hover { border-color: rgba(199, 255, 0, 0.35); }

.principle__num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--lime);
  padding-top: 0.3rem;
}

.principle__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

.principle p {
  color: var(--text-dim);
  font-size: 0.95rem;
}

/* ---------- NARRATIVE CARDS ---------- */
.cards-section {
  background: var(--bg);
}

.narr-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.narr-card {
  position: relative;
  padding: 2.25rem 1.75rem;
  min-height: 280px;
  background: linear-gradient(155deg, rgba(26, 31, 26, 0.95), rgba(8, 10, 7, 0.98));
  border: 1px solid var(--border);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: box-shadow 0.35s ease, border-color 0.35s ease;
  will-change: transform;
}

.narr-card:hover {
  border-color: rgba(199, 255, 0, 0.45);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.45),
    0 0 30px rgba(199, 255, 0, 0.08),
    inset 0 0 40px rgba(185, 93, 40, 0.05);
}

.narr-card__texture {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 8px,
      rgba(185, 93, 40, 0.03) 8px,
      rgba(185, 93, 40, 0.03) 9px
    );
  pointer-events: none;
  animation: texture-shift 20s linear infinite;
}

@keyframes texture-shift {
  from { background-position: 0 0; }
  to { background-position: 120px 120px; }
}

.narr-card__glare {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--gx, 50%) var(--gy, 50%), rgba(255, 255, 255, 0.12), transparent 45%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 2;
}

.narr-card:hover .narr-card__glare { opacity: 1; }

.narr-card__label {
  position: relative;
  z-index: 3;
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--text-mute);
  display: block;
  margin-bottom: 2rem;
}

.narr-card__title {
  position: relative;
  z-index: 3;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  background: linear-gradient(180deg, var(--copper-hot), var(--copper));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
}

.narr-card__title--lime {
  background: linear-gradient(180deg, var(--lime-soft), var(--lime), var(--copper-hot));
  -webkit-background-clip: text;
  background-clip: text;
}

.narr-card__text {
  position: relative;
  z-index: 3;
  color: var(--text-dim);
  font-size: 1rem;
  max-width: 16rem;
}

.narr-card__bar {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--copper), var(--lime), transparent);
  opacity: 0.7;
  z-index: 3;
}

/* ---------- ECOSYSTEM CHAIN ---------- */
.ecosystem {
  background:
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(199, 255, 0, 0.05), transparent),
    var(--bg-2);
}

.chain {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 0;
  padding: 2rem 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.chain__node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.chain.is-active .chain__node {
  opacity: 1;
  transform: translateY(0);
}

.chain.is-active .chain__node:nth-child(1) { transition-delay: 0.05s; }
.chain.is-active .chain__node:nth-child(3) { transition-delay: 0.2s; }
.chain.is-active .chain__node:nth-child(5) { transition-delay: 0.35s; }
.chain.is-active .chain__node:nth-child(7) { transition-delay: 0.5s; }
.chain.is-active .chain__node:nth-child(9) { transition-delay: 0.65s; }
.chain.is-active .chain__node:nth-child(11) { transition-delay: 0.8s; }

.chain__orb {
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  border: 1px solid var(--border);
  background: rgba(20, 24, 20, 0.85);
  color: var(--copper-hot);
  position: relative;
  text-align: center;
  padding: 0.35rem;
  box-shadow: inset 0 0 24px rgba(185, 93, 40, 0.1);
}

.chain__orb--copper {
  border-color: var(--copper);
  box-shadow: 0 0 20px rgba(185, 93, 40, 0.25), inset 0 0 24px rgba(185, 93, 40, 0.15);
  font-size: 1.4rem;
}

.chain__orb--power {
  color: var(--lime);
}

.chain__bolt {
  display: block;
  width: 14px;
  height: 28px;
  background: var(--lime);
  clip-path: polygon(40% 0%, 100% 0%, 55% 42%, 85% 42%, 0% 100%, 40% 55%, 15% 55%);
  box-shadow: 0 0 12px rgba(199, 255, 0, 0.5);
}

.chain__orb--lime {
  border-color: var(--lime);
  color: var(--lime);
  box-shadow: 0 0 20px rgba(199, 255, 0, 0.2);
}

.chain__orb--multi {
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  line-height: 1.3;
}

.chain__orb--apex {
  width: 100px;
  height: 100px;
  border-color: var(--lime);
  color: var(--lime);
  font-size: 1.5rem;
  background: linear-gradient(145deg, rgba(185, 93, 40, 0.25), rgba(20, 24, 20, 0.95));
  box-shadow:
    0 0 30px rgba(199, 255, 0, 0.25),
    0 0 40px rgba(185, 93, 40, 0.2);
  animation: apex-pulse 3s ease-in-out infinite;
}

@keyframes apex-pulse {
  0%, 100% { box-shadow: 0 0 24px rgba(199, 255, 0, 0.2), 0 0 30px rgba(185, 93, 40, 0.15); }
  50% { box-shadow: 0 0 40px rgba(199, 255, 0, 0.4), 0 0 50px rgba(185, 93, 40, 0.3); }
}

.chain__name {
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  white-space: nowrap;
}

.chain__node--apex .chain__name {
  color: var(--lime);
  font-weight: 700;
}

.chain__link {
  flex: 1;
  min-width: 24px;
  height: 2px;
  position: relative;
  margin: 0 0.35rem;
  margin-bottom: 2rem;
  background: rgba(185, 93, 40, 0.2);
  overflow: hidden;
}

.chain__link span {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--copper), var(--lime));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s var(--ease);
}

.chain.is-active .chain__link span {
  transform: scaleX(1);
}

.chain.is-active .chain__link:nth-child(2) span { transition-delay: 0.12s; }
.chain.is-active .chain__link:nth-child(4) span { transition-delay: 0.28s; }
.chain.is-active .chain__link:nth-child(6) span { transition-delay: 0.42s; }
.chain.is-active .chain__link:nth-child(8) span { transition-delay: 0.56s; }
.chain.is-active .chain__link:nth-child(10) span { transition-delay: 0.7s; }

/* ---------- TOKEN PANEL ---------- */
.token {
  background: var(--bg);
}

.token-panel {
  position: relative;
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid var(--border);
  background: linear-gradient(160deg, rgba(20, 24, 20, 0.95), rgba(8, 10, 7, 0.98));
  overflow: hidden;
}

.token-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lime), var(--copper), transparent);
}

.token-panel__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(199, 255, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(199, 255, 0, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.token-panel__rows {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2.5rem;
}

.token-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(185, 93, 40, 0.2);
  align-items: center;
}

.token-row__key {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--text-mute);
}

.token-row__val {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.85rem);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.token-panel__actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* ---------- COMMUNITY ---------- */
.community {
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: radial-gradient(ellipse 50% 60% at 70% 50%, rgba(185, 93, 40, 0.1), transparent), var(--bg-2);
}

.community__watermark {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: min(55vw, 640px);
  opacity: 0.08;
  pointer-events: none;
  filter: grayscale(0.2);
  z-index: 0;
}

.community__watermark img {
  width: 100%;
  height: auto;
}

.community__inner {
  position: relative;
  z-index: 2;
}

.community__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin: 1rem 0 1.75rem;
  text-transform: uppercase;
}

.community__copy {
  font-size: 1.15rem;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 2.25rem;
  max-width: 28rem;
}

/* ---------- FINAL CTA ---------- */
.final-cta {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 0;
  text-align: center;
}

.final-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.final-cta__banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.final-cta__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 7, 4, 0.75) 0%, rgba(5, 7, 4, 0.55) 40%, rgba(5, 7, 4, 0.88) 100%),
    radial-gradient(ellipse at center, transparent 20%, rgba(5, 7, 4, 0.7) 100%);
}

.final-cta__sweep {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(199, 255, 0, 0.06) 48%, rgba(185, 93, 40, 0.08) 52%, transparent 70%);
  background-size: 200% 100%;
  animation: light-sweep 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes light-sweep {
  0%, 100% { background-position: 100% 0; }
  50% { background-position: 0% 0; }
}

.final-cta__content {
  position: relative;
  z-index: 2;
}

.final-cta__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 1rem 0 1.25rem;
  text-transform: uppercase;
  background: linear-gradient(180deg, #fff 0%, var(--copper-hot) 55%, var(--copper) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 8px 30px rgba(0, 0, 0, 0.5));
}

.final-cta__sub {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.22em;
  color: var(--lime);
  margin-bottom: 2.5rem;
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  position: relative;
}

.final-cta__actions::before {
  content: "";
  position: absolute;
  inset: -40% -20%;
  background:
    radial-gradient(circle at 30% 50%, rgba(199, 255, 0, 0.12), transparent 40%),
    radial-gradient(circle at 70% 50%, rgba(185, 93, 40, 0.15), transparent 40%);
  animation: cta-glow 4s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: -1;
}

@keyframes cta-glow {
  from { opacity: 0.5; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1.05); }
}

/* ---------- FOOTER ---------- */
.footer {
  border-top: 1px solid rgba(185, 93, 40, 0.25);
  background: var(--bg);
  padding: 2.5rem 0;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer__logo {
  width: 36px;
  height: 36px;
  object-fit: cover;
  object-position: center top;
  border: 1px solid var(--border);
}

.footer__brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
}

.footer__brand span {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

.footer__links {
  display: flex;
  gap: 1.75rem;
}

.footer__links a {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: var(--text-dim);
  transition: color 0.25s ease;
}

.footer__links a:hover { color: var(--lime); }

.footer__tag {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--text-mute);
}

/* ---------- REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .pillars {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__narrative {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions,
  .hero__meta,
  .hero__coords {
    justify-content: center;
  }

  .hero__visual {
    order: -1;
    min-height: 320px;
  }

  .hero__wolf-wrap {
    width: min(100%, 420px);
  }

  .hero__title-copper,
  .hero__title-wolf {
    font-size: clamp(3.5rem, 16vw, 6rem);
  }

  .wolf-section__inner {
    grid-template-columns: 1fr;
  }

  .wolf-section__media {
    max-width: 520px;
    margin: 0 auto;
  }

  .narr-cards {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
}

@media (max-width: 860px) {
  .nav__toggle { display: flex; }

  .nav__menu {
    position: fixed;
    inset: 0;
    background: rgba(5, 7, 4, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }

  .nav.is-open .nav__menu {
    opacity: 1;
    visibility: visible;
  }

  .nav__link {
    font-size: 1.2rem;
  }

  .nav__cta {
    margin-top: 0.5rem;
    padding: 1rem 2rem;
  }

  .chain {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .chain__link {
    width: 2px;
    height: 36px;
    min-width: 2px;
    margin: 0.35rem 0;
    margin-bottom: 0;
    background: rgba(185, 93, 40, 0.2);
  }

  .chain__link span {
    background: linear-gradient(180deg, var(--copper), var(--lime));
    transform: scaleY(0);
    transform-origin: top;
  }

  .chain.is-active .chain__link span {
    transform: scaleY(1);
  }

  .token-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .cu-panel {
    margin: 2rem auto 0;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__brand {
    flex-direction: column;
  }

  .community__watermark {
    opacity: 0.05;
    width: 90vw;
    right: -20%;
  }
}

@media (max-width: 600px) {
  .pillars {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-bottom: 3rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__actions .btn--icon {
    width: 100%;
  }

  .token-panel__actions {
    flex-direction: column;
  }

  .token-panel__actions .btn {
    width: 100%;
  }

  .final-cta__actions {
    flex-direction: column;
    align-items: stretch;
    padding: 0 1rem;
  }

  .final-cta__actions .btn {
    width: 100%;
  }

  .pointer-glow { display: none; }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .ticker__track { animation: none; }

  .hero__wolf {
    animation: none;
  }

  .chain__node {
    opacity: 1;
    transform: none;
  }

  .chain__link span {
    transform: none;
    width: 100%;
    height: 100%;
  }

  .pointer-glow { display: none; }
}

@media (max-width: 860px) {
  .hero__glow,
  .hero__haze,
  .hero__sparks {
    animation: none;
  }

  .hero__wolf {
    animation: wolf-float 8s ease-in-out infinite;
  }

  .magnetic {
    transform: none !important;
  }
}
