:root {
  --rose-deep: #e28a9c;
  --rose: #f4a7b9;
  --rose-soft: #f9c9d4;
  --blush: #ffe4ec;
  --cream: #fff4e8;
  --cream-deep: #f3e2cb;
  --lime: #b6e217;
  --lime-deep: #8fc400;
  --lime-ink: #3d5c00;
  --wood: #7a5538;
  --ink: #3a2a24;
  --muted: #7a645a;
  --glass: rgba(255, 248, 240, 0.72);
  --line: rgba(122, 85, 56, 0.14);
  --shell: min(1120px, calc(100% - 2rem));
  --font-display: "Fredoka", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, sans-serif;
  --shadow-soft: 0 18px 50px rgba(122, 85, 56, 0.16);
  --radius-pill: 999px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  background:
    radial-gradient(1200px 700px at 12% -10%, rgba(244, 167, 185, 0.55), transparent 60%),
    radial-gradient(900px 600px at 90% 8%, rgba(182, 226, 23, 0.22), transparent 55%),
    linear-gradient(180deg, #fff8f2 0%, var(--cream) 38%, #ffe9f0 72%, #fff3e4 100%);
  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 {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}

.wash {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
  animation: drift 18s ease-in-out infinite alternate;
}

.wash-a {
  width: 46vw;
  height: 46vw;
  left: -12vw;
  top: 18vh;
  background: radial-gradient(circle, rgba(244, 167, 185, 0.55), transparent 70%);
}

.wash-b {
  width: 40vw;
  height: 40vw;
  right: -10vw;
  top: 48vh;
  background: radial-gradient(circle, rgba(182, 226, 23, 0.28), transparent 70%);
  animation-delay: -6s;
}

.sunbeams {
  position: absolute;
  inset: -20% -10%;
  background:
    repeating-linear-gradient(
      112deg,
      transparent 0 46px,
      rgba(255, 255, 255, 0.08) 46px 72px
    );
  mix-blend-mode: soft-light;
  animation: beam-drift 22s linear infinite;
  opacity: 0.55;
}

#mote-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.soft-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='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

.header.is-scrolled {
  background: rgba(255, 248, 240, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(122, 85, 56, 0.08);
}

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

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

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 12px;
  filter: drop-shadow(0 6px 12px rgba(226, 138, 156, 0.35));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.nav-links a {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--wood);
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
  color: var(--ink);
  transform: translateY(-1px);
}

.nav-cta {
  padding: 0.55rem 1rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--lime), var(--lime-deep));
  color: var(--lime-ink) !important;
  box-shadow: 0 8px 18px rgba(143, 196, 0, 0.28);
}

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

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s 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);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6.5rem 0 5rem;
  overflow: hidden;
}

.hero-bleed {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bleed-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  transform: scale(1.12);
  filter: saturate(1.08) blur(0.2px);
  opacity: 0.42;
  animation: banner-ken 22s ease-in-out infinite alternate;
}

.hero.has-video .hero-bleed {
  opacity: 0;
  transition: opacity 0.6s ease;
}

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

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

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(900px 520px at 78% 42%, rgba(255, 255, 255, 0.12), transparent 60%),
    linear-gradient(115deg, rgba(255, 244, 232, 0.94) 0%, rgba(255, 228, 236, 0.82) 42%, rgba(255, 244, 232, 0.42) 72%, rgba(255, 244, 232, 0.28) 100%);
}

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

.floater {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 40% 60% 55% 45%;
  background: rgba(244, 167, 185, 0.45);
  filter: blur(0.2px);
  animation: float-paw 9s ease-in-out infinite;
}

.floater::after {
  content: "";
  position: absolute;
  inset: 22%;
  border-radius: inherit;
  background: rgba(182, 226, 23, 0.35);
}

.f1 { left: 8%; top: 22%; animation-duration: 10s; }
.f2 { left: 18%; top: 68%; width: 12px; height: 12px; animation-duration: 12s; animation-delay: -2s; }
.f3 { right: 14%; top: 18%; width: 14px; height: 14px; animation-duration: 11s; animation-delay: -4s; background: rgba(182, 226, 23, 0.4); }
.f4 { right: 28%; bottom: 18%; width: 10px; height: 10px; animation-duration: 13s; animation-delay: -1s; }

.hero-stage {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  width: var(--shell);
  margin-inline: auto;
}

.brand-mark {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 4.8rem);
  font-weight: 650;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-shadow: 0 8px 0 rgba(244, 167, 185, 0.35);
  animation: brand-pop 1.1s cubic-bezier(0.22, 1.2, 0.36, 1) both;
}

.hero h1 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.4vw, 2.35rem);
  font-weight: 550;
  line-height: 1.15;
  color: var(--wood);
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.7rem 1.2rem;
  border-radius: var(--radius-pill);
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

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

.btn-lime {
  background: linear-gradient(135deg, #d4f24a, var(--lime-deep));
  color: var(--lime-ink);
  box-shadow: 0 12px 28px rgba(143, 196, 0, 0.32);
}

.btn-lime:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 34px rgba(143, 196, 0, 0.4);
}

.btn-soft {
  background: rgba(255, 255, 255, 0.72);
  border: 1.5px solid rgba(226, 138, 156, 0.45);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

.btn-soft:hover {
  transform: translateY(-3px);
  background: #fff;
}

.btn-ghost {
  background: transparent;
  border: 1.5px solid rgba(122, 85, 56, 0.22);
  color: var(--wood);
}

.btn-ghost:hover {
  transform: translateY(-3px);
  border-color: var(--rose);
  color: var(--ink);
}

.hero-mascot {
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.mascot-ring {
  position: absolute;
  width: min(92%, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px dashed rgba(182, 226, 23, 0.55);
  animation: spin-slow 28s linear infinite;
}

.mascot-glow {
  position: absolute;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 167, 185, 0.55), rgba(182, 226, 23, 0.18) 45%, transparent 70%);
  filter: blur(8px);
  animation: glow-pulse 3.8s ease-in-out infinite;
}

.mascot {
  position: relative;
  z-index: 1;
  width: min(100%, 440px);
  filter: drop-shadow(0 28px 40px rgba(122, 85, 56, 0.28));
  animation: mascot-bob 4.8s ease-in-out infinite;
  transform-origin: center bottom;
}

.marquee {
  position: relative;
  z-index: 3;
  margin-top: 3.5rem;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.35);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  padding: 0.85rem 0;
  font-family: var(--font-display);
  font-weight: 550;
  color: var(--wood);
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  white-space: nowrap;
}

.section {
  position: relative;
  padding: clamp(4.5rem, 9vw, 7rem) 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.4rem;
}

.kicker {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 550;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose-deep);
}

.section h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 650;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.section-lead {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
  max-width: 52ch;
}

.about {
  background:
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.35) 20%, rgba(255, 228, 236, 0.45) 100%);
}

.about-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
}

.about-item {
  padding-top: 0.25rem;
  border-top: 2px solid rgba(244, 167, 185, 0.55);
}

.about-num {
  display: inline-block;
  margin-bottom: 0.7rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 650;
  color: var(--lime-deep);
}

.about-item h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 550;
}

.about-item p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.howtobuy {
  background:
    radial-gradient(700px 320px at 20% 0%, rgba(182, 226, 23, 0.16), transparent 70%),
    transparent;
}

.buy-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.buy-step {
  border-bottom: 1px solid var(--line);
}

.step-toggle {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0.15rem;
  text-align: left;
}

.step-index {
  width: 2.2rem;
  height: 2.2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-soft), var(--rose));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 650;
  box-shadow: 0 8px 16px rgba(226, 138, 156, 0.28);
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 550;
}

.step-chev {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--wood);
  border-bottom: 2px solid var(--wood);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}

.step-toggle[aria-expanded="true"] .step-chev {
  transform: rotate(225deg);
}

.step-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.step-toggle[aria-expanded="true"] + .step-body {
  grid-template-rows: 1fr;
}

.step-body > p {
  overflow: hidden;
  margin: 0;
  padding: 0 0.15rem 1.1rem 3.35rem;
  color: var(--muted);
  font-weight: 600;
}

.step-body a {
  color: var(--lime-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.buy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.chart-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 2px solid rgba(244, 167, 185, 0.45);
  box-shadow: var(--shadow-soft);
  background: #0f1218;
  min-height: 420px;
}

.chart-frame iframe {
  display: block;
  width: 100%;
  height: min(70vh, 620px);
  border: 0;
}

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

.chart-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  color: var(--wood);
  transition: color 0.2s ease, transform 0.2s ease;
}

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

.chart-links a:hover {
  color: var(--ink);
  transform: translateY(-2px);
}

.joinus {
  padding-top: 0;
  overflow: hidden;
}

.join-banner {
  position: relative;
  width: 100%;
  max-height: min(52vh, 520px);
  overflow: hidden;
  mask-image: linear-gradient(180deg, #000 55%, transparent 100%);
}

.join-banner img {
  width: 100%;
  height: min(52vh, 520px);
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.08);
  animation: banner-ken 18s ease-in-out infinite alternate;
  filter: saturate(1.05) contrast(1.02);
}

.join-panel {
  position: relative;
  margin-top: -3.5rem;
  padding-bottom: 1rem;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.social {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 52px;
  padding: 0.7rem 1.15rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.7);
  border: 1.5px solid rgba(244, 167, 185, 0.5);
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(122, 85, 56, 0.1);
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

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

.social:hover {
  transform: translateY(-4px) scale(1.03);
  background: #fff;
  box-shadow: 0 16px 30px rgba(226, 138, 156, 0.22);
}

.social-text {
  font-family: var(--font-display);
  font-weight: 550;
}

.footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.35);
}

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

.footer p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.footer-links {
  display: flex;
  gap: 1rem;
  font-weight: 800;
}

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

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(4vw, -3vh, 0) scale(1.08); }
}

@keyframes beam-drift {
  from { transform: translateX(-4%); }
  to { transform: translateX(4%); }
}

@keyframes float-paw {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.55; }
  50% { transform: translateY(-18px) rotate(12deg); opacity: 0.95; }
}

@keyframes brand-pop {
  from { opacity: 0; transform: translateY(24px) scale(0.96); }
  to { opacity: 1; transform: none; }
}

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

@keyframes glow-pulse {
  0%, 100% { opacity: 0.55; transform: scale(0.96); }
  50% { opacity: 0.95; transform: scale(1.05); }
}

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

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

@keyframes banner-ken {
  from { transform: scale(1.08) translate3d(0, 0, 0); }
  to { transform: scale(1.16) translate3d(0, -2%, 0); }
}

@media (max-width: 920px) {
  .hero-stage {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .lede {
    margin-inline: auto;
  }

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

  .hero-mascot {
    order: -1;
  }

  .mascot {
    width: min(78vw, 340px);
  }

  .about-flow {
    grid-template-columns: 1fr;
  }

  .brand-mark {
    text-shadow: 0 5px 0 rgba(244, 167, 185, 0.35);
  }
}

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

  .nav-links {
    position: absolute;
    top: 74px;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 1rem;
    border-radius: 22px;
    background: rgba(255, 248, 240, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
  }

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

  .nav-links a {
    padding: 0.7rem 0.85rem;
    border-radius: 14px;
  }

  .nav-cta {
    text-align: center;
  }

  .step-body > p {
    padding-left: 0.15rem;
  }

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

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