@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=DM+Sans:wght@500;600;700;800&display=swap');

:root {
  --orange: #ff7200;
  --orange-deep: #ff4f00;
  --gold: #ffbf19;
  --cream: #ffe3bd;
  --paper: #fffaf0;
  --blue: #0756df;
  --blue-mid: #0a42b2;
  --blue-dark: #052b78;
  --ink: #08296b;
  --cloud-surface:
    radial-gradient(circle at 32% 18%, rgb(255 255 255 / .98) 0 8%, transparent 30%),
    radial-gradient(circle at 72% 30%, rgb(255 248 229 / .92) 0 10%, transparent 34%),
    radial-gradient(ellipse at 50% 100%, rgb(206 136 77 / .22), transparent 58%),
    linear-gradient(180deg, #fffaf0 0%, #ffe8c9 58%, #efc493 100%);
  --page-scroll: 0;
  --hero-progress: 0;
  --bridge-progress: 0;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--orange);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--orange);
  color: var(--ink);
  font-family: 'DM Sans', system-ui, sans-serif;
}

body::after {
  position: fixed;
  z-index: 500;
  inset: 0;
  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='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.48'/%3E%3C/svg%3E");
  content: '';
  mix-blend-mode: soft-light;
  opacity: .075;
  pointer-events: none;
}

a { color: inherit; }

.site-nav {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  width: 100%;
  align-items: center;
  padding: 15px clamp(22px, 4vw, 68px);
  background: rgb(255 227 189 / .84);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  backdrop-filter: blur(12px);
}

.brand {
  justify-self: start;
  font-family: 'Archivo Black', sans-serif;
  font-size: 17px;
  letter-spacing: -.04em;
  text-decoration: none;
  text-shadow: 0 3px 0 var(--blue);
}

.site-nav nav {
  display: flex;
  gap: clamp(18px, 3vw, 42px);
}

.site-nav nav a,
.x-link {
  position: relative;
  text-decoration: none;
}

.site-nav nav a::after,
.x-link::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  background: var(--blue);
  content: '';
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav nav a:hover::after,
.x-link:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-links {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 18px;
}

.motion-toggle {
  border: 0;
  padding: 5px 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 10px;
  letter-spacing: .1em;
  cursor: pointer;
}

.motion-toggle::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 6px;
  border-radius: 50%;
  background: #888;
  content: '';
}

.motion-enabled .motion-toggle::before { background: var(--blue); box-shadow: 0 0 0 3px rgb(7 86 223 / .15); }

.x-link { text-decoration: none; }

.pump-link {
  padding: 10px 15px 9px;
  background: var(--paper);
  color: var(--blue-dark);
  text-decoration: none;
  box-shadow: 0 5px 0 var(--blue-dark), 0 12px 20px rgb(5 43 120 / .18);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.pump-link:hover { transform: translateY(-2px); box-shadow: 0 7px 0 var(--blue-dark), 0 15px 24px rgb(5 43 120 / .22); }
.pump-link:active { transform: translateY(4px); box-shadow: 0 1px 0 var(--blue-dark); }

.hero {
  position: relative;
  min-height: 155svh;
  background: var(--orange);
}

.hero-stage {
  position: sticky;
  top: 0;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 30%, #ffd33d 0, #ffb411 24%, transparent 52%),
    linear-gradient(130deg, var(--orange-deep), var(--orange) 48%, #ff8c00);
}

.sun-glow {
  position: absolute;
  z-index: -1;
  top: 12%;
  left: 50%;
  width: min(76vw, 980px);
  aspect-ratio: 1.6;
  border-radius: 50%;
  background: rgb(255 221 88 / .38);
  filter: blur(45px);
  transform: translateX(-50%);
}

.hero-copy {
  position: absolute;
  z-index: 5;
  top: clamp(105px, 15vh, 150px);
  left: 50%;
  width: min(96vw, 1420px);
  text-align: center;
  opacity: var(--hero-opacity, 1);
  transform: translateX(-50%) translateY(var(--hero-title-y, 0)) scale(var(--hero-title-scale, 1));
  will-change: transform, opacity;
}

.eyebrow,
.tagline {
  margin: 0;
  color: var(--paper);
  font-size: clamp(11px, 1vw, 15px);
  font-weight: 800;
  letter-spacing: .24em;
  text-shadow: 0 2px 0 var(--blue-dark);
}

.tagline { margin-top: clamp(20px, 3vh, 34px); }

.logo-3d {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  display: flex;
  justify-content: center;
  margin-top: 18px;
  perspective: 1000px;
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: transform 180ms cubic-bezier(.2,.85,.28,1.2);
  white-space: nowrap;
}

.logo-3d.logo-awake { animation: title-wobble 520ms cubic-bezier(.2,.8,.2,1); }

.logo-3d span {
  position: relative;
  display: inline-block;
  margin: 0 clamp(-9px, -.5vw, -2px);
  color: var(--paper);
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(76px, 14.7vw, 214px);
  font-weight: 900;
  letter-spacing: -.085em;
  line-height: .76;
  -webkit-text-stroke: clamp(2px, .18vw, 4px) #edf4ff;
  paint-order: stroke fill;
  text-shadow:
    0 5px 0 #a9ccff,
    0 10px 0 var(--blue),
    0 15px 0 var(--blue-mid),
    0 21px 0 var(--blue-dark),
    0 28px 22px rgb(5 43 120 / .35);
  transform: rotate(var(--letter-angle, 0deg)) translateY(var(--letter-y, 0));
}

.logo-3d span::after {
  position: absolute;
  inset: -7% -3% auto 3%;
  z-index: -1;
  color: transparent;
  content: attr(data-letter);
  font: inherit;
  -webkit-text-stroke: 2px rgb(255 255 255 / .68);
  transform: translate(8px, -4px) rotate(2deg);
}

.logo-3d span:nth-child(1) { --letter-angle: -2deg; --letter-y: 4px; }
.logo-3d span:nth-child(2) { --letter-angle: 1deg; --letter-y: -2px; }
.logo-3d span:nth-child(3) { --letter-angle: -1deg; --letter-y: 5px; }
.logo-3d span:nth-child(4) { --letter-angle: 1.5deg; --letter-y: -4px; }
.logo-3d span:nth-child(5) { --letter-angle: -1.5deg; --letter-y: 3px; }
.logo-3d span:nth-child(6) { --letter-angle: 1deg; --letter-y: -2px; }
.logo-3d span:nth-child(7) { --letter-angle: 3deg; --letter-y: 7px; }

.inu-stage {
  position: absolute;
  z-index: 3;
  bottom: -1%;
  left: 50%;
  width: min(39vw, 560px);
  transform: translateX(-50%) translateY(var(--inu-scroll-y, 0)) rotate(var(--inu-scroll-rotate, 0deg));
  transition: transform 80ms linear;
  will-change: transform;
}

.inu {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 32px 24px rgb(116 48 0 / .24));
  animation: inu-float 5.5s ease-in-out infinite;
}

.speech {
  position: absolute;
  z-index: 4;
  top: 39%;
  left: 79%;
  width: max-content;
  max-width: 210px;
  padding: 12px 16px;
  background: var(--paper);
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 800;
  opacity: 0;
  transform: rotate(2deg) translateY(8px) scale(.88);
  transition: opacity 220ms ease, transform 220ms ease;
}

.speech::after {
  position: absolute;
  bottom: -10px;
  left: 20px;
  border-top: 11px solid var(--paper);
  border-right: 10px solid transparent;
  content: '';
}

.speech.speech-show { opacity: 1; transform: rotate(2deg) translateY(0) scale(1); }

body.is-scrolling .inu { animation-play-state: paused; }

.hero-cta {
  position: absolute;
  z-index: 8;
  right: clamp(24px, 7vw, 110px);
  bottom: clamp(42px, 8vh, 84px);
  display: grid;
  width: 150px;
  aspect-ratio: 1;
  place-content: center;
  border-radius: 50%;
  background: var(--blue);
  color: var(--paper);
  font-size: 11px;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transform: rotate(6deg);
  box-shadow: 0 11px 0 #043792, 0 22px 34px rgb(75 38 0 / .34), inset 0 2px 0 rgb(255 255 255 / .25), inset 0 -8px 14px rgb(2 36 102 / .2);
  transition: transform 220ms cubic-bezier(.2,.8,.2,1.25), background 180ms ease, box-shadow 180ms ease;
}

.hero-cta strong { display: block; margin-top: 4px; font-size: 17px; }
.hero-cta:hover { background: var(--blue-dark); box-shadow: 0 14px 0 #021f59, 0 27px 40px rgb(75 38 0 / .38), inset 0 2px 0 rgb(255 255 255 / .2); transform: translateY(-3px) rotate(-3deg) scale(1.07); }
.hero-cta:active { box-shadow: 0 4px 0 #021f59, 0 10px 18px rgb(75 38 0 / .3); transform: translateY(6px) rotate(1deg) scale(.99); }

.cloud,
.cloud-bank,
.cloud-curtain,
.bridge-cloud,
.final-cloud {
  pointer-events: none;
}

.cloud::before,
.cloud::after,
.cloud-bank::before,
.cloud-bank::after,
.cloud-curtain::before,
.cloud-curtain::after,
.bridge-cloud::before,
.bridge-cloud::after,
.final-cloud::before,
.final-cloud::after {
  position: absolute;
  border-radius: 50%;
  background: inherit;
  box-shadow: inset 0 13px 18px rgb(255 255 255 / .38), inset 0 -18px 24px rgb(176 103 48 / .12);
  content: '';
}

.cloud {
  position: absolute;
  z-index: 1;
  width: 34vw;
  height: 16vw;
  border-radius: 50%;
  background: var(--cloud-surface);
  box-shadow: inset 0 20px 26px rgb(255 255 255 / .48), inset 0 -24px 34px rgb(164 91 39 / .16);
  filter: drop-shadow(0 24px 24px rgb(116 48 0 / .16));
  opacity: .92;
  transform: translateY(var(--hero-cloud-y, 0)) translateX(var(--hero-cloud-x, 0));
  will-change: transform;
}

.cloud::before { top: -32%; left: 20%; width: 48%; height: 105%; }
.cloud::after { top: -12%; right: -7%; width: 55%; height: 108%; }
.cloud-left { --hero-cloud-x: var(--hero-cloud-x-left, 0); top: 41%; left: -22%; }
.cloud-right { --hero-cloud-x: var(--hero-cloud-x-right, 0); top: 33%; right: -23%; }

.cloud-bank {
  position: absolute;
  right: -8%;
  bottom: -12%;
  left: -8%;
  height: 25%;
  border-radius: 50% 50% 0 0;
  background: var(--cloud-surface);
  box-shadow: inset 0 18px 26px rgb(255 255 255 / .5), inset 0 -26px 38px rgb(164 91 39 / .14), 0 -10px 35px rgb(255 238 209 / .2);
}

.cloud-bank::before { top: -55%; left: 4%; width: 32%; height: 140%; }
.cloud-bank::after { top: -62%; right: 5%; width: 37%; height: 155%; }
.cloud-bank-back { z-index: 2; bottom: -3%; opacity: .62; transform: translateY(var(--bank-y, 0)); }

.cloud-curtain {
  position: absolute;
  z-index: 6;
  bottom: -9%;
  width: 62%;
  height: 14%;
  border-radius: 50% 50% 0 0;
  background: var(--cloud-surface);
  box-shadow: inset 0 20px 28px rgb(255 255 255 / .5), inset 0 -24px 36px rgb(164 91 39 / .15), 0 -12px 30px rgb(255 238 209 / .2);
  will-change: transform;
}

.cloud-curtain::before { top: -52%; width: 48%; height: 135%; }
.cloud-curtain::after { top: -36%; width: 45%; height: 112%; }
.curtain-left { left: -7%; transform: translateX(var(--curtain-left-x, 0)) translateY(var(--curtain-y, 7vh)); }
.curtain-left::before { left: 2%; }
.curtain-left::after { right: -4%; }
.curtain-right { right: -7%; transform: translateX(var(--curtain-right-x, 0)) translateY(var(--curtain-y, 7vh)); }
.curtain-right::before { right: 2%; }
.curtain-right::after { left: -4%; }

.manifesto,
.beliefs,
.commandments,
.token {
  min-height: 100svh;
}

.manifesto {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 5vw;
  padding: clamp(90px, 12vw, 170px) clamp(24px, 8vw, 130px);
  background: var(--cream);
}

.small-label {
  margin: 0 0 28px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .2em;
}

.manifesto h2,
.belief-title h2,
.commandments h2,
.final-copy h2 {
  margin: 0;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(54px, 8vw, 124px);
  letter-spacing: -.07em;
  line-height: .84;
}

.manifesto h2 em { color: var(--blue); font-style: normal; }
.manifesto-copy > p:last-child { max-width: 570px; margin: 42px 0 0; font-size: clamp(18px, 2vw, 25px); line-height: 1.45; }

.manifesto-inu {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  align-self: end;
  overflow: hidden;
  background: linear-gradient(160deg, var(--gold), var(--orange));
  place-items: end center;
}

.manifesto-inu img { display: block; width: 88%; margin: 0 auto -3%; filter: drop-shadow(0 30px 28px rgb(5 43 120 / .18)); transform: translateY(var(--mascot-y, 0)) rotate(var(--mascot-rotate, 0deg)); transform-origin: 50% 100%; transition: transform 80ms linear; }
.manifesto-inu span { position: absolute; z-index: 2; top: 24px; left: 24px; color: var(--paper); font-size: 12px; font-weight: 800; letter-spacing: .2em; }

.beliefs {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: stretch;
  background: var(--blue);
  color: var(--paper);
}

.belief-title { align-self: center; padding: clamp(80px, 9vw, 150px) clamp(24px, 7vw, 110px); }
.belief-title .small-label { color: var(--cream); }
.belief-title h2 span { color: var(--gold); }
.belief-lines { display: grid; margin: 0; padding: 0; border-left: 1px solid rgb(255 250 240 / .35); list-style: none; }
.belief-lines li { display: grid; grid-template-columns: 90px 1fr; align-items: center; padding: 35px clamp(28px, 5vw, 70px); border-bottom: 1px solid rgb(255 250 240 / .35); }
.belief-lines li:last-child { border-bottom: 0; }
.belief-lines b { color: var(--gold); font-family: 'Archivo Black', sans-serif; font-size: clamp(26px, 3vw, 46px); }
.belief-lines span { font-size: clamp(20px, 2.4vw, 34px); font-weight: 700; line-height: 1.15; }

.avatar-collection {
  position: relative;
  padding: clamp(100px, 11vw, 170px) clamp(20px, 5vw, 78px) clamp(110px, 13vw, 190px);
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 4%, rgb(255 191 25 / .4), transparent 25%),
    radial-gradient(circle at 92% 15%, rgb(255 114 0 / .2), transparent 24%),
    var(--cream);
}

.collection-heading {
  display: grid;
  max-width: 1500px;
  grid-template-columns: 1.2fr .8fr;
  align-items: end;
  gap: 5vw;
  margin: 0 auto clamp(52px, 7vw, 100px);
}

.collection-heading h2 {
  margin: 0;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(58px, 9vw, 148px);
  letter-spacing: -.075em;
  line-height: .82;
}

.collection-heading h2 span { color: var(--blue); }
.collection-intro { max-width: 520px; margin: 0 0 8px; font-size: clamp(18px, 2vw, 27px); font-weight: 700; line-height: 1.35; }
.collection-status { margin: 0 auto 26px; color: var(--blue); font-size: 11px; font-weight: 800; letter-spacing: .18em; text-align: center; }
.collection-status[hidden] { display: none; }

.avatar-grid {
  display: grid;
  max-width: 1600px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(8px, 1.1vw, 18px);
  margin: 0 auto;
}

.avatar-card {
  position: relative;
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  background: #e6d4c0;
  box-shadow: 0 10px 24px rgb(5 43 120 / .08);
  isolation: isolate;
  opacity: 0;
  transform: translateY(22px) scale(.98);
  transition: opacity 420ms ease, transform 560ms cubic-bezier(.2,.8,.2,1), box-shadow 240ms ease;
}

.avatar-card.is-visible { opacity: 1; transform: translateY(0) scale(1); }
.avatar-card img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 420ms cubic-bezier(.2,.8,.2,1); }
.avatar-card figcaption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 10px;
  padding: 30px 12px 11px;
  background: linear-gradient(transparent, rgb(5 43 120 / .88));
  color: var(--paper);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.15;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.avatar-card figcaption b { color: var(--gold); font-family: 'Archivo Black', sans-serif; font-size: 13px; }
.avatar-download {
  position: absolute;
  z-index: 4;
  top: 10px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 10px;
  border: 1px solid rgb(255 250 240 / .72);
  border-radius: 999px;
  background: rgb(5 43 120 / .9);
  box-shadow: 0 6px 16px rgb(5 43 120 / .22);
  color: var(--paper);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1;
  text-decoration: none;
  opacity: 0;
  transform: translateY(-7px);
  transition: opacity 180ms ease, transform 220ms ease, background-color 180ms ease;
}
.avatar-download span { color: var(--gold); font-size: 14px; line-height: .7; }
.avatar-download:hover { background: var(--blue); }
.avatar-download:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.avatar-card:hover { z-index: 3; box-shadow: 0 20px 38px rgb(5 43 120 / .24); transform: translateY(-5px) scale(1.025); }
.avatar-card:hover img { transform: scale(1.035); }
.avatar-card:hover figcaption, .avatar-card:focus-within figcaption { opacity: 1; transform: translateY(0); }
.avatar-card:hover .avatar-download, .avatar-card:focus-within .avatar-download { opacity: 1; transform: translateY(0); }

.type-bridge {
  position: relative;
  min-height: 145svh;
  background: var(--blue);
}

.bridge-stage {
  position: sticky;
  top: 0;
  display: grid;
  min-height: 100svh;
  place-content: center;
  overflow: hidden;
  background: linear-gradient(155deg, var(--orange-deep), var(--orange) 70%);
  color: var(--paper);
  text-align: center;
}

.bridge-stage p,
.bridge-stage strong {
  position: relative;
  z-index: 2;
  display: block;
  margin: 0;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(70px, 14vw, 220px);
  letter-spacing: -.09em;
  line-height: .76;
  will-change: transform;
}

.bridge-stage p {
  color: var(--cream);
  transform: translateX(var(--bridge-one-x, 0));
}

.bridge-stage strong {
  color: var(--paper);
  text-shadow: 0 7px 0 #a9ccff, 0 14px 0 var(--blue), 0 21px 0 var(--blue-dark);
  transform: translateX(var(--bridge-two-x, 0)) rotate(var(--bridge-rotate, 0deg));
}

.bridge-cloud {
  position: absolute;
  z-index: 1;
  width: 44vw;
  height: 22vw;
  border-radius: 50%;
  background: var(--cloud-surface);
  box-shadow: inset 0 18px 26px rgb(255 255 255 / .5), inset 0 -28px 36px rgb(164 91 39 / .16);
  filter: drop-shadow(0 26px 26px rgb(87 33 0 / .22));
  opacity: .85;
  will-change: transform;
}

.bridge-cloud::before { top: -35%; left: 18%; width: 50%; height: 110%; }
.bridge-cloud::after { top: -10%; right: -12%; width: 58%; height: 112%; }
.bridge-cloud-left { bottom: -10%; left: -20%; transform: translateX(var(--bridge-cloud-left-x, 0)); }
.bridge-cloud-right { top: -8%; right: -22%; transform: translateX(var(--bridge-cloud-right-x, 0)); }

.commandments {
  padding: clamp(90px, 11vw, 160px) clamp(24px, 8vw, 130px);
  background: linear-gradient(150deg, var(--orange-deep), var(--orange) 70%);
  color: var(--paper);
}

.commandments .small-label { color: var(--cream); }
.commandments h2 { max-width: 900px; text-shadow: 0 8px 0 var(--blue), 0 14px 0 var(--blue-dark); }
.commandments h2 span { color: var(--gold); }
.rule-list { margin-top: clamp(70px, 9vw, 130px); border-top: 2px solid var(--paper); }
.rule-list p { display: grid; grid-template-columns: 90px 1fr; margin: 0; padding: 25px 0; border-bottom: 2px solid var(--paper); font-size: clamp(19px, 2.3vw, 34px); font-weight: 700; }
.rule-list b { color: var(--gold); font-family: 'Archivo Black', sans-serif; }

.token {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 7vw;
  padding: clamp(90px, 10vw, 160px) clamp(24px, 8vw, 130px);
  background: var(--gold);
}

.token-word {
  color: var(--paper);
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(68px, 11vw, 174px);
  letter-spacing: -.09em;
  line-height: .82;
  overflow-wrap: anywhere;
  -webkit-text-stroke: 2px #edf4ff;
  text-shadow: 0 7px 0 #a9ccff, 0 14px 0 var(--blue), 0 21px 0 var(--blue-dark);
  transform: rotate(-3deg);
}

.token-details dl { margin: 0; border-top: 2px solid var(--ink); }
.token-details dl div { display: flex; justify-content: space-between; gap: 24px; padding: 18px 0; border-bottom: 2px solid var(--ink); }
.token-details dt { font-size: 12px; font-weight: 800; letter-spacing: .16em; }
.token-details dd { margin: 0; font-weight: 800; }
.disclaimer { max-width: 440px; margin: 35px 0 0; line-height: 1.5; }

.finale {
  position: relative;
  display: grid;
  min-height: 100svh;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  overflow: hidden;
  padding: 90px clamp(24px, 8vw, 130px) 0;
  background: radial-gradient(circle at 40% 30%, #ffd84e, transparent 42%), linear-gradient(145deg, var(--orange), var(--orange-deep));
  color: var(--paper);
}

.final-inu { position: relative; z-index: 3; align-self: end; width: min(50vw, 680px); filter: drop-shadow(0 30px 30px rgb(90 32 0 / .24)); transform: translateY(var(--mascot-y, 0)) rotate(var(--mascot-rotate, 0deg)); transition: transform 80ms linear; }
.final-copy { position: relative; z-index: 4; align-self: center; padding-bottom: 8vh; }
.final-copy > p { margin: 0 0 18px; font-size: 12px; font-weight: 800; letter-spacing: .22em; }
.final-copy h2 { text-shadow: 0 7px 0 var(--blue), 0 14px 0 var(--blue-dark); }
.final-links { display: flex; align-items: center; gap: 30px; margin-top: 46px; }
.final-pump { display: inline-block; padding: 17px 24px 14px; background: var(--paper); box-shadow: 0 7px 0 var(--blue-dark); color: var(--blue-dark); font-weight: 800; text-decoration: none; transition: transform 160ms ease, box-shadow 160ms ease; }
.final-pump:hover { transform: translateY(-3px); box-shadow: 0 10px 0 var(--blue-dark); }
.final-x { font-size: 13px; font-weight: 800; letter-spacing: .12em; text-underline-offset: 6px; }
.final-cloud { position: absolute; z-index: 1; width: 48vw; height: 25vw; border-radius: 50%; background: var(--cloud-surface); box-shadow: inset 0 20px 28px rgb(255 255 255 / .5), inset 0 -28px 38px rgb(164 91 39 / .16); filter: drop-shadow(0 26px 28px rgb(93 38 0 / .18)); }
.final-cloud::before { top: -30%; left: 20%; width: 50%; height: 100%; }
.final-cloud::after { top: -10%; right: -15%; width: 60%; height: 110%; }
.final-cloud-left { bottom: -13%; left: -27%; }
.final-cloud-right { right: -30%; bottom: -6%; }

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 26px clamp(24px, 6vw, 90px);
  background: var(--blue-dark);
  color: var(--paper);
  font-size: 11px;
  letter-spacing: .1em;
}

.reveal { opacity: 0; transform: translateY(34px); transition: opacity 560ms ease, transform 700ms cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.mask-reveal { clip-path: inset(0 0 100% 0); transform: translateY(28px); transition: clip-path 850ms cubic-bezier(.2,.8,.2,1), transform 850ms cubic-bezier(.2,.8,.2,1); }
.is-visible.mask-reveal, .is-visible .mask-reveal { clip-path: inset(0); transform: translateY(0); }
.belief-lines li, .rule-list p { opacity: 0; transform: translateY(28px); transition: opacity 460ms ease, transform 620ms cubic-bezier(.2,.8,.2,1); }
.belief-lines.is-visible li, .rule-list .is-visible { opacity: 1; transform: translateY(0); }
.belief-lines.is-visible li:nth-child(2), .rule-list p:nth-child(2) { transition-delay: 70ms; }
.belief-lines.is-visible li:nth-child(3), .rule-list p:nth-child(3) { transition-delay: 140ms; }
.belief-lines.is-visible li:nth-child(4), .rule-list p:nth-child(4) { transition-delay: 210ms; }
.rule-list p:nth-child(5) { transition-delay: 280ms; }

.confetti {
  position: fixed;
  z-index: 200;
  width: 9px;
  height: 14px;
  background: var(--paper);
  pointer-events: none;
  animation: confetti 850ms cubic-bezier(.15,.8,.2,1) forwards;
}

.confetti:nth-of-type(3n) { background: var(--gold); }
.confetti:nth-of-type(3n + 1) { background: var(--blue); }
.confetti-star { width: auto; height: auto; background: transparent !important; color: var(--gold); font-size: 18px; font-style: normal; line-height: 1; }
.confetti-paw { width: 11px; height: 9px; border-radius: 55% 55% 48% 48%; background: var(--blue-dark) !important; box-shadow: -5px -5px 0 -2px var(--blue-dark), 0 -7px 0 -2px var(--blue-dark), 5px -5px 0 -2px var(--blue-dark); }

@keyframes title-wobble {
  0%, 100% { scale: 1; }
  35% { scale: 1.018 .985; }
  70% { scale: .993 1.008; }
}

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

@keyframes confetti {
  to { opacity: 0; transform: translate(var(--x), var(--y)) rotate(var(--r)); }
}

@media (max-width: 850px) {
  .site-nav { grid-template-columns: 1fr auto; padding: 13px 16px; }
  .site-nav nav { display: none; }
  .nav-links { gap: 12px; }
  .pump-link { padding: 9px 11px 8px; font-size: 10px; }
  .hero-copy { top: 120px; }
  .logo-3d span { margin: 0 -5px; font-size: clamp(58px, 18vw, 110px); }
  .inu-stage { bottom: 0; width: min(78vw, 520px); }
  .speech { top: 38%; left: 68%; max-width: 150px; font-size: 11px; }
  .hero-cta { right: 18px; bottom: 84px; width: 110px; }
  .cloud { width: 55vw; height: 28vw; }
  .cloud-left { left: -39%; }
  .cloud-right { right: -42%; }
  .manifesto, .beliefs, .token, .finale { grid-template-columns: 1fr; }
  .type-bridge { min-height: 125svh; }
  .bridge-stage p, .bridge-stage strong { font-size: clamp(62px, 18vw, 128px); }
  .manifesto-inu { max-width: 520px; }
  .belief-lines { border-top: 1px solid rgb(255 250 240 / .35); border-left: 0; }
  .collection-heading { grid-template-columns: 1fr; align-items: start; }
  .avatar-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .avatar-card figcaption { opacity: 1; transform: none; }
  .avatar-download { opacity: 1; transform: none; }
  .token-word { font-size: clamp(62px, 18vw, 120px); }
  .finale { padding-top: 120px; text-align: center; }
  .final-copy { grid-row: 1; }
  .final-inu { grid-row: 2; width: min(95vw, 620px); margin-inline: auto; }
  .final-links { justify-content: center; }
  footer { flex-direction: column; }
}

@media (max-width: 520px) {
  .x-link { display: none; }
  .motion-toggle { font-size: 0; }
  .motion-toggle::before { margin-right: 0; }
  .eyebrow { letter-spacing: .13em; }
  .tagline { margin-top: 16px; }
  .logo-3d { margin-top: 12px; }
  .logo-3d span { margin: 0 -3px; font-size: 16.5vw; text-shadow: 0 3px 0 #a9ccff, 0 6px 0 var(--blue), 0 10px 0 var(--blue-dark), 0 16px 16px rgb(5 43 120 / .32); }
  .hero-cta { bottom: 66px; }
  .speech { left: 61%; }
  .manifesto, .belief-title, .commandments, .token { padding-right: 20px; padding-left: 20px; }
  .belief-lines li { grid-template-columns: 55px 1fr; padding: 26px 20px; }
  .rule-list p { grid-template-columns: 54px 1fr; }
  .avatar-collection { padding-right: 10px; padding-left: 10px; }
  .collection-heading { padding-inline: 10px; }
  .avatar-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; }
  .avatar-card figcaption { padding: 22px 7px 7px; font-size: 7px; letter-spacing: .03em; }
  .avatar-card figcaption b { font-size: 9px; }
  .avatar-download { top: 6px; right: 6px; padding: 6px 7px; font-size: 7px; }
  .avatar-download span { font-size: 11px; }
  .final-links { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html:not(.motion-enabled) { scroll-behavior: auto; }
  html:not(.motion-enabled) *, html:not(.motion-enabled) *::before, html:not(.motion-enabled) *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  html:not(.motion-enabled) .hero, html:not(.motion-enabled) .type-bridge { min-height: 100svh; }
  html:not(.motion-enabled) .cloud, html:not(.motion-enabled) .cloud-bank, html:not(.motion-enabled) .bridge-cloud, html:not(.motion-enabled) .bridge-stage p, html:not(.motion-enabled) .bridge-stage strong, html:not(.motion-enabled) .manifesto-inu img, html:not(.motion-enabled) .final-inu { transform: none !important; }
  html:not(.motion-enabled) .cloud-curtain { transform: translateY(7vh) !important; }
  html:not(.motion-enabled) .hero-copy, html:not(.motion-enabled) .inu-stage { transform: translateX(-50%) !important; }
  html:not(.motion-enabled) .speech { opacity: 1 !important; transform: rotate(2deg) !important; }
  html:not(.motion-enabled) .reveal, html:not(.motion-enabled) .mask-reveal, html:not(.motion-enabled) .belief-lines li, html:not(.motion-enabled) .rule-list p { opacity: 1 !important; clip-path: none !important; transform: none !important; }
  html:not(.motion-enabled) .avatar-card { opacity: 1 !important; transform: none !important; }
}
