:root {
  --black: #050505;
  --near-black: #0a0a0a;
  --orange: #ff9500;
  --orange-light: #ffad2f;
  --white: #f4f0e8;
  --muted: #a49f96;
  --line: rgba(244, 240, 232, 0.18);
  --page: min(1480px, calc(100% - 64px));
  --section-space: clamp(84px, 8vw, 128px);
  --panel-space: clamp(30px, 4.5vw, 64px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
  overflow-x: clip;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background: var(--black);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.4;
}

a {
  color: inherit;
}

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

.grain {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0.055;
  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='.8'/%3E%3C/svg%3E");
}

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  width: var(--page);
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.brand {
  font-size: 1.55rem;
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 1;
  text-decoration: none;
}

.brand span {
  color: var(--orange);
}

.header-identity {
  display: flex;
  align-items: center;
  gap: 17px;
  color: var(--white);
  text-decoration: none;
}

.header-identity img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
}

.header-identity strong {
  font-size: 1.22rem;
  font-weight: 950;
  letter-spacing: -0.035em;
  white-space: nowrap;
}

nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

nav a {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-cta {
  padding: 11px 16px;
  border: 1px solid var(--orange);
  color: var(--orange);
}

.social-link {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--white);
  transition: 160ms ease;
}

.social-link:hover {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--black);
}

.live-shell {
  width: var(--page);
  margin: 0 auto;
  padding-top: 26px;
}

.live-strip {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  padding: 13px 18px;
  background: var(--orange);
  color: var(--black);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.13em;
}

.live-strip > div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.live-strip p {
  margin: 0;
  text-align: right;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--black);
  box-shadow: 0 0 0 4px rgba(5, 5, 5, 0.13);
}

.token-dashboard,
.rewards-dashboard {
  border: 1px solid var(--line);
  border-top: 0;
}

.token-dashboard {
  padding: var(--panel-space);
}

.dashboard-heading {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 42px;
}

.dashboard-heading h2 {
  margin: 22px 0 0;
  font-size: clamp(2.6rem, 5.8vw, 6.5rem);
  font-weight: 950;
  letter-spacing: -0.075em;
  line-height: 0.8;
}

.dashboard-heading h2 span:last-child {
  color: var(--orange);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  border: 1px solid var(--line);
}

.metric-card {
  min-width: 0;
  padding: clamp(20px, 2.5vw, 34px) clamp(16px, 2vw, 28px);
  border-right: 1px solid var(--line);
}

.metric-card:last-child {
  border-right: 0;
}

.metric-card--primary {
  grid-column: span 2;
}

.metric-card span,
.reward-pool span,
.graduation-row span,
.distribution-progress span,
.calculator-kicker,
.reward-calculator label,
.calculator-result > span {
  display: block;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.metric-card strong {
  display: block;
  overflow: hidden;
  margin-top: 14px;
  font-size: clamp(1rem, 1.7vw, 1.5rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.metric-card--primary strong {
  color: var(--orange);
  font-size: clamp(1.4rem, 2.5vw, 2.35rem);
}

.metric-card strong.positive {
  color: var(--orange);
}

.metric-card strong.negative {
  color: #ff5a4f;
}

.graduation-row {
  display: grid;
  grid-template-columns: minmax(210px, 0.25fr) 1fr;
  align-items: center;
  gap: 30px;
  padding-top: 30px;
}

.graduation-row > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.graduation-row strong {
  color: var(--orange);
  font-size: 1.1rem;
}

.progress-track {
  overflow: hidden;
  height: 9px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.progress-track span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--orange);
  transition: width 500ms ease;
}

.rewards-dashboard {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(440px, 0.85fr);
  gap: 1px;
  background: var(--line);
}

.rewards-copy,
.reward-calculator {
  background: var(--black);
}

.rewards-copy {
  padding: var(--panel-space);
}

.rewards-copy h2 {
  max-width: 100%;
  margin: clamp(28px, 3.5vw, 48px) 0 clamp(22px, 2.5vw, 34px);
  font-size: clamp(3rem, 5.4vw, 6rem);
  font-weight: 950;
  letter-spacing: -0.08em;
  line-height: 0.77;
}

.rewards-copy h2 span {
  color: var(--orange);
}

.rewards-copy > p {
  max-width: 620px;
  margin-bottom: 38px;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.65;
}

.reward-pool {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-block: 1px solid var(--line);
}

.reward-pool article {
  padding: 26px 26px 26px 0;
}

.reward-pool article + article {
  padding-left: 26px;
  border-left: 1px solid var(--line);
}

.reward-pool strong {
  display: block;
  margin-top: 12px;
  color: var(--orange);
  font-family: "Courier New", monospace;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  overflow-wrap: anywhere;
}

.distribution-progress {
  margin-top: 30px;
}

.distribution-progress > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 12px;
}

.distribution-progress strong {
  font-family: "Courier New", monospace;
  font-size: 0.82rem;
}

.reward-calculator {
  display: flex;
  flex-direction: column;
  padding: var(--panel-space);
  background: var(--orange);
  color: var(--black);
}

.calculator-kicker,
.reward-calculator label,
.calculator-result > span {
  color: rgba(5, 5, 5, 0.62);
}

.reward-calculator label {
  margin-top: 48px;
}

.percentage-input {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  margin-top: 14px;
  border-bottom: 3px solid var(--black);
}

.percentage-input input {
  min-width: 0;
  padding: 6px 0 9px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--black);
  font: inherit;
  font-size: clamp(3.4rem, 6vw, 6.6rem);
  font-weight: 950;
  letter-spacing: -0.08em;
  line-height: 1;
  appearance: textfield;
}

.percentage-input input::-webkit-inner-spin-button,
.percentage-input input::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
}

.percentage-input span {
  font-size: clamp(1.8rem, 3vw, 3.1rem);
  font-weight: 950;
}

.reward-calculator > p {
  margin: 11px 0 34px;
  font-size: 0.72rem;
  font-weight: 700;
}

.calculator-result {
  margin-top: auto;
  padding: 28px;
  background: var(--black);
  color: var(--white);
}

.calculator-result strong,
.calculator-result small {
  display: block;
}

.calculator-result strong {
  margin-top: 18px;
  font-family: "Courier New", monospace;
  font-size: clamp(1.45rem, 2.8vw, 2.65rem);
  overflow-wrap: anywhere;
}

.calculator-result small {
  margin-top: 8px;
  color: var(--orange);
  font-family: "Courier New", monospace;
  font-size: 1.05rem;
  font-weight: 800;
}

.reward-details {
  margin: 22px 0 0;
  border-top: 1px solid rgba(5, 5, 5, 0.24);
}

.reward-details div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(5, 5, 5, 0.24);
}

.reward-details dt,
.reward-details dd {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
}

.reward-details dd {
  text-align: right;
}

.dashboard-error {
  padding: 16px 20px;
  border: 1px solid #ff5a4f;
  border-top: 0;
  color: #ff8178;
  font-size: 0.82rem;
  font-weight: 800;
}

.hero {
  position: relative;
  display: grid;
  min-height: 880px;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  align-items: center;
  gap: clamp(20px, 4vw, 72px);
  width: var(--page);
  margin: 0 auto;
  padding: var(--section-space) 0 clamp(64px, 6vw, 88px);
}

.hero::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 61%;
  width: 1px;
  background: var(--line);
  content: "";
}

.eyebrow,
.section-index {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 18px var(--orange);
}

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

h1 {
  max-width: 820px;
  margin-bottom: 42px;
  font-size: clamp(4rem, 7.45vw, 8.4rem);
  font-weight: 950;
  letter-spacing: -0.075em;
  line-height: 0.77;
  text-transform: uppercase;
}

h1 span,
h1 strong {
  display: block;
}

h1 span {
  margin: 0.42em 0 0.14em;
  color: var(--white);
  font-size: 0.28em;
  letter-spacing: 0.13em;
  line-height: 1;
}

h1 strong {
  color: var(--orange);
  font-style: normal;
}

h1 .outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--white);
}

.hero-footer {
  display: flex;
  max-width: 630px;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.hero-footer p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.35;
}

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

.hero-footer em {
  color: var(--orange);
  font-style: normal;
  font-weight: 800;
}

.round-link {
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: 180ms ease;
}

.round-link:hover {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--black);
  transform: translateY(3px);
}

.round-link svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero-mark {
  position: relative;
  display: grid;
  min-height: 650px;
  place-items: center;
  isolation: isolate;
}

.hero-mark::before {
  position: absolute;
  z-index: -2;
  width: 64%;
  height: 64%;
  border-radius: 50%;
  background: var(--orange);
  filter: blur(110px);
  opacity: 0.13;
  content: "";
}

.hero-mark img {
  position: relative;
  z-index: 2;
  width: min(100%, 570px);
  border-radius: 50%;
  box-shadow: 0 38px 95px rgba(0, 0, 0, 0.65);
  transform: rotate(2.5deg);
  animation: float 5s ease-in-out infinite;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 149, 0, 0.4);
  border-radius: 50%;
}

.orbit-one {
  width: 90%;
  height: 90%;
  animation: spin 22s linear infinite;
}

.orbit-two {
  width: 73%;
  height: 105%;
  border-style: dashed;
  opacity: 0.42;
  transform: rotate(56deg);
}

.orbit-one::after {
  position: absolute;
  top: 10%;
  right: 10%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 18px var(--orange);
  content: "";
}

.mark-note {
  position: absolute;
  z-index: 3;
  padding: 8px 11px;
  border: 1px solid var(--line);
  background: var(--black);
  color: var(--muted);
  font-family: "Courier New", monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.mark-note--top {
  top: 15%;
  right: -2%;
}

.mark-note--bottom {
  bottom: 15%;
  left: 2%;
}

.ticker {
  overflow: hidden;
  border-block: 2px solid var(--orange);
  background: var(--orange);
  color: var(--black);
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  padding: 15px 0 14px;
  animation: ticker 24s linear infinite;
}

.ticker span,
.ticker i {
  white-space: nowrap;
}

.ticker span {
  padding-inline: 28px;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 950;
  letter-spacing: -0.035em;
}

.ticker i {
  font-size: 1rem;
  font-style: normal;
}

.campaign-banner {
  position: relative;
  width: var(--page);
  margin: clamp(40px, 5vw, 72px) auto 0;
  overflow: hidden;
  border: 1px solid rgba(255, 149, 0, 0.42);
  background: #000;
  box-shadow: 0 30px 100px rgba(255, 149, 0, 0.08);
}

.campaign-banner::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  content: "";
  pointer-events: none;
}

.campaign-banner img {
  display: block;
  width: 100%;
  height: auto;
}

.section {
  width: var(--page);
  margin: 0 auto;
  padding: var(--section-space) 0;
}

.manifesto {
  display: grid;
  grid-template-columns: minmax(120px, 0.25fr) 1fr;
  border-bottom: 1px solid var(--line);
}

.manifesto h2 {
  max-width: 1120px;
  margin: 0 0 clamp(44px, 5vw, 70px);
  font-size: clamp(2.8rem, 6.2vw, 7.4rem);
  font-weight: 950;
  letter-spacing: -0.07em;
  line-height: 0.92;
  text-transform: uppercase;
}

.manifesto h2 span {
  color: var(--orange);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 980px;
  margin-left: auto;
}

.story-grid p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.65;
}

.story-grid .lead {
  color: var(--white);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 750;
  line-height: 1.35;
}

.meaning {
  border-bottom: 1px solid var(--line);
}

.meaning-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin: 30px 0 clamp(42px, 4vw, 56px);
}

.meaning-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.6;
}

.meaning-head h2 {
  margin: 0;
  color: var(--orange);
  font-size: clamp(3rem, 6vw, 7rem);
  font-weight: 950;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.dual-code {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 22px;
  border: 1px solid var(--line);
}

.dual-code article {
  display: flex;
  min-height: 290px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 4vw, 58px);
  border-right: 1px solid var(--line);
}

.dual-code article:last-child {
  border-right: 0;
}

.dual-code span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.dual-code strong {
  display: block;
  margin-block: auto;
  padding-block: 28px;
  font-size: clamp(4rem, 8vw, 9rem);
  font-weight: 950;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.dual-code p {
  margin: 0;
  font-size: clamp(1rem, 1.8vw, 1.45rem);
  font-weight: 900;
  letter-spacing: 0.02em;
}

.dual-code .system-code {
  background: var(--orange);
  color: var(--black);
}

.system-code span {
  color: rgba(5, 5, 5, 0.62);
}

.code-note {
  max-width: 720px;
  margin: 0 0 50px auto;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.65;
}

.code-note strong {
  color: var(--white);
}

.letter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
}

.letter-grid article {
  min-width: 0;
  padding: clamp(22px, 3.5vw, 54px);
  border-right: 1px solid var(--line);
}

.letter-grid article:last-child {
  border-right: 0;
}

.letter {
  display: block;
  color: transparent;
  font-size: clamp(5rem, 11vw, 12rem);
  font-weight: 950;
  letter-spacing: -0.08em;
  line-height: 0.86;
  -webkit-text-stroke: 1.5px var(--white);
}

.word {
  display: block;
  margin-top: 34px;
  font-size: clamp(1rem, 1.9vw, 1.6rem);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.letter-grid .eat {
  background: var(--orange);
  color: var(--black);
}

.eat .letter {
  color: var(--black);
  -webkit-text-stroke: 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  gap: 1px;
  padding-block: 1px;
  background: var(--line);
}

.pair-panel,
.signal-panel {
  background: var(--black);
}

.pair-panel {
  padding: var(--panel-space);
}

.pair-panel h2 {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 30px);
  margin: clamp(52px, 5vw, 72px) 0 clamp(64px, 6vw, 84px);
  font-size: clamp(2.8rem, 6vw, 6.8rem);
  font-weight: 950;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.pair-panel h2 span:last-child {
  color: var(--orange);
}

.pair-panel h2 b {
  color: var(--muted);
  font-size: 0.5em;
  font-weight: 400;
}

.versus {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  border-block: 1px solid var(--line);
  background: var(--line);
}

.versus div {
  padding: 26px 22px 26px 0;
  background: var(--black);
}

.versus div:last-child {
  padding-left: 28px;
}

.versus small,
.versus strong {
  display: block;
}

.versus small {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.versus strong {
  font-size: clamp(1rem, 1.9vw, 1.5rem);
}

.signal-panel {
  position: relative;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 610px;
  padding: var(--panel-space);
  background: var(--orange);
  color: var(--black);
}

.signal-panel p {
  margin-bottom: 12px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.signal-panel strong {
  position: relative;
  z-index: 2;
  font-size: clamp(2rem, 3.4vw, 4rem);
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.signal-panel svg {
  position: absolute;
  top: 70px;
  right: 40px;
  width: 54%;
  fill: none;
  stroke: var(--black);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.signal-lines {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-evenly;
  opacity: 0.12;
}

.signal-lines span {
  width: 2px;
  height: 76%;
  background: var(--black);
  transform: rotate(18deg) translateY(10%);
}

.contract {
  border-top: 1px solid var(--line);
}

.contract-top {
  display: grid;
  grid-template-columns: minmax(120px, 0.25fr) 1fr;
  margin-bottom: 60px;
}

.contract h2 {
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 8rem);
  font-weight: 950;
  letter-spacing: -0.075em;
  line-height: 0.84;
}

.contract h2 span {
  color: var(--orange);
}

.contract-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: clamp(24px, 3vw, 42px);
  border: 1px solid var(--orange);
  background: rgba(255, 149, 0, 0.035);
}

.contract-label {
  display: block;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.contract code {
  font-family: "Courier New", monospace;
  font-size: clamp(1rem, 2.25vw, 2rem);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contract button {
  display: flex;
  min-width: 190px;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 0;
  background: var(--orange);
  color: var(--black);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  cursor: pointer;
}

.contract button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.contract button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contract-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.closing {
  position: relative;
  display: grid;
  min-height: 88vh;
  place-content: center;
  overflow: hidden;
  padding: var(--section-space) 30px;
  background: var(--white);
  color: var(--black);
  text-align: center;
}

.closing-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  color: transparent;
  font-size: min(72vw, 900px);
  font-weight: 950;
  line-height: 0.6;
  opacity: 0.065;
  transform: translate(-50%, -50%);
  -webkit-text-stroke: 6px var(--black);
}

.closing p,
.closing h2,
.closing a {
  position: relative;
  z-index: 2;
}

.closing p {
  margin-bottom: 28px;
  font-size: clamp(0.78rem, 1.2vw, 1rem);
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.5;
}

.closing p span {
  color: var(--orange);
}

.closing h2 {
  margin: 0;
  font-size: clamp(4.4rem, 13vw, 12rem);
  font-weight: 950;
  letter-spacing: -0.095em;
  line-height: 0.72;
}

.closing a {
  justify-self: center;
  margin-top: 70px;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--black);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-decoration: none;
}

footer {
  display: flex;
  width: var(--page);
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 28px 0;
}

footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-socials a {
  padding-bottom: 3px;
  border-bottom: 1px solid var(--orange);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-decoration: none;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  padding: 14px 18px;
  background: var(--orange);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: 180ms ease;
}

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

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

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(2.5deg); }
  50% { transform: translateY(-14px) rotate(-1deg); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes ticker {
  to { transform: translateX(-33.333%); }
}

@media (max-width: 1250px) {
  .rewards-dashboard {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1050px) {
  :root {
    --page: min(100% - 40px, 880px);
  }

  nav {
    gap: 20px;
  }

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

  .metric-card,
  .metric-card--primary {
    grid-column: auto;
    border-bottom: 1px solid var(--line);
  }

  .rewards-dashboard {
    grid-template-columns: 1fr;
  }

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

  .hero::before {
    display: none;
  }

  .hero-mark {
    min-height: 560px;
  }

  .hero-mark img {
    width: min(74vw, 540px);
  }

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

  .manifesto .section-index {
    margin-bottom: 40px;
  }

  .contract-top {
    grid-template-columns: 1fr;
    gap: 38px;
  }

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

  .signal-panel {
    min-height: 480px;
  }
}

@media (max-width: 700px) {
  :root {
    --page: calc(100% - 28px);
  }

  .site-header {
    flex-wrap: wrap;
    gap: 14px;
    padding: 20px 0;
  }

  .header-identity {
    width: 100%;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
  }

  .header-identity img {
    width: 62px;
    height: 62px;
  }

  .header-identity strong {
    font-size: 1.08rem;
  }

  .live-shell {
    padding-top: 14px;
  }

  .live-strip {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .live-strip p {
    text-align: left;
  }

  .token-dashboard {
    padding: 26px 20px;
  }

  .dashboard-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }

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

  .metric-card--primary {
    grid-column: span 2;
  }

  .metric-card:nth-child(even) {
    border-right: 0;
  }

  .graduation-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .rewards-copy,
  .reward-calculator {
    padding: 38px 24px;
  }

  .reward-pool {
    grid-template-columns: 1fr;
  }

  .reward-pool article + article {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .reward-calculator label {
    margin-top: 36px;
  }

  nav {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
  }

  nav .nav-link {
    display: none;
  }

  .nav-cta {
    padding: 9px 12px;
  }

  .hero {
    padding-top: 84px;
  }

  h1 {
    font-size: clamp(3.7rem, 19vw, 6.5rem);
  }

  h1 .outline {
    -webkit-text-stroke-width: 1.3px;
  }

  .hero-mark {
    min-height: 390px;
  }

  .hero-mark img {
    width: min(80vw, 390px);
  }

  .mark-note--top {
    right: 0;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .meaning-head {
    align-items: start;
    flex-direction: column;
    gap: 38px;
  }

  .dual-code {
    grid-template-columns: 1fr;
  }

  .dual-code article {
    min-height: 250px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .dual-code article:last-child {
    border-bottom: 0;
  }

  .code-note {
    margin: 0 0 38px;
  }

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

  .letter-grid article:nth-child(2) {
    border-right: 0;
  }

  .letter-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .letter {
    font-size: clamp(5rem, 28vw, 8rem);
  }

  .pair-panel {
    padding-inline: 22px;
  }

  .pair-panel h2 {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .versus div:last-child {
    padding-left: 0;
    border-top: 1px solid var(--line);
  }

  .contract-box {
    align-items: stretch;
    flex-direction: column;
  }

  .contract button {
    width: 100%;
  }

  .closing {
    min-height: 78vh;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
}

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