:root {
  --lime: #ccff00;
  --lime-deep: #b8e600;
  --ink: #0a0f0a;
  --ink-soft: #1a2218;
  --forest: #1f6b2e;
  --forest-bright: #2f9e44;
  --cream: #f7ffe0;
  --shadow: rgba(10, 15, 10, 0.18);
  --font-display: "Lilita One", cursive;
  --font-body: "Figtree", sans-serif;
  --max: 1120px;
  --radius: 4px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(47, 158, 68, 0.22), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(10, 15, 10, 0.08), transparent 50%),
    linear-gradient(180deg, var(--lime) 0%, var(--lime-deep) 100%);
  background-attachment: fixed;
  line-height: 1.5;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0.04;
  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='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.9rem 1.25rem;
  backdrop-filter: blur(10px);
  background: color-mix(in srgb, var(--lime) 78%, transparent);
  border-bottom: 2px solid rgba(10, 15, 10, 0.08);
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}

.nav-brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  object-fit: cover;
  background: var(--lime);
}

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

.nav-links a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-cta {
  flex-shrink: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid var(--ink);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 4px 4px 0 var(--ink);
}

.btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn-dark {
  background: var(--ink);
  color: var(--lime);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
}

.btn-sm {
  padding: 0.55rem 0.9rem;
  font-size: 0.85rem;
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Hero */
.hero {
  max-width: var(--max);
  margin: 0 auto;
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 2rem;
  padding: 2rem 1.25rem 3.5rem;
}

.hero-copy {
  position: relative;
  z-index: 2;
  animation: rise 0.8s ease both;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.75rem;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
}

.hero h1 {
  margin: 0;
  line-height: 0.92;
}

.brand-line,
.brand-andy {
  display: block;
  font-family: var(--font-display);
  letter-spacing: 0.01em;
}

.brand-line {
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  color: var(--ink);
}

.brand-andy {
  font-size: clamp(4.2rem, 12vw, 8rem);
  color: var(--forest);
  text-shadow: 4px 4px 0 rgba(10, 15, 10, 0.12);
  animation: pop 0.9s 0.15s cubic-bezier(0.22, 1.2, 0.36, 1) both;
}

.ticker {
  margin: 0.6rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: 0.08em;
}

.tagline {
  margin: 1rem 0 0;
  max-width: 28rem;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--ink-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.hero-art {
  position: relative;
  display: grid;
  place-items: center;
  animation: float-in 1s 0.1s ease both;
}

.feather {
  position: absolute;
  width: min(78%, 380px);
  aspect-ratio: 1 / 2.2;
  background:
    radial-gradient(circle at 50% 12%, #fff 0 10%, transparent 11%),
    linear-gradient(180deg, var(--ink) 0%, #1c2a18 100%);
  clip-path: polygon(
    50% 0%,
    62% 8%,
    70% 22%,
    74% 40%,
    72% 58%,
    66% 74%,
    58% 88%,
    50% 100%,
    42% 88%,
    34% 74%,
    28% 58%,
    26% 40%,
    30% 22%,
    38% 8%
  );
  opacity: 0.12;
  transform: rotate(-18deg) translate(8%, -4%);
  animation: feather-sway 6s ease-in-out infinite;
}

.hero-logo {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  filter: drop-shadow(0 18px 0 rgba(10, 15, 10, 0.12));
  animation: bob 4.5s ease-in-out infinite;
}

/* Sections */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4.5rem 1.25rem;
}

.section-head {
  max-width: 36rem;
  margin-bottom: 2.25rem;
}

.section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1;
  letter-spacing: 0.01em;
}

.section-head p {
  margin: 0.85rem 0 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.story-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.story-list li {
  padding: 1.15rem 0;
  border-top: 2px solid rgba(10, 15, 10, 0.14);
  font-size: 1.08rem;
}

.story-list li:last-child {
  border-bottom: 2px solid rgba(10, 15, 10, 0.14);
}

.story-list strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  margin-right: 0.35rem;
}

/* Tokenomics */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat {
  padding: 1.4rem 1rem;
  text-align: center;
  border: 2px solid var(--ink);
  background: color-mix(in srgb, var(--cream) 55%, transparent);
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
  color: var(--forest);
}

.stat-label {
  display: block;
  margin-top: 0.45rem;
  font-weight: 700;
  font-size: 0.9rem;
}

.ca-box {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  padding: 1.1rem 1.2rem;
  border: 2px dashed var(--ink);
  background: rgba(10, 15, 10, 0.04);
}

.ca-label {
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  width: 100%;
}

.ca-box code {
  flex: 1;
  min-width: 200px;
  font-size: 0.95rem;
  font-weight: 600;
}

/* Memes */
.meme-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.meme {
  margin: 0;
  overflow: hidden;
  border: 2px solid var(--ink);
  background: var(--lime);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.meme:hover {
  transform: translateY(-4px) rotate(-0.4deg);
  box-shadow: 6px 6px 0 var(--ink);
}

.meme img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--lime);
}

.meme-logo img {
  object-fit: contain;
  padding: 1.25rem;
}

.meme figcaption {
  padding: 0.65rem 0.85rem;
  font-weight: 700;
  font-size: 0.9rem;
  border-top: 2px solid var(--ink);
  background: color-mix(in srgb, var(--cream) 70%, transparent);
}

/* How to */
.steps {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  color: var(--forest);
}

.steps h3 {
  margin: 0;
  font-size: 1.25rem;
}

.steps p {
  margin: 0.3rem 0 0;
  font-weight: 600;
  color: var(--ink-soft);
}

/* Footer */
.footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3rem;
  border-top: 2px solid rgba(10, 15, 10, 0.14);
  display: grid;
  gap: 1rem;
}

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

.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  object-fit: cover;
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
}

.footer-brand span {
  font-weight: 700;
}

.footer-note a {
  font-weight: 800;
  text-underline-offset: 3px;
}

.disclaimer {
  margin: 0;
  max-width: 40rem;
  font-size: 0.82rem;
  font-weight: 600;
  opacity: 0.7;
}

/* Motion */
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pop {
  from {
    opacity: 0;
    transform: scale(0.88) translateY(12px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes float-in {
  from {
    opacity: 0;
    transform: translateX(28px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

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

@keyframes feather-sway {
  0%,
  100% {
    transform: rotate(-18deg) translate(8%, -4%);
  }
  50% {
    transform: rotate(-12deg) translate(10%, -2%);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 1.5rem;
    text-align: center;
  }

  .hero-copy {
    order: 2;
  }

  .hero-art {
    order: 1;
  }

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

  .hero-actions {
    justify-content: center;
  }

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

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

  .section-head {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 520px) {
  .nav {
    padding-inline: 1rem;
  }

  .nav-cta {
    padding: 0.65rem 0.85rem;
    font-size: 0.85rem;
  }

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

  .stat {
    padding: 1.1rem 0.75rem;
  }
}
