:root {
  --bg: #f7faf4;
  --bg-soft: #eef6e7;
  --bg-mint: #e6f1db;
  --green: #6e8f3b;
  --green-dark: #4f6b2c;
  --green-accent: #9bcb5a;
  --blue: #2f63c7;
  --text: #1d2a17;
  --muted: #61715b;
  --white: #ffffff;
  --line: rgba(79, 107, 44, 0.16);
  --shadow: 0 24px 70px rgba(79, 107, 44, 0.16);
  --shadow-soft: 0 14px 44px rgba(47, 99, 199, 0.12);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 44%, var(--bg) 100%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.section-pad {
  padding: 118px 0;
}

.noise-layer {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, transparent, black 12%, black 72%, transparent);
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 2;
}

.site-header {
  z-index: 50;
}

.site-glow {
  position: fixed;
  z-index: -3;
  width: 46vw;
  max-width: 680px;
  aspect-ratio: 1;
  border-radius: 38% 62% 44% 56% / 44% 42% 58% 56%;
  filter: blur(34px);
  opacity: 0.42;
  pointer-events: none;
  animation: drift 18s ease-in-out infinite alternate;
}

.site-glow-one {
  top: -14vw;
  left: -10vw;
  background: linear-gradient(135deg, rgba(155, 203, 90, 0.75), rgba(47, 99, 199, 0.18));
}

.site-glow-two {
  right: -16vw;
  bottom: 12vh;
  background: linear-gradient(135deg, rgba(47, 99, 199, 0.25), rgba(110, 143, 59, 0.55));
  animation-delay: -6s;
}

@keyframes drift {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
  100% {
    transform: translate3d(36px, 28px, 0) rotate(10deg) scale(1.08);
  }
}

.site-header {
  position: fixed;
  inset: 16px 0 auto;
  z-index: 50;
  transition:
    transform 0.35s ease,
    inset 0.35s ease;
}

.site-header.is-scrolled {
  inset: 10px 0 auto;
}

.nav-shell {
  width: min(1120px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  padding: 10px 12px 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 55px rgba(79, 107, 44, 0.12);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(79, 107, 44, 0.2);
}

.brand span {
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  min-height: 44px;
  padding: 12px 15px;
  border-radius: 999px;
  color: rgba(29, 42, 23, 0.72);
  font-size: 0.92rem;
  font-weight: 750;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--green-dark);
  background: rgba(155, 203, 90, 0.16);
  transform: translateY(-1px);
}

.nav-links .nav-cta {
  margin-left: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--green-accent));
  box-shadow: 0 12px 26px rgba(110, 143, 59, 0.26);
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta:focus-visible {
  color: var(--white);
  background: linear-gradient(135deg, var(--green-dark), var(--green-accent));
  box-shadow: 0 15px 34px rgba(110, 143, 59, 0.32);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(110, 143, 59, 0.16), rgba(47, 99, 199, 0.1));
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 166px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 78% 38%, rgba(47, 99, 199, 0.14), transparent 23%),
    radial-gradient(circle at 68% 62%, rgba(155, 203, 90, 0.23), transparent 29%),
    linear-gradient(145deg, var(--bg) 0%, var(--bg-soft) 48%, var(--bg-mint) 100%);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: auto -8% -17% -8%;
  height: 34%;
  background: var(--bg);
  border-radius: 50% 50% 0 0 / 72% 72% 0 0;
}

.hero-ring {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(110, 143, 59, 0.22);
  animation: ringFloat 10s ease-in-out infinite;
}

.hero-ring-a {
  width: 220px;
  height: 220px;
  right: 12%;
  top: 21%;
}

.hero-ring-b {
  width: 130px;
  height: 130px;
  right: 7%;
  top: 58%;
  border-color: rgba(47, 99, 199, 0.18);
  animation-delay: -4s;
}

.hero-ring-c {
  width: 70px;
  height: 70px;
  left: 8%;
  bottom: 22%;
  animation-delay: -2s;
}

@keyframes ringFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.45;
  }
  50% {
    transform: translateY(-18px) scale(1.04);
    opacity: 0.9;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.88fr);
  align-items: center;
  gap: 70px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green-dark);
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3.35rem, 8.4vw, 7.8rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.24rem;
  letter-spacing: -0.025em;
}

.hero-subhead {
  max-width: 660px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 16px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 850;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.35s ease;
  will-change: transform;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--green-dark), var(--green) 42%, var(--green-accent));
  box-shadow: 0 17px 38px rgba(110, 143, 59, 0.3);
}

.btn-secondary {
  color: var(--green-dark);
  border-color: rgba(79, 107, 44, 0.24);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 28px rgba(79, 107, 44, 0.1);
  backdrop-filter: blur(16px);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px) scale(1.02);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 20px 45px rgba(110, 143, 59, 0.38);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: var(--white);
  box-shadow: 0 18px 36px rgba(79, 107, 44, 0.16);
}

.btn-arrow {
  font-weight: 900;
}

.btn-logo,
.btn-icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 999px;
}

.btn-logo {
  padding: 2px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 8px 16px rgba(29, 42, 23, 0.12);
}

.btn-icon {
  color: var(--green-dark);
  background: linear-gradient(135deg, rgba(155, 203, 90, 0.24), rgba(47, 99, 199, 0.1));
}

.btn-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
}

.hero-metrics div {
  min-height: 94px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 12px 30px rgba(79, 107, 44, 0.1);
  backdrop-filter: blur(16px);
}

.hero-metrics strong {
  display: block;
  margin-bottom: 5px;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  letter-spacing: -0.035em;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-visual {
  min-height: 540px;
  display: grid;
  place-items: center;
}

.logo-stage {
  position: relative;
  width: min(440px, 86vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.logo-stage::before {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 40% 60% 54% 46% / 48% 40% 60% 52%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.24)),
    radial-gradient(circle at 35% 28%, rgba(155, 203, 90, 0.4), transparent 35%);
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 28px 80px rgba(47, 99, 199, 0.16);
  backdrop-filter: blur(18px);
  animation: blobMorph 12s ease-in-out infinite;
}

.hero-logo {
  position: relative;
  z-index: 2;
  width: 78%;
  border-radius: 999px;
  filter: drop-shadow(0 32px 48px rgba(79, 107, 44, 0.25));
  animation: logoFloat 5.5s ease-in-out infinite;
}

.soft-aura {
  position: absolute;
  inset: 1%;
  border-radius: 44% 56% 42% 58% / 46% 38% 62% 54%;
  filter: blur(6px);
  opacity: 0.62;
  animation: auraPulse 7s ease-in-out infinite;
}

.aura-one {
  background: radial-gradient(circle at 45% 35%, rgba(155, 203, 90, 0.45), transparent 64%);
}

.aura-two {
  inset: 9% -5% -3% 13%;
  background: radial-gradient(circle at 70% 62%, rgba(47, 99, 199, 0.28), transparent 58%);
  animation-delay: -3s;
}

.orbit {
  position: absolute;
  z-index: 1;
  border-radius: 999px;
  border: 1px solid rgba(79, 107, 44, 0.18);
}

.orbit-one {
  inset: 3%;
  animation: spinSlow 22s linear infinite;
}

.orbit-two {
  inset: 18%;
  border-color: rgba(47, 99, 199, 0.18);
  animation: spinSlow 18s linear infinite reverse;
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-18px) rotate(1.5deg);
  }
}

@keyframes blobMorph {
  0%,
  100% {
    border-radius: 40% 60% 54% 46% / 48% 40% 60% 52%;
    transform: rotate(0deg);
  }
  50% {
    border-radius: 58% 42% 45% 55% / 42% 58% 42% 58%;
    transform: rotate(8deg);
  }
}

@keyframes auraPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.48;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.74;
  }
}

@keyframes spinSlow {
  to {
    transform: rotate(360deg);
  }
}

.split-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 38px;
  align-items: start;
}

.section-heading {
  position: relative;
}

.section-heading h2 {
  max-width: 760px;
}

.section-heading.centered {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading.centered h2 {
  margin-inline: auto;
}

.about {
  position: relative;
}

.about::before,
.features::before,
.roadmap::before {
  content: "";
  position: absolute;
  inset: 28px 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(79, 107, 44, 0.18), transparent);
}

.about-stack {
  display: grid;
  gap: 18px;
}

.glass-card,
.feature-card,
.token-card,
.roadmap-card,
.community-panel {
  border: 1px solid rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.52)),
    linear-gradient(135deg, rgba(155, 203, 90, 0.1), rgba(47, 99, 199, 0.06));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.glass-card {
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--radius-lg);
}

.glass-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.9vw, 1.22rem);
}

.features {
  position: relative;
  background: linear-gradient(180deg, transparent 0%, rgba(230, 241, 219, 0.72) 100%);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  position: relative;
  min-height: 280px;
  padding: 26px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: auto -30% -48% 18%;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155, 203, 90, 0.22), transparent 68%);
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.feature-card:hover,
.feature-card.reveal.is-visible:hover {
  transform: perspective(900px) translateY(-8px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  border-color: rgba(155, 203, 90, 0.58);
  box-shadow: 0 30px 70px rgba(79, 107, 44, 0.19);
}

.feature-card:hover::before {
  transform: translateY(-12px) scale(1.05);
  opacity: 0.95;
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 48px;
  border-radius: 18px;
  color: var(--green-dark);
  background: linear-gradient(135deg, rgba(155, 203, 90, 0.28), rgba(47, 99, 199, 0.1));
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.feature-card h3 {
  font-size: 1.45rem;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.token {
  position: relative;
}

.token-card {
  position: relative;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 34px;
  padding: clamp(26px, 5vw, 54px);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.token-card::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  right: -110px;
  top: -130px;
  border-radius: 41% 59% 48% 52% / 58% 42% 58% 42%;
  background: linear-gradient(135deg, rgba(47, 99, 199, 0.18), rgba(155, 203, 90, 0.22));
  filter: blur(2px);
}

.token-copy,
.token-details {
  position: relative;
  z-index: 1;
}

.token-copy p:not(.eyebrow) {
  max-width: 450px;
  color: var(--muted);
  font-size: 1.08rem;
}

.token-details {
  display: grid;
  gap: 12px;
  margin: 0;
}

.token-details div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 74px;
  padding: 16px 18px;
  border: 1px solid rgba(79, 107, 44, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.56);
}

.token-details dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.token-details dd {
  margin: 0;
  font-size: 1.06rem;
  font-weight: 850;
}

.contract-row dd {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.contract-row code {
  flex: 1;
  min-width: 0;
  padding: 11px 12px;
  overflow: hidden;
  color: var(--green-dark);
  background: rgba(238, 246, 231, 0.8);
  border-radius: 14px;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.92rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.copy-btn {
  min-height: 43px;
  padding: 10px 15px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--green-accent));
  font-weight: 850;
  box-shadow: 0 10px 22px rgba(110, 143, 59, 0.22);
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
}

.copy-btn:disabled {
  color: rgba(29, 42, 23, 0.45);
  background: rgba(238, 246, 231, 0.9);
  box-shadow: none;
  cursor: not-allowed;
}

.copy-btn:not(:disabled):hover {
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 14px 28px rgba(110, 143, 59, 0.28);
}

.roadmap {
  position: relative;
  background: linear-gradient(180deg, rgba(230, 241, 219, 0.62), rgba(247, 250, 244, 0));
}

.roadmap-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(250px, 1fr));
  gap: 16px;
  overflow-x: auto;
  padding: 8px 4px 18px;
  scroll-snap-type: x mandatory;
}

.roadmap-card {
  min-height: 238px;
  padding: 25px;
  border-radius: var(--radius-lg);
  scroll-snap-align: start;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.roadmap-card:hover,
.roadmap-card.reveal.is-visible:hover {
  transform: perspective(900px) translateY(-6px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  box-shadow: 0 28px 62px rgba(79, 107, 44, 0.18);
}

.roadmap-card span {
  display: inline-flex;
  margin-bottom: 42px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(47, 99, 199, 0.1);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.roadmap-card h3 {
  font-size: 1.4rem;
}

.roadmap-card p {
  margin: 0 0 5px;
  color: var(--muted);
  font-weight: 720;
}

.community {
  padding-top: 88px;
}

.community-panel {
  position: relative;
  overflow: hidden;
  max-width: 1000px;
  padding: clamp(34px, 6vw, 70px);
  border-radius: 42px;
  text-align: center;
}

.community-panel::before {
  content: "";
  position: absolute;
  inset: -35% -8% auto auto;
  width: 430px;
  height: 430px;
  border-radius: 43% 57% 40% 60% / 44% 58% 42% 56%;
  background: linear-gradient(135deg, rgba(47, 99, 199, 0.18), rgba(155, 203, 90, 0.26));
  animation: blobMorph 12s ease-in-out infinite reverse;
}

.community-panel > * {
  position: relative;
  z-index: 1;
}

.community-panel img {
  width: 96px;
  height: 96px;
  margin: 0 auto 22px;
  border-radius: 999px;
  box-shadow: 0 18px 36px rgba(79, 107, 44, 0.2);
}

.community-panel h2 {
  margin-inline: auto;
}

.community-panel p:not(.eyebrow):not(.placeholder-note) {
  max-width: 650px;
  margin: 0 auto 30px;
  color: var(--muted);
  font-size: 1.08rem;
}

.social-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 170px;
  min-height: 64px;
  padding: 14px 18px;
  border: 1px solid rgba(79, 107, 44, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 14px 30px rgba(79, 107, 44, 0.1);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.social-btn .social-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.social-icon svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.social-icon-x {
  background: linear-gradient(135deg, #0b1608, #2f63c7);
}

.social-icon-telegram {
  background: linear-gradient(135deg, #2f63c7, #55a8ff);
}

.social-icon-dex {
  background: linear-gradient(135deg, #6e8f3b, #9bcb5a);
}

.social-btn strong {
  font-size: 0.97rem;
}

.social-btn:hover,
.social-btn:focus-visible {
  transform: perspective(900px) translateY(-3px) scale(1.025) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  border-color: rgba(155, 203, 90, 0.62);
  box-shadow: 0 20px 40px rgba(79, 107, 44, 0.16);
}

.placeholder-note {
  min-height: 22px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-footer {
  padding: 36px 0 42px;
  color: var(--muted);
  text-align: center;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}

.footer-brand {
  justify-self: start;
}

.footer-brand img {
  width: 38px;
  height: 38px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  font-size: 0.92rem;
  font-weight: 750;
}

.footer-nav a,
.footer-social a {
  transition: color 0.22s ease, transform 0.22s ease;
}

.footer-nav a:hover,
.footer-social a:hover {
  color: var(--green-dark);
}

.footer-social {
  justify-self: end;
  display: flex;
  gap: 8px;
}

.footer-social a {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.74rem;
  font-weight: 950;
  box-shadow: 0 8px 18px rgba(79, 107, 44, 0.1);
}

.footer-social svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.footer-social a:hover {
  transform: translateY(-2px);
}

.site-footer p {
  margin: 0;
  font-size: 0.9rem;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 24%, rgba(110, 143, 59, 0.05) 0 3px, transparent 4px),
    radial-gradient(circle at 82% 66%, rgba(47, 99, 199, 0.045) 0 3px, transparent 4px);
  background-size: 46px 46px, 62px 62px;
  opacity: 0.68;
}

.nav-shell {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.58)),
    rgba(255, 255, 255, 0.68);
  box-shadow:
    0 18px 55px rgba(79, 107, 44, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

h1 {
  background: linear-gradient(135deg, #16220f 0%, var(--green-dark) 58%, var(--blue) 118%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-note {
  max-width: 540px;
  margin: 18px 0 0;
  color: rgba(97, 113, 91, 0.88);
  font-size: 0.92rem;
  font-weight: 720;
}

.logo-stage::after {
  content: "";
  position: absolute;
  inset: 26%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0));
  filter: blur(24px);
  opacity: 0.72;
}

.hero-chip {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: 2px;
  min-width: 172px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 18px 38px rgba(79, 107, 44, 0.13);
  backdrop-filter: blur(18px);
  animation: chipFloat 6.5s ease-in-out infinite;
}

.hero-chip span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-chip strong {
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}

.hero-chip-bottom {
  right: -6%;
  bottom: 13%;
  animation-delay: -3s;
}

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

.mini-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.mini-proof span {
  padding: 10px 14px;
  border: 1px solid rgba(79, 107, 44, 0.13);
  border-radius: 999px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 10px 24px rgba(79, 107, 44, 0.08);
  font-size: 0.84rem;
  font-weight: 820;
}

.about-mascot-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(47, 99, 199, 0.08), rgba(155, 203, 90, 0.16)),
    rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  transition:
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    transform 0.28s ease;
}

.about-mascot-card:hover {
  transform: translateY(-4px);
  border-color: rgba(155, 203, 90, 0.42);
  box-shadow: 0 34px 82px rgba(79, 107, 44, 0.18);
}

.about-mascot-card img {
  width: 86px;
  height: 86px;
  flex: 0 0 86px;
  border-radius: 999px;
  box-shadow: 0 16px 28px rgba(47, 99, 199, 0.12);
}

.about-mascot-card h3 {
  margin-bottom: 5px;
}

.about-mascot-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.glass-card:hover,
.token-card:hover,
.community-panel:hover {
  border-color: rgba(155, 203, 90, 0.42);
  box-shadow: 0 34px 82px rgba(79, 107, 44, 0.18);
}

.feature-card {
  isolation: isolate;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0), rgba(47, 99, 199, 0.08));
  transition: opacity 0.28s ease;
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-icon {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.24)),
    linear-gradient(135deg, rgba(155, 203, 90, 0.35), rgba(47, 99, 199, 0.12));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 12px 24px rgba(79, 107, 44, 0.1);
}

.feature-icon svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.token-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.58)),
    radial-gradient(circle at 12% 22%, rgba(155, 203, 90, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(155, 203, 90, 0.1), rgba(47, 99, 199, 0.08));
}

.token-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(79, 107, 44, 0.08);
  border-radius: 26px;
  pointer-events: none;
}

.token-emblem {
  width: 74px;
  height: 74px;
  margin-bottom: 24px;
  border-radius: 999px;
  box-shadow: 0 18px 34px rgba(79, 107, 44, 0.2);
}

.roadmap-track {
  position: relative;
}

.roadmap-track::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 34px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, transparent, rgba(47, 99, 199, 0.22), rgba(155, 203, 90, 0.32), transparent);
}

.roadmap-card {
  position: relative;
}

.roadmap-card::before {
  content: "";
  position: absolute;
  top: 27px;
  right: 26px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--green-accent);
  box-shadow:
    0 0 0 8px rgba(155, 203, 90, 0.14),
    0 0 28px rgba(155, 203, 90, 0.58);
}

.community-panel {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.58)),
    radial-gradient(circle at 50% 0%, rgba(155, 203, 90, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(155, 203, 90, 0.1), rgba(47, 99, 199, 0.08));
}

.community-orbit {
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(79, 107, 44, 0.14);
  border-radius: 999px;
  pointer-events: none;
}

.community-orbit-a {
  width: 260px;
  height: 260px;
  left: -86px;
  bottom: -112px;
  animation: ringFloat 11s ease-in-out infinite;
}

.community-orbit-b {
  width: 170px;
  height: 170px;
  right: 13%;
  top: -54px;
  border-color: rgba(47, 99, 199, 0.15);
  animation: ringFloat 9s ease-in-out infinite reverse;
}

:root {
  --meme-border: rgba(79, 107, 44, 0.42);
  --meme-border-strong: #4f6b2c;
  --meme-sticker-shadow: 0 7px 0 rgba(79, 107, 44, 0.12), 0 26px 60px rgba(79, 107, 44, 0.14);
}

body::after {
  content: "";
  position: fixed;
  inset: 10px;
  z-index: 80;
  pointer-events: none;
  border: 2px solid rgba(79, 107, 44, 0.2);
  border-radius: 28px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.62);
}

.section-pad {
  position: relative;
}

.section-pad::after {
  content: "";
  position: absolute;
  inset: 18px 22px;
  z-index: 0;
  pointer-events: none;
  border: 1px dashed rgba(79, 107, 44, 0.14);
  border-radius: 34px;
  opacity: 0.72;
}

.hero.section-pad::after {
  top: 104px;
}

.section-pad > .container,
.hero-bg {
  position: relative;
  z-index: 1;
}

.nav-shell {
  border: 2px solid rgba(79, 107, 44, 0.26);
  box-shadow:
    0 7px 0 rgba(79, 107, 44, 0.1),
    0 22px 55px rgba(79, 107, 44, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.brand img,
.hero-logo,
.community-panel img,
.token-emblem,
.about-mascot-card img {
  border: 3px solid rgba(79, 107, 44, 0.56);
}

.btn,
.nav-links .nav-cta,
.social-btn,
.copy-btn,
.mini-proof span {
  border: 2px solid rgba(79, 107, 44, 0.3);
}

.btn-primary,
.nav-links .nav-cta {
  border-color: rgba(29, 42, 23, 0.34);
  box-shadow:
    0 5px 0 rgba(79, 107, 44, 0.28),
    0 17px 38px rgba(110, 143, 59, 0.3);
}

.btn-secondary,
.social-btn,
.mini-proof span,
.footer-social a {
  box-shadow:
    0 5px 0 rgba(79, 107, 44, 0.1),
    0 14px 28px rgba(79, 107, 44, 0.1);
}

.hero-metrics div,
.glass-card,
.feature-card,
.token-card,
.roadmap-card,
.community-panel,
.about-mascot-card,
.token-details div {
  border: 2px solid var(--meme-border);
  box-shadow: var(--meme-sticker-shadow);
}

.feature-icon,
.social-icon,
.btn-icon,
.contract-row code {
  border: 2px solid rgba(79, 107, 44, 0.18);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border: 2px solid var(--meme-border-strong);
  border-radius: 999px;
  background: var(--green-accent);
  box-shadow: 0 0 0 4px rgba(155, 203, 90, 0.13);
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.hero-bg::after {
  background: rgba(247, 250, 244, 0.56);
  backdrop-filter: blur(1px);
}

.about,
.token,
.community {
  background:
    radial-gradient(circle at 84% 14%, rgba(47, 99, 199, 0.045), transparent 28%),
    linear-gradient(180deg, rgba(247, 250, 244, 0.26), rgba(238, 246, 231, 0.2));
}

.features {
  background:
    radial-gradient(circle at 18% 20%, rgba(155, 203, 90, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(247, 250, 244, 0.2), rgba(230, 241, 219, 0.32));
}

.roadmap {
  background:
    radial-gradient(circle at 82% 18%, rgba(47, 99, 199, 0.055), transparent 30%),
    linear-gradient(180deg, rgba(230, 241, 219, 0.32), rgba(247, 250, 244, 0.12));
}

.glass-card,
.feature-card,
.token-card,
.roadmap-card,
.community-panel,
.about-mascot-card {
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(14px) saturate(1.08);
}

.glass-card,
.feature-card,
.roadmap-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.36)),
    linear-gradient(135deg, rgba(155, 203, 90, 0.08), rgba(47, 99, 199, 0.045));
}

.token-details div,
.hero-metrics div,
.social-btn {
  background: rgba(255, 255, 255, 0.48);
}

.token-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.42)),
    radial-gradient(circle at 12% 22%, rgba(155, 203, 90, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(155, 203, 90, 0.08), rgba(47, 99, 199, 0.06));
}

.community-panel {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.42)),
    radial-gradient(circle at 50% 0%, rgba(155, 203, 90, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(155, 203, 90, 0.08), rgba(47, 99, 199, 0.06));
}

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.js .feature-card.reveal:nth-child(2),
.js .roadmap-card.reveal:nth-child(2) {
  transition-delay: 0.08s;
}

.js .feature-card.reveal:nth-child(3),
.js .roadmap-card.reveal:nth-child(3) {
  transition-delay: 0.16s;
}

.js .feature-card.reveal:nth-child(4),
.js .roadmap-card.reveal:nth-child(4) {
  transition-delay: 0.24s;
}

@media (max-width: 1040px) {
  .section-pad {
    padding: 96px 0;
  }

  .hero-grid,
  .split-grid,
  .token-card {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 146px;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-subhead,
  .hero-metrics,
  .hero-actions,
  .hero-note {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }

  .hero-visual {
    min-height: 430px;
  }

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

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

  .nav-links {
    position: fixed;
    inset: 84px 16px auto;
    display: grid;
    gap: 8px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow);
    backdrop-filter: blur(22px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 0.24s ease,
      transform 0.24s ease;
  }

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

  .nav-links a {
    justify-content: center;
    text-align: center;
  }

  .nav-links .nav-cta {
    margin-left: 0;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .token-details div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .footer-brand,
  .footer-social {
    justify-self: center;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .section-pad {
    padding: 78px 0;
  }

  .site-header {
    inset: 10px 0 auto;
  }

  .nav-shell {
    width: calc(100% - 20px);
    min-height: 64px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: auto;
    padding-top: 128px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.6rem);
  }

  .hero-actions,
  .social-grid {
    flex-direction: column;
  }

  .btn,
  .social-btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 330px;
  }

  .hero-chip {
    display: none;
  }

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

  .feature-card {
    min-height: 220px;
  }

  .contract-row dd {
    align-items: stretch;
    flex-direction: column;
  }

  .contract-row code {
    white-space: normal;
    text-overflow: unset;
  }

  .roadmap-track {
    grid-template-columns: 1fr;
    overflow-x: visible;
  }

  .roadmap-card {
    min-width: 0;
  }

  .community-panel {
    border-radius: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

}
