:root {
  --paper: #f3efe4;
  --paper-deep: #e7dfcf;
  --paper-white: #fffcf4;
  --ink: #121212;
  --ink-soft: #2c2c2c;
  --muted: #5c5c5c;
  --line: rgba(18, 18, 18, 0.12);
  --line-strong: rgba(18, 18, 18, 0.22);
  --lime: #c8ff00;
  --lime-hot: #d7ff3a;
  --lime-deep: #9ed600;
  --rh-green: #00c805;
  --tape: rgba(255, 236, 150, 0.7);
  --shadow: 0 16px 36px rgba(24, 20, 12, 0.12);
  --shadow-tight: 0 8px 18px rgba(24, 20, 12, 0.1);
  --nav-h: 4.5rem;
  --max: 72rem;
  --pad: clamp(1.1rem, 3.4vw, 2.4rem);
  --font-display: Georgia, "Times New Roman", Times, serif;
  --font-ui: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --focus: 3px solid var(--rh-green);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: var(--font-ui);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  min-height: 100%;
  text-rendering: optimizeLegibility;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

iframe {
  border: 0;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--ink);
}

:focus-visible {
  outline: var(--focus);
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 200;
  background: var(--ink);
  color: var(--paper);
  padding: 0.7rem 1rem;
  font-weight: 700;
}

.skip-link:focus {
  top: 0.8rem;
  color: var(--paper);
}

.paper-grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(18, 18, 18, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 18, 18, 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(243, 239, 228, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.site-nav {
  width: min(100%, var(--max));
  margin: 0 auto;
  min-height: var(--nav-h);
  padding: 0.7rem var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--lime);
  flex-shrink: 0;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
}

.brand-ticker {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-toggle {
  display: none;
  width: 2.7rem;
  height: 2.7rem;
  border: 1.5px solid var(--ink);
  background: var(--paper-white);
  cursor: pointer;
  padding: 0;
}

.nav-toggle-bars {
  display: grid;
  gap: 5px;
  width: 1.1rem;
  margin: 0 auto;
}

.nav-toggle-bars span {
  display: block;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s var(--ease), opacity 0.2s ease;
}

.nav-toggle.is-open .nav-toggle-bars span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open .nav-toggle-bars span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open .nav-toggle-bars span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav-links {
  display: flex;
  gap: 1.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-weight: 650;
  font-size: 0.92rem;
}

.nav-links a:hover {
  text-decoration: underline;
}

.nav-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 1.5px solid var(--ink);
  padding: 0.52rem 0.9rem;
  font: inherit;
  font-weight: 750;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  background: var(--paper-white);
  color: var(--ink);
  cursor: pointer;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background 0.18s ease;
  box-shadow: 3px 3px 0 transparent;
}

.btn:hover {
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 var(--ink);
}

.btn:active {
  transform: translate(1px, 1px);
  box-shadow: 0 0 0 var(--ink);
}

.btn-lg {
  padding: 0.78rem 1.15rem;
  font-size: 0.95rem;
}

.btn-buy {
  background: var(--lime);
}

.btn-ink {
  background: var(--ink);
  color: var(--paper);
}

.btn-ink:hover {
  color: var(--paper);
}

.btn-ghost {
  background: transparent;
}

.btn-paper {
  background: var(--paper-white);
}

.btn svg,
.copy-btn svg {
  flex-shrink: 0;
}

[hidden] {
  display: none !important;
}

.hero {
  padding: clamp(1.4rem, 4vw, 3rem) var(--pad) 2.4rem;
}

.hero-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(1.2rem, 4vw, 3rem);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 4;
}

.masthead {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.masthead-status {
  color: var(--ink);
  background: var(--lime);
  padding: 0.08rem 0.35rem;
  letter-spacing: 0.14em;
}

.ticker-pill {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.7rem;
  padding: 0.28rem 0.7rem;
  border: 1px solid var(--line-strong);
  background: var(--paper-white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.ticker-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--lime-deep);
  box-shadow: 0 0 0 4px rgba(200, 255, 0, 0.35);
}

.ticker-chain {
  letter-spacing: 0.04em;
  font-weight: 650;
  color: var(--muted);
  text-transform: none;
}

.hero-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 10vw, 7.4rem);
  line-height: 0.86;
  letter-spacing: -0.04em;
}

.hero-hook {
  margin: 1.1rem 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.6vw, 1.85rem);
  font-style: italic;
  line-height: 1.2;
}

.mark {
  background-image: linear-gradient(transparent 58%, var(--lime) 58%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero-hook .mark {
  background-size: 0 100%;
  animation: highlight-in 1.05s var(--ease) 0.25s forwards;
}

.hero-lede {
  margin: 0 0 1.3rem;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  color: var(--ink-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.2rem;
}

.ca-card {
  background: var(--paper-white);
  border: 1.5px solid var(--ink);
  box-shadow: var(--shadow-tight);
  padding: 0.9rem 1rem 1rem;
  max-width: 34rem;
}

.ca-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.45rem;
}

.ca-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.ca-badge {
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--lime);
  padding: 0.15rem 0.4rem;
  border: 1px solid var(--ink);
}

.ca-row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.ca-row-compact {
  flex-wrap: wrap;
}

.ca-value {
  flex: 1;
  min-width: 0;
  font-family: var(--font-mono);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  background: var(--paper-deep);
  border: 1px dashed var(--line-strong);
  padding: 0.55rem 0.7rem;
  overflow-wrap: anywhere;
}

.ca-card[data-tba="true"] .ca-value,
.token-card[data-tba="true"] .ca-value {
  background: repeating-linear-gradient(
    -12deg,
    var(--paper-deep),
    var(--paper-deep) 8px,
    #efe8c8 8px,
    #efe8c8 16px
  );
}

.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1.5px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 750;
  padding: 0.58rem 0.75rem;
  cursor: pointer;
  white-space: nowrap;
}

.copy-btn:hover {
  background: #000;
}

.copy-btn.is-copied {
  background: var(--rh-green);
  border-color: var(--rh-green);
  color: #041;
}

.ca-note {
  margin: 0.55rem 0 0;
  font-size: 0.78rem;
  color: var(--muted);
}

.hero-stage {
  position: relative;
  min-height: min(72vh, 38rem);
  display: grid;
  place-items: center;
  isolation: isolate;
}

.stage-grid {
  position: absolute;
  inset: 8% 10%;
  border: 1px solid var(--line);
  background-image:
    linear-gradient(rgba(18, 18, 18, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 18, 18, 0.05) 1px, transparent 1px);
  background-size: 22px 22px;
  z-index: 0;
}

.lime-scribble {
  position: absolute;
  width: min(92%, 34rem);
  height: auto;
  z-index: 1;
  filter: drop-shadow(0 0 18px rgba(200, 255, 0, 0.35));
  animation: scribble-breathe 6s ease-in-out infinite;
}

.hero-character {
  position: relative;
  z-index: 3;
  width: min(100%, 34rem);
  filter: drop-shadow(0 28px 28px rgba(20, 16, 10, 0.28));
  animation: float-mascot 5.5s ease-in-out infinite;
  pointer-events: none;
  user-select: none;
}

.paper-scrap {
  position: absolute;
  z-index: 4;
  background: var(--paper-white);
  border: 1px solid var(--ink);
  box-shadow: var(--shadow-tight);
  font-family: var(--font-display);
  font-weight: 700;
}

.scrap-a {
  top: 8%;
  left: 2%;
  padding: 0.55rem 0.7rem;
  transform: rotate(-8deg);
  text-align: center;
  line-height: 1;
}

.scrap-a span {
  display: block;
  font-size: 1.2rem;
}

.scrap-a small {
  font-family: var(--font-ui);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.62rem;
}

.scrap-b {
  right: 4%;
  top: 18%;
  padding: 0.4rem 0.65rem;
  transform: rotate(7deg);
  background: var(--lime);
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.scrap-c {
  left: 6%;
  bottom: 14%;
  padding: 0.35rem 0.6rem;
  transform: rotate(-4deg);
  font-style: italic;
  font-size: 0.9rem;
}

.tape {
  position: absolute;
  height: 1.15rem;
  width: 4.2rem;
  background: var(--tape);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
  mix-blend-mode: multiply;
  z-index: 5;
}

.tape-a {
  top: 12%;
  right: 18%;
  transform: rotate(22deg);
}

.tape-center {
  top: -0.55rem;
  left: 50%;
  width: 5rem;
  transform: translateX(-50%) rotate(-2deg);
}

.tape-left {
  top: -0.5rem;
  left: 1.2rem;
  transform: rotate(-12deg);
}

.tape-right {
  top: -0.45rem;
  right: 1.4rem;
  transform: rotate(14deg);
}

.plus {
  position: absolute;
  z-index: 2;
  color: rgba(18, 18, 18, 0.35);
  font-size: 0.9rem;
}

.plus-a {
  top: 6%;
  right: 12%;
}

.plus-b {
  bottom: 10%;
  right: 8%;
}

.marquee {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--ink);
  color: var(--lime);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 2.4rem;
  width: max-content;
  padding: 0.7rem 0;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.82rem;
  animation: marquee 28s linear infinite;
}

.section {
  padding: clamp(3.2rem, 8vw, 5.8rem) var(--pad);
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.kicker {
  margin: 0 0 0.55rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.section-title {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5.4vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(16rem, 0.85fr);
  gap: 1.5rem;
  align-items: start;
}

.prose {
  max-width: 40rem;
  font-size: 1.05rem;
  color: var(--ink-soft);
}

.prose p {
  margin: 0 0 1rem;
}

.torn {
  clip-path: polygon(
    0.8% 1.6%,
    7% 0.4%,
    13% 2%,
    21% 0.2%,
    29% 1.8%,
    38% 0.6%,
    47% 2.2%,
    56% 0.3%,
    64% 1.7%,
    73% 0.5%,
    82% 2%,
    91% 0.4%,
    99.2% 1.8%,
    98.4% 14%,
    100% 27%,
    98.6% 41%,
    100% 56%,
    98.5% 71%,
    100% 86%,
    98.8% 98.4%,
    88% 99.4%,
    76% 98.2%,
    64% 100%,
    51% 98.4%,
    39% 99.6%,
    27% 98.2%,
    14% 99.8%,
    0.6% 98.6%,
    1.6% 84%,
    0% 69%,
    1.4% 53%,
    0.2% 38%,
    1.8% 22%,
    0% 9%
  );
}

.quote-card {
  position: relative;
  background: var(--paper-white);
  border: 1.5px solid var(--ink);
  padding: 1.6rem 1.3rem 1.3rem;
  box-shadow: var(--shadow);
  transform: rotate(1.4deg);
}

.quote-lines {
  margin: 0;
  display: grid;
  gap: 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  line-height: 1.15;
}

.quote-accent {
  background: var(--lime);
  padding: 0.15rem 0.25rem;
}

.quote-foot {
  margin: 1.1rem 0 0;
  color: var(--muted);
  font-style: italic;
}

.banner-frame {
  margin: 2.2rem 0 0;
  background: var(--paper-white);
  border: 1.5px solid var(--ink);
  box-shadow: var(--shadow);
  padding: 0.55rem;
}

.banner-frame img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.evolution {
  background: linear-gradient(180deg, transparent, rgba(200, 255, 0, 0.12) 40%, transparent);
}

.evo-track {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0.7rem;
  align-items: stretch;
}

.evo-card {
  background: var(--paper-white);
  border: 1.5px solid var(--ink);
  padding: 1.3rem 1.1rem 1.2rem;
  box-shadow: var(--shadow-tight);
  min-width: 0;
}

.evo-card:nth-child(1) {
  transform: rotate(-1.2deg);
}

.evo-card:nth-child(3) {
  transform: rotate(0.8deg);
}

.evo-card-final {
  background: var(--lime);
  transform: rotate(-0.6deg);
}

.evo-num {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  background: var(--ink);
  color: var(--paper);
  padding: 0.12rem 0.4rem;
  margin-bottom: 0.7rem;
}

.evo-card-final .evo-num {
  background: var(--paper-white);
  color: var(--ink);
}

.evo-card h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

.evo-card p {
  margin: 0;
  color: var(--ink-soft);
}

.evo-arrow {
  display: grid;
  place-items: center;
  color: var(--ink);
}

.evo-arrow span {
  width: 2.4rem;
  height: 2px;
  background: var(--ink);
  position: relative;
}

.evo-arrow span::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -4px;
  border: 5px solid transparent;
  border-left-color: var(--ink);
  border-right: 0;
}

.token-inner {
  max-width: 40rem;
}

.token-card {
  position: relative;
  background: var(--paper-white);
  border: 1.5px solid var(--ink);
  padding: 1.6rem 1.3rem 1.2rem;
  box-shadow: var(--shadow);
}

.token-list {
  margin: 0;
  display: grid;
  gap: 1rem;
}

.token-list > div {
  display: grid;
  gap: 0.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.token-list > div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.token-list dt {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.token-list dd {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
}

.chart-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.chart-head .section-title {
  margin-bottom: 0;
}

.chart-well {
  position: relative;
  width: 100%;
  height: min(36rem, 72vh);
  min-height: 20rem;
  background: var(--paper-white);
  border: 1.5px solid var(--ink);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.chart-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 1.5rem;
  background:
    linear-gradient(rgba(243, 239, 228, 0.2), rgba(243, 239, 228, 0.2)),
    linear-gradient(rgba(18, 18, 18, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 18, 18, 0.05) 1px, transparent 1px);
  background-size: auto, 24px 24px, 24px 24px;
}

.chart-fallback-kicker {
  margin: 0 0 0.3rem;
  letter-spacing: 0.2em;
  font-weight: 800;
  font-size: 0.75rem;
}

.chart-fallback-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.chart-fallback-copy {
  margin: 0.6rem auto 0;
  max-width: 28rem;
  color: var(--muted);
}

.chart-well iframe {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: transparent;
}

.community {
  background: var(--lime);
  overflow: hidden;
}

.community-inner {
  text-align: center;
  padding-block: 1rem;
}

.kicker-on-lime {
  color: var(--ink-soft);
}

.community-title {
  margin: 0 auto 0.7rem;
  max-width: 18ch;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 8vw, 5.4rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.community-lede {
  margin: 0 auto 1.5rem;
  font-size: 1.1rem;
}

.community-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.site-footer {
  background: var(--ink);
  color: #e8e4d8;
  padding: 2.4rem var(--pad) 2.8rem;
}

.footer-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.brand-footer .brand-name,
.brand-footer .brand-ticker {
  color: #f3efe4;
}

.brand-footer .brand-ticker {
  color: #bdb7a8;
}

.footer-tag {
  margin: 0.9rem 0 1rem;
  font-family: var(--font-display);
  font-style: italic;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.2rem;
  list-style: none;
  margin: 0 0 1.3rem;
  padding: 0;
}

.footer-links a {
  color: #f3efe4;
  text-decoration: none;
  font-weight: 650;
}

.footer-links a:hover {
  color: var(--lime);
}

.footer-disclaimer {
  margin: 0;
  max-width: 46rem;
  font-size: 0.82rem;
  color: #bdb7a8;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: none;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--delay, 0s);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@keyframes highlight-in {
  to {
    background-size: 100% 100%;
  }
}

@keyframes float-mascot {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes scribble-breathe {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.03) rotate(-1.5deg);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-panel {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: rgba(243, 239, 228, 0.98);
    border-bottom: 1px solid var(--ink);
    padding: 0.9rem var(--pad) 1.2rem;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .nav-panel.is-open {
    display: flex;
    max-height: calc(100dvh - var(--nav-h));
    overflow-y: auto;
  }

  .nav-links {
    flex-direction: column;
    gap: 0.2rem;
  }

  .nav-links a {
    display: block;
    padding: 0.7rem 0.15rem;
    font-size: 1.05rem;
  }

  .nav-ctas {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .nav-ctas .btn-buy {
    grid-column: 1 / -1;
  }

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

  .hero-stage {
    order: -1;
    min-height: 0;
  }

  .hero-character {
    width: min(78%, 22rem);
  }

  .about-grid,
  .evo-track {
    grid-template-columns: 1fr;
  }

  .evo-arrow {
    height: 1.6rem;
  }

  .evo-arrow span {
    width: 2px;
    height: 1.4rem;
  }

  .evo-arrow span::after {
    top: auto;
    bottom: -1px;
    right: -4px;
    border: 5px solid transparent;
    border-top-color: var(--ink);
    border-left-color: transparent;
    border-bottom: 0;
  }

  .hero-stage .deco {
    display: none;
  }

  .quote-card,
  .evo-card,
  .evo-card-final {
    transform: none;
  }

  .chart-well {
    height: 22rem;
    min-height: 18rem;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: 1rem;
  }

  .hero-character {
    width: min(86vw, 18.5rem);
  }

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

  .ca-row {
    flex-wrap: wrap;
  }

  .copy-btn {
    width: 100%;
    justify-content: center;
  }

  .chart-well {
    height: 18.5rem;
  }

  .nav-ctas {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-character,
  .lime-scribble,
  .marquee-track,
  .reveal,
  .hero-hook .mark {
    animation: none !important;
    transition: none !important;
  }

  .hero-hook .mark {
    background-size: 100% 100%;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .btn:hover,
  .btn:active {
    transform: none;
  }
}

body.nav-open {
  overflow: hidden;
}
