/* Heart-Chan — Japanese cat meme coin theme (ethchan-inspired palette) */

:root {
  --bg: #050208;
  --bg-soft: #1a0a24;
  --purple: #712199;
  --purple-bright: #8422ce;
  --pink: #ff4da6;
  --pink-hot: #f53bff;
  --gold: #ffd56a;
  --gold-glow: #ffb347;
  --mint: #00f9b9;
  --text: #fff8fc;
  --text-muted: #c9b8d4;
  --glass: rgba(26, 10, 36, 0.72);
  --border: rgba(255, 77, 166, 0.35);
  --radius: 1.25rem;
  --font-body: "Urbanist", system-ui, sans-serif;
  --font-jp: "Zen Maru Gothic", "Urbanist", sans-serif;
  --font-display: "Mochiy Pop One", "Zen Maru Gothic", sans-serif;
  --nav-h: 4.5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.loaded #preloader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

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

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

.display {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.jp-accent {
  font-family: var(--font-jp);
  color: var(--gold);
}

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

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

/* ── Background layers ── */
#particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

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

.sakura-layer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(113, 33, 153, 0.45), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(255, 77, 166, 0.25), transparent 50%),
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(255, 213, 106, 0.12), transparent 55%),
    linear-gradient(180deg, #0a0412 0%, #050208 40%, #12081c 100%);
}

.glow-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  animation: orb-drift 14s ease-in-out infinite alternate;
}

.glow-orb--1 {
  width: 40vw;
  height: 40vw;
  top: -10%;
  left: -5%;
  background: var(--purple);
  opacity: 0.35;
}

.glow-orb--2 {
  width: 35vw;
  height: 35vw;
  bottom: 10%;
  right: -8%;
  background: var(--pink-hot);
  opacity: 0.2;
  animation-delay: -5s;
}

@keyframes orb-drift {
  to {
    transform: translate(4vw, 3vh) scale(1.08);
  }
}

/* Sakura petals */
.petal {
  position: absolute;
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, #ffc4e8, #ff8ec8);
  border-radius: 150% 0 150% 0;
  opacity: 0.7;
  animation: petal-fall linear forwards;
  box-shadow: 0 0 8px rgba(255, 140, 200, 0.4);
}

@keyframes petal-fall {
  0% {
    transform: translateY(-10vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.85;
  }
  100% {
    transform: translateY(110vh) rotate(720deg);
    opacity: 0;
  }
}

/* ── Preloader ── */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: var(--bg);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader-logo {
  width: 120px;
  border-radius: 50%;
  animation: pulse-glow-keyframes 1.5s ease-in-out infinite;
  filter: drop-shadow(0 0 24px var(--gold-glow));
}

.preloader-text {
  font-family: var(--font-jp);
  font-size: 1.5rem;
  color: var(--gold);
}

.preloader-bar {
  width: 160px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  overflow: hidden;
}

.preloader-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--pink), var(--gold));
  border-radius: inherit;
  animation: load-bar 1.2s ease forwards;
}

@keyframes load-bar {
  to {
    width: 100%;
  }
}

/* ── Ticker ── */
.ticker {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  z-index: 90;
  background: linear-gradient(
    90deg,
    #f53bff,
    #ff00a9,
    #ff00aad5,
    #ffd56a,
    #00f9b9,
    #6ac3ff
  );
  background-size: 200% 100%;
  animation: slide-gradient 6s linear infinite;
  overflow: hidden;
  padding: 0.35rem 0;
}

@keyframes slide-gradient {
  to {
    background-position: 200% 0;
  }
}

.ticker__track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: ticker 22s linear infinite;
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 0.85rem;
  color: #1a0a24;
}

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

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  background: rgba(5, 2, 8, 0.75);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.nav.scrolled {
  box-shadow: 0 8px 32px rgba(113, 33, 153, 0.35);
  background: rgba(5, 2, 8, 0.92);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.nav__logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(255, 213, 106, 0.5);
}

.nav__links {
  display: flex;
  gap: 2rem;
  font-weight: 300;
}

.nav__links a {
  position: relative;
  transition: color 0.2s;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--gold));
  transition: width 0.3s ease;
}

.nav__links a:hover {
  color: var(--gold);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav__social {
  display: flex;
  padding: 0.5rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  transition: transform 0.25s, background 0.25s;
}

.nav__social:hover {
  transform: scale(1.1) rotate(-8deg);
  background: var(--purple);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}

.nav__toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav__toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: calc(var(--nav-h) + 2rem);
  left: 1rem;
  right: 1rem;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
  transform: translateY(-12px);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
}

.mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu a {
  padding: 0.65rem;
  border-radius: 0.5rem;
  transition: background 0.2s;
}

.mobile-menu a:hover {
  background: rgba(113, 33, 153, 0.4);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s;
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

.btn--primary {
  background: linear-gradient(135deg, var(--purple-bright), var(--pink));
  color: #fff;
  box-shadow: 0 4px 24px rgba(132, 34, 206, 0.5);
}

.btn--primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 32px rgba(255, 77, 166, 0.55);
}

.btn--glow {
  animation: btn-pulse 2.5s ease-in-out infinite;
}

@keyframes btn-pulse {
  0%, 100% {
    box-shadow: 0 4px 24px rgba(132, 34, 206, 0.5);
  }
  50% {
    box-shadow: 0 4px 40px rgba(255, 213, 106, 0.45), 0 0 60px rgba(255, 77, 166, 0.3);
  }
}

.btn--outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}

.btn--outline:hover {
  background: rgba(255, 213, 106, 0.15);
  transform: translateY(-2px);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--text);
}

.btn--ghost:hover {
  background: rgba(113, 33, 153, 0.35);
}

/* ── Hero ── */
.hero {
  padding-top: calc(var(--nav-h) + 3.5rem);
  min-height: 100vh;
  position: relative;
  z-index: 2;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5c-2 8-10 12-10 20 0 6 4 10 10 10s10-4 10-10c0-8-8-12-10-20z' fill='%23ff4da6' fill-opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.6;
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}

.hero__jp {
  font-family: var(--font-jp);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--gold);
  margin-bottom: 0.5rem;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% {
    opacity: 0.85;
  }
  50% {
    opacity: 1;
    text-shadow: 0 0 20px var(--gold);
  }
}

.hero__title {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  margin-bottom: 0.25rem;
}

.gradient-text {
  background: linear-gradient(120deg, #fff 0%, var(--gold) 40%, var(--pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__symbol {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--pink);
  margin-bottom: 1rem;
  text-shadow: 0 0 30px rgba(255, 77, 166, 0.5);
}

.hero__tagline {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 32rem;
  margin-bottom: 1.75rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

/* Hero CA copy */
.ca-copy {
  margin-top: 0.25rem;
  max-width: 100%;
}

.ca-copy__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.ca-copy__box {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 520px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(113, 33, 153, 0.35), rgba(0, 0, 0, 0.5));
  box-shadow:
    inset 0 0 24px rgba(206, 72, 255, 0.15),
    0 8px 32px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.ca-copy__box:hover {
  border-color: var(--gold);
  box-shadow:
    inset 0 0 28px rgba(255, 213, 106, 0.12),
    0 8px 36px rgba(113, 33, 153, 0.4);
}

.ca-copy__address {
  flex: 1;
  min-width: 0;
  padding: 0.85rem 1rem;
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: clamp(0.65rem, 2.2vw, 0.82rem);
  line-height: 1.4;
  color: var(--text);
  word-break: break-all;
  cursor: pointer;
  user-select: all;
}

.ca-copy__btn {
  flex-shrink: 0;
  padding: 0 1.25rem;
  border: none;
  border-left: 1px solid var(--border);
  background: linear-gradient(180deg, var(--purple-bright), var(--pink));
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: filter 0.2s, transform 0.2s;
}

.ca-copy__btn:hover {
  filter: brightness(1.12);
  transform: scale(1.02);
}

.ca-copy__btn--done {
  background: linear-gradient(180deg, #2d8a5e, var(--mint));
}

.ca-copy__hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__visual {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__logo-ring {
  position: relative;
  z-index: 2;
}

.hero__logo-ring::before {
  content: "";
  position: absolute;
  inset: -12%;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--pink), var(--gold), var(--mint), var(--purple-bright), var(--pink));
  animation: ring-spin 8s linear infinite;
  filter: blur(8px);
  opacity: 0.7;
  z-index: -1;
}

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

.hero__main-img {
  width: min(320px, 70vw);
  border-radius: 50%;
  border: 4px solid rgba(255, 213, 106, 0.4);
  box-shadow:
    0 0 60px rgba(255, 180, 71, 0.45),
    inset 0 0 40px rgba(255, 255, 255, 0.05);
}

.hero__float-img {
  position: absolute;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  object-fit: cover;
}

.hero__float-img--1 {
  width: 140px;
  height: 100px;
  bottom: 5%;
  left: 0;
  z-index: 3;
}

.hero__float-img--2 {
  width: 130px;
  height: 110px;
  top: 8%;
  right: 0;
  z-index: 3;
}

.hero__gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.gallery-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.4s ease, box-shadow 0.4s;
}

.gallery-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(113, 33, 153, 0.4);
}

.gallery-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-card figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(transparent, rgba(5, 2, 8, 0.9));
  font-family: var(--font-jp);
  font-size: 0.9rem;
}

/* ── About ── */
.about {
  z-index: 2;
}

.about::before {
  content: "";
  position: absolute;
  left: 10%;
  top: 10%;
  width: 60%;
  height: 30%;
  background: var(--purple);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
  z-index: -1;
}

.about__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1.25rem;
}

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

.section-sub {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.section-sub a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.about__lead {
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.about p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.about__facts {
  list-style: none;
  margin-top: 1.5rem;
}

.about__facts li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.about__facts span {
  color: var(--pink);
  font-size: 1.2rem;
}

.about__img-stack {
  position: relative;
}

.about__img {
  border-radius: var(--radius);
  border: 2px solid var(--border);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}

.about__img--main {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about__img--sub {
  position: absolute;
  width: 45%;
  bottom: -1.5rem;
  right: -1rem;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
}

.about__badge {
  position: absolute;
  top: -0.5rem;
  left: -0.5rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  border-radius: 999px;
  transform: rotate(-8deg);
}

/* ── How to buy ── */
.how {
  z-index: 2;
  background: linear-gradient(180deg, transparent, rgba(113, 33, 153, 0.12), transparent);
}

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.step-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  backdrop-filter: blur(12px);
  transition: transform 0.35s ease, box-shadow 0.35s;
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pink-hot), var(--gold), var(--mint));
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow:
    inset 0 30px 60px -12px rgba(206, 72, 255, 0.35),
    0 20px 40px rgba(113, 33, 153, 0.25);
}

.step-card__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  background: linear-gradient(180deg, var(--pink), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  margin-bottom: 0.5rem;
}

.step-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.how__visual {
  text-align: center;
}

.how__img {
  max-width: 480px;
  margin-inline: auto;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* ── Chart ── */
.chart {
  z-index: 2;
}

.chart__frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--border);
  box-shadow:
    inset 0 30px 60px -12px rgba(206, 72, 255, 0.45),
    0 24px 60px rgba(0, 0, 0, 0.5);
  background: #0d0614;
  aspect-ratio: 16/9;
  min-height: 420px;
}

.chart__frame iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

/* ── Join us ── */
.join {
  z-index: 2;
  padding-bottom: 0;
  background: linear-gradient(180deg, #000 0%, var(--purple) 120%);
}

.join__banner-wrap {
  position: relative;
  width: 100%;
  max-height: 55vh;
  overflow: hidden;
}

.join__banner {
  width: 100%;
  height: auto;
  max-height: 55vh;
  object-fit: cover;
  object-position: center;
  display: block;
  animation: banner-kenburns 20s ease-in-out infinite alternate;
}

@keyframes banner-kenburns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}

.join__banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 30%,
    rgba(5, 2, 8, 0.5) 70%,
    var(--bg) 100%
  );
  pointer-events: none;
}

.join__body {
  padding: 3rem 0 4rem;
  text-align: center;
}

.join__title {
  margin-bottom: 1rem;
  font-size: clamp(2.5rem, 8vw, 5rem);
  line-height: 1;
}

.join__text {
  max-width: 640px;
  margin: 0 auto 2rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

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

.join-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 2rem;
  min-width: 160px;
  border-radius: var(--radius);
  background: var(--glass);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
}

.join-card:hover {
  transform: translateY(-6px) rotate(-2deg);
  box-shadow: 0 16px 40px rgba(255, 77, 166, 0.3);
}

.join-card--accent {
  background: linear-gradient(145deg, rgba(132, 34, 206, 0.5), rgba(255, 77, 166, 0.35));
  border-color: var(--gold);
}

.join-card__icon {
  font-size: 1.75rem;
}

.join-card__label {
  font-weight: 600;
}

.join__gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.join__thumb {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--border);
}

.join__thumb--logo {
  object-fit: contain;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.25rem;
}

/* ── Footer ── */
.footer {
  position: relative;
  z-index: 2;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
  background: var(--bg);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.footer__logo {
  width: 56px;
  border-radius: 50%;
  margin-bottom: 0.25rem;
}

.footer__disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 480px;
}

.footer a {
  color: var(--gold);
  font-size: 0.9rem;
}

.footer a:hover {
  text-decoration: underline;
}

/* ── Animations ── */
.wiggle {
  animation: wiggle 2.2s ease-in-out infinite;
}

@keyframes wiggle {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-6deg);
  }
  75% {
    transform: rotate(6deg);
  }
}

.float-slow {
  animation: float-slow 4s ease-in-out infinite;
}

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

.pulse-glow {
  animation: pulse-glow-keyframes 2s ease-in-out infinite;
}

@keyframes pulse-glow-keyframes {
  0%, 100% {
    filter: drop-shadow(0 0 12px rgba(255, 213, 106, 0.4));
  }
  50% {
    filter: drop-shadow(0 0 28px rgba(255, 77, 166, 0.6));
  }
}

.sakura {
  display: inline-block;
  animation: spin-sakura 4s linear infinite;
}

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

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay {
  transition-delay: 0.15s;
}
.reveal--delay-2 {
  transition-delay: 0.3s;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .nav__links,
  .nav__buy {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

  .hero__inner,
  .about__grid {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    min-height: 300px;
    order: -1;
  }

  .hero__float-img--1,
  .hero__float-img--2 {
    width: 100px;
  }

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

  .about__img--sub {
    right: 0;
    width: 38%;
  }
}

@media (max-width: 600px) {
  .hero__gallery {
    grid-template-columns: 1fr;
  }

  .ticker {
    font-size: 0.75rem;
  }

  main {
    padding-top: 0.5rem;
  }
}
