:root {
  --ink: #17231f;
  --muted: #61706b;
  --paper: #fffaf0;
  --paper-strong: #fffdf8;
  --sunrise: #ffb347;
  --coral: #f26d5b;
  --leaf: #1f8a70;
  --mint: #c8f4dd;
  --sky: #dff3ff;
  --line: rgba(23, 35, 31, 0.14);
  --shadow: 0 24px 80px rgba(72, 42, 18, 0.16);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 179, 71, 0.26), transparent 28rem),
    radial-gradient(circle at 82% 4%, rgba(200, 244, 221, 0.72), transparent 24rem),
    linear-gradient(180deg, #fff7e6 0%, #f5fff9 48%, #fffaf0 100%);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a { color: inherit; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(255, 250, 240, 0.78);
  border-bottom: 1px solid rgba(23, 35, 31, 0.08);
  backdrop-filter: blur(18px);
}

.brand,
.nav,
.hero-actions,
.hero-facts,
.mission-rail,
.steps,
.site-footer {
  display: flex;
}

.brand {
  align-items: center;
  gap: 10px;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  background: var(--leaf);
  border-radius: 50%;
}

.nav {
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav a,
.header-action,
.btn,
.site-footer a {
  text-decoration: none;
}

.nav a:hover { color: var(--ink); }

.header-action {
  padding: 10px 16px;
  color: #fff;
  background: var(--ink);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 132px clamp(18px, 7vw, 96px) 72px;
}

.hero-art {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.sun-disc {
  position: absolute;
  right: clamp(-70px, 5vw, 90px);
  top: 14%;
  width: clamp(280px, 42vw, 620px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 34%, #fff8d8 0 10%, transparent 11%),
    radial-gradient(circle at 50% 50%, #ffd67a 0 42%, #ff9f68 43% 63%, rgba(255, 159, 104, 0) 64%);
  opacity: 0.82;
  animation: breathe 7s ease-in-out infinite;
}

.wave {
  position: absolute;
  left: 0;
  right: 0;
  height: 22%;
  border-radius: 50% 50% 0 0;
}

.wave-one {
  bottom: -4%;
  background: rgba(31, 138, 112, 0.16);
}

.wave-two {
  bottom: -10%;
  background: rgba(242, 109, 91, 0.12);
}

.signal-ring {
  position: absolute;
  border: 1px solid rgba(31, 138, 112, 0.24);
  border-radius: 50%;
  animation: drift 13s ease-in-out infinite;
}

.ring-one {
  width: 180px;
  height: 180px;
  left: 9%;
  top: 20%;
}

.ring-two {
  width: 92px;
  height: 92px;
  right: 22%;
  bottom: 25%;
  animation-delay: -4s;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--leaf);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(44px, 7.8vw, 104px);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(32px, 5vw, 64px);
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.hero-copy {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-copy span,
.vi {
  display: block;
  margin-top: 8px;
  color: #40504b;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0;
}

.btn {
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--leaf), #115c50);
  box-shadow: 0 18px 38px rgba(31, 138, 112, 0.25);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.hero-facts {
  flex-wrap: wrap;
  gap: 14px;
  margin: 0;
}

.hero-facts div {
  min-width: 132px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(72, 42, 18, 0.08);
}

dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

dd {
  margin: 2px 0 0;
  font-size: 18px;
  font-weight: 900;
}

.section {
  padding: clamp(72px, 10vw, 128px) clamp(18px, 7vw, 96px);
}

.split,
.tokenomics-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: start;
}

.body-copy,
.tokenomics-layout p,
.join-panel p {
  color: var(--muted);
  font-size: 18px;
}

.mission-rail {
  gap: 18px;
  margin-top: 54px;
}

.mission-rail article,
.steps article,
.token-table,
.join-panel {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.mission-rail article {
  flex: 1;
  min-width: 0;
  padding: 26px;
  border-radius: 8px;
}

.mission-rail span {
  color: var(--coral);
  font-weight: 900;
}

.mission-rail p,
.steps p {
  margin-bottom: 0;
  color: var(--muted);
}

.tokenomics {
  background: rgba(223, 243, 255, 0.48);
}

.token-table {
  border-radius: 8px;
  overflow: hidden;
}

.token-table div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}

.token-table div:last-child { border-bottom: 0; }
.token-table span { color: var(--muted); }
.token-table strong { text-align: right; }

.steps {
  gap: 18px;
}

.steps article {
  flex: 1;
  padding: 30px;
  border-radius: 8px;
}

.steps h2 {
  font-size: clamp(26px, 3vw, 38px);
}

.join {
  padding-top: 64px;
}

.join-panel {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(28px, 6vw, 64px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(200, 244, 221, 0.58)),
    var(--paper-strong);
}

.join-panel h2 {
  max-width: 780px;
}

.join-panel p {
  max-width: 720px;
}

.site-footer {
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 7vw, 96px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer a {
  color: var(--ink);
  font-weight: 800;
}

@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.035); }
}

@keyframes drift {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(18px, -14px, 0); }
}

@media (max-width: 900px) {
  .site-header {
    position: sticky;
  }

  .nav {
    display: none;
  }

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

  .split,
  .tokenomics-layout {
    grid-template-columns: 1fr;
  }

  .mission-rail,
  .steps {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 16px;
  }

  .header-action {
    padding: 9px 12px;
  }

  h1 {
    font-size: clamp(40px, 14vw, 58px);
  }

  .hero-facts,
  .hero-facts div,
  .btn {
    width: 100%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
