:root {
  --ink: #24183b;
  --ink-soft: #594d6c;
  --plum: #442d70;
  --plum-deep: #2e1d50;
  --purple: #7253ac;
  --lavender: #d7c3f0;
  --lilac: #eee6f8;
  --blush: #f6ddea;
  --cream: #fffaf2;
  --blue: #dcecf5;
  --white: #fffefe;
  --line: rgba(50, 31, 82, 0.14);
  --shadow: 0 24px 80px rgba(55, 32, 91, 0.18);
  --display: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-rounded, "SF Pro Rounded", "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection {
  color: var(--white);
  background: var(--purple);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--plum);
  border-radius: 999px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.page-sky {
  position: absolute;
  z-index: 0;
  inset: 0 0 auto;
  height: 960px;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 23%, rgba(255, 255, 255, 0.9) 0 2px, transparent 3px),
    radial-gradient(circle at 64% 10%, rgba(255, 255, 255, 0.7) 0 1px, transparent 2px),
    radial-gradient(circle at 12% 29%, rgba(255, 255, 255, 0.75) 0 1px, transparent 2px),
    linear-gradient(180deg, #c9b4ec 0%, #e8d9f3 58%, var(--cream) 100%);
}

.page-sky::after {
  position: absolute;
  right: -9%;
  bottom: 2%;
  left: -9%;
  height: 220px;
  content: "";
  opacity: 0.78;
  filter: blur(1px);
  background:
    radial-gradient(ellipse at 8% 70%, white 0 19%, transparent 20%),
    radial-gradient(ellipse at 27% 58%, white 0 15%, transparent 16%),
    radial-gradient(ellipse at 51% 76%, white 0 20%, transparent 21%),
    radial-gradient(ellipse at 75% 59%, white 0 17%, transparent 18%),
    radial-gradient(ellipse at 96% 72%, white 0 21%, transparent 22%);
}

.star {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.9);
  animation: twinkle 3s ease-in-out infinite;
}

.star::after,
.star::before {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  background: white;
  border-radius: 100%;
  transform: translate(-50%, -50%);
}

.star::before { width: 26px; height: 2px; }
.star::after { width: 2px; height: 26px; }
.star-a { top: 15%; left: 7%; }
.star-b { top: 11%; right: 11%; animation-delay: -1s; transform: scale(0.75); }
.star-c { top: 44%; left: 49%; animation-delay: -2s; transform: scale(0.5); }
.star-d { top: 32%; right: 3%; animation-delay: -0.5s; transform: scale(0.45); }
.star-e { top: 57%; left: 3%; animation-delay: -1.5s; transform: scale(0.65); }

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1240px, calc(100% - 56px));
  margin: 0 auto;
  padding: 24px 0;
  border-bottom: 1px solid rgba(63, 42, 96, 0.13);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
}

.brand-mark {
  width: 38px;
  height: 38px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  box-shadow: 0 5px 20px rgba(68, 45, 112, 0.18);
}

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

.brand-name {
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.18em;
}

.desktop-nav {
  display: flex;
  gap: 34px;
  font-size: 13px;
  font-weight: 700;
}

.desktop-nav a,
.footer-links a {
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.footer-links a:hover {
  color: var(--purple);
}

.site-header > .button {
  justify-self: end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-small {
  min-height: 42px;
  padding: 0 19px;
  font-size: 12px;
}

.button-light {
  color: var(--plum);
  background: rgba(255, 255, 255, 0.66);
  border-color: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
}

.button-light:hover,
.button-white:hover {
  box-shadow: 0 12px 30px rgba(55, 32, 91, 0.16);
}

.button-primary {
  color: var(--white);
  background: var(--plum);
  box-shadow: 0 12px 30px rgba(68, 45, 112, 0.22);
}

.button-primary:hover {
  background: #38225f;
  box-shadow: 0 16px 36px rgba(68, 45, 112, 0.3);
}

.button-outline {
  border-color: var(--line);
  background: transparent;
}

.hero {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  column-gap: clamp(42px, 7vw, 108px);
  align-items: center;
  width: min(1180px, calc(100% - 56px));
  min-height: 790px;
  margin: 0 auto;
  padding: 70px 0 132px;
}

.hero-copy {
  min-width: 0;
  padding-bottom: 44px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  color: var(--plum);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow-dot,
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 0 5px rgba(114, 83, 172, 0.13);
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

h1 {
  max-width: 640px;
  font-size: clamp(64px, 7.1vw, 104px);
}

h1 em,
h2 em {
  color: var(--purple);
  font-weight: 400;
}

.hero-intro {
  max-width: 530px;
  margin: 34px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.65vw, 20px);
  line-height: 1.65;
}

.hero-actions,
.token-actions,
.cta-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 34px;
}

.text-link {
  padding: 8px 0 5px;
  border-bottom: 1px solid rgba(43, 28, 68, 0.34);
  font-size: 13px;
  font-weight: 750;
}

.social-row {
  display: flex;
  gap: 24px;
  margin-top: 40px;
}

.social-row a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 750;
}

.social-icon {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: var(--white);
  background: var(--purple);
  border-radius: 50%;
  font-size: 11px;
}

.social-x {
  background: var(--ink);
}

.hero-art {
  position: relative;
  justify-self: center;
  width: min(100%, 570px);
  filter: drop-shadow(0 32px 45px rgba(66, 42, 102, 0.2));
}

.image-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  padding: 10px;
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 48% 52% 48% 52% / 46% 44% 56% 54%;
  backdrop-filter: blur(8px);
  animation: cloud-breathe 8s ease-in-out infinite;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.image-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.24) 45%, transparent 55%);
  transform: translateX(-120%);
  animation: shimmer 8s ease-in-out 2s infinite;
}

.orbit-badge {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 108px;
  height: 108px;
  color: var(--plum);
  background: rgba(255, 254, 254, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  box-shadow: 0 18px 40px rgba(62, 38, 97, 0.18);
  backdrop-filter: blur(12px);
}

.orbit-badge strong {
  font-family: var(--display);
  font-size: 27px;
  line-height: 1.1;
}

.orbit-badge span {
  margin-top: 4px;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.badge-tax {
  top: 8%;
  right: -8%;
  animation: float 5s ease-in-out infinite;
}

.badge-vibes {
  bottom: 6%;
  left: -8%;
  width: 120px;
  height: 120px;
  color: var(--white);
  background: rgba(68, 45, 112, 0.9);
  animation: float 6s ease-in-out -2s infinite;
}

.badge-vibes strong {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.1em;
}

.badge-vibes .tiny-star {
  margin-bottom: 5px;
  color: #f5dba7;
  font-size: 18px;
}

.float-spark {
  position: absolute;
  color: white;
  font-size: 29px;
  text-shadow: 0 0 18px white;
  animation: twinkle 3s ease-in-out infinite;
}

.spark-one { top: -2%; left: 9%; }
.spark-two { right: 4%; bottom: 1%; animation-delay: -1.5s; }

.hero-strip {
  position: absolute;
  right: 0;
  bottom: 36px;
  left: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 25px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-strip div {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 0 28px;
  border-right: 1px solid var(--line);
}

.hero-strip div:first-child { padding-left: 0; }
.hero-strip div:last-child { border-right: 0; }
.hero-strip span { color: var(--ink-soft); font-size: 10px; font-weight: 750; letter-spacing: 0.1em; text-transform: uppercase; }
.hero-strip strong { font-family: var(--display); font-size: 24px; font-weight: 400; }

.section {
  position: relative;
  padding: 130px max(28px, calc((100vw - 1180px) / 2));
}

.story {
  background: var(--cream);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: end;
  margin-bottom: 62px;
}

.eyebrow-dark {
  color: var(--purple);
}

.section-heading h2,
.token-copy h2,
.impact h2,
.cta h2 {
  font-size: clamp(54px, 6.2vw, 88px);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.story-card {
  position: relative;
  min-height: 390px;
  padding: 28px 31px 34px;
  overflow: hidden;
  border: 1px solid rgba(73, 48, 105, 0.08);
  border-radius: 28px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.story-card:hover {
  z-index: 2;
  transform: translateY(-7px) rotate(-0.4deg);
  box-shadow: var(--shadow);
}

.card-lavender { background: #dfd0f1; }
.card-cream { background: #f7ebd8; }
.card-blue { background: #dbeaf0; }

.card-number {
  color: rgba(44, 29, 70, 0.45);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.card-symbol {
  display: grid;
  width: 125px;
  height: 125px;
  margin: 34px auto 30px;
  place-items: center;
  color: #66458f;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 56px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.moon-symbol { font-size: 72px; transform: rotate(-14deg); }
.heart-symbol { font-size: 68px; }
.story-card h3 { margin: 0 0 10px; font-family: var(--display); font-size: 29px; font-weight: 400; letter-spacing: -0.03em; }
.story-card p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.7; }

.impact {
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 16% 15%, rgba(171, 132, 221, 0.27), transparent 28%),
    radial-gradient(circle at 84% 77%, rgba(123, 170, 204, 0.18), transparent 28%),
    var(--plum-deep);
}

.impact::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  opacity: 0.36;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.85) 0 1px, transparent 1.5px);
  background-size: 92px 92px;
}

.impact-cloud {
  position: absolute;
  z-index: -1;
  width: 470px;
  height: 190px;
  opacity: 0.07;
  filter: blur(2px);
  background: white;
  border-radius: 50%;
}

.impact-cloud::before,
.impact-cloud::after {
  position: absolute;
  content: "";
  background: inherit;
  border-radius: 50%;
}

.impact-cloud::before { width: 210px; height: 210px; left: 50px; bottom: 25px; }
.impact-cloud::after { width: 260px; height: 260px; right: 30px; bottom: 5px; }
.cloud-left { top: 19%; left: -250px; }
.cloud-right { right: -240px; bottom: 6%; }

.impact-heading {
  max-width: 850px;
  margin: 0 auto 58px;
  text-align: center;
}

.impact-heading .eyebrow {
  justify-content: center;
}

.eyebrow-light {
  color: #d9c3f2;
}

.live-dot {
  background: #a9e4b1;
  box-shadow: 0 0 0 5px rgba(169, 228, 177, 0.12);
  animation: pulse 2s ease-in-out infinite;
}

.impact h2 em {
  color: #cdb1ee;
}

.impact-heading > p:last-child {
  max-width: 600px;
  margin: 30px auto 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 16px;
}

.tracker-card {
  position: relative;
  max-width: 940px;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 64px);
  overflow: hidden;
  color: var(--ink);
  background: rgba(255, 254, 252, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 34px;
  box-shadow: 0 42px 120px rgba(8, 4, 20, 0.34);
}

.tracker-card::after {
  position: absolute;
  top: -130px;
  right: -110px;
  width: 310px;
  height: 310px;
  content: "";
  pointer-events: none;
  background: radial-gradient(circle, rgba(211, 187, 239, 0.64), transparent 66%);
}

.tracker-topline,
.tracker-details {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tracker-topline > span:first-child {
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.tracker-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  color: #35734b;
  background: #e5f4e8;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tracker-status i {
  width: 6px;
  height: 6px;
  background: #55b070;
  border-radius: 50%;
}

.tracker-status.is-syncing {
  color: #805d20;
  background: #f7efd9;
}

.tracker-status.is-syncing i { background: #d29a38; }
.tracker-status.is-offline { color: #89575f; background: #f8e4e8; }
.tracker-status.is-offline i { background: #c57280; }

.donation-total {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-top: 22px;
}

#donation-amount {
  font-family: var(--display);
  font-size: clamp(70px, 11vw, 144px);
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.bnb-label {
  color: var(--purple);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 850;
}

.tracker-caption {
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.tracker-divider {
  height: 1px;
  margin: 34px 0 28px;
  background: var(--line);
}

.tracker-details {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  gap: 30px;
}

.tracker-details div {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 6px;
}

.tracker-details div + div {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.tracker-details span {
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tracker-details strong,
.wallet-link {
  font-size: 14px;
  font-weight: 750;
}

.wallet-link code,
.tracker-note code,
.contract-box code {
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
}

.proof-link {
  display: inline-block;
  margin-top: 31px;
  padding-bottom: 3px;
  color: var(--purple);
  border-bottom: 1px solid rgba(114, 83, 172, 0.3);
  font-size: 12px;
  font-weight: 800;
}

.tracker-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 760px;
  margin: 34px auto 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 11px;
  line-height: 1.7;
  text-align: center;
}

.tracker-note span { color: #bfe7c7; }

.token {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(60px, 9vw, 140px);
  align-items: center;
  background: #f7f0e7;
}

.token-visual {
  position: relative;
  justify-self: center;
  width: min(100%, 490px);
  padding: 42px;
}

.token-visual img {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 10px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  box-shadow: 0 28px 70px rgba(68, 45, 112, 0.22);
}

.token-halo {
  position: absolute;
  inset: 5%;
  border: 1px solid rgba(114, 83, 172, 0.2);
  border-radius: 50%;
  animation: slow-spin 20s linear infinite;
}

.token-halo::before,
.token-halo::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  border: 1px solid rgba(114, 83, 172, 0.12);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.token-halo::before { width: 118%; height: 118%; }
.token-halo::after { width: 138%; height: 138%; }

.token-orbit {
  position: absolute;
  z-index: 3;
  color: var(--purple);
  font-size: 28px;
  animation: twinkle 3s ease-in-out infinite;
}

.orbit-a { top: 2%; right: 18%; }
.orbit-b { bottom: 7%; left: 5%; animation-delay: -1s; }
.orbit-c { top: 28%; left: -2%; font-size: 60px; animation-delay: -2s; }

.token-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
}

.contract-box {
  margin-top: 32px;
  padding: 17px 18px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.contract-box > span {
  display: block;
  margin-bottom: 7px;
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contract-box button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0;
  color: var(--ink);
  background: none;
  border: 0;
  cursor: pointer;
}

.contract-box code { font-size: 14px; }
.copy-label { color: var(--purple); font-size: 11px; font-weight: 800; }

.cta {
  overflow: hidden;
  color: var(--white);
  text-align: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(221, 190, 239, 0.25), transparent 25%),
    linear-gradient(135deg, #7654a7, #4b3479);
}

.cta::before,
.cta::after {
  position: absolute;
  bottom: -130px;
  width: 440px;
  height: 250px;
  content: "";
  opacity: 0.09;
  background: white;
  border-radius: 50%;
}

.cta::before { left: -120px; }
.cta::after { right: -110px; }
.cta .eyebrow { justify-content: center; }
.cta h2 { letter-spacing: -0.045em; }
.cta-actions { position: relative; z-index: 2; justify-content: center; }
.button-white { color: var(--plum); background: white; }
.button-glass { color: white; background: rgba(255, 255, 255, 0.09); border-color: rgba(255, 255, 255, 0.24); backdrop-filter: blur(8px); }

.cta-star {
  position: absolute;
  color: rgba(255, 255, 255, 0.78);
  font-size: 40px;
  animation: twinkle 3s ease-in-out infinite;
}

.star-left { top: 28%; left: 12%; }
.star-right { right: 15%; bottom: 24%; animation-delay: -1s; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 34px;
  padding: 54px max(28px, calc((100vw - 1180px) / 2)) 34px;
  background: var(--cream);
}

.site-footer > p:not(.disclaimer) {
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: 16px;
}

.footer-links { display: flex; gap: 24px; font-size: 12px; font-weight: 750; }
.disclaimer { grid-column: 1 / -1; margin: 18px 0 0; padding-top: 24px; color: rgba(43, 28, 68, 0.48); border-top: 1px solid var(--line); font-size: 10px; text-align: center; }

.toast {
  position: fixed;
  z-index: 100;
  right: 24px;
  bottom: 24px;
  padding: 12px 18px;
  color: white;
  background: var(--plum-deep);
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-size: 12px;
  font-weight: 750;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible { opacity: 1; transform: translateY(0); }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 750ms cubic-bezier(0.2, 0.65, 0.25, 1), transform 750ms cubic-bezier(0.2, 0.65, 0.25, 1);
}

.reveal-delay-short { transition-delay: 100ms; }
.reveal-delay { transition-delay: 180ms; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

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

@keyframes cloud-breathe {
  0%, 100% { border-radius: 48% 52% 48% 52% / 46% 44% 56% 54%; transform: translateY(0); }
  50% { border-radius: 52% 48% 53% 47% / 50% 54% 46% 50%; transform: translateY(-5px); }
}

@keyframes twinkle {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 1; }
}

@keyframes pulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; box-shadow: 0 0 0 8px rgba(169, 228, 177, 0.06); }
}

@keyframes shimmer {
  0%, 65%, 100% { transform: translateX(-120%); }
  80% { transform: translateX(120%); }
}

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

@media (max-width: 900px) {
  .site-header { grid-template-columns: minmax(0, 1fr) auto; }
  .desktop-nav { display: none; }
  .hero { grid-template-columns: minmax(0, 1fr); gap: 50px; padding-top: 64px; }
  .hero-copy { text-align: center; padding-bottom: 0; }
  .hero-copy .eyebrow, .hero-actions, .social-row { justify-content: center; }
  .hero-intro { margin-right: auto; margin-left: auto; }
  .hero-art { width: min(78vw, 520px); }
  .hero-strip { position: relative; grid-column: 1; bottom: auto; margin-top: 15px; }
  .hero { padding-bottom: 40px; }
  .section-heading { grid-template-columns: 1fr; gap: 16px; }
  .story-grid { grid-template-columns: 1fr; }
  .story-card { min-height: 320px; }
  .card-symbol { margin-top: 18px; margin-bottom: 18px; }
  .token { grid-template-columns: 1fr; }
  .token-visual { width: min(80vw, 490px); }
  .site-footer { grid-template-columns: 1fr auto; }
  .site-footer > p:not(.disclaimer) { display: none; }
}

@media (max-width: 620px) {
  .site-header { width: calc(100% - 32px); padding: 16px 0; }
  .brand-name { font-size: 12px; }
  .site-header > .button { min-height: 38px; max-width: 126px; padding: 0 12px; white-space: nowrap; }
  .page-sky { height: 1040px; }
  .hero { width: calc(100% - 34px); min-height: auto; padding-top: 46px; }
  h1 { max-width: 100%; overflow-wrap: anywhere; font-size: clamp(46px, 12.6vw, 52px); letter-spacing: -0.06em; }
  .hero-intro { margin-top: 25px; font-size: 16px; }
  .hero-actions { flex-direction: column; gap: 13px; }
  .hero-actions .button { width: min(100%, 330px); }
  .social-row { margin-top: 28px; }
  .hero-art { width: calc(100% - 42px); }
  .orbit-badge { width: 82px; height: 82px; }
  .orbit-badge strong { font-size: 21px; }
  .badge-tax { right: -10%; }
  .badge-vibes { left: -10%; width: 92px; height: 92px; }
  .badge-vibes strong { font-size: 8px; }
  .hero-strip { grid-template-columns: 1fr 1fr; }
  .hero-strip div { padding: 15px 18px; border-bottom: 1px solid var(--line); }
  .hero-strip div:nth-child(2) { border-right: 0; }
  .hero-strip div:nth-child(3), .hero-strip div:nth-child(4) { border-bottom: 0; }
  .hero-strip div:first-child { padding-left: 18px; }
  .hero-strip strong { font-size: 20px; }
  .section { padding-top: 92px; padding-bottom: 92px; }
  .section-heading h2, .token-copy h2, .impact h2, .cta h2 { font-size: clamp(48px, 15vw, 64px); }
  .section-heading { margin-bottom: 38px; }
  .story-card { padding: 24px; }
  .impact-heading { margin-bottom: 38px; }
  .tracker-card { border-radius: 24px; }
  .donation-total { gap: 10px; }
  #donation-amount { font-size: clamp(62px, 21vw, 92px); }
  .bnb-label { font-size: 16px; }
  .tracker-details { grid-template-columns: 1fr 1fr; gap: 22px 10px; }
  .tracker-details div + div { padding-left: 18px; }
  .tracker-details div:first-child { grid-column: 1 / -1; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
  .tracker-details div:nth-child(2) { padding-left: 0; border-left: 0; }
  .tracker-note { text-align: left; }
  .token-visual { width: 100%; padding: 26px; }
  .token-actions, .cta-actions { flex-direction: column; }
  .token-actions .button, .cta-actions .button { width: 100%; }
  .contract-box code { font-size: 11px; }
  .site-footer { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .footer-links { gap: 18px; }
  .toast { right: 50%; transform: translate(50%, 12px); }
  .toast.is-visible { transform: translate(50%, 0); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
