:root {
  --cream: #f6f3ec;
  --cream-2: #fffdf8;
  --ink: #163028;
  --ink-soft: #3d5a4c;
  --mint: #2fa86a;
  --mint-deep: #1b6b45;
  --mint-bright: #7be3a8;
  --mint-wash: #d9f5e4;
  --line: rgba(27, 107, 69, 0.14);
  --shadow: 0 24px 60px rgba(22, 48, 40, 0.1);
  --display: "Baloo 2", "Nunito", sans-serif;
  --body: "Nunito", "Baloo 2", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }

.grain,
#field,
.orbs,
.candles,
.float-batons {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

#field { z-index: 0; }

.orbs { z-index: 0; overflow: hidden; }

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

.orb-a { width: 42vw; height: 42vw; left: -8vw; top: -10vw; background: radial-gradient(circle, #c8f3d8, transparent 70%); }
.orb-b { width: 36vw; height: 36vw; right: -10vw; top: 28vh; background: radial-gradient(circle, #e7f8ee, transparent 68%); animation-delay: -6s; }
.orb-c { width: 30vw; height: 30vw; left: 30vw; bottom: -12vw; background: radial-gradient(circle, #b7ebc8, transparent 70%); animation-delay: -11s; }

@keyframes orbFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(3%, 4%, 0) scale(1.08); }
}

.grain {
  z-index: 8;
  opacity: 0.18;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.candles { z-index: 0; opacity: 0.18; }

.candle {
  position: absolute;
  bottom: 0;
  width: 7px;
  border-radius: 99px;
  background: linear-gradient(180deg, var(--mint-bright), var(--mint));
  transform-origin: bottom;
  animation: candleGrow 7s ease-in-out infinite;
}

.candle::before,
.candle::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 2px;
  background: var(--mint-deep);
  transform: translateX(-50%);
}

.candle::before { top: -14px; height: 14px; }
.candle::after { bottom: -10px; height: 10px; }

@keyframes candleGrow {
  0%, 100% { transform: scaleY(0.55); opacity: 0.35; }
  50% { transform: scaleY(1); opacity: 0.8; }
}

.fb {
  position: absolute;
  width: 120px;
  height: 28px;
  border-radius: 99px;
  background: linear-gradient(90deg, #2fa86a 0 58%, #fff 58% 100%);
  box-shadow: 0 10px 22px rgba(27, 107, 69, 0.16);
  opacity: 0.22;
  animation: batonDrift 22s linear infinite;
}

.fb::after {
  content: "";
  position: absolute;
  left: 46%;
  top: 50%;
  width: 22px;
  height: 42px;
  border-radius: 12px;
  background: #2fa86a;
  transform: translate(-50%, -50%);
  box-shadow: inset 0 0 0 3px rgba(255,255,255,0.15);
}

.fb-1 { top: 18%; left: 6%; animation-duration: 26s; }
.fb-2 { top: 62%; right: 8%; animation-duration: 20s; animation-direction: reverse; }
.fb-3 { top: 80%; left: 18%; width: 90px; animation-duration: 28s; }
.fb-4 { top: 36%; right: 22%; width: 100px; animation-duration: 24s; animation-direction: reverse; }

@keyframes batonDrift {
  0% { transform: translate3d(0, 0, 0) rotate(-12deg); }
  50% { transform: translate3d(24px, -18px, 0) rotate(10deg); }
  100% { transform: translate3d(0, 0, 0) rotate(-12deg); }
}

.intro {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  background: var(--cream);
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.intro.is-gone {
  opacity: 0;
  visibility: hidden;
}

.intro-plate {
  width: 120px;
  height: 120px;
  border-radius: 32px;
  overflow: hidden;
  background: var(--cream-2);
  box-shadow: var(--shadow);
  animation: popIn 0.8s cubic-bezier(.2,1.2,.3,1) both;
}

.intro-plate img { width: 100%; height: 100%; object-fit: cover; }

.intro-word {
  font-family: var(--display);
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: -0.04em;
  color: var(--mint-deep);
}

.intro-bar {
  width: 160px;
  height: 8px;
  border-radius: 99px;
  background: rgba(47, 168, 106, 0.16);
  overflow: hidden;
}

.intro-bar i {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--mint-deep), var(--mint-bright));
  animation: fillBar 1.1s ease forwards;
}

@keyframes fillBar { to { width: 100%; } }
@keyframes popIn { from { transform: scale(0.7); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 28px;
  background: rgba(246, 243, 236, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.nav.is-tight {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px rgba(22, 48, 40, 0.05);
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--cream-2);
  box-shadow: 0 8px 16px rgba(22, 48, 40, 0.08);
}

.brand-mark img { width: 100%; height: 100%; object-fit: cover; }

.brand-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.nav-links { display: flex; gap: 22px; margin-left: auto; }

.nav-links a {
  font-weight: 700;
  color: var(--ink-soft);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 3px;
  border-radius: 99px;
  background: var(--mint);
  transition: width 0.25s ease;
}

.nav-links a:hover::after { width: 100%; }

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

.icon-chip {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--cream-2);
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.icon-chip img { width: 18px; height: 18px; }
.icon-chip:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(47, 168, 106, 0.18); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 16px;
  padding: 10px 16px;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.btn-buy {
  color: #fff;
  background: linear-gradient(180deg, #5fd98d 0%, #2fa86a 52%, #1b6b45 100%);
  box-shadow: 0 6px 0 #145536, 0 14px 24px rgba(27, 107, 69, 0.28);
}

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

.btn-ghost {
  background: var(--cream-2);
  border: 1px solid var(--line);
  color: var(--mint-deep);
}

.btn-ghost:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(22, 48, 40, 0.08); }

.btn-lg { padding: 14px 22px; font-size: 1.1rem; }

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--cream-2);
  border: 1px solid var(--line);
  position: relative;
}

.menu-btn i {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s ease;
}

.menu-btn i:first-child { top: 16px; }
.menu-btn i:last-child { top: 24px; }
.menu-btn.is-open i:first-child { transform: translateY(4px) rotate(40deg); }
.menu-btn.is-open i:last-child { transform: translateY(-4px) rotate(-40deg); }

.drawer {
  display: none;
  position: sticky;
  top: 70px;
  z-index: 19;
  padding: 12px 24px 18px;
  background: rgba(246, 243, 236, 0.96);
  border-bottom: 1px solid var(--line);
}

.drawer.is-open { display: grid; gap: 12px; }
.drawer a { font-family: var(--display); font-weight: 700; font-size: 1.2rem; }

main, footer { position: relative; z-index: 1; }

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding: 64px 8vw 80px;
  min-height: calc(100vh - 72px);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--cream-2);
  border: 1px solid var(--line);
  font-weight: 700;
  color: var(--mint-deep);
}

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

.wordmark {
  margin: 16px 0 6px;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(3.4rem, 9vw, 7.4rem);
  line-height: 0.88;
  letter-spacing: -0.05em;
  background: linear-gradient(180deg, #ffffff 0%, #e8fff1 38%, #8be8b0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter:
    drop-shadow(0 2px 0 #1b6b45)
    drop-shadow(0 5px 0 #145536)
    drop-shadow(0 16px 22px rgba(27, 107, 69, 0.22));
}

.ticker {
  display: inline-block;
  margin: 14px 0 18px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--mint-wash);
  color: var(--mint-deep);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.lead {
  max-width: 34rem;
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.ca-bar {
  margin: 28px 0 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  padding: 8px 8px 8px 14px;
  border-radius: 16px;
  background: var(--cream-2);
  border: 1px solid var(--line);
}

.ca-label {
  font-weight: 800;
  color: var(--mint);
}

.ca-bar code {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.ca-copy {
  padding: 8px 12px;
  border-radius: 12px;
  background: var(--mint-wash);
  color: var(--mint-deep);
  font-weight: 800;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.halo {
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 227, 168, 0.55), transparent 68%);
  animation: pulse 5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(0.94); opacity: 0.7; }
  50% { transform: scale(1.08); opacity: 1; }
}

.product {
  position: relative;
  width: min(100%, 460px);
  aspect-ratio: 1;
  border-radius: 40px;
  overflow: hidden;
  background: var(--cream-2);
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  transition: transform 0.15s ease;
}

.product img { width: 100%; height: 100%; object-fit: cover; }

.pedestal {
  width: 58%;
  height: 18px;
  margin-top: 22px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(22, 48, 40, 0.18), transparent 70%);
  filter: blur(4px);
}

.section-head { padding: 0 8vw; margin-bottom: 36px; }

.kicker {
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 8px;
}

.section-head h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: -0.04em;
  line-height: 1;
  max-width: 14ch;
}

.about { padding: 40px 0 80px; }

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  padding: 0 8vw 36px;
  align-items: center;
}

.about-story p {
  font-size: 1.12rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.about-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.about-meta div {
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--cream-2);
  border: 1px solid var(--line);
}

.about-meta span {
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mint);
}

.about-meta strong {
  font-family: var(--display);
  font-size: 1.15rem;
}

.about-plate {
  border-radius: 32px;
  overflow: hidden;
  background: var(--cream-2);
  box-shadow: var(--shadow);
  animation: plateSway 8s ease-in-out infinite;
}

.about-plate img { width: 100%; aspect-ratio: 1; object-fit: cover; }

@keyframes plateSway {
  0%, 100% { transform: rotate(-1.2deg) translateY(0); }
  50% { transform: rotate(1.4deg) translateY(-8px); }
}

.traits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0 8vw;
}

.trait {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, var(--cream-2), #f3fbf6);
  border: 1px solid var(--line);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trait:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.trait h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.trait p { color: var(--ink-soft); line-height: 1.6; }

.howto { padding: 20px 0 90px; }

.relay {
  position: relative;
  height: 18px;
  margin: 0 8vw 28px;
}

.relay-line {
  position: absolute;
  left: 4%;
  right: 4%;
  top: 8px;
  height: 4px;
  border-radius: 99px;
  background: linear-gradient(90deg, transparent, var(--mint), transparent);
}

.relay-baton {
  position: absolute;
  top: 0;
  width: 54px;
  height: 16px;
  border-radius: 99px;
  background: linear-gradient(90deg, #2fa86a 0 58%, #fff 58% 100%);
  box-shadow: 0 6px 14px rgba(27, 107, 69, 0.2);
  animation: passBaton 5.5s ease-in-out infinite;
}

@keyframes passBaton {
  0% { left: 4%; }
  50% { left: calc(96% - 54px); }
  100% { left: 4%; }
}

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 0 8vw;
}

.step {
  padding: 22px;
  border-radius: 24px;
  background: var(--cream-2);
  border: 1px solid var(--line);
  min-height: 100%;
}

.step-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--mint-wash);
  margin-bottom: 16px;
}

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

.step-num {
  font-family: var(--display);
  font-weight: 800;
  color: var(--mint);
  letter-spacing: 0.08em;
}

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

.step p:last-child { color: var(--ink-soft); line-height: 1.55; }

.chart { padding: 10px 8vw 90px; }

.chart-frame {
  border-radius: 28px;
  overflow: hidden;
  background: var(--cream-2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  height: min(680px, 78vh);
}

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

.chart-link {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: var(--mint-deep);
}

.chart-link img { width: 18px; height: 18px; }

.join { padding: 10px 8vw 80px; }

.banner-wrap {
  width: 100%;
  aspect-ratio: 3 / 1;
  border-radius: 28px;
  overflow: hidden;
  background: var(--cream-2);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.join-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.join-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px;
  border-radius: 20px;
  background: var(--cream-2);
  border: 1px solid var(--line);
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.join-card img { width: 22px; height: 22px; }
.join-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

.foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 8vw 40px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: rise 0.8s cubic-bezier(.2,.8,.2,1) forwards;
}

.hero .reveal:nth-child(1) { animation-delay: 0.15s; }
.hero .reveal:nth-child(2) { animation-delay: 0.25s; }
.hero .reveal:nth-child(3) { animation-delay: 0.35s; }
.hero .reveal:nth-child(4) { animation-delay: 0.45s; }
.hero .reveal:nth-child(5) { animation-delay: 0.55s; }
.hero .reveal:nth-child(6) { animation-delay: 0.65s; }
.hero-visual { animation-delay: 0.3s; }

.step:nth-child(1) { animation-delay: 0.05s; }
.step:nth-child(2) { animation-delay: 0.15s; }
.step:nth-child(3) { animation-delay: 0.25s; }
.step:nth-child(4) { animation-delay: 0.35s; }

.trait:nth-child(1) { animation-delay: 0.05s; }
.trait:nth-child(2) { animation-delay: 0.15s; }
.trait:nth-child(3) { animation-delay: 0.25s; }

.join-card:nth-child(1) { animation-delay: 0.05s; }
.join-card:nth-child(2) { animation-delay: 0.15s; }
.join-card:nth-child(3) { animation-delay: 0.25s; }

@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-side .icon-chip { display: none; }
  .menu-btn { display: block; margin-left: auto; }
  .hero,
  .about-grid,
  .traits,
  .steps,
  .join-row { grid-template-columns: 1fr; }
  .hero { padding-top: 36px; min-height: auto; }
  .about-meta { grid-template-columns: 1fr; }
  .foot { flex-direction: column; text-align: center; }
}

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