:root {
  --green: #16a34a;
  --green-dark: #0f6b34;
  --ink: #101513;
  --muted: #53605a;
  --paper: #f7f4ea;
  --paper-strong: #fffdf5;
  --blue-gray: #243647;
  --line: rgba(16, 21, 19, 0.2);
  --shadow: 6px 6px 0 #111;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(247, 244, 234, 0.78);
  border-bottom: 2px solid rgba(16, 21, 19, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  font-size: 1.45rem;
}

.brand-word {
  color: #050505;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand-i {
  color: var(--green);
}

.mini-brand,
.small-brand,
.text-brand {
  display: inline-block;
  letter-spacing: -0.02em;
}

.button-brand {
  color: #050505;
  margin: 0 4px;
}

.final-brand {
  color: #050505;
}

.stamp-brand {
  letter-spacing: -0.02em;
}

.footer .brand-word {
  color: #050505;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 800;
}

.nav a:hover {
  color: var(--green-dark);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 4px 4px 0 var(--ink);
  cursor: pointer;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.header-cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--ink);
}

.button-primary,
.header-cta {
  color: white;
  background: var(--green);
}

.button-secondary {
  background: var(--paper-strong);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.2);
}

.section {
  position: relative;
  padding: 0 24px;
  overflow: hidden;
  background-color: var(--paper);
}

.section:nth-of-type(even) .wash {
  background: rgba(247, 244, 234, 0.82);
}

.section-bg {
  background-image: var(--bg-image);
  background-position: center;
  background-size: cover;
}

.section-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: clamp(76px, 8vw, 104px) 0;
}

.hero {
  min-height: 690px;
  display: flex;
  align-items: center;
}

.hero-inner {
  padding-top: 108px;
  padding-bottom: 108px;
}

.wash {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(255, 253, 245, 0.76);
}

.wash-hero {
  background: linear-gradient(90deg, rgba(255, 253, 245, 0.62), rgba(255, 253, 245, 0.84) 42%, rgba(255, 253, 245, 0.5));
}

.wash-light {
  background: rgba(255, 253, 245, 0.68);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-dark);
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 12px;
  font-size: clamp(5rem, 18vw, 13rem);
  line-height: 0.82;
  font-weight: 900;
}

h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 6vw, 5.6rem);
  line-height: 0.96;
  font-weight: 900;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
}

.hero-subtitle {
  max-width: 720px;
  margin-bottom: 8px;
  font-size: clamp(1.45rem, 3vw, 2.45rem);
  line-height: 1.1;
  font-weight: 900;
}

.hero-line,
.section-copy,
.wide-copy p,
.final-cta p {
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.55;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(28px, 6vw, 80px);
}

.sketch-card,
.meme-card,
.panel,
.asset-card,
.timeline article {
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid var(--ink);
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.sketch-card:hover,
.meme-card:hover,
.panel:hover,
.asset-card:hover,
.timeline article:hover {
  transform: translateY(-3px) rotate(-0.3deg);
  border-color: var(--green);
}

.checker-card {
  padding: clamp(22px, 4vw, 34px);
}

.checker-card label {
  display: block;
  margin-bottom: 10px;
  font-weight: 900;
}

.checker-form {
  display: grid;
  gap: 12px;
}

input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  color: var(--ink);
  background: white;
  border: 2px solid var(--ink);
  border-radius: 8px;
  outline: none;
}

input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.16);
}

.loading-lines {
  min-height: 30px;
  margin-top: 16px;
  color: var(--green-dark);
  font-family: "Comic Sans MS", "Segoe Print", cursive;
  font-size: 1.4rem;
}

.result-card {
  position: relative;
  margin-top: 20px;
  padding: 30px 22px 22px;
  background: #fffbf0;
  border: 2px dashed rgba(16, 21, 19, 0.55);
  border-radius: 8px;
}

.result-card p {
  margin-bottom: 10px;
}

.stamp-label {
  position: absolute;
  top: -17px;
  right: 14px;
  padding: 6px 10px;
  color: var(--green-dark);
  background: #fffbf0;
  border: 2px solid var(--green-dark);
  border-radius: 6px;
  font-family: "Comic Sans MS", "Segoe Print", cursive;
  font-size: 1.28rem;
  transform: rotate(-5deg);
}

.reason {
  color: var(--green-dark);
  font-weight: 900;
}

.hidden {
  display: none;
}

.wide-copy {
  max-width: 760px;
  margin-bottom: 30px;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid article {
  padding: 24px;
}

.card-icon,
.meme-card span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  color: white;
  background: var(--green);
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-weight: 900;
}

.section-heading {
  margin-bottom: 30px;
}

.meme-grid,
.asset-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.meme-card {
  min-height: 180px;
  padding: 22px;
}

.meme-card:hover {
  box-shadow: 7px 7px 0 var(--ink);
}

.bottom-line {
  margin: 28px 0 0;
  color: var(--green-dark);
  font-size: 1.2rem;
  font-weight: 900;
}

.comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 26px;
}

.panel {
  padding: clamp(24px, 4vw, 36px);
}

.panel h3 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.panel li {
  padding: 14px 16px;
  background: white;
  border: 2px solid rgba(16, 21, 19, 0.14);
  border-radius: 8px;
  font-weight: 900;
}

.wall {
  background: rgba(36, 54, 71, 0.9);
  color: white;
}

.wall li {
  color: var(--ink);
}

.centered {
  margin-inline: auto;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(150px, 1fr));
  gap: 14px;
}

.timeline article {
  min-height: 185px;
  padding: 20px;
}

.timeline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: white;
  background: var(--green);
  border-radius: 50%;
  font-weight: 900;
}

.token-wrap {
  display: flex;
  justify-content: flex-end;
}

.token-card {
  width: min(100%, 520px);
  padding: clamp(26px, 5vw, 44px);
}

.token-card h2 {
  margin-bottom: 22px;
}

dl {
  display: grid;
  gap: 12px;
  margin: 0 0 22px;
}

dl div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 2px solid rgba(16, 21, 19, 0.12);
}

dt {
  color: var(--muted);
  font-weight: 800;
}

dd {
  margin: 0;
  font-weight: 900;
}

.disclaimer {
  color: var(--muted);
}

.asset-grid {
  margin-bottom: 28px;
}

.asset-card {
  min-height: 150px;
  display: grid;
  place-items: center;
  padding: 18px;
  color: var(--green-dark);
  background:
    radial-gradient(circle at 18% 20%, rgba(22, 163, 74, 0.18), transparent 24%),
    rgba(255, 253, 245, 0.92);
  font-family: "Comic Sans MS", "Segoe Print", cursive;
  font-size: 1.7rem;
}

.final-cta {
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 253, 245, 0.96), rgba(237, 244, 234, 0.96)),
    var(--paper-strong);
  color: var(--ink);
  border-top: 2px solid rgba(16, 21, 19, 0.08);
}

.final-cta .section-inner {
  padding: clamp(78px, 10vw, 118px) 0;
}

.final-cta h2,
.final-cta p {
  margin-inline: auto;
}

.final-cta p {
  color: var(--muted);
  font-size: 1.45rem;
  font-weight: 900;
}

.center-row {
  justify-content: center;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: var(--muted);
  background: var(--paper-strong);
  border-top: 2px solid var(--ink);
}

.footer strong {
  color: var(--ink);
}

.section-divider {
  position: relative;
  z-index: 4;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0.94;
}

.section-divider span {
  height: 2px;
  flex: 1;
  background: repeating-linear-gradient(
    90deg,
    #111 0 10px,
    transparent 10px 16px
  );
}

.section-divider strong {
  color: var(--green);
  font-family: "Comic Sans MS", "Segoe Print", cursive;
  font-size: 26px;
  line-height: 1;
  transform: rotate(-8deg);
}

.section-divider em {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  color: var(--green-dark);
  background: var(--paper-strong);
  border: 2px solid var(--ink);
  border-radius: 999px;
  box-shadow: 3px 3px 0 var(--ink);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transform: rotate(1.5deg);
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  padding: 14px 18px;
  color: white;
  background: var(--green-dark);
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 5px 5px 0 var(--ink);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.doodle {
  position: absolute;
  z-index: 2;
  color: var(--green);
  font-family: "Comic Sans MS", "Segoe Print", cursive;
  font-weight: 900;
  pointer-events: none;
}

.doodle-x {
  top: 18%;
  right: 22%;
  font-size: 4rem;
  transform: rotate(16deg);
}

.doodle-rocket {
  top: 31%;
  right: 12%;
  font-size: 5rem;
  transform: rotate(45deg);
}

.doodle-paper {
  top: 20%;
  left: 48%;
  width: 54px;
  height: 38px;
  border: 2px solid var(--green);
  border-radius: 4px;
  transform: rotate(-10deg);
}

.decor {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 2;
}

.float {
  animation: floaty 4s ease-in-out infinite;
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }

  50% {
    transform: translateY(-10px) rotate(2deg);
  }
}

.asset-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 14px;
}

.stamp {
  transform: rotate(-7deg);
  filter: drop-shadow(2px 3px 0 rgba(0, 0, 0, 0.25));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.brand-logo {
  width: 92px;
  max-height: 34px;
  object-fit: contain;
}

.brand-logo:not([style*="display: none"]) + .brand-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.header-spark {
  right: clamp(10px, 2vw, 28px);
  top: 54px;
  width: 26px;
  opacity: 0.9;
}

.hero-logo-mark {
  width: min(240px, 70vw);
  max-height: 72px;
  object-fit: contain;
  margin-bottom: 10px;
}

.hero-logo-mark:not([style*="display: none"]) + h1 {
  display: none;
}

.hero-icon {
  width: clamp(54px, 8vw, 104px);
  opacity: 0.88;
}

.hero-bell {
  top: 16%;
  left: 6%;
}

.hero-rocket {
  top: 16%;
  right: 8%;
}

.hero-shares {
  top: 34%;
  right: 23%;
  width: clamp(62px, 10vw, 128px);
}

.hero-badge {
  top: 52%;
  left: clamp(18px, 9vw, 150px);
  width: clamp(110px, 16vw, 190px);
}

.floating-x {
  top: 28%;
  right: 36%;
  width: 38px;
}

.floating-sparkles {
  bottom: 16%;
  right: 12%;
  width: 74px;
  opacity: 0.78;
}

.section-divider img {
  width: min(360px, 52vw);
  max-height: 74px;
  object-fit: contain;
  filter: drop-shadow(2px 3px 0 rgba(0, 0, 0, 0.12));
}

.checker-card {
  position: relative;
}

.checker-watermark {
  right: 16px;
  top: 14px;
  width: 108px;
  opacity: 0.18;
}

.loading-art {
  width: min(100%, 360px);
  margin: 10px 0 0;
  object-fit: contain;
}

.result-stamp,
.zero-stamp {
  position: absolute;
  object-fit: contain;
  z-index: 2;
}

.result-stamp {
  top: -46px;
  right: 14px;
  width: clamp(132px, 22vw, 210px);
}

.zero-stamp {
  right: 18px;
  bottom: 14px;
  width: 112px;
  opacity: 0.75;
}

.meme-thumb {
  display: block;
  width: 84px;
  height: 72px;
  margin-bottom: 14px;
  object-fit: contain;
}

.panel {
  position: relative;
}

.panel-badge {
  position: absolute;
  top: -30px;
  right: 18px;
  width: clamp(104px, 17vw, 170px);
  object-fit: contain;
  transform: rotate(4deg);
  filter: drop-shadow(2px 3px 0 rgba(0, 0, 0, 0.2));
}

.main-mode-badge {
  display: none;
}

.main.ipoor-active {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.15), 6px 6px 0 #111;
}

.main.ipoor-active .main-mode-badge {
  display: block;
}

.panel li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.panel li img {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  object-fit: contain;
}

.timeline article {
  position: relative;
}

.token-card {
  position: relative;
  overflow: hidden;
}

.token-watermark {
  position: absolute;
  right: -28px;
  top: 22px;
  width: 180px;
  opacity: 0.08;
}

.token-logo {
  width: 92px;
  height: 92px;
  object-fit: contain;
  margin-bottom: 10px;
}

.meme-score-row dd {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-size: clamp(1.5rem, 4vw, 2.35rem);
}

.meme-score-row dd img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.asset-card {
  min-height: 190px;
  grid-template-rows: 1fr auto;
  gap: 12px;
}

.asset-card img {
  width: 100%;
  height: 118px;
  object-fit: contain;
  border-radius: 10px;
}

.asset-card span {
  display: block;
  text-align: center;
}

.final-cta {
  background: var(--blue-gray);
  color: white;
  border-top: 2px solid rgba(255, 255, 255, 0.14);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.final-cta .brand-word {
  color: white;
}

.cta-logo {
  left: clamp(16px, 8vw, 120px);
  bottom: 24px;
  width: clamp(90px, 16vw, 170px);
  opacity: 0.8;
}

.cta-rocket {
  right: clamp(18px, 10vw, 160px);
  top: 22%;
  width: clamp(70px, 12vw, 140px);
}

.cta-stamp {
  left: 16%;
  top: 18%;
  width: clamp(112px, 17vw, 190px);
  opacity: 0.85;
}

.cta-sparkles {
  right: 18%;
  bottom: 18%;
  width: 90px;
  opacity: 0.65;
}

.footer {
  position: relative;
}

.footer strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-logo {
  width: 76px;
  max-height: 28px;
  object-fit: contain;
}

.footer-logo:not([style*="display: none"]) + .footer-brand-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.footer-sparkle {
  position: absolute;
  right: 18px;
  top: 16px;
  width: 24px;
  opacity: 0.55;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    grid-column: 1 / -1;
    order: 3;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .split,
  .three,
  .comparison {
    grid-template-columns: 1fr;
  }

  .meme-grid,
  .asset-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .token-wrap {
    justify-content: center;
  }

  .hero-badge,
  .hero-shares,
  .floating-sparkles,
  .panel-badge {
    opacity: 0.55;
  }
}

@media (max-width: 560px) {
  .section {
    padding-inline: 14px;
  }

  .section-inner {
    width: min(100%, 1180px);
    padding: 68px 0;
  }

  .hero {
    min-height: 620px;
  }

  .header-cta,
  .button {
    width: 100%;
  }

  .site-header {
    gap: 12px;
  }

  .header-cta {
    width: auto;
    min-height: 40px;
    padding: 9px 12px;
  }

  .button-row {
    flex-direction: column;
  }

  .section-divider {
    gap: 8px;
    padding: 14px 0;
  }

  .section-divider em {
    display: none;
  }

  .meme-grid,
  .asset-grid {
    grid-template-columns: 1fr;
  }

  dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .doodle {
    display: none;
  }

  .hero-bell,
  .hero-shares,
  .floating-x,
  .floating-sparkles,
  .checker-watermark,
  .cta-logo,
  .cta-stamp,
  .cta-sparkles {
    display: none;
  }

  .hero-rocket,
  .cta-rocket {
    width: 64px;
    opacity: 0.55;
  }

  .section-divider img {
    width: min(230px, 55vw);
  }

  .result-stamp {
    width: 118px;
    top: -32px;
  }

  .zero-stamp {
    display: none;
  }
}

/* Layout issue fixes: hero balance and timeline text safety */
.hero {
  min-height: 720px;
  display: block;
  background-position: center right;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 52%;
  z-index: 1;
  pointer-events: none;
}

.hero .wash-hero {
  background:
    linear-gradient(90deg, rgba(250, 248, 240, 0.94) 0%, rgba(250, 248, 240, 0.86) 38%, rgba(250, 248, 240, 0.28) 61%, rgba(250, 248, 240, 0.06) 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 76px);
  max-width: 1180px;
  min-height: 720px;
  padding-top: clamp(88px, 10vw, 128px);
  padding-bottom: clamp(70px, 8vw, 112px);
  margin-left: max(24px, calc((100vw - 1180px) / 2));
  margin-right: auto;
}

.hero-inner > * {
  grid-column: 1;
  position: relative;
  z-index: 3;
}

.hero h1 {
  max-width: 520px;
  font-size: clamp(4.5rem, 10vw, 8.5rem);
  line-height: 0.85;
  margin-bottom: 16px;
}

.hero-subtitle {
  max-width: 500px;
  font-size: clamp(1.35rem, 2.2vw, 2.2rem);
  line-height: 1.05;
}

.hero-line {
  max-width: 500px;
  font-size: clamp(1.02rem, 1.5vw, 1.32rem);
}

.hero .button-row {
  gap: 12px;
}

.hero .button {
  min-height: 48px;
  padding: 12px 18px;
  border-width: 2px;
  border-radius: 10px;
  box-shadow: 5px 5px 0 #111;
  font-size: 0.9rem;
}

.hero-logo-mark {
  width: min(154px, 42vw);
  max-height: 48px;
  margin-bottom: 8px;
}

.hero-icon,
.hero-badge,
.floating-x,
.floating-sparkles,
.doodle {
  z-index: 2;
}

.hero-bell {
  top: 18%;
  left: auto;
  right: 46%;
  width: clamp(58px, 7vw, 96px);
}

.hero-rocket {
  top: 13%;
  right: 7%;
  width: clamp(80px, 9vw, 138px);
}

.hero-shares {
  top: 28%;
  right: 31%;
  width: clamp(86px, 10vw, 142px);
}

.hero-badge {
  top: 62%;
  right: 8%;
  width: clamp(132px, 14vw, 210px);
}

.floating-x {
  top: 41%;
  right: 43%;
  width: 42px;
}

.floating-sparkles {
  bottom: 14%;
  right: 21%;
  width: 82px;
}

.doodle-x,
.doodle-rocket,
.doodle-paper {
  display: none;
}

.sketch-card,
.timeline article,
.meme-card {
  overflow: visible;
}

.sketch-card p,
.timeline p,
.meme-card p {
  white-space: normal;
  overflow-wrap: break-word;
  line-height: 1.35;
}

.timeline {
  grid-template-columns: repeat(6, minmax(145px, 1fr));
  gap: 16px;
}

.timeline article {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
}

.timeline article .asset-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 0;
}

.timeline h3 {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.05;
}

.timeline p {
  margin-bottom: 0;
  font-size: 0.82rem;
  line-height: 1.25;
}

.timeline span {
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  font-size: 0.82rem;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    background-position: center right;
  }

  .hero .wash-hero {
    background: linear-gradient(180deg, rgba(250, 248, 240, 0.92) 0%, rgba(250, 248, 240, 0.74) 58%, rgba(250, 248, 240, 0.24) 100%);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: 690px;
    margin-left: auto;
    padding-top: 96px;
    padding-bottom: 220px;
  }

  .hero-inner > * {
    max-width: 560px;
  }

  .hero h1 {
    font-size: clamp(4.4rem, 18vw, 7.4rem);
  }

  .hero-bell {
    top: auto;
    right: auto;
    left: 18px;
    bottom: 128px;
  }

  .hero-rocket {
    top: auto;
    right: 20px;
    bottom: 154px;
  }

  .hero-shares,
  .floating-sparkles {
    display: none;
  }

  .hero-badge {
    top: auto;
    right: 22px;
    bottom: 38px;
  }

  .floating-x {
    top: auto;
    right: 154px;
    bottom: 104px;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline article {
    width: 100%;
    min-height: auto;
    margin-left: 24px;
  }
}

@media (max-width: 560px) {
  .hero-inner {
    min-height: 650px;
    padding-top: 82px;
    padding-bottom: 190px;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 22vw, 6.4rem);
  }

  .hero-subtitle {
    font-size: clamp(1.28rem, 6.5vw, 1.9rem);
  }

  .hero .button {
    width: 100%;
  }

  .hero-badge {
    width: 118px;
  }

  .timeline article {
    margin-left: 18px;
    padding: 18px;
  }
}

/* Final premium polish pass */
.site-header {
  padding: 18px clamp(20px, 4vw, 64px);
  background: rgba(250, 248, 240, 0.88);
  border-bottom: 2px solid #111;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 0 rgba(17, 17, 17, 0.04);
}

.brand-logo {
  width: clamp(118px, 13vw, 170px);
  max-height: 48px;
}

.brand {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.nav {
  gap: clamp(18px, 2.6vw, 38px);
  font-size: 1rem;
}

.nav a {
  padding: 8px 2px;
}

.header-cta {
  min-height: 52px;
  padding: 13px 22px;
  border-radius: 10px;
  box-shadow: 6px 6px 0 #111;
}

.hero {
  min-height: min(840px, calc(100vh - 30px));
  background-position: left center;
}

.wash {
  background: rgba(255, 253, 245, 0.66);
}

.wash-hero {
  background:
    linear-gradient(90deg, rgba(250, 248, 240, 0.92) 0%, rgba(250, 248, 240, 0.78) 37%, rgba(250, 248, 240, 0.28) 68%, rgba(250, 248, 240, 0.08) 100%);
}

.section:nth-of-type(even) .wash {
  background: rgba(250, 248, 240, 0.68);
}

.hero-inner {
  max-width: 760px;
  padding-top: clamp(118px, 13vw, 172px);
  padding-bottom: clamp(118px, 13vw, 172px);
}

.hero-logo-mark {
  width: min(190px, 48vw);
  max-height: 58px;
  opacity: 0.9;
}

.hero-logo-mark:not([style*="display: none"]) + h1 {
  display: block;
}

h1 {
  max-width: 980px;
  font-size: clamp(6.8rem, 18vw, 18rem);
  line-height: 0.76;
  margin-bottom: 20px;
}

.hero-subtitle {
  max-width: 790px;
  font-size: clamp(1.85rem, 3.5vw, 3.35rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-line {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 900;
  color: #243746;
}

.hero .button {
  min-height: 58px;
  padding: 16px 24px;
  border-width: 3px;
  border-radius: 12px;
  box-shadow: 7px 7px 0 #111;
  font-size: 1rem;
}

.hero-bell {
  top: 14%;
  left: 7%;
  width: clamp(72px, 9vw, 120px);
}

.hero-rocket {
  top: 13%;
  right: 8%;
  width: clamp(92px, 12vw, 170px);
}

.hero-shares {
  top: 31%;
  right: 25%;
  width: clamp(110px, 13vw, 190px);
}

.hero-badge {
  top: 54%;
  left: auto;
  right: 14%;
  width: clamp(160px, 18vw, 260px);
}

.floating-x {
  top: 27%;
  right: 41%;
  width: 56px;
}

.floating-sparkles {
  bottom: 17%;
  right: 11%;
  width: 108px;
}

.section-divider {
  padding: 10px 0;
}

.section-divider img {
  width: min(265px, 42vw);
  max-height: 50px;
}

.section-divider::after {
  content: attr(data-label);
  padding: 5px 10px;
  color: var(--green-dark);
  background: var(--paper-strong);
  border: 2px solid #111;
  border-radius: 999px;
  box-shadow: 3px 3px 0 #111;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  transform: rotate(-1.5deg);
  white-space: nowrap;
}

.sketch-card,
.meme-card,
.panel,
.asset-card,
.timeline article {
  padding: clamp(26px, 3vw, 34px);
  border: 2px solid #111;
  border-radius: 16px;
  box-shadow: 6px 6px 0 #111;
  background: rgba(255, 255, 255, 0.92);
}

.sketch-card:hover,
.meme-card:hover,
.panel:hover,
.asset-card:hover,
.timeline article:hover {
  transform: translateY(-4px) rotate(-0.5deg);
  border-color: var(--green);
  box-shadow: 8px 8px 0 #111;
}

.sketch-card h3,
.meme-card h3,
.panel h3,
.timeline h3 {
  font-size: clamp(1.28rem, 1.9vw, 1.65rem);
  font-weight: 900;
}

.sketch-card p,
.meme-card p,
.timeline p,
.panel li,
.section-copy,
.wide-copy p {
  font-size: 1.02rem;
  line-height: 1.55;
}

.asset-icon {
  width: 68px;
  height: 68px;
}

.allocation .split {
  align-items: stretch;
}

.checker-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.95), rgba(250,248,240,0.92)),
    repeating-linear-gradient(0deg, transparent 0 26px, rgba(17,17,17,0.04) 26px 28px);
}

.result-card {
  margin-top: 34px;
  padding: 72px 24px 24px;
  border: 3px dashed #111;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,249,238,0.96)),
    repeating-linear-gradient(0deg, transparent 0 22px, rgba(198,40,40,0.06) 22px 24px);
  box-shadow: inset 0 0 0 2px rgba(17,17,17,0.04), 6px 6px 0 #111;
}

.result-stamp {
  top: -58px;
  right: 18px;
  width: clamp(190px, 27vw, 300px);
}

.result-zero {
  margin-bottom: 12px;
  color: #c62828;
  font-size: clamp(2.9rem, 7vw, 5rem);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 2px 2px 0 rgba(17,17,17,0.12);
}

.reason-box {
  margin: 18px 0;
  padding: 14px 16px;
  background: #fffaf0;
  border: 2px solid #111;
  border-radius: 10px;
  box-shadow: 4px 4px 0 #111;
}

.reason-box span {
  display: block;
  margin-bottom: 6px;
  color: #c62828;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.reason-box .reason {
  margin: 0;
  color: #111;
  font-family: "Comic Sans MS", "Segoe Print", cursive;
  font-size: 1.28rem;
}

.zero-stamp {
  width: 150px;
}

.meme-grid {
  gap: 18px;
}

.meme-card {
  position: relative;
  min-height: 235px;
  padding-top: 32px;
}

.meme-thumb {
  width: 112px;
  height: 96px;
  margin-bottom: 18px;
}

.meme-label {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 8px;
  color: var(--green-dark);
  background: #fffdf5;
  border: 2px solid #111;
  border-radius: 999px;
  box-shadow: 2px 2px 0 #111;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.meme-card:hover {
  transform: translateY(-7px) rotate(-0.8deg) scale(1.015);
}

.comparison {
  position: relative;
  gap: clamp(26px, 5vw, 54px);
}

.vs-orb {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  color: white;
  background: #111;
  border: 3px solid var(--green);
  border-radius: 50%;
  box-shadow: 6px 6px 0 #111;
  font-size: 1.35rem;
  font-weight: 900;
  transform: translate(-50%, -50%) rotate(-7deg);
}

.wall {
  background:
    radial-gradient(circle at 85% 15%, rgba(22,163,74,0.25), transparent 28%),
    linear-gradient(145deg, #192837, #070a0d);
  color: white;
}

.main {
  background:
    radial-gradient(circle at 90% 10%, rgba(198,40,40,0.12), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(250,244,232,0.95));
}

.panel li {
  border: 2px solid #111;
}

.main.ipoor-active {
  border-color: var(--green);
  box-shadow: 0 0 0 5px rgba(22, 163, 74, 0.18), 8px 8px 0 #111;
}

.timeline {
  position: relative;
  gap: 18px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  top: 48px;
  height: 4px;
  background: repeating-linear-gradient(90deg, var(--green) 0 16px, transparent 16px 24px);
  opacity: 0.75;
}

.timeline article {
  min-height: 220px;
}

.timeline .asset-icon {
  width: 64px;
  height: 64px;
}

.timeline span {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border: 2px solid #111;
  box-shadow: 2px 2px 0 #111;
}

.token-card {
  width: min(100%, 600px);
  padding: clamp(34px, 5vw, 54px);
  background:
    radial-gradient(circle at 90% 16%, rgba(22,163,74,0.12), transparent 28%),
    rgba(255,255,255,0.94);
}

.token-watermark {
  width: 260px;
  opacity: 0.1;
}

.meme-score-row dd {
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 0.9;
}

.meme-score-row dd img {
  width: 58px;
  height: 58px;
}

.token-card .copy-ticker {
  min-height: 58px;
  width: 100%;
  font-size: 1.08rem;
}

.asset-grid {
  gap: 20px;
}

.asset-card {
  min-height: 255px;
  padding: 18px;
}

.asset-card img {
  height: 170px;
  background: rgba(255,255,255,0.72);
  border: 2px dashed rgba(17,17,17,0.18);
}

#assets .button {
  min-height: 60px;
  padding-inline: 28px;
  font-size: 1.08rem;
}

#assets .asset-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

#assets .asset-card {
  min-height: 320px;
  background:
    radial-gradient(circle at 14% 12%, rgba(22, 163, 74, 0.16), transparent 26%),
    rgba(255, 253, 245, 0.94);
}

#assets .asset-card img {
  width: 100%;
  border: 2px solid #111;
  box-shadow: 4px 4px 0 #111;
  background: #fffdf5;
}

#assets .pfp-card img {
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

#assets .banner-card {
  grid-column: span 2;
}

#assets .banner-card img {
  height: auto;
  aspect-ratio: 3 / 1;
  object-fit: cover;
}

#assets .asset-card span {
  align-self: end;
  justify-self: center;
  padding: 6px 12px;
  color: var(--green-dark);
  background: #fffdf5;
  border: 2px solid #111;
  border-radius: 999px;
  box-shadow: 3px 3px 0 #111;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.final-cta {
  min-height: 560px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 16% 40%, rgba(22,163,74,0.16), transparent 26%),
    radial-gradient(circle at 88% 30%, rgba(255,255,255,0.08), transparent 24%),
    var(--blue-gray);
}

.final-cta h2 {
  max-width: 1000px;
  font-size: clamp(3.6rem, 9vw, 8.6rem);
}

.final-cta p {
  color: var(--green);
  font-size: clamp(1.8rem, 4vw, 3.3rem);
  line-height: 1;
}

.final-cta .button {
  min-height: 60px;
  padding: 16px 26px;
  border-width: 3px;
  font-size: 1.05rem;
}

.cta-logo {
  left: clamp(16px, 7vw, 95px);
  bottom: 62px;
  width: clamp(150px, 22vw, 300px);
}

.cta-ticket {
  left: clamp(20px, 12vw, 190px);
  top: 18%;
  width: clamp(90px, 12vw, 155px);
}

.cta-rocket {
  right: clamp(22px, 9vw, 140px);
  top: 16%;
  width: clamp(100px, 15vw, 210px);
}

.cta-shares {
  right: clamp(80px, 20vw, 320px);
  bottom: 14%;
  width: clamp(95px, 13vw, 180px);
}

.cta-moon {
  right: clamp(24px, 6vw, 90px);
  top: 48%;
  width: 64px;
  opacity: 0.75;
}

.cta-x {
  right: 18%;
  top: 68%;
  width: 54px;
}

.cta-stamp {
  left: auto;
  right: 24%;
  top: 8%;
}

@media (max-width: 900px) {
  h1 {
    font-size: clamp(5rem, 22vw, 9rem);
  }

  .hero {
    min-height: 720px;
  }

  .comparison {
    gap: 32px;
  }

  .vs-orb {
    position: relative;
    left: auto;
    top: auto;
    margin: -8px auto;
    transform: rotate(-7deg);
  }

  .timeline::before {
    left: 30px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 4px;
    height: auto;
    background: repeating-linear-gradient(180deg, var(--green) 0 16px, transparent 16px 24px);
  }

  .timeline article {
    margin-left: 24px;
  }

  #assets .asset-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #assets .banner-card {
    grid-column: span 2;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand-logo {
    width: 104px;
  }

  .hero {
    min-height: 680px;
    background-position: 22% center;
  }

  .wash-hero {
    background: rgba(250,248,240,0.78);
  }

  h1 {
    font-size: clamp(4.7rem, 25vw, 7.2rem);
  }

  .hero-subtitle {
    font-size: clamp(1.55rem, 8vw, 2.25rem);
  }

  .hero-logo-mark {
    width: 150px;
  }

  .hero-badge {
    display: block;
    top: auto;
    right: 18px;
    bottom: 22px;
    width: 126px;
  }

  .section-divider::after {
    display: none;
  }

  .result-card {
    padding-top: 58px;
  }

  .result-zero {
    font-size: 3rem;
  }

  .meme-card,
  .asset-card {
    min-height: auto;
  }

  .asset-card img {
    height: 150px;
  }

  .final-cta {
    min-height: 520px;
  }

  .final-cta h2 {
    font-size: clamp(3.1rem, 16vw, 5rem);
  }

  .final-cta p {
    font-size: 1.8rem;
  }

  .cta-ticket,
  .cta-shares,
  .cta-moon,
  .cta-x {
    display: none;
  }

  #assets .asset-grid {
    grid-template-columns: 1fr;
  }

  #assets .banner-card {
    grid-column: span 1;
  }

  #assets .asset-card {
    min-height: auto;
  }
}

/* Final override: keep desktop/tablet hero two-column and prevent timeline clipping */
.hero {
  min-height: 720px;
  display: block;
  background-position: center right;
}

.hero .wash-hero {
  background:
    linear-gradient(90deg, rgba(250, 248, 240, 0.94) 0%, rgba(250, 248, 240, 0.86) 38%, rgba(250, 248, 240, 0.28) 61%, rgba(250, 248, 240, 0.06) 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 76px);
  max-width: 1180px;
  min-height: 720px;
  padding-top: clamp(88px, 10vw, 128px);
  padding-bottom: clamp(70px, 8vw, 112px);
}

.hero-inner > * {
  grid-column: 1;
  position: relative;
  z-index: 3;
}

.hero h1 {
  max-width: 520px;
  font-size: clamp(4.5rem, 10vw, 8.5rem);
  line-height: 0.85;
}

.hero-subtitle {
  max-width: 500px;
  font-size: clamp(1.35rem, 2.2vw, 2.2rem);
  line-height: 1.05;
}

.hero-line {
  max-width: 500px;
  font-size: clamp(1.02rem, 1.5vw, 1.32rem);
}

.hero .button {
  min-height: 48px;
  padding: 12px 18px;
  border-width: 2px;
  border-radius: 10px;
  box-shadow: 5px 5px 0 #111;
  font-size: 0.9rem;
}

.hero-logo-mark {
  width: min(154px, 42vw);
  max-height: 48px;
}

.hero-bell {
  top: 18%;
  left: auto;
  right: 46%;
  width: clamp(58px, 7vw, 96px);
}

.hero-rocket {
  top: 13%;
  right: 7%;
  width: clamp(80px, 9vw, 138px);
}

.hero-shares {
  top: 28%;
  right: 31%;
  width: clamp(86px, 10vw, 142px);
}

.hero-badge {
  top: 62%;
  right: 8%;
  width: clamp(132px, 14vw, 210px);
}

.floating-x {
  top: 41%;
  right: 43%;
  width: 42px;
}

.floating-sparkles {
  bottom: 14%;
  right: 21%;
  width: 82px;
}

.timeline {
  grid-template-columns: repeat(6, minmax(145px, 1fr));
  gap: 16px;
}

.timeline article {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: visible;
}

.timeline h3 {
  font-size: 0.95rem;
  line-height: 1.05;
}

.timeline p {
  white-space: normal;
  overflow-wrap: break-word;
  font-size: 0.82rem;
  line-height: 1.25;
}

.meme-card,
.sketch-card {
  overflow: visible;
}

.meme-card p,
.sketch-card p {
  white-space: normal;
  overflow-wrap: break-word;
  line-height: 1.35;
}

@media (max-width: 700px) {
  .hero {
    min-height: auto;
    background-position: center bottom;
  }

  .hero .wash-hero {
    background: linear-gradient(180deg, rgba(250, 248, 240, 0.92) 0%, rgba(250, 248, 240, 0.78) 58%, rgba(250, 248, 240, 0.28) 100%);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: 650px;
    padding-top: 82px;
    padding-bottom: 190px;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 22vw, 6.4rem);
  }

  .hero-subtitle {
    font-size: clamp(1.28rem, 6.5vw, 1.9rem);
  }

  .hero-shares,
  .floating-sparkles {
    display: none;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline article {
    width: 100%;
    min-height: auto;
  }
}
