/* Focused layout and motion refinement. Loaded after styles.css for easy rollback. */

:root {
  --content-max: 1540px;
  --page-gutter: clamp(24px, 4vw, 72px);
  --motion-out: cubic-bezier(0.16, 1, 0.3, 1);
  --motion-snap: cubic-bezier(0.22, 1, 0.36, 1);
  --display: "League Spartan", Arial Black, sans-serif;
  --body: "Inter Tight", Arial, sans-serif;
}

.brand-mark {
  width: 44px;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Header: the middle navigation is locked to the viewport center. */
.site-header {
  grid-template-columns: auto 1fr auto;
  padding-inline: max(var(--page-gutter), calc((100vw - 1780px) / 2));
}

.desktop-nav {
  position: absolute;
  left: 50%;
  gap: 42px;
  transform: translateX(-50%);
}

.desktop-nav a::after {
  transition-timing-function: var(--motion-snap);
}

/* Both running bands are continuous and never inherit OS motion settings. */
.top-tape-track {
  gap: 0;
  animation: one-ticker var(--ticker-duration, 18s) linear infinite;
  will-change: transform;
}

.marquee-track {
  gap: 0;
  animation: one-ticker var(--ticker-duration, 18s) linear infinite;
  will-change: transform;
}

.ticker-sequence {
  display: flex;
  width: max-content;
  flex: 0 0 auto;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  padding-right: 18px;
}

.marquee .ticker-sequence {
  gap: 22px;
  padding-right: 22px;
}

@keyframes one-ticker {
  to { transform: translate3d(-50%, 0, 0); }
}

/* Config-driven token utility rail. */
.token-rail {
  color: #fff;
  background: var(--ink);
  border-bottom: 2px solid var(--ink);
}

.token-rail-inner {
  display: grid;
  max-width: 1780px;
  min-height: 138px;
  margin: 0 auto;
  grid-template-columns: minmax(360px, .9fr) minmax(560px, 1.1fr);
}

.token-rail-inner.is-contract-only {
  grid-template-columns: minmax(0, 1fr);
}

.token-rail-inner.is-contract-only .contract-block {
  border-right: 0;
}

.contract-block {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 26px var(--page-gutter);
  border-right: 1px solid rgba(255,255,255,.22);
}

.token-kicker {
  margin-bottom: 12px;
  color: var(--green);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
}

.contract-value {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 18px;
}

.contract-value code {
  overflow: hidden;
  font-family: var(--body);
  font-size: clamp(15px, 1.25vw, 20px);
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contract-value button {
  flex: 0 0 auto;
  min-width: 74px;
  min-height: 40px;
  padding: 9px 13px;
  color: var(--ink);
  background: var(--green);
  border: 0;
  cursor: pointer;
  font-family: var(--body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  transition: transform 220ms var(--motion-snap), background-color 220ms var(--motion-snap);
}

.contract-value button:hover:not(:disabled) {
  background: #fff;
  transform: translateY(-2px);
}

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

.market-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  background: transparent;
  border: 0;
  backdrop-filter: none;
}

.market-links a {
  position: relative;
  display: grid;
  min-width: 0;
  align-content: center;
  padding: 24px clamp(20px, 2.4vw, 42px);
  color: #fff;
  border-right: 1px solid rgba(255,255,255,.22);
  text-decoration: none;
  transition: color 280ms var(--motion-snap), background-color 280ms var(--motion-snap);
}

.market-links a:last-child {
  border-right: 0;
}

.market-links .link-index {
  margin-bottom: 15px;
  color: var(--green);
  font-size: 9px;
  font-weight: 700;
}

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

.market-name img {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  object-fit: contain;
}

.market-name b {
  overflow: hidden;
  font-family: var(--display);
  font-size: clamp(15px, 1.35vw, 21px);
  font-weight: 900;
  letter-spacing: -.04em;
  text-overflow: ellipsis;
}

.market-links a i {
  position: absolute;
  top: 22px;
  right: 20px;
  color: var(--green);
  font-size: 15px;
  font-style: normal;
  transition: transform 280ms var(--motion-snap);
}

.market-links a:hover {
  color: var(--ink);
  background: var(--green);
}

.market-links a:hover .link-index,
.market-links a:hover i {
  color: var(--ink);
}

.market-links a:hover i {
  transform: translate(3px, -3px);
}

.market-links a:hover img {
  filter: brightness(0);
}

/* Hero: use the supplied landscape artwork as an actual wide banner. */
.hero {
  position: relative;
  display: block;
  min-height: min(820px, calc(100vh - 120px));
  padding: clamp(24px, 2.5vw, 42px);
  overflow: hidden;
  isolation: isolate;
  background: var(--green);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, rgba(8, 10, 8, 0.2), transparent 50%);
}

.hero-art {
  position: absolute;
  inset: 0;
  z-index: 0;
  padding: clamp(24px, 2.5vw, 42px);
  background: var(--green);
  border: 0;
}

.hero-art::before {
  opacity: 0.16;
}

.art-frame {
  height: 100%;
  min-height: 0;
  border-width: 2px;
  box-shadow: 12px 12px 0 var(--ink);
}

.art-frame img {
  object-fit: cover;
  object-position: center;
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(620px, 45vw);
  min-height: calc(min(820px, calc(100vh - 120px)) - clamp(48px, 5vw, 84px));
  padding: clamp(38px, 4vw, 66px);
  justify-content: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(101,255,31,.16) 0 2px, transparent 2.5px) 0 0 / 18px 18px,
    rgba(245, 246, 241, 0.97);
  border: 2px solid var(--ink);
  box-shadow: 10px 10px 0 var(--ink);
}

.hero h1 {
  max-width: 560px;
  font-size: clamp(54px, 5.1vw, 88px);
  line-height: 0.86;
}

.hero-intro {
  font-size: clamp(16px, 1.15vw, 19px);
}

.art-sticker {
  top: clamp(42px, 4vw, 70px);
  right: clamp(42px, 4vw, 70px);
}

.art-caption {
  right: clamp(44px, 4.2vw, 76px);
  bottom: 14px;
}

/* Shared page alignment: chapters sit on one centered editorial grid. */
.section {
  padding-inline: max(var(--page-gutter), calc((100vw - var(--content-max)) / 2));
}

.thesis {
  padding-top: clamp(96px, 8vw, 138px);
  padding-bottom: clamp(96px, 8vw, 138px);
}

.thesis-grid {
  gap: clamp(64px, 7vw, 128px);
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  margin-top: 50px;
}

.thesis h2 {
  max-width: 850px;
  font-size: clamp(50px, 5.6vw, 92px);
  line-height: 0.91;
}

.thesis-copy {
  align-self: center;
  max-width: 520px;
  padding-top: 0;
}

.thesis-copy .lead {
  margin-bottom: 24px;
  padding-bottom: 24px;
  font-size: clamp(25px, 2.25vw, 37px);
  line-height: 1;
}

.thesis-copy p {
  font-size: 17px;
  line-height: 1.55;
}

/* One connected comparison rail replaces three disconnected boxes. */
.path-cards {
  gap: 0;
  margin-top: clamp(58px, 6vw, 84px);
  overflow: hidden;
  background: #e5e7e0;
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 rgba(8, 10, 8, 0.12);
}

.path-card {
  min-height: 300px;
  padding: 30px 32px;
  border: 0;
  border-right: 2px solid var(--ink);
  transition:
    background-color 420ms var(--motion-snap),
    color 420ms var(--motion-snap);
}

.js .path-card.reveal {
  transform: none;
  transition:
    opacity 620ms var(--motion-out),
    background-color 420ms var(--motion-snap),
    color 420ms var(--motion-snap);
}

/* Trading proof point inside the manifesto. */
.proof-clip {
  display: grid;
  max-width: 1180px;
  margin: clamp(78px, 8vw, 120px) auto 0;
  overflow: hidden;
  grid-template-columns: minmax(280px, .62fr) minmax(0, 1.38fr);
  background: #101310;
  border: 2px solid var(--green);
  box-shadow: 10px 10px 0 rgba(101,255,31,.22);
}

.proof-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 3.5vw, 52px);
  border-right: 1px solid rgba(101,255,31,.45);
}

.proof-copy > span {
  margin-bottom: 28px;
  color: var(--green);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
}

.proof-copy h3 {
  margin: 0;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(34px, 3.2vw, 52px);
  line-height: .9;
  letter-spacing: -.06em;
}

.proof-copy p {
  max-width: 34ch;
  margin: 28px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.6;
}

.proof-video-shell {
  min-width: 0;
  padding: 14px;
  background:
    radial-gradient(circle at center, rgba(8,10,8,.16) 0 1px, transparent 1.5px) 0 0 / 12px 12px,
    var(--green);
}

.proof-video-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  padding: 0 8px;
  color: var(--ink);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .13em;
}

.proof-video-shell video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--ink);
  border: 2px solid var(--ink);
}

.proof-posts {
  max-width: 1180px;
  margin: clamp(56px, 6vw, 88px) auto 0;
  padding-top: clamp(48px, 5vw, 72px);
  border-top: 1px solid rgba(255,255,255,.24);
}

.proof-posts-heading {
  display: grid;
  align-items: end;
  gap: 24px;
  grid-template-columns: .45fr 1fr .65fr;
  margin-bottom: 34px;
}

.proof-posts-heading > span {
  color: var(--green);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
}

.proof-posts-heading h3 {
  margin: 0;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(38px, 4vw, 62px);
  font-weight: 900;
  line-height: .86;
  letter-spacing: -.055em;
}

.proof-posts-heading p {
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: 16px;
}

.proof-post-grid {
  display: grid;
  align-items: start;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.proof-post {
  min-width: 0;
  padding: 14px;
  background: #101310;
  border: 1px solid rgba(101,255,31,.55);
}

.proof-post-tag {
  display: block;
  padding: 8px 10px 11px;
  color: var(--green);
  font-family: var(--display);
  font-size: clamp(22px, 2.1vw, 34px);
  font-weight: 900;
  letter-spacing: -.04em;
}

.proof-post .twitter-tweet {
  max-width: none !important;
  margin: 0 !important;
  padding: 26px;
  color: #fff;
  background: var(--ink);
  border: 1px solid rgba(255,255,255,.15);
  font-size: 15px;
  line-height: 1.55;
}

.proof-post iframe {
  width: 100% !important;
  margin: 0 !important;
}

/* One compact proof slider replaces the stacked video and post sections. */
.proof-slider {
  display: grid;
  max-width: 1180px;
  min-height: 610px;
  margin: clamp(72px, 7vw, 106px) auto 0;
  overflow: hidden;
  grid-template-columns: minmax(300px, .68fr) minmax(0, 1.32fr);
  background: #101310;
  border: 2px solid var(--green);
  box-shadow: 10px 10px 0 rgba(101,255,31,.22);
}

.proof-slider-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(32px, 3.8vw, 58px);
  border-right: 1px solid rgba(101,255,31,.45);
}

.proof-slider-copy > span {
  margin-bottom: 42px;
  color: var(--green);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
}

.proof-slider-copy h3 {
  margin: 0;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(38px, 3.8vw, 61px);
  font-weight: 900;
  line-height: .84;
  letter-spacing: -.055em;
}

.proof-slider-copy p {
  max-width: 30ch;
  margin: 28px 0 36px;
  color: rgba(255,255,255,.7);
  font-size: 15px;
  line-height: 1.5;
}

.proof-controls {
  display: grid;
  margin-top: auto;
  border: 1px solid rgba(101,255,31,.5);
}

.proof-controls button {
  min-height: 48px;
  padding: 12px 14px;
  color: rgba(255,255,255,.65);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(101,255,31,.25);
  cursor: pointer;
  font-family: var(--body);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-align: left;
  transition: color 220ms var(--motion-snap), background-color 220ms var(--motion-snap);
}

.proof-controls button:last-child {
  border-bottom: 0;
}

.proof-controls button:hover,
.proof-controls button.is-active {
  color: var(--ink);
  background: var(--green);
}

.proof-stage {
  position: relative;
  min-width: 0;
  min-height: var(--proof-stage-height, 610px);
  transition: min-height 360ms var(--motion-snap);
  background:
    radial-gradient(circle at center, rgba(8,10,8,.16) 0 1px, transparent 1.5px) 0 0 / 12px 12px,
    var(--green);
}

.proof-track {
  position: absolute;
  inset: 14px;
  overflow: hidden;
  background: var(--ink);
  border: 2px solid var(--ink);
}

.proof-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  background: #101310;
  transform: translateX(28px);
  transition:
    opacity 360ms var(--motion-snap),
    transform 360ms var(--motion-snap),
    visibility 0s linear 360ms;
}

.proof-slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition-delay: 0s;
}

.proof-slide .proof-video-shell {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
}

.proof-slide .twitter-tweet {
  max-width: none !important;
  margin: 0 !important;
  padding: 24px;
  color: #fff;
  font-size: 15px;
  line-height: 1.55;
}

.proof-slide iframe {
  width: 100% !important;
  margin: 0 !important;
}

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

.path-card.muted {
  color: #2c302a;
  background: #e5e7e0;
}

.path-card.muted:hover {
  background: #eef0e9;
}

.path-card.hot {
  background: var(--green);
  box-shadow: none;
  transform: none;
}

.path-card.hot::after {
  position: absolute;
  top: -90px;
  right: -70px;
  width: 210px;
  aspect-ratio: 1;
  content: "";
  opacity: 0.13;
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 0 0 0 32px var(--ink), 0 0 0 64px transparent, 0 0 0 66px var(--ink);
}

.path-card {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  padding: 30px 32px 34px;
}

.path-number {
  display: flex;
  align-items: center;
  gap: 14px;
}

.path-number::after {
  height: 1px;
  flex: 1;
  content: "";
  opacity: .32;
  background: currentColor;
}

.path-time {
  position: relative;
  z-index: 1;
  margin-top: 10px;
  font-family: var(--display);
  font-size: clamp(44px, 4vw, 68px);
  font-weight: 900;
  line-height: .8;
  letter-spacing: -.065em;
}

.path-type {
  position: relative;
  z-index: 1;
  margin-top: auto;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
}

.path-card h3 {
  position: relative;
  z-index: 1;
  margin: 24px 0 7px;
  font-size: clamp(24px, 2vw, 34px);
  letter-spacing: -.045em;
}

.path-card p {
  position: relative;
  z-index: 1;
  font-size: 14px;
}

.path-card.hot::after {
  top: auto;
  right: -45px;
  bottom: -75px;
  width: 190px;
  opacity: .08;
}

.tiny-chart,
.treadmill {
  right: 32px;
  bottom: 30px;
  left: 32px;
  height: 62px;
}

.treadmill {
  align-items: center;
  border: 0;
  border-bottom: 2px solid currentColor;
  border-radius: 0;
}

.treadmill::before {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 6px;
  content: "";
  background: repeating-linear-gradient(90deg, currentColor 0 18px, transparent 18px 27px);
}

.treadmill span {
  padding: 0;
  animation: treadmill-drift 1.1s linear infinite;
}

@keyframes treadmill-drift {
  to { transform: translateX(18px); }
}

/* Coin: preserve the outcome logic, add a visible toss arc and light sweep. */
.flip-zone {
  min-height: 780px;
  grid-template-columns: minmax(390px, 0.72fr) minmax(0, 1.28fr);
}

.flip-copy {
  padding-right: clamp(42px, 5vw, 86px);
  padding-left: max(var(--page-gutter), calc((100vw - var(--content-max)) / 2));
  border-right: 0;
}

.flip-readout span {
  flex: 0 0 auto;
  font-size: clamp(36px, 3vw, 52px);
  white-space: nowrap;
}

.flip-readout small {
  max-width: 150px;
}

.coin-stage {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 44%, rgba(255,255,255,.58), transparent 34%),
    radial-gradient(circle at 50% 50%, rgba(8,10,8,.07) 0 1px, transparent 1.5px) 0 0 / 15px 15px;
}

.coin-button {
  transform-style: preserve-3d;
  transition: filter 300ms var(--motion-snap);
}

.coin-button:hover:not(:disabled) {
  filter: brightness(1.05) drop-shadow(0 12px 0 rgba(8,10,8,.12));
}

.coin-button:active:not(:disabled) {
  transform: translateY(3px) scale(0.985);
}

.coin {
  transition: transform 1.5s cubic-bezier(0.12, 0.72, 0.18, 1);
}

/* Keep the coin dimensional without the black shell flashing edge-on. */
.coin-face {
  border-color: #0a7400;
  box-shadow:
    inset 0 0 0 8px rgba(255,255,255,.26),
    inset -18px -22px 0 rgba(7,93,0,.2),
    inset 14px 12px 18px rgba(255,255,255,.12),
    5px 8px 0 #0a7400,
    12px 18px 24px rgba(8,10,8,.2);
}

.coin-front b {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 78%;
  height: 62%;
  place-items: center;
  letter-spacing: 0;
  text-align: center;
  transform: translate(-50%, -50%);
  filter: none;
}

.coin-back b {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 84%;
  height: 46%;
  place-items: center;
  letter-spacing: -.035em;
  text-align: center;
  transform: translate(-50%, -50%);
  filter: none;
}

.coin-face small {
  display: none;
}

.coin-edge {
  display: none;
}

.coin-face::after {
  position: absolute;
  top: -25%;
  bottom: -25%;
  left: -65%;
  width: 34%;
  content: "";
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.75), transparent);
  transform: rotate(18deg);
}

.coin-stage.is-flipping .coin-button {
  animation: coin-toss-arc 1.5s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.coin-stage.is-flipping .coin-face::after {
  animation: coin-light-sweep 650ms linear 2;
}

.coin-stage.is-flipping .coin-face {
  border-color: #25bd08;
  box-shadow:
    inset 0 0 0 8px rgba(255,255,255,.2),
    inset -12px -16px 0 rgba(7,93,0,.12);
}

.coin-stage.is-flipping .coin-face::before,
.coin-stage.is-flipping .coin-face b {
  animation: coin-detail-fade 1.5s linear both;
}

.coin-face,
.coin-stage.is-flipping .coin-face {
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.coin-face::before,
.coin-face::after {
  display: none;
}

.coin-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.coin {
  transform-style: flat;
  transition: none;
}

.coin-back {
  opacity: 0;
  transform: none;
}

.coin-front,
.coin-back {
  transition: opacity 90ms linear;
}

.coin.is-back .coin-front {
  opacity: 0;
}

.coin.is-back .coin-back {
  opacity: 1;
}

.coin-stage.is-flipping .coin {
  animation: coin-safe-flip 1.5s cubic-bezier(.2,.7,.2,1) both;
}

@keyframes coin-safe-flip {
  0% { transform: rotateZ(0deg) scale(1); }
  20% { transform: rotateZ(180deg) scale(1.015); }
  40% { transform: rotateZ(405deg) scale(1.035); }
  60% { transform: rotateZ(675deg) scale(1.035); }
  80% { transform: rotateZ(900deg) scale(1.015); }
  100% { transform: rotateZ(1080deg) scale(1); }
}

.coin-stage.is-flipping .flip-result {
  animation: result-pulse 750ms var(--motion-snap) infinite alternate;
}

.coin-shadow {
  transition:
    transform 750ms var(--motion-snap),
    opacity 750ms var(--motion-snap),
    filter 750ms var(--motion-snap);
}

.coin-stage.is-flipping .coin-shadow {
  opacity: 0.08;
  filter: blur(20px);
  transform: scale(0.48);
}

@keyframes coin-toss-arc {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  22% { transform: translate3d(0, -62px, 45px) scale(1.035); }
  48% { transform: translate3d(0, -105px, 90px) scale(1.075); }
  74% { transform: translate3d(0, -46px, 35px) scale(1.025); }
  90% { transform: translate3d(0, 7px, 0) scale(0.99); }
  100% { transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes coin-light-sweep {
  0% { left: -65%; opacity: 0; }
  18% { opacity: 0.8; }
  72% { opacity: 0.55; }
  100% { left: 135%; opacity: 0; }
}

@keyframes coin-detail-fade {
  0%, 5% { opacity: 1; }
  12%, 88% { opacity: 0; }
  96%, 100% { opacity: 1; }
}

@keyframes result-pulse {
  to { opacity: 0.48; }
}

/* Slightly calmer interaction details across the rest of the page. */
.button-dark,
.header-cta,
.final-one {
  transition-timing-function: var(--motion-snap);
}

.footer-center {
  text-align: center;
}

.footer-center > p {
  margin: 0 0 12px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
}

.footer-socials {
  display: flex;
  height: auto;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0;
  background: transparent;
  border: 0;
  backdrop-filter: none;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--green);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
}

.footer-socials img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.js .reveal {
  transition:
    opacity 760ms var(--motion-out),
    transform 760ms var(--motion-out);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding-inline: var(--page-gutter);
  }

  .desktop-nav {
    position: static;
    transform: none;
  }

  .hero {
    display: flex;
    min-height: 0;
    flex-direction: column;
    padding: 16px;
  }

  .hero::after {
    display: none;
  }

  .hero-copy {
    width: 100%;
    min-height: 0;
    padding: clamp(46px, 8vw, 74px);
    box-shadow: 7px 7px 0 var(--ink);
  }

  .hero-art {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 0;
    aspect-ratio: 1983 / 793;
    margin-top: 16px;
    padding: 0;
    border-top: 0;
  }

  .art-frame {
    min-height: 0;
    box-shadow: 7px 7px 0 var(--ink);
  }

  .art-sticker {
    top: 18px;
    right: 18px;
  }

  .thesis-grid {
    gap: 46px;
    grid-template-columns: 1fr;
  }

  .thesis-copy {
    align-self: auto;
  }

  .path-cards {
    grid-template-columns: 1fr;
  }

  .path-card {
    border-right: 0;
    border-bottom: 2px solid var(--ink);
  }

  .path-card:last-child {
    border-bottom: 0;
  }

  .flip-zone {
    grid-template-columns: 1fr;
  }

  .flip-copy {
    padding-inline: var(--page-gutter);
    border-bottom: 0;
  }

  .token-rail-inner {
    grid-template-columns: 1fr;
  }

  .contract-block {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.22);
  }

  .proof-clip {
    grid-template-columns: 1fr;
  }

  .proof-copy {
    border-right: 0;
    border-bottom: 1px solid rgba(101,255,31,.45);
  }

  .proof-posts-heading {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .proof-slider {
    grid-template-columns: 1fr;
  }

  .proof-slider-copy {
    border-right: 0;
    border-bottom: 1px solid rgba(101,255,31,.45);
  }

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

  .proof-controls button {
    border-right: 1px solid rgba(101,255,31,.25);
    border-bottom: 0;
    text-align: center;
  }

  .proof-controls button:last-child {
    border-right: 0;
  }
}

@media (max-width: 620px) {
  .hero-copy {
    padding: 50px 22px 54px;
  }

  .hero h1 {
    font-size: clamp(49px, 15vw, 69px);
  }

  .hero-art {
    min-height: 0;
    aspect-ratio: 1.65 / 1;
  }

  .art-frame {
    min-height: 0;
  }

  .section {
    padding-inline: 22px;
  }

  .thesis h2 {
    font-size: clamp(41px, 13vw, 59px);
  }

  .path-card {
    min-height: 270px;
    padding: 26px;
  }

  .tiny-chart,
  .treadmill {
    right: 26px;
    left: 26px;
  }

  .flip-copy {
    padding-inline: 22px;
  }

  .contract-block {
    padding: 24px 22px;
  }

  .market-links {
    grid-template-columns: 1fr;
  }

  .market-links a {
    min-height: 82px;
    padding: 18px 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.22);
  }

  .market-links a:last-child {
    border-bottom: 0;
  }

  .market-links .link-index {
    margin-bottom: 7px;
  }

  .market-name {
    margin-bottom: 0;
  }

  .footer-center {
    display: none;
  }

  .proof-copy {
    padding: 30px 24px;
  }

  .proof-video-shell {
    padding: 8px;
  }

  .proof-video-meta {
    font-size: 7px;
  }

  .proof-post-grid {
    grid-template-columns: 1fr;
  }

  .proof-post {
    padding: 9px;
  }

  .proof-slider {
    min-height: 0;
  }

  .proof-slider-copy {
    padding: 32px 24px;
  }

  .proof-slider-copy > span {
    margin-bottom: 28px;
  }

  .proof-controls {
    overflow-x: auto;
    grid-template-columns: repeat(3, minmax(125px, 1fr));
  }

  .proof-stage {
    min-height: var(--proof-stage-height, 560px);
  }

  .proof-track {
    inset: 8px;
  }
}

/* Interactive coin: two centered faces and a green edge, with no image distortion. */
.coin {
  transform-style: preserve-3d;
  transition: none;
}

.coin-face,
.coin-stage.is-flipping .coin-face {
  position: absolute;
  inset: 0;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 8px solid #075c00;
  border-radius: 50%;
  opacity: 1;
  background:
    radial-gradient(circle at 34% 27%, rgba(255, 255, 255, .92) 0 3%, transparent 12%),
    radial-gradient(circle at 42% 38%, #a9ff6c 0, #65ff1f 42%, #24c80a 72%, #087400 100%);
  box-shadow:
    inset 0 0 0 10px rgba(4, 108, 0, .42),
    inset 0 0 0 22px rgba(171, 255, 116, .28),
    inset -18px -24px 0 rgba(0, 70, 0, .18),
    0 18px 24px rgba(8, 10, 8, .2);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.coin-face::before {
  position: absolute;
  inset: 13%;
  display: block;
  content: "";
  border: 4px dashed rgba(4, 94, 0, .5);
  border-radius: 50%;
}

.coin-face::after {
  display: none;
}

.coin-front {
  opacity: 1;
  transform: none;
}

.coin-back {
  opacity: 0;
  transform: none;
}

.coin-face b,
.coin-front b,
.coin-back b {
  position: relative;
  z-index: 2;
  top: auto;
  left: auto;
  display: block;
  width: 100%;
  height: auto;
  color: #7fff32;
  font-family: var(--display);
  font-size: clamp(128px, 15vw, 220px);
  font-weight: 900;
  line-height: .82;
  letter-spacing: -.06em;
  text-align: center;
  transform: none;
  -webkit-text-stroke: 7px var(--ink);
  filter: drop-shadow(8px 10px 0 rgba(0, 0, 0, .28));
}

.coin-front b {
  transform: translateX(-.055em);
}

.coin-back b {
  font-size: clamp(76px, 9vw, 132px);
  letter-spacing: -.08em;
  -webkit-text-stroke-width: 5px;
}

.coin-face small {
  position: relative;
  z-index: 2;
  display: block;
  margin-top: 22px;
  width: 100%;
  padding-left: 0;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .42em;
  text-align: center;
  text-indent: .42em;
}

.coin-edge {
  display: none;
}

.coin-stage.is-flipping .coin {
  animation: coin-flip-silhouette 1.5s cubic-bezier(.18, .72, .18, 1) both;
}

.coin-stage.is-flipping .coin-front {
  animation: coin-front-to-back 1.5s steps(1, end) both;
}

.coin-stage.is-flipping .coin-back {
  animation: coin-back-from-front 1.5s steps(1, end) both;
}

.coin-stage.is-flipping.starts-on-back .coin-front {
  animation-name: coin-back-from-front;
}

.coin-stage.is-flipping.starts-on-back .coin-back {
  animation-name: coin-front-to-back;
}

.coin.is-back {
  transform: none;
}

.coin.is-back .coin-front {
  opacity: 0;
}

.coin.is-back .coin-back {
  opacity: 1;
}

@keyframes coin-flip-silhouette {
  0% { transform: scaleY(1) rotateZ(0deg); }
  12% { transform: scaleY(.26) rotateZ(-2deg); }
  25% { transform: scaleY(1) rotateZ(1.5deg); }
  37% { transform: scaleY(.26) rotateZ(2deg); }
  50% { transform: scaleY(1) rotateZ(-1.5deg); }
  62% { transform: scaleY(.26) rotateZ(-2deg); }
  75% { transform: scaleY(1) rotateZ(1deg); }
  87% { transform: scaleY(.26) rotateZ(1.5deg); }
  100% { transform: scaleY(1) rotateZ(0deg); }
}

@keyframes coin-front-to-back {
  0%, 12%, 26%, 37%, 51%, 62%, 76%, 87% { opacity: 1; }
  13%, 25%, 38%, 50%, 63%, 75%, 88%, 100% { opacity: 0; }
}

@keyframes coin-back-from-front {
  0%, 12%, 26%, 37%, 51%, 62%, 76%, 87% { opacity: 0; }
  13%, 25%, 38%, 50%, 63%, 75%, 88%, 100% { opacity: 1; }
}

@media (max-width: 640px) {
  .coin-face b,
  .coin-front b {
    font-size: clamp(116px, 39vw, 176px);
    -webkit-text-stroke-width: 5px;
  }

  .coin-back b {
    font-size: clamp(62px, 21vw, 92px);
    -webkit-text-stroke-width: 4px;
  }

  .coin-face small {
    margin-top: 22px;
    font-size: 10px;
  }
}
