:root {
  --bg: #050505;
  --bg-2: #0c0c0c;
  --mud: #141414;
  --green: #39ff14;
  --green-hot: #6dff4a;
  --green-dim: rgba(57, 255, 20, 0.22);
  --gold: #39ff14;
  --gold-hot: #6dff4a;
  --amber: #1faa00;
  --bull-red: #39ff14;
  --ink: #eef8ea;
  --muted: #8a9a82;
  --line: rgba(57, 255, 20, 0.18);
  --font-display: "Anton", Impact, sans-serif;
  --font-body: "Syne", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 70% 0%, rgba(57, 255, 20, 0.08), transparent 55%),
    radial-gradient(ellipse 60% 40% at 10% 80%, rgba(57, 255, 20, 0.05), transparent 50%),
    linear-gradient(165deg, #030303 0%, #080808 45%, #050505 100%);
  overflow-x: hidden;
  line-height: 1.5;
}

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

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

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

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' 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");
  mix-blend-mode: overlay;
}

.glow {
  pointer-events: none;
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  animation: drift 14s ease-in-out infinite alternate;
}

.glow-a {
  width: 42vw;
  height: 42vw;
  top: -10%;
  right: -8%;
  background: rgba(57, 255, 20, 0.1);
}

.glow-b {
  width: 30vw;
  height: 30vw;
  bottom: 10%;
  left: -10%;
  background: rgba(57, 255, 20, 0.06);
  animation-delay: -4s;
}

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-4%, 6%) scale(1.08); }
}

.nav {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem clamp(1.25rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
  background: rgba(5, 5, 5, 0.75);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  font-size: 1.15rem;
  color: var(--green);
}

.nav-logo {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border: 2px solid var(--line);
  box-shadow: 0 0 16px rgba(57, 255, 20, 0.25);
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--green-hot);
}

.nav-cta {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.65rem 1rem;
  background: var(--green);
  color: #050505;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
  background: var(--green-hot);
  transform: translateY(-1px);
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.45);
}

.hero {
  position: relative;
  z-index: 1;
  min-height: min(100vh, 920px);
  display: grid;
  align-items: end;
  padding: clamp(2rem, 6vw, 4.5rem) clamp(1.25rem, 4vw, 3rem) clamp(2.5rem, 6vw, 4rem);
  overflow: hidden;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.85;
  animation: hero-in 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.35) 0%, rgba(5, 5, 5, 0.55) 40%, rgba(5, 5, 5, 0.95) 100%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.92) 0%, rgba(5, 5, 5, 0.4) 45%, transparent 75%);
  pointer-events: none;
}

@keyframes hero-in {
  from {
    opacity: 0;
    transform: scale(1.06);
  }
  to {
    opacity: 0.85;
    transform: scale(1);
  }
}

.stamp {
  position: absolute;
  top: 18%;
  right: 8%;
  z-index: 2;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 2.6rem);
  letter-spacing: 0.12em;
  color: var(--green);
  border: 3px solid var(--green);
  padding: 0.35rem 0.7rem;
  transform: rotate(12deg);
  opacity: 0;
  text-shadow: 0 0 20px rgba(57, 255, 20, 0.6);
  box-shadow: 0 0 30px rgba(57, 255, 20, 0.3);
  animation: stamp-in 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 0.7s forwards;
}

@keyframes stamp-in {
  from {
    opacity: 0;
    transform: rotate(12deg) scale(1.4);
  }
  to {
    opacity: 1;
    transform: rotate(12deg) scale(1);
  }
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 38rem;
  animation: rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ticker {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.75rem;
}

.brand {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 14vw, 8.5rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
  text-shadow: 0 0 60px rgba(57, 255, 20, 0.35);
  margin-bottom: 1rem;
}

.tagline {
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  font-weight: 700;
  color: var(--muted);
  max-width: 22ch;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.35rem;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--green);
  color: #050505;
}

.btn-primary:hover {
  background: var(--green-hot);
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(57, 255, 20, 0.5);
}

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(12, 12, 12, 0.65);
}

.btn-ghost:hover {
  border-color: var(--green);
  color: var(--green-hot);
  transform: translateY(-2px);
}

.ca-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  max-width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--line);
  background: rgba(12, 12, 12, 0.8);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.ca-pill:hover {
  border-color: var(--green);
  background: rgba(20, 20, 20, 0.9);
}

.ca-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--green);
}

.ca-value {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ca-hint {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.section {
  position: relative;
  z-index: 1;
  padding: clamp(4rem, 10vw, 7rem) clamp(1.25rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
}

.section-head {
  max-width: 40rem;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.85rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.lede {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--muted);
  max-width: 36rem;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(260px, 420px) 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.about-feature {
  position: sticky;
  top: 2rem;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg-2);
  box-shadow: 0 0 40px rgba(57, 255, 20, 0.12);
}

.about-feature img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.traits {
  list-style: none;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.traits li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}

.trait-img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.traits strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green-hot);
  margin-bottom: 0.25rem;
}

.traits span {
  color: var(--muted);
  font-weight: 500;
}

.gallery-banner {
  margin-bottom: 1px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg-2);
}

.gallery-banner img {
  width: 100%;
  display: block;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
  margin: 0;
}

.gallery-item-wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery-item-wide img {
  aspect-ratio: 2 / 1;
}

.gallery-item:hover img {
  transform: scale(1.04);
  filter: brightness(1.1);
}

.gallery-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  background: linear-gradient(transparent, rgba(5, 5, 5, 0.92));
}

.buy-layout {
  display: grid;
  grid-template-columns: minmax(220px, 340px) 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.buy-visual {
  position: sticky;
  top: 2rem;
  border: 1px solid var(--line);
  overflow: hidden;
  border-radius: 50%;
  aspect-ratio: 1;
  box-shadow: 0 0 50px rgba(57, 255, 20, 0.2);
}

.buy-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.steps {
  list-style: none;
  display: grid;
  gap: 0;
  margin-bottom: 2.5rem;
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem 1.75rem;
  padding: 1.6rem 0;
  border-top: 1px solid var(--line);
}

.steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--green);
  line-height: 1;
  letter-spacing: 0.04em;
}

.steps h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.steps p {
  color: var(--muted);
  font-weight: 500;
  max-width: 36rem;
}

.buy-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  background: linear-gradient(120deg, rgba(20, 20, 20, 0.95), rgba(8, 8, 8, 0.98));
  border: 1px solid var(--line);
}

.buy-ca {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.buy-ca span {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
}

.buy-ca code {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
}

.social-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.social,
.social-btn {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.75rem 1.4rem;
  background: var(--bg-2);
  text-align: left;
  transition: background 0.2s ease, color 0.2s ease;
}

.social:hover,
.social-btn:hover {
  background: #111111;
}

.social-icon {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border: 1px solid var(--line);
  margin-bottom: 0.25rem;
}

.social-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green-hot);
}

.social-handle {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
}

.footer {
  position: relative;
  z-index: 1;
  padding: 3rem clamp(1.25rem, 4vw, 3rem) 2.5rem;
  border-top: 1px solid var(--line);
  text-align: center;
}

.footer-logo {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border: 2px solid var(--line);
  margin: 0 auto 1rem;
  box-shadow: 0 0 24px rgba(57, 255, 20, 0.25);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.5rem);
  letter-spacing: 0.06em;
  color: var(--green);
  margin-bottom: 0.5rem;
}

.footer-tag {
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.footer-note {
  font-size: 0.75rem;
  color: rgba(138, 154, 130, 0.7);
  max-width: 28rem;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .about-grid,
  .buy-layout {
    grid-template-columns: 1fr;
  }

  .about-feature,
  .buy-visual {
    position: static;
    max-width: 420px;
    margin: 0 auto;
  }

  .buy-visual {
    max-width: 280px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item-wide {
    grid-column: span 2;
  }
}

@media (max-width: 820px) {
  .nav-links {
    display: none;
  }

  .social-links {
    grid-template-columns: 1fr;
  }

  .stamp {
    top: 12%;
    right: 4%;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 88vh;
    align-items: end;
  }

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

  .ca-pill {
    width: 100%;
  }

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

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item-wide {
    grid-column: span 1;
  }

  .gallery-item-wide img {
    aspect-ratio: 16 / 9;
  }
}
