/* ----------------------------------------------------
   GLOBAL THEME & RESET
---------------------------------------------------- */

:root {
  --bg-dark: #0b1510;
  --bg-main: #142319;
  --bg-soft: #1b2d21;

  --accent: #9be27b;
  --accent-soft: #4aa96c;
  --accent-glow: rgba(155, 226, 123, 0.4);

  --text-main: #e7f6da;
  --text-soft: #b4c9aa;

  --danger: #f45b69;

  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.45);
  --radius-xl: 22px;
  --transition-fast: 180ms ease-out;

  --nav-height: 70px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Nunito", sans-serif;
  background: radial-gradient(circle at top, #243c28 0, #0b1510 55%, #050806 100%);
  color: var(--text-main);
  min-height: 100vh;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ----------------------------------------------------
   HEADER + NAVIGATION
---------------------------------------------------- */

header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: linear-gradient(
    to bottom,
    rgba(7, 13, 9, 0.92),
    rgba(7, 13, 9, 0.75)
  );
  border-bottom: 1px solid rgba(155, 226, 123, 0.15);
}

.nav-inner {
  height: var(--nav-height);
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, #dafccb 0, #68c37e 45%, #204828 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 2px rgba(155, 226, 123, 0.25);
}

.brand-icon span {
  font-size: 1.15rem;
}

.brand-name {
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
  color: var(--accent);
  text-transform: uppercase;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.9rem;
}

nav a {
  position: relative;
  opacity: 0.8;
  transition: opacity var(--transition-fast);
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--accent), #74f1c4);
  border-radius: 999px;
  transition: width var(--transition-fast);
}

nav a:hover,
nav a:focus-visible {
  opacity: 1;
}

nav a:hover::after,
nav a:focus-visible::after {
  width: 100%;
}

/* CTA in nav */
.nav-cta {
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(155, 226, 123, 0.45);
  background: radial-gradient(circle at 30% 0, rgba(155, 226, 123, 0.3), rgba(11, 21, 16, 0.8));
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  box-shadow: 0 12px 30px rgba(3, 7, 5, 0.9);
}

.nav-toggle {
  display: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(155, 226, 123, 0.3);
  background: rgba(5, 9, 7, 0.8);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 15px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  position: relative;
}

.nav-toggle span::before {
  position: absolute;
  transform: translateY(-4px);
}

.nav-toggle span::after {
  position: absolute;
  transform: translateY(4px);
}

/* ----------------------------------------------------
   MAIN CONTENT WRAPPER
---------------------------------------------------- */

main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2.6rem 1.25rem 4rem;
}

section {
  margin-bottom: 4.5rem;
}

/* ----------------------------------------------------
   HERO SECTION
---------------------------------------------------- */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.3rem, 4vw, 3rem);
  line-height: 1.05;
  margin-bottom: 0.9rem;
}

.hero-highlight {
  background: radial-gradient(circle at 0 50%, rgba(155, 226, 123, 0.25), transparent 55%);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.25rem 0.75rem;
  margin-bottom: 0.9rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-highlight span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
}

.hero-subtitle {
  font-size: 1rem;
  max-width: 32rem;
  color: var(--text-soft);
  margin-bottom: 1.4rem;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  margin-bottom: 1.2rem;
}

.btn {
  border-radius: 999px;
  padding: 0.8rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background: radial-gradient(circle at 20% 0, #e3ffcb 0, #9be27b 40%, #4aa96c 100%);
  color: #061307;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(6, 14, 9, 0.9);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(155, 226, 123, 0.5);
}

.btn-ghost:hover {
  background: rgba(155, 226, 123, 0.06);
  transform: translateY(-1px);
}

.hero-meta {
  font-size: 0.8rem;
  color: var(--text-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.hero-meta span::before {
  content: "•";
  margin-right: 0.35rem;
  color: var(--accent-soft);
  opacity: 0.8;
}

.hero-art {
  position: relative;
}

.hero-card {
  border-radius: 32px;
  padding: 1rem;
  background: radial-gradient(circle at 25% 0, rgba(155, 226, 123, 0.25), rgba(12, 20, 13, 0.98));
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.hero-card img {
  border-radius: 26px;
}

.hero-badge {
  position: absolute;
  right: 0.75rem;
  bottom: 1.3rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(7, 15, 9, 0.9);
  border: 1px solid rgba(155, 226, 123, 0.6);
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-soft);
}

.hero-badge span {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, #e3ffcb 0, #9be27b 40%, #4aa96c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #05200c;
  font-weight: 800;
}

/* ----------------------------------------------------
   SECTION HEADERS
---------------------------------------------------- */

.section-heading {
  margin-bottom: 1.8rem;
}

.section-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.2rem;
}

.section-heading h2 {
  font-size: 1.6rem;
}

.section-heading p {
  font-size: 0.95rem;
  color: var(--text-soft);
  max-width: 32rem;
}

/* ----------------------------------------------------
   CLEARING – ABOUT SECTION
---------------------------------------------------- */

.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
}

.card {
  padding: 1.4rem 1.5rem;
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 0 0, rgba(155, 226, 123, 0.15), rgba(18, 30, 22, 0.98));
  border: 1px solid rgba(155, 226, 123, 0.12);
  box-shadow: var(--shadow-soft);
}

.card h3 {
  margin-bottom: 0.4rem;
}

.card p {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.5;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.8rem;
}

.pill {
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(155, 226, 123, 0.3);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-soft);
  background: rgba(5, 9, 7, 0.6);
}

/* ----------------------------------------------------
   TOKENOMICS – GROVE MAP
---------------------------------------------------- */

.tokenomics-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1.6rem;
}

.token-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.token-list li {
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: linear-gradient(to right, rgba(37, 59, 38, 0.95), rgba(23, 35, 26, 0.95));
  border: 1px solid rgba(155, 226, 123, 0.16);
  display: flex;
  justify-content: space-between;
}

.token-value {
  font-weight: 700;
  color: var(--accent);
}

/* chart */
.ring-chart {
  border-radius: 999px;
  padding: 1.5rem;
  background: radial-gradient(circle at 30% 0, rgba(155, 226, 123, 0.25), rgba(9, 17, 11, 0.98));
  display: flex;
  align-items: center;
  justify-content: center;
}

.ring {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: conic-gradient(
    #9be27b 0 40%,
    #4aa96c 40% 65%,
    #60e5b0 65% 80%,
    #f6d365 80% 90%,
    #f45b69 90% 100%
  );
  box-shadow: 0 0 30px rgba(155, 226, 123, 0.6);
  position: relative;
}

.ring::after {
  content: "";
  position: absolute;
  inset: 26px;
  background: radial-gradient(circle, #101d14, #050907 85%);
  border-radius: 50%;
}

.ring-center {
  position: absolute;
  inset: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.ring-center strong {
  font-size: 1.3rem;
}

/* ----------------------------------------------------
   ROADMAP
---------------------------------------------------- */

.roadmap {
  padding-left: 1.4rem;
  position: relative;
}

.roadmap::before {
  content: "";
  position: absolute;
  left: 0.45rem;
  top: 0.2rem;
  bottom: 0.2rem;
  width: 2px;
  background: linear-gradient(to bottom, rgba(155, 226, 123, 0.7), transparent);
}

.roadmap-step {
  margin-bottom: 1.5rem;
  padding-left: 1.1rem;
  position: relative;
}

.roadmap-step::before {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  left: -0.05rem;
  top: 0.15rem;
  background: radial-gradient(circle at 30% 0, #e3ffcb 0, #9be27b 50%, #4aa96c 100%);
  border-radius: 999px;
}

.roadmap-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.roadmap-title {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.roadmap-body {
  font-size: 0.9rem;
  color: var(--text-soft);
}

/* ----------------------------------------------------
   COMMUNITY – THE BURROW
---------------------------------------------------- */

.burrow-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 1.6rem;
  align-items: center;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.7rem;
}

.social-pill {
  border-radius: 999px;
  padding: 0.6rem 0.95rem;
  border: 1px solid rgba(155, 226, 123, 0.3);
  background: rgba(7, 13, 9, 0.95);
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.social-pill span:first-child {
  width: 22px;
  height: 22px;
  background: radial-gradient(circle at 30% 0, #e3ffcb 0, #9be27b 45%, #4aa96c 100%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.burrow-aside {
  font-size: 0.85rem;
  color: var(--text-soft);
  padding: 1.2rem 1.3rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(to right, rgba(25, 40, 28, 0.95), rgba(12, 18, 14, 0.98));
  border: 1px solid rgba(155, 226, 123, 0.2);
}

/* ----------------------------------------------------
   FOOTER
---------------------------------------------------- */

footer {
  border-top: 1px solid rgba(155, 226, 123, 0.18);
  padding: 1.4rem 1.25rem 2rem;
  max-width: 1120px;
  margin: 0 auto;
  font-size: 0.8rem;
  color: var(--text-soft);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ----------------------------------------------------
   RESPONSIVE
---------------------------------------------------- */

@media (max-width: 880px) {
  .hero,
  .card-grid-2,
  .tokenomics-grid,
  .burrow-grid {
    grid-template-columns: 1fr;
  }

  .hero-art {
    order: -1;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: inline-flex;
  }

  nav {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(5, 9, 7, 0.98);
    border-bottom: 1px solid rgba(155, 226, 123, 0.16);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-fast);
  }

  nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  nav ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.75rem 1.25rem 1rem;
  }
}

@media (max-width: 540px) {
  .hero-cta-row {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}