/* ============================================================
   PUMPOWEEN — sections.css
   Hero, ticker, story, shrine, market, tokenomics, leaderboard,
   how-to-buy, countdown, community, contact, footer.
   ============================================================ */

/* ==================== HERO ==================== */
.hero {
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding-top: clamp(120px, 16vh, 180px);
  padding-bottom: 90px;
  overflow: hidden;
  background: var(--cream);
}
.hero__moon {
  position: absolute; z-index: 0;
  top: -22vh; right: -10vw;
  width: 52vw; height: 52vw; border-radius: 50%;
  background: radial-gradient(circle at 42% 40%, #FFFFFF 0%, #FFF6E6 46%, #FFEFD2 72%, rgba(255, 239, 210, 0) 100%);
  box-shadow: 0 0 120px 40px rgba(255, 242, 220, .8);
}
.hero__moon::after {
  content: ""; position: absolute; inset: -6%;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 154, 0, .22);
  animation: moonRing 7s ease-in-out infinite alternate;
}
@keyframes moonRing {
  from { transform: scale(.985); opacity: .5; }
  to { transform: scale(1.02); opacity: 1; }
}
.hero__mega {
  position: absolute; z-index: 0;
  bottom: -.14em; left: -2vw;
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(8rem, 20.5vw, 21rem);
  line-height: 1; letter-spacing: .01em;
  color: transparent;
  -webkit-text-stroke: 2px rgba(36, 36, 45, .075);
  white-space: nowrap;
  pointer-events: none;
  will-change: transform;
}
.hero__mega span {
  display: inline-block;
  animation: megaDrift 32s ease-in-out infinite alternate;
}
@keyframes megaDrift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-6vw, 0, 0); }
}

/* floating candy pills scattered through the hero */
.hero__pills { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero-pill {
  position: absolute;
  filter: drop-shadow(0 16px 22px rgba(36, 36, 45, .14));
  opacity: .9;
}
.hero-pill--a { width: 72px; height: 72px; left: 5%; top: 24%; animation: pillFloatA 7s ease-in-out infinite alternate; }
.hero-pill--b { width: 44px; height: 44px; right: 4%; top: 12%; animation: pillFloatB 9s ease-in-out infinite alternate; }
.hero-pill--c { width: 56px; height: 56px; right: 24%; bottom: 13%; animation: pillFloatC 8s ease-in-out infinite alternate; }
@keyframes pillFloatA { from { transform: translateY(-12px) rotate(-10deg); } to { transform: translateY(12px) rotate(8deg); } }
@keyframes pillFloatB { from { transform: translateY(10px) rotate(14deg); } to { transform: translateY(-12px) rotate(-6deg); } }
@keyframes pillFloatC { from { transform: translateY(-8px) rotate(4deg); } to { transform: translateY(14px) rotate(-12deg); } }
.hero__grid {
  display: grid; grid-template-columns: 1.08fr .92fr;
  align-items: center; gap: clamp(24px, 4vw, 60px);
}
.hero__eyebrow { margin-bottom: 26px; }
.hero__title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2.7rem, 6.5vw, 5.9rem);
  line-height: .96; letter-spacing: -.005em;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.hero__line { display: block; overflow: hidden; padding-block: .04em; white-space: nowrap; }
.hero__line .hw { display: inline-block; will-change: transform; }
.hero__line--accent { color: var(--orange); }
.hero__dot { color: var(--orange-deep); display: inline-block; }
.hero__sub { margin-bottom: 38px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }

.hero__visual { position: relative; z-index: 2; }
.hero__cap-wrap { position: relative; width: min(100%, 560px); margin-inline: auto; }
.hero__cap {
  width: 100%; aspect-ratio: 1;
  will-change: transform;
}
.hero__cap-shadow {
  position: absolute; left: 50%; bottom: -4%;
  width: 56%; height: 30px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(36, 36, 45, .22), rgba(36, 36, 45, 0) 72%);
  will-change: transform, opacity;
}

.hero__scrollcue {
  position: absolute; left: 50%; bottom: 26px; z-index: 3;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-weight: 800; font-size: 9px; letter-spacing: .32em; color: var(--ink-faint);
}
.scrollcue__pill {
  width: 25px; height: 40px;
  border: 2px solid var(--line-strong); border-radius: var(--r-pill);
  display: flex; justify-content: center; padding-top: 7px;
}
.scrollcue__pill i {
  width: 5px; height: 9px; border-radius: 4px; background: var(--orange);
  animation: cueDrop 2.1s var(--ease-io) infinite;
}
@keyframes cueDrop {
  0% { transform: translateY(0); opacity: 1; }
  55% { transform: translateY(14px); opacity: 0; }
  70% { transform: translateY(0); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* ==================== TICKER ==================== */
.ticker {
  position: relative; z-index: 4;
  background: var(--orange);
  transform: rotate(-1.35deg) scale(1.02);
  margin-block: -14px 0;
  box-shadow: 0 24px 60px -26px rgba(255, 121, 0, .55);
  overflow: hidden;
}
.ticker__track { display: flex; width: max-content; will-change: transform; }
.ticker__unit {
  display: flex; align-items: center; flex: 0 0 auto;
  padding-block: 16px;
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.05rem, 2.4vw, 1.7rem);
  color: var(--ink); text-transform: uppercase; letter-spacing: .02em;
  white-space: nowrap;
}
.ticker__unit .tick-hollow { color: var(--white); }
.tick-sep {
  display: inline-block; width: 26px; height: 12px; border-radius: 8px;
  background: linear-gradient(90deg, var(--white) 0 50%, var(--ink) 50% 100%);
  margin-inline: clamp(18px, 2.6vw, 40px);
  transform: rotate(-24deg);
}

/* ==================== STORY ==================== */
.story { padding: 0; background: var(--cream); }
.story__stage {
  position: relative; min-height: 100vh; overflow: hidden;
  display: flex; align-items: center;
}
.story__tint {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--peach) 60%, #FFE7C2 100%);
  opacity: 0;
}
.story__moon {
  position: absolute; z-index: 0;
  left: 50%; bottom: -40vh;
  width: 74vw; height: 74vw; max-width: 900px; max-height: 900px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 36%, #FFF9EE 0%, #FFEECC 55%, rgba(255, 238, 204, 0) 100%);
  box-shadow: 0 0 160px 60px rgba(255, 210, 140, .35);
  will-change: transform;
}
.story__cap {
  position: absolute; z-index: 2;
  left: 50%; top: 50%;
  width: clamp(240px, 30vw, 430px); height: clamp(240px, 30vw, 430px);
  will-change: transform;
}
@media (max-width: 900px) {
  .story__cap { width: 120px; height: 120px; left: auto; right: 4%; top: 10%; }
}
.story__lines {
  position: relative; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: clamp(18px, 3.4vh, 34px);
  text-align: center;
  padding-block: 14vh;
}
.story__eyebrow { margin-bottom: 4px; }
.story__line {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.5rem, 4.1vw, 3.4rem);
  line-height: 1.12; text-transform: uppercase;
  max-width: 20ch;
}
/* word/char spans created by the cinematic splitter */
.sw { display: inline-block; white-space: nowrap; }
.sc { display: inline-block; will-change: transform, opacity; }

/* desktop: lines take the stage one at a time (stacked in one grid cell) */
@media (min-width: 901px) {
  .story__lines {
    display: grid; place-items: center; text-align: center;
    padding-block: 0; min-height: 100vh;
  }
  .story__line { grid-area: 1 / 1; max-width: 26ch; }
  .story__line--small { max-width: 46ch; }
  .story__line--final { grid-area: 1 / 1; }
  .story__eyebrow {
    position: absolute; top: 8vh; left: 50%;
    transform: translateX(-50%); margin: 0;
  }
}
.story__line--small {
  font-family: var(--font-body); font-weight: 700;
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  color: var(--ink-soft); text-transform: none;
  letter-spacing: .02em;
  max-width: 40ch;
}
.story__line--final { max-width: none; }
.story__orange { color: var(--orange-deep); }
.story__final-word {
  color: var(--orange);
  text-shadow: 0 0 42px rgba(255, 154, 0, .45);
  font-weight: 900;
  font-size: 1.25em;
}

/* ==================== SHRINE (interactive capsule) ==================== */
.shrine { background: var(--white); overflow: hidden; text-align: center; }
.shrine__head { position: relative; z-index: 3; }
.shrine__stage {
  position: relative; z-index: 3;
  width: min(72vw, 560px); margin: clamp(20px, 4vh, 48px) auto 0;
}
.shrine__cap-btn {
  display: block; width: 100%;
  border-radius: 40px;
  -webkit-tap-highlight-color: transparent;
}
.shrine__cap { width: 100%; aspect-ratio: 1; will-change: transform; }
.shrine__cap-shadow {
  width: 46%; height: 26px; margin: -2% auto 0;
  background: radial-gradient(closest-side, rgba(36, 36, 45, .2), rgba(36, 36, 45, 0) 72%);
}
.shrine__ring {
  position: absolute; inset: 6%;
  border: 1.5px dashed rgba(255, 154, 0, .4);
  border-radius: 50%;
  animation: ringSpin 46s linear infinite;
  pointer-events: none;
}
@keyframes ringSpin { to { transform: rotate(360deg); } }
.shrine__hint {
  position: relative; z-index: 3;
  margin-top: 30px;
  font-weight: 700; color: var(--ink-soft); font-size: 15px;
}

/* ==================== MARKET / STATS ==================== */
.market { background: var(--cream); }
.market__demo { position: absolute; right: 0; top: 12px; }
.market__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2vw, 24px);
}
.stat-card {
  position: relative; overflow: hidden;
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: clamp(22px, 2.4vw, 30px);
  box-shadow: var(--shadow-soft);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .3s ease;
}
.stat-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lift); border-color: rgba(255, 154, 0, .35); }
.stat-card__ghost {
  position: absolute; right: -14px; bottom: -18px;
  width: 92px; height: 92px;
  color: var(--orange);
  opacity: .11;
  animation: ghostDrift 12s ease-in-out infinite alternate;
}
@keyframes ghostDrift {
  from { transform: translate3d(0, 6px, 0) rotate(-4deg); }
  to { transform: translate3d(-16px, -8px, 0) rotate(5deg); }
}
.stat-card__blob {
  position: absolute; left: -30%; top: -40%;
  width: 90%; height: 90%; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255, 242, 220, .9), rgba(255, 242, 220, 0) 70%);
  animation: ghostDrift 16s ease-in-out infinite alternate-reverse;
}
.stat-card__label {
  position: relative; display: block;
  font-weight: 800; font-size: 10.5px; letter-spacing: .22em; color: var(--ink-faint);
  margin-bottom: 12px;
  white-space: nowrap;
}
.stat-card__value {
  position: relative; display: block;
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.4rem, 2.15vw, 1.95rem);
  letter-spacing: -.01em;
  line-height: 1; color: var(--ink);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.stat-card__value em { color: var(--orange-deep); }

/* ==================== TOKENOMICS ==================== */
.tokenomics {
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
  overflow: hidden;
}
.orbit {
  position: relative; z-index: 3;
  width: min(86vw, 660px); height: min(86vw, 660px);
  margin: 0 auto;
}
.orbit__rings { position: absolute; inset: 0; pointer-events: none; }
.orbit__rings i {
  position: absolute; border-radius: 50%;
  border: 1.5px dashed rgba(255, 154, 0, .38);
}
.orbit__rings i:nth-child(1) { inset: 0; animation: ringSpin 140s linear infinite; }
.orbit__rings i:nth-child(2) { inset: 17.5%; animation: ringSpin 100s linear infinite reverse; border-color: rgba(255, 154, 0, .22); }
.orbit__link { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; }
.orbit__link line {
  stroke: var(--orange); stroke-width: 2; stroke-dasharray: 7 7;
  opacity: 0; transition: opacity .25s ease;
}
.orbit__link.is-active line { opacity: .85; animation: linkDash 1.2s linear infinite; }
@keyframes linkDash { to { stroke-dashoffset: -28; } }

.orbit__center {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  z-index: 2;
}
.orbit__cap { width: clamp(180px, 26vw, 250px); height: clamp(180px, 26vw, 250px); will-change: transform; }
.orbit__supply { text-align: center; margin-top: -8px; }
.orbit__supply-label { display: block; font-weight: 800; font-size: 10px; letter-spacing: .26em; color: var(--ink-faint); }
.orbit__supply-value {
  display: block; font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1rem, 2vw, 1.35rem); color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.orbit__node {
  position: absolute; left: 0; top: 0; z-index: 3;
  transform: translate(-50%, -50%);
  will-change: transform;
}
.orbit__node-btn {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 22px;
  padding: 12px 18px;
  box-shadow: var(--shadow-soft);
  transition: border-color .25s ease, box-shadow .35s var(--ease-out), transform .35s var(--ease-out), background .25s ease;
  text-align: center;
}
.orbit__node-pct {
  font-family: var(--font-display); font-weight: 800; font-size: 19px;
  color: var(--orange-deep); line-height: 1;
}
.orbit__node-label { font-weight: 800; font-size: 10px; letter-spacing: .18em; color: var(--ink-soft); }
.orbit__node-blurb {
  max-height: 0; overflow: hidden; opacity: 0;
  font-weight: 600; font-size: 12px; color: var(--ink-soft); line-height: 1.5;
  max-width: 200px;
  transition: max-height .4s var(--ease-out), opacity .3s ease, margin .3s ease;
}
.orbit__node.is-active { z-index: 6; }
.orbit__node.is-active .orbit__node-btn {
  border-color: var(--orange);
  box-shadow: 0 26px 60px -18px rgba(255, 121, 0, .45);
  transform: scale(1.06);
  background: var(--white);
}
.orbit__node.is-active .orbit__node-blurb { max-height: 90px; opacity: 1; margin-top: 8px; }
.orbit__card { display: none; }

/* mobile allocation list (hidden on desktop) */
.tok-list { display: none; }

.tok-facts {
  margin-top: clamp(40px, 6vw, 70px);
  display: flex; flex-wrap: wrap; gap: clamp(18px, 3vw, 44px);
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: clamp(22px, 3vw, 34px) clamp(22px, 4vw, 48px);
  box-shadow: var(--shadow-soft);
  position: relative; z-index: 3;
}
.tok-fact { display: flex; flex-direction: column; gap: 6px; align-items: flex-start; }
.tok-fact > span { font-weight: 800; font-size: 10px; letter-spacing: .24em; color: var(--ink-faint); }
.tok-fact strong { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--ink); }
.tok-fact__ca {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 13px; color: var(--ink);
  border-bottom: 2px dotted rgba(255, 154, 0, .5);
  padding-bottom: 2px;
  transition: color .2s ease;
}
.tok-fact__ca:hover { color: var(--orange-deep); }
.tok-fact__ca .ic { width: 15px; height: 15px; color: var(--orange-deep); }
.tok-fact__ca code { max-width: 190px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ==================== LEADERBOARD ==================== */
.board { background: var(--cream); }
.podium {
  position: relative;
  display: grid; grid-template-columns: 1fr 1.15fr 1fr;
  align-items: end; gap: clamp(12px, 2vw, 24px);
  margin-bottom: clamp(40px, 5vw, 60px);
  padding-top: 30px;
}
.podium__fog {
  position: absolute; left: -6%; right: -6%; bottom: -12px; height: 90px;
  background: radial-gradient(60% 100% at 50% 100%, rgba(255, 242, 220, .95), rgba(255, 242, 220, 0));
  pointer-events: none; z-index: 4;
}
.pod { position: relative; text-align: center; will-change: transform; }
.pod__crown {
  position: absolute; top: -32px; left: 50%; transform: translateX(-50%) rotate(-8deg);
  width: 40px; height: 40px; color: var(--orange);
  filter: drop-shadow(0 6px 14px rgba(255, 121, 0, .5));
  animation: crownBob 3.4s ease-in-out infinite;
}
@keyframes crownBob {
  0%, 100% { transform: translateX(-50%) rotate(-8deg) translateY(0); }
  50% { transform: translateX(-50%) rotate(-5deg) translateY(-6px); }
}
.pod__card {
  position: relative; z-index: 2;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px 22px 0 0;
  border-bottom: 0;
  padding: 22px 14px 16px;
}
.pod--first .pod__card { border-color: rgba(255, 154, 0, .45); }
.pod--first::before {
  content: ""; position: absolute; inset: -8% -12% 0; z-index: 0;
  background: radial-gradient(50% 42% at 50% 30%, rgba(255, 154, 0, .22), rgba(255, 154, 0, 0) 70%);
  animation: auraPulse 3.2s ease-in-out infinite;
  pointer-events: none;
}
@keyframes auraPulse { 0%, 100% { opacity: .65; } 50% { opacity: 1; } }
.pod__addr {
  font-weight: 800; font-size: 13px; letter-spacing: .04em; color: var(--ink);
  display: inline-flex; gap: 6px; align-items: center;
  transition: color .2s ease;
}
.pod__addr:hover { color: var(--orange-deep); }
.pod__balance { display: block; margin-top: 8px; font-family: var(--font-display); font-weight: 800; font-size: clamp(1rem, 2vw, 1.4rem); color: var(--ink); font-variant-numeric: tabular-nums; }
.pod__pct { display: block; margin-top: 2px; font-weight: 800; font-size: 11px; letter-spacing: .14em; color: var(--orange-deep); }
.pod__base {
  position: relative; z-index: 1;
  background: linear-gradient(180deg, var(--peach), #FFE9C6);
  border: 1px solid rgba(255, 154, 0, .3); border-top: 3px solid var(--orange);
  border-radius: 0 0 14px 14px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 900;
  color: rgba(255, 121, 0, .55);
}
.pod--first .pod__base { height: 150px; font-size: 54px; }
.pod--second .pod__base { height: 100px; font-size: 38px; }
.pod--third .pod__base { height: 76px; font-size: 32px; }

.board__bar {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  margin-bottom: 18px; flex-wrap: wrap;
}
.board__search {
  display: flex; align-items: center; gap: 10px;
  background: var(--white); border: 1.5px solid var(--line);
  border-radius: var(--r-pill); padding: 11px 20px;
  min-width: min(320px, 100%);
  transition: border-color .25s ease, box-shadow .25s ease;
}
.board__search:focus-within { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(255, 154, 0, .14); }
.board__search .ic { width: 17px; height: 17px; color: var(--ink-faint); flex: 0 0 auto; }
.board__search input { border: 0; outline: 0; background: none; font-weight: 700; font-size: 14px; width: 100%; }
.board__search input::placeholder { color: var(--ink-faint); }
.board__meta { display: flex; align-items: center; gap: 14px; }
.board__updated { font-weight: 700; font-size: 11.5px; letter-spacing: .08em; color: var(--ink-faint); }
.board__refresh {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1.5px solid var(--line-strong);
  display: grid; place-items: center;
  color: var(--ink-soft); background: var(--white);
  transition: color .2s ease, border-color .2s ease, transform .2s ease;
}
.board__refresh:hover { color: var(--orange-deep); border-color: var(--orange); }
.board__refresh .ic { width: 17px; height: 17px; }
.board__refresh.is-spinning .ic { animation: spin .7s var(--ease-io) infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.board__tablewrap {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-soft);
  overflow-x: auto;
}
.board__table { width: 100%; border-collapse: collapse; min-width: 620px; }
.board__table thead th {
  font-weight: 800; font-size: 10px; letter-spacing: .22em; color: var(--ink-faint);
  text-align: left; padding: 18px 22px 14px;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
.board__table th.num, .board__table td.num { text-align: right; }
.board__table tbody td {
  padding: 15px 22px;
  border-bottom: 1px solid var(--line);
  font-weight: 700; font-size: 14px;
  font-variant-numeric: tabular-nums;
}
.board__table tbody tr:last-child td { border-bottom: 0; }
.board__table tbody tr { transition: background .2s ease; }
.board__table tbody tr:hover { background: var(--cream); }
.board__rank { color: var(--ink-faint); font-weight: 800; }
.board__wallet-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 800; letter-spacing: .03em;
  transition: color .2s ease;
}
.board__wallet-btn .ic { width: 13px; height: 13px; opacity: 0; transition: opacity .2s ease; color: var(--orange-deep); }
.board__wallet-btn:hover { color: var(--orange-deep); }
.board__wallet-btn:hover .ic { opacity: 1; }
.board__up { color: var(--orange-deep); }
.board__down { color: var(--ink-faint); }

/* skeleton */
.sk-row td { padding: 15px 22px; }
.sk-bar {
  height: 14px; border-radius: 7px;
  background: linear-gradient(90deg, #F2EEE6 25%, #FBF8F2 50%, #F2EEE6 75%);
  background-size: 200% 100%;
  animation: skShimmer 1.3s linear infinite;
}
@keyframes skShimmer { to { background-position: -200% 0; } }

.board__state {
  padding: 60px 30px; text-align: center;
}
.board__state .ic { width: 44px; height: 44px; color: var(--orange); margin: 0 auto 16px; opacity: .8; }
.board__state p { font-weight: 700; color: var(--ink-soft); margin-bottom: 18px; }

.board__pager {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  margin-top: 26px;
}
.pager__btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--line-strong);
  background: var(--white);
  font-size: 17px; color: var(--ink-soft);
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s var(--ease-out);
}
.pager__btn:hover:not(:disabled) { color: var(--ink); border-color: var(--orange); background: var(--peach); transform: translateY(-2px); }
.pager__btn:disabled { opacity: .35; cursor: default; }
.pager__info { font-weight: 800; font-size: 12px; letter-spacing: .16em; color: var(--ink-soft); font-variant-numeric: tabular-nums; }

/* ==================== WHALE CHAT ==================== */
.whale { background: var(--white); }
.whale__card {
  position: relative; overflow: hidden;
  max-width: 980px; margin: 0 auto;
  text-align: center;
  background: linear-gradient(160deg, var(--orange-bright) 0%, var(--orange) 46%, var(--orange-deep) 100%);
  border-radius: 44px;
  padding: clamp(48px, 7vw, 88px) clamp(24px, 6vw, 80px) clamp(56px, 7vw, 92px);
  box-shadow: 0 40px 110px -30px rgba(255, 121, 0, .55);
}
.whale__waves { position: absolute; inset: 0; pointer-events: none; }
.whale__waves i {
  position: absolute; bottom: -12%; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255, 255, 255, .3), rgba(255, 255, 255, 0) 70%);
  width: 70%; height: 40%;
}
.whale__waves i:nth-child(1) { left: -16%; animation: fogDriftA 26s ease-in-out infinite alternate; }
.whale__waves i:nth-child(2) { right: -20%; animation: fogDriftB 34s ease-in-out infinite alternate; }
.whale__bubbles { position: absolute; inset: 0; pointer-events: none; }
.whale__bubbles i {
  position: absolute; bottom: -20px;
  width: 10px; height: 10px; border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .5);
  animation: bubbleUp 9s linear infinite;
}
.whale__bubbles i:nth-child(1) { left: 8%; animation-delay: 0s; }
.whale__bubbles i:nth-child(2) { left: 22%; width: 6px; height: 6px; animation-delay: 2.5s; animation-duration: 7s; }
.whale__bubbles i:nth-child(3) { left: 47%; animation-delay: 5s; }
.whale__bubbles i:nth-child(4) { left: 68%; width: 7px; height: 7px; animation-delay: 1.2s; animation-duration: 8s; }
.whale__bubbles i:nth-child(5) { left: 84%; animation-delay: 3.8s; }
.whale__bubbles i:nth-child(6) { left: 93%; width: 5px; height: 5px; animation-delay: 6.4s; animation-duration: 6.5s; }
@keyframes bubbleUp {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  12% { opacity: .8; }
  100% { transform: translateY(-420px) translateX(14px); opacity: 0; }
}
.whale__mascot {
  position: absolute; top: clamp(18px, 3.5vw, 44px); right: clamp(14px, 4vw, 56px);
  width: clamp(88px, 12vw, 150px); height: auto;
  filter: drop-shadow(0 14px 24px rgba(122, 58, 0, .35));
  animation: whaleBob 5.5s ease-in-out infinite alternate;
}
@keyframes whaleBob {
  from { transform: translateY(-8px) rotate(-4deg); }
  to { transform: translateY(10px) rotate(3deg); }
}
.whale__eyebrow { color: rgba(36, 36, 45, .75); justify-content: center; }
.whale__eyebrow .eyebrow__dot { background: var(--white); box-shadow: 0 0 0 4px rgba(255, 255, 255, .3); }
.whale__title {
  color: var(--white);
  text-shadow: 0 10px 40px rgba(122, 58, 0, .35);
  margin-bottom: 18px;
}
.whale__desc {
  max-width: 620px; margin: 0 auto clamp(28px, 4vw, 40px);
  font-weight: 700; font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(36, 36, 45, .88); line-height: 1.65;
}
.whale__field { max-width: 380px; margin: 0 auto 22px; text-align: left; }
.whale__label {
  display: block; margin-bottom: 8px;
  font-weight: 800; font-size: 10.5px; letter-spacing: .24em;
  color: rgba(36, 36, 45, .7);
}
.whale__input {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255, 255, 255, .92);
  border: 2px solid transparent;
  border-radius: var(--r-pill);
  padding: 13px 22px;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.whale__input:focus-within { border-color: var(--ink); box-shadow: 0 0 0 5px rgba(255, 255, 255, .35); }
.whale__input span { font-weight: 800; color: var(--orange-deep); }
.whale__input input {
  border: 0; outline: 0; background: none; width: 100%;
  font-weight: 700; font-size: 15px; color: var(--ink);
}
.whale__input input::placeholder { color: var(--ink-faint); }
.whale__btn {
  background: var(--white); color: var(--ink);
  font-size: clamp(14px, 1.6vw, 17px);
  padding: clamp(20px, 2.6vw, 27px) clamp(38px, 5vw, 62px);
  box-shadow: 0 26px 60px -18px rgba(74, 26, 0, .5);
  gap: 14px;
}
.whale__btn:hover { background: var(--cream); box-shadow: 0 32px 70px -18px rgba(74, 26, 0, .6); }
.whale__btn-ic { width: 34px; height: 26px; }
.whale__btn.is-busy { pointer-events: none; animation: whalePulse 1.1s ease-in-out infinite; }
@keyframes whalePulse { 50% { opacity: .65; } }
.whale__btn.is-whale {
  background: var(--ink); color: var(--orange-bright);
  animation: whaleGlow 2.2s ease-in-out infinite alternate;
}
@keyframes whaleGlow {
  from { box-shadow: 0 26px 60px -18px rgba(18, 18, 23, .6); }
  to { box-shadow: 0 26px 80px -12px rgba(18, 18, 23, .8), 0 0 34px rgba(255, 177, 51, .5); }
}
.whale__status { margin-top: 22px; font-weight: 700; font-size: 14.5px; min-height: 0; }
.whale__status.is-error, .whale__status.is-good {
  display: inline-block;
  background: rgba(255, 255, 255, .92); color: var(--ink);
  border-radius: 18px; padding: 12px 22px;
  max-width: 560px;
}
.whale__status.is-error strong { color: #B3350E; }
.whale__status.is-good strong { color: var(--orange-deep); }
.whale__status a { color: var(--orange-deep); font-weight: 800; border-bottom: 2px dotted rgba(255, 121, 0, .5); }
.whale__req {
  margin-top: 20px;
  font-weight: 600; font-size: 11.5px; line-height: 1.6;
  color: rgba(36, 36, 45, .55);
  max-width: 520px; margin-inline: auto;
}

/* ==================== HOW TO BUY ==================== */
.htb { background: var(--white); overflow: hidden; }
.htb__flow { position: relative; max-width: 880px; margin: 0 auto; }
.htb__path {
  position: absolute; left: 50%; top: 0; transform: translateX(-50%);
  width: 4px; height: 100%;
}
.htb__path-bg { stroke: rgba(36, 36, 45, .08); stroke-width: 4; fill: none; }
.htb__path-fill { stroke: var(--orange); stroke-width: 4; fill: none; }
.htb__rider {
  position: absolute; left: 50%; top: 0; z-index: 3;
  width: 16px; height: 28px; margin-left: -8px; margin-top: -14px;
  border-radius: 9px;
  background: linear-gradient(180deg, var(--white) 0 50%, var(--orange) 50% 100%);
  border: 3px solid var(--ink);
  transform: rotate(-38deg);
  box-shadow: 0 0 0 6px rgba(255, 154, 0, .16), 0 8px 18px rgba(36, 36, 45, .25);
  will-change: transform, top;
}
.htb__steps { position: relative; z-index: 2; display: flex; flex-direction: column; gap: clamp(48px, 8vw, 96px); padding-block: 20px; }
.htb__step { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(30px, 6vw, 80px); }
.htb__num {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(3.4rem, 8vw, 6.4rem); line-height: 1;
  color: transparent; -webkit-text-stroke: 2.5px rgba(255, 154, 0, .5);
  justify-self: end;
  transition: color .5s ease, -webkit-text-stroke-color .5s ease;
}
.htb__step.is-lit .htb__num { color: var(--orange); -webkit-text-stroke-color: var(--orange); text-shadow: 0 12px 40px rgba(255, 154, 0, .35); }
.htb__step:nth-child(even) .htb__num { order: 2; justify-self: start; }
.htb__step:nth-child(even) .htb__card { order: 1; }
.htb__card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow-soft);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .3s ease;
}
.htb__step.is-lit .htb__card { border-color: rgba(255, 154, 0, .4); }
.htb__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.htb__ic {
  width: 46px; height: 46px; padding: 11px; margin-bottom: 16px;
  color: var(--orange-deep);
  background: var(--peach); border-radius: 15px;
}
.htb__card h3 {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(1rem, 1.6vw, 1.25rem);
  margin-bottom: 10px; text-transform: uppercase;
}
.htb__card p { font-weight: 600; font-size: 14.5px; color: var(--ink-soft); }
.htb__card strong { color: var(--ink); }
.htb__cta { text-align: center; margin-top: clamp(48px, 7vw, 80px); }

/* ==================== COUNTDOWN ==================== */
.cdown {
  background: linear-gradient(180deg, var(--cream) 0%, var(--peach) 100%);
  text-align: center; overflow: hidden;
}
.cdown__moonwrap { display: flex; justify-content: center; margin-bottom: clamp(26px, 4vh, 44px); }
.cdown__moon {
  position: relative;
  width: clamp(90px, 12vw, 130px); height: clamp(90px, 12vw, 130px);
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--ink);
  overflow: hidden;
  box-shadow: 0 0 60px rgba(255, 154, 0, .3), inset 0 -6px 18px rgba(36, 36, 45, .06);
}
.cdown__moon i {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 0%;
  background: linear-gradient(180deg, var(--orange-bright), var(--orange-deep));
  transition: height 1.2s var(--ease-out);
}
.cdown__clock {
  position: relative; z-index: 3;
  display: flex; align-items: flex-start; justify-content: center;
  gap: clamp(8px, 2.4vw, 30px);
}
.cdown__cell { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.cdown__digits { display: flex; gap: 4px; }
.cd-digit {
  position: relative; overflow: hidden;
  width: clamp(2.5rem, 7.2vw, 5.4rem); height: clamp(3.4rem, 9.6vw, 7rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: clamp(12px, 1.6vw, 20px);
  box-shadow: var(--shadow-soft);
}
.cd-digit__roll {
  position: absolute; left: 0; top: 0; width: 100%;
  will-change: transform;
}
.cd-digit__roll span {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: clamp(3.4rem, 9.6vw, 7rem);
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.7rem, 4.8vw, 3.6rem);
  color: var(--ink);
}
.cdown__sep {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.6rem, 4.6vw, 3.4rem);
  color: var(--orange);
  padding-top: clamp(.6rem, 2vw, 1.5rem);
  animation: sepBlink 2s steps(1) infinite;
}
@keyframes sepBlink { 50% { opacity: .25; } }
.cdown__label { font-weight: 800; font-size: 10px; letter-spacing: .28em; color: var(--ink-soft); }
.cdown__note { margin-top: clamp(30px, 5vh, 46px); font-weight: 700; color: var(--ink-soft); }
.cdown--live .cdown__note { color: var(--orange-deep); font-weight: 800; }

/* ==================== COMMUNITY ==================== */
.community { background: var(--white); }
.community__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2vw, 24px);
  max-width: 1100px; margin: 0 auto;
}
.social-card {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: flex-start; gap: 14px;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--r-card);
  padding: clamp(22px, 2.6vw, 30px);
  transition: transform .4s var(--ease-out), border-color .3s ease, box-shadow .4s var(--ease-out);
}
.social-card::after {
  content: ""; position: absolute; left: 50%; bottom: -46%; z-index: 0;
  width: 130%; height: 90%;
  transform: translateX(-50%);
  background: radial-gradient(50% 60% at 50% 100%, rgba(255, 154, 0, .22), rgba(255, 154, 0, 0) 70%);
  opacity: 0; transition: opacity .4s ease;
}
.social-card:hover { transform: translateY(-7px); border-color: rgba(255, 154, 0, .5); box-shadow: var(--shadow-lift); }
.social-card:hover::after { opacity: 1; }
.social-card .ic {
  position: relative; z-index: 1;
  width: 42px; height: 42px; padding: 10px;
  color: var(--orange-deep); background: var(--peach); border-radius: 14px;
  transition: transform .35s var(--ease-out);
}
.social-card:hover .ic { transform: translateY(-4px) rotate(-6deg); }
.social-card__name { position: relative; z-index: 1; font-family: var(--font-display); font-weight: 700; font-size: 15px; text-transform: uppercase; }
.social-card__sub { position: relative; z-index: 1; font-weight: 600; font-size: 12.5px; color: var(--ink-faint); }
.social-card.is-soon { opacity: .62; cursor: default; }
.social-card.is-soon:hover { transform: none; box-shadow: none; border-color: var(--line); }
.social-card.is-soon:hover::after { opacity: 0; }
.social-card.is-soon:hover .ic { transform: none; }
.social-card .chip { position: absolute; z-index: 1; top: 18px; right: 18px; }

/* ==================== NIGHTFALL + FOOTER ==================== */
.nightfall { background: var(--cream); margin-bottom: -2px; position: relative; z-index: 2; }
.nightfall svg { width: 100%; height: clamp(70px, 10vw, 140px); display: block; }

.footer {
  position: relative;
  background: var(--night);
  color: var(--cream);
  padding: clamp(70px, 9vw, 130px) 0 90px;
  overflow: hidden;
}
.footer__moon {
  position: absolute; left: 50%; top: -8%;
  width: 60vw; height: 60vw; max-width: 760px; max-height: 760px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 42%, rgba(255, 154, 0, .18), rgba(255, 154, 0, .05) 55%, rgba(255, 154, 0, 0) 75%);
  pointer-events: none;
}
.fog--footer .f1 { background: radial-gradient(closest-side, rgba(255, 154, 0, .1), rgba(255, 154, 0, 0) 70%); }
.fog--footer .f2 { background: radial-gradient(closest-side, rgba(255, 178, 51, .08), rgba(255, 178, 51, 0) 70%); }
.footer__inner { display: flex; flex-direction: column; align-items: center; }
.footer__capwrap { width: clamp(150px, 18vw, 230px); margin-bottom: clamp(30px, 5vh, 54px); }
.footer__cap { width: 100%; aspect-ratio: 1; will-change: transform; }
.footer__mega {
  display: flex; justify-content: space-between; width: 100%;
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2.4rem, 8.4vw, 8.4rem);
  line-height: 1; color: var(--orange);
  text-shadow: 0 0 60px rgba(255, 154, 0, .35);
  margin-bottom: clamp(22px, 4vh, 40px);
  user-select: none;
}
.footer__mega span { display: inline-block; will-change: transform, opacity; }
.footer__tag {
  font-weight: 800; font-size: 11px; letter-spacing: .4em;
  color: rgba(255, 249, 241, .55);
  margin-bottom: clamp(44px, 7vh, 70px);
  text-align: center;
}
.footer__cols {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 30px;
  flex-wrap: wrap;
  padding-block: 30px;
  border-top: 1px solid rgba(255, 249, 241, .12);
  border-bottom: 1px solid rgba(255, 249, 241, .12);
  margin-bottom: 36px;
}
.footer__nav { display: flex; flex-wrap: wrap; gap: clamp(14px, 2.4vw, 30px); }
.footer__nav a {
  font-weight: 800; font-size: 11.5px; letter-spacing: .16em;
  color: rgba(255, 249, 241, .6);
  transition: color .2s ease;
}
.footer__nav a:hover { color: var(--orange-bright); }
.footer__socials { display: flex; gap: 12px; }
.footer__socials a, .footer__socials span {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1.5px solid rgba(255, 249, 241, .18);
  display: grid; place-items: center;
  color: rgba(255, 249, 241, .75);
  transition: color .2s ease, border-color .2s ease, transform .25s var(--ease-out), background .2s ease;
}
.footer__socials a:hover { color: var(--ink); border-color: var(--orange); background: var(--orange); transform: translateY(-4px); }
.footer__socials span { opacity: .35; }
.footer__socials .ic { width: 17px; height: 17px; }
.footer__legal {
  max-width: 640px; text-align: center;
  font-weight: 600; font-size: 12px; line-height: 1.7;
  color: rgba(255, 249, 241, .42);
  margin: 26px auto 14px;
}
.footer__copy {
  font-weight: 800; font-size: 10px; letter-spacing: .32em;
  color: rgba(255, 154, 0, .65);
  text-align: center;
}
.footer__peek {
  position: absolute; right: 20px; bottom: 12px;
  width: 52px; opacity: .45;
  transition: opacity .3s ease, transform .3s var(--ease-out);
  cursor: pointer;
}
.footer__peek:hover { opacity: 1; transform: translateY(-4px); }
.peek__eye { transition: transform .12s ease; transform-origin: center 80%; }
.footer__peek.is-blinking .peek__eye { transform: scaleY(.1); }
.footer__peek.is-lit .peek__eye { fill: #FFE9A8; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1100px) {
  .hero__grid { grid-template-columns: 1fr; text-align: center; gap: 10px; }
  .hero__copy { display: flex; flex-direction: column; align-items: center; order: 2; width: 100%; min-width: 0; }
  .hero__copy > * { max-width: 100%; min-width: 0; }
  .hero__visual { order: 1; }
  .hero__cap-wrap { width: min(62vw, 380px); }
  .hero__actions { justify-content: center; }
  .hero__moon { top: -12vh; right: -30vw; width: 80vw; height: 80vw; }
  .hero { padding-top: 130px; }
  .htb__step, .htb__step:nth-child(even) { display: flex; flex-direction: column; align-items: stretch; gap: 14px; }
  .htb__num, .htb__step:nth-child(even) .htb__num { order: 0; justify-self: start; align-self: flex-start; }
  .htb__flow .htb__path, .htb__rider { left: 8px; }
  .htb__steps { padding-left: 40px; }
}

@media (max-width: 900px) {
  .market__grid { grid-template-columns: repeat(2, 1fr); }
  .community__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { grid-template-columns: 1fr; }
  /* tokenomics: swap orbit for list */
  .orbit { display: none; }
  .tok-list {
    display: flex; flex-direction: column; gap: 14px;
    max-width: 560px; margin: 0 auto;
  }
  .tok-item {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 18px 20px;
    box-shadow: var(--shadow-soft);
  }
  .tok-item__top { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
  .tok-item__label { font-weight: 800; font-size: 11px; letter-spacing: .2em; color: var(--ink-soft); }
  .tok-item__pct { font-family: var(--font-display); font-weight: 800; font-size: 19px; color: var(--orange-deep); }
  .tok-item__bar { height: 9px; border-radius: 6px; background: var(--peach); overflow: hidden; }
  .tok-item__bar i {
    display: block; height: 100%; width: 0;
    border-radius: 6px;
    background: linear-gradient(90deg, var(--orange-bright), var(--orange-deep));
  }
  .tok-item__blurb { margin-top: 10px; font-weight: 600; font-size: 12.5px; color: var(--ink-soft); }
}

/* ==================== HALLOWEEN DECOR ==================== */
.deco-web, .deco-spider, .float-ghost { pointer-events: none; }
.deco-web {
  position: absolute; width: 150px; height: 150px;
  color: var(--ink); opacity: .13; z-index: 0;
}
.deco-web svg { width: 100%; height: 100%; overflow: visible; }
.deco-web--l { left: -36px; top: -48px; }
.deco-web--r { right: -36px; top: -48px; transform: scaleX(-1); }
.deco-web--hero-tl { left: 0; top: 0; width: 240px; height: 240px; opacity: .11; z-index: 1; }
.deco-web--hero-tr { right: 0; top: 0; width: 150px; height: 150px; opacity: .08; transform: scaleX(-1); z-index: 1; }
.deco-web--dark { color: var(--cream); opacity: .1; }
.footer .deco-web--l { left: 0; top: 0; }
.footer .deco-web--r { right: 0; top: 0; }
.section-head { position: relative; }
.section-head .eyebrow, .section-head .h2, .section-head .section-sub { position: relative; z-index: 1; }

.deco-spider {
  position: absolute; width: 32px;
  right: 10%; top: -58px;
  color: var(--ink); opacity: .85; z-index: 2;
}
.deco-spider svg {
  width: 100%; height: auto; overflow: visible;
  transform-origin: 50% 0;
  animation: spiderSway 4.6s ease-in-out infinite alternate;
}
.deco-spider--hero { right: 31%; top: 92px; width: 40px; z-index: 2; }
.deco-spider--hero::before {
  content: ""; position: absolute;
  left: 50%; top: -92px; width: 1.5px; height: 92px;
  background: currentColor; opacity: .5;
}
.section-head--center .deco-spider { right: 16%; }
@keyframes spiderSway {
  from { transform: rotate(-7deg); }
  to { transform: rotate(7deg); }
}

.float-ghost {
  position: absolute; left: 0; top: 24%;
  width: 76px; color: var(--orange); opacity: .1; z-index: 1;
  animation: ghostFloat 38s linear infinite;
}
.float-ghost svg { width: 100%; height: auto; overflow: visible; }
.float-ghost--alt { top: 58%; width: 54px; animation-duration: 50s; animation-delay: -20s; }
@keyframes ghostFloat {
  0% { transform: translate(-12vw, 0) rotate(-5deg); }
  25% { transform: translate(24vw, -30px) rotate(4deg); }
  50% { transform: translate(58vw, 8px) rotate(-4deg); }
  75% { transform: translate(85vw, -22px) rotate(5deg); }
  100% { transform: translate(112vw, 0) rotate(-5deg); }
}

/* ambient pulse life on shared elements */
.eyebrow__dot { animation: dotPulse 2.6s ease-in-out infinite; }
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255, 154, 0, .18); }
  50% { box-shadow: 0 0 0 8px rgba(255, 154, 0, .07); }
}
/* static glow — animating text-shadow repaints big type every frame */
.section-head .accent { text-shadow: 0 8px 26px rgba(255, 154, 0, .3); }
.nav__logo-cap { animation: navBob 5s ease-in-out infinite alternate; }
@keyframes navBob {
  from { transform: translateY(-1.5px) rotate(-2deg); }
  to { transform: translateY(1.5px) rotate(2deg); }
}

@media (max-width: 640px) {
  .hero-pill--a, .hero-pill--c { display: none; }
  .deco-web { width: 110px; height: 110px; }
  .deco-web--hero-tl { width: 150px; height: 150px; }
  .deco-spider { right: 6%; top: -50px; width: 26px; }
  .float-ghost { display: none; }
}

@media (max-width: 640px) {
  .hero__title { font-size: clamp(2.6rem, 12vw, 3.6rem); }
  .hero__mega { font-size: 26vw; bottom: -.1em; }
  .ca { width: 100%; justify-content: space-between; gap: 8px; padding-left: 14px; }
  .ca__addr { max-width: none; flex: 1; min-width: 0; }
  .ca__copy-label { display: none; }
  .ca__copy { padding: 11px 14px; }
  .market__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-card { padding: 20px 18px; }
  .podium { grid-template-columns: 1fr 1.15fr 1fr; gap: 8px; }
  .pod__balance { font-size: .95rem; }
  .pod__addr { font-size: 11px; }
  .pod--first .pod__base { height: 110px; font-size: 40px; }
  .pod--second .pod__base { height: 74px; font-size: 30px; }
  .pod--third .pod__base { height: 56px; font-size: 26px; }
  .community__grid { grid-template-columns: 1fr; }
  .board__bar { flex-direction: column; align-items: stretch; }
  .board__meta { justify-content: space-between; }
  .footer__cols { flex-direction: column; align-items: center; }
  .footer__nav { justify-content: center; }
  .cform__submit { align-self: stretch; }
  .hero__scrollcue { display: none; }
  .section { padding-block: 72px; }
}
