:root {
  --ink: #111510;
  --green: #00c805;
  --lime: #c8ff17;
  --soft-green: #eaffdd;
  --blue: #4285f4;
  --red: #ea4335;
  --yellow: #fbbc04;
  --paper: #f7f7f2;
  --line: rgba(17, 21, 16, 0.16);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 20;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: min(1180px, calc(100% - 32px));
  height: 70px;
  padding: 10px 12px 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 22px;
  background: rgba(247, 247, 242, 0.82);
  box-shadow: 0 8px 34px rgba(18, 23, 16, 0.08);
  backdrop-filter: blur(18px);
  transition: 0.3s ease;
}

.site-header.scrolled {
  top: 8px;
  width: min(1040px, calc(100% - 24px));
  box-shadow: 0 12px 42px rgba(18, 23, 16, 0.13);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand-mark {
  width: 37px;
  height: 37px;
  overflow: hidden;
  display: inline-grid;
  place-items: center;
  border-radius: 11px;
  background: var(--lime);
  transform: rotate(-4deg);
}

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

.desktop-nav {
  display: flex;
  gap: 34px;
  margin-left: 70px;
}

.desktop-nav a {
  position: relative;
  font-size: 13px;
  font-weight: 700;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -4px;
  height: 2px;
  background: var(--green);
  transition: right 0.25s ease;
}

.desktop-nav a:hover::after {
  right: 0;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 13px;
  color: white;
  background: var(--ink);
  font-size: 13px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  background: var(--green);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 880px;
  padding: 150px max(6vw, 28px) 90px;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.77fr);
  gap: 7vw;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 450px;
  height: 450px;
  left: -210px;
  top: 200px;
  border-radius: 50%;
  background: rgba(66, 133, 244, 0.13);
  filter: blur(2px);
}

.hero-copy {
  max-width: 750px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: white;
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(0, 200, 5, 0.5);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 8px rgba(0, 200, 5, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 200, 5, 0); }
}

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

h1 {
  margin-bottom: 28px;
  font-size: clamp(72px, 8.3vw, 136px);
  line-height: 0.82;
  letter-spacing: -0.085em;
  font-weight: 900;
}

.scribble {
  position: relative;
  z-index: 1;
  display: inline-block;
  color: var(--green);
  font-style: normal;
}

.scribble::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -2%;
  right: -6%;
  bottom: -8%;
  height: 18%;
  border-radius: 50%;
  background: var(--lime);
  transform: rotate(-2deg);
}

.hero-lede {
  max-width: 580px;
  margin-bottom: 32px;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
  letter-spacing: -0.02em;
  color: rgba(17, 21, 16, 0.7);
}

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

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.button {
  min-height: 58px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 850;
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  color: white;
  background: var(--green);
  box-shadow: 0 10px 26px rgba(0, 200, 5, 0.22);
}

.button-primary:hover {
  box-shadow: 0 14px 32px rgba(0, 200, 5, 0.34);
}

.button-ghost {
  border: 1px solid var(--line);
  background: white;
}

.contract-pill {
  height: 44px;
  padding: 0 12px 0 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 11px;
  color: rgba(17, 21, 16, 0.72);
  background: rgba(17, 21, 16, 0.055);
  cursor: pointer;
  font-size: 12px;
}

.contract-pill:hover {
  background: rgba(17, 21, 16, 0.09);
}

.contract-label {
  padding: 6px 7px;
  border-radius: 6px;
  color: var(--ink);
  background: white;
  font-weight: 900;
}

.contract-value {
  max-width: min(330px, 42vw);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.copy-icon svg {
  width: 15px;
  display: block;
}

.copy-text {
  font-weight: 800;
}

.hero-visual {
  position: relative;
  max-width: 560px;
  justify-self: end;
}

.image-card {
  position: relative;
  overflow: visible;
  padding: 12px;
  border-radius: 42px;
  background: white;
  box-shadow: 0 30px 80px rgba(22, 35, 15, 0.2);
  transform: rotate(2.2deg);
}

.image-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 22px -18px -22px 18px;
  border-radius: 42px;
  background: var(--lime);
}

.image-card > img {
  width: 100%;
  max-height: 660px;
  display: block;
  object-fit: cover;
  object-position: center 46%;
  border-radius: 32px;
}

.ticker-card {
  position: absolute;
  left: -44px;
  right: 36px;
  bottom: 34px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 17px;
  color: white;
  background: rgba(10, 17, 7, 0.78);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(14px);
  transform: rotate(-2.2deg);
}

.ticker-card > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ticker-symbol {
  font-size: 14px;
  font-weight: 900;
}

.ticker-name {
  font-size: 10px;
  opacity: 0.64;
}

.ticker-up {
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
}

.float-tag {
  position: absolute;
  top: 14%;
  right: -42px;
  padding: 12px 16px;
  border: 3px solid var(--ink);
  border-radius: 9px;
  background: var(--yellow);
  box-shadow: 5px 5px 0 var(--ink);
  font-size: 13px;
  font-weight: 950;
  transform: rotate(9deg);
}

.orbit {
  position: absolute;
  border-radius: 50%;
  filter: blur(0.4px);
}

.orbit-one {
  width: 70px;
  height: 70px;
  top: -22px;
  left: -55px;
  background: var(--blue);
}

.orbit-two {
  width: 28px;
  height: 28px;
  right: -42px;
  bottom: 12%;
  background: var(--red);
}

.scroll-cue {
  position: absolute;
  left: max(6vw, 28px);
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: rotate(-90deg) translateY(100%);
  transform-origin: left bottom;
}

.scroll-line {
  width: 44px;
  height: 1px;
  background: var(--ink);
}

.marquee {
  overflow: hidden;
  padding: 19px 0;
  color: white;
  background: var(--ink);
  transform: rotate(-1.1deg) scale(1.02);
}

.marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 26px;
  animation: marquee 22s linear infinite;
}

.marquee span {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.marquee i {
  color: var(--lime);
  font-style: normal;
}

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

.rewards-section {
  padding: 150px max(6vw, 28px);
}

.section-kicker {
  margin-bottom: 46px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.section-kicker span {
  width: 27px;
  height: 27px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  font-size: 9px;
  letter-spacing: 0;
}

.section-kicker.light {
  color: white;
}

.rewards-header {
  margin-bottom: 72px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 10vw;
}

.rewards-header h2,
.manifesto h2,
.tokenomics h2,
.how-to-buy h2,
.final-cta h2 {
  margin-bottom: 0;
  font-size: clamp(54px, 6.8vw, 108px);
  line-height: 0.9;
  letter-spacing: -0.075em;
}

h2 em {
  color: var(--green);
  font-family: Georgia, serif;
  font-weight: 400;
}

.rewards-header p {
  margin-bottom: 4px;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(17, 21, 16, 0.64);
}

.loop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.loop-card {
  position: relative;
  min-height: 470px;
  padding: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.loop-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.8);
}

.step-number {
  position: absolute;
  left: 25px;
  top: 22px;
  font-size: 11px;
  font-weight: 900;
}

.loop-card h3 {
  margin-bottom: 8px;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.loop-card p {
  margin-bottom: 0;
  max-width: 320px;
  color: rgba(17, 21, 16, 0.66);
  font-size: 14px;
  line-height: 1.55;
}

.card-buy {
  background: var(--soft-green);
}

.loop-icon {
  position: absolute;
  width: 180px;
  height: 180px;
  top: 70px;
  left: 50%;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--green);
  font-size: 100px;
  font-weight: 200;
  transform: translateX(-50%) rotate(-10deg);
  box-shadow: 14px 18px 0 rgba(0, 200, 5, 0.16);
}

.card-tax {
  color: white;
  background: var(--ink);
}

.card-tax p {
  color: rgba(255, 255, 255, 0.6);
}

.tax-display {
  position: absolute;
  top: 45px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--lime);
  transform: translateX(-50%);
}

.tax-display strong {
  font-size: 190px;
  line-height: 1;
  letter-spacing: -0.11em;
}

.tax-display span {
  font-size: 24px;
  line-height: 0.9;
  font-weight: 900;
}

.card-reward {
  background: #dce8ff;
}

.googl-pill {
  position: absolute;
  top: 110px;
  left: 50%;
  padding: 19px 26px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 20px;
  color: white;
  background: var(--blue);
  box-shadow: 9px 11px 0 rgba(66, 133, 244, 0.18);
  font-size: 22px;
  font-weight: 900;
  transform: translateX(-50%) rotate(-5deg);
}

.googl-pill span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: white;
}

.manifesto {
  min-height: 750px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  color: white;
  background: var(--ink);
}

.manifesto-art {
  min-height: 690px;
  padding: 8%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background: var(--blue);
}

.android-face {
  position: relative;
  width: min(500px, 94%);
  aspect-ratio: 1 / 0.68;
  border-radius: 50% 50% 3% 3% / 85% 85% 3% 3%;
  background: var(--lime);
  box-shadow: -26px 26px 0 var(--red), 26px -26px 0 var(--yellow);
}

.antenna {
  position: absolute;
  width: 16px;
  height: 105px;
  top: -72px;
  border-radius: 20px;
  background: var(--lime);
  transform-origin: bottom;
}

.a-left { left: 25%; transform: rotate(-35deg); }
.a-right { right: 25%; transform: rotate(35deg); }

.eye {
  position: absolute;
  top: 38%;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--ink);
  animation: blink 5s infinite;
}

.e-left { left: 28%; }
.e-right { right: 28%; }

@keyframes blink {
  0%, 46%, 50%, 100% { transform: scaleY(1); }
  48% { transform: scaleY(0.08); }
}

.manifesto-copy {
  padding: 110px 8vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.manifesto h2 {
  max-width: 850px;
  margin-bottom: 38px;
}

.manifesto-copy > p {
  max-width: 620px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 17px;
  line-height: 1.7;
}

.manifesto ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
  font-size: 14px;
  font-weight: 700;
}

.manifesto li {
  display: flex;
  align-items: center;
  gap: 11px;
}

.manifesto li span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  font-size: 11px;
}

.tokenomics {
  padding: 150px max(6vw, 28px);
  display: grid;
  grid-template-columns: 1fr 0.7fr 0.65fr;
  align-items: center;
  gap: 6vw;
  background: var(--lime);
}

.tokenomics-title h2 {
  font-size: clamp(48px, 5.5vw, 86px);
}

.tax-orbit {
  position: relative;
  width: min(330px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.tax-orbit svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.tax-orbit circle {
  fill: none;
  stroke: var(--ink);
  stroke-width: 2;
  stroke-dasharray: 82 18;
  stroke-linecap: round;
}

.tax-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tax-center strong {
  font-size: 102px;
  line-height: 0.85;
  letter-spacing: -0.09em;
}

.tax-center span {
  margin-top: 18px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tokenomics-detail {
  padding: 26px;
  border: 2px solid var(--ink);
  border-radius: 20px;
  box-shadow: 8px 8px 0 var(--ink);
  background: var(--paper);
}

.detail-row {
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 800;
}

.detail-row strong {
  font-size: 20px;
}

.detail-row.muted {
  color: rgba(17, 21, 16, 0.45);
}

.tokenomics-detail p {
  margin: 20px 0 0;
  color: rgba(17, 21, 16, 0.58);
  font-size: 12px;
  line-height: 1.55;
}

.how-to-buy {
  padding: 150px max(6vw, 28px);
  color: white;
  background: var(--blue);
}

.buy-intro {
  margin-bottom: 72px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.buy-intro .section-kicker {
  align-self: flex-start;
}

.buy-intro h2 {
  text-align: right;
}

.buy-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.buy-step {
  min-height: 260px;
  padding: 34px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.35);
}

.buy-step:last-child {
  border-right: 0;
}

.buy-step > span {
  width: 42px;
  height: 42px;
  margin-bottom: 65px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: white;
  font-size: 14px;
  font-weight: 900;
}

.buy-step h3 {
  margin-bottom: 8px;
  font-size: 25px;
  letter-spacing: -0.04em;
}

.buy-step p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.inline-copy {
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.68);
  background: transparent;
  cursor: pointer;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
}

.inline-copy small {
  margin-left: 8px;
  padding: 4px 7px;
  border-radius: 5px;
  color: var(--blue);
  background: white;
  font-family: "Avenir Next", sans-serif;
  font-weight: 900;
}

.final-cta {
  position: relative;
  min-height: 700px;
  padding: 120px 24px;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
  background: #efffe8;
}

.final-cta::before,
.final-cta::after {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.22;
}

.final-cta::before { left: -180px; top: -80px; background: var(--blue); }
.final-cta::after { right: -160px; bottom: -150px; background: var(--green); }

.cta-content {
  position: relative;
  z-index: 2;
}

.mini-bot {
  position: relative;
  width: 78px;
  height: 62px;
  margin: 0 auto 34px;
  display: grid;
  place-items: center;
  border-radius: 50% 50% 12px 12px;
  color: var(--ink);
  background: var(--green);
  font-size: 10px;
}

.mini-bot::before,
.mini-bot::after {
  content: "";
  position: absolute;
  top: -18px;
  width: 4px;
  height: 24px;
  border-radius: 4px;
  background: var(--green);
  transform-origin: bottom;
}

.mini-bot::before { left: 22px; transform: rotate(-28deg); }
.mini-bot::after { right: 22px; transform: rotate(28deg); }

.final-cta h2 {
  font-size: clamp(60px, 8.8vw, 140px);
}

.final-cta p {
  margin: 25px 0 34px;
  color: rgba(17, 21, 16, 0.6);
  font-size: 20px;
}

.button-dark {
  min-width: 210px;
  color: white;
  background: var(--ink);
}

.button-dark:hover {
  color: var(--ink);
  background: var(--lime);
}

.cta-sticker {
  position: absolute;
  z-index: 1;
  padding: 14px 18px;
  border: 3px solid var(--ink);
  border-radius: 10px;
  box-shadow: 5px 5px 0 var(--ink);
  font-size: 13px;
  font-weight: 950;
}

.sticker-red { left: 9%; top: 24%; background: var(--red); transform: rotate(-12deg); }
.sticker-blue { right: 8%; top: 18%; color: white; background: var(--blue); transform: rotate(9deg); }
.sticker-yellow { right: 14%; bottom: 16%; background: var(--yellow); transform: rotate(-6deg); }

footer {
  padding: 65px max(6vw, 28px) 34px;
  color: white;
  background: var(--ink);
}

.footer-brand {
  margin-bottom: 50px;
  font-size: 24px;
}

.footer-brand .brand-mark {
  width: 46px;
  height: 46px;
}

.disclaimer {
  max-width: 820px;
  margin-bottom: 60px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
  line-height: 1.6;
}

.footer-meta {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.toast {
  position: fixed;
  z-index: 100;
  left: 50%;
  bottom: 26px;
  padding: 13px 18px;
  border-radius: 100px;
  color: white;
  background: var(--ink);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.24);
  font-size: 12px;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 20px);
  transition: 0.3s ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }

@media (max-width: 980px) {
  .desktop-nav { display: none; }

  .hero {
    min-height: auto;
    padding-top: 140px;
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .hero-copy { max-width: 830px; }
  .hero-visual { width: min(600px, 86vw); justify-self: center; }
  .scroll-cue { display: none; }

  .rewards-header { grid-template-columns: 1fr; gap: 30px; }
  .rewards-header p { max-width: 580px; }
  .loop-card { min-height: 420px; }
  .tax-display strong { font-size: 140px; }

  .manifesto { grid-template-columns: 1fr; }
  .manifesto-art { min-height: 530px; }

  .tokenomics { grid-template-columns: 1fr 1fr; }
  .tokenomics-title { grid-column: 1 / -1; }

  .buy-intro { display: block; }
  .buy-intro h2 { text-align: left; }
}

@media (max-width: 720px) {
  .site-header { height: 62px; top: 10px; }
  .nav-cta { display: none; }

  .menu-toggle {
    width: 42px;
    height: 42px;
    padding: 0;
    display: grid;
    place-content: center;
    gap: 7px;
    border: 0;
    border-radius: 12px;
    color: white;
    background: var(--ink);
    cursor: pointer;
  }

  .menu-toggle span {
    width: 18px;
    height: 2px;
    display: block;
    background: currentColor;
    transition: 0.25s ease;
  }

  .menu-open .menu-toggle span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .menu-open .menu-toggle span:last-child { transform: translateY(-4.5px) rotate(-45deg); }

  .mobile-menu {
    position: fixed;
    z-index: 45;
    inset: 0;
    padding: 110px 28px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    color: white;
    background: var(--ink);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-20px);
    transition: 0.3s ease;
  }

  .mobile-menu.open { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
  .mobile-menu a { font-size: 38px; line-height: 1.1; font-weight: 900; letter-spacing: -0.06em; }
  .mobile-menu a:last-child { margin-top: 24px; color: var(--lime); }

  .hero {
    padding: 120px 20px 90px;
    gap: 55px;
  }

  h1 { font-size: clamp(62px, 22vw, 92px); }
  .hero-lede { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .contract-pill { max-width: 100%; }
  .contract-value { overflow: hidden; }

  .hero-visual { width: calc(100% - 24px); }
  .image-card { padding: 8px; border-radius: 28px; }
  .image-card > img { max-height: 520px; border-radius: 21px; }
  .ticker-card { left: -12px; right: 14px; bottom: 18px; }
  .float-tag { right: -18px; top: 10%; }
  .orbit-one { left: -25px; }
  .orbit-two { right: -20px; }

  .rewards-section { padding: 100px 20px; }
  .section-kicker { margin-bottom: 30px; }
  .rewards-header { margin-bottom: 46px; }
  .rewards-header h2,
  .manifesto h2,
  .tokenomics h2,
  .how-to-buy h2 { font-size: clamp(50px, 15vw, 72px); }

  .loop-grid { grid-template-columns: 1fr; }
  .loop-card { min-height: 400px; }

  .manifesto-art { min-height: 410px; padding: 16% 8% 7%; }
  .android-face { width: 92%; }
  .antenna { height: 75px; top: -50px; }
  .eye { width: 26px; height: 26px; }
  .manifesto-copy { padding: 90px 20px; }

  .tokenomics { padding: 100px 20px; grid-template-columns: 1fr; gap: 52px; }
  .tokenomics-title { grid-column: auto; }
  .tax-orbit { width: 280px; justify-self: center; }
  .tax-center strong { font-size: 86px; }

  .how-to-buy { padding: 100px 20px; }
  .buy-intro { margin-bottom: 50px; }
  .buy-steps { grid-template-columns: 1fr; }
  .buy-step { min-height: auto; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.35); }
  .buy-step > span { margin-bottom: 35px; }

  .final-cta { min-height: 610px; padding: 100px 20px; }
  .final-cta h2 { font-size: clamp(64px, 20vw, 100px); }
  .cta-sticker { padding: 9px 11px; font-size: 9px; }
  .sticker-red { left: 4%; top: 17%; }
  .sticker-blue { right: 3%; top: 13%; }
  .sticker-yellow { right: 6%; bottom: 10%; }

  footer { padding: 55px 20px 26px; }
  .footer-meta { gap: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
