:root {
  --cream: #fff8e8;
  --cream-2: #fff0c7;
  --cream-3: #ffe7a2;
  --yellow: #ffc400;
  --yellow-soft: #ffda48;
  --orange: #ff7a00;
  --orange-deep: #ef5b00;
  --sunset: #ef5a24;
  --brown: #6b2d14;
  --brown-deep: #2b170e;
  --brown-soft: #8e4322;
  --white: #fffdf8;
  --line: rgba(59, 29, 11, 0.16);
  --muted: rgba(43, 23, 14, 0.66);
  --shadow: 0 28px 80px rgba(91, 43, 4, 0.16);
  --shadow-small: 0 14px 40px rgba(91, 43, 4, 0.12);
  --radius-xl: 40px;
  --radius-lg: 30px;
  --radius-md: 22px;
  --container: 1240px;
  --ease: cubic-bezier(.2,.8,.2,1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--brown-deep);
  background: var(--cream);
  font-family: "Avenir Next", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--brown-deep);
  background: var(--yellow-soft);
}

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

button,
input {
  font: inherit;
}

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

button {
  color: inherit;
}

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

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 200;
  opacity: .055;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.86' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.34'/%3E%3C/svg%3E");
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 128px 0;
  position: relative;
}

.kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.kicker-light {
  color: rgba(255, 253, 248, .66);
}

.site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 100;
  padding: 16px 0;
  transition: padding .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}

.site-header.scrolled {
  padding: 9px 0;
  background: rgba(255, 248, 232, .78);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  box-shadow: 0 1px 0 rgba(69, 32, 7, .08);
}

.nav-shell {
  position: relative;
  z-index: 101;
  width: min(calc(100% - 32px), 1360px);
  margin-inline: auto;
  min-height: 66px;
  padding: 9px 12px 9px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid rgba(76, 34, 8, .11);
  background: rgba(255, 253, 248, .68);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border-radius: 999px;
  box-shadow: 0 12px 36px rgba(73, 34, 3, .08);
}

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

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 19px;
  line-height: 1;
  font-weight: 950;
  color: var(--brown-deep);
  background: linear-gradient(135deg, #ffe55f 0%, #ff9b00 100%);
  border: 1px solid rgba(74, 31, 5, .14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65), 0 7px 15px rgba(217, 104, 0, .17);
}

.brand-copy {
  display: grid;
  line-height: 1;
  gap: 5px;
}

.brand-copy strong {
  font-size: 17px;
  letter-spacing: .02em;
  font-weight: 950;
}

.brand-copy small {
  font-size: 9px;
  letter-spacing: .22em;
  font-weight: 900;
  color: rgba(43, 23, 14, .55);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 800;
  color: rgba(43, 23, 14, .72);
  transition: color .25s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  border-radius: 2px;
  background: var(--orange);
  transition: right .25s var(--ease);
}

.desktop-nav a:hover {
  color: var(--brown-deep);
}

.desktop-nav a:hover::after {
  right: 0;
}

.nav-ca {
  width: clamp(230px, 28vw, 390px);
  height: 52px;
  padding: 7px 8px 7px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(67, 30, 8, .12);
  border-radius: 18px;
  color: var(--brown-deep);
  background: rgba(255,255,255,.66);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.78);
  cursor: pointer;
  transition: transform .2s var(--ease), background .2s ease;
}

.nav-ca:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.92);
}

.nav-ca-copy {
  min-width: 0;
  display: grid;
  gap: 2px;
  text-align: left;
  line-height: 1.1;
}

.nav-ca-copy small {
  font-size: 8px;
  letter-spacing: .14em;
  font-weight: 950;
  color: rgba(43,23,14,.48);
}

.nav-ca-copy code {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 10px;
  font-weight: 750;
}

.nav-ca-icon {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  background: var(--brown-deep);
  font-size: 16px;
}

.language-toggle {
  flex: 0 0 auto;
  min-width: 82px;
  height: 52px;
  padding: 7px 13px;
  display: grid;
  place-content: center;
  gap: 2px;
  border: 1px solid rgba(67, 30, 8, .12);
  border-radius: 18px;
  color: var(--brown-deep);
  background: rgba(255, 255, 255, .66);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .78);
  cursor: pointer;
  transition: transform .2s var(--ease), color .2s ease, background .2s ease;
}

.language-toggle:hover {
  transform: translateY(-2px);
  color: var(--cream);
  background: var(--brown-deep);
}

.language-toggle strong {
  font-size: 13px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: .08em;
}

.language-toggle small {
  font-size: 8px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .04em;
  opacity: .62;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--brown-deep);
  cursor: pointer;
  position: relative;
}

.menu-toggle span {
  position: absolute;
  left: 13px;
  right: 13px;
  height: 2px;
  border-radius: 2px;
  background: var(--white);
  transition: transform .25s ease, top .25s ease;
}

.menu-toggle span:first-child { top: 17px; }
.menu-toggle span:last-child { top: 25px; }

.menu-open .menu-toggle span:first-child { top: 21px; transform: rotate(45deg); }
.menu-open .menu-toggle span:last-child { top: 21px; transform: rotate(-45deg); }

.mobile-nav {
  display: none;
}

.hero {
  min-height: 100svh;
  padding: 154px 0 94px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 36%, rgba(255, 199, 0, .25), transparent 28%),
    linear-gradient(180deg, #fffaf0 0%, var(--cream) 72%, #fff3cf 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(84, 43, 11, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(84, 43, 11, .035) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to bottom, transparent 8%, black 30%, transparent 95%);
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(3px);
  opacity: .65;
  pointer-events: none;
}

.hero-orb-one {
  width: 420px;
  height: 420px;
  left: -210px;
  top: 15%;
  background: rgba(255, 191, 0, .18);
}

.hero-orb-two {
  width: 240px;
  height: 240px;
  right: -100px;
  bottom: 8%;
  background: rgba(255, 108, 0, .13);
}

.hero-grid {
  min-height: calc(100svh - 248px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-copy {
  min-width: 0;
  padding: 34px 0 42px;
  position: relative;
  z-index: 4;
}

.eyebrow {
  padding: 10px 14px;
  border: 1px solid rgba(69, 31, 7, .11);
  border-radius: 999px;
  background: rgba(255, 255, 255, .58);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}

.status-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.status-dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(255, 122, 0, .4);
  border-radius: inherit;
  animation: ping 2s infinite;
}

@keyframes ping {
  0% { transform: scale(.6); opacity: .8; }
  70%, 100% { transform: scale(1.6); opacity: 0; }
}

.hero h1 {
  max-width: 780px;
  margin: 30px 0 24px;
  font-family: "Arial Rounded MT Bold", "Avenir Next", "PingFang SC", sans-serif;
  font-size: clamp(54px, 5vw, 78px);
  line-height: .98;
  white-space: nowrap;
  letter-spacing: -.065em;
  font-weight: 950;
}

.hero h1 span {
  display: inline-block;
  color: var(--orange);
  background: linear-gradient(120deg, var(--orange-deep) 10%, #ff9d00 52%, #ffc400 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-right: .08em;
}

.hero-lead {
  max-width: 660px;
  margin: 0;
  font-size: 18px;
  line-height: 1.86;
  font-weight: 560;
  color: var(--muted);
}

.origin-stack {
  width: fit-content;
  max-width: min(100%, 710px);
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.origin-pill {
  width: fit-content;
  max-width: 100%;
  padding: 10px 13px 10px 15px;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px 12px;
  border: 1px solid rgba(91, 49, 255, .18);
  border-radius: 999px;
  color: var(--brown-deep);
  background: rgba(255,255,255,.68);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.82), 0 12px 28px rgba(91,49,255,.07);
  transition: transform .25s var(--ease), border-color .25s ease, box-shadow .25s ease;
}

.origin-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(91,49,255,.34);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.86), 0 16px 35px rgba(91,49,255,.12);
}

.origin-label {
  font-size: 10px;
  letter-spacing: .13em;
  font-weight: 900;
  color: rgba(43,23,14,.52);
}

.flap-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #5b31ff;
}

.flap-brand strong {
  font-family: "Arial Rounded MT Bold", "Avenir Next", sans-serif;
  font-size: 17px;
  letter-spacing: .06em;
  font-weight: 950;
}

.origin-pill small {
  color: rgba(43,23,14,.54);
  font-size: 11px;
  font-weight: 750;
}

.origin-pill > b {
  margin-left: 2px;
  color: #5b31ff;
  font-size: 16px;
}

.flap-logo {
  width: 26px;
  height: 26px;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(91,49,255,.18));
}

.chain-pill {
  width: fit-content;
  max-width: 100%;
  padding: 8px 13px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(240, 185, 11, .30);
  border-radius: 999px;
  color: var(--brown-deep);
  background: rgba(255,255,255,.68);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.82), 0 10px 24px rgba(240,185,11,.08);
}

.bnb-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.bnb-brand strong {
  font-family: "Arial Rounded MT Bold", "Avenir Next", sans-serif;
  font-size: 15px;
  letter-spacing: .04em;
  font-weight: 950;
}

.bnb-logo {
  width: 24px;
  height: 24px;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(240,185,11,.20));
}

.chain-pill small {
  color: rgba(43,23,14,.54);
  font-size: 11px;
  font-weight: 750;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 24px;
}

.button {
  min-height: 54px;
  padding: 0 23px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  font-size: 14px;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s ease, border-color .25s ease;
}

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

.button-primary {
  color: var(--brown-deep);
  background: linear-gradient(135deg, var(--yellow-soft), #ffab00);
  border-color: rgba(102, 45, 4, .13);
  box-shadow: 0 14px 28px rgba(255, 139, 0, .22), inset 0 1px 0 rgba(255,255,255,.65);
}

.button-primary:hover {
  box-shadow: 0 18px 34px rgba(255, 139, 0, .30), inset 0 1px 0 rgba(255,255,255,.7);
}

.button-ghost {
  color: var(--brown-deep);
  background: rgba(255,255,255,.56);
  border-color: rgba(65, 29, 7, .16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}

.button-ghost:hover {
  background: rgba(255,255,255,.88);
  border-color: rgba(65, 29, 7, .25);
}

.button-dark {
  color: var(--white);
  background: var(--brown-deep);
}

.button-dark:hover {
  background: var(--brown);
}

.contract-card {
  max-width: 690px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px 16px 16px 19px;
  border: 1px solid rgba(67, 30, 8, .12);
  background: rgba(255,255,255,.55);
  border-radius: 21px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.75);
}

@media (min-width: 901px) {
  .hero .contract-card { display: none; }
}

.contract-card > div {
  min-width: 0;
}

.contract-label {
  display: block;
  margin-bottom: 4px;
  font-size: 9px;
  letter-spacing: .14em;
  font-weight: 900;
  color: rgba(43,23,14,.48);
}

.contract-value {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  font-weight: 700;
  color: var(--brown-deep);
}

.copy-button {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 15px;
  background: var(--brown-deep);
  cursor: pointer;
  transition: transform .2s var(--ease), background .2s ease;
}

.copy-button:hover {
  transform: rotate(-4deg) scale(1.04);
  background: var(--orange-deep);
}

.copy-button svg {
  width: 20px;
  fill: none;
  stroke: var(--white);
  stroke-width: 1.8;
  stroke-linejoin: round;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 25px;
}

.hero-facts > div {
  display: grid;
  gap: 1px;
}

.hero-facts strong {
  font-size: 22px;
  line-height: 1;
  font-weight: 950;
}

.hero-facts span {
  font-size: 11px;
  font-weight: 800;
  color: rgba(43,23,14,.5);
}

.hero-art {
  --mx: 0px;
  --my: 0px;
  min-height: 660px;
  position: relative;
  isolation: isolate;
}

.hero-halo {
  position: absolute;
  width: min(42vw, 610px);
  aspect-ratio: 1;
  left: 51%;
  top: 49%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 34%, rgba(255,255,255,.95) 0 7%, transparent 28%),
    linear-gradient(145deg, #ffe961 3%, #ffb600 56%, #ff7a00 100%);
  box-shadow:
    inset -22px -24px 45px rgba(196, 79, 0, .14),
    inset 18px 18px 38px rgba(255,255,255,.35),
    0 48px 90px rgba(167, 74, 0, .22);
  z-index: -2;
}

.hero-halo::after {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: inherit;
}

.hero-ring {
  position: absolute;
  left: 51%;
  top: 49%;
  border: 1px solid rgba(102, 43, 3, .13);
  border-radius: 50%;
  z-index: -3;
  pointer-events: none;
}

.hero-ring-one {
  width: min(48vw, 710px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
}

.hero-ring-two {
  width: min(54vw, 800px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-style: dashed;
  animation: spin 44s linear infinite;
}

@keyframes spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-shadow {
  position: absolute;
  width: 60%;
  height: 12%;
  left: 51%;
  bottom: 8%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(85, 38, 0, .18);
  filter: blur(20px);
  z-index: -1;
}

.hero-mascot-wrap {
  --mx: 0px;
  --my: 0px;
  position: absolute;
  width: min(44vw, 650px);
  aspect-ratio: 1122 / 1402;
  left: 50%;
  bottom: 0;
  transform: translate(calc(-50% + var(--mx)), var(--my));
  transform-origin: 50% 90%;
  filter: drop-shadow(0 32px 28px rgba(115, 49, 0, .17));
  transition: transform .15s linear;
  user-select: none;
  z-index: 2;
}

.hero-mascot {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

.hero-eye {
  --px: 0px;
  --py: 0px;
  position: absolute;
  overflow: hidden;
  border-radius: 50%;
  background:
    radial-gradient(circle at 39% 34%, #ffffff 0 25%, #fffdf4 58%, #eee4cb 100%);
  box-shadow:
    inset 0 -4px 8px rgba(91, 46, 8, .12),
    inset 0 2px 4px rgba(255,255,255,.95),
    0 2px 5px rgba(70,30,4,.08);
  pointer-events: none;
}

/* Calibrated to the exact selected mascot image (1122 × 1402). */
.hero-eye-left {
  left: 33.95%;
  top: 22.82%;
  width: 9.45%;
  height: 7.35%;
  transform: rotate(-5deg);
}

.hero-eye-right {
  left: 47.98%;
  top: 25.70%;
  width: 10.45%;
  height: 7.55%;
  transform: rotate(5deg);
}

.hero-eye .pupil {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 62%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 39% 28%, #7b3a1c 0 18%, #5b270f 45%, #351307 78%, #1f0b04 100%);
  box-shadow: inset -2px -4px 7px rgba(0,0,0,.25), 0 1px 2px rgba(0,0,0,.18);
  transform: translate(calc(-50% + var(--px)), calc(-50% + var(--py)));
  transition: transform .08s linear;
}

.hero-eye .pupil::before {
  content: "";
  position: absolute;
  width: 26%;
  aspect-ratio: 1;
  right: 13%;
  top: 10%;
  border-radius: 50%;
  background: rgba(255,255,255,.96);
  box-shadow: 0 0 5px rgba(255,255,255,.38);
}

.hero-eye .pupil::after {
  content: "";
  position: absolute;
  width: 10%;
  aspect-ratio: 1;
  left: 22%;
  bottom: 18%;
  border-radius: 50%;
  background: rgba(255,190,112,.28);
}

.sticker {
  position: absolute;
  z-index: 4;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 11px;
  line-height: 1.15;
  font-weight: 950;
  letter-spacing: .06em;
  border: 1px solid rgba(55, 24, 4, .14);
  box-shadow: 0 14px 34px rgba(76, 34, 2, .17), inset 0 1px 0 rgba(255,255,255,.6);
  animation: bob 5s ease-in-out infinite;
}

.sticker-top {
  width: 116px;
  height: 116px;
  right: 2%;
  top: 10%;
  border-radius: 50%;
  color: var(--cream);
  background: var(--brown-deep);
  transform: rotate(9deg);
}

.sticker-top span {
  display: block;
  margin-bottom: 4px;
  color: var(--yellow);
  font-size: 24px;
  line-height: 1;
}

.sticker-left {
  left: 0;
  top: 28%;
  width: 142px;
  min-height: 78px;
  padding: 14px;
  border-radius: 18px;
  background: #fffdf8;
  transform: rotate(-7deg);
  animation-delay: -1.2s;
}

.sticker-left strong {
  color: var(--orange-deep);
  font-size: 13px;
}

.sticker-right {
  right: 1%;
  bottom: 22%;
  width: 128px;
  min-height: 91px;
  padding: 14px;
  color: var(--brown-deep);
  border-radius: 26px;
  background: linear-gradient(135deg, #ffe86a, #ff9e00);
  transform: rotate(6deg);
  animation-delay: -2.3s;
}

.sticker-face {
  font-size: 19px;
}

@keyframes bob {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -10px; }
}

.dudu-button {
  position: absolute;
  z-index: 5;
  left: 10%;
  bottom: 8%;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(65, 28, 4, .15);
  border-radius: 50%;
  background: linear-gradient(145deg, #fff8db, #ffd12b);
  font-size: 13px;
  font-weight: 950;
  box-shadow: var(--shadow-small), inset 0 1px 0 rgba(255,255,255,.75);
  cursor: pointer;
  transform: rotate(-8deg);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.dudu-button:hover {
  transform: rotate(4deg) scale(1.08);
  box-shadow: 0 18px 42px rgba(96, 45, 3, .22), inset 0 1px 0 rgba(255,255,255,.8);
}

.scroll-cue {
  position: absolute;
  z-index: 5;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .18em;
  color: rgba(43,23,14,.47);
}

.scroll-cue i {
  width: 1px;
  height: 28px;
  background: linear-gradient(var(--brown-deep), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0%,100% { transform: scaleY(.5); transform-origin: top; opacity: .35; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
}

.confetti {
  position: fixed;
  z-index: 500;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  pointer-events: none;
  animation: popConfetti 900ms var(--ease) forwards;
}

@keyframes popConfetti {
  0% { transform: translate(0,0) scale(.4); opacity: 0; }
  15% { opacity: 1; }
  100% { transform: translate(var(--tx), var(--ty)) scale(1.2) rotate(260deg); opacity: 0; }
}

.marquee {
  overflow: hidden;
  background: var(--brown-deep);
  color: var(--cream);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 31px;
  padding: 15px 0;
  animation: marquee 24s linear infinite;
}

.marquee span {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.marquee b {
  color: var(--yellow);
}

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

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 52px;
}

.section-heading h2,
.culture-intro h2,
.kitchen-copy h2,
.community-copy h2,
.faq-title h2 {
  margin: 20px 0 0;
  font-family: "Arial Rounded MT Bold", "Avenir Next", "PingFang SC", sans-serif;
  font-size: clamp(46px, 5vw, 74px);
  line-height: 1.03;
  letter-spacing: -.055em;
  font-weight: 950;
}

.section-heading p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 17px;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 26px;
}

.filter-button {
  height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(64, 29, 7, .14);
  border-radius: 999px;
  background: rgba(255,255,255,.52);
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
  transition: all .22s ease;
}

.filter-button:hover,
.filter-button.active {
  color: var(--cream);
  background: var(--brown-deep);
  border-color: var(--brown-deep);
}

.meme-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-flow: dense;
  gap: 20px;
}

.meme-card {
  min-height: 420px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(60, 27, 6, .12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-small);
  transition: transform .38s var(--ease), box-shadow .38s var(--ease), opacity .28s ease;
}

.meme-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.4);
  pointer-events: none;
}

.meme-card:hover {
  transform: translateY(-8px) rotate(-.35deg);
  box-shadow: 0 30px 75px rgba(80, 35, 2, .19);
}

.meme-card.is-hidden {
  display: none;
}

.meme-card-large { grid-column: span 7; }
.meme-card-medium { grid-column: span 5; }
.meme-card-small { grid-column: span 6; min-height: 390px; }

.meme-card.meme-photo-card {
  min-height: 0;
  align-self: start;
  background: #fff8e8;
}

.meme-photo-card-landscape { aspect-ratio: 3 / 2; }
.meme-photo-card-square { aspect-ratio: 1; }

.meme-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .45s var(--ease);
}

.meme-photo-card:hover .meme-photo {
  transform: scale(1.025);
}

.meme-photo-meta {
  position: absolute;
  z-index: 5;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 11px 15px;
  border: 1px solid rgba(69, 32, 7, .1);
  border-radius: 999px;
  color: var(--brown-deep);
  background: rgba(255, 253, 248, .9);
  box-shadow: 0 10px 28px rgba(69, 32, 7, .14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
}

.meme-photo-card-captioned {
  aspect-ratio: auto;
  display: flex;
  flex-direction: column;
}

.meme-photo-card-captioned .meme-photo-meta {
  position: static;
  flex: 0 0 auto;
  padding: 14px 20px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.meme-photo-card-captioned .meme-photo {
  height: auto;
  flex: 0 0 auto;
  aspect-ratio: 3 / 2;
}

.meme-photo-card-captioned.meme-photo-card-square .meme-photo {
  aspect-ratio: 1;
}

.card-yellow { background: linear-gradient(145deg, #ffe96a 0%, #ffb400 64%, #ff8a00 100%); }
.card-brown { background: linear-gradient(145deg, #59230f, #2b170e); }
.card-cream { background: linear-gradient(145deg, #fffdf7, #ffecc0); }
.card-orange { background: linear-gradient(145deg, #ffb000, #ff6d00); }
.card-pale { background: linear-gradient(145deg, #fff9e6, #ffd56e); }
.card-sunset { background: linear-gradient(135deg, #e94c24 0%, #ff7b00 50%, #ffc400 100%); }

.meme-meta {
  position: absolute;
  z-index: 5;
  left: 24px;
  right: 24px;
  top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(43,23,14,.62);
}

.meme-meta-light { color: rgba(255,253,248,.7); }

.meme-copy {
  position: absolute;
  z-index: 4;
  left: 31px;
  top: 79px;
}

.meme-copy small {
  display: block;
  margin-bottom: 5px;
  font-size: 10px;
  letter-spacing: .16em;
  font-weight: 900;
}

.meme-copy h3 {
  margin: 0;
  font-family: "Arial Rounded MT Bold", "Avenir Next", "PingFang SC", sans-serif;
  font-size: clamp(34px, 4vw, 58px);
  line-height: .98;
  letter-spacing: -.05em;
  font-weight: 950;
}

.meme-copy p {
  margin: 14px 0 0;
  font-size: 13px;
  font-weight: 700;
}

.meme-copy-dark { color: var(--brown-deep); }
.meme-copy-light { color: var(--white); }
.meme-copy-bottom { top: auto; bottom: 27px; }
.meme-copy-wide { max-width: 52%; }

.meme-character {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 24px 24px rgba(84, 35, 0, .16));
  transition: transform .45s var(--ease);
}

.meme-card:hover .meme-character {
  transform: var(--base-transform) scale(1.035);
}

.meme-character-full {
  --base-transform: rotate(3deg);
  width: 63%;
  right: -2%;
  bottom: -22%;
  transform: var(--base-transform);
}

.meme-character-face {
  --base-transform: scale(1.72) rotate(-5deg);
  width: 80%;
  right: -19%;
  bottom: -56%;
  transform: var(--base-transform);
  filter: drop-shadow(0 24px 28px rgba(0,0,0,.28));
}

.meme-character-sit {
  --base-transform: rotate(-4deg);
  width: 57%;
  left: 6%;
  bottom: -19%;
  transform: var(--base-transform);
}

.meme-character-peek {
  --base-transform: rotate(6deg);
  width: 58%;
  right: -8%;
  top: -15%;
  transform: var(--base-transform);
}

.meme-character-side {
  --base-transform: rotate(4deg);
  width: 52%;
  right: -8%;
  bottom: -13%;
  transform: var(--base-transform);
}

.meme-character-giant {
  --base-transform: scale(1.06) rotate(5deg);
  width: 61%;
  right: -4%;
  bottom: -30%;
  transform: var(--base-transform);
}

.meme-stamp {
  position: absolute;
  right: 27px;
  top: 27px;
  z-index: 5;
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 2px solid rgba(43,23,14,.58);
  border-radius: 50%;
  font-size: 9px;
  line-height: 1.2;
  font-weight: 950;
  transform: rotate(10deg);
}

.chat-bubble {
  position: absolute;
  z-index: 5;
  right: 30px;
  top: 84px;
  max-width: 190px;
  padding: 17px 19px;
  border-radius: 20px 20px 5px 20px;
  background: var(--brown-deep);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(42, 20, 4, .16);
}

.chat-answer {
  position: absolute;
  z-index: 5;
  right: 33px;
  bottom: 36px;
  font-family: "Arial Rounded MT Bold", "PingFang SC", sans-serif;
  font-size: 34px;
  line-height: 1;
  font-weight: 950;
}

.orbit-label {
  position: absolute;
  z-index: 4;
  padding: 8px 11px;
  border-radius: 999px;
  border: 1px solid rgba(43,23,14,.14);
  background: rgba(255,255,255,.68);
  font-size: 10px;
  letter-spacing: .08em;
  font-weight: 950;
}

.orbit-label-one { left: 30px; top: 102px; transform: rotate(-6deg); }
.orbit-label-two { right: 25px; top: 189px; transform: rotate(6deg); }

.snackmap {
  position: absolute;
  z-index: 4;
  left: 31px;
  bottom: 29px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.snackmap li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 850;
}

.snackmap span {
  min-width: 38px;
  padding: 4px 6px;
  border-radius: 999px;
  color: var(--white);
  background: var(--brown-deep);
  text-align: center;
  font-size: 9px;
  letter-spacing: .05em;
}

.culture-section {
  color: var(--white);
  background: var(--brown-deep);
  overflow: hidden;
}

.culture-section::before {
  content: "";
  position: absolute;
  width: 780px;
  height: 780px;
  right: -280px;
  top: -260px;
  border-radius: 50%;
  border: 1px solid rgba(255, 199, 0, .13);
  box-shadow: 0 0 0 85px rgba(255, 199, 0, .025), 0 0 0 170px rgba(255, 199, 0, .018);
}

.culture-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 25px 70px;
  position: relative;
  z-index: 2;
}

.culture-intro {
  padding: 16px 0;
}

.culture-intro p {
  max-width: 540px;
  margin: 26px 0 0;
  color: rgba(255,253,248,.65);
  font-size: 17px;
}

.culture-quote {
  margin-top: 49px;
  padding-top: 27px;
  border-top: 1px solid rgba(255,255,255,.13);
  color: var(--yellow-soft);
  font-family: "Arial Rounded MT Bold", "PingFang SC", sans-serif;
  font-size: clamp(25px, 3vw, 40px);
  line-height: 1.35;
  letter-spacing: -.035em;
  font-weight: 900;
}

.rules-stack {
  display: grid;
  gap: 13px;
}

.rule-card {
  min-height: 143px;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 22px;
  align-items: center;
  padding: 25px 27px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 25px;
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(12px);
  transition: transform .3s var(--ease), background .3s ease, border-color .3s ease;
}

.rule-card:hover {
  transform: translateX(-8px);
  background: rgba(255,255,255,.085);
  border-color: rgba(255, 205, 36, .34);
}

.rule-card > span {
  font-size: 33px;
  line-height: 1;
  font-weight: 950;
  color: var(--yellow);
}

.rule-card h3 {
  margin: 0 0 6px;
  font-size: 21px;
  font-weight: 950;
}

.rule-card p {
  margin: 0;
  color: rgba(255,253,248,.58);
  font-size: 13px;
}

.kitchen-section {
  background:
    radial-gradient(circle at 13% 87%, rgba(255,181,0,.18), transparent 27%),
    linear-gradient(180deg, #fff4d5, #fff9ec);
}

.kitchen-grid {
  display: grid;
  grid-template-columns: .83fr 1.17fr;
  gap: 78px;
  align-items: center;
}

.kitchen-copy > p {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.generator-form {
  margin-top: 37px;
  display: grid;
  gap: 14px;
}

.generator-form label {
  display: grid;
  gap: 8px;
}

.generator-form label span {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(43,23,14,.55);
}

.generator-form input {
  width: 100%;
  height: 58px;
  padding: 0 18px;
  border: 1px solid rgba(69,31,7,.14);
  border-radius: 17px;
  outline: none;
  background: rgba(255,255,255,.74);
  color: var(--brown-deep);
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.generator-form input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,122,0,.1), inset 0 1px 0 rgba(255,255,255,.9);
}

.generator-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 5px;
}

.generator-tip {
  margin: 0;
  font-size: 12px !important;
  color: rgba(43,23,14,.47) !important;
}

.meme-generator {
  padding: 16px;
  border: 1px solid rgba(69,31,7,.15);
  border-radius: 34px;
  background: rgba(255,255,255,.64);
  box-shadow: var(--shadow);
}

.canvas-bar {
  height: 42px;
  padding: 0 8px 0 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 9px;
  letter-spacing: .13em;
  font-weight: 950;
  color: rgba(43,23,14,.55);
}

.canvas-bar span:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
}

.canvas-bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25b868;
  box-shadow: 0 0 0 4px rgba(37,184,104,.12);
}

#memeCanvas {
  width: 100%;
  aspect-ratio: 1;
  display: block;
  border-radius: 23px;
  background: var(--yellow);
}

.token-section {
  background: #fffdf7;
}

.token-heading strong {
  color: var(--orange-deep);
}

.demo-notice {
  margin: -25px 0 31px;
  padding: 14px 17px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(175, 73, 0, .18);
  border-radius: 15px;
  background: #fff1cb;
  font-size: 12px;
  font-weight: 700;
  color: rgba(43,23,14,.72);
}

.demo-notice span {
  flex: 0 0 auto;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--white);
  background: var(--orange-deep);
  font-size: 9px;
  letter-spacing: .12em;
  font-weight: 950;
}

.token-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.token-chart-card,
.token-details {
  border-radius: var(--radius-xl);
}

 .token-chart-card {
  min-height: 590px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  gap: 38px;
  border: 1px solid rgba(60,27,6,.1);
  background: linear-gradient(145deg, #fff5d8, #ffe49a);
  box-shadow: var(--shadow-small);
}

.donut {
  width: min(100%, 348px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(
    var(--orange-deep) 0 55%,
    var(--yellow) 55% 80%,
    #ffd968 80% 95%,
    var(--brown-deep) 95% 100%
  );
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(43,23,14,.12), 0 24px 55px rgba(108,49,0,.17);
  transform: rotate(-24deg);
}

.donut::after {
  content: "";
  position: absolute;
  inset: 23%;
  border-radius: 50%;
  background: #fff8e8;
  box-shadow: inset 0 0 0 1px rgba(43,23,14,.1), 0 0 0 11px rgba(255,255,255,.22);
}

.donut-center {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  text-align: center;
  transform: rotate(24deg);
}

.donut-center strong {
  font-size: 46px;
  line-height: 1;
  letter-spacing: -.06em;
  font-weight: 950;
}

.donut-center span {
  margin-top: 8px;
  font-size: 9px;
  line-height: 1.25;
  letter-spacing: .13em;
  font-weight: 950;
}

.token-legend {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.token-legend > div {
  min-height: 51px;
  display: grid;
  grid-template-columns: 10px 1fr auto;
  align-items: center;
  gap: 9px;
  padding: 0 13px;
  border: 1px solid rgba(60,27,6,.1);
  border-radius: 14px;
  background: rgba(255,255,255,.54);
}

.token-legend i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.legend-one { background: var(--orange-deep); }
.legend-two { background: var(--yellow); }
.legend-three { background: #ffd968; }
.legend-four { background: var(--brown-deep); }

.token-legend span {
  font-size: 11px;
  font-weight: 800;
  color: rgba(43,23,14,.65);
}

.token-legend strong {
  font-size: 13px;
  font-weight: 950;
}

.token-details {
  padding: 22px;
  display: grid;
  gap: 22px;
  border: 1px solid rgba(60,27,6,.1);
  background: var(--brown-deep);
  box-shadow: var(--shadow-small);
}

.token-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.token-facts > div {
  min-height: 146px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 22px;
  background: rgba(255,255,255,.06);
}

.token-facts span {
  color: rgba(255,253,248,.48);
  font-size: 9px;
  letter-spacing: .14em;
  font-weight: 950;
}

.token-facts strong {
  color: var(--yellow-soft);
  font-size: 30px;
  line-height: 1;
  font-weight: 950;
}

.token-facts small {
  color: rgba(255,253,248,.48);
  font-size: 11px;
  font-weight: 700;
}

.onchain-card {
  padding: 25px;
  border-radius: 25px;
  background: linear-gradient(145deg, #ffe163, #ff9f00);
}

.onchain-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 22px;
  font-size: 9px;
  letter-spacing: .13em;
  font-weight: 950;
}

.onchain-topline b {
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--cream);
  background: var(--brown-deep);
}

.onchain-card code {
  display: block;
  margin-bottom: 18px;
  overflow-wrap: anywhere;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.35;
  font-weight: 850;
  letter-spacing: -.03em;
}

.onchain-card .button {
  min-height: 50px;
}

.onchain-card p {
  margin: 17px 0 0;
  font-size: 11px;
  line-height: 1.6;
  font-weight: 700;
  color: rgba(43,23,14,.63);
}

.community-section {
  padding-top: 80px;
  background: #fffdf7;
}

.community-shell {
  min-height: 630px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 55px;
  align-items: center;
  padding: 68px;
  border-radius: 48px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 22%, rgba(255,210,58,.25), transparent 26%),
    linear-gradient(135deg, #4c210f, #241209 72%);
  box-shadow: 0 38px 100px rgba(50,22,7,.22);
}

.community-shell::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -160px;
  bottom: -180px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffdf42, #ff7a00);
  opacity: .93;
}

.community-copy {
  position: relative;
  z-index: 3;
  align-self: start;
}

.community-copy h2 {
  font-size: clamp(44px, 4.2vw, 62px);
}

.community-copy p {
  max-width: 500px;
  margin: 25px 0 0;
  color: rgba(255,253,248,.62);
  font-size: 16px;
}

.community-links {
  position: relative;
  z-index: 5;
  display: grid;
  gap: 10px;
  align-self: start;
}

.community-link {
  width: 100%;
  min-height: 104px;
  padding: 14px 17px;
  display: grid;
  grid-template-columns: 62px 1fr auto;
  gap: 15px;
  align-items: center;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 21px;
  color: var(--white);
  background: rgba(255,255,255,.07);
  text-align: left;
  font: inherit;
  cursor: pointer;
  backdrop-filter: blur(13px);
  transition: transform .25s var(--ease), background .25s ease, border-color .25s ease;
}

.community-link:hover {
  transform: translateX(8px);
  background: rgba(255,255,255,.11);
  border-color: rgba(255,217,67,.32);
}

.community-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: var(--brown-deep);
  background: var(--yellow-soft);
  font-size: 16px;
  font-weight: 950;
}

.community-icon svg {
  width: 30px;
  height: 30px;
  display: block;
  fill: currentColor;
}

.community-icon-x {
  color: #fff;
  background: #111;
}

.community-icon-telegram {
  color: #fff;
  background: #229ed9;
}

.community-icon-debox {
  background: #20c76f;
}

.community-icon-debox img {
  width: 40px;
  height: auto;
  display: block;
}

.community-link > span:nth-child(2) {
  display: grid;
  gap: 4px;
}

.community-link strong {
  font-size: 16px;
  font-weight: 900;
}

.community-link small {
  color: rgba(255,253,248,.5);
  font-size: 11px;
  font-weight: 700;
}

.community-link b {
  font-size: 20px;
  color: var(--yellow);
}

.community-mascot {
  position: absolute;
  z-index: 2;
  width: 390px;
  right: -14px;
  bottom: -173px;
  opacity: .92;
  filter: drop-shadow(0 22px 32px rgba(0,0,0,.2));
}

body.modal-open {
  overflow: hidden;
}

.debox-modal {
  width: min(calc(100% - 28px), 610px);
  max-height: 92vh;
  padding: 0;
  border: 0;
  border-radius: 30px;
  color: var(--brown-deep);
  background: #fffaf0;
  box-shadow: 0 35px 100px rgba(26,12,5,.35);
  overflow: hidden;
}

.debox-modal::backdrop {
  background: rgba(28,13,6,.72);
  backdrop-filter: blur(8px);
}

.debox-modal-card {
  position: relative;
  max-height: 92vh;
  padding: 30px;
  overflow-y: auto;
  text-align: center;
}

.debox-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--brown-deep);
  font-size: 27px;
  line-height: 1;
  cursor: pointer;
}

.debox-modal-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.debox-modal-brand span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: #20c76f;
}

.debox-modal-brand img {
  width: 31px;
  height: auto;
}

.debox-modal-brand strong {
  font-size: 24px;
  font-weight: 950;
}

.debox-modal h2 {
  margin: 20px 44px 8px;
  font-size: clamp(25px, 4vw, 34px);
  line-height: 1.18;
}

.debox-modal p {
  margin: 0 auto;
  color: var(--muted);
  font-size: 14px;
}

.debox-qr-frame {
  position: relative;
  width: min(74vw, 330px);
  aspect-ratio: 1;
  margin: 24px auto 18px;
  overflow: hidden;
  border: 10px solid #fff;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(43,23,14,.13);
}

.debox-qr-frame img {
  position: absolute;
  width: 244%;
  max-width: none;
  height: auto;
  left: -72%;
  top: -220%;
}

.debox-full-card {
  display: inline-flex;
  min-height: 42px;
  padding: 0 17px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: #20b967;
  font-size: 13px;
  font-weight: 900;
}

.faq-section {
  background: #fffdf7;
}

.faq-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 80px;
}

.faq-title h2 {
  font-size: clamp(44px, 4.7vw, 68px);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 92px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  list-style: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cream-2);
  transition: transform .25s ease, background .25s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
  background: var(--yellow);
}

.faq-list details p {
  margin: -8px 50px 27px 0;
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  color: var(--cream);
  background: var(--brown-deep);
}

.footer-top {
  min-height: 160px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand .brand-copy strong { color: var(--cream); }
.footer-brand .brand-copy small { color: rgba(255,253,248,.45); }

.footer-top p {
  margin: 0;
  color: rgba(255,253,248,.62);
  font-size: 13px;
  font-weight: 800;
}

.back-top {
  justify-self: end;
  font-size: 10px;
  letter-spacing: .13em;
  font-weight: 950;
  color: var(--yellow);
}

.footer-bottom {
  min-height: 82px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  color: rgba(255,253,248,.4);
  font-size: 9px;
  letter-spacing: .08em;
  font-weight: 800;
}

.toast {
  position: fixed;
  z-index: 1000;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 18px);
  padding: 12px 17px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  color: var(--white);
  background: rgba(43,23,14,.92);
  box-shadow: 0 14px 40px rgba(0,0,0,.18);
  backdrop-filter: blur(15px);
  font-size: 12px;
  font-weight: 850;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s var(--ease);
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}

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

@media (max-width: 1100px) {
  :root { --container: 1000px; }

  .nav-shell { gap: 18px; }
  .nav-ca { width: clamp(220px, 25vw, 285px); }
  .language-toggle { min-width: 70px; padding-inline: 10px; }
  .desktop-nav { gap: 20px; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .hero h1 { font-size: clamp(48px, 5vw, 56px); }
  .hero-art { min-height: 600px; }
  .sticker-left { left: -3%; }
  .sticker-top { right: -1%; }
  .community-shell { padding: 52px; }
  .community-mascot { width: 330px; }
}

@media (max-width: 900px) {
  .section { padding: 96px 0; }
  .desktop-nav,
  .nav-ca { display: none; }
  .menu-toggle { display: block; }
  .language-toggle { margin-left: auto; }

  .mobile-nav {
    position: fixed;
    z-index: 98;
    inset: 0;
    padding: 126px 30px 46px;
    display: grid;
    align-content: start;
    gap: 5px;
    color: var(--cream);
    background: rgba(43,23,14,.96);
    backdrop-filter: blur(24px);
    transform: translateY(-105%);
    opacity: 0;
    transition: transform .42s var(--ease), opacity .32s ease;
  }

  .menu-open .mobile-nav {
    transform: none;
    opacity: 1;
  }

  .mobile-nav a {
    padding: 15px 2px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    font-family: "Arial Rounded MT Bold", "PingFang SC", sans-serif;
    font-size: 30px;
    font-weight: 900;
    letter-spacing: -.03em;
  }

  .hero {
    padding-top: 126px;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .hero-copy { padding-bottom: 0; }
  .hero-art { min-height: 650px; }
  .hero-halo { width: min(78vw, 620px); }
  .hero-ring-one { width: min(88vw, 720px); }
  .hero-ring-two { width: min(98vw, 800px); }
  .hero-mascot-wrap { width: min(74vw, 610px); }
  .sticker-left { left: 6%; }
  .sticker-top { right: 7%; }
  .sticker-right { right: 5%; }
  .dudu-button { left: 13%; }
  .scroll-cue { display: none; }

  .section-heading,
  .culture-grid,
  .kitchen-grid,
  .token-layout,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .section-heading { gap: 25px; }
  .meme-card-large,
  .meme-card-medium,
  .meme-card-small { grid-column: span 6; }

  .culture-grid { gap: 45px; }

  .kitchen-grid { gap: 48px; }
  .token-layout { gap: 20px; }

  .community-shell {
    grid-template-columns: 1fr;
    padding: 48px;
  }

  .community-links { width: min(100%, 550px); }
  .community-mascot { width: 280px; right: -55px; bottom: -130px; opacity: .66; }

  .faq-grid { gap: 42px; }
  .footer-top { grid-template-columns: 1fr auto; }
  .footer-top p { display: none; }
}

@media (max-width: 650px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 78px 0; }
  .site-header { padding-top: 10px; }
  .nav-shell { min-height: 58px; padding: 7px 8px 7px 10px; gap: 8px; }
  .brand-mark { width: 42px; height: 42px; }
  .brand-copy strong { font-size: 15px; }
  .brand-copy small { font-size: 8px; }
  .language-toggle { min-width: 56px; height: 42px; padding: 5px 8px; border-radius: 14px; }
  .language-toggle strong { font-size: 12px; }
  .language-toggle small { display: none; }

  .hero { padding: 108px 0 58px; }
  .hero-copy { padding-top: 18px; }
  .eyebrow { font-size: 9px; letter-spacing: .1em; }
  .hero h1 { margin-top: 24px; font-size: clamp(35px, 10.5vw, 50px); line-height: 1.02; }
  .hero-lead { font-size: 15px; line-height: 1.78; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .lang-en .hero h1 { font-size: clamp(29px, 8vw, 36px); letter-spacing: -.05em; overflow-wrap: anywhere; }
  .lang-en .hero h1 span { display: inline; }
  .lang-en .hero-lead { max-width: 100%; overflow-wrap: anywhere; }
  .lang-en .hero-actions { grid-template-columns: 1fr; }
  .lang-en .hero-actions .button { width: 100%; }
  .button { min-height: 50px; padding: 0 15px; font-size: 12px; }
  .contract-card { padding: 13px; }
  .contract-label { max-width: 210px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .contract-value { font-size: 11px; }
  .copy-button { width: 43px; height: 43px; }
  .hero-facts { justify-content: space-between; gap: 10px; }
  .hero-facts strong { font-size: 18px; }
  .hero-facts span { font-size: 9px; }

  .hero-art { min-height: 490px; }
  .hero-halo { width: 88vw; }
  .hero-ring-one { width: 99vw; }
  .hero-ring-two { width: 112vw; }
  .hero-mascot-wrap { width: 86vw; bottom: -2%; }
  .sticker-top { width: 84px; height: 84px; right: 1%; top: 11%; font-size: 8px; }
  .sticker-top span { font-size: 18px; }
  .sticker-left { width: 108px; min-height: 62px; left: 0; top: 23%; padding: 10px; font-size: 8px; }
  .sticker-left strong { font-size: 10px; }
  .sticker-right { width: 98px; min-height: 70px; right: 0; bottom: 23%; padding: 10px; font-size: 8px; }
  .dudu-button { width: 72px; height: 72px; left: 2%; bottom: 8%; font-size: 10px; }

  .section-heading h2,
  .culture-intro h2,
  .kitchen-copy h2,
  .community-copy h2,
  .faq-title h2 { font-size: clamp(40px, 12vw, 54px); }

  .section-heading p,
  .culture-intro p,
  .kitchen-copy > p { font-size: 15px; }

  .meme-grid { grid-template-columns: 1fr; gap: 14px; }
  .meme-card-large,
  .meme-card-medium,
  .meme-card-small { grid-column: 1; min-height: 410px; }
  .meme-copy h3 { font-size: 42px; }
  .meme-character-full { width: 75%; }
  .meme-character-face { width: 90%; right: -24%; }
  .meme-character-giant { width: 76%; right: -10%; }
  .meme-copy-wide { max-width: 62%; }

  .culture-quote { font-size: 27px; }
  .rule-card { grid-template-columns: 52px 1fr; padding: 20px; }
  .rule-card > span { font-size: 26px; }

  .generator-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .meme-generator { padding: 10px; border-radius: 26px; }
  #memeCanvas { border-radius: 18px; }

  .demo-notice { align-items: flex-start; }
  .token-chart-card { min-height: 520px; padding: 30px 18px; }
  .donut { width: 290px; }
  .token-legend { grid-template-columns: 1fr; }
  .token-facts { grid-template-columns: 1fr 1fr; }
  .token-facts > div { min-height: 126px; padding: 15px; }
  .token-facts strong { font-size: 24px; }
  .token-details { padding: 13px; }
  .onchain-card { padding: 20px; }
  .onchain-card code { font-size: 17px; }

  .community-section { padding-top: 40px; }
  .community-shell { min-height: 720px; padding: 34px 22px; border-radius: 31px; align-content: start; }
  .community-link { min-height: 88px; padding: 11px; grid-template-columns: 54px 1fr auto; }
  .community-icon { width: 54px; height: 54px; border-radius: 18px; }
  .community-icon svg { width: 27px; height: 27px; }
  .community-icon-debox img { width: 35px; }
  .community-mascot { width: 300px; right: -55px; bottom: -130px; opacity: .73; }

  .debox-modal-card { padding: 24px 16px; }
  .debox-modal h2 { margin-inline: 42px; }
  .debox-qr-frame { border-width: 8px; border-radius: 20px; }

  .faq-list summary { font-size: 16px; }
  .footer-top { min-height: 130px; }
  .footer-bottom { min-height: 104px; flex-direction: column; justify-content: center; align-items: flex-start; gap: 7px; }
}

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


/* Dividend & tax section */
.tax-summary {
  margin-bottom: 22px;
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1.2fr 1.2fr;
  gap: 10px;
  align-items: stretch;
  border: 1px solid rgba(65,29,7,.10);
  border-radius: 27px;
  background: rgba(255,255,255,.57);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}

.tax-summary-item {
  min-height: 116px;
  padding: 17px;
  display: grid;
  align-content: center;
  gap: 3px;
  border: 1px solid rgba(43,23,14,.08);
  border-radius: 20px;
  background: rgba(255,249,226,.7);
}

.tax-summary-item span {
  font-size: 9px;
  letter-spacing: .14em;
  font-weight: 950;
  color: rgba(43,23,14,.46);
}

.tax-summary-item strong {
  font-size: 37px;
  line-height: 1;
  letter-spacing: -.065em;
  font-weight: 950;
}

.tax-summary-item small {
  font-size: 11px;
  color: rgba(43,23,14,.54);
  font-weight: 750;
}

.tax-summary-dividend {
  color: #fffdf8;
  background: linear-gradient(145deg, #ff9a00, #ff6d00);
}

.tax-summary-dividend span,
.tax-summary-dividend small { color: rgba(255,255,255,.72); }

.tax-summary-funds {
  color: #fffdf8;
  background: linear-gradient(145deg, #6b3217, #2b170e);
}

.tax-summary-funds span,
.tax-summary-funds small { color: rgba(255,255,255,.62); }

.tax-summary-plus,
.tax-summary-arrow {
  display: grid;
  place-items: center;
  color: rgba(43,23,14,.38);
  font-size: 23px;
  font-weight: 950;
}

.token-chart-card {
  min-height: 650px;
}

.allocation-chart {
  width: min(100%, 360px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  position: relative;
  border-radius: 50%;
  background: conic-gradient(var(--orange-deep) 0 80%, var(--brown-deep) 80% 100%);
  box-shadow: inset 0 0 0 1px rgba(43,23,14,.12), 0 24px 55px rgba(108,49,0,.17);
  transform: rotate(-24deg);
}

.allocation-chart::before {
  content: "";
  position: absolute;
  inset: 22%;
  border-radius: 50%;
  background: #fff8e8;
  box-shadow: inset 0 0 0 1px rgba(43,23,14,.10), 0 0 0 11px rgba(255,255,255,.22);
}

.allocation-center {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  text-align: center;
  transform: rotate(24deg);
}

.allocation-center img {
  width: 42px;
  height: 42px;
  margin-bottom: 9px;
}

.allocation-center strong {
  font-size: 50px;
  line-height: 1;
  letter-spacing: -.065em;
  font-weight: 950;
}

.allocation-center span {
  margin-top: 7px;
  font-size: 9px;
  letter-spacing: .14em;
  font-weight: 950;
}

.allocation-legend {
  width: 100%;
  display: grid;
  gap: 10px;
}

.allocation-legend > div {
  min-height: 61px;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 12px 1fr auto;
  gap: 11px;
  align-items: center;
  border: 1px solid rgba(43,23,14,.08);
  border-radius: 18px;
  background: rgba(255,255,255,.48);
}

.allocation-legend span {
  font-size: 13px;
  font-weight: 800;
}

.allocation-legend strong {
  font-size: 22px;
  letter-spacing: -.04em;
}

.allocation-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dividend-dot { background: var(--orange-deep); }
.funds-dot { background: var(--brown-deep); }

.token-details {
  padding: 14px;
  display: grid;
  gap: 10px;
  border: 1px solid rgba(60,27,6,.10);
  background: rgba(255,255,255,.55);
  box-shadow: var(--shadow-small);
}

.mechanism-card {
  min-height: 142px;
  padding: 21px;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
  border: 1px solid rgba(43,23,14,.08);
  border-radius: 22px;
  background: #fffaf0;
  transition: transform .25s var(--ease), border-color .25s ease, background .25s ease;
}

.mechanism-card:hover {
  transform: translateX(5px);
  border-color: rgba(255,122,0,.22);
  background: #fff6df;
}

.mechanism-number {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: var(--brown-deep);
  background: linear-gradient(145deg, #fff4bd, #ffc92f);
  font-size: 12px;
  font-weight: 950;
}

.mechanism-card h3 {
  margin: 2px 0 9px;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -.04em;
}

.mechanism-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.72;
  color: rgba(43,23,14,.67);
}

.mechanism-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  color: #5b31ff;
  font-size: 12px;
  font-weight: 900;
}

.mechanism-link:hover {
  text-decoration: underline;
}

.tax-onchain {
  margin-top: 22px;
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.inline-actions .button {
  min-height: 48px;
}

@media (max-width: 1100px) {
  .tax-summary {
    grid-template-columns: 1fr auto 1fr;
  }
  .tax-summary-arrow { display: none; }
  .tax-summary-dividend,
  .tax-summary-funds { grid-column: span 1; }
}

@media (max-width: 900px) {
  .tax-summary {
    grid-template-columns: 1fr auto 1fr;
  }
  .tax-summary-dividend { grid-column: 1 / span 2; }
  .tax-summary-funds { grid-column: 3; }
}

@media (max-width: 650px) {
  .origin-stack {
    width: 100%;
  }

  .origin-pill {
    width: 100%;
    display: grid;
    grid-template-columns: auto auto 1fr auto;
    border-radius: 22px;
  }
  .origin-pill small {
    grid-column: 1 / -1;
    grid-row: 2;
    padding-left: 0;
  }
  .origin-pill > b {
    grid-column: 4;
    grid-row: 1;
    align-self: center;
  }
  .lang-en .origin-pill {
    min-width: 0;
    grid-template-columns: auto minmax(0, 1fr) auto;
  }
  .lang-en .origin-pill > b { grid-column: 3; }
  .lang-en .origin-pill small { overflow-wrap: anywhere; }

  .tax-summary {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px;
  }
  .tax-summary-plus,
  .tax-summary-arrow { display: none; }
  .tax-summary-dividend,
  .tax-summary-funds { grid-column: span 1; }
  .tax-summary-item {
    min-height: 102px;
    padding: 14px;
  }
  .tax-summary-item strong { font-size: 31px; }

  .token-chart-card {
    min-height: 540px;
  }
  .allocation-chart { width: 286px; }
  .allocation-center strong { font-size: 42px; }
  .mechanism-card {
    min-height: auto;
    grid-template-columns: 44px 1fr;
    padding: 17px;
  }
  .mechanism-number {
    width: 44px;
    height: 44px;
  }
  .mechanism-card h3 { font-size: 19px; }
  .inline-actions { display: grid; }
  .inline-actions .button { width: 100%; }
}
