:root {
  --bg: #02030a;
  --bg-soft: #070914;
  --panel: rgba(12, 15, 31, 0.72);
  --panel-strong: rgba(15, 18, 39, 0.92);
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(20, 241, 149, 0.36);
  --text: #f8fbff;
  --muted: #aeb9d8;
  --soft: #dfe6ff;
  --green: #14f195;
  --violet: #7b5cff;
  --cyan: #4de0ff;
  --orange: #ff8a4c;
  --radius: 8px;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.5);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  min-width: 320px;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 6%, rgba(123, 92, 255, 0.26), transparent 28rem),
    radial-gradient(circle at 86% 10%, rgba(20, 241, 149, 0.13), transparent 24rem),
    linear-gradient(180deg, #02030a 0%, #070914 44%, #02030a 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.034) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.034) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.78), transparent 78%);
  z-index: -1;
}

a {
  color: inherit;
}

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

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

[id] {
  scroll-margin-top: 96px;
}

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

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(2, 3, 10, 0.78);
  backdrop-filter: blur(18px);
}

.nav__inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(20, 241, 149, 0.46);
  box-shadow: 0 0 24px rgba(20, 241, 149, 0.24);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.nav__links a {
  text-decoration: none;
  transition: color 0.2s ease;
}

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

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

.social-link {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 900;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.social-link:hover {
  color: var(--green);
  border-color: rgba(20, 241, 149, 0.48);
  transform: translateY(-1px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.button--primary {
  color: #02030a;
  background: linear-gradient(135deg, var(--green), var(--cyan) 58%, var(--violet));
  box-shadow: 0 18px 52px rgba(20, 241, 149, 0.2);
}

.button--secondary {
  color: var(--soft);
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.16);
}

.button--small {
  min-height: 38px;
  padding: 0 14px;
  font-size: 0.68rem;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.42);
}

.hero {
  min-height: 100svh;
  padding: 148px 0 72px;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(20, 241, 149, 0.8);
}

h1 {
  margin-top: 18px;
  font-size: clamp(4.2rem, 13vw, 9.8rem);
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero__line {
  max-width: 880px;
  margin-top: 24px;
  font-size: clamp(1.55rem, 4vw, 3.35rem);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: 0;
}

.hero__copy {
  max-width: 720px;
  margin-top: 22px;
  color: var(--soft);
  font-size: clamp(1rem, 1.65vw, 1.2rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.trust-row span,
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.055);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-verify {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-top: 10px;
  color: rgba(174, 185, 216, 0.82);
  font-family: "Roboto Mono", monospace;
  font-size: 0.74rem;
  line-height: 1.5;
}

.hero-verify__ca {
  color: rgba(223, 230, 255, 0.9);
  white-space: nowrap;
}

.hero-verify button,
.hero-verify a {
  border: 0;
  padding: 0;
  background: transparent;
  color: rgba(20, 241, 149, 0.88);
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.hero-verify button:hover,
.hero-verify a:hover {
  color: var(--soft);
}

.hero-verify__note {
  display: none;
  color: var(--green);
}

.hero-dex-context {
  width: min(100%, 620px);
  margin-top: 8px;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
  color: rgba(174, 185, 216, 0.82);
  font-size: 0.76rem;
  line-height: 1.55;
}

.hero-dex-context summary {
  width: fit-content;
  padding: 0;
  color: rgba(174, 185, 216, 0.86);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-dex-context summary:hover {
  color: var(--green);
}

.hero-dex-context p {
  margin-top: 8px;
  color: rgba(174, 185, 216, 0.82);
}

.hero__visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  perspective: 900px;
}

.orb-card {
  width: min(100%, 460px);
  aspect-ratio: 1;
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 20%, rgba(255, 255, 255, 0.95), rgba(123, 92, 255, 0.42) 18%, transparent 34%),
    radial-gradient(circle at 64% 64%, rgba(20, 241, 149, 0.16), transparent 46%),
    rgba(255, 255, 255, 0.025);
  box-shadow:
    inset 0 0 90px rgba(123, 92, 255, 0.2),
    0 0 120px rgba(20, 241, 149, 0.12),
    var(--shadow);
}

.orb-card::before,
.orb-card::after {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  border: 1px solid rgba(20, 241, 149, 0.28);
  transform: rotate(-18deg) scaleX(1.12);
}

.orb-card::after {
  inset: 4%;
  border-color: rgba(123, 92, 255, 0.25);
  transform: rotate(24deg) scaleY(1.08);
}

.orb-card img {
  position: relative;
  z-index: 1;
  width: 54%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
}

.orb-card__tag {
  position: absolute;
  left: 2%;
  bottom: 16%;
  z-index: 2;
  max-width: 220px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(2, 3, 10, 0.72);
  backdrop-filter: blur(16px);
  color: var(--soft);
  font-size: 0.82rem;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.45);
}

.section {
  padding: 112px 0;
  position: relative;
}

.section--soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}

.section__head {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.section__kicker {
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h2 {
  margin-top: 12px;
  font-size: clamp(2.15rem, 5vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.section__copy {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.02rem;
}

.thesis {
  max-width: 1020px;
  margin: 0 auto;
  text-align: center;
}

.thesis__statement {
  font-size: clamp(2.2rem, 6vw, 5.4rem);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: 0;
}

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

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

.thesis .grid {
  margin-top: 42px;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  padding: 26px;
  min-width: 0;
}

.card--large {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    var(--panel-strong);
}

.card__index {
  color: var(--green);
  font-family: "Roboto Mono", monospace;
  font-size: 0.78rem;
  font-weight: 700;
}

.card h3 {
  margin-top: 16px;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.05;
}

.card p {
  margin-top: 14px;
  color: var(--muted);
}

.card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.status-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid rgba(20, 241, 149, 0.26);
  color: var(--green);
  background: rgba(20, 241, 149, 0.08);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.proof-row span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: var(--soft);
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
}

.ecosystem .grid {
  margin-top: 30px;
}

.ideas-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
}

.idea-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.boardroom-preview {
  margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  align-items: center;
  border-color: rgba(20, 241, 149, 0.24);
  background:
    radial-gradient(circle at 12% 16%, rgba(20, 241, 149, 0.1), transparent 24rem),
    var(--panel);
}

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

.tier-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(2, 3, 10, 0.44);
}

.tier-card strong {
  display: block;
  color: var(--soft);
  line-height: 1.2;
}

.tier-card span {
  display: block;
  margin-top: 6px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.music-section {
  background:
    radial-gradient(circle at 18% 12%, rgba(123, 92, 255, 0.12), transparent 30rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent);
}

.music-grid {
  align-items: stretch;
}

.music-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.music-card--album {
  border-color: rgba(20, 241, 149, 0.24);
  background:
    radial-gradient(circle at 18% 12%, rgba(20, 241, 149, 0.1), transparent 22rem),
    var(--panel);
}

.section-note {
  max-width: 760px;
  margin: 22px auto 0;
  color: rgba(239, 244, 255, 0.56);
  font-size: 0.86rem;
  line-height: 1.6;
  text-align: center;
}

.game-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: stretch;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 20%, rgba(20, 241, 149, 0.12), transparent 34rem),
    rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow);
}

.game-panel__media {
  min-height: 390px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(rgba(20, 241, 149, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 241, 149, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(123, 92, 255, 0.34), transparent 58%),
    #03040d;
  background-size: 48px 48px, 48px 48px, auto, auto;
  position: relative;
  overflow: hidden;
}

.game-panel__media::before {
  content: "Optimization Loop";
  position: absolute;
  left: 24px;
  top: 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.7rem, 4vw, 3.3rem);
  line-height: 0.98;
  max-width: 320px;
  font-weight: 900;
}

.game-panel__media::after {
  content: "";
  position: absolute;
  right: 12%;
  bottom: 14%;
  width: 34%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(20, 241, 149, 0.4);
  background: radial-gradient(circle at 36% 28%, rgba(255, 255, 255, 0.9), rgba(20, 241, 149, 0.3) 18%, rgba(123, 92, 255, 0.2) 56%, transparent 72%);
  box-shadow: 0 0 80px rgba(20, 241, 149, 0.2);
}

.status-list {
  display: grid;
  gap: 13px;
  margin-top: 28px;
  list-style: none;
}

.status-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--soft);
}

.status-list strong {
  color: var(--green);
  font-size: 0.76rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  white-space: nowrap;
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.verify-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
  gap: 26px;
  align-items: start;
}

.contract-box {
  display: grid;
  gap: 18px;
}

.contract-copy {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(2, 3, 10, 0.58);
  color: var(--text);
  cursor: pointer;
  text-align: left;
}

.contract-copy code {
  font-family: "Roboto Mono", monospace;
  color: var(--soft);
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

.contract-copy span {
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  white-space: nowrap;
}

.copy-note {
  display: none;
  color: var(--green);
  font-size: 0.88rem;
}

.verify-links,
.proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.proof-list .pill {
  border-color: rgba(20, 241, 149, 0.22);
}

details {
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  overflow: hidden;
}

summary {
  padding: 18px 20px;
  cursor: pointer;
  color: var(--soft);
  font-weight: 800;
}

.details-body {
  padding: 0 20px 20px;
  color: var(--muted);
}

.details-body h3 {
  margin: 16px 0 8px;
  color: var(--soft);
  font-size: 0.96rem;
}

.details-body p {
  color: var(--muted);
  line-height: 1.7;
}

.details-body a {
  color: var(--green);
  font-weight: 700;
  text-decoration: none;
}

.details-body a:hover {
  color: var(--soft);
  text-decoration: underline;
}

.details-body ul {
  margin-left: 18px;
}

.details-body li + li {
  margin-top: 8px;
}

.steps {
  counter-reset: buy-step;
}

.step {
  position: relative;
  min-height: 210px;
}

.step::before {
  counter-increment: buy-step;
  content: counter(buy-step);
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  color: #02030a;
  background: var(--green);
  font-weight: 900;
}

.culture-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: center;
}

.quote {
  font-size: clamp(1.55rem, 3vw, 2.7rem);
  line-height: 1.05;
  font-weight: 900;
}

.quote cite {
  display: block;
  margin-top: 18px;
  color: var(--green);
  font-size: 0.82rem;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.meme-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  transition: opacity 0.22s ease;
}

.meme-grid--transitioning {
  opacity: 0.18;
}

.meme-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #000;
}

.meme-note {
  margin-top: 10px;
  color: rgba(239, 244, 255, 0.5);
  font-size: 0.78rem;
  line-height: 1.5;
  text-align: center;
}

.meme-grid--fallback {
  margin-top: 12px;
}

.community-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.team-strip {
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
}

.legal {
  color: rgba(223, 230, 255, 0.68);
  font-size: 0.84rem;
  line-height: 1.7;
}

.legal-page {
  padding-top: 72px;
}

.legal-page__container {
  max-width: 860px;
}

.legal-page h1 {
  margin-top: 14px;
  font-size: clamp(2.45rem, 6vw, 4.8rem);
  line-height: 0.96;
  text-transform: none;
}

.legal-page__updated {
  margin-top: 18px;
  color: var(--green);
  font-family: "Roboto Mono", monospace;
  font-size: 0.9rem;
  font-weight: 700;
}

.legal-page__content {
  margin-top: 34px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  color: var(--muted);
}

.legal-page__content h2 {
  margin-top: 30px;
  color: var(--soft);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.16;
  text-transform: none;
}

.legal-page__content h2:first-child {
  margin-top: 0;
}

.legal-page__content p,
.legal-page__content li {
  font-size: 1rem;
  line-height: 1.75;
}

.legal-page__content p + p,
.legal-page__content ul + p,
.legal-page__content p + ul {
  margin-top: 14px;
}

.legal-page__content ul {
  margin-left: 20px;
}

.legal-page__content li + li {
  margin-top: 8px;
}

.legal-page__content a {
  color: var(--green);
  font-weight: 700;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.legal-page__content a:hover {
  color: var(--soft);
  text-decoration: underline;
}

footer {
  padding: 44px 0 54px;
  border-top: 1px solid var(--line);
  background: #02030a;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

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

@media (max-width: 960px) {
  .nav__links {
    display: none;
  }

  .hero {
    padding-top: 124px;
  }

  .hero__grid,
  .game-panel,
  .verify-grid,
  .culture-grid,
  .boardroom-preview {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    min-height: 360px;
    place-items: start center;
  }

  .orb-card {
    width: min(360px, 82vw);
  }

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

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .nav__inner {
    min-height: 64px;
  }

  .brand span {
    display: none;
  }

  .social-link {
    width: 34px;
    height: 34px;
    font-size: 0.86rem;
  }

  .nav__actions .button {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 108px 0 56px;
  }

  h1 {
    font-size: clamp(3.45rem, 16.8vw, 4.25rem);
  }

  .hero__line {
    font-size: clamp(1.85rem, 10vw, 3rem);
  }

  .hero__copy {
    font-size: 0.95rem;
    line-height: 1.5;
  }

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

  .trust-row {
    gap: 7px;
  }

  .trust-row span {
    min-height: 30px;
    font-size: 0.65rem;
  }

  .hero-verify {
    gap: 7px 10px;
    font-size: 0.72rem;
  }

  .hero__visual {
    min-height: 260px;
  }

  .orb-card__tag {
    display: none;
  }

  .section {
    padding: 78px 0;
  }

  .card {
    padding: 22px;
  }

  .card--large,
  .step,
  .idea-card {
    min-height: auto;
  }

  .ideas-grid,
  .tier-grid {
    grid-template-columns: 1fr;
  }

  .game-panel {
    padding: 18px;
  }

  .game-panel__media {
    min-height: 260px;
  }

  .status-list li {
    display: grid;
  }

  .contract-copy {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  .legal-page {
    padding-top: 64px;
  }

  .legal-page__content {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
