:root {
  --pepe: #3ecf4a;
  --pepe-deep: #1f8a2e;
  --pepe-dark: #0d3d18;
  --pepe-mist: #b8f5b0;
  --gold: #e8c547;
  --gold-deep: #c9a227;
  --cyan: #3de7ff;
  --ink: #0a1f0e;
  --paper: #f2fff0;
  --foam: rgba(242, 255, 240, 0.92);
  --stroke: rgba(14, 70, 28, 0.18);
  --shadow: 0 18px 50px rgba(8, 40, 14, 0.22);
  --radius: 18px;
  --font-display: "Bungee", system-ui, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --nav-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(62, 207, 74, 0.35), transparent 55%),
    radial-gradient(900px 500px at 100% 20%, rgba(61, 231, 255, 0.18), transparent 50%),
    linear-gradient(180deg, #d9f7d4 0%, #eefceb 28%, #c8f0c4 70%, #9adf96 100%);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.55;
}

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

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

code {
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
}

.bg-mesh {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background-image:
    linear-gradient(rgba(30, 120, 45, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 120, 45, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.float-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.45;
  animation: drift 16s ease-in-out infinite;
}

.orb-a {
  width: 280px;
  height: 280px;
  background: var(--pepe);
  top: 12%;
  left: -6%;
}

.orb-b {
  width: 220px;
  height: 220px;
  background: var(--cyan);
  top: 55%;
  right: -4%;
  animation-delay: -5s;
  animation-duration: 20s;
}

.orb-c {
  width: 180px;
  height: 180px;
  background: var(--gold);
  bottom: 8%;
  left: 35%;
  animation-delay: -9s;
  animation-duration: 18s;
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -40px) scale(1.08); }
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.25rem;
  background: rgba(214, 247, 210, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--stroke);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--pepe-dark);
}

.nav-brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 3px rgba(62, 207, 74, 0.35);
  animation: pulse-ring 2.8s ease-in-out infinite;
}

@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 0 0 3px rgba(62, 207, 74, 0.35); }
  50% { box-shadow: 0 0 0 7px rgba(62, 207, 74, 0.12), 0 0 24px rgba(61, 231, 255, 0.35); }
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-links a {
  position: relative;
  color: var(--pepe-dark);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--pepe);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--stroke);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.55);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--pepe-dark);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav.open .nav-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav.open .nav-toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  padding: calc(var(--nav-h) + 1rem) 1.25rem 3.5rem;
  color: #fff;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.04);
  animation: kenburns 22s ease-in-out infinite alternate;
}

@keyframes kenburns {
  from { transform: scale(1.04) translate(0, 0); }
  to { transform: scale(1.12) translate(-1.5%, -1%); }
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 40, 14, 0.15) 0%, rgba(8, 40, 14, 0.25) 40%, rgba(8, 40, 14, 0.88) 100%),
    linear-gradient(90deg, rgba(8, 40, 14, 0.55) 0%, transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  animation: rise-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

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

.ticker-pill {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.35rem 0.85rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--pepe-dark);
  background: linear-gradient(135deg, var(--gold), #ffe28a);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  animation: bob 3s ease-in-out infinite;
}

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

.brand-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 9vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-shadow: 0 6px 0 rgba(0, 0, 0, 0.25);
}

.brand-glow {
  background: linear-gradient(180deg, #fff 10%, var(--pepe-mist) 55%, var(--pepe) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 18px rgba(62, 207, 74, 0.55));
}

.hero-desc {
  margin: 1rem 0 1.5rem;
  max-width: 34ch;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  color: var(--pepe-dark);
  background: linear-gradient(135deg, var(--pepe), #7dff86);
  box-shadow: 0 10px 28px rgba(62, 207, 74, 0.45);
}

.btn-primary:hover {
  box-shadow: 0 14px 34px rgba(62, 207, 74, 0.55);
}

.btn-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-sm {
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
  border-radius: 12px;
}

.ca-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.85rem;
  max-width: 100%;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  backdrop-filter: blur(10px);
}

.ca-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.06em;
}

.ca-value {
  font-size: clamp(0.68rem, 2.2vw, 0.85rem);
  color: #e8ffe6;
  word-break: break-all;
}

.scroll-cue {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.scroll-cue span {
  display: block;
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  position: relative;
}

.scroll-cue span::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  border-radius: 999px;
  background: var(--pepe);
  animation: scroll-dot 1.6s ease-in-out infinite;
}

@keyframes scroll-dot {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(12px); }
}

/* Sections */
.section {
  padding: 5.5rem 1.25rem;
  position: relative;
}

.section-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pepe-deep);
}

.section h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.15;
  color: var(--pepe-dark);
}

.lead {
  margin: 0 0 2rem;
  max-width: 48ch;
  font-size: 1.15rem;
  color: rgba(10, 31, 14, 0.78);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature {
  padding: 1.4rem 1.25rem 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.72), rgba(190, 245, 185, 0.55));
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  transform: translateY(24px);
  opacity: 0;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.55s ease, border-color 0.2s ease;
}

.feature.visible {
  transform: translateY(0);
  opacity: 1;
}

.feature:nth-child(2) { transition-delay: 0.1s; }
.feature:nth-child(3) { transition-delay: 0.2s; }

.feature:hover {
  border-color: rgba(62, 207, 74, 0.55);
}

.feature h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--pepe-dark);
}

.feature p {
  margin: 0;
  color: rgba(10, 31, 14, 0.75);
}

/* How to buy */
.howto {
  background:
    linear-gradient(180deg, transparent, rgba(62, 207, 74, 0.12), transparent);
}

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

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius);
  background: var(--foam);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateX(-20px);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.55s ease;
}

.step.visible {
  opacity: 1;
  transform: translateX(0);
  transition-delay: calc(var(--i) * 0.08s);
}

.step-num {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--pepe);
  line-height: 1;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.08);
}

.step h3 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  color: var(--pepe-dark);
}

.step p {
  margin: 0;
  color: rgba(10, 31, 14, 0.75);
}

.buy-ca {
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--pepe-dark), #145c22);
  color: #fff;
  box-shadow: var(--shadow);
}

.buy-ca > p {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.ca-copy-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.ca-copy-bar code {
  flex: 1;
  min-width: 0;
  word-break: break-all;
  font-size: clamp(0.72rem, 2.2vw, 0.9rem);
  color: #e9ffe8;
}

/* Chart */
.chart-lead {
  margin-bottom: 1.25rem;
}

.chart-frame {
  position: relative;
  width: 100%;
  height: min(640px, 75vh);
  border-radius: 22px;
  overflow: hidden;
  border: 2px solid rgba(62, 207, 74, 0.45);
  box-shadow:
    0 0 0 6px rgba(62, 207, 74, 0.12),
    var(--shadow);
  background: #0b1210;
}

.chart-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Socials */
.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 200px;
  padding: 1.1rem 1.35rem;
  border-radius: 16px;
  font-weight: 700;
  color: var(--pepe-dark);
  background: linear-gradient(145deg, #fff, #d8fad4);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.social-link:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 18px 40px rgba(62, 207, 74, 0.28);
  background: linear-gradient(145deg, #f3fff1, #b8f5b0);
}

.social-link svg {
  flex-shrink: 0;
}

/* Footer */
.footer {
  display: grid;
  gap: 0.75rem;
  justify-items: center;
  text-align: center;
  padding: 2.5rem 1.25rem 3rem;
  border-top: 1px solid var(--stroke);
  background: rgba(13, 61, 24, 0.08);
}

.footer img {
  border-radius: 50%;
  border: 2px solid var(--gold);
}

.footer strong {
  font-family: var(--font-display);
}

.footer p {
  margin: 0.25rem 0 0;
  color: rgba(10, 31, 14, 0.7);
}

.disclaimer {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  background: var(--pepe-dark);
  color: #fff;
  font-weight: 700;
  box-shadow: var(--shadow);
  z-index: 100;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 860px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0;
    background: rgba(214, 247, 210, 0.96);
    border-bottom: 1px solid var(--stroke);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav.open .nav-links {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links a {
    padding: 0.9rem 1.25rem;
  }
}

@media (max-width: 520px) {
  .hero {
    align-items: end;
    padding-bottom: 4rem;
  }

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

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

  .hero-banner {
    transform: none;
  }
}
