@font-face {
  font-family: "Natural Mono";
  src: url("assets/fonts/NaturalMono-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Natural Mono";
  src: url("assets/fonts/NaturalMono-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #010402;
  --bg-2: #041208;
  --panel: rgba(3, 15, 6, 0.82);
  --panel-2: rgba(6, 24, 9, 0.72);
  --ink: #f2fff1;
  --muted: rgba(242, 255, 241, 0.68);
  --soft: rgba(242, 255, 241, 0.48);
  --green: #57ff35;
  --green-2: #96ff6a;
  --green-deep: #0c7d18;
  --line: rgba(87, 255, 53, 0.24);
  --line-strong: rgba(87, 255, 53, 0.62);
  --shadow: rgba(0, 0, 0, 0.74);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -10%, rgba(87, 255, 53, 0.14), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(87, 255, 53, 0.08), transparent 26%),
    linear-gradient(180deg, #010402 0%, #031008 52%, #010402 100%);
  color: var(--ink);
  font-family: "Natural Mono", "Courier New", monospace;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -5;
  pointer-events: none;
  background:
    linear-gradient(rgba(87, 255, 53, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(87, 255, 53, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.55) 55%, transparent 100%);
}

body.intro-lock {
  overflow: hidden;
}

body::selection {
  background: var(--green);
  color: #020602;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

strong {
  color: var(--green);
}

.intro {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 44%, rgba(87, 255, 53, 0.2), transparent 22%),
    linear-gradient(180deg, #000 0%, #031007 50%, #000 100%);
  color: var(--ink);
  transition: opacity 700ms ease, visibility 700ms ease;
}

.intro.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro::before,
.intro::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.intro::before {
  background:
    linear-gradient(rgba(87, 255, 53, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(87, 255, 53, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.44;
}

.intro::after {
  background:
    radial-gradient(circle at center, transparent 0 33%, rgba(87, 255, 53, 0.16) 34%, transparent 38%),
    radial-gradient(circle at center, transparent 0 49%, rgba(87, 255, 53, 0.1) 50%, transparent 53%);
  animation: welcome-pulse 4.2s ease-in-out infinite;
  opacity: 0.55;
}

.intro-skip {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 8;
  min-height: 36px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.62);
  color: var(--green);
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.intro-shell {
  position: relative;
  z-index: 5;
  width: min(1080px, calc(100% - 36px));
  min-height: min(660px, calc(100svh - 108px));
  display: grid;
  grid-template-columns: minmax(260px, 0.88fr) minmax(0, 1.12fr);
  grid-template-rows: 1fr auto auto;
  gap: clamp(18px, 4vw, 52px);
  align-items: center;
  padding: clamp(24px, 4vw, 52px);
  border: 1px solid rgba(87, 255, 53, 0.28);
  background:
    radial-gradient(circle at 24% 50%, rgba(87, 255, 53, 0.16), transparent 32%),
    linear-gradient(135deg, rgba(87, 255, 53, 0.12), transparent 28%),
    rgba(1, 7, 3, 0.78);
  clip-path: polygon(0 0, calc(100% - 34px) 0, 100% 34px, 100% 100%, 34px 100%, 0 calc(100% - 34px));
  box-shadow: 0 0 110px rgba(0, 0, 0, 0.72), inset 0 0 60px rgba(87, 255, 53, 0.07);
}

.intro-shell::before {
  content: "WELCOME TO THE DARK BULL";
  position: absolute;
  top: 18px;
  right: 24px;
  color: rgba(87, 255, 53, 0.52);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.intro-visual {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
}

.intro-emblem {
  position: relative;
  z-index: 2;
  width: min(330px, 70vw);
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.42);
  clip-path: polygon(10% 0, 90% 0, 100% 10%, 100% 90%, 90% 100%, 10% 100%, 0 90%, 0 10%);
  box-shadow: 0 0 54px rgba(87, 255, 53, 0.24);
}

.intro-emblem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.28) saturate(0.78) contrast(1.12) brightness(0.86);
}

.intro-orbit {
  position: absolute;
  inset: 50%;
  pointer-events: none;
  border: 1px solid rgba(87, 255, 53, 0.28);
  transform: translate(-50%, -50%);
}

.intro-orbit-one {
  width: min(430px, 82vw);
  aspect-ratio: 1;
  border-radius: 50%;
  border-top-color: var(--green);
  animation: spin 20s linear infinite;
}

.intro-orbit-two {
  width: min(500px, 90vw);
  aspect-ratio: 1;
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  animation: spin 30s linear reverse infinite;
}

.intro-orbit-three {
  width: min(570px, 100vw);
  height: min(260px, 52vw);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  animation: orbit-breathe 3.8s ease-in-out infinite;
}

.intro-terminal {
  align-self: center;
}

.intro-kicker,
.intro-code,
.eyebrow {
  margin: 0;
  color: var(--green);
  font-weight: 700;
  text-transform: uppercase;
}

.intro-kicker {
  margin-bottom: 14px;
  font-size: clamp(0.82rem, 1.4vw, 1rem);
}

.intro-code {
  min-height: 24px;
  color: rgba(242, 255, 241, 0.7);
  font-size: clamp(0.72rem, 1vw, 0.86rem);
}

.intro-terminal h2 {
  display: grid;
  gap: 6px;
  margin: 20px 0 0;
  font-size: clamp(2.7rem, 6vw, 5.9rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.intro-terminal h2 span,
.intro-terminal h2 strong {
  display: block;
}

.intro-terminal h2 strong {
  color: var(--green);
  text-shadow: 0 0 32px rgba(87, 255, 53, 0.45);
}

.intro-subline {
  width: min(560px, 100%);
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.5vw, 1.16rem);
}

.intro-welcome-list {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.intro-welcome-list span {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(87, 255, 53, 0.2);
  background: rgba(87, 255, 53, 0.055);
  color: rgba(242, 255, 241, 0.72);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.intro-status {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
}

.intro-label,
.intro-count {
  margin: 0;
  color: rgba(242, 255, 241, 0.62);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.intro-meter {
  height: 10px;
  overflow: hidden;
  border: 1px solid rgba(87, 255, 53, 0.28);
  background: rgba(242, 255, 241, 0.08);
}

.intro-meter span {
  display: block;
  width: 8%;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--green-2));
  box-shadow: 0 0 20px rgba(87, 255, 53, 0.52);
  transition: width 780ms ease;
}

@keyframes welcome-pulse {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.34;
  }

  50% {
    transform: scale(1.06);
    opacity: 0.72;
  }
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes orbit-breathe {
  0%,
  100% {
    opacity: 0.32;
    transform: translate(-50%, -50%) rotate(-15deg) scale(0.98);
  }

  50% {
    opacity: 0.72;
    transform: translate(-50%, -50%) rotate(-15deg) scale(1.04);
  }
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid rgba(87, 255, 53, 0.14);
  background: linear-gradient(180deg, rgba(1, 4, 2, 0.9), rgba(1, 4, 2, 0.36));
  backdrop-filter: blur(16px);
  transition: padding 180ms ease, background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  padding-block: 10px;
  border-color: rgba(87, 255, 53, 0.3);
  background: rgba(1, 4, 2, 0.9);
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(0.72rem, 1.08vw, 0.9rem);
  font-weight: 700;
  line-height: 1.12;
  text-transform: uppercase;
}

.brand img {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  object-fit: cover;
  box-shadow: 0 0 0 4px rgba(87, 255, 53, 0.08), 0 0 28px rgba(87, 255, 53, 0.26);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.5vw, 34px);
  color: rgba(242, 255, 241, 0.72);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.nav-links a {
  padding: 9px 0;
  transition: color 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--green);
}

.nav-cta,
.button,
.contract-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 3px;
  font-family: inherit;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-cta {
  padding: 0 18px;
  background: rgba(87, 255, 53, 0.1);
  color: var(--green);
  font-size: 0.78rem;
  box-shadow: inset 0 0 18px rgba(87, 255, 53, 0.08);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 120px clamp(20px, 5vw, 72px) 72px;
  isolation: isolate;
  overflow: hidden;
}

.hero-bg,
.hero-overlay,
.join-bg {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: -3;
  background-image: url("assets/images/dark-bull-wide.jpg");
  background-position: 38% center;
  background-size: cover;
  filter: grayscale(0.12) saturate(0.9) contrast(1.1) brightness(0.94);
  transform: scale(1.01);
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(2, 2, 2, 0.98) 0%, rgba(2, 2, 2, 0.9) 28%, rgba(2, 2, 2, 0.48) 48%, rgba(2, 2, 2, 0.08) 72%, rgba(2, 2, 2, 0.34) 100%),
    linear-gradient(180deg, rgba(2, 2, 2, 0.82) 0%, rgba(2, 2, 2, 0.06) 42%, #020202 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, rgba(247, 247, 242, 0.014) 0 1px, transparent 1px 8px),
    linear-gradient(90deg, rgba(247, 247, 242, 0.05), transparent 18%, transparent 86%, rgba(87, 255, 53, 0.035));
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 84%, transparent 100%);
}

.hero-content {
  position: relative;
  width: min(610px, 100%);
  padding: clamp(22px, 3.6vw, 36px);
  border-left: 1px solid rgba(247, 247, 242, 0.34);
  background:
    linear-gradient(135deg, rgba(247, 247, 242, 0.07), transparent 32%),
    rgba(2, 2, 2, 0.36);
  backdrop-filter: blur(2px);
  clip-path: polygon(0 0, 94% 0, 100% 12%, 100% 100%, 0 100%);
}

.hero-content::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: -1;
  border: 1px solid rgba(87, 255, 53, 0.1);
  border-left: 0;
}

.eyebrow {
  margin-bottom: 14px;
  font-size: clamp(0.74rem, 1.2vw, 0.9rem);
}

h1 {
  margin: 0;
  max-width: 9ch;
  font-size: clamp(3.25rem, 7.8vw, 7.25rem);
  line-height: 0.88;
  text-transform: uppercase;
  text-shadow: 0 0 28px rgba(87, 255, 53, 0.18), 0 16px 36px var(--shadow);
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4.4vw, 4.25rem);
  line-height: 1;
  text-transform: uppercase;
}

h3 {
  margin: 20px 0 12px;
  color: var(--green);
  font-size: clamp(1.25rem, 2.1vw, 1.95rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.ticker {
  margin: 22px 0 0;
  color: var(--green);
  font-size: clamp(1.2rem, 3.4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  text-shadow: 0 0 22px rgba(87, 255, 53, 0.52);
}

.hero-copy {
  width: min(580px, 100%);
  margin: 24px 0 0;
  color: rgba(242, 255, 241, 0.9);
  font-size: clamp(0.98rem, 1.48vw, 1.18rem);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.8);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-width: 158px;
  padding: 0 22px;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible,
.contract-button:hover,
.contract-button:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(87, 255, 53, 0.86);
}

.button-primary {
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: #031006;
  box-shadow: 0 0 28px rgba(87, 255, 53, 0.28), inset 0 -10px 0 rgba(0, 0, 0, 0.1);
}

.button-ghost {
  background: rgba(2, 8, 3, 0.7);
  color: var(--ink);
  box-shadow: inset 0 0 22px rgba(87, 255, 53, 0.08);
}

.market-strip {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(1, 10, 4, 0.92);
  backdrop-filter: blur(10px);
}

.strip-track {
  display: flex;
  width: max-content;
  animation: ticker 36s linear infinite;
}

.strip-track span {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  padding-inline: 30px;
  color: rgba(242, 255, 241, 0.78);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

.strip-track span::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 22px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px rgba(87, 255, 53, 0.9);
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: clamp(74px, 8vw, 116px) clamp(20px, 5vw, 72px);
}

#about,
#verify,
#token,
#roadmap,
#join {
  scroll-margin-top: 86px;
}

.section-grid,
.feature-band,
.identity-panel,
.why-panel,
.reward-panel,
.token-panel,
.section-heading,
.roadmap,
.join-content,
.site-footer {
  width: min(var(--max), 100%);
  margin-inline: auto;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: start;
}

.about-section {
  padding-bottom: clamp(34px, 5vw, 56px);
}

.about-section .section-grid {
  position: relative;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(87, 255, 53, 0.22);
  background:
    radial-gradient(circle at 0 0, rgba(87, 255, 53, 0.13), transparent 32%),
    linear-gradient(135deg, rgba(87, 255, 53, 0.06), transparent 38%),
    rgba(1, 9, 4, 0.76);
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 0 100%);
}

.copy-stack,
.token-content p,
.join-content p:not(.eyebrow),
.identity-copy p,
.feature-card p,
.roadmap p,
.reward-copy,
.reward-grid p {
  color: rgba(242, 255, 241, 0.74);
}

.copy-stack {
  font-size: clamp(1rem, 1.55vw, 1.16rem);
}

.copy-stack p,
.token-content p,
.join-content p,
.roadmap p,
.feature-card p,
.identity-copy p {
  margin: 0;
}

.copy-stack p + p {
  margin-top: 22px;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0 clamp(20px, 5vw, 72px) clamp(64px, 8vw, 98px);
}

.feature-card,
.roadmap article {
  min-height: 212px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(87, 255, 53, 0.26);
  border-radius: 4px;
  background:
    linear-gradient(45deg, transparent 0 72%, rgba(87, 255, 53, 0.08)),
    linear-gradient(135deg, rgba(87, 255, 53, 0.12), transparent 40%),
    rgba(4, 16, 6, 0.92);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  box-shadow: inset 0 0 0 1px rgba(87, 255, 53, 0.04);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);
}

.feature-card:hover,
.roadmap article:hover,
.reward-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(87, 255, 53, 0.58);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24), 0 0 34px rgba(87, 255, 53, 0.08);
}

.feature-card span,
.roadmap span,
.reward-grid span {
  display: block;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.identity-section {
  padding-top: clamp(34px, 5vw, 58px);
}

.why-section {
  padding-top: clamp(34px, 5vw, 58px);
}

.why-panel {
  position: relative;
  padding: clamp(24px, 3.6vw, 44px);
  border: 1px solid rgba(247, 247, 242, 0.13);
  background:
    radial-gradient(circle at 84% 0%, rgba(87, 255, 53, 0.07), transparent 28%),
    linear-gradient(135deg, rgba(247, 247, 242, 0.055), transparent 34%),
    rgba(10, 11, 10, 0.86);
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 28px 100%, 0 calc(100% - 28px));
}

.why-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(280px, 0.72fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: end;
  margin-bottom: clamp(22px, 3vw, 34px);
}

.why-heading .eyebrow {
  grid-column: 1;
  margin-bottom: 0;
}

.why-heading h2 {
  grid-column: 1;
  max-width: 680px;
  font-size: clamp(2.1rem, 3.8vw, 3.7rem);
}

.why-heading p:not(.eyebrow) {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin: 0;
  color: rgba(247, 247, 242, 0.74);
  font-size: clamp(0.98rem, 1.45vw, 1.14rem);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.why-grid article {
  min-height: 178px;
  padding: clamp(18px, 2.2vw, 26px);
  border: 1px solid rgba(247, 247, 242, 0.13);
  background:
    linear-gradient(135deg, rgba(247, 247, 242, 0.045), transparent 38%),
    rgba(4, 4, 4, 0.55);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.why-grid article:nth-child(1),
.why-grid article:nth-child(2) {
  grid-column: span 3;
}

.why-grid article:nth-child(n + 3) {
  grid-column: span 2;
}

.why-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(87, 255, 53, 0.42);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24), 0 0 24px rgba(87, 255, 53, 0.07);
}

.why-grid span {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
}

.why-grid p {
  margin: 0;
  color: rgba(247, 247, 242, 0.72);
  font-size: clamp(0.88rem, 1vw, 1rem);
}

.identity-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: stretch;
  padding: clamp(14px, 2vw, 18px);
  border: 1px solid rgba(87, 255, 53, 0.22);
  background:
    linear-gradient(135deg, rgba(87, 255, 53, 0.11), transparent 30%),
    rgba(1, 9, 4, 0.78);
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 28px 100%, 0 calc(100% - 28px));
}

.identity-image {
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(87, 255, 53, 0.22);
  background: #010402;
}

.identity-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.32) saturate(0.78) contrast(1.1) brightness(0.86);
}

.identity-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 44px);
}

.identity-copy p:not(.eyebrow) {
  margin-top: 22px;
  font-size: clamp(0.98rem, 1.45vw, 1.12rem);
}

.identity-metrics {
  display: grid;
  gap: 8px;
  margin-top: 30px;
}

.identity-metrics span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(87, 255, 53, 0.2);
  background: rgba(87, 255, 53, 0.05);
  color: rgba(242, 255, 241, 0.78);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.reward-section {
  padding-top: clamp(44px, 6vw, 82px);
  background:
    radial-gradient(circle at 18% 34%, rgba(87, 255, 53, 0.1), transparent 34%),
    linear-gradient(180deg, transparent, rgba(87, 255, 53, 0.04) 52%, transparent);
}

.reward-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(28px, 4.5vw, 56px);
  border: 1px solid rgba(87, 255, 53, 0.28);
  background:
    linear-gradient(45deg, transparent 0 70%, rgba(87, 255, 53, 0.1)),
    linear-gradient(135deg, rgba(87, 255, 53, 0.12), transparent 38%),
    rgba(1, 9, 4, 0.82);
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 0 100%);
  box-shadow: inset 0 0 42px rgba(87, 255, 53, 0.055);
}

.reward-panel::before {
  content: "VERIFY ZION";
  position: absolute;
  right: 22px;
  top: 18px;
  color: rgba(87, 255, 53, 0.5);
  font-size: 0.72rem;
  font-weight: 700;
}

.reward-copy {
  align-self: end;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
}

.reward-copy p {
  margin: 0;
}

.reward-copy p + p {
  margin-top: 18px;
}

.reward-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.reward-grid article {
  min-height: 138px;
  padding: 20px;
  border: 1px solid rgba(87, 255, 53, 0.22);
  background:
    linear-gradient(135deg, rgba(87, 255, 53, 0.075), transparent 54%),
    rgba(2, 12, 4, 0.74);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.reward-grid p {
  margin: 18px 0 0;
}

.verify-grid a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: rgba(87, 255, 53, 0.62);
  text-underline-offset: 4px;
}

.verify-grid a:hover,
.verify-grid a:focus-visible {
  color: var(--green);
}

.token-section {
  position: relative;
  background:
    linear-gradient(180deg, rgba(87, 255, 53, 0.05), transparent 42%),
    repeating-linear-gradient(90deg, rgba(87, 255, 53, 0.035) 0 1px, transparent 1px 76px);
}

.token-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
  padding: clamp(28px, 4.4vw, 58px);
  border: 1px solid var(--line);
  border-radius: 4px;
  background:
    radial-gradient(circle at 18% 32%, rgba(87, 255, 53, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(87, 255, 53, 0.095), transparent 32%),
    rgba(1, 9, 4, 0.86);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.42), inset 0 0 42px rgba(87, 255, 53, 0.06);
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 28px 100%, 0 calc(100% - 28px));
}

.token-art {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(87, 255, 53, 0.45);
  border-radius: 4px;
  background:
    radial-gradient(circle at center, rgba(87, 255, 53, 0.16), rgba(2, 8, 3, 0.2) 52%, rgba(2, 8, 3, 0.88));
}

.token-art::after {
  content: "DARK BULL";
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 6px 10px;
  border: 1px solid var(--line-strong);
  background: rgba(2, 8, 3, 0.74);
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.token-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.28) saturate(0.78) contrast(1.08) brightness(0.88);
}

.token-content p {
  margin-top: 22px;
  font-size: clamp(0.98rem, 1.4vw, 1.14rem);
}

.token-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 34px 0 0;
}

.token-list div {
  min-height: 104px;
  padding: 18px;
  border: 1px solid rgba(87, 255, 53, 0.24);
  border-radius: 3px;
  background:
    linear-gradient(135deg, rgba(87, 255, 53, 0.07), transparent 58%),
    rgba(87, 255, 53, 0.03);
}

.token-list dt {
  color: rgba(242, 255, 241, 0.5);
  font-size: 0.74rem;
  text-transform: uppercase;
}

.token-list dd {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: clamp(0.86rem, 1.35vw, 1.1rem);
  font-weight: 700;
}

.contract-button {
  width: 100%;
  min-height: 38px;
  padding: 0 12px;
  background: rgba(87, 255, 53, 0.1);
  color: var(--green);
  font-size: 0.82rem;
  box-shadow: inset 0 0 18px rgba(87, 255, 53, 0.14);
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: 930px;
}

.roadmap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.roadmap::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 20px;
  right: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}

.roadmap article {
  position: relative;
  padding-top: 56px;
}

.roadmap article::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 32px;
  width: 14px;
  height: 14px;
  border: 1px solid var(--line-strong);
  background: var(--bg);
  box-shadow: 0 0 18px rgba(87, 255, 53, 0.58);
}

.join-section {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: center;
  padding: clamp(76px, 10vw, 126px) clamp(20px, 5vw, 72px);
  overflow: hidden;
  isolation: isolate;
}

.join-bg {
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(1, 4, 2, 0.98), rgba(1, 4, 2, 0.74) 44%, rgba(1, 4, 2, 0.34)),
    linear-gradient(180deg, var(--bg) 0%, rgba(2, 8, 3, 0.24) 40%, var(--bg) 100%),
    url("assets/images/dark-bull-zion.jpg");
  background-position: center;
  background-size: cover;
  filter: grayscale(0.38) contrast(1.12) saturate(0.72) brightness(0.84);
}

.join-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(87, 255, 53, 0.05) 0 1px, transparent 1px 90px),
    radial-gradient(circle at 28% 50%, rgba(87, 255, 53, 0.11), transparent 32%);
}

.join-content {
  position: relative;
  padding: clamp(24px, 4vw, 44px);
  border-left: 1px solid var(--line-strong);
  background:
    radial-gradient(circle at 80% 20%, rgba(87, 255, 53, 0.1), transparent 34%),
    linear-gradient(90deg, rgba(87, 255, 53, 0.1), transparent 68%);
}

.join-content h2 {
  max-width: 930px;
}

.join-content p:not(.eyebrow) {
  width: min(620px, 100%);
  margin-top: 22px;
  font-size: clamp(1rem, 1.55vw, 1.16rem);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: rgba(242, 255, 241, 0.58);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

/* Refined black / white system with green reserved for highlights. */
:root {
  --bg: #030303;
  --bg-2: #0a0c0a;
  --panel: rgba(14, 16, 14, 0.84);
  --panel-2: rgba(22, 24, 22, 0.72);
  --ink: #f7f7f2;
  --muted: rgba(247, 247, 242, 0.72);
  --soft: rgba(247, 247, 242, 0.44);
  --line: rgba(247, 247, 242, 0.14);
  --line-strong: rgba(247, 247, 242, 0.32);
}

body {
  background:
    radial-gradient(circle at 58% -10%, rgba(247, 247, 242, 0.08), transparent 30%),
    radial-gradient(circle at 90% 16%, rgba(87, 255, 53, 0.045), transparent 22%),
    linear-gradient(180deg, #020202 0%, #080a08 48%, #020202 100%);
}

body::before {
  background:
    linear-gradient(rgba(247, 247, 242, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 247, 242, 0.02) 1px, transparent 1px);
  opacity: 0.7;
}

strong,
.eyebrow,
.intro-kicker,
.feature-card span,
.roadmap span,
.reward-grid span,
.ticker {
  color: var(--green);
}

.intro {
  background:
    radial-gradient(circle at 50% 44%, rgba(247, 247, 242, 0.12), transparent 24%),
    radial-gradient(circle at 50% 52%, rgba(87, 255, 53, 0.08), transparent 30%),
    linear-gradient(180deg, #000 0%, #090909 52%, #000 100%);
}

.intro::before {
  background:
    linear-gradient(rgba(247, 247, 242, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 247, 242, 0.035) 1px, transparent 1px);
}

.intro::after {
  background:
    radial-gradient(circle at center, transparent 0 34%, rgba(247, 247, 242, 0.14) 35%, transparent 38%),
    radial-gradient(circle at center, transparent 0 49%, rgba(87, 255, 53, 0.12) 50%, transparent 53%);
}

.intro-shell {
  border-color: rgba(247, 247, 242, 0.2);
  background:
    radial-gradient(circle at 24% 50%, rgba(247, 247, 242, 0.09), transparent 32%),
    linear-gradient(135deg, rgba(87, 255, 53, 0.08), transparent 26%),
    rgba(8, 9, 8, 0.82);
  box-shadow: 0 0 110px rgba(0, 0, 0, 0.76), inset 0 0 58px rgba(247, 247, 242, 0.035);
}

.intro-shell::before,
.intro-code,
.intro-subline,
.intro-welcome-list span,
.intro-label,
.intro-count {
  color: rgba(247, 247, 242, 0.68);
}

.intro-emblem,
.intro-orbit,
.intro-welcome-list span,
.intro-meter {
  border-color: rgba(247, 247, 242, 0.2);
}

.intro-orbit-one {
  border-top-color: var(--green);
}

.intro-welcome-list span {
  background: rgba(247, 247, 242, 0.045);
}

.site-header {
  border-bottom-color: rgba(247, 247, 242, 0.1);
  background: linear-gradient(180deg, rgba(2, 2, 2, 0.9), rgba(2, 2, 2, 0.34));
}

.site-header.is-scrolled {
  border-color: rgba(247, 247, 242, 0.18);
  background: rgba(2, 2, 2, 0.9);
}

.brand img {
  border-color: rgba(247, 247, 242, 0.22);
  box-shadow: 0 0 0 4px rgba(247, 247, 242, 0.04), 0 0 26px rgba(87, 255, 53, 0.12);
}

.nav-links {
  color: rgba(247, 247, 242, 0.62);
}

.nav-cta {
  border-color: rgba(87, 255, 53, 0.44);
  background: rgba(87, 255, 53, 0.08);
  color: var(--green);
}

.hero-bg {
  background-position: 38% center;
  filter: grayscale(0.12) saturate(0.9) contrast(1.1) brightness(0.94);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(2, 2, 2, 0.98) 0%, rgba(2, 2, 2, 0.9) 28%, rgba(2, 2, 2, 0.48) 48%, rgba(2, 2, 2, 0.08) 72%, rgba(2, 2, 2, 0.34) 100%),
    linear-gradient(180deg, rgba(2, 2, 2, 0.82) 0%, rgba(2, 2, 2, 0.06) 42%, var(--bg) 100%);
}

.hero::after {
  background:
    repeating-linear-gradient(0deg, rgba(247, 247, 242, 0.014) 0 1px, transparent 1px 8px),
    linear-gradient(90deg, rgba(247, 247, 242, 0.05), transparent 18%, transparent 86%, rgba(87, 255, 53, 0.035));
}

.hero-content {
  border-left-color: rgba(247, 247, 242, 0.38);
  background:
    linear-gradient(135deg, rgba(247, 247, 242, 0.07), transparent 32%),
    rgba(2, 2, 2, 0.36);
}

.hero-content::before {
  border-color: rgba(247, 247, 242, 0.08);
}

h1,
h2 {
  color: var(--ink);
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.72);
}

h3 {
  color: var(--ink);
}

.ticker {
  text-shadow: 0 0 18px rgba(87, 255, 53, 0.38);
}

.hero-copy,
.copy-stack,
.token-content p,
.join-content p:not(.eyebrow),
.identity-copy p,
.feature-card p,
.roadmap p,
.reward-copy,
.reward-grid p {
  color: rgba(247, 247, 242, 0.74);
}

.button-primary {
  border-color: rgba(247, 247, 242, 0.86);
  background: var(--ink);
  color: #050505;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3), inset 0 -8px 0 rgba(87, 255, 53, 0.16);
}

.button-ghost {
  border-color: rgba(247, 247, 242, 0.2);
  background: rgba(247, 247, 242, 0.045);
  color: var(--ink);
  box-shadow: none;
}

.button:hover,
.button:focus-visible,
.contract-button:hover,
.contract-button:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  border-color: rgba(87, 255, 53, 0.78);
  box-shadow: 0 0 24px rgba(87, 255, 53, 0.12);
}

.market-strip {
  border-block-color: rgba(247, 247, 242, 0.1);
  background: rgba(5, 5, 5, 0.94);
}

.strip-track span {
  color: rgba(247, 247, 242, 0.72);
}

.strip-track span::before {
  background: var(--green);
  box-shadow: 0 0 10px rgba(87, 255, 53, 0.62);
}

.about-section .section-grid,
.identity-panel,
.reward-panel,
.token-panel,
.feature-card,
.roadmap article,
.reward-grid article,
.token-list div {
  border-color: rgba(247, 247, 242, 0.13);
  background:
    linear-gradient(135deg, rgba(247, 247, 242, 0.055), transparent 36%),
    rgba(10, 11, 10, 0.86);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.feature-card:hover,
.roadmap article:hover,
.reward-grid article:hover {
  border-color: rgba(87, 255, 53, 0.42);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.26), 0 0 26px rgba(87, 255, 53, 0.08);
}

.identity-image,
.token-art {
  border-color: rgba(247, 247, 242, 0.16);
  background: #050505;
}

.identity-image img,
.token-art img {
  filter: grayscale(0.32) saturate(0.76) contrast(1.1) brightness(0.86);
}

.identity-metrics span {
  border-color: rgba(247, 247, 242, 0.13);
  background: rgba(247, 247, 242, 0.045);
  color: rgba(247, 247, 242, 0.72);
}

.identity-metrics span::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(87, 255, 53, 0.52);
}

.reward-section,
.token-section {
  background:
    radial-gradient(circle at 12% 24%, rgba(247, 247, 242, 0.055), transparent 30%),
    linear-gradient(180deg, transparent, rgba(247, 247, 242, 0.025) 52%, transparent);
}

.reward-panel::before {
  color: rgba(247, 247, 242, 0.42);
}

.verify-grid a {
  color: var(--ink);
  text-decoration-color: rgba(87, 255, 53, 0.56);
}

.token-art::after {
  border-color: rgba(247, 247, 242, 0.24);
  background: rgba(4, 4, 4, 0.76);
}

.token-list dt {
  color: rgba(247, 247, 242, 0.46);
}

.contract-button {
  border-color: rgba(87, 255, 53, 0.38);
  background: rgba(87, 255, 53, 0.08);
  color: var(--green);
  box-shadow: none;
}

.roadmap::before {
  background: linear-gradient(90deg, transparent, rgba(247, 247, 242, 0.26), transparent);
}

.roadmap article::before {
  border-color: rgba(247, 247, 242, 0.28);
  box-shadow: 0 0 16px rgba(87, 255, 53, 0.32);
}

.join-bg {
  background-image:
    linear-gradient(90deg, rgba(2, 2, 2, 0.98), rgba(2, 2, 2, 0.76) 44%, rgba(2, 2, 2, 0.42)),
    linear-gradient(180deg, var(--bg) 0%, rgba(2, 2, 2, 0.18) 40%, var(--bg) 100%),
    url("assets/images/dark-bull-zion.jpg");
  filter: grayscale(0.38) contrast(1.12) saturate(0.72) brightness(0.84);
}

.join-section::after {
  background:
    repeating-linear-gradient(90deg, rgba(247, 247, 242, 0.035) 0 1px, transparent 1px 90px),
    radial-gradient(circle at 28% 50%, rgba(87, 255, 53, 0.055), transparent 32%);
}

.join-content {
  border-left-color: rgba(247, 247, 242, 0.38);
  background:
    radial-gradient(circle at 80% 20%, rgba(247, 247, 242, 0.065), transparent 34%),
    linear-gradient(90deg, rgba(247, 247, 242, 0.07), transparent 68%);
}

.site-footer {
  border-top-color: rgba(247, 247, 242, 0.1);
  color: rgba(247, 247, 242, 0.5);
}

@media (max-width: 900px) {
  .intro-shell {
    min-height: calc(100svh - 96px);
    grid-template-columns: 1fr;
    align-content: center;
    gap: 20px;
    padding-top: 54px;
  }

  .intro-visual {
    min-height: 260px;
  }

  .intro-terminal {
    text-align: center;
  }

  .intro-subline {
    margin-inline: auto;
  }

  .intro-welcome-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-header {
    align-items: flex-start;
  }

  .brand span {
    max-width: 140px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    min-height: 40px;
    padding-inline: 12px;
    font-size: 0.7rem;
  }

  .hero {
    min-height: 100svh;
    padding-top: 112px;
    align-items: end;
  }

  .hero-bg {
    background-image: url("assets/images/dark-bull-zion.jpg");
    background-position: center top;
    background-size: cover;
    filter: grayscale(0.1) saturate(0.9) contrast(1.08) brightness(0.94);
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(2, 2, 2, 0.52) 0%, rgba(2, 2, 2, 0.08) 28%, rgba(2, 2, 2, 0.38) 55%, var(--bg) 100%),
      linear-gradient(90deg, rgba(2, 2, 2, 0.74), rgba(2, 2, 2, 0.16));
  }

  .section-grid,
  .feature-band,
  .identity-panel,
  .why-heading,
  .why-grid,
  .reward-panel,
  .reward-grid,
  .token-panel,
  .roadmap {
    grid-template-columns: 1fr;
  }

  .why-grid article:nth-child(1),
  .why-grid article:nth-child(2),
  .why-grid article:nth-child(n + 3) {
    grid-column: auto;
  }

  .identity-image {
    min-height: 300px;
  }

  .roadmap::before {
    top: 0;
    bottom: 0;
    left: 32px;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, transparent, var(--line-strong), transparent);
  }

  .roadmap article::before {
    left: 25px;
  }
}

@media (min-width: 761px) {
  .why-heading {
    grid-template-columns: minmax(0, 0.88fr) minmax(280px, 0.72fr);
  }

  .why-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .why-grid article:nth-child(1),
  .why-grid article:nth-child(2) {
    grid-column: span 3;
  }

  .why-grid article:nth-child(n + 3) {
    grid-column: span 2;
  }
}

@media (max-width: 540px) {
  .intro-shell {
    width: calc(100% - 28px);
    min-height: auto;
    max-height: calc(100svh - 28px);
    gap: 12px;
    padding: 44px 18px 18px;
    clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
  }

  .intro-shell::before {
    top: 16px;
    left: 18px;
    right: auto;
    font-size: 0.62rem;
  }

  .intro-skip {
    top: 14px;
    right: 14px;
  }

  .intro-visual {
    min-height: 172px;
  }

  .intro-emblem {
    width: min(178px, 54vw);
  }

  .intro-terminal h2 {
    margin-top: 12px;
    font-size: clamp(2rem, 11vw, 2.8rem);
  }

  .intro-subline {
    margin-top: 14px;
    font-size: 0.9rem;
  }

  .intro-welcome-list {
    gap: 6px;
  }

  .intro-welcome-list span {
    min-height: 32px;
    padding-inline: 10px;
    font-size: 0.68rem;
  }

  .intro-status {
    grid-template-columns: 1fr auto;
    gap: 8px;
  }

  .intro-meter {
    grid-column: 1 / -1;
    order: 3;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .brand span {
    max-width: 112px;
  }

  .hero {
    padding-inline: 16px;
  }

  .hero-content {
    padding: 20px 16px;
    clip-path: polygon(0 0, 94% 0, 100% 11%, 100% 100%, 0 100%);
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.1rem);
  }

  .ticker {
    font-size: clamp(1.15rem, 7.6vw, 1.65rem);
  }

  .hero-copy {
    font-size: 0.94rem;
  }

  .hero-actions,
  .site-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .strip-track span {
    min-height: 46px;
    padding-inline: 20px;
    font-size: 0.78rem;
  }

  .section,
  .join-section {
    padding-inline: 16px;
  }

  .section {
    padding-block: 54px;
  }

  .about-section .section-grid,
  .reward-panel,
  .why-panel,
  .identity-copy {
    padding: 22px;
  }

  .token-panel,
  .identity-panel {
    padding: 16px;
  }

  .token-list {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
