:root {
  --ink: #07120b;
  --ink-soft: #102116;
  --paper: #f5f1d8;
  --paper-deep: #e7e0bb;
  --lime: #98ee43;
  --lime-dark: #4d8c19;
  --yellow: #ffd31a;
  --orange: #ff8b12;
  --line: rgba(7, 18, 11, 0.25);
  --white: #fffef4;
  --max: 1240px;
  --display: "Bangers", Impact, sans-serif;
  --body: "Fredoka", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  overflow-x: hidden;
  cursor: url("assets/cursor-dollar.png") 11 3, auto;
}

body::selection {
  background: var(--lime);
  color: var(--ink);
}

a,
button,
summary {
  cursor: url("assets/cursor-dollar.png") 11 3, pointer;
}

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

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

button {
  font: inherit;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 90;
  opacity: 0.055;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.cursor-ring {
  position: fixed;
  z-index: 110;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 2px solid var(--lime);
  border-radius: 50%;
  color: var(--lime);
  background: rgba(7, 18, 11, 0.75);
  font-family: var(--display);
  font-size: 22px;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: width 160ms ease, height 160ms ease, opacity 160ms ease, background 160ms ease;
  backdrop-filter: blur(5px);
}

.cursor-ring.is-visible {
  opacity: 1;
}

.cursor-ring.is-hovering {
  width: 52px;
  height: 52px;
  color: var(--ink);
  background: var(--lime);
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  min-height: 86px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding: 18px clamp(22px, 4vw, 64px);
  color: var(--paper);
  border-bottom: 1px solid rgba(245, 241, 216, 0.18);
}

.wordmark {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 31px;
  letter-spacing: 1px;
}

.wordmark-coin {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--yellow);
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-header nav a {
  position: relative;
}

.site-header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 2px;
  background: var(--lime);
  transition: right 180ms ease;
}

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

.header-ticket {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  color: var(--ink);
  background: var(--lime);
  border: 2px solid var(--lime);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.08em;
  box-shadow: 5px 5px 0 var(--yellow);
  transform: rotate(-1deg);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.header-ticket:hover {
  transform: rotate(1deg) translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--yellow);
}

.hero {
  position: relative;
  min-height: 1080px;
  padding: 130px clamp(22px, 4vw, 64px) 84px;
  color: var(--paper);
  background:
    radial-gradient(circle at 50% 38%, rgba(152, 238, 67, 0.19), transparent 34%),
    linear-gradient(140deg, #07120b 0%, #0d2314 46%, #07120b 100%);
  isolation: isolate;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(245, 241, 216, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 241, 216, 0.22) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, transparent 4%, black 24%, black 76%, transparent 100%);
}

.hero::before {
  content: "$";
  position: absolute;
  z-index: -2;
  top: 130px;
  left: 50%;
  color: transparent;
  font-family: var(--display);
  font-size: min(57vw, 780px);
  line-height: 0.9;
  -webkit-text-stroke: 2px rgba(152, 238, 67, 0.065);
  transform: translateX(-50%) rotate(-7deg);
}

.hero-title-wrap {
  position: relative;
  z-index: 4;
  width: min(1100px, 100%);
  margin: 0 auto;
  text-align: center;
}

.hero-kicker,
.section-index {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-kicker {
  color: var(--lime);
}

.hero h1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 28px 0 0;
  font-family: var(--display);
  font-size: clamp(110px, 18vw, 300px);
  font-weight: 400;
  line-height: 0.72;
  letter-spacing: 0.015em;
  text-shadow: 7px 7px 0 rgba(0, 0, 0, 0.36);
}

.hero h1 span:first-child {
  color: var(--paper);
}

.hero h1 span:last-child {
  color: var(--lime);
}

.hero-line {
  margin: 32px 0 0;
  color: rgba(245, 241, 216, 0.68);
  font-size: clamp(16px, 2vw, 23px);
  font-weight: 500;
}

.vault {
  position: absolute;
  z-index: 8;
  top: 248px;
  left: 50%;
  width: clamp(390px, 45vw, 650px);
  aspect-ratio: 1;
  transform: translateX(-50%);
}

.vault-rim,
.vault-door {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.vault-rim {
  border: clamp(13px, 1.4vw, 22px) solid var(--paper-deep);
  background: repeating-conic-gradient(from 0deg, #283729 0deg 8deg, #132317 8deg 16deg);
  box-shadow:
    0 0 0 7px var(--ink),
    0 0 0 11px var(--lime),
    0 30px 70px rgba(0, 0, 0, 0.48);
  animation: rim-turn 32s linear infinite;
}

.vault-door {
  inset: 8.5%;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 35%, #fffbe7 0 32%, #e6ddaf 70%, #bdb285 100%);
  border: 5px solid var(--ink);
}

.vault-door::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: inset 0 -32px 70px rgba(7, 18, 11, 0.16);
  pointer-events: none;
}

.vault img {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: -3%;
  width: 121%;
  max-width: none;
  transform: translateX(-50%);
  filter: drop-shadow(0 16px 10px rgba(7, 18, 11, 0.24));
}

.vault-bolt {
  position: absolute;
  z-index: 5;
  width: 17px;
  height: 17px;
  border: 4px solid var(--ink);
  border-radius: 50%;
  background: var(--lime);
}

.bolt-a { top: 6%; left: 48%; }
.bolt-b { top: 48%; right: 6%; }
.bolt-c { bottom: 6%; left: 48%; }
.bolt-d { top: 48%; left: 6%; }

.orbit {
  position: absolute;
  z-index: 9;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--ink);
  background: var(--yellow);
  border: 4px solid var(--ink);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 34px;
  box-shadow: 4px 5px 0 var(--lime-dark);
}

.orbit-one { top: 8%; right: -2%; transform: rotate(12deg); }
.orbit-two { bottom: 12%; left: -3%; transform: rotate(-14deg); }
.orbit-three { bottom: -2%; right: 17%; transform: rotate(8deg); }

.hero-float {
  position: absolute;
  z-index: 2;
  width: clamp(240px, 25vw, 380px);
  filter: drop-shadow(0 18px 15px rgba(0, 0, 0, 0.45));
  pointer-events: none;
}

.float-left {
  top: 410px;
  left: -60px;
  transform: rotate(-10deg);
}

.float-right {
  top: 430px;
  right: -55px;
  transform: rotate(8deg);
}

.hero-stamp {
  position: absolute;
  z-index: 6;
  display: grid;
  place-items: center;
  width: 105px;
  height: 105px;
  color: var(--lime);
  border: 3px solid currentColor;
  border-radius: 50%;
  font-family: var(--display);
  font-size: 19px;
  line-height: 0.9;
  letter-spacing: 0.08em;
  text-align: center;
  opacity: 0.72;
}

.stamp-one {
  top: 200px;
  left: clamp(22px, 8vw, 130px);
  transform: rotate(-14deg);
}

.stamp-two {
  top: 220px;
  right: clamp(22px, 8vw, 130px);
  color: var(--yellow);
  transform: rotate(12deg);
}

.cash-links {
  position: absolute;
  z-index: 12;
  left: 50%;
  bottom: 190px;
  width: min(1080px, calc(100% - 44px));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  transform: translateX(-50%);
}

.cash-links a {
  position: relative;
  min-height: 105px;
  display: grid;
  align-content: center;
  padding: 18px 47px 18px 22px;
  color: var(--ink);
  background: var(--lime);
  border: 3px solid var(--ink);
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.22), 6px 7px 0 var(--yellow);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.cash-links a::before,
.cash-links a::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border: 3px solid rgba(7, 18, 11, 0.45);
  border-radius: 50%;
}

.cash-links a::before { top: 7px; left: 7px; }
.cash-links a::after { right: 7px; bottom: 7px; }

.cash-links a:nth-child(even) {
  transform: rotate(1.2deg);
}

.cash-links a:nth-child(odd) {
  transform: rotate(-1.2deg);
}

.cash-links a:hover {
  z-index: 2;
  background: var(--yellow);
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.28), 10px 12px 0 var(--lime-dark);
  transform: translateY(-8px) rotate(0deg);
}

.cash-links small {
  display: block;
  margin-bottom: 4px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.cash-links strong {
  font-family: var(--display);
  font-size: clamp(27px, 3vw, 40px);
  font-weight: 400;
  line-height: 0.9;
}

.cash-links a > span {
  position: absolute;
  top: 50%;
  right: 21px;
  font-size: 22px;
  transform: translateY(-50%);
}

.contract-check {
  position: absolute;
  z-index: 13;
  left: 50%;
  bottom: 54px;
  width: min(840px, calc(100% - 44px));
  min-height: 100px;
  display: grid;
  grid-template-columns: 0.75fr 1.8fr auto;
  align-items: center;
  gap: 20px;
  padding: 16px 18px 16px 28px;
  color: var(--ink);
  background: var(--paper);
  border: 3px solid var(--ink);
  box-shadow: 8px 9px 0 rgba(152, 238, 67, 0.7);
  transform: translateX(-50%) rotate(-0.6deg);
  overflow: hidden;
}

.check-edge {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 12px;
  background: repeating-linear-gradient(to bottom, var(--lime) 0 12px, var(--ink) 12px 18px);
}

.check-label span,
.check-address span {
  display: block;
  margin-bottom: 5px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.check-label strong {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
}

.check-address {
  min-width: 0;
  padding-left: 20px;
  border-left: 1px dashed var(--line);
}

.check-address code {
  display: block;
  max-width: 100%;
  overflow: hidden;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 14px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contract-check button {
  min-width: 130px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 15px;
  color: var(--paper);
  background: var(--ink);
  border: 0;
  font-weight: 800;
  letter-spacing: 0.06em;
  transition: background 150ms ease, color 150ms ease, transform 150ms ease;
}

.contract-check button:hover {
  color: var(--ink);
  background: var(--lime);
  transform: translateY(-2px);
}

.copy-dollar {
  font-family: var(--display);
  font-size: 24px;
}

.bank-tape {
  position: relative;
  z-index: 5;
  overflow: hidden;
  color: var(--ink);
  background: var(--yellow);
  border-block: 4px solid var(--ink);
  transform: rotate(-0.6deg) scale(1.02);
}

.bank-tape > div {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 16px 0;
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: 0.05em;
  animation: tape-run 24s linear infinite;
}

.bank-tape b {
  color: var(--lime-dark);
}

.section-shell {
  width: min(var(--max), calc(100% - 44px));
  margin-inline: auto;
}

.statement {
  padding-block: 130px 150px;
}

.statement-head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: end;
  gap: 30px;
  margin-bottom: 70px;
}

.statement-head .section-index {
  grid-column: 1 / -1;
  color: var(--lime-dark);
}

.statement h2,
.code-section h2,
.faq h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(72px, 10vw, 150px);
  font-weight: 400;
  line-height: 0.77;
  letter-spacing: 0.02em;
}

.statement h2 span,
.code-section h2 span,
.faq h2 span {
  color: var(--lime-dark);
}

.statement-intro {
  max-width: 460px;
  justify-self: end;
  margin: 0 0 8px;
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 600;
  line-height: 1.35;
}

.statement-body {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 55px;
  align-items: center;
}

.ledger {
  position: relative;
  padding: 34px;
  background:
    repeating-linear-gradient(to bottom, transparent 0 42px, rgba(7, 18, 11, 0.09) 42px 43px),
    var(--white);
  border: 3px solid var(--ink);
  box-shadow: 13px 15px 0 var(--lime);
  transform: rotate(-1deg);
}

.ledger::before {
  content: "";
  position: absolute;
  inset: 13px;
  border: 1px solid rgba(7, 18, 11, 0.25);
  pointer-events: none;
}

.ledger-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 3px solid var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.ledger-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px dashed rgba(7, 18, 11, 0.45);
  font-size: 13px;
}

.ledger-row span {
  font-weight: 700;
  letter-spacing: 0.07em;
}

.ledger-row strong {
  font-size: 17px;
}

.ledger-story {
  padding: 22px 0 8px;
  font-size: 18px;
  line-height: 1.5;
}

.ledger-story p {
  margin: 0 0 15px;
}

.ledger-story em {
  color: var(--lime-dark);
  font-style: normal;
  font-weight: 700;
}

.ledger-signature {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  border-top: 3px solid var(--ink);
}

.ledger-signature span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.ledger-signature strong {
  font-family: var(--display);
  font-size: 34px;
  font-weight: 400;
  transform: rotate(-4deg);
}

.ledger > small {
  display: block;
  margin-top: 20px;
  opacity: 0.55;
}

.statement-art {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: end center;
}

.statement-art::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 76%;
  aspect-ratio: 1;
  border: 4px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 17px 18px 0 var(--lime-dark);
}

.statement-art img {
  width: min(650px, 110%);
  max-width: none;
  filter: drop-shadow(0 18px 11px rgba(7, 18, 11, 0.25));
}

.receipt-note {
  position: absolute;
  z-index: 4;
  top: 45px;
  left: -12px;
  padding: 16px 22px;
  background: var(--white);
  border: 3px solid var(--ink);
  font-family: var(--display);
  font-size: 27px;
  line-height: 0.9;
  box-shadow: 7px 8px 0 var(--lime);
  transform: rotate(-7deg);
}

.statement-sticker {
  position: absolute;
  right: -6px;
  bottom: 65px;
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--ink);
  border: 5px solid var(--lime);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 21px;
  line-height: 0.9;
  text-align: center;
  transform: rotate(9deg);
}

.code-section {
  position: relative;
  padding-block: 130px 155px;
  color: var(--paper);
  background:
    linear-gradient(135deg, transparent 0 48%, rgba(152, 238, 67, 0.05) 48% 52%, transparent 52%),
    var(--ink-soft);
  background-size: 80px 80px;
  border-block: 5px solid var(--ink);
  overflow: hidden;
}

.code-section::before {
  content: "DUKYRICH";
  position: absolute;
  top: 40%;
  left: -2%;
  color: transparent;
  font-family: var(--display);
  font-size: 27vw;
  white-space: nowrap;
  -webkit-text-stroke: 2px rgba(245, 241, 216, 0.035);
  transform: rotate(-7deg);
}

.code-inner {
  position: relative;
  z-index: 2;
}

.code-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 72px;
}

.code-title .section-index {
  order: 2;
  color: var(--lime);
  margin-bottom: 14px;
}

.code-section h2 span {
  color: var(--lime);
}

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

.code-card {
  position: relative;
  min-height: 320px;
  padding: 28px;
  color: var(--ink);
  background: var(--paper);
  border: 3px solid var(--ink);
  overflow: hidden;
  transition: transform 180ms ease, background 180ms ease;
}

.code-card:nth-child(2) {
  background: var(--lime);
  transform: translateY(26px);
}

.code-card:nth-child(3) {
  background: var(--yellow);
}

.code-card:hover {
  z-index: 2;
  background: var(--white);
  transform: translateY(-10px) rotate(-1deg);
}

.code-card:nth-child(2):hover {
  transform: translateY(16px) rotate(1deg);
}

.code-number {
  padding-bottom: 18px;
  border-bottom: 2px solid var(--ink);
  font-family: var(--display);
  font-size: 30px;
}

.code-card h3 {
  margin: 45px 0 18px;
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 55px);
  font-weight: 400;
  line-height: 0.88;
}

.code-card p {
  max-width: 300px;
  margin: 0;
  font-size: 17px;
  line-height: 1.45;
}

.card-mark {
  position: absolute;
  right: -15px;
  bottom: -34px;
  color: rgba(7, 18, 11, 0.08);
  font-family: var(--display);
  font-size: 170px;
  line-height: 1;
}

.gallery-strip {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr 0.9fr;
  gap: 22px;
  align-items: end;
  margin-top: 125px;
}

.gallery-card {
  position: relative;
  min-height: 390px;
  display: grid;
  align-content: end;
  margin: 0;
  padding: 20px;
  color: var(--ink);
  background: var(--paper);
  border: 4px solid var(--ink);
  box-shadow: 10px 11px 0 var(--lime);
}

.gallery-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px dashed rgba(7, 18, 11, 0.35);
}

.gallery-card img {
  position: absolute;
  left: 50%;
  bottom: 42px;
  width: 124%;
  max-width: none;
  transform: translateX(-50%);
  filter: drop-shadow(0 13px 8px rgba(0, 0, 0, 0.25));
}

.card-bag { transform: rotate(-3deg); }
.card-pile { min-height: 500px; background: var(--yellow); transform: translateY(-24px); }
.card-stack { transform: rotate(3deg); }

.gallery-card figcaption {
  position: relative;
  z-index: 3;
  padding-top: 12px;
  border-top: 3px solid var(--ink);
  font-family: var(--display);
  font-size: 31px;
  letter-spacing: 0.04em;
}

.faq {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  padding-block: 140px;
}

.faq-aside {
  position: sticky;
  top: 30px;
  align-self: start;
}

.faq .section-index {
  margin-bottom: 28px;
  color: var(--lime-dark);
}

.faq-aside > p:last-of-type {
  max-width: 320px;
  margin-top: 28px;
  font-size: 19px;
  line-height: 1.45;
}

.faq-seal {
  width: 130px;
  height: 130px;
  display: grid;
  place-items: center;
  margin-top: 48px;
  color: var(--paper);
  background: var(--lime-dark);
  border: 4px solid var(--ink);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 43px;
  line-height: 0.7;
  text-align: center;
  box-shadow: 7px 8px 0 var(--yellow);
  transform: rotate(-9deg);
}

.faq-seal small {
  font-family: var(--body);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.faq-list {
  border-top: 4px solid var(--ink);
}

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

.faq-list summary {
  list-style: none;
  display: grid;
  grid-template-columns: 54px 1fr 42px;
  align-items: center;
  gap: 18px;
  min-height: 110px;
  padding: 16px 6px;
}

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

.faq-no {
  color: var(--lime-dark);
  font-family: var(--display);
  font-size: 27px;
}

.faq-list summary strong {
  font-family: var(--display);
  font-size: clamp(31px, 3.8vw, 51px);
  font-weight: 400;
  line-height: 0.95;
}

.faq-toggle {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 50%;
  font-size: 27px;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease;
}

.faq-list details[open] .faq-toggle {
  color: var(--ink);
  background: var(--lime);
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 680px;
  margin: -6px 0 0 72px;
  padding: 0 60px 32px 0;
  font-size: 18px;
  line-height: 1.55;
}

.site-footer {
  color: var(--paper);
  background: var(--ink);
  border-top: 5px solid var(--lime);
}

.footer-top {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr auto;
  gap: 60px;
  align-items: center;
  padding-block: 72px;
}

.footer-brand strong {
  font-family: var(--display);
  font-size: clamp(60px, 7vw, 105px);
  font-weight: 400;
  line-height: 0.8;
}

.footer-brand strong span {
  color: var(--lime);
}

.footer-brand p {
  margin: 18px 0 0;
  color: var(--yellow);
  font-weight: 700;
  letter-spacing: 0.09em;
}

.disclaimer {
  padding-left: 34px;
  border-left: 1px solid rgba(245, 241, 216, 0.27);
}

.disclaimer span {
  color: var(--lime);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.disclaimer p {
  max-width: 650px;
  margin: 13px 0 0;
  color: rgba(245, 241, 216, 0.65);
  font-size: 14px;
  line-height: 1.55;
}

.footer-up {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
  border: 3px solid var(--paper);
  border-radius: 50%;
  font-size: 28px;
  transition: transform 180ms ease;
}

.footer-up:hover {
  transform: translateY(-8px) rotate(8deg);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding: 17px clamp(22px, 4vw, 64px);
  color: rgba(245, 241, 216, 0.55);
  border-top: 1px solid rgba(245, 241, 216, 0.18);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.toast {
  position: fixed;
  z-index: 120;
  left: 50%;
  bottom: 28px;
  padding: 14px 22px;
  color: var(--ink);
  background: var(--lime);
  border: 3px solid var(--ink);
  box-shadow: 7px 8px 0 var(--yellow);
  font-weight: 800;
  letter-spacing: 0.06em;
  opacity: 0;
  transform: translate(-50%, 30px) rotate(-1deg);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes rim-turn {
  to { transform: rotate(360deg); }
}

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

@media (max-width: 1080px) {
  .hero {
    min-height: 1120px;
  }

  .hero h1 {
    font-size: clamp(105px, 20vw, 205px);
  }

  .vault {
    top: 290px;
    width: clamp(400px, 59vw, 590px);
  }

  .hero-float {
    width: 280px;
  }

  .float-left { top: 460px; left: -95px; }
  .float-right { top: 490px; right: -100px; }

  .cash-links {
    grid-template-columns: repeat(2, 1fr);
    bottom: 210px;
  }

  .cash-links a {
    min-height: 86px;
  }

  .contract-check {
    bottom: 52px;
  }

  .statement-body {
    grid-template-columns: 1fr;
  }

  .statement-art {
    min-height: 680px;
  }

  .statement-art img {
    width: min(710px, 92vw);
  }

  .code-cards {
    grid-template-columns: 1fr;
  }

  .code-card,
  .code-card:nth-child(2) {
    min-height: 260px;
    transform: none;
  }

  .gallery-strip {
    margin-top: 90px;
  }

  .faq {
    gap: 40px;
  }
}

@media (max-width: 760px) {
  .cursor-ring {
    display: none;
  }

  .site-header {
    position: absolute;
    grid-template-columns: 1fr auto;
    min-height: 74px;
    padding: 15px 20px;
  }

  .wordmark {
    font-size: 26px;
  }

  .wordmark-coin {
    width: 32px;
    height: 32px;
  }

  .site-header nav {
    display: none;
  }

  .header-ticket {
    padding: 10px 11px;
    font-size: 10px;
    box-shadow: 4px 4px 0 var(--yellow);
  }

  .hero {
    min-height: 1160px;
    padding: 112px 20px 70px;
  }

  .hero-kicker {
    font-size: 9px;
  }

  .hero h1 {
    display: block;
    margin-top: 22px;
    font-size: clamp(92px, 30vw, 150px);
    line-height: 0.64;
  }

  .hero h1 span {
    display: block;
  }

  .hero-line {
    margin-top: 28px;
    font-size: 16px;
  }

  .vault {
    top: 345px;
    width: min(410px, 92vw);
  }

  .hero-float {
    width: 190px;
    opacity: 0.8;
  }

  .float-left { top: 535px; left: -80px; }
  .float-right { top: 570px; right: -86px; }

  .hero-stamp {
    display: none;
  }

  .orbit {
    width: 45px;
    height: 45px;
    font-size: 27px;
  }

  .cash-links {
    bottom: 250px;
    width: calc(100% - 32px);
    gap: 9px;
  }

  .cash-links a {
    min-height: 78px;
    padding: 12px 33px 12px 15px;
    box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.22), 4px 5px 0 var(--yellow);
  }

  .cash-links a::before,
  .cash-links a::after {
    width: 19px;
    height: 19px;
    border-width: 2px;
  }

  .cash-links small {
    font-size: 8px;
  }

  .cash-links strong {
    font-size: 26px;
  }

  .cash-links a > span {
    right: 13px;
    font-size: 17px;
  }

  .contract-check {
    bottom: 45px;
    width: calc(100% - 32px);
    min-height: 168px;
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 16px 15px 16px 24px;
  }

  .check-label {
    display: none;
  }

  .check-address {
    padding-left: 0;
    border-left: 0;
  }

  .check-address code {
    max-width: 220px;
    font-size: 12px;
  }

  .contract-check button {
    min-width: 96px;
    padding: 12px 10px;
  }

  .copy-text {
    font-size: 11px;
  }

  .bank-tape > div {
    padding: 12px 0;
    font-size: 19px;
  }

  .section-shell {
    width: min(100% - 32px, var(--max));
  }

  .statement {
    padding-block: 90px 110px;
  }

  .statement-head {
    display: block;
    margin-bottom: 50px;
  }

  .statement-head .section-index {
    margin-bottom: 23px;
  }

  .statement h2,
  .code-section h2,
  .faq h2 {
    font-size: clamp(65px, 22vw, 105px);
  }

  .statement-intro {
    margin-top: 28px;
    font-size: 18px;
  }

  .ledger {
    padding: 25px 20px;
    box-shadow: 8px 9px 0 var(--lime);
  }

  .ledger-top {
    font-size: 8px;
  }

  .ledger-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .ledger-story {
    font-size: 16px;
  }

  .ledger-signature {
    display: block;
  }

  .ledger-signature strong {
    display: block;
    margin-top: 12px;
  }

  .statement-art {
    min-height: 460px;
  }

  .statement-art::before {
    width: 88%;
  }

  .statement-art img {
    width: 130%;
  }

  .receipt-note {
    top: 20px;
    left: -2px;
    padding: 12px 15px;
    font-size: 20px;
  }

  .statement-sticker {
    right: 0;
    bottom: 25px;
    width: 88px;
    height: 88px;
    font-size: 17px;
  }

  .code-section {
    padding-block: 90px 110px;
  }

  .code-title {
    display: block;
    margin-bottom: 50px;
  }

  .code-title .section-index {
    margin-bottom: 25px;
  }

  .code-card {
    min-height: 240px;
    padding: 23px;
  }

  .code-card h3 {
    margin-top: 35px;
    font-size: 44px;
  }

  .gallery-strip {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .gallery-card,
  .gallery-card.card-pile,
  .gallery-card.card-bag,
  .gallery-card.card-stack {
    min-height: 390px;
    transform: none;
  }

  .gallery-card img {
    width: 115%;
  }

  .faq {
    display: block;
    padding-block: 95px;
  }

  .faq-aside {
    position: static;
    margin-bottom: 55px;
  }

  .faq-seal {
    width: 100px;
    height: 100px;
    margin-top: 32px;
    font-size: 35px;
  }

  .faq-list summary {
    grid-template-columns: 38px 1fr 34px;
    gap: 10px;
    min-height: 92px;
  }

  .faq-no {
    font-size: 21px;
  }

  .faq-list summary strong {
    font-size: 30px;
  }

  .faq-toggle {
    width: 32px;
    height: 32px;
    font-size: 23px;
  }

  .faq-list details p {
    margin-left: 48px;
    padding-right: 10px;
    font-size: 16px;
  }

  .footer-top {
    grid-template-columns: 1fr auto;
    gap: 38px 15px;
    padding-block: 60px;
  }

  .disclaimer {
    grid-column: 1 / -1;
    grid-row: 2;
    padding: 25px 0 0;
    border-top: 1px solid rgba(245, 241, 216, 0.27);
    border-left: 0;
  }

  .footer-up {
    width: 52px;
    height: 52px;
  }

  .footer-bottom {
    display: grid;
    gap: 8px;
    padding: 18px 20px;
  }
}

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