:root {
  color-scheme: dark;
  --bg: #030307;
  --panel: rgba(8, 8, 16, 0.74);
  --panel-strong: rgba(13, 12, 23, 0.92);
  --text: #f4f0ea;
  --muted: #b8adb8;
  --dim: #7d7387;
  --violet: #9a55ff;
  --violet-deep: #4a1d94;
  --cyan: #58e5d3;
  --amber: #e6a537;
  --rose: #d34d91;
  --line: rgba(214, 190, 255, 0.18);
  --line-strong: rgba(172, 103, 255, 0.48);
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.55);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 1180px;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -4;
  background-image:
    linear-gradient(90deg, rgba(3, 3, 7, 0.75), rgba(3, 3, 7, 0.18) 42%, rgba(3, 3, 7, 0.66)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.84) 86%),
    url("assets/background.jpg");
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  filter: saturate(1.06) contrast(1.05);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(180deg, rgba(3, 3, 7, 0.04), rgba(3, 3, 7, 0.84) 56%, #030307 100%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025) 0, rgba(255, 255, 255, 0.025) 1px, transparent 1px, transparent 4px);
  pointer-events: none;
}

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

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

button {
  color: inherit;
  font: inherit;
}

svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.site-shell {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
}

.ambient-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(115deg, transparent 0%, rgba(154, 85, 255, 0.13) 22%, transparent 44%, rgba(230, 165, 55, 0.11) 67%, transparent 100%),
    repeating-linear-gradient(27deg, transparent 0, transparent 38px, rgba(88, 229, 211, 0.045) 39px, transparent 42px),
    repeating-linear-gradient(142deg, transparent 0, transparent 54px, rgba(211, 77, 145, 0.04) 55px, transparent 58px);
  mix-blend-mode: screen;
  opacity: 0.7;
  transform: translate3d(0, 0, 0);
  animation: currentShift 18s ease-in-out infinite alternate;
  pointer-events: none;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 12;
  opacity: 0.13;
  pointer-events: none;
  background-image:
    repeating-radial-gradient(circle at 16% 21%, rgba(255, 255, 255, 0.14) 0, rgba(255, 255, 255, 0.14) 1px, transparent 1px, transparent 6px),
    repeating-linear-gradient(130deg, rgba(255, 255, 255, 0.04) 0, rgba(255, 255, 255, 0.04) 1px, transparent 1px, transparent 7px);
  mix-blend-mode: overlay;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 94px;
  padding: 0 58px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(3, 3, 7, 0.86), rgba(3, 3, 7, 0.32));
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 270px;
}

.brand img {
  width: 54px;
  height: 54px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  box-shadow: 0 0 32px rgba(154, 85, 255, 0.45);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
}

.brand small {
  margin-top: 3px;
  color: var(--violet);
  font-size: 13px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 46px;
  color: rgba(244, 240, 234, 0.82);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding: 12px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 1px;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--violet);
  box-shadow: 0 0 16px var(--violet);
  transform: translateX(-50%) scale(0);
  transition: transform 260ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #fff;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: translateX(-50%) scale(1);
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 270px;
  justify-content: flex-end;
}

.icon-button,
.outline-button,
.primary-button,
.ghost-button,
.contract-panel button,
.featured-tile a,
.social-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  cursor: pointer;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.icon-button {
  width: 48px;
  background: rgba(6, 5, 13, 0.7);
}

.icon-button.is-on {
  color: var(--cyan);
  border-color: rgba(88, 229, 211, 0.65);
  box-shadow: 0 0 28px rgba(88, 229, 211, 0.16);
}

.outline-button {
  padding: 0 24px;
  background: rgba(10, 7, 18, 0.6);
  color: #eadfff;
  font-size: 13px;
  font-weight: 800;
}

.outline-button:hover,
.icon-button:hover,
.primary-button:hover,
.ghost-button:hover,
.contract-panel button:hover,
.featured-tile a:hover,
.social-button:hover {
  transform: translateY(-2px);
  border-color: rgba(237, 221, 255, 0.74);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.34), 0 0 30px rgba(154, 85, 255, 0.16);
}

.section-frame {
  width: min(1280px, calc(100% - 104px));
  margin: 0 auto;
}

.hero {
  min-height: 920px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 60px;
  padding-top: 100px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding-top: 24px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--violet);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 650px;
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: 86px;
  font-weight: 500;
  line-height: 0.92;
  text-shadow: 0 0 28px rgba(154, 85, 255, 0.22), 0 3px 0 rgba(0, 0, 0, 0.58);
}

h2 {
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 500;
  line-height: 1.05;
  color: #fff7ef;
}

h3 {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
}

.hero-lede {
  max-width: 540px;
  color: rgba(244, 240, 234, 0.76);
  font-size: 21px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin: 34px 0 22px;
}

.primary-button,
.ghost-button {
  min-width: 194px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 850;
}

.primary-button {
  border-color: rgba(180, 121, 255, 0.86);
  background: linear-gradient(135deg, #6f3eee, #a750ff 58%, #db6fca);
  color: #fff;
  box-shadow: 0 16px 56px rgba(128, 70, 255, 0.28);
}

.ghost-button {
  background: rgba(7, 6, 15, 0.66);
  color: #ddcaff;
}

.contract-panel {
  display: flex;
  width: 548px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 30px 0 34px;
  padding: 14px 14px 14px 18px;
  border: 1px solid rgba(172, 103, 255, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(12, 10, 20, 0.92), rgba(16, 10, 26, 0.58)),
    linear-gradient(90deg, rgba(154, 85, 255, 0.14), rgba(88, 229, 211, 0.06));
  box-shadow: var(--shadow);
}

.contract-panel span {
  display: block;
  margin-bottom: 6px;
  color: var(--dim);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.contract-panel code {
  display: block;
  width: 360px;
  overflow: hidden;
  color: #f9f6ff;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contract-panel button {
  min-width: 92px;
  min-height: 42px;
  background: rgba(154, 85, 255, 0.12);
  font-size: 13px;
  font-weight: 850;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 612px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-strip div {
  padding: 20px 24px 18px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.stat-strip div + div {
  padding-left: 24px;
}

.stat-strip div:last-child {
  border-right: 0;
}

.stat-strip strong,
.stat-strip span {
  display: block;
}

.stat-strip strong {
  color: #fff;
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 500;
}

.stat-strip span {
  margin-top: 4px;
  color: rgba(244, 240, 234, 0.58);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-height: 735px;
}

.hero-art {
  position: absolute;
  top: 90px;
  right: 24px;
  width: 640px;
  height: 640px;
  transform: translate3d(0, 0, 0);
}

.hero-art::before,
.hero-art::after {
  content: "";
  position: absolute;
  inset: -22px;
  border-radius: 50%;
  pointer-events: none;
}

.hero-art::before {
  border: 1px solid rgba(172, 103, 255, 0.24);
  box-shadow:
    inset 0 0 62px rgba(154, 85, 255, 0.18),
    0 0 90px rgba(35, 210, 205, 0.08),
    0 0 120px rgba(226, 137, 43, 0.12);
  animation: haloPulse 6.5s ease-in-out infinite;
}

.hero-art::after {
  inset: 34px;
  border: 1px solid rgba(230, 165, 55, 0.14);
  transform: rotate(12deg);
}

.hero-art img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid rgba(211, 186, 255, 0.22);
  border-radius: 50%;
  box-shadow: 0 42px 120px rgba(0, 0, 0, 0.66);
  filter: contrast(1.06) saturate(1.12);
  animation: slowFloat 9s ease-in-out infinite;
}

.featured-tile {
  position: absolute;
  right: 10px;
  bottom: 80px;
  width: 300px;
  padding: 26px;
  border: 1px solid rgba(172, 103, 255, 0.36);
  border-radius: 8px;
  background: rgba(9, 8, 16, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.featured-tile span,
.featured-tile small {
  display: block;
  color: var(--violet);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.featured-tile strong {
  display: block;
  margin: 14px 0 8px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
}

.featured-tile small {
  color: rgba(244, 240, 234, 0.74);
}

.featured-tile a {
  width: 100%;
  min-height: 43px;
  margin-top: 24px;
  background: rgba(154, 85, 255, 0.09);
  color: #e8d8ff;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.gallery-intro {
  padding: 92px 0 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.intro-grid,
.about-layout,
.community-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 92px;
  align-items: start;
}

.intro-grid p,
.about-copy p,
.roadmap-head p,
.community p {
  color: rgba(244, 240, 234, 0.72);
  font-size: 18px;
  line-height: 1.75;
}

.gallery-wall {
  width: min(1280px, calc(100% - 104px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 40px 0 112px;
}

.art-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(172, 103, 255, 0.24);
  border-radius: 8px;
  background: rgba(7, 7, 14, 0.82);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.42);
  transform: translateZ(0);
  transition: border-color 260ms ease, box-shadow 260ms ease;
  contain: layout paint;
}

.art-card:nth-child(3n + 2) {
  margin-top: 58px;
}

.art-card:nth-child(3n) {
  margin-top: 116px;
}

.art-card:hover {
  border-color: rgba(88, 229, 211, 0.46);
  box-shadow: 0 34px 84px rgba(0, 0, 0, 0.58), 0 0 52px rgba(88, 229, 211, 0.1);
}

.art-card figure {
  position: relative;
  width: 100%;
  height: 390px;
  margin: 0;
  overflow: hidden;
  background: #080812;
}

.art-card figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 60%, rgba(5, 4, 10, 0.78)),
    linear-gradient(90deg, rgba(154, 85, 255, 0.12), transparent 45%, rgba(230, 165, 55, 0.1));
  pointer-events: none;
}

.art-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 900ms ease;
  filter: saturate(1.08) contrast(1.08);
}

.art-card:hover img {
  transform: scale(1.105);
  filter: saturate(1.18) contrast(1.12);
}

.art-meta {
  padding: 24px 24px 28px;
}

.art-meta span {
  display: block;
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 850;
}

.art-meta h3 {
  margin-bottom: 10px;
}

.art-meta p {
  margin: 0;
  color: rgba(244, 240, 234, 0.66);
  line-height: 1.6;
}

.about-band,
.tokenomics,
.roadmap,
.community {
  padding: 112px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.about-copy {
  padding-top: 7px;
}

.tokenomics h2 {
  max-width: 720px;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 38px;
}

.metric {
  min-height: 168px;
  padding: 28px;
  border: 1px solid rgba(172, 103, 255, 0.24);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(10, 10, 20, 0.86), rgba(7, 7, 14, 0.56));
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.34);
}

.metric span {
  display: block;
  color: var(--dim);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.metric strong {
  display: block;
  margin-top: 30px;
  color: #fff;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 500;
}

.roadmap-head {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 92px;
  align-items: end;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 50px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 2%;
  right: 2%;
  top: 26px;
  height: 1px;
  background: linear-gradient(90deg, var(--violet), var(--cyan), var(--amber));
  opacity: 0.5;
}

.phase {
  position: relative;
  padding: 64px 24px 28px;
  border: 1px solid rgba(172, 103, 255, 0.24);
  border-radius: 8px;
  background: rgba(8, 8, 16, 0.72);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.phase::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 24px;
  width: 14px;
  height: 14px;
  border: 2px solid #05050b;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 24px rgba(88, 229, 211, 0.58);
}

.phase span {
  color: var(--violet);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.phase h3 {
  margin: 12px 0 12px;
}

.phase p {
  color: rgba(244, 240, 234, 0.66);
  line-height: 1.62;
}

.community-layout {
  align-items: center;
}

.community-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.social-button {
  min-height: 68px;
  padding: 0 20px;
  background: rgba(9, 8, 16, 0.72);
  color: #f0e6ff;
  font-weight: 850;
}

.footer {
  width: min(1280px, calc(100% - 104px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 36px 0 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(244, 240, 234, 0.54);
  font-size: 13px;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 900ms ease, transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 900ms ease;
  filter: blur(8px);
}

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

.scroll-fade {
  will-change: opacity, transform;
}

@keyframes slowFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-8px, -13px, 0) scale(1.014);
  }
}

@keyframes haloPulse {
  0%,
  100% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.035);
  }
}

@keyframes currentShift {
  from {
    transform: translate3d(-12px, -8px, 0) scale(1);
  }
  to {
    transform: translate3d(14px, 10px, 0) scale(1.03);
  }
}

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

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