:root {
  --cream: #f6ecdd;
  --cream-deep: #ead7c0;
  --mint: #c8f5d8;
  --mint-deep: #8ee4b0;
  --green: #00c853;
  --green-bright: #14e06a;
  --green-dark: #00963f;
  --forest: #0d2c1b;
  --ink: #163024;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.62);
  --shadow: 0 18px 40px rgba(0, 90, 40, 0.14);
  --font-display: "Baloo 2", "Fredoka", sans-serif;
  --font-round: "Fredoka", "Baloo 2", sans-serif;
  --font-body: "Nunito", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  cursor: pointer;
}

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

.horizon-cream {
  position: absolute;
  inset: 0 0 42% 0;
  background:
    radial-gradient(ellipse 80% 60% at 18% 10%, rgba(255, 255, 255, 0.85), transparent 60%),
    radial-gradient(ellipse 50% 40% at 88% 18%, rgba(200, 245, 216, 0.55), transparent 70%),
    linear-gradient(180deg, #fff8ee 0%, var(--cream) 70%);
}

.horizon-mint {
  position: absolute;
  inset: 48% 0 0 0;
  background:
    radial-gradient(ellipse 70% 50% at 70% 80%, rgba(0, 200, 83, 0.22), transparent 65%),
    linear-gradient(180deg, #d9f8e6 0%, #b6efcc 55%, #9ae6b8 100%);
}

.mesh {
  position: absolute;
  width: 52vw;
  height: 52vw;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.45;
  animation: mesh-drift 18s ease-in-out infinite alternate;
}

.mesh-a {
  top: -8%;
  left: -8%;
  background: radial-gradient(circle, #ffe8c4 0%, transparent 70%);
}

.mesh-b {
  right: -10%;
  bottom: 8%;
  background: radial-gradient(circle, #5de48c 0%, transparent 70%);
  animation-delay: -7s;
}

.grain {
  position: absolute;
  inset: 0;
  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='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hill {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 34vh;
  min-height: 180px;
}

.hill-back {
  fill: #8fe4b3;
  animation: hill-sway 12s ease-in-out infinite;
}

.hill-front {
  fill: #67d896;
  animation: hill-sway 9s ease-in-out infinite reverse;
}

#float-field {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.nav,
main,
.foot {
  position: relative;
  z-index: 1;
}

.nav {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(1180px, calc(100% - 28px));
  margin: 14px auto 0;
  padding: 10px 12px 10px 10px;
  border-radius: 999px;
  background: rgba(255, 251, 245, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.nav.scrolled {
  background: rgba(255, 251, 245, 0.92);
  box-shadow: 0 10px 28px rgba(0, 90, 40, 0.16);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-orb {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--green);
  box-shadow: 0 0 0 3px #fff, 0 8px 16px rgba(0, 200, 83, 0.25);
  background: var(--cream);
}

.brand-orb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
}

.brand-tick {
  font-family: var(--font-round);
  font-size: 0.72rem;
  color: var(--green-dark);
  letter-spacing: 0.06em;
}

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

.nav-links a {
  font-family: var(--font-round);
  font-weight: 600;
  font-size: 0.94rem;
  padding: 8px 12px;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
  background: rgba(0, 200, 83, 0.1);
}

.nav-buy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(180deg, var(--green-bright), var(--green));
  color: #fff !important;
  box-shadow: 0 6px 0 var(--green-dark), 0 10px 18px rgba(0, 200, 83, 0.28);
}

.nav-buy:hover {
  transform: translateY(-1px);
  background: linear-gradient(180deg, #2ee878, var(--green)) !important;
}

.nav-buy img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
}

.hero {
  width: min(1180px, calc(100% - 32px));
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: center;
  min-height: calc(100vh - 120px);
}

.hero-orbit {
  position: relative;
  width: min(460px, 100%);
  aspect-ratio: 1;
  margin: 0 auto;
}

.ring {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 2px dashed rgba(0, 200, 83, 0.28);
  animation: spin 28s linear infinite;
}

.ring-b {
  inset: 0;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.55);
  animation-duration: 40s;
  animation-direction: reverse;
}

.ring-c {
  inset: 16%;
  animation-duration: 18s;
}

.logo-plate {
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  overflow: hidden;
  background: var(--cream);
  border: 6px solid #fff;
  box-shadow:
    0 0 0 6px var(--green),
    0 24px 50px rgba(0, 120, 50, 0.22);
  animation: bob 4.8s ease-in-out infinite;
}

.logo-plate img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 16%;
}

.plate-shine {
  position: absolute;
  inset: -20% auto auto -20%;
  width: 60%;
  height: 40%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.55), transparent);
  transform: rotate(-18deg);
  animation: shine-sweep 6s ease-in-out infinite;
}

.orbiter {
  position: absolute;
  inset: 6%;
  animation: spin 16s linear infinite;
}

.orbiter i {
  position: absolute;
  top: 0;
  left: 50%;
  width: 34px;
  height: 16px;
  margin-left: -17px;
  border-radius: 999px;
  background: linear-gradient(90deg, #fff 50%, var(--green) 50%);
  box-shadow: 0 6px 12px rgba(0, 120, 40, 0.2);
}

.o2 { animation-duration: 22s; animation-direction: reverse; }
.o3 { animation-duration: 13s; }
.o4 { animation-duration: 19s; animation-direction: reverse; }
.o2 i { top: 18%; width: 26px; height: 12px; }
.o3 i { top: auto; bottom: 8%; }
.o4 i { top: 42%; left: 4%; }

.hero-copy h1 {
  margin: 10px 0 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.1rem, 8vw, 6.2rem);
  line-height: 0.88;
  letter-spacing: -0.03em;
}

.word-green {
  display: block;
  background: linear-gradient(180deg, #8dffb8 0%, #00d25a 42%, #00a644 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter:
    drop-shadow(0 3px 0 #007a32)
    drop-shadow(0 10px 16px rgba(0, 200, 83, 0.28));
  animation: title-glow 3.4s ease-in-out infinite;
}

.word-white {
  display: inline-block;
  color: #fff;
  padding: 0 0.12em 0.04em;
  border-radius: 0.22em;
  background: linear-gradient(180deg, #3be07a, #00b84a);
  text-shadow:
    0 3px 0 #0a6b32,
    0 8px 16px rgba(0, 80, 30, 0.28);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 6px 12px 6px 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.9);
  font-family: var(--font-round);
  font-weight: 600;
  font-size: 0.86rem;
}

.chip img {
  width: 22px;
  height: 22px;
}

.ticker {
  margin: 10px 0 0;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--green-dark);
  letter-spacing: 0.08em;
  animation: pulse-soft 2.6s ease-in-out infinite;
}

.tagline {
  max-width: 34rem;
  margin: 10px 0 0;
  font-size: 1.12rem;
  line-height: 1.55;
}

.ca-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 8px 8px 8px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
}

.ca-label {
  font-family: var(--font-round);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-dark);
}

#ca-display {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.86rem;
}

#copy-ca {
  border: 0;
  border-radius: 12px;
  padding: 8px 14px;
  background: var(--forest);
  color: #fff;
  font-family: var(--font-round);
  font-weight: 600;
}

#copy-ca.copied {
  background: var(--green);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  font-family: var(--font-round);
  font-weight: 650;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn img {
  width: 18px;
  height: 18px;
}

.btn-green {
  background: linear-gradient(180deg, var(--green-bright), var(--green));
  color: #fff;
  box-shadow: 0 6px 0 var(--green-dark), 0 12px 20px rgba(0, 200, 83, 0.25);
}

.btn-green img {
  filter: brightness(0) invert(1);
}

.btn-cream {
  background: #fff8ee;
  color: var(--forest);
  box-shadow: 0 6px 0 #d7c4aa, 0 12px 20px rgba(90, 60, 20, 0.12);
}

.btn-ghost {
  background: rgba(13, 44, 27, 0.08);
  color: var(--forest);
}

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

.about,
.howtobuy,
.chart,
.joinus {
  width: min(1180px, calc(100% - 32px));
  margin: 88px auto 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 28px;
}

.eyebrow {
  margin: 0 0 6px;
  font-family: var(--font-round);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--green-dark);
}

h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
}

.lede {
  margin: 12px 0 0;
  font-size: 1.05rem;
  line-height: 1.6;
}

.trait-grid,
.steps {
  display: grid;
  gap: 16px;
}

.trait-grid {
  grid-template-columns: repeat(3, 1fr);
}

.trait,
.step,
.chart-shell {
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.trait {
  padding: 22px;
}

.trait-mark {
  width: 54px;
  height: 18px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.cream-mark {
  background: linear-gradient(90deg, #fff 50%, #f0dfc8 50%);
  box-shadow: inset 0 0 0 2px #e4d0b6;
}

.mint-mark {
  background: linear-gradient(90deg, #fff 50%, var(--green) 50%);
}

.pill-mark {
  background: linear-gradient(90deg, var(--green) 50%, #fff 50%);
  animation: pill-nudge 2.4s ease-in-out infinite;
}

.trait h3,
.step h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.trait p,
.step p {
  margin: 0;
  line-height: 1.55;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  grid-template-columns: repeat(4, 1fr);
  counter-reset: none;
}

.step {
  padding: 22px 18px 20px;
  position: relative;
  overflow: hidden;
}

.step::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--cream), var(--green));
}

.step-num {
  font-family: var(--font-display);
  color: var(--green-dark);
  font-size: 0.95rem;
}

.step-icon {
  width: 52px;
  height: 52px;
  margin: 12px 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  box-shadow: 0 8px 16px rgba(0, 90, 40, 0.1);
}

.step-icon img {
  width: 28px;
  height: 28px;
}

.chart-shell {
  overflow: hidden;
}

.chart-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: linear-gradient(180deg, #fff, #f3fbf5);
}

.chart-chrome span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mint-deep);
}

.chart-chrome span:nth-child(2) { background: var(--green-bright); }
.chart-chrome span:nth-child(3) { background: var(--green-dark); }

.chart-chrome p {
  margin: 0 0 0 8px;
  font-family: var(--font-round);
  font-size: 0.85rem;
  color: var(--green-dark);
}

.chart-frame {
  height: min(640px, 70vh);
  background: #fff;
}

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

.banner-wrap {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #c8f5d8;
}

.banner {
  width: 100%;
  aspect-ratio: 3 / 1;
  object-fit: cover;
  object-position: center;
  display: block;
}

.banner-veil {
  position: absolute;
  inset: auto 0 0 0;
  height: 46%;
  background: linear-gradient(180deg, transparent, rgba(8, 36, 22, 0.42));
}

.banner-actions {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.foot {
  width: min(1180px, calc(100% - 32px));
  margin: 72px auto 28px;
  padding: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-radius: 28px;
  background: rgba(255, 251, 245, 0.78);
  box-shadow: var(--shadow);
}

.foot p {
  margin: 0;
  font-family: var(--font-round);
}

.foot-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.foot-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-round);
  font-weight: 600;
}

.foot-links img {
  width: 16px;
  height: 16px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: rise 0.8s ease forwards;
}

.reveal:nth-child(2) { animation-delay: 0.08s; }
.reveal:nth-child(3) { animation-delay: 0.16s; }
.reveal:nth-child(4) { animation-delay: 0.24s; }

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

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

@keyframes shine-sweep {
  0%, 70% { opacity: 0.15; transform: translateX(-10%) rotate(-18deg); }
  85% { opacity: 0.7; transform: translateX(40%) rotate(-18deg); }
  100% { opacity: 0.15; transform: translateX(80%) rotate(-18deg); }
}

@keyframes title-glow {
  0%, 100% { filter: drop-shadow(0 3px 0 #007a32) drop-shadow(0 10px 16px rgba(0, 200, 83, 0.28)); }
  50% { filter: drop-shadow(0 3px 0 #007a32) drop-shadow(0 14px 22px rgba(0, 230, 110, 0.45)); }
}

@keyframes pulse-soft {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.78; transform: scale(1.02); }
}

@keyframes mesh-drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(40px, -24px, 0) scale(1.08); }
}

@keyframes hill-sway {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-18px); }
}

@keyframes pill-nudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}

@keyframes rise {
  to { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 12px;
  }

  .trait-grid,
  .steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .menu-btn {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 12px;
    border-radius: 22px;
    background: rgba(255, 251, 245, 0.96);
    box-shadow: var(--shadow);
  }

  .nav.open .nav-links {
    display: flex;
  }

  .trait-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .banner-actions {
    position: static;
    padding: 16px;
    background: #0d2c1b;
  }

  .banner-veil {
    display: none;
  }

  .ca-bar {
    flex-wrap: wrap;
  }
}
