:root {
  --night: #06140f;
  --night-deep: #030a07;
  --forest: #0a1f18;
  --moss: #143528;
  --sprout: #7dce6a;
  --sprout-bright: #a8e88c;
  --sprout-deep: #3f9a4f;
  --star: #f0d878;
  --star-soft: #ffe9a8;
  --cream: #eef6ec;
  --muted: #8fa995;
  --line: rgba(168, 232, 140, 0.22);
  --glass: rgba(10, 31, 24, 0.55);
  --shell: min(1120px, calc(100% - 2rem));
  --font-display: "Fredoka", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, sans-serif;
  --radius: 1.5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  background: var(--night-deep);
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

/* ===== Atmosphere ===== */
.sky {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(1200px 700px at 15% -10%, rgba(63, 154, 79, 0.28), transparent 55%),
    radial-gradient(900px 600px at 90% 10%, rgba(240, 216, 120, 0.1), transparent 50%),
    radial-gradient(800px 500px at 50% 100%, rgba(20, 53, 40, 0.7), transparent 60%),
    linear-gradient(180deg, #04110c 0%, var(--night) 40%, #071a13 100%);
}

.aurora {
  position: absolute;
  width: 55vw;
  height: 40vw;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  animation: aurora-drift 22s ease-in-out infinite;
}

.a1 {
  top: -12%;
  left: -8%;
  background: radial-gradient(circle, rgba(125, 206, 106, 0.35), transparent 70%);
}

.a2 {
  top: 18%;
  right: -18%;
  background: radial-gradient(circle, rgba(240, 216, 120, 0.18), transparent 70%);
  animation-delay: -9s;
}

.mist {
  position: absolute;
  inset: auto 0 -10% 0;
  height: 40%;
  background: linear-gradient(180deg, transparent, rgba(8, 28, 20, 0.75));
  opacity: 0.85;
}

.m2 {
  height: 28%;
  opacity: 0.5;
  animation: mist-rise 14s ease-in-out infinite;
}

#starfield {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.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='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
  mix-blend-mode: soft-light;
  animation: grain-shift 0.8s steps(2) infinite;
}

@keyframes aurora-drift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(4%, 6%) scale(1.08);
  }
}

@keyframes mist-rise {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.45;
  }
  50% {
    transform: translateY(-12px);
    opacity: 0.7;
  }
}

@keyframes grain-shift {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-2%, 1%);
  }
}

/* ===== Header ===== */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: 0.85rem 0;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}

.header.is-scrolled {
  background: rgba(6, 20, 15, 0.78);
  backdrop-filter: blur(16px);
  border-color: var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px rgba(125, 206, 106, 0.35), 0 0 18px rgba(125, 206, 106, 0.25);
  animation: soft-pulse 4.5s ease-in-out infinite;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav-panel a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--muted);
  transition: color 0.25s ease;
}

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

.nav-buy {
  padding: 0.55rem 1.1rem !important;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sprout), var(--sprout-deep));
  color: #04140c !important;
  box-shadow: 0 0 24px rgba(125, 206, 106, 0.35);
}

.nav-buy:hover {
  filter: brightness(1.08);
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  gap: 5px;
  flex-direction: column;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.is-open span:nth-child(2) {
  opacity: 0;
}

.burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

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

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

.btn-sprout {
  background: linear-gradient(135deg, var(--sprout-bright), var(--sprout), var(--sprout-deep));
  color: #04140c;
  box-shadow: 0 10px 30px rgba(125, 206, 106, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn-sprout:hover {
  box-shadow: 0 14px 36px rgba(125, 206, 106, 0.4);
}

.btn-moon {
  background: rgba(20, 53, 40, 0.7);
  border: 1px solid rgba(240, 216, 120, 0.35);
  color: var(--star-soft);
  box-shadow: 0 0 20px rgba(240, 216, 120, 0.08);
}

.btn-moon:hover {
  border-color: var(--star);
  box-shadow: 0 0 28px rgba(240, 216, 120, 0.18);
}

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

.btn-ghost:hover {
  border-color: var(--sprout);
  color: var(--sprout-bright);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  padding: 7.5rem 0 0;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
  z-index: 0;
}

.hero-video.is-live {
  opacity: 0.42;
}

.hero.has-video .hero-wash {
  background:
    linear-gradient(90deg, rgba(3, 10, 7, 0.88) 0%, rgba(3, 10, 7, 0.55) 48%, rgba(3, 10, 7, 0.35) 100%),
    linear-gradient(180deg, rgba(3, 10, 7, 0.35) 0%, rgba(3, 10, 7, 0.2) 45%, rgba(3, 10, 7, 0.92) 100%);
}

.hero-wash {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 70% 55% at 75% 45%, rgba(125, 206, 106, 0.12), transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 30%, rgba(240, 216, 120, 0.08), transparent 55%),
    linear-gradient(180deg, rgba(3, 10, 7, 0.25) 0%, rgba(3, 10, 7, 0.15) 40%, rgba(3, 10, 7, 0.92) 100%);
}

.hero-twinkles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-twinkles span {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--star);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  animation: twinkle 3.4s ease-in-out infinite;
  opacity: 0.7;
}

.hero-twinkles span:nth-child(1) {
  top: 18%;
  left: 12%;
}
.hero-twinkles span:nth-child(2) {
  top: 28%;
  right: 18%;
  animation-delay: -0.8s;
}
.hero-twinkles span:nth-child(3) {
  top: 48%;
  left: 42%;
  animation-delay: -1.4s;
  width: 4px;
  height: 4px;
}
.hero-twinkles span:nth-child(4) {
  top: 22%;
  left: 58%;
  animation-delay: -2s;
}
.hero-twinkles span:nth-child(5) {
  bottom: 32%;
  left: 22%;
  animation-delay: -1.1s;
  width: 5px;
  height: 5px;
}
.hero-twinkles span:nth-child(6) {
  top: 38%;
  right: 8%;
  animation-delay: -2.6s;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 2rem;
  padding-bottom: 5.5rem;
  min-height: calc(100vh - 9rem);
}

.brand-hero {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 9vw, 6.4rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.04em;
  background: linear-gradient(180deg, #ffffff 10%, var(--cream) 45%, var(--sprout-bright) 140%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 40px rgba(125, 206, 106, 0.15);
  animation: brand-breathe 5s ease-in-out infinite;
}

.hero h1 {
  margin: 0 0 1rem;
  max-width: 14ch;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.2vw, 2.35rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--cream);
}

.lede {
  margin: 0 0 1.75rem;
  max-width: 34ch;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.ca-row {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.35rem;
  max-width: 100%;
  padding: 0.65rem 0.75rem 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(10, 31, 24, 0.7);
  border: 1px solid var(--line);
  box-shadow: 0 0 24px rgba(125, 206, 106, 0.08);
}

.ca-label {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sprout);
}

.ca-value {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: ui-monospace, "Cascadia Code", "Segoe UI Mono", monospace;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  background: none;
}

.ca-value[data-empty="true"]::before {
  content: "Launching soon";
  color: var(--muted);
  font-style: italic;
  font-family: var(--font-body);
  font-weight: 600;
}

.ca-value:not([data-empty="true"]) {
  color: var(--cream);
}

.ca-copy {
  flex-shrink: 0;
  min-height: 2.1rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(125, 206, 106, 0.18);
  border: 1px solid rgba(125, 206, 106, 0.35);
  color: var(--sprout-bright);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  transition: background 0.25s ease, color 0.25s ease, opacity 0.25s ease;
}

.ca-copy:not(:disabled):hover {
  background: rgba(125, 206, 106, 0.32);
  color: var(--cream);
}

.ca-copy:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.ca-copy.is-copied {
  background: rgba(240, 216, 120, 0.25);
  border-color: rgba(240, 216, 120, 0.45);
  color: var(--star-soft);
}

@media (max-width: 980px) {
  .ca-row {
    margin-inline: auto;
  }
}

.hero-figure {
  position: relative;
  display: grid;
  place-items: center;
  justify-self: center;
  width: min(100%, 420px);
  aspect-ratio: 1;
}

.figure-glow {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(125, 206, 106, 0.35), rgba(240, 216, 120, 0.08) 45%, transparent 70%);
  filter: blur(18px);
  animation: glow-pulse 4s ease-in-out infinite;
}

.figure-ring {
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  border: 1px solid rgba(125, 206, 106, 0.25);
  box-shadow: inset 0 0 40px rgba(125, 206, 106, 0.08), 0 0 30px rgba(240, 216, 120, 0.08);
  animation: ring-spin 28s linear infinite;
}

.figure-ring::before {
  content: "";
  position: absolute;
  top: 8%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--star);
  box-shadow: 0 0 12px var(--star);
  transform: translateX(-50%);
}

.figure {
  position: relative;
  z-index: 1;
  width: 78%;
  border-radius: 36% 36% 32% 32%;
  object-fit: cover;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.45));
  animation: float-y 5.5s ease-in-out infinite;
  will-change: transform;
}

.orbit-star {
  position: absolute;
  z-index: 2;
  width: 10px;
  height: 10px;
  background: var(--star-soft);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  animation: orbit 10s linear infinite;
  filter: drop-shadow(0 0 8px rgba(240, 216, 120, 0.8));
}

.o1 {
  top: 12%;
  right: 18%;
}
.o2 {
  bottom: 20%;
  left: 10%;
  animation-duration: 14s;
  animation-direction: reverse;
  width: 7px;
  height: 7px;
}
.o3 {
  top: 42%;
  right: 4%;
  animation-duration: 12s;
  width: 8px;
  height: 8px;
}

.marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(6, 20, 15, 0.55);
  backdrop-filter: blur(8px);
}

.marquee-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  padding: 0.85rem 0;
  animation: marquee 32s linear infinite;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.marquee-track span:nth-child(odd) {
  color: var(--sprout-bright);
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.25;
    transform: scale(0.7) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: scale(1.15) rotate(18deg);
  }
}

@keyframes brand-breathe {
  0%,
  100% {
    filter: drop-shadow(0 0 12px rgba(125, 206, 106, 0.15));
  }
  50% {
    filter: drop-shadow(0 0 28px rgba(125, 206, 106, 0.35));
  }
}

@keyframes glow-pulse {
  0%,
  100% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}

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

@keyframes float-y {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes orbit {
  0% {
    transform: rotate(0deg) translateX(12px) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translateX(12px) rotate(-360deg);
  }
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@keyframes soft-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 2px rgba(125, 206, 106, 0.35), 0 0 18px rgba(125, 206, 106, 0.2);
  }
  50% {
    box-shadow: 0 0 0 2px rgba(125, 206, 106, 0.55), 0 0 28px rgba(125, 206, 106, 0.4);
  }
}

/* ===== Sections ===== */
.section {
  position: relative;
  padding: 6.5rem 0;
}

.section-head {
  margin-bottom: 2.25rem;
}

.section-head.center {
  text-align: center;
}

.kicker {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sprout);
}

.section-head h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 650;
  line-height: 1.15;
}

.section-lead {
  margin: 0 auto;
  max-width: 42ch;
  color: var(--muted);
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

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

.portrait-frame {
  position: relative;
  width: min(100%, 360px);
  padding: 0.85rem;
  border-radius: 42% 42% 38% 38%;
  background:
    linear-gradient(160deg, rgba(125, 206, 106, 0.25), transparent 40%),
    rgba(10, 31, 24, 0.65);
  border: 1px solid var(--line);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.12), transparent 40%);
  pointer-events: none;
}

.portrait-frame img {
  width: 100%;
  border-radius: 40% 40% 36% 36%;
  animation: float-y 6s ease-in-out infinite;
}

.drift {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--star);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  animation: drift-float 7s ease-in-out infinite;
  opacity: 0.85;
}

.d1 {
  top: 8%;
  right: 12%;
}
.d2 {
  bottom: 18%;
  left: 6%;
  animation-delay: -2s;
  width: 8px;
  height: 8px;
  background: var(--sprout-bright);
}
.d3 {
  top: 40%;
  right: 0;
  animation-delay: -3.5s;
  width: 9px;
  height: 9px;
}

@keyframes drift-float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-18px) rotate(20deg);
    opacity: 1;
  }
}

.about-lead {
  margin: 0 0 1.1rem;
  color: #c5d8c8;
  font-size: 1.08rem;
}

.about-bio {
  margin: 0 0 1.75rem;
  padding: 1rem 1.15rem;
  border-left: 3px solid var(--sprout);
  background: linear-gradient(90deg, rgba(125, 206, 106, 0.1), transparent);
  color: var(--star-soft);
  font-weight: 600;
  font-style: italic;
}

.about-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.about-list li {
  display: grid;
  gap: 0.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(168, 232, 140, 0.12);
}

.about-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.about-list strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--sprout-bright);
}

.about-list span {
  color: var(--muted);
}

/* How to buy */
.howtobuy {
  background:
    radial-gradient(700px 400px at 50% 0%, rgba(125, 206, 106, 0.08), transparent 60%),
    linear-gradient(180deg, transparent, rgba(8, 28, 20, 0.5), transparent);
}

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

.step {
  position: relative;
  padding: 1.5rem 1.25rem 1.4rem;
  border-radius: var(--radius);
  background: linear-gradient(165deg, rgba(20, 53, 40, 0.55), rgba(6, 20, 15, 0.35));
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.step::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--sprout), transparent);
  opacity: 0.6;
  transform: scaleX(0.4);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.step:hover {
  transform: translateY(-6px);
  border-color: rgba(125, 206, 106, 0.45);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25), 0 0 30px rgba(125, 206, 106, 0.08);
}

.step:hover::before {
  transform: scaleX(1);
}

.step-num {
  display: block;
  margin-bottom: 0.85rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--star);
  letter-spacing: 0.06em;
}

.step h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 650;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.buy-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

/* Chart */
.chart-shell {
  position: relative;
  border-radius: 1.35rem;
  overflow: hidden;
  border: 1px solid rgba(125, 206, 106, 0.28);
  box-shadow:
    0 0 0 1px rgba(240, 216, 120, 0.08),
    0 30px 70px rgba(0, 0, 0, 0.4),
    0 0 50px rgba(125, 206, 106, 0.08);
  background: #0b1210;
  min-height: 520px;
}

.chart-shell::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--sprout-bright), var(--star), var(--sprout-bright), transparent);
  z-index: 1;
  animation: scan-glow 4s ease-in-out infinite;
}

.chart-shell iframe {
  display: block;
  width: 100%;
  height: 560px;
  border: 0;
}

@keyframes scan-glow {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}

.chart-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.chart-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(10, 31, 24, 0.55);
  font-weight: 700;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

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

.chart-links a:hover {
  border-color: var(--sprout);
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(125, 206, 106, 0.15);
}

/* Join Us — banner only here */
.joinus {
  padding-top: 4rem;
}

.join-banner {
  position: relative;
  width: min(1200px, calc(100% - 1.5rem));
  margin: 0 auto 2.75rem;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(125, 206, 106, 0.25);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45), 0 0 60px rgba(125, 206, 106, 0.1);
}

.join-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(3, 10, 7, 0.35));
  pointer-events: none;
}

.join-banner img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.02);
  animation: banner-ken 22s ease-in-out infinite alternate;
}

@keyframes banner-ken {
  from {
    transform: scale(1.02) translateY(0);
  }
  to {
    transform: scale(1.06) translateY(-1.5%);
  }
}

.join-body {
  text-align: center;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.social {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 160px;
  justify-content: center;
  padding: 0.95rem 1.25rem;
  border-radius: 1.15rem;
  background: linear-gradient(160deg, rgba(20, 53, 40, 0.75), rgba(6, 20, 15, 0.55));
  border: 1px solid var(--line);
  font-weight: 800;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.social img {
  width: 20px;
  height: 20px;
}

.social:hover {
  transform: translateY(-4px);
  border-color: var(--sprout);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28), 0 0 28px rgba(125, 206, 106, 0.15);
}

.disclaimer {
  margin: 0 auto;
  max-width: 48ch;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Footer */
.footer {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid var(--line);
  background: rgba(3, 10, 7, 0.65);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  gap: 1.15rem;
}

.footer-links a {
  font-weight: 700;
  color: var(--sprout-bright);
}

.footer-links a:hover {
  color: var(--star);
}

/* Reveals */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Responsive */
@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-bottom: 4.5rem;
  }

  .hero h1,
  .lede {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-figure {
    order: -1;
    width: min(72vw, 320px);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

@media (max-width: 720px) {
  .burger {
    display: grid;
  }

  .nav-panel {
    position: absolute;
    top: calc(100% + 0.35rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 1rem;
    border-radius: 1.15rem;
    background: rgba(6, 20, 15, 0.95);
    border: 1px solid var(--line);
    backdrop-filter: blur(16px);
  }

  .nav-panel.is-open {
    display: flex;
  }

  .nav-panel a {
    padding: 0.75rem 0.85rem;
    border-radius: 0.75rem;
  }

  .nav-buy {
    text-align: center;
    margin-top: 0.35rem;
  }

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

  .chart-shell,
  .chart-shell iframe {
    min-height: 420px;
    height: 420px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .brand-hero {
    font-size: clamp(3rem, 16vw, 4.5rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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