/* ============ FONT ============ */
@font-face {
  font-family: 'JoromyComic';
  src: url('font/COMIC.TTF') format('truetype');
  font-weight: 400;
  font-display: swap;
}

/* ============ TOKENS ============ */
:root {
  --ink:      #1a1a24;
  --ink-soft: #4a4a5e;
  --cream:    #FFF9F0;
  --paper:    #FFFFFF;

  --mint:   #B4EDD2;
  --sky:    #B8DDFF;
  --lav:    #DCC9FF;
  --peach:  #FFD2B0;
  --butter: #FFECA8;
  --pink:   #FFC2D4;
  --usdc:   #9CC9F5;

  --line: 3px solid var(--ink);
  --shadow: 6px 6px 0 var(--ink);
  --shadow-sm: 4px 4px 0 var(--ink);
  --r: 28px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'JoromyComic', 'Comic Sans MS', 'Comic Neue', cursive;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* halftone dot texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(var(--ink) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.045;
  pointer-events: none;
  z-index: 0;
}

/* ============ BLOBS ============ */
.blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  z-index: -1;
  pointer-events: none;
}
.b1 { width: 480px; height: 480px; background: var(--mint);   top: -120px;  left: -100px; }
.b2 { width: 420px; height: 420px; background: var(--lav);    top: 30%;     right: -140px; }
.b3 { width: 460px; height: 460px; background: var(--peach);  top: 62%;     left: -160px; }
.b4 { width: 400px; height: 400px; background: var(--sky);    bottom: -140px; right: -80px; }

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 22px;
  background: rgba(255, 249, 240, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
}
.brand img {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: var(--line);
  object-fit: cover;
  background: #fff;
}
.nav-links {
  display: flex;
  gap: 2px;
  margin-left: auto;
  flex-wrap: nowrap;
}
@media (max-width: 1150px) { .nav-links a { padding: 5px 8px; font-size: 13px; } }
@media (max-width: 1000px) { .nav-links { display: none; } }
.nav-links a {
  text-decoration: none;
  color: var(--ink);
  padding: 5px 11px;
  border-radius: 999px;
  border: 3px solid transparent;
  transition: all .15s ease;
  font-size: 14px;
  white-space: nowrap;
}
.nav-links a:hover {
  background: var(--butter);
  border-color: var(--ink);
  transform: rotate(-2deg);
}

/* ============ X LINK ============ */
.x-link {
  flex: none;
  width: 44px; height: 44px;
  border: var(--line);
  border-radius: 50%;
  background: var(--ink);
  box-shadow: var(--shadow-sm);
  display: grid;
  place-items: center;
  transition: transform .12s ease, box-shadow .12s ease;
}
.x-link svg { width: 17px; height: 17px; fill: var(--cream); }
.x-link:hover { transform: translate(-2px, -2px) rotate(6deg); box-shadow: 6px 6px 0 var(--ink); }
.x-link:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }

.btn-lav { background: var(--lav); }
.btn-x {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-x svg { width: 17px; height: 17px; fill: var(--ink); flex: none; }

.foot-x {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  text-decoration: none;
  background: var(--butter);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 5px 16px;
  box-shadow: 3px 3px 0 var(--ink);
  margin-bottom: 10px;
  font-size: 16px;
}
.foot-x svg { width: 14px; height: 14px; fill: var(--ink); flex: none; }
.foot-x:hover { background: var(--mint); transform: translate(-1px, -1px); }

/* ============ SFX TOGGLE ============ */
.sfx-toggle {
  flex: none;
  width: 44px; height: 44px;
  border: var(--line);
  border-radius: 50%;
  background: var(--mint);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  font-size: 17px;
  line-height: 1;
  display: grid;
  place-items: center;
  padding: 0;
  transition: transform .12s ease, box-shadow .12s ease;
}
.sfx-toggle:hover { transform: translate(-2px, -2px) rotate(-6deg); box-shadow: 6px 6px 0 var(--ink); }
.sfx-toggle:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
.sfx-toggle .sfx-off { display: none; }
.sfx-toggle.muted { background: var(--paper); }
.sfx-toggle.muted .sfx-on { display: none; }
.sfx-toggle.muted .sfx-off { display: inline; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  font-family: inherit;
  font-size: 18px;
  padding: 13px 26px;
  border: var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
  cursor: pointer;
  text-decoration: none;
  transition: transform .12s ease, box-shadow .12s ease;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 var(--ink); }
.btn:active { transform: translate(3px, 3px); box-shadow: 2px 2px 0 var(--ink); }
.btn-sm { font-size: 15px; padding: 8px 18px; box-shadow: var(--shadow-sm); }
.btn-mint { background: var(--mint); }
.btn-sky  { background: var(--sky); }
.btn-pink { background: var(--pink); }

/* ============ HERO ============ */
.hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 28px 60px;
}
.kicker {
  display: inline-block;
  background: var(--butter);
  border: var(--line);
  border-radius: 999px;
  padding: 6px 18px;
  font-size: 15px;
  box-shadow: var(--shadow-sm);
  transform: rotate(-1.5deg);
  margin-bottom: 22px;
}
.title {
  font-size: clamp(64px, 11vw, 132px);
  line-height: 1.05;
  letter-spacing: 2px;
  color: var(--paper);
  text-shadow:
     4px 4px 0 var(--ink),
    -3px -3px 0 var(--ink),
     3px -3px 0 var(--ink),
    -3px  3px 0 var(--ink),
    12px 12px 0 var(--lav);
  margin-bottom: 34px;
}
.tagline {
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.25;
  margin-bottom: 16px;
}
.lede {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 54ch;
  margin-bottom: 30px;
}
.cta-row { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }

.contract-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  background: var(--paper);
  border: var(--line);
  border-radius: var(--r);
  padding: 14px 22px;
  box-shadow: var(--shadow-sm);
  font-size: 15px;
}
.contract-strip code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 14px;
  background: var(--pink);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 4px 14px;
  word-break: break-all;
  max-width: 100%;
}
.contract-strip .muted { color: var(--ink-soft); }
.dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #FF7A7A;
  border: 2px solid var(--ink);
  animation: blink 1.4s infinite;
  flex: none;
}
.dot-live { background: #6FCF97; }
@keyframes blink { 50% { opacity: .25; } }

/* ============ THE RECEIPTS ============ */
.split-proof {
  display: inline-block;
  margin-top: 6px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--ink);
}
.split-proof:hover { background: var(--butter); }

.proofs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 34px;
  align-items: start;
  margin-bottom: 34px;
}
.proof { margin: 0; }
.proof-shot {
  background: var(--paper);
  border: 5px solid var(--ink);
  border-radius: 28px;
  padding: 12px;
  box-shadow: 10px 10px 0 var(--ink);
  overflow: hidden;
  transform: rotate(-1.2deg);
  transition: transform .18s ease;
}
.proof:nth-child(even) .proof-shot { transform: rotate(1.2deg); }
.proof-shot:hover,
.proof:nth-child(even) .proof-shot:hover { transform: rotate(0deg) translateY(-4px); }
.proof-shot img {
  display: block;
  width: 100%;
  border-radius: 18px;
  border: 2px solid var(--ink);
}
.proof figcaption {
  margin-top: 18px;
  font-size: 16px;
  color: var(--ink-soft);
}
.proof figcaption strong { color: var(--ink); }
.proof figcaption a {
  display: inline-block;
  margin-top: 10px;
  color: var(--ink);
  text-decoration: none;
  background: var(--sky);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 4px 16px;
  font-size: 15px;
  box-shadow: 3px 3px 0 var(--ink);
}
.proof figcaption a:hover { background: var(--butter); transform: translate(-1px, -1px); }

/* the tweet, redrawn in our own handwriting */
.proof-tweet {
  background: var(--butter);
  padding: 22px 24px;
}
.tweet-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.tweet-pfp {
  width: 52px !important; height: 52px;
  border-radius: 50% !important;
  border: 3px solid var(--ink) !important;
  object-fit: cover;
  background: #fff;
  flex: none;
}
.tweet-name { font-size: 19px; line-height: 1.2; }
.tweet-check {
  display: inline-grid;
  place-items: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--sky);
  border: 2px solid var(--ink);
  font-size: 11px;
  vertical-align: middle;
}
.tweet-handle { font-size: 15px; color: var(--ink-soft); }
.tweet-body { font-size: 20px; line-height: 1.35; margin-bottom: 8px; }
.tweet-link {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  word-break: break-all;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 12px;
  padding: 6px 12px;
  margin-bottom: 12px;
}
.tweet-date {
  font-size: 14px;
  color: var(--ink-soft);
  border-top: 2px dashed var(--ink);
  padding-top: 10px;
}

.verdict {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
  background: var(--mint);
  border: 5px solid var(--ink);
  border-radius: 36px;
  padding: 26px 30px;
  box-shadow: 10px 10px 0 var(--ink);
  margin-bottom: 22px;
}
.verdict-badge {
  width: 74px; height: 74px;
  border-radius: 50%;
  background: var(--paper);
  border: var(--line);
  display: grid;
  place-items: center;
  font-size: 32px;
  box-shadow: var(--shadow-sm);
  transform: rotate(-8deg);
  flex: none;
}
.verdict-h { font-size: clamp(21px, 2.6vw, 28px); line-height: 1.2; margin-bottom: 8px; }
.verdict p { font-size: 16px; max-width: 72ch; }

@media (max-width: 640px) {
  .proof-shot, .proof:nth-child(even) .proof-shot { transform: none; border-radius: 22px; padding: 10px; }
  .proof-shot:hover { transform: translateY(-4px); }
  .proof-tweet { padding: 18px 16px; }
  .tweet-body { font-size: 17px; }
  .verdict { grid-template-columns: 1fr; gap: 16px; padding: 22px 20px; }
  .verdict-badge { margin: 0 auto; }
}

/* ============ ARC BANNER ============ */
.arc-banner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  align-items: center;
  background: linear-gradient(120deg, var(--sky) 0%, var(--mint) 55%, var(--butter) 100%);
  border: 5px solid var(--ink);
  border-radius: 40px;
  padding: 32px 36px;
  box-shadow: 12px 12px 0 var(--ink);
  margin-bottom: 38px;
  position: relative;
  overflow: hidden;
}
.arc-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--ink) 1.4px, transparent 1.4px);
  background-size: 16px 16px;
  opacity: .07;
  pointer-events: none;
}
.arc-banner > * { position: relative; }

.arc-mark {
  width: 152px; height: 152px;
  border: 5px solid var(--ink);
  border-radius: 34px;
  background: var(--paper);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  transform: rotate(-5deg);
}
.arc-mark span {
  font-size: 40px;
  letter-spacing: 2px;
  color: var(--paper);
  text-shadow: 3px 3px 0 var(--ink), -2px -2px 0 var(--ink), 2px -2px 0 var(--ink), -2px 2px 0 var(--ink), 6px 6px 0 var(--sky);
}

.arc-line { font-size: clamp(24px, 3vw, 34px); line-height: 1.15; margin-bottom: 10px; }
.arc-banner-body p { font-size: 17px; max-width: 64ch; margin-bottom: 12px; }
.arc-punch {
  display: inline-block;
  background: var(--paper);
  border: var(--line);
  border-radius: 999px;
  padding: 8px 22px;
  box-shadow: var(--shadow-sm);
  font-size: 18px;
  margin-bottom: 0 !important;
  transform: rotate(-1deg);
}

@media (max-width: 760px) {
  .arc-banner { grid-template-columns: 1fr; gap: 20px; padding: 26px 20px; border-radius: 32px; }
  .arc-mark { width: 112px; height: 112px; margin: 0 auto; border-radius: 26px; }
  .arc-mark span { font-size: 30px; }
  .arc-punch { font-size: 16px; padding: 8px 18px; }
}

/* ============ THE PAIR SECTION ============ */
.pair-hero {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.pair-side { width: 230px; text-align: center; }
.pair-coin {
  width: 150px; height: 150px;
  margin: 0 auto 14px;
  border: 5px solid var(--ink);
  border-radius: 50%;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 8px 8px 0 var(--ink);
  display: grid;
  place-items: center;
}
.pair-coin img { width: 100%; height: 100%; object-fit: cover; display: block; }
.usdc-coin {
  background: linear-gradient(140deg, #9BD0F5 0%, #5FA8E8 55%, #2775CA 100%);
}
.usdc-coin span {
  font-size: 34px;
  letter-spacing: 1px;
  color: var(--paper);
  text-shadow: 3px 3px 0 var(--ink), -2px -2px 0 var(--ink), 2px -2px 0 var(--ink), -2px 2px 0 var(--ink);
}
.pair-tick { font-size: 26px; line-height: 1.1; }
.pair-sub { font-size: 15px; color: var(--ink-soft); }
.pair-slash {
  font-size: 76px;
  line-height: 1;
  align-self: center;
  margin-top: -34px;
  color: var(--ink);
  opacity: .5;
}

.pair-lead {
  max-width: 68ch;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 18px;
}

.pair-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(290px, 100%), 1fr));
  gap: 26px;
}
.pair-card {
  border: var(--line);
  border-radius: var(--r);
  padding: 26px;
  box-shadow: var(--shadow);
  transition: transform .16s ease;
}
.pair-card:nth-child(2) { transform: rotate(1deg); }
.pair-card:nth-child(1), .pair-card:nth-child(3) { transform: rotate(-1deg); }
.pair-card:hover { transform: rotate(0deg) translateY(-6px); }
.pair-card h3 { font-size: 24px; line-height: 1.15; margin-bottom: 12px; }
.pair-card p { font-size: 16px; margin-bottom: 12px; }
.pair-kick {
  border-top: 2px dashed var(--ink);
  padding-top: 12px;
  margin-bottom: 0 !important;
  font-size: 15px;
}
.pc-lav   { background: var(--lav); }
.pc-mint  { background: var(--mint); }
.pc-peach { background: var(--peach); }



@media (max-width: 640px) {
  .pair-slash { margin-top: 0; font-size: 54px; }
  .pair-side { width: 100%; }
  .pair-coin { width: 120px; height: 120px; }
}

/* ============ 30% ALLOCATION ============ */
.alloc-wrap { grid-column: 1 / -1; }

.alloc {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  align-items: start;
  background: linear-gradient(115deg, var(--butter) 0%, var(--pink) 48%, var(--lav) 100%);
  border: 5px solid var(--ink);
  border-radius: 40px;
  padding: 34px 38px;
  box-shadow: 12px 12px 0 var(--ink);
  position: relative;
  overflow: hidden;
}
.alloc::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--ink) 1.4px, transparent 1.4px);
  background-size: 16px 16px;
  opacity: .07;
  pointer-events: none;
}
.alloc > * { position: relative; }

.alloc-badge {
  width: 150px; height: 150px;
  background: var(--paper);
  border: 5px solid var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  transform: rotate(-7deg);
  flex: none;
}
.alloc-badge span {
  font-size: 46px;
  line-height: 1;
  color: var(--paper);
  text-shadow: 3px 3px 0 var(--ink), -2px -2px 0 var(--ink), 2px -2px 0 var(--ink), -2px 2px 0 var(--ink), 6px 6px 0 var(--pink);
}

.alloc-kicker { font-size: 14px; letter-spacing: 1.5px; margin-bottom: 6px; }
.alloc-h {
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.12;
  margin-bottom: 12px;
}
.alloc-p { font-size: 17px; margin-bottom: 18px; max-width: 62ch; }

.alloc-addr {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  background: var(--paper);
  border: var(--line);
  border-radius: 999px;
  padding: 10px 12px 10px 20px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
}
.alloc-addr-label { font-size: 15px; color: var(--ink-soft); }
.alloc-addr code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 14px;
  letter-spacing: .3px;
  word-break: break-all;
  flex: 1 1 auto;
}

.alloc-tx {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  background: var(--mint);
  border: var(--line);
  border-radius: 999px;
  padding: 8px 10px 8px 18px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
  font-size: 15px;
}
.alloc-tx-check {
  display: grid;
  place-items: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--ink);
  font-size: 12px;
  flex: none;
}
.alloc-tx-label { color: var(--ink); font-weight: 700; }
.alloc-tx code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 2px 12px;
  word-break: break-all;
}
.mini-addr {
  display: inline-block;
  white-space: nowrap;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  background: rgba(255,255,255,.6);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  padding: 1px 8px;
}
.s-jeremy { background: linear-gradient(130deg, var(--butter), var(--pink)); }

.alloc-note { font-size: 16px; margin-bottom: 20px; max-width: 64ch; }

.split-bar {
  display: flex;
  height: 46px;
  border: var(--line);
  border-radius: 999px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--paper);
}
.split-seg {
  display: grid;
  place-items: center;
  font-size: 14px;
  letter-spacing: 1px;
  white-space: nowrap;
  overflow: hidden;
}
.seg-jeremy { width: 30%; background: var(--ink); color: var(--butter); }
.seg-us { width: 70%; background: var(--mint); color: var(--ink); }
.split-note { font-size: 15px; margin-top: 12px; max-width: 64ch; }

@media (max-width: 760px) {
  .alloc { grid-template-columns: 1fr; gap: 20px; padding: 26px 20px; border-radius: 32px; }
  .alloc-badge { width: 110px; height: 110px; margin: 0 auto; }
  .alloc-badge span { font-size: 34px; }
  .alloc-addr { border-radius: 26px; padding: 14px 16px; }
  .alloc-addr code { font-size: 12px; }
  .split-seg { font-size: 11px; letter-spacing: 0; }
}

/* portrait */
.hero-art { display: flex; justify-content: center; }
.portrait-frame {
  position: relative;
  background: var(--paper);
  border: 5px solid var(--ink);
  border-radius: 40px;
  padding: 14px;
  box-shadow: 12px 12px 0 var(--mint);
  transform: rotate(2deg);
  max-width: 400px;
}
.portrait-frame img {
  display: block;
  width: 100%;
  border-radius: 28px;
  border: var(--line);
}
.bubble {
  position: relative;
  background: var(--paper);
  border: var(--line);
  border-radius: 24px;
  padding: 14px 20px;
  box-shadow: var(--shadow-sm);
  font-size: 16px;
  text-align: center;
}
.bubble::after {
  content: '';
  position: absolute;
  left: 42px;
  bottom: -17px;
  width: 0; height: 0;
  border: 9px solid transparent;
  border-top-color: var(--ink);
}
.bubble-hero {
  position: absolute;
  bottom: -46px;
  left: -40px;
  background: var(--butter);
  transform: rotate(-3deg);
  max-width: 260px;
}
.sticker {
  position: absolute;
  border: var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 13px;
  line-height: 1.1;
  padding: 6px;
  box-shadow: var(--shadow-sm);
}
.sticker-1 {
  top: -30px; right: -30px;
  width: 104px; height: 104px;
  background: var(--pink);
  transform: rotate(14deg);
}
.sticker-2 {
  bottom: 38px; right: -30px;
  width: 64px; height: 64px;
  background: var(--sky);
  transform: rotate(-10deg);
  font-size: 12px;
}

/* ============ MARQUEE ============ */
.marquee {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: var(--lav);
  border-top: var(--line);
  border-bottom: var(--line);
  padding: 12px 0;
  transform: rotate(-1deg) scale(1.02);
  margin: 30px 0 70px;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: slide 34s linear infinite;
}
.marquee-track span { font-size: 20px; padding-right: 40px; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ============ SECTIONS ============ */
.section {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  padding: 50px 28px 70px;
}
.h2 {
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.1;
  margin-bottom: 10px;
  text-align: center;
}
.h2.nomargin { margin: 0; text-align: left; }
.sub {
  text-align: center;
  color: var(--ink-soft);
  font-size: 18px;
  margin-bottom: 44px;
}
.sub.left { text-align: left; margin-bottom: 26px; }

/* ============ PANELS ============ */
.panels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 940px;
  margin: 0 auto;
}
@media (max-width: 760px) {
  .panels { grid-template-columns: 1fr; }
}
.panel {
  position: relative;
  border: var(--line);
  border-radius: var(--r);
  padding: 30px 26px 26px;
  box-shadow: var(--shadow);
  transition: transform .18s ease;
}
.panel:nth-child(odd)  { transform: rotate(-1deg); }
.panel:nth-child(even) { transform: rotate(1deg); }
.panel:hover { transform: rotate(0deg) translateY(-6px); }
.panel h3 { font-size: 26px; margin-bottom: 12px; }
.panel p { font-size: 16px; margin-bottom: 12px; }
.panel .praise {
  border-top: 2px dashed var(--ink);
  padding-top: 12px;
  margin-bottom: 0;
  font-size: 15px;
}
.panel-no {
  position: absolute;
  top: -18px; left: 22px;
  background: var(--paper);
  border: var(--line);
  border-radius: 50%;
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  font-size: 18px;
  box-shadow: var(--shadow-sm);
}
.p-mint  { background: var(--mint); }
.p-lav   { background: var(--lav); }
.p-peach { background: var(--peach); }
.p-sky   { background: var(--sky); }

/* ============ TIMELINE ============ */
.timeline {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding-left: 30px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 8px; top: 12px; bottom: 12px;
  width: 5px;
  background: var(--ink);
  border-radius: 999px;
}
.tl-item {
  position: relative;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 20px;
  align-items: start;
  margin-bottom: 28px;
}
.tl-item::before {
  content: '';
  position: absolute;
  left: -28px; top: 20px;
  width: 20px; height: 20px;
  background: var(--butter);
  border: var(--line);
  border-radius: 50%;
}
.tl-year {
  background: var(--paper);
  border: var(--line);
  border-radius: 999px;
  text-align: center;
  padding: 8px 4px;
  box-shadow: var(--shadow-sm);
  font-size: 17px;
  transform: rotate(-2deg);
}
.tl-card {
  background: var(--paper);
  border: var(--line);
  border-radius: var(--r);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease;
}
.tl-card:hover { transform: translateX(6px); }
.tl-card h3 { font-size: 23px; margin-bottom: 8px; }
.tl-card p { font-size: 16px; color: var(--ink-soft); }
.tl-final { background: var(--pink); }
.tl-final p { color: var(--ink); }

/* ============ PEG-O-METER ============ */
.peg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 30px;
}
.peg-card {
  border: var(--line);
  border-radius: var(--r);
  padding: 28px;
  box-shadow: var(--shadow);
  text-align: center;
}
.peg-blue { background: var(--usdc); }
.peg-pink { background: var(--pink); transform: rotate(1deg); }
.peg-label { font-size: 16px; letter-spacing: 2px; margin-bottom: 4px; }
.peg-value {
  font-size: clamp(42px, 7vw, 62px);
  line-height: 1.1;
  color: var(--paper);
  text-shadow: 3px 3px 0 var(--ink), -2px -2px 0 var(--ink), 2px -2px 0 var(--ink), -2px 2px 0 var(--ink);
}
.peg-bar {
  height: 24px;
  background: var(--paper);
  border: var(--line);
  border-radius: 999px;
  overflow: hidden;
  margin: 18px 0 16px;
}
.peg-fill { height: 100%; background: var(--ink); border-radius: 999px; }
.peg-fill.steady { width: 100%; background: #6FCF97; }
.peg-fill.wobble { width: 42%; background: #FF8FB1; transition: width .45s ease; }
.peg-note { font-size: 15px; text-align: left; }

/* ============ STATS ============ */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(270px, 100%), 1fr));
  gap: 26px;
}
.stat {
  border: var(--line);
  border-radius: var(--r);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform .16s ease;
}
.stat:hover { transform: translateY(-6px) rotate(-1deg); }
.stat-k { font-size: 15px; letter-spacing: 1.5px; color: var(--ink-soft); }
.stat-v { font-size: 32px; line-height: 1.15; margin: 4px 0 10px; }
.stat-d { font-size: 15px; }
.s-butter { background: var(--butter); }
.s-mint   { background: var(--mint); }
.s-lav    { background: var(--lav); }
.s-peach  { background: var(--peach); }
.s-sky    { background: var(--sky); }
.s-pink   { background: var(--pink); }

/* ============ ATTESTATION ============ */
.attest {
  background: var(--paper);
  border: 5px solid var(--ink);
  border-radius: 36px;
  padding: 34px;
  box-shadow: 12px 12px 0 var(--sky);
}
.attest-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.stamp.hit { animation: stamp-slam .35s cubic-bezier(.2,.8,.3,1.2) both; }
@keyframes stamp-slam {
  0%   { transform: rotate(-24deg) scale(2.6); opacity: 0; }
  60%  { transform: rotate(-6deg) scale(.94); opacity: 1; }
  100% { transform: rotate(-8deg) scale(1); opacity: .85; }
}
.stamp {
  border: 4px solid #E05C5C;
  color: #E05C5C;
  border-radius: 14px;
  padding: 6px 18px;
  font-size: 22px;
  letter-spacing: 2px;
  transform: rotate(-8deg);
  opacity: .85;
}
.attest-table { width: 100%; border-collapse: collapse; font-size: 16px; }
.attest-table td {
  padding: 13px 10px;
  border-bottom: 2px dashed var(--ink);
}
.attest-table tr:last-child td { border-bottom: none; }
.attest-table td:nth-child(2) { font-size: 18px; }
.attest-table td:nth-child(3) { text-align: right; white-space: nowrap; }
.ok, .warn {
  display: inline-block;
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 3px 12px;
  font-size: 14px;
}
.ok   { background: var(--mint); }
.warn { background: var(--peach); }
.attest-foot {
  margin-top: 22px;
  font-size: 16px;
  background: var(--butter);
  border: var(--line);
  border-radius: 18px;
  padding: 12px 18px;
}

/* ============ FAQ ============ */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 16px; }
.faq details {
  background: var(--paper);
  border: var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq details[open] { background: var(--butter); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 56px 18px 24px;
  font-size: 19px;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  position: absolute;
  right: 20px; top: 50%;
  transform: translateY(-50%);
  width: 30px; height: 30px;
  background: var(--mint);
  border: 2px solid var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 20px;
  line-height: 1;
}
.faq details[open] summary::after { content: '–'; background: var(--pink); }
.faq p { padding: 0 24px 20px; font-size: 16px; color: var(--ink-soft); }

/* ============ CLOSER ============ */
.closer { text-align: center; }
.closer-inner { max-width: 640px; margin: 0 auto; }
.closer-img {
  width: 190px; height: 190px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid var(--ink);
  box-shadow: 10px 10px 0 var(--peach);
  background: #fff;
  margin-bottom: 30px;
}
.bubble-big {
  font-size: clamp(19px, 2.5vw, 25px);
  background: var(--mint);
  padding: 26px 30px;
  border-radius: 34px;
  box-shadow: var(--shadow);
}
.bubble-big::after { left: 50%; margin-left: -9px; }
.closer-note { margin-top: 28px; font-size: 15px; color: var(--ink-soft); }

/* ============ FOOTER ============ */
.footer {
  position: relative;
  z-index: 1;
  background: var(--paper);
  border-top: 5px solid var(--ink);
  padding: 50px 28px 30px;
  margin-top: 40px;
}
.foot-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 34px;
}
.foot-grid p { font-size: 15px; color: var(--ink-soft); }
.foot-brand { font-size: 34px; margin-bottom: 8px; }
.foot-h { font-size: 19px; margin-bottom: 8px; }
.foot-bottom {
  max-width: 1160px;
  margin: 34px auto 0;
  padding-top: 20px;
  border-top: 2px dashed var(--ink);
  text-align: center;
  font-size: 15px;
  color: var(--ink-soft);
}

/* ============ TOAST ============ */
.toast {
  position: fixed;
  left: 50%;
  bottom: 34px;
  transform: translate(-50%, 160%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: var(--butter);
  border: var(--line);
  border-radius: 999px;
  padding: 14px 28px;
  box-shadow: var(--shadow);
  font-size: 17px;
  z-index: 100;
  transition: transform .3s cubic-bezier(.2,.9,.3,1.4), opacity .2s ease, visibility .2s;
  max-width: 90vw;
  text-align: center;
}
.toast.show { transform: translate(-50%, 0); opacity: 1; visibility: visible; }

/* ============ SCROLL REVEAL ============ */
.reveal-init { transition: opacity .5s ease, transform .5s ease; }
.reveal-init.reveal-pending {
  opacity: 0 !important;
  transform: translateY(24px) !important;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 70px; padding-top: 44px; }
  .hero-art { order: -1; }
  .portrait-frame { max-width: 320px; }
  .bubble-hero { left: -14px; bottom: -40px; max-width: 220px; font-size: 14px; }
  .nav-links { display: none; }
  .tl-item { grid-template-columns: 1fr; gap: 12px; }
  .tl-year { width: 110px; }
}
@media (max-width: 520px) {
  .nav { padding: 10px 16px; gap: 8px; }
  .section { padding: 34px 16px 50px; }
  .hero { padding: 34px 16px 40px; }
  .attest { padding: 22px 18px; }
  .attest-table td:nth-child(3) { display: none; }
  .btn { font-size: 16px; padding: 11px 20px; }
  .sticker-1 { width: 82px; height: 82px; font-size: 11px; top: -20px; right: -14px; }
  .sticker-2 { display: none; }

  /* nav content stops fitting around 375px — shrink brand, icons, button */
  .brand { font-size: 18px; gap: 8px; }
  .brand img { width: 34px; height: 34px; }
  .x-link, .sfx-toggle { width: 38px; height: 38px; }
  .x-link svg { width: 15px; height: 15px; }
  .sfx-toggle { font-size: 15px; }
  .btn-sm { font-size: 13px; padding: 7px 14px; }
}
@media (max-width: 360px) {
  .nav { gap: 6px; padding: 8px 12px; }
  .brand { font-size: 16px; gap: 6px; }
  .brand img { width: 30px; height: 30px; }
  .x-link, .sfx-toggle { width: 34px; height: 34px; }
  .x-link svg { width: 14px; height: 14px; }
  .btn-sm { font-size: 12px; padding: 6px 11px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
