:root {
  --ink: #172033;
  --ink-2: #24304a;
  --muted: #667085;
  --paper: #fffaf0;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-solid: #ffffff;
  --cream: #fff3d7;
  --yellow: #ffd84d;
  --blue: #244fc8;
  --blue-dark: #132a72;
  --red: #df3344;
  --green: #15835f;
  --line: rgba(23, 32, 51, 0.11);
  --line-strong: rgba(23, 32, 51, 0.18);
  --shadow: 0 24px 70px rgba(23, 32, 51, 0.14);
  --shadow-soft: 0 12px 38px rgba(23, 32, 51, 0.09);
  --radius: 24px;
  --radius-lg: 34px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.58;
  background:
    radial-gradient(circle at 7% 5%, rgba(255, 216, 77, 0.58), transparent 30rem),
    radial-gradient(circle at 92% 2%, rgba(36, 79, 200, 0.20), transparent 34rem),
    radial-gradient(circle at 83% 78%, rgba(223, 51, 68, 0.15), transparent 30rem),
    linear-gradient(180deg, #fff5df 0%, #fffaf2 46%, #f7fbff 100%);
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(135deg, rgba(36, 79, 200, 0.065) 25%, transparent 25%),
    linear-gradient(225deg, rgba(223, 51, 68, 0.05) 25%, transparent 25%);
  background-size: 44px 44px;
  opacity: 0.18;
  mask-image: linear-gradient(to bottom, black 0%, transparent 68%);
}

a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img, svg { max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.88rem clamp(1rem, 4vw, 2rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(255, 250, 241, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 30px rgba(23, 32, 51, 0.06);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.78rem;
  color: var(--ink);
  text-decoration: none;
  min-width: 0;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 16px;
  color: #fff;
  font-weight: 950;
  background: linear-gradient(135deg, var(--yellow) 0 35%, var(--blue) 35% 68%, var(--red) 68% 100%);
  border: 3px solid rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 34px rgba(23, 32, 51, 0.16);
}
.brand strong { display: block; line-height: 1.08; font-size: 0.98rem; }
.brand small { display: block; margin-top: 0.08rem; color: var(--muted); font-size: 0.78rem; white-space: nowrap; }
.site-nav { display: flex; align-items: center; gap: 0.22rem; margin-left: auto; }
.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.55rem 0.78rem;
  border-radius: 999px;
  color: #586273;
  font-weight: 760;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.site-nav a:hover { background: rgba(255, 255, 255, 0.9); color: var(--ink); transform: translateY(-1px); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.18rem;
  padding: 0.22rem;
  border: 1px solid rgba(23, 32, 51, 0.10);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 10px 26px rgba(23, 32, 51, 0.07);
}
.language-switcher button {
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  padding: 0.38rem 0.62rem;
  color: #596476;
  background: transparent;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.01em;
}
.language-switcher button.active {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 8px 18px rgba(36, 79, 200, 0.20);
}
.language-switcher button:focus-visible {
  outline: 3px solid rgba(36, 79, 200, 0.24);
  outline-offset: 2px;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  border-radius: 14px;
  padding: 0.62rem 0.82rem;
  box-shadow: var(--shadow-soft);
}

.section, .hero {
  position: relative;
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  padding: clamp(3rem, 6vw, 5.7rem) 0;
}
.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  gap: clamp(1.4rem, 4vw, 4rem);
  align-items: center;
}
.hero {
  min-height: 80vh;
  display: grid;
  align-items: center;
}
.hero-copy h1, .section-heading h2, .section h1 {
  margin: 0 0 1rem;
  letter-spacing: -0.055em;
  line-height: 0.98;
}
.hero-copy h1 {
  max-width: 850px;
  font-size: clamp(2.7rem, 7vw, 6rem);
  background: linear-gradient(90deg, #111827 0%, var(--blue) 62%, var(--red) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead {
  max-width: 66ch;
  margin: 0;
  color: #4f5966;
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
}
.eyebrow {
  margin: 0 0 0.68rem;
  color: var(--red);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.78rem; margin: 1.8rem 0 1.25rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.44rem;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  padding: 0.84rem 1.16rem;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: linear-gradient(135deg, var(--blue), var(--blue-dark)); color: #fff; box-shadow: 0 18px 42px rgba(36, 79, 200, 0.28); }
.button.secondary { background: rgba(255, 255, 255, 0.92); color: var(--ink); border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.button.danger { background: #fff0f0; color: #9d1818; border: 1px solid #ffc7c7; }
.button.small { min-height: 38px; padding: 0.58rem 0.82rem; font-size: 0.84rem; }
.button.wide { width: 100%; }
.button[disabled] { cursor: not-allowed; opacity: 0.52; transform: none; box-shadow: none; }
.trust-strip { display: flex; flex-wrap: wrap; gap: 0.62rem; }
.trust-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  padding: 0.46rem 0.72rem;
  background: rgba(255, 255, 255, 0.72);
  color: #596476;
  font-size: 0.84rem;
  font-weight: 760;
  box-shadow: 0 10px 28px rgba(23, 32, 51, 0.06);
}
.trust-strip span::before { content: "✓"; margin-right: 0.38rem; color: var(--green); font-weight: 950; }

.passport-card {
  position: relative;
  min-height: 588px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.91), rgba(255,248,230,0.84)),
    linear-gradient(135deg, rgba(255,216,77,0.96), rgba(36,79,200,0.72) 52%, rgba(223,51,68,0.76));
  box-shadow: 0 32px 90px rgba(23, 32, 51, 0.18);
}
.passport-card::before,
.passport-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}
.passport-card::before { right: -82px; bottom: -80px; width: 250px; height: 250px; background: rgba(223, 51, 68, 0.17); }
.passport-card::after { left: -70px; top: 72px; width: 190px; height: 190px; background: rgba(36, 79, 200, 0.18); }
.passport-topline {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.52rem 0.8rem;
  background: #111827;
  color: #fff;
  font-weight: 920;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.18);
}
.passport-topline::before { content: "✦"; margin-right: 0.42rem; color: var(--yellow); }
.passport-card h2 { position: relative; z-index: 2; margin: 1.08rem 0 0.22rem; font-size: clamp(1.75rem, 3vw, 2.3rem); line-height: 1.02; letter-spacing: -0.045em; }
.passport-card p { position: relative; z-index: 2; margin: 0; color: #5d6674; }
.hero-pass-figure {
  position: relative;
  z-index: 1;
  margin: 1rem 0 0;
}
.hero-pass-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.84);
  background: #fff;
  box-shadow: 0 18px 40px rgba(23, 32, 51, 0.12);
}
.passport-card-copy {
  position: relative;
  z-index: 2;
  margin-top: 1rem;
}
.token-meta { position: relative; z-index: 2; display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 1rem; }
.token-meta span { border: 1px solid var(--line); border-radius: 999px; padding: 0.46rem 0.68rem; background: rgba(255, 255, 255, 0.72); color: #4c5666; font-size: 0.84rem; font-weight: 750; }
.mascot-scene {
  position: relative;
  z-index: 1;
  height: 315px;
  margin-top: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 28px;
  background:
    radial-gradient(circle at 80% 18%, rgba(255,216,77,0.88), transparent 5rem),
    linear-gradient(180deg, rgba(36,79,200,0.12), transparent 52%),
    repeating-linear-gradient(90deg, rgba(36,79,200,0.08) 0 2px, transparent 2px 22px),
    linear-gradient(135deg, #fffaf0, #f7fbff);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.7);
}
.mascot-scene::before {
  content: "";
  position: absolute;
  left: -14%;
  right: -14%;
  bottom: -44px;
  height: 120px;
  background: linear-gradient(90deg, var(--yellow) 0 33.3%, var(--blue) 33.3% 66.6%, var(--red) 66.6% 100%);
  transform: rotate(-4deg);
  opacity: 0.88;
}
.sun { position: absolute; right: 36px; top: 30px; width: 84px; height: 84px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 0 14px rgba(255,216,77,0.20); }
.mascot { position: absolute; bottom: 20px; width: 130px; height: 220px; filter: drop-shadow(0 18px 18px rgba(23,32,51,0.18)); }
.mascot span { position: absolute; display: block; }
.mascot-female { left: 62px; }
.mascot-baseball { right: 62px; }
.hair { left: 8px; top: 0; width: 114px; height: 130px; border-radius: 54px 54px 44px 44px; background: #251f3d; }
.face { left: 22px; top: 34px; width: 86px; height: 86px; border-radius: 50%; background: #f2b790; box-shadow: inset 0 -8px rgba(0,0,0,0.05); }
.dress { left: 2px; bottom: 0; width: 126px; height: 120px; border-radius: 44px 44px 20px 20px; background: linear-gradient(180deg, var(--yellow) 0 33%, var(--blue) 33% 66%, var(--red) 66%); }
.cap { left: 16px; top: 12px; width: 100px; height: 44px; border-radius: 44px 44px 10px 10px; background: var(--blue); }
.cap::after { content: ""; position: absolute; right: -28px; bottom: 0; width: 50px; height: 14px; border-radius: 999px; background: var(--yellow); }
.shirt { left: 4px; bottom: 0; width: 122px; height: 120px; border: 6px solid var(--red); border-radius: 36px 36px 18px 18px; background: linear-gradient(135deg, #fff, #ffe9d4); }

.notice-card {
  width: min(100% - 2rem, var(--max));
  margin: -1.35rem auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.44rem;
  padding: 1rem 1.14rem;
  border: 1px solid rgba(245, 199, 82, 0.62);
  border-radius: 20px;
  background: rgba(255, 245, 210, 0.82);
  color: #5d4800;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}
.partner-proof {
  width: min(100% - 2rem, var(--max));
  margin: 1rem auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}
.partner-proof article {
  display: flex;
  flex-direction: column;
  gap: 0.52rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 22px;
  padding: 1.15rem 1.2rem;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}
.partner-proof strong { display: block; color: var(--blue); font-size: clamp(1.45rem, 3vw, 2.2rem); line-height: 1; letter-spacing: -0.045em; }
.partner-proof span { color: var(--muted); font-size: 0.95rem; line-height: 1.35; }

.alt-section {
  width: 100%;
  max-width: none;
  padding-inline: max(1rem, calc((100% - var(--max)) / 2));
  border-block: 1px solid rgba(23, 32, 51, 0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.58), rgba(255,255,255,0.34));
}
.section-heading { max-width: 760px; margin-bottom: 1.9rem; }
.section-heading h2, .section h1 { font-size: clamp(2rem, 4.6vw, 4.08rem); }
.section-heading p, .section > p { color: var(--muted); }
.split-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; max-width: none; }
.split-heading > p { max-width: 430px; margin: 0 0 0.8rem; }

.source-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: -0.5rem 0 1.4rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(36, 79, 200, 0.16);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,255,255,0.92), rgba(239,246,255,0.92));
  box-shadow: var(--shadow-soft);
}
.source-card strong { display: block; margin-bottom: 0.2rem; color: var(--blue-dark); font-size: 1rem; }
.source-card p { margin: 0; color: var(--muted); max-width: 76ch; font-size: 0.94rem; }

.steps, .card-grid, .stats-grid { display: grid; gap: 1rem; }
.steps { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.stats-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.steps article, .org-card, .partner-card, .panel, .stat-card, .admin-card, details {
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}
.steps article, .org-card, .partner-card, .mini-token, .panel { transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease; }
.steps article:hover, .org-card:hover, .partner-card:hover, .mini-token:hover, .panel:hover { transform: translateY(-3px); box-shadow: 0 24px 60px rgba(23,32,51,0.12); }
.steps article { padding: 1.12rem; }
.steps span { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 14px; color: var(--blue); background: var(--yellow); font-weight: 950; }
.steps h3, .org-card h3, .partner-card h3, .panel h3 { margin: 0.85rem 0 0.36rem; line-height: 1.12; letter-spacing: -0.025em; }
.steps p, .org-card p, .partner-card p { margin: 0; color: var(--muted); }

.org-card, .partner-card { position: relative; overflow: hidden; display: flex; flex-direction: column; gap: 0.72rem; padding: 1.18rem; }
.org-card { min-height: 370px; }
.org-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 7px; background: linear-gradient(90deg, var(--yellow), var(--blue), var(--red)); }
.org-card-top { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; }
.org-badge { display: inline-grid; place-items: center; min-width: 64px; height: 44px; padding-inline: 0.65rem; border-radius: 14px; color: #fff; background: #111827; font-weight: 950; letter-spacing: -0.025em; }
.verified-pill { display: inline-flex; align-items: center; border: 1px solid #c9ecd9; border-radius: 999px; padding: 0.36rem 0.58rem; background: #eaf8f2; color: #0f664a; font-size: 0.75rem; font-weight: 920; white-space: nowrap; }
.verified-pill::before { content: "✓"; margin-right: 0.34rem; }
.org-card h3 { font-size: 1.32rem; }
.card-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.tag { display: inline-flex; align-items: center; border: 1px solid rgba(234, 219, 197, 0.88); border-radius: 999px; padding: 0.36rem 0.56rem; color: #594b40; background: rgba(255, 246, 229, 0.92); font-size: 0.77rem; font-weight: 780; }
.card-actions { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: auto; }
.external-note { font-size: 0.84rem; color: #5c6570; }
.partner-card { min-height: 220px; background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,251,242,0.9)); }
.partner-card h3::after { content: "協力候補"; margin-left: 0.5rem; padding: 0.22rem 0.45rem; border-radius: 999px; color: var(--blue); background: rgba(36,79,200,0.08); font-size: 0.72rem; vertical-align: middle; }

.form-grid { grid-template-columns: minmax(360px, 0.88fr) minmax(420px, 0.92fr); align-items: stretch; }
.panel { padding: 1.28rem; }
.form-panel { display: grid; gap: 1rem; border-top: 7px solid var(--blue); }
label { display: grid; gap: 0.34rem; color: var(--ink); font-weight: 800; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  outline: none;
  padding: 0.84rem 0.9rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  transition: border 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
textarea { min-height: 112px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--blue); background: #fff; box-shadow: 0 0 0 4px rgba(36, 79, 200, 0.12), 0 12px 24px rgba(36, 79, 200, 0.06); }

.submission-section { align-items: stretch; }
.submission-info {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.05rem;
  min-height: 640px;
  overflow: hidden;
  border-top: 7px solid var(--red);
  background:
    radial-gradient(circle at 12% 14%, rgba(255,216,77,0.28), transparent 15rem),
    radial-gradient(circle at 90% 92%, rgba(36,79,200,0.13), transparent 17rem),
    rgba(255,255,255,0.88);
}
.submission-info::after {
  content: "SUPPORT";
  position: absolute;
  right: -1.2rem;
  bottom: -1.35rem;
  color: rgba(36,79,200,0.055);
  font-size: clamp(3.2rem, 8vw, 6.4rem);
  font-weight: 950;
  letter-spacing: -0.08em;
  line-height: 1;
  pointer-events: none;
}
.submission-info > * { position: relative; z-index: 1; }
.submission-info h2 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.02;
  letter-spacing: -0.052em;
}
.submission-lead {
  max-width: 52ch;
  margin: 0;
  color: #4e596b;
  font-size: clamp(1.02rem, 1.4vw, 1.16rem);
}
.supporter-pass-preview {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin: 0.25rem 0 0.2rem;
  padding: 0.95rem;
  border: 1px solid rgba(36,79,200,0.16);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,255,255,0.94), rgba(255,246,220,0.9));
  box-shadow: 0 14px 36px rgba(23,32,51,0.08);
}
.preview-token {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  flex: 0 0 auto;
  border-radius: 24px;
  color: #fff;
  font-weight: 950;
  letter-spacing: -0.04em;
  background: linear-gradient(145deg, var(--yellow) 0 28%, var(--blue) 28% 66%, var(--red) 66% 100%);
  border: 4px solid rgba(255,255,255,0.92);
  box-shadow: 0 16px 34px rgba(23,32,51,0.16);
}
.supporter-pass-preview span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 880;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.supporter-pass-preview strong {
  display: block;
  margin-top: 0.12rem;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.2;
}
.submission-steps {
  display: grid;
  gap: 0.74rem;
}
.submission-steps article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0.78rem;
  align-items: start;
  padding: 0.82rem;
  border: 1px solid rgba(23,32,51,0.08);
  border-radius: 18px;
  background: rgba(255,255,255,0.72);
}
.submission-steps span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  color: var(--blue);
  background: rgba(255,216,77,0.78);
  font-weight: 950;
}
.submission-steps strong { display: block; line-height: 1.18; }
.submission-steps p { margin: 0.18rem 0 0; color: var(--muted); font-size: 0.92rem; line-height: 1.45; }
.receipt-note {
  margin: 0.15rem 0 0;
  padding-left: 0.95rem;
  border-left: 3px solid rgba(223,51,68,0.42);
  color: #636e7d;
  font-size: 0.92rem;
}
.checkbox-label { display: flex; align-items: flex-start; gap: 0.68rem; color: var(--muted); font-weight: 620; }
.checkbox-label input { width: auto; margin-top: 0.25rem; }
.muted { color: var(--muted); font-weight: 560; }
.form-feedback { min-height: 1.4rem; margin: 0; color: var(--muted); }
.form-feedback.success { color: var(--green); }
.form-feedback.error { color: var(--red); }
.check-list { display: grid; gap: 0.64rem; padding-left: 0; list-style: none; color: var(--muted); }
.check-list li { position: relative; padding-left: 1.64rem; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 950; }
.lookup-result { margin-top: 1rem; }
.result-card, .token-certificate, .coupon-item { border: 1px solid var(--line); border-radius: 18px; padding: 1rem; background: #fffdfa; }
.result-card.pending { border-color: #efd176; background: #fff8dc; }
.result-card.approved { border-color: #b9dfce; background: #f0fff8; }
.result-card.rejected { border-color: #ffc1c1; background: #fff3f3; }
.token-certificate { margin-top: 1rem; background: #fff; }
.coupon-list { display: grid; gap: 0.72rem; margin-top: 0.85rem; }
.coupon-item { border-style: dashed; background: #fffaf0; }
.coupon-code { display: inline-block; margin-top: 0.34rem; color: var(--blue); font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-weight: 950; letter-spacing: 0.08em; }
.reward-downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
  margin-top: 0.8rem;
}
.reward-note {
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.partner-soon-card {
  grid-column: 1 / -1;
  max-width: 980px;
  margin: 0 auto;
  text-align: left;
}
.partner-soon-card h3 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.partner-soon-card p {
  margin: 0.65rem 0 0;
  color: var(--muted);
  max-width: 760px;
}
.partner-soon-card .check-list {
  margin: 1rem 0;
}

.kit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.kit-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 220px;
}
.kit-card-featured {
  background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(255,248,230,0.92));
}
.kit-chip {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 0.36rem 0.68rem;
  background: rgba(36,79,200,0.10);
  color: var(--blue);
  font-weight: 900;
  font-size: 0.82rem;
}
.kit-card h3 {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.15;
}
.kit-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.token-gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; align-items: stretch; }
.mini-token {
  position: relative;
  display: flex;
  min-height: 250px;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 28px;
  padding: 1.2rem;
  color: #fff;
  box-shadow: var(--shadow);
}
.mini-token::before { content: "✦"; position: absolute; right: 24px; top: 20px; font-size: 4.2rem; opacity: 0.22; }
.mini-token::after { content: "VSPJ"; position: absolute; left: 1.1rem; top: 1.1rem; border-radius: 999px; padding: 0.32rem 0.52rem; background: rgba(255,255,255,0.22); font-size: 0.76rem; font-weight: 950; }
.mini-token.yellow { color: #2a2100; background: linear-gradient(135deg, #d19400, var(--yellow)); }
.mini-token.blue { background: linear-gradient(135deg, #173b98, var(--blue)); }
.mini-token.red { background: linear-gradient(135deg, #7a1212, var(--red)); }
.mini-token span { font-weight: 790; opacity: 0.88; }
.mini-token strong { font-size: 2rem; line-height: 1; }
.token-gallery-rich {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}
.asset-preview-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.82);
  border-radius: 28px;
  background: rgba(255,255,255,0.92);
  box-shadow: var(--shadow-soft);
}
.asset-preview-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #fff;
}
.asset-preview-card figcaption {
  display: grid;
  gap: 0.42rem;
  padding: 1rem 1rem 1.1rem;
}
.asset-preview-card h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.1;
}
.asset-preview-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}
.token-explainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.7rem;
}
.token-explainer h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2.5vw, 1.9rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
}
.check-list.compact {
  gap: 0.56rem;
  margin: 0;
}
.pitch-panel { position: relative; overflow: hidden; }
.pitch-panel::after { content: "PARTNER KIT"; position: absolute; right: -1.5rem; bottom: 0.55rem; color: rgba(36,79,200,0.07); font-size: 3.4rem; font-weight: 950; letter-spacing: -0.08em; }

.faq-section details { margin-bottom: 0.82rem; padding: 1rem 1.18rem; }
summary { cursor: pointer; font-weight: 920; }
details p { color: var(--muted); }
.site-footer { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding: 2rem clamp(1rem, 4vw, 2rem); border-top: 1px solid var(--line); background: rgba(255,255,255,0.55); color: var(--muted); }

.admin-main .section { padding-top: 2.5rem; }
.admin-toolbar { display: grid; grid-template-columns: 1fr auto 1fr; align-items: end; gap: 1rem; margin-bottom: 1rem; }
.stat-card, .admin-card { padding: 1rem; }
.stat-card strong { display: block; font-size: 2rem; }
.admin-list { display: grid; gap: 1rem; }
.admin-card header { display: flex; align-items: start; justify-content: space-between; gap: 1rem; }
.admin-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.8rem; }
.status-pill { display: inline-flex; border-radius: 999px; padding: 0.35rem 0.55rem; font-weight: 920; font-size: 0.78rem; }
.status-pending { background: #fff1b5; color: #6b5000; }
.status-approved { background: #d9f7e8; color: #126144; }
.status-rejected { background: #ffe0e0; color: #951b1b; }
.policy-page { max-width: 860px; }
.policy-page h2 { margin-top: 2rem; }
.visible-desktop { display: flex; }

@media (max-width: 1040px) {
  .site-nav a { padding-inline: 0.58rem; font-size: 0.84rem; }
  .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .site-header { flex-wrap: wrap; }
  .site-nav { order: 3; }
  .header-actions { margin-left: auto; }
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,255,255,0.96);
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .visible-desktop { display: none; }
  .section-grid, .form-grid, .split-heading { display: grid; grid-template-columns: 1fr; }
  .steps, .token-gallery, .stats-grid, .partner-proof, 
.partner-soon-card {
  grid-column: 1 / -1;
  max-width: 980px;
  margin: 0 auto;
  text-align: left;
}
.partner-soon-card h3 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.partner-soon-card p {
  margin: 0.65rem 0 0;
  color: var(--muted);
  max-width: 760px;
}
.partner-soon-card .check-list {
  margin: 1rem 0;
}

.kit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .passport-card { min-height: 500px; }
  .org-card { min-height: auto; }
  .admin-toolbar { grid-template-columns: 1fr; }
  .submission-info { min-height: auto; justify-content: start; }
  .submission-info h2 { max-width: none; }
}

@media (max-width: 620px) {
  .language-switcher button { padding-inline: 0.48rem; font-size: 0.72rem; }
  .brand strong { font-size: 0.86rem; }
  .section, .hero { width: min(100% - 1.1rem, var(--max)); padding: 2.8rem 0; }
  .hero { min-height: auto; }
  .hero-copy h1 { font-size: clamp(2.28rem, 12vw, 3.15rem); }
  .hero-lead { font-size: 1.03rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .brand small { display: none; }
  .card-grid, .steps, .token-gallery, .stats-grid, .partner-proof, 
.partner-soon-card {
  grid-column: 1 / -1;
  max-width: 980px;
  margin: 0 auto;
  text-align: left;
}
.partner-soon-card h3 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.partner-soon-card p {
  margin: 0.65rem 0 0;
  color: var(--muted);
  max-width: 760px;
}
.partner-soon-card .check-list {
  margin: 1rem 0;
}

.kit-grid { grid-template-columns: 1fr; }
  .passport-card { min-height: 458px; padding: 1rem; }
  .mascot-scene { height: 270px; }
  .mascot { transform: scale(0.84); transform-origin: bottom center; }
  .mascot-female { left: 8px; }
  .mascot-baseball { right: 8px; }
  .org-card-top { align-items: flex-start; flex-direction: column; }
  .supporter-pass-preview { align-items: flex-start; flex-direction: column; }
  .submission-steps article { grid-template-columns: 36px 1fr; }
  .submission-steps span { width: 36px; height: 36px; }
  .site-footer { display: block; }
}

/* QA polish pass */
.source-card .button {
  flex: 0 0 auto;
}
.verified-pill {
  white-space: normal;
  text-align: center;
  line-height: 1.2;
}
.reference-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(247,250,255,0.88));
}
.reference-note {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  border: 1px dashed rgba(36, 79, 200, 0.22);
  border-radius: 999px;
  padding: 0.55rem 0.75rem;
  color: #536179;
  background: rgba(239, 246, 255, 0.76);
  font-size: 0.82rem;
  font-weight: 800;
}
.pitch-panel {
  display: flex;
  flex-direction: column;
}
.pitch-panel > * {
  position: relative;
  z-index: 1;
}
.pitch-panel .button {
  align-self: center;
  margin-top: 1.1rem;
  min-width: min(100%, 320px);
}
.pitch-panel::after {
  z-index: 0;
  opacity: 0.82;
}

@media (max-width: 900px) {
  .source-card {
    display: grid;
    text-align: left;
  }
  .source-card .button {
    justify-self: center;
  }
}

/* Category selector redesign */
.category-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.35rem 0 1rem;
}
.category-tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 62px;
  border: 1px solid rgba(23, 32, 51, 0.12);
  border-radius: 22px;
  padding: 0.85rem 1rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
  font-weight: 920;
  text-align: left;
}
.category-tab strong {
  display: grid;
  place-items: center;
  min-width: 34px;
  height: 34px;
  border-radius: 999px;
  color: #fff;
  background: #111827;
  font-size: 0.86rem;
}
.category-tab.active {
  border-color: rgba(36, 79, 200, 0.42);
  background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(239,246,255,0.96));
  box-shadow: 0 18px 42px rgba(36, 79, 200, 0.14);
}
.category-tab.active span { color: var(--blue-dark); }
.category-tab.active strong { background: var(--blue); }
.category-intro {
  margin: 0 0 1.2rem;
  padding: 1.05rem 1.15rem;
  border: 1px solid rgba(36, 79, 200, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-soft);
}
.category-intro h3 { margin: 0.2rem 0 0.2rem; font-size: 1.25rem; }
.category-intro p { margin: 0; color: var(--muted); }
.category-kicker {
  display: inline-flex;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 920;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.customer-copy p { max-width: 78ch; }
.org-more {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.org-more summary {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(36, 79, 200, 0.14);
  border-radius: 999px;
  padding: 0.4rem 0.62rem;
  color: var(--blue-dark);
  background: rgba(239, 246, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
}
.org-more p {
  margin: 0.55rem 0 0;
  color: #5c6570;
  font-size: 0.84rem;
}
.org-card { min-height: 340px; }
.org-card .card-tags { margin-top: auto; }

@media (max-width: 760px) {
  .category-tabs { grid-template-columns: 1fr; }
  .category-tab { min-height: 54px; }
}

/* Multilingual header and partner-card polish */
.partner-card h3::after { content: none; }

/* Language layout QA: keep the header from crowding long Spanish labels */
.site-header {
  justify-content: flex-start;
}
.brand {
  flex: 0 1 310px;
  max-width: 340px;
  padding-right: clamp(0.4rem, 1.4vw, 1.2rem);
}
.brand strong {
  white-space: nowrap;
}
.site-nav {
  flex: 1 1 auto;
  justify-content: center;
  min-width: 0;
  margin-left: clamp(0.5rem, 1.8vw, 1.8rem);
}
.header-actions {
  flex: 0 0 auto;
  margin-left: auto;
}

html[lang="es"] .hero-copy {
  padding-left: clamp(0.45rem, 1.2vw, 1.1rem);
}
html[lang="es"] .hero-copy h1 {
  max-width: 780px;
  font-size: clamp(3rem, 6.2vw, 5.45rem);
  line-height: 1;
  letter-spacing: -0.058em;
}
html[lang="es"] .hero.section-grid {
  grid-template-columns: minmax(0, 1fr) minmax(350px, 0.92fr);
  gap: clamp(2rem, 5vw, 5.5rem);
}

@media (max-width: 1180px) {
  .site-header { flex-wrap: wrap; }
  .site-nav { order: 3; }
  .header-actions { margin-left: auto; }
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,255,255,0.96);
    box-shadow: var(--shadow);
    margin-left: 0;
  }
  .site-nav.is-open { display: flex; }
}

@media (max-width: 900px) {
  html[lang="es"] .hero-copy {
    padding-left: 0;
  }
  html[lang="es"] .hero-copy h1 {
    font-size: clamp(2.45rem, 11vw, 3.45rem);
  }
}

/* Receipt section compact pass: keep form and reward guide visible on laptop screens */
#submit.section {
  padding-top: clamp(2rem, 4vw, 3.4rem);
  padding-bottom: clamp(2rem, 4vw, 3.4rem);
}
.submission-section.form-grid {
  grid-template-columns: minmax(340px, 0.9fr) minmax(420px, 0.94fr);
  gap: clamp(1rem, 3vw, 2.2rem);
  align-items: center;
}
.submission-section .panel {
  padding: clamp(1rem, 1.8vw, 1.22rem);
  border-radius: 26px;
}
.submission-info {
  min-height: 560px;
  justify-content: center;
  gap: 0.78rem;
}
.submission-info h2 {
  max-width: 13ch;
  font-size: clamp(1.9rem, 3.35vw, 2.7rem);
  line-height: 1.06;
  letter-spacing: -0.047em;
}
.submission-lead {
  font-size: clamp(0.96rem, 1.18vw, 1.05rem);
  line-height: 1.5;
  max-width: 54ch;
}
.supporter-pass-preview {
  gap: 0.78rem;
  margin: 0.08rem 0;
  padding: 0.72rem;
  border-radius: 18px;
}
.preview-token {
  width: 56px;
  height: 56px;
  border-radius: 19px;
  border-width: 3px;
}
.supporter-pass-preview span {
  font-size: 0.68rem;
  letter-spacing: 0.075em;
}
.supporter-pass-preview strong {
  font-size: 0.92rem;
}
.submission-steps {
  gap: 0.58rem;
}
.submission-steps article {
  grid-template-columns: 34px 1fr;
  gap: 0.66rem;
  padding: 0.64rem 0.72rem;
  border-radius: 15px;
}
.submission-steps span {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  font-size: 0.92rem;
}
.submission-steps strong {
  font-size: 0.94rem;
}
.submission-steps p {
  margin-top: 0.1rem;
  font-size: 0.83rem;
  line-height: 1.36;
}
.receipt-note {
  margin-top: 0.04rem;
  font-size: 0.84rem;
  line-height: 1.42;
}
.form-panel {
  gap: 0.66rem;
  border-top-width: 6px;
}
.form-panel label {
  gap: 0.22rem;
  font-size: 0.93rem;
}
.form-panel input,
.form-panel select,
.form-panel textarea {
  border-radius: 13px;
  padding: 0.62rem 0.78rem;
  min-height: 44px;
  font-size: 0.94rem;
}
.form-panel textarea {
  min-height: 76px;
}
.form-panel input[type="file"] {
  padding: 0.54rem 0.62rem;
}
.form-panel .checkbox-label {
  gap: 0.55rem;
  font-size: 0.86rem;
  line-height: 1.45;
}
.form-panel .button.wide {
  min-height: 48px;
}
.form-panel .form-feedback {
  min-height: 1rem;
  font-size: 0.86rem;
}

html[lang="es"] .submission-info h2 {
  max-width: 12.5ch;
  font-size: clamp(1.82rem, 3.15vw, 2.52rem);
}
html[lang="es"] .submission-lead {
  font-size: 0.97rem;
}

@media (max-width: 900px) {
  .submission-section.form-grid {
    grid-template-columns: 1fr;
  }
  .submission-info {
    min-height: auto;
  }
  .submission-info h2,
  html[lang="es"] .submission-info h2 {
    max-width: none;
  }
}


.admin-heading-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; justify-content: flex-end; align-items: center; }
.admin-empty a { color: var(--blue); font-weight: 800; text-decoration: none; }
.admin-empty a:hover { text-decoration: underline; }
@media (max-width: 720px) {
  .admin-heading-actions { justify-content: flex-start; }
}

/* Review dashboard reliability improvements */
.admin-toolbar {
  grid-template-columns: minmax(240px, 1fr) auto;
  align-items: end;
}
.admin-toolbar .form-feedback {
  grid-column: 1 / -1;
  min-height: 1.4rem;
  font-weight: 780;
}
.admin-empty {
  border: 1px solid rgba(31, 80, 203, 0.14);
  background: rgba(255, 255, 255, 0.76);
}
.small-note {
  font-size: 0.9rem;
}
@media (max-width: 720px) {
  .admin-toolbar {
    grid-template-columns: 1fr;
  }
}

/* Admin dashboard: prevent receipt cards from overlapping long emails or confirmation IDs */
.admin-card {
  overflow: hidden;
}
.admin-card header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  column-gap: 1rem;
}
.admin-card header > div:first-child {
  min-width: 0;
}
.admin-card h3,
.admin-card p,
.coupon-item,
.coupon-code {
  overflow-wrap: anywhere;
  word-break: break-word;
}
.admin-card header > .muted:last-child {
  justify-self: end;
  max-width: min(240px, 32vw);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: right;
  padding-top: 0.2rem;
}
@media (max-width: 760px) {
  .admin-card header {
    grid-template-columns: 1fr;
  }
  .admin-card header > .muted:last-child {
    justify-self: start;
    max-width: 100%;
    text-align: left;
  }
}

/* Admin dashboard privacy/security note */
.admin-security-note {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--muted);
}
.admin-security-note strong {
  color: var(--ink);
}

/* Authenticated admin controls */
.is-hidden { display: none !important; }
.admin-only-actions {
  opacity: 1;
}
.admin-toolbar.unlocked {
  border-color: rgba(21, 128, 82, 0.22);
  box-shadow: 0 16px 38px rgba(21, 128, 82, 0.08);
}

/* Admin privacy/layout polish: no dashboard cards before unlock, no visual collision */
.stats-grid:empty { display: none; }
.admin-main .stats-grid { margin: 1.35rem 0 1rem; }
.admin-main .admin-list { margin-top: 1rem; }
.admin-main .admin-empty { margin-top: 0; clear: both; }
.admin-toolbar { position: relative; z-index: 2; }
.admin-card, .stat-card, .admin-empty { position: relative; z-index: 1; }

/* Responsive QA pass: prevent skinny cards and vertical text wrapping on tablet widths */
* { min-width: 0; }
html, body { max-width: 100%; overflow-x: hidden; }
img { max-width: 100%; }
.asset-preview-card img {
  object-fit: contain;
  padding: 0.45rem;
  background: #fffaf0;
}
.token-gallery-rich {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(320px, 1.05fr);
}

@media (max-width: 1180px) {
  .split-heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }
  .split-heading > p {
    max-width: 760px;
    margin: 0;
  }
  .token-gallery-rich {
    grid-template-columns: repeat(2, minmax(280px, 1fr)) !important;
  }
  .token-gallery-rich .token-explainer {
    grid-column: 1 / -1;
  }
  .token-explainer {
    justify-content: flex-start;
  }
  .kit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .steps,
  .token-gallery,
  .token-gallery-rich,
  .stats-grid,
  .partner-proof,
  .kit-grid {
    width: 100%;
  }
  .partner-soon-card {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 860px;
  }
}

@media (max-width: 760px) {
  .token-gallery-rich,
  .kit-grid,
  .card-grid,
  .steps,
  .partner-proof,
  .stats-grid {
    grid-template-columns: 1fr !important;
  }
  .token-gallery-rich .token-explainer {
    grid-column: auto;
  }
  .asset-preview-card,
  .token-explainer,
  .partner-soon-card {
    border-radius: 22px;
  }
  .asset-preview-card figcaption {
    padding: 0.9rem 0.95rem 1rem;
  }
  .token-explainer h3,
  .partner-soon-card h3 {
    font-size: clamp(1.55rem, 7vw, 2.15rem);
    line-height: 1.08;
  }
  .token-explainer .check-list,
  .partner-soon-card .check-list {
    gap: 0.55rem;
  }
  .token-explainer .check-list li,
  .partner-soon-card .check-list li {
    line-height: 1.45;
  }
  .section-heading h2,
  .section h1 {
    font-size: clamp(2rem, 10vw, 3.15rem);
  }
}


@media (max-width: 760px) {
  .partner-proof {
    gap: 1rem;
  }
  .partner-proof article {
    min-height: 150px;
    padding: 1.35rem 1.45rem;
    justify-content: center;
    gap: 0.7rem;
  }
  .partner-proof strong {
    font-size: clamp(2rem, 13vw, 3rem);
  }
  .partner-proof span {
    font-size: clamp(1rem, 5vw, 1.2rem);
  }
}

@media (max-width: 430px) {
  .section,
  .hero {
    width: min(100% - 0.9rem, var(--max));
  }
  .token-gallery,
  .token-gallery-rich {
    gap: 0.8rem;
  }
  .asset-preview-card img {
    padding: 0.3rem;
  }
  .button.small {
    width: 100%;
    justify-content: center;
  }
}

.reward-link { user-select: none; -webkit-user-select: none; text-decoration: none; cursor: pointer; }
.reward-link[aria-busy="true"] { opacity: 0.82; pointer-events: none; }
