:root {
  --green: #72ff13;
  --acid: #baff5a;
  --black: #050805;
  --paper: #eef6e7;
  --muted: #9aa494;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--paper);
  font-family: "Space Mono", monospace;
}

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

button { font: inherit; }

.noise {
  position: fixed;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  opacity: .055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.nav {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  color: white;
  text-decoration: none;
  font-family: "Anton", sans-serif;
  font-size: 27px;
  letter-spacing: .04em;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  transform: rotate(-12deg);
  border-radius: 50%;
  background: var(--green);
  color: var(--black);
}

.nav-actions { display: flex; align-items: center; gap: 12px; }

.social-link {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid #40503b;
  border-radius: 50%;
  color: white;
  text-decoration: none;
}

.buy-small, .cta {
  cursor: pointer;
  border: 0;
  font-weight: 700;
  background: var(--green);
  color: #0a1007;
}

.buy-small {
  padding: 13px 19px;
  border-radius: 999px;
}

.hero {
  min-height: 760px;
  padding: 125px 5vw 65px;
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  align-items: center;
  background:
    radial-gradient(circle at 76% 42%, rgba(92, 255, 0, .18), transparent 29%),
    linear-gradient(120deg, #050805 35%, #0b140a 100%);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
}

.eyebrow span {
  width: 34px;
  height: 2px;
  background: var(--green);
}

h1, h2 {
  margin: 16px 0 35px;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: .84;
}

h1 { font-size: clamp(100px, 13vw, 210px); }
h2 { font-size: clamp(72px, 9vw, 140px); }

h1 em, h2 em {
  color: var(--green);
  font-style: normal;
  text-shadow: 0 0 32px rgba(114, 255, 19, .22);
}

.hero-bottom {
  display: flex;
  align-items: center;
  gap: 36px;
}

.tagline {
  font-size: 13px;
  line-height: 1.8;
  color: #a8b3a2;
}

.tagline b { color: var(--green); }
.tagline .negative { color: #fff; }

.cta {
  min-width: 210px;
  padding: 7px 8px 7px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 999px;
  transition: transform .2s, box-shadow .2s;
}

.cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(114, 255, 19, .27);
}

.contract {
  max-width: 100%;
  margin-top: 35px;
  padding: 7px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  border: 1px solid #34432f;
  border-radius: 8px;
  background: rgba(12, 20, 10, .75);
  color: #aab5a4;
  transition: border-color .2s, color .2s;
}

.contract:hover {
  border-color: var(--green);
  color: white;
}

.contract-label, .copy-icon {
  flex: 0 0 auto;
  padding: 7px 9px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
}

.contract-label {
  background: var(--green);
  color: var(--black);
}

.contract-address {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 11px;
}

.copy-icon {
  margin-left: auto;
  color: var(--green);
}

.cta-arrow {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--black);
  color: var(--green);
  font-size: 23px;
}

.hero-art {
  position: relative;
  justify-self: center;
  width: min(43vw, 610px);
  aspect-ratio: 1;
}

.hero-art::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: auto 5% -5% 5%;
  height: 25%;
  background: linear-gradient(transparent, var(--black));
  filter: blur(8px);
}

.hero-art img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(13% 0, 100% 0, 88% 100%, 0 100%);
  filter: saturate(1.2) contrast(1.08);
}

.orbit {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(186, 255, 90, .65);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  inset: 45% -8% 28% -8%;
  transform: rotate(-11deg);
}

.orbit-two {
  inset: 37% -3% 34% -3%;
  transform: rotate(13deg);
}

.float-label {
  position: absolute;
  z-index: 4;
  padding: 8px 12px;
  border: 1px solid var(--green);
  background: rgba(5, 8, 5, .86);
  color: var(--green);
  font-weight: 700;
  font-size: 12px;
}

.label-one { top: 29%; right: -2%; transform: rotate(7deg); }
.label-two { bottom: 19%; left: -3%; transform: rotate(-8deg); }

.banner-strip {
  position: relative;
  height: clamp(240px, 32vw, 480px);
  overflow: hidden;
  border-block: 2px solid var(--green);
}

.banner-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.25) contrast(1.08);
  transition: transform 7s ease;
}

.banner-strip:hover img { transform: scale(1.05); }

.meter-section {
  min-height: 720px;
  padding: 110px 5vw;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 7vw;
  align-items: center;
  background:
    linear-gradient(rgba(114, 255, 19, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(114, 255, 19, .04) 1px, transparent 1px);
  background-size: 44px 44px;
}

.aura-console {
  padding: clamp(24px, 4vw, 58px);
  border: 1px solid #33432d;
  background: rgba(9, 16, 8, .91);
  box-shadow: 16px 16px 0 var(--green);
}

.score-wrap {
  display: flex;
  align-items: baseline;
  color: var(--green);
}

.score-prefix {
  align-self: flex-start;
  margin-top: 16px;
  font-size: 28px;
}

#auraScore {
  max-width: 100%;
  overflow: hidden;
  font-family: "Anton", sans-serif;
  font-size: clamp(70px, 9vw, 132px);
  line-height: 1;
}

.score-unit { margin-left: 15px; font-weight: 700; }

.level-track {
  height: 8px;
  margin: 25px 0 13px;
  overflow: hidden;
  background: #263020;
}

.level-track span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--green);
  box-shadow: 0 0 14px var(--green);
  transition: width .35s ease;
}

#levelName {
  margin: 0 0 32px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .15em;
}

.aura-buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.aura-buttons button {
  cursor: pointer;
  padding: 15px 8px;
  border: 1px solid #3b4d34;
  background: transparent;
  color: var(--paper);
  font-weight: 700;
  transition: .2s;
}

.aura-buttons button:hover {
  border-color: var(--green);
  background: var(--green);
  color: var(--black);
}

.aura-buttons .infinite {
  grid-column: 1 / -1;
  border-color: var(--green);
  color: var(--green);
}

footer {
  padding: 25px 5vw;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #293323;
  color: #778071;
  font-size: 10px;
  letter-spacing: .13em;
}

.toast {
  position: fixed;
  z-index: 20;
  right: 25px;
  bottom: 25px;
  padding: 17px 24px;
  transform: translateY(120px);
  opacity: 0;
  background: var(--green);
  color: var(--black);
  font-weight: 700;
  transition: .3s;
}

.toast.show { transform: translateY(0); opacity: 1; }

@media (max-width: 800px) {
  .nav { padding: 18px 20px; }
  .buy-small { display: none; }
  .hero {
    padding: 115px 20px 45px;
    grid-template-columns: 1fr;
  }
  h1 { font-size: clamp(86px, 28vw, 140px); }
  .hero-bottom { align-items: flex-start; flex-direction: column; gap: 18px; }
  .contract { width: 100%; }
  .hero-art { width: min(92vw, 560px); margin-top: 50px; }
  .meter-section {
    padding: 80px 20px 100px;
    grid-template-columns: 1fr;
  }
  .aura-console { box-shadow: 8px 8px 0 var(--green); }
  .score-unit { font-size: 11px; }
  footer { gap: 16px; flex-wrap: wrap; }
}

@media (max-width: 470px) {
  .hero { min-height: auto; }
  .hero-art { margin-left: -10px; }
  .aura-buttons { grid-template-columns: repeat(2, 1fr); }
  .aura-buttons .infinite { grid-column: 1 / -1; }
  #auraScore { font-size: 65px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
