:root {
  --lime: #d2ff2a;
  --lime-deep: #b6e000;
  --forest: #10261a;
  --forest-mid: #1a3a28;
  --cream: #f3ecd9;
  --paper: #fbf6ea;
  --white: #fffdf7;
  --shell: #d7b48a;
  --brown: #8d6238;
  --brown-deep: #5a3c22;
  --ink: #141414;
  --charcoal: #1b1b1b;
  --muted: #5c574e;
  --water: #5aa7bc;
  --water-soft: #9fd0dc;
  --server: #eceae4;
  --line: rgba(20, 20, 20, 0.12);
  --display: Georgia, "Iowan Old Style", "Palatino Linotype", Palatino, "Times New Roman", serif;
  --sans: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: "Cascadia Mono", "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  --header: 76px;
  --radius: 18px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 12px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

ul,
dl,
p,
h1,
h2,
h3 {
  margin: 0;
}

code {
  font-family: var(--mono);
}

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

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 200;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--lime);
}

.skip-link:focus {
  top: 12px;
}

.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;
}

.copy-live {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.container {
  width: min(1200px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding-block: clamp(56px, 8vw, 120px);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--lime);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 18px;
  height: 1px;
  background: currentColor;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-lime {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 8px 0 #8aa80a;
}

.btn-lime:hover {
  background: #dcff55;
}

.btn-ink {
  background: var(--ink);
  color: var(--lime);
  box-shadow: 0 8px 0 #000;
}

.btn-ghost-ink {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.prelaunch-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--lime);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 246, 234, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--header);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
  border: 2px solid var(--ink);
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.site-nav a:hover {
  color: var(--brown);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  transition: background 0.2s ease, transform 0.2s ease;
}

.icon-btn svg {
  width: 16px;
  height: 16px;
}

.icon-btn:hover {
  background: var(--lime);
  transform: translateY(-1px);
}

.header-buy {
  min-height: 42px;
  padding: 0 16px;
  box-shadow: none;
}

.nav-buy {
  display: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

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

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

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

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

.hero {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(ellipse 50% 40% at 10% 20%, rgba(210, 255, 42, 0.35), transparent 60%),
    radial-gradient(ellipse 40% 50% at 90% 80%, rgba(90, 167, 188, 0.14), transparent 55%),
    var(--paper);
  padding-block: clamp(36px, 6vw, 72px) clamp(56px, 8vw, 100px);
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(20, 20, 20, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 20, 20, 0.045) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(90deg, transparent 0 42%, #000 78%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-areas:
    "copy"
    "visual"
    "ca"
    "ctas";
  gap: 32px;
  align-items: center;
}

.hero-copy { grid-area: copy; }
.hero-visual { grid-area: visual; }
.hero-ca { grid-area: ca; }
.hero-ctas { grid-area: ctas; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown-deep);
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(210, 255, 42, 0.35);
  animation: blink 1.6s steps(2, end) infinite;
}

.hero-title {
  font-family: var(--display);
  font-size: clamp(4.4rem, 16vw, 10.5rem);
  line-height: 0.78;
  letter-spacing: -0.045em;
  font-weight: 700;
}

.hero-ticker {
  margin-top: 14px;
  font-family: var(--mono);
  font-size: clamp(1rem, 2vw, 1.2rem);
  letter-spacing: 0.18em;
  color: var(--brown);
}

.hero-lede {
  margin-top: 24px;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  line-height: 1.15;
  font-weight: 750;
  letter-spacing: -0.03em;
}

.hero-support {
  max-width: 36rem;
  margin-top: 18px;
  color: var(--muted);
}

.hero-vs {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.hero-vs-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-vs-kicker {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-vs-value {
  font-size: 13px;
  font-weight: 700;
}

.hero-vs-mark {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--water);
}

.hero-vs-col-almond .hero-vs-value {
  color: var(--brown-deep);
}

.hero-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: min(62vw, 560px);
}

.hero-character {
  position: relative;
  z-index: 2;
  width: min(100%, 460px);
  border-radius: 46% 46% 42% 42% / 38% 38% 48% 48%;
  animation: float 6.5s ease-in-out infinite;
}

.deco {
  position: absolute;
  pointer-events: none;
  transition: transform 0.35s ease-out;
}

.almond-outline {
  width: min(78%, 380px);
  height: min(88%, 500px);
  border: 2px solid var(--shell);
  border-radius: 50% 50% 48% 48% / 40% 40% 60% 60%;
  opacity: 0.7;
}

.ring {
  border: 1.5px solid var(--water);
  border-radius: 50%;
  opacity: 0.45;
}

.ring-a { width: 58%; aspect-ratio: 1; animation: ripple 7s ease-out infinite; }
.ring-b { width: 78%; aspect-ratio: 1; animation: ripple 7s ease-out 1.4s infinite; }
.ring-c { width: 96%; aspect-ratio: 1; animation: ripple 7s ease-out 2.6s infinite; }

.lime-organic {
  width: 46%;
  height: 38%;
  left: 6%;
  bottom: 10%;
  background: var(--lime);
  border-radius: 62% 38% 70% 30% / 44% 62% 38% 56%;
  opacity: 0.72;
  animation: morph 11s ease-in-out infinite;
}

.grid-frag {
  width: 34%;
  height: 28%;
  right: 4%;
  top: 8%;
  background-image:
    linear-gradient(rgba(20, 20, 20, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 20, 20, 0.18) 1px, transparent 1px);
  background-size: 14px 14px;
  border: 1px solid rgba(20, 20, 20, 0.16);
}

.water-drop {
  width: 22px;
  height: 30px;
  left: 18%;
  top: 16%;
  background: var(--water-soft);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-40deg);
  opacity: 0.8;
}

.nut-drift {
  width: 18px;
  height: 26px;
  background: var(--shell);
  border-radius: 50% 50% 48% 48% / 40% 40% 60% 60%;
  box-shadow: inset -3px -4px 0 rgba(90, 60, 34, 0.18);
  opacity: 0.85;
}

.nut-drift-a {
  left: 8%;
  top: 28%;
  animation: drift 9s ease-in-out infinite;
}

.nut-drift-b {
  right: 10%;
  bottom: 18%;
  width: 14px;
  height: 20px;
  animation: drift 11s ease-in-out 1.4s infinite reverse;
}

.ca-box {
  display: grid;
  gap: 12px;
  max-width: 520px;
  padding: 16px 18px;
  background: var(--white);
  border: 1.5px solid var(--ink);
  border-radius: 18px;
  box-shadow: 8px 8px 0 rgba(20, 20, 20, 0.08);
}

.ca-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ca-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
}

.ca-row {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.ca-value {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  font-weight: 700;
}

.ca-copy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--lime);
  font-size: 13px;
  font-weight: 700;
}

.ca-copy:hover {
  background: #dcff55;
}

.ca-copy-icon {
  width: 16px;
  height: 16px;
}

.ca-copied {
  display: none;
}

.ca-copy.is-copied .ca-copy-text,
.ca-copy.is-copied .ca-copy-icon {
  display: none;
}

.ca-copy.is-copied .ca-copied {
  display: inline;
}

.ca-note {
  font-size: 12px;
  color: var(--muted);
}

.launchpad-link {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.launchpad-link:hover {
  color: var(--brown);
}

.tape {
  overflow: hidden;
  background: var(--ink);
  color: var(--lime);
  border-block: 1px solid #2a2a2a;
}

.tape-track {
  display: flex;
  gap: 36px;
  width: max-content;
  padding: 12px 0;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: ticker 28s linear infinite;
}

.about {
  background:
    radial-gradient(ellipse 40% 30% at 80% 10%, rgba(210, 255, 42, 0.12), transparent 55%),
    var(--forest);
  color: var(--cream);
}

.about-layout {
  display: grid;
  gap: 36px;
}

.about-title {
  font-family: var(--display);
  font-size: clamp(3rem, 8vw, 6.4rem);
  line-height: 0.88;
  letter-spacing: -0.04em;
}

.about-spread {
  display: grid;
  gap: 20px;
}

.about-lead {
  max-width: 16ch;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.about-lead-alt {
  color: var(--lime);
  justify-self: end;
  text-align: right;
}

.about-triad {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1;
}

.about-triad-nut {
  color: var(--lime);
}

.about-story {
  display: grid;
  gap: 16px;
  max-width: 42rem;
  color: #d5cbb4;
}

.about-figure {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(210, 255, 42, 0.18);
}

.about-figure img {
  width: 100%;
  height: auto;
}

.versus {
  background:
    linear-gradient(180deg, var(--white), var(--cream));
}

.versus-head {
  display: grid;
  gap: 12px;
  margin-bottom: 40px;
}

.versus-head h2 {
  font-family: var(--display);
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  letter-spacing: -0.04em;
  line-height: 0.92;
}

.versus-disclaimer {
  max-width: 36rem;
  color: var(--muted);
  font-size: 14px;
}

.versus-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.versus-side {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  padding: 24px;
  border-radius: 22px;
}

.versus-ai {
  background:
    linear-gradient(180deg, #f4f3ef, #e4e2db);
  border: 1px solid #d2d0c8;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.versus-ai::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(20, 20, 20, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 20, 20, 0.06) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.7;
  pointer-events: none;
}

.versus-almond {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.35), transparent 45%),
    linear-gradient(160deg, #f0dfc0, #d8b48a);
  border: 1px solid #c49a68;
}

.versus-side h3 {
  position: relative;
  margin: 28px 0 20px;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
}

.versus-side ul {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 0;
  list-style: none;
  font-size: 1.1rem;
}

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

.server-strip,
.calm-strip,
.chart-frame-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.led,
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ee36a;
  box-shadow: 0 0 8px #2ee36a;
  animation: blink 1.1s steps(2, end) infinite;
}

.led-delay,
.versus-ai li:nth-child(2) .pulse-dot {
  animation-delay: 0.35s;
  background: #ffb020;
  box-shadow: 0 0 8px #ffb020;
}

.versus-ai li:nth-child(3) .pulse-dot {
  animation-delay: 0.7s;
  background: #5aa7bc;
  box-shadow: 0 0 8px #5aa7bc;
}

.still-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brown-deep);
}

.scanline {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(20, 20, 20, 0.18);
  animation: scan 3.4s linear infinite;
}

.versus-verdict {
  margin-top: 40px;
  font-family: var(--display);
  font-size: clamp(2.4rem, 7vw, 5.6rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-align: center;
}

.chose {
  background: var(--lime);
  color: var(--ink);
}

.chose-stack {
  display: grid;
  gap: 36px;
}

.chose-xl {
  font-family: var(--display);
  font-size: clamp(2.2rem, 6.4vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
}

.chose-xl-bold {
  font-weight: 700;
}

.chose-no {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.chose-end {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 750;
  line-height: 1.2;
}

.token {
  background:
    radial-gradient(circle at 80% 20%, rgba(210, 180, 140, 0.28), transparent 40%),
    var(--cream);
}

.token-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.token-copy {
  display: grid;
  gap: 20px;
}

.token-copy h2 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
}

.token-copy p {
  max-width: 38rem;
  color: var(--muted);
}

.token-sheet {
  background: #f7efe0;
  border: 1.5px solid var(--ink);
  border-radius: 8px;
  box-shadow: 10px 10px 0 var(--brown-deep);
}

.token-sheet-top,
.token-sheet-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.token-sheet-top {
  border-bottom: 1px dashed var(--brown);
}

.token-sheet-foot {
  border-top: 1px dashed var(--brown);
  color: var(--muted);
}

.token-facts {
  display: grid;
  gap: 0;
}

.token-facts > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(90, 60, 34, 0.12);
}

.token-facts dt {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown);
}

.token-facts dd {
  margin: 0;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.chart {
  background:
    linear-gradient(180deg, #151515, #101010);
  color: var(--cream);
}

.chart-head {
  display: grid;
  gap: 14px;
  margin-bottom: 32px;
}

.chart-head h2 {
  font-family: var(--display);
  font-size: clamp(2.6rem, 6vw, 5rem);
  letter-spacing: -0.04em;
}

.chart-head p {
  color: #b9b2a3;
}

.chart-head .btn {
  justify-self: start;
}

.chart-frame {
  overflow: hidden;
  border: 1px solid #333;
  border-radius: 18px;
  background: #0b0b0b;
}

.chart-frame-bar {
  padding: 10px 14px;
  border-bottom: 1px solid #2a2a2a;
  color: #9a9a9a;
}

.chart-frame iframe {
  display: block;
  width: 100%;
  height: 720px;
  border: 0;
}

.community {
  background:
    radial-gradient(circle at 15% 80%, rgba(255, 255, 255, 0.28), transparent 30%),
    var(--lime);
}

.community-inner {
  display: grid;
  gap: 20px;
  justify-items: start;
}

.community-title {
  font-family: var(--display);
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 0.86;
  letter-spacing: -0.045em;
}

.community-support {
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
}

.community-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
  margin-top: 12px;
}

.community-card {
  display: grid;
  gap: 8px;
  padding: 24px;
  background: var(--ink);
  color: var(--lime);
  border-radius: 20px;
  transition: transform 0.2s ease;
}

.community-card:hover {
  transform: translateY(-4px);
}

.community-card svg {
  width: 28px;
  height: 28px;
}

.community-card span {
  font-size: 1.4rem;
  font-weight: 750;
}

.community-card em {
  font-style: normal;
  font-family: var(--mono);
  font-size: 13px;
  color: #d8d8d8;
}

.community-buy {
  margin-top: 8px;
}

.site-footer {
  background: var(--charcoal);
  color: #d7d1c4;
  padding: 28px 0 24px;
}

.footer-bar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.footer-brand {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: baseline;
}

.footer-brand strong {
  color: var(--lime);
  font-family: var(--display);
  font-size: 1.2rem;
}

.footer-links {
  display: flex;
  gap: 16px;
}

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

.footer-end {
  margin-top: 16px;
  text-align: center;
  font-size: 13px;
  color: #8d877b;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes ripple {
  0% { transform: scale(0.86); opacity: 0.5; }
  70% { opacity: 0.15; }
  100% { transform: scale(1.08); opacity: 0; }
}

@keyframes morph {
  0%, 100% { border-radius: 62% 38% 70% 30% / 44% 62% 38% 56%; }
  50% { border-radius: 38% 62% 32% 68% / 60% 36% 64% 40%; }
}

@keyframes blink {
  0%, 70%, 100% { opacity: 1; }
  85% { opacity: 0.18; }
}

@keyframes scan {
  0% { top: 18%; }
  100% { top: 88%; }
}

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

@keyframes drift {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-8deg); }
  50% { transform: translate3d(10px, -18px, 0) rotate(10deg); }
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    grid-template-areas:
      "copy visual"
      "ca visual"
      "ctas visual";
    column-gap: 48px;
    row-gap: 28px;
    align-items: start;
  }

  .hero-visual {
    align-self: center;
  }

  .about-spread {
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }

  .about-triad {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }
}

@media (max-width: 899px) {
  .nav-toggle {
    display: inline-flex;
  }

  .header-buy {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: var(--header);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 20px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-buy {
    display: inline-flex;
    justify-content: center;
    margin-top: 16px;
    min-height: 48px;
    border: 0;
    border-radius: 999px;
    background: var(--lime);
    font-weight: 700;
  }

  .versus-board,
  .token-layout,
  .community-links {
    grid-template-columns: 1fr;
  }

  .about-lead-alt {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1200px, calc(100% - 32px));
  }

  body {
    font-size: 16px;
  }

  .hero-vs {
    width: 100%;
    justify-content: space-between;
  }

  .chart-frame iframe {
    height: 430px;
  }

  .footer-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .ca-copy-text {
    display: none;
  }

  .ca-copy.is-copied .ca-copied {
    display: inline;
  }
}

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

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

  .hero-character,
  .ring,
  .lime-organic,
  .eyebrow-dot,
  .led,
  .pulse-dot,
  .scanline,
  .tape-track,
  .nut-drift {
    animation: none;
  }

  .btn:hover,
  .community-card:hover,
  .icon-btn:hover {
    transform: none;
  }
}
