:root {
  --bg: #090705;
  --bg-alt: #130f0c;
  --ink: #100d0a;
  --ink-soft: rgba(16, 13, 10, 0.72);
  --paper: #e8c89b;
  --paper-2: #f3e3c8;
  --paper-3: #d3ab72;
  --paper-dirty: #b9854f;
  --tape: #ead7b6;
  --tape-edge: #c49a62;
  --line: rgba(29, 20, 13, 0.28);
  --muted: #8d775e;
  --green: #8ff0c0;
  --green-deep: #4f8f6a;
  --shadow: rgba(0, 0, 0, 0.42);
  --mono: "IBM Plex Mono", monospace;
  --display: "Fraunces", serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--paper-2);
  background:
    radial-gradient(circle at 18% 10%, rgba(233, 198, 137, 0.12), transparent 24%),
    radial-gradient(circle at 82% 12%, rgba(143, 240, 192, 0.06), transparent 22%),
    radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.04), transparent 35%),
    linear-gradient(180deg, #090705 0%, #0d0b08 42%, #090705 100%);
  font-family: var(--mono);
  overflow-x: hidden;
}

button,
a {
  font: inherit;
}

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

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

.grain,
.paper-wash {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.grain {
  z-index: 50;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.paper-wash {
  z-index: 0;
  opacity: 0.85;
  filter: blur(10px);
}

.paper-wash--one {
  background:
    radial-gradient(circle at 20% 30%, rgba(211, 171, 114, 0.16), transparent 32%),
    radial-gradient(circle at 78% 64%, rgba(143, 240, 192, 0.04), transparent 30%);
}

.paper-wash--two {
  background:
    radial-gradient(circle at 65% 18%, rgba(243, 227, 200, 0.06), transparent 25%),
    radial-gradient(circle at 40% 88%, rgba(255, 255, 255, 0.04), transparent 22%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 86px;
  padding: 14px clamp(18px, 4vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(243, 227, 200, 0.14);
  background: rgba(9, 7, 5, 0.72);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font: 800 15px/0.82 var(--display);
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35));
}

.brand span {
  display: inline-flex;
  flex-direction: column;
}

.brand em {
  font-style: normal;
  color: var(--paper);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.main-nav a {
  padding: 10px 14px;
  border: 1px solid rgba(243, 227, 200, 0.16);
  background: rgba(232, 200, 155, 0.03);
  color: rgba(243, 227, 200, 0.74);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
  clip-path: polygon(2% 0, 98% 0, 100% 18%, 98% 100%, 2% 100%, 0 78%);
}

.main-nav a:hover {
  transform: translateY(-2px) rotate(-0.4deg);
  background: rgba(232, 200, 155, 0.1);
  color: var(--paper-2);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  cursor: pointer;
}

.button--gold {
  min-width: 136px;
  height: 46px;
  padding: 0 16px;
  color: var(--ink);
  background: linear-gradient(180deg, #f3deb7 0%, #ddb57d 100%);
  box-shadow:
    0 16px 28px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    inset 0 -2px 0 rgba(109, 77, 38, 0.22);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  clip-path: polygon(2% 0, 98% 0, 100% 16%, 96% 100%, 4% 100%, 0 84%);
}

.button--gold img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.button--gold:hover {
  transform: translateY(-2px);
  box-shadow:
    0 22px 32px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.48),
    inset 0 -2px 0 rgba(109, 77, 38, 0.22);
}

.page {
  position: relative;
  z-index: 1;
}

.section {
  position: relative;
  padding: clamp(28px, 4.8vw, 68px) clamp(18px, 6vw, 72px);
}

.section-kicker {
  margin-bottom: 18px;
  color: rgba(243, 227, 200, 0.66);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0;
  color: var(--paper);
  font-size: 10px;
  line-height: 1.8;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--display);
  letter-spacing: -0.06em;
  line-height: 0.86;
  font-weight: 800;
}

h1 {
  margin: 18px 0 22px;
  font-size: clamp(58px, 8vw, 142px);
}

h2 {
  margin: 14px 0 18px;
  font-size: clamp(44px, 6vw, 104px);
}

h1 em,
h2 em {
  display: inline-block;
  color: var(--paper);
  font-style: normal;
}

.hero {
  padding-top: 18px;
}

.hero-board {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.98fr) minmax(340px, 1.02fr);
  gap: clamp(22px, 3vw, 38px);
  align-items: stretch;
  padding: clamp(22px, 3.5vw, 42px);
  border: 1px solid rgba(45, 31, 21, 0.38);
  border-radius: 34px 22px 30px 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0) 14%),
    radial-gradient(circle at 12% 8%, rgba(255, 255, 255, 0.1), transparent 22%),
    radial-gradient(circle at 85% 18%, rgba(255, 255, 255, 0.08), transparent 26%),
    linear-gradient(135deg, rgba(243, 227, 200, 0.94) 0%, rgba(216, 167, 101, 0.95) 52%, rgba(184, 129, 70, 0.98) 100%);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.44),
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -22px 42px rgba(88, 54, 25, 0.14);
  overflow: hidden;
  transform: rotate(-0.35deg);
}

.hero-board::before,
.hero-board::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
}

.hero-board::before {
  left: -2%;
  top: 9%;
  width: 18%;
  height: 16px;
  background: linear-gradient(90deg, rgba(234, 215, 182, 0.88), rgba(214, 178, 121, 0.9));
  transform: rotate(-11deg);
  box-shadow: 0 2px 0 rgba(97, 72, 39, 0.18);
}

.hero-board::after {
  right: -1%;
  top: 15%;
  width: 20%;
  height: 16px;
  background: linear-gradient(90deg, rgba(214, 178, 121, 0.92), rgba(244, 224, 194, 0.86));
  transform: rotate(10deg);
  box-shadow: 0 2px 0 rgba(97, 72, 39, 0.18);
}

.hero-copy {
  position: relative;
  z-index: 1;
  align-self: center;
  padding: clamp(10px, 2vw, 22px) 0;
  color: var(--ink);
}

.hero-copy__text {
  max-width: 46ch;
  margin: 0;
  color: rgba(16, 13, 10, 0.78);
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.92;
}

.hero-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
  max-width: 520px;
}

.scrap-button {
  position: relative;
  min-height: 62px;
  padding: 13px 14px;
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(34, 24, 16, 0.24);
  background:
    linear-gradient(180deg, rgba(246, 234, 212, 0.96), rgba(213, 179, 132, 0.96)),
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), transparent);
  color: var(--ink);
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  clip-path: polygon(3% 0, 96% 0, 100% 18%, 97% 100%, 4% 100%, 0 82%);
}

.scrap-button::before {
  content: "";
  position: absolute;
  inset: 7px 8px auto auto;
  width: 22px;
  height: 7px;
  background: rgba(255, 255, 255, 0.18);
  transform: rotate(12deg);
  border-radius: 999px;
}

.scrap-button img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.scrap-button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.scrap-button span {
  justify-self: start;
  font-weight: 700;
}

.scrap-button small {
  color: rgba(16, 13, 10, 0.58);
  font-size: 8px;
  letter-spacing: 0.12em;
}

.scrap-button:hover {
  transform: translateY(-3px) rotate(-0.2deg);
  box-shadow:
    0 16px 28px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
  filter: saturate(1.06);
}

.scrap-button--buy {
  background:
    linear-gradient(180deg, rgba(244, 223, 190, 0.98), rgba(217, 174, 106, 0.98)),
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), transparent);
}

.hero-art {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 2vw, 24px);
  border: 1px solid rgba(34, 24, 16, 0.2);
  border-radius: 32px 24px 32px 24px;
  background:
    linear-gradient(180deg, rgba(15, 11, 8, 0.04), rgba(15, 11, 8, 0.02)),
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(135deg, rgba(61, 43, 28, 0.2), rgba(26, 18, 13, 0.4));
  box-shadow:
    0 22px 40px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  transform: rotate(1.15deg);
}

.hero-art__frame {
  position: relative;
  width: min(100%, 650px);
  border-radius: 28px 24px 26px 30px;
  padding: clamp(12px, 1.4vw, 20px);
  background:
    linear-gradient(180deg, rgba(241, 221, 190, 0.1), rgba(241, 221, 190, 0) 26%),
    linear-gradient(135deg, rgba(234, 214, 184, 0.2), rgba(18, 13, 9, 0.28));
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.hero-art__frame::before,
.hero-art__frame::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 12%;
  height: 22%;
  background: linear-gradient(180deg, rgba(234, 215, 182, 0.95), rgba(205, 160, 105, 0.88));
  opacity: 0.9;
  box-shadow: 0 2px 0 rgba(84, 59, 29, 0.2);
}

.hero-art__frame::before {
  left: 3%;
  top: 4%;
  transform: rotate(-24deg);
  clip-path: polygon(20% 0, 100% 18%, 82% 100%, 0 82%);
}

.hero-art__frame::after {
  right: 4%;
  top: 8%;
  transform: rotate(18deg);
  clip-path: polygon(0 16%, 80% 0, 100% 82%, 18% 100%);
}

.hero-art__frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: contrast(1.04) saturate(0.86);
}

.hero-art__note {
  position: absolute;
  right: 28px;
  bottom: 22px;
  padding: 10px 12px;
  border: 1px solid rgba(34, 24, 16, 0.24);
  background: rgba(8, 6, 4, 0.66);
  color: var(--paper-2);
  text-align: right;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.hero-art__note span {
  display: block;
  margin-bottom: 4px;
  color: rgba(243, 227, 200, 0.58);
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-art__note strong {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tape {
  position: absolute;
  z-index: 3;
  width: 112px;
  height: 22px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12), transparent 15%, transparent 85%, rgba(255, 255, 255, 0.1)),
    linear-gradient(180deg, rgba(237, 217, 184, 0.96), rgba(208, 164, 105, 0.92));
  border: 1px solid rgba(95, 68, 35, 0.16);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
  opacity: 0.92;
}

.tape::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(92, 69, 40, 0.08) 0 4px,
    transparent 4px 9px
  );
  opacity: 0.36;
}

.tape--tl {
  left: -10px;
  top: 16px;
  transform: rotate(-18deg);
}

.tape--tr {
  right: -8px;
  top: 24px;
  transform: rotate(17deg);
}

.tape--bl {
  left: -12px;
  bottom: 28px;
  transform: rotate(8deg);
}

.tape--br {
  right: -10px;
  bottom: 22px;
  transform: rotate(-12deg);
}

.roadmap-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(20px, 3vw, 38px);
  align-items: start;
  padding: clamp(22px, 3.5vw, 40px);
  border: 1px solid rgba(45, 31, 21, 0.34);
  border-radius: 30px 22px 28px 20px;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.08), transparent 24%),
    radial-gradient(circle at 78% 82%, rgba(143, 240, 192, 0.06), transparent 18%),
    linear-gradient(135deg, rgba(232, 200, 155, 0.1), rgba(18, 13, 9, 0.46));
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.roadmap-copy {
  position: sticky;
  top: 110px;
  align-self: start;
}

.roadmap-copy__text {
  margin: 0;
  max-width: 42ch;
  color: rgba(243, 227, 200, 0.74);
  font-size: 13px;
  line-height: 1.88;
}

.roadmap-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.roadmap-card {
  position: relative;
  min-height: 210px;
  padding: 22px 20px 20px;
  border: 1px solid rgba(34, 24, 16, 0.24);
  background:
    linear-gradient(180deg, rgba(245, 233, 212, 0.95), rgba(214, 177, 123, 0.94)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent);
  color: var(--ink);
  box-shadow:
    0 16px 28px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.roadmap-card::before {
  content: "";
  position: absolute;
  left: 16px;
  top: -10px;
  width: 96px;
  height: 20px;
  background: linear-gradient(180deg, rgba(239, 223, 192, 0.94), rgba(202, 158, 101, 0.92));
  border: 1px solid rgba(95, 68, 35, 0.16);
  transform: rotate(-6deg);
  box-shadow: 0 3px 0 rgba(88, 59, 27, 0.14);
}

.roadmap-card__tag {
  display: inline-flex;
  margin-bottom: 18px;
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(16, 13, 10, 0.58);
}

.roadmap-card h3 {
  margin-bottom: 14px;
  font: 800 clamp(22px, 2.3vw, 32px) / 0.98 var(--display);
  letter-spacing: -0.06em;
}

.roadmap-card p {
  margin: 0;
  max-width: 34ch;
  color: rgba(16, 13, 10, 0.76);
  font-size: 12px;
  line-height: 1.82;
}

.roadmap-card--tilt-a {
  transform: rotate(-1.8deg) translateY(6px);
}

.roadmap-card--tilt-b {
  transform: rotate(1.3deg) translateY(18px);
}

.roadmap-card--tilt-c {
  transform: rotate(-0.7deg) translateY(2px);
}

.roadmap-card--tilt-d {
  transform: rotate(1.6deg) translateY(14px);
}

.dex-shell {
  display: flex;
  justify-content: center;
}

.dex-window {
  width: min(100%, 1200px);
  border: 1px solid rgba(232, 200, 155, 0.36);
  background: rgba(7, 6, 5, 0.96);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.44),
    14px 14px 0 rgba(211, 171, 114, 0.1);
  overflow: hidden;
}

.dex-window__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  padding: 0 12px;
  border-bottom: 1px solid rgba(243, 227, 200, 0.16);
  background: linear-gradient(180deg, rgba(241, 227, 201, 0.08), rgba(241, 227, 201, 0.02));
}

.dex-window__bar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(243, 227, 200, 0.52);
}

.dex-window__bar strong {
  margin-left: auto;
  margin-right: auto;
  color: rgba(243, 227, 200, 0.68);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.dex-window__bar i {
  color: var(--green);
  font-style: normal;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dex-window iframe {
  width: 100%;
  height: min(74vh, 760px);
  min-height: 540px;
  border: 0;
  display: block;
  background: #050403;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 24px;
  align-items: center;
  min-height: 160px;
  padding: 34px clamp(18px, 6vw, 72px) 40px;
  color: rgba(243, 227, 200, 0.68);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand--footer {
  color: var(--paper-2);
}

.brand--footer img {
  width: 54px;
  height: 54px;
}

.site-footer p {
  margin: 0;
  max-width: 42ch;
  justify-self: center;
  text-align: center;
  line-height: 1.8;
}

.site-footer > span {
  justify-self: end;
}

@media (max-width: 1080px) {
  .hero-board {
    grid-template-columns: 1fr;
  }

  .roadmap-shell {
    grid-template-columns: 1fr;
  }

  .roadmap-copy {
    position: static;
  }
}

@media (max-width: 860px) {
  .site-header {
    min-height: 74px;
    padding-inline: 16px;
    flex-wrap: wrap;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
  }

  .button--gold {
    min-width: 118px;
    height: 40px;
    font-size: 10px;
  }

  .section {
    padding-inline: 16px;
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .hero-art {
    min-height: 0;
  }

  .roadmap-board {
    grid-template-columns: 1fr;
  }

  .roadmap-card--tilt-a,
  .roadmap-card--tilt-b,
  .roadmap-card--tilt-c,
  .roadmap-card--tilt-d {
    transform: none;
  }

  .dex-window iframe {
    height: 62vh;
    min-height: 420px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .site-footer p,
  .site-footer > span {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 38px;
  }

  .hero-board,
  .roadmap-shell {
    padding: 18px;
  }

  .hero-art__note {
    right: 16px;
    bottom: 14px;
  }

  .scrap-button {
    min-height: 56px;
    padding-inline: 12px;
    font-size: 10px;
  }

  .dex-window iframe {
    min-height: 360px;
  }
}

/* Hero v2 — an oversized classified shipping file, not a split landing card. */
.hero.section {
  padding: 0;
}

.hero-case {
  position: relative;
  min-height: calc(100svh - 86px - 58px);
  padding: clamp(76px, 9vh, 112px) clamp(28px, 5vw, 76px) 32px;
  display: grid;
  grid-template-columns: minmax(520px, 0.92fr) minmax(440px, 1.08fr);
  isolation: isolate;
  overflow: hidden;
  color: #18140f;
  border-bottom: 1px solid rgba(37, 25, 15, 0.36);
  background:
    linear-gradient(90deg, rgba(59, 37, 18, 0.07) 1px, transparent 1px) 0 0 / 48px 48px,
    linear-gradient(rgba(59, 37, 18, 0.04) 1px, transparent 1px) 0 0 / 48px 48px,
    radial-gradient(circle at 74% 42%, rgba(94, 155, 125, 0.18), transparent 24%),
    radial-gradient(circle at 8% 2%, rgba(255, 255, 255, 0.62), transparent 27%),
    linear-gradient(116deg, #f1dfbf 0%, #e2c18e 56%, #bd8350 100%);
}

.hero-case::before,
.hero-case::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-case::before {
  z-index: -1;
  left: -8%;
  bottom: -34%;
  width: 124%;
  height: 61%;
  background:
    radial-gradient(ellipse at 48% 0%, rgba(255, 255, 255, 0.42), transparent 62%),
    linear-gradient(174deg, transparent 0 18%, rgba(246, 229, 198, 0.64) 18.4% 38%, rgba(160, 109, 62, 0.12) 38.5% 39%, transparent 40%);
  transform: rotate(-2deg);
}

.hero-case::after {
  z-index: 1;
  right: -8%;
  top: 17%;
  width: 41%;
  height: 14px;
  background: rgba(236, 211, 168, 0.74);
  border-block: 1px solid rgba(103, 69, 35, 0.18);
  box-shadow: 0 4px 10px rgba(77, 48, 22, 0.13);
  transform: rotate(10deg);
}

.hero-case__meta {
  position: absolute;
  z-index: 6;
  top: 24px;
  left: clamp(28px, 5vw, 76px);
  right: clamp(28px, 5vw, 76px);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(35, 24, 15, 0.24);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.hero-case__copy {
  position: relative;
  z-index: 5;
  align-self: center;
  width: min(100%, 690px);
  padding: 14px 0 24px;
}

.hero-case__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 clamp(20px, 3.2vh, 34px);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.hero-case__eyebrow span {
  font: 400 26px/1 var(--mono);
}

.hero-case__title {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(94px, 11.2vw, 180px);
  font-weight: 400;
  line-height: 0.72;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

.hero-case__title span,
.hero-case__title em {
  display: block;
}

.hero-case__title .hero-case__name {
  font-size: 0.5em;
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.hero-case__title em {
  color: #74502f;
  font-style: normal;
}

.hero-case__intro {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: clamp(28px, 4vh, 42px);
}

.hero-case__intro strong {
  padding: 8px 12px;
  border: 1px solid rgba(22, 18, 14, 0.62);
  background: #87d6bd;
  box-shadow: 4px 4px 0 rgba(93, 50, 51, 0.28);
  font-size: 10px;
  letter-spacing: 0.05em;
  transform: rotate(-3deg);
}

.hero-case__intro p {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
}

.hero-case__intro p strong {
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
  font-size: inherit;
  letter-spacing: 0;
  transform: none;
}

.hero-case__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 590px);
  margin-top: 24px;
}

.case-link {
  min-height: 58px;
  padding: 10px 13px;
  display: grid;
  grid-template-columns: 25px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(28, 21, 14, 0.56);
  background: rgba(246, 232, 207, 0.52);
  box-shadow: 3px 3px 0 rgba(63, 40, 21, 0.12);
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.case-link:nth-child(2) {
  transform: rotate(0.35deg);
}

.case-link:nth-child(3) {
  transform: rotate(-0.4deg);
}

.case-link span {
  overflow: hidden;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.case-link small {
  color: rgba(24, 20, 15, 0.52);
  font-size: 7px;
  letter-spacing: 0.1em;
}

.case-link .brand-icon {
  width: 22px;
  height: 22px;
  justify-self: center;
}

.case-link .brand-icon--x {
  width: 18px;
  height: 18px;
}

.case-link .brand-icon--dexscreener {
  border-radius: 4px;
}

.case-link--buy {
  color: #f5e8d1;
  background: #191714;
  box-shadow: 4px 4px 0 rgba(85, 54, 29, 0.28);
}

.case-link--buy small {
  color: rgba(245, 232, 209, 0.56);
}

.case-link:hover {
  transform: translateY(-3px) rotate(0);
  background: #f7e9cf;
  box-shadow: 5px 6px 0 rgba(63, 40, 21, 0.18);
}

.case-link--buy:hover {
  color: #fff3df;
  background: #302b25;
}

.hero-case__footnote {
  width: min(100%, 590px);
  margin-top: 19px;
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(30, 22, 15, 0.26);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.hero-case__visual {
  position: relative;
  z-index: 2;
  min-height: 690px;
}

.hero-case__rings {
  position: absolute;
  z-index: -1;
  top: 11%;
  right: 4%;
  width: min(88%, 690px);
  aspect-ratio: 1;
  border: 1px solid rgba(31, 26, 20, 0.2);
  border-radius: 50%;
  box-shadow:
    0 0 0 26px rgba(255, 255, 255, 0.045),
    0 0 0 54px rgba(49, 34, 21, 0.045),
    inset 0 0 0 72px rgba(255, 255, 255, 0.035);
}

.hero-case__character {
  position: absolute;
  z-index: 2;
  right: clamp(-58px, -1vw, -12px);
  bottom: clamp(-126px, -9vh, -72px);
  width: auto;
  max-width: none;
  height: min(89vh, 850px);
  object-fit: contain;
  transform: rotate(0.6deg);
  transform-origin: 52% 82%;
  filter: contrast(1.03) saturate(0.9) drop-shadow(28px 35px 27px rgba(51, 31, 14, 0.3));
  animation: hero-package-float 7s ease-in-out infinite;
}

.hero-case__tape {
  position: absolute;
  z-index: 4;
  width: 142px;
  height: 30px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 7px, transparent 7px 10px),
    rgba(232, 207, 163, 0.78);
  border-block: 1px solid rgba(116, 79, 42, 0.14);
  box-shadow: 0 4px 10px rgba(71, 42, 18, 0.14);
}

.hero-case__tape--one {
  top: 18%;
  left: 4%;
  transform: rotate(-24deg);
}

.hero-case__tape--two {
  right: 1%;
  bottom: 17%;
  transform: rotate(-11deg);
}

.hero-case__warning {
  position: absolute;
  z-index: 5;
  top: 3%;
  right: 2%;
  padding: 11px 16px;
  border: 1px solid rgba(39, 26, 15, 0.34);
  background: rgba(239, 221, 189, 0.9);
  box-shadow: 4px 5px 0 rgba(82, 50, 24, 0.15);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.13em;
  transform: rotate(5deg);
}

.hero-case__stamp {
  position: absolute;
  z-index: 5;
  right: 4%;
  bottom: 13%;
  width: 104px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  border: 2px solid rgba(35, 72, 55, 0.72);
  border-radius: 50%;
  color: rgba(35, 72, 55, 0.82);
  box-shadow: inset 0 0 0 4px rgba(236, 211, 166, 0.74);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: 0.08em;
  text-align: center;
  transform: rotate(-11deg);
}

.hero-case__stamp span {
  display: block;
  font-size: 20px;
  letter-spacing: -0.04em;
}

.hero-case__barcode {
  position: absolute;
  z-index: 5;
  left: 3%;
  bottom: 7%;
  width: 150px;
  padding: 9px 10px 8px;
  background: rgba(242, 224, 192, 0.84);
  box-shadow: 4px 5px 0 rgba(66, 41, 21, 0.15);
  font-size: 7px;
  letter-spacing: 0.09em;
  transform: rotate(2deg);
}

.hero-case__barcode i {
  display: block;
  height: 28px;
  margin-top: 7px;
  background: repeating-linear-gradient(90deg, #17130f 0 2px, transparent 2px 5px, #17130f 5px 6px, transparent 6px 10px);
}

.hero-case__side-note {
  position: absolute;
  z-index: 6;
  right: 11px;
  top: 46%;
  margin: 0;
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.13em;
  writing-mode: vertical-rl;
}

.hero-ticker {
  height: 58px;
  overflow: hidden;
  color: #f0d8b5;
  background: #15130f;
  border-bottom: 1px solid rgba(240, 216, 181, 0.18);
}

.hero-ticker div {
  width: max-content;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
  padding-left: 28px;
  font-family: "Archivo Black", sans-serif;
  font-size: 18px;
  white-space: nowrap;
  animation: hero-ticker-slide 20s linear infinite;
}

.hero-ticker i {
  color: #87d6bd;
  font-style: normal;
  font-size: 16px;
}

@keyframes hero-package-float {
  0%, 100% { transform: translateY(0) rotate(0.6deg); }
  50% { transform: translateY(-10px) rotate(-0.2deg); }
}

@keyframes hero-ticker-slide {
  to { transform: translateX(-50%); }
}

@media (max-width: 1120px) {
  .hero-case {
    grid-template-columns: minmax(440px, 0.92fr) minmax(390px, 1.08fr);
  }

  .hero-case__title {
    font-size: clamp(88px, 11.2vw, 144px);
  }

  .hero-case__character {
    right: -92px;
    height: min(82vh, 760px);
  }

  .case-link small {
    display: none;
  }
}

@media (max-width: 860px) {
  .hero-case {
    min-height: auto;
    padding: 76px 24px 0;
    grid-template-columns: 1fr;
  }

  .hero-case__copy {
    width: 100%;
    padding-bottom: 0;
  }

  .hero-case__title {
    width: min-content;
    font-size: clamp(94px, 22vw, 154px);
  }

  .hero-case__links,
  .hero-case__footnote {
    width: min(100%, 620px);
  }

  .hero-case__visual {
    min-height: 590px;
    margin-top: -76px;
  }

  .hero-case__rings {
    top: 16%;
    right: 50%;
    width: min(84vw, 590px);
    transform: translateX(50%);
  }

  .hero-case__character {
    right: 50%;
    bottom: -120px;
    height: 650px;
    transform: translateX(50%);
    animation: hero-package-float-mobile 7s ease-in-out infinite;
  }

  .hero-case__warning {
    top: 19%;
    right: 1%;
  }

  .hero-case__tape--one {
    top: 24%;
  }

  .hero-case__barcode {
    left: 0;
    bottom: 9%;
  }

  .hero-case__stamp {
    right: 1%;
    bottom: 10%;
  }

  .hero-case__side-note {
    display: none;
  }
}

@keyframes hero-package-float-mobile {
  0%, 100% { transform: translateX(50%) translateY(0) rotate(0.6deg); }
  50% { transform: translateX(50%) translateY(-9px) rotate(-0.2deg); }
}

@media (max-width: 560px) {
  .hero-case {
    padding: 68px 18px 0;
  }

  .hero-case__meta {
    top: 18px;
    left: 18px;
    right: 18px;
  }

  .hero-case__meta span:last-child {
    display: none;
  }

  .hero-case__eyebrow {
    margin-bottom: 20px;
    font-size: 8px;
  }

  .hero-case__title {
    font-size: clamp(78px, 24vw, 112px);
  }

  .hero-case__intro {
    margin-top: 28px;
  }

  .hero-case__intro p {
    font-size: 10px;
  }

  .hero-case__links {
    gap: 8px;
    margin-top: 22px;
  }

  .case-link {
    min-height: 52px;
    padding: 9px 10px;
    grid-template-columns: 21px minmax(0, 1fr);
    gap: 8px;
    font-size: 8px;
  }

  .case-link small {
    display: none;
  }

  .case-link .brand-icon {
    width: 20px;
    height: 20px;
  }

  .case-link .brand-icon--x {
    width: 16px;
    height: 16px;
  }

  .hero-case__footnote {
    font-size: 6px;
  }

  .hero-case__visual {
    min-height: 455px;
    margin-top: -24px;
  }

  .hero-case__character {
    bottom: -86px;
    height: 510px;
  }

  .hero-case__warning {
    top: 13%;
    padding: 8px 10px;
    font-size: 6px;
  }

  .hero-case__tape {
    width: 96px;
    height: 22px;
  }

  .hero-case__tape--one {
    top: 20%;
    left: -4%;
  }

  .hero-case__tape--two {
    right: -5%;
  }

  .hero-case__barcode {
    bottom: 5%;
    width: 112px;
  }

  .hero-case__stamp {
    bottom: 6%;
    width: 78px;
    font-size: 7px;
  }

  .hero-case__stamp span {
    font-size: 15px;
  }

  .hero-ticker {
    height: 50px;
  }

  .hero-ticker div {
    gap: 22px;
    padding-left: 22px;
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-case__character,
  .hero-ticker div {
    animation: none;
  }
}

/* Final art direction: the character is composited directly into the paper scene. */
.hero-board {
  overflow: hidden;
  isolation: isolate;
}

.hero-board::before {
  width: 24%;
  height: 19px;
  top: 8%;
  opacity: .8;
}

.hero-board::after {
  width: 27%;
  height: 19px;
  top: 12%;
  opacity: .76;
}

.hero-art {
  min-height: clamp(560px, 62vw, 790px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
  isolation: auto;
  overflow: visible;
}

.hero-art::before,
.hero-art::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-art::before {
  z-index: -1;
  width: 78%;
  aspect-ratio: 1;
  border: 1px solid rgba(28, 21, 14, .28);
  border-radius: 50%;
  transform: rotate(-13deg);
  box-shadow:
    inset 0 0 0 19px rgba(255, 255, 255, .035),
    0 0 0 36px rgba(112, 74, 39, .045);
}

.hero-art::after {
  z-index: 2;
  right: 3%;
  top: 16%;
  width: 104px;
  aspect-ratio: 1;
  border: 2px solid rgba(40, 27, 15, .55);
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px rgba(230, 198, 151, .52);
  transform: rotate(13deg);
  opacity: .68;
}

.hero-art__frame {
  width: min(100%, 720px);
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  isolation: auto;
}

.hero-art__frame::before,
.hero-art__frame::after {
  display: none;
}

.hero-art__frame img {
  width: 100%;
  max-height: 780px;
  object-fit: contain;
  mix-blend-mode: normal;
  filter: contrast(1.04) saturate(.88) drop-shadow(18px 24px 22px rgba(61, 39, 18, .2));
  transform: translateY(2%);
  transform-origin: 50% 80%;
  animation: character-breathe 7s ease-in-out infinite;
}

.hero-art__note {
  right: 3%;
  bottom: 11%;
  padding: 11px 14px 9px;
  border: 1px solid rgba(38, 25, 14, .4);
  background: rgba(244, 226, 196, .9);
  color: var(--ink);
  box-shadow: 3px 4px 0 rgba(81, 52, 26, .2);
  transform: rotate(-6deg);
}

.hero-art__note span {
  color: rgba(16, 13, 10, .55);
}

.hero-art__note strong {
  font-size: 12px;
}

.tape {
  width: 132px;
  height: 27px;
  box-shadow: 0 3px 8px rgba(62, 40, 20, .18);
}

.tape--tl { left: 7%; top: 12%; transform: rotate(-23deg); }
.tape--tr { right: 0; top: 17%; transform: rotate(18deg); }
.tape--bl { left: 4%; bottom: 14%; transform: rotate(9deg); }
.tape--br { right: 3%; bottom: 9%; transform: rotate(-13deg); }

.roadmap-shell {
  background:
    radial-gradient(circle at 15% 18%, rgba(232, 200, 155, .13), transparent 22%),
    repeating-linear-gradient(8deg, transparent 0 31px, rgba(232, 200, 155, .022) 32px 33px),
    #15110d;
}

.roadmap-card {
  transition: transform .24s ease, box-shadow .24s ease;
}

.roadmap-card:hover {
  z-index: 3;
  transform: rotate(0) translateY(-8px) !important;
  box-shadow:
    0 22px 34px rgba(0, 0, 0, .25),
    7px 7px 0 rgba(143, 240, 192, .22),
    inset 0 1px 0 rgba(255, 255, 255, .45);
}

.roadmap-card__tag {
  padding: 5px 7px;
  border: 1px solid rgba(16, 13, 10, .38);
  color: rgba(16, 13, 10, .72);
}

.dex-window {
  outline: 12px solid rgba(183, 133, 79, .1);
  outline-offset: 8px;
}

/* Unmodified platform marks: keep every CTA crisp and immediately recognizable. */
.brand-icon {
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
  filter: none;
}

.brand-icon--dexscreener {
  padding: 2px;
  border-radius: 4px;
  background: #121417;
}

.button--gold .brand-icon {
  width: 22px;
  height: 22px;
}

.scrap-button .brand-icon {
  width: 23px;
  height: 23px;
  justify-self: center;
}

.scrap-button .brand-icon--x {
  width: 20px;
  height: 20px;
}

.scrap-button .brand-icon--dexscreener {
  border-radius: 4px;
}

@keyframes character-breathe {
  0%, 100% { transform: translateY(2%) rotate(-.25deg); }
  50% { transform: translateY(1%) rotate(.35deg); }
}

@media (max-width: 1080px) {
  .hero-art {
    min-height: min(82vw, 760px);
    width: min(100%, 680px);
    justify-self: center;
  }
}

@media (max-width: 860px) {
  .hero-art {
    min-height: min(118vw, 680px);
  }

  .hero-art__frame img {
    max-height: min(118vw, 680px);
  }

  .hero-art::after {
    width: 76px;
    top: 11%;
  }
}

@media (max-width: 520px) {
  .hero-art {
    min-height: 470px;
    margin-top: -14px;
  }

  .hero-art__frame img {
    max-height: 490px;
  }

  .hero-art__note {
    right: 0;
    bottom: 8%;
  }

  .tape {
    width: 92px;
    height: 21px;
  }
}
