:root {
  --acid: #00e53b;
  --acid-dark: #00c805;
  --ink: #050806;
  --ink-soft: #101611;
  --cream: #f3efdf;
  --paper: #e8e4d5;
  --muted: #9ca49e;
  --purple: #9945ff;
  --line: rgba(5, 8, 6, 0.18);
  --radius: 26px;
  --mono: "DM Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --sans: "Manrope", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
}

body::selection {
  background: var(--acid);
  color: var(--ink);
}

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

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

button {
  font: inherit;
}

.copy-buffer {
  position: fixed;
  opacity: 0;
  pointer-events: none;
}

.noise {
  position: fixed;
  z-index: 100;
  inset: 0;
  opacity: 0.055;
  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='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

.shell {
  width: min(1220px, calc(100% - 48px));
  margin-inline: auto;
}

.nav {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  border-bottom: 1px solid var(--line);
}

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

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  overflow: hidden;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  transform: rotate(-8deg);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 32%;
  transform: scale(1.55);
}

.acid {
  color: var(--acid-dark);
}

.nav-links {
  display: flex;
  gap: 34px;
  font-size: 13px;
  font-weight: 700;
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--acid-dark);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: -0.02em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-small {
  min-height: 40px;
  padding: 0 17px;
  font-size: 11px;
}

.button-dark {
  background: var(--ink);
  color: white;
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.12);
}

.button-dark:hover {
  box-shadow: 0 11px 0 rgba(0, 0, 0, 0.1);
}

.button-acid {
  background: var(--acid);
  color: var(--ink);
  box-shadow: 0 9px 0 #008b27;
}

.button-acid:hover {
  box-shadow: 0 12px 0 #008b27;
}

.button-cream {
  background: var(--cream);
  color: var(--ink);
}

.button-outline-dark {
  border-color: rgba(5, 8, 6, 0.4);
  background: transparent;
  color: var(--ink);
}

.play-icon {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--acid);
  font-size: 9px;
  padding-left: 2px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
  gap: 48px;
  min-height: 760px;
  padding-block: 70px 88px;
}

.hero-copy {
  display: flex;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}

.eyebrow,
.section-index {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-dot,
.video-label i,
.modal-bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--acid-dark);
  box-shadow: 0 0 0 5px rgba(0, 200, 5, 0.13);
  animation: pulse 1.8s infinite;
}

.hero h1 {
  margin: 28px 0 24px;
  font-size: clamp(76px, 9.2vw, 150px);
  line-height: 0.75;
  letter-spacing: -0.09em;
  font-weight: 800;
}

.outline-word {
  display: block;
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
  transform: translateX(0.09em);
}

.hero-lede {
  width: 100%;
  max-width: 600px;
  margin: 0;
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.42;
  letter-spacing: -0.04em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 38px;
}

.text-link {
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.mini-stats {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 66px;
  border-top: 1px solid var(--line);
}

.mini-stats > div {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding-top: 18px;
}

.stat-label {
  color: #636a65;
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.mini-stats strong {
  font-size: 29px;
  letter-spacing: -0.06em;
}

.hero-visual {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 590px;
  place-items: center;
}

.photo-frame {
  position: relative;
  z-index: 3;
  width: min(88%, 510px);
  aspect-ratio: 0.88;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 46% 46% 24px 24px;
  background: var(--ink);
  box-shadow: 18px 22px 0 var(--acid-dark);
  transform: rotate(2deg);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% center;
  transform: scale(1.03);
}

.photo-shade {
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(transparent, rgba(3, 7, 4, 0.88));
}

.photo-caption {
  position: absolute;
  right: 22px;
  bottom: 18px;
  left: 22px;
  display: flex;
  justify-content: space-between;
  color: white;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(5, 8, 6, 0.17);
  border-radius: 50%;
}

.orbit-one {
  width: 96%;
  aspect-ratio: 1;
}

.orbit-two {
  width: 72%;
  aspect-ratio: 1;
  border-style: dashed;
  animation: spin 24s linear infinite;
}

.stamp {
  position: absolute;
  z-index: 4;
  display: grid;
  width: 106px;
  height: 106px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--cream);
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.05;
  text-align: center;
  transform: rotate(11deg);
}

.stamp::before {
  position: absolute;
  width: 86px;
  height: 86px;
  border: 1px dashed var(--ink);
  border-radius: inherit;
  content: "";
}

.stamp-top {
  top: 4%;
  right: -2%;
}

.speech-bubble {
  position: absolute;
  z-index: 5;
  bottom: 4%;
  left: -5%;
  padding: 15px 20px;
  border: 2px solid var(--ink);
  border-radius: 17px 17px 17px 3px;
  background: white;
  font-size: 12px;
  line-height: 1.25;
  box-shadow: 7px 7px 0 var(--ink);
  transform: rotate(-5deg);
}

.target {
  position: absolute;
  z-index: 2;
  bottom: 1%;
  right: 0;
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.target::before,
.target span {
  display: block;
  border: 1px solid var(--ink);
  border-radius: 50%;
  content: "";
}

.target::before {
  width: 44px;
  height: 44px;
}

.target span {
  position: absolute;
  width: 17px;
  height: 17px;
  background: var(--acid);
}

.story {
  padding-block: 150px;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.7fr 1.2fr 0.8fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 66px;
}

.section-heading h2,
.video-copy h2,
.cto h2 {
  margin: 0;
  font-size: clamp(54px, 7vw, 100px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.section-heading p {
  margin: 0;
  color: #555c56;
  font-size: 15px;
  line-height: 1.7;
}

.timeline {
  display: grid;
  grid-template-columns: 1fr 96px 1fr;
  align-items: center;
}

.timeline-card {
  position: relative;
  min-height: 535px;
  overflow: hidden;
  padding: 30px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
}

.timeline-card-light {
  background: var(--paper);
}

.timeline-card-green {
  background: var(--acid);
  transform: translateY(58px);
}

.card-topline {
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(5, 8, 6, 0.25);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.chain-icon {
  position: relative;
  display: flex;
  width: 75px;
  height: 75px;
  align-items: center;
  justify-content: center;
  margin-top: 34px;
  border-radius: 20px;
  background: var(--ink);
}

.solana-icon {
  flex-direction: column;
  gap: 5px;
}

.solana-icon i {
  width: 38px;
  height: 8px;
  border-radius: 2px;
  background: linear-gradient(90deg, #00ffa3, #dc1fff);
  transform: skewX(-20deg);
}

.hood-icon {
  overflow: hidden;
  background: #c7ff00;
}

.hood-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.timeline-card h3 {
  margin: 35px 0 13px;
  font-size: 32px;
  letter-spacing: -0.05em;
}

.timeline-card p {
  position: relative;
  z-index: 2;
  max-width: 400px;
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
}

.card-number {
  position: absolute;
  right: 22px;
  bottom: -35px;
  color: rgba(5, 8, 6, 0.08);
  font-size: 145px;
  font-weight: 800;
  letter-spacing: -0.1em;
}

.chart {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 125px;
  opacity: 0.8;
}

.chart svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.chart path {
  fill: none;
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
}

.chart-purple path {
  stroke: var(--purple);
}

.chart-black path {
  stroke: var(--ink);
}

.timeline-connector {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 17px;
}

.timeline-connector span {
  writing-mode: vertical-rl;
  color: #777e78;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.1em;
}

.timeline-connector i {
  font-size: 30px;
  font-style: normal;
}

.video-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 72px;
  align-items: center;
  padding-block: 130px;
  color: white;
}

.video-section::before {
  position: absolute;
  z-index: -1;
  right: 0;
  left: 0;
  height: 850px;
  background: var(--ink);
  content: "";
  transform: skewY(-2deg);
}

.video-copy h2 {
  margin-top: 32px;
}

.video-copy p {
  max-width: 390px;
  margin: 26px 0 32px;
  color: #b8c0ba;
  font-size: 15px;
  line-height: 1.7;
}

.video-poster {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1058 / 455;
  overflow: hidden;
  padding: 0;
  border: 2px solid #3b433d;
  border-radius: var(--radius);
  background: #101611;
  cursor: pointer;
  box-shadow: 24px 24px 0 var(--acid-dark);
}

.video-poster img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.video-poster:hover img {
  transform: scale(1.04);
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.68));
}

.video-label,
.video-time {
  position: absolute;
  z-index: 2;
  color: white;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-label {
  top: 22px;
  left: 22px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(3, 7, 4, 0.58);
  backdrop-filter: blur(8px);
}

.video-time {
  right: 20px;
  bottom: 18px;
}

.big-play {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border-radius: 50%;
  background: var(--acid);
  color: var(--ink);
  font-size: 25px;
  padding-left: 5px;
  box-shadow: 0 0 0 14px rgba(0, 229, 59, 0.17);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.video-poster:hover .big-play {
  transform: translate(-50%, -50%) scale(1.08);
}

.post-source {
  display: flex;
  grid-column: 2;
  align-items: center;
  gap: 13px;
  margin-top: 8px;
  padding: 13px 15px;
  border: 1px solid #303832;
  border-radius: 16px;
  background: #0c110d;
}

.post-source-avatar {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid #465048;
  border-radius: 50%;
}

.post-source-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.45);
}

.post-source > div {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  gap: 3px;
}

.post-source > div span {
  color: #909a92;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.post-source strong {
  color: white;
  font-size: 12px;
}

.post-source > a {
  flex: 0 0 auto;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--acid);
  color: var(--acid);
  font-size: 8px;
  font-weight: 800;
}

.cto {
  position: relative;
  overflow: hidden;
  margin-top: 120px;
  background: var(--acid);
}

.cto-inner {
  position: relative;
  padding-block: 150px 130px;
}

.cto-badge {
  display: inline-block;
  margin-bottom: 30px;
  padding: 8px 12px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.cto h2 {
  max-width: 900px;
  font-size: clamp(64px, 9vw, 130px);
}

.cto h2 span {
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
}

.cto > div > p {
  max-width: 500px;
  margin: 30px 0 60px;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.cto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 890px;
  border-block: 1px solid rgba(5, 8, 6, 0.35);
}

.cto-grid > div {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 25px 22px 25px 0;
  border-right: 1px solid rgba(5, 8, 6, 0.25);
}

.cto-grid > div:not(:first-child) {
  padding-left: 25px;
}

.cto-grid span {
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.cto-grid strong {
  font-size: 19px;
  letter-spacing: -0.04em;
}

.contract-card {
  display: flex;
  width: min(100%, 890px);
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  margin-top: 28px;
  padding: 18px 18px 18px 22px;
  border: 2px solid var(--ink);
  border-radius: 18px;
  background: rgba(243, 239, 223, 0.34);
  box-shadow: 8px 8px 0 var(--ink);
}

.contract-card > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 8px;
}

.contract-card span,
.contract-card code {
  font-family: var(--mono);
}

.contract-card > div > span {
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contract-card code {
  overflow: hidden;
  font-size: 12px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contract-copy {
  display: inline-flex;
  min-height: 42px;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.contract-copy span {
  color: var(--acid);
  font-size: 15px;
}

.cto-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 42px;
}

.arrow-decoration {
  position: absolute;
  top: 32%;
  right: -8%;
  width: 38%;
  transform: rotate(-18deg);
}

.arrow-line {
  display: block;
  height: 3px;
  background: var(--ink);
}

.arrow-head {
  position: absolute;
  top: -26px;
  right: -5px;
  font-size: 48px;
}

.manifesto {
  padding-block: 150px;
  text-align: center;
}

.manifesto-kicker {
  margin: 0;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.manifesto blockquote {
  max-width: 1010px;
  margin: 40px auto 25px;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.065em;
}

.manifesto blockquote span {
  position: relative;
  white-space: nowrap;
}

.manifesto blockquote span::after {
  position: absolute;
  z-index: -1;
  right: -8px;
  bottom: 2px;
  left: -8px;
  height: 28%;
  background: var(--acid);
  content: "";
  transform: rotate(-1deg);
}

.manifesto-sign {
  color: #686f69;
  font-family: var(--mono);
  font-size: 10px;
}

.footer {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr 0.6fr;
  gap: 50px;
  align-items: center;
  padding-block: 38px;
  border-top: 1px solid var(--line);
}

.footer p {
  margin: 0;
  color: #656c66;
  font-size: 10px;
  line-height: 1.6;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  font-size: 11px;
  font-weight: 800;
}

.video-modal {
  width: min(500px, calc(100% - 32px));
  padding: 0;
  overflow: hidden;
  border: 1px solid #313a33;
  border-radius: 20px;
  background: var(--ink);
  color: white;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
}

.video-modal::backdrop {
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
}

.modal-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 0 18px;
  border-bottom: 1px solid #293029;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.modal-bar span {
  display: flex;
  align-items: center;
  gap: 11px;
}

.modal-bar button {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #1b231d;
  color: white;
  cursor: pointer;
  font-size: 22px;
}

.modal-media {
  position: relative;
  aspect-ratio: 9 / 16;
  max-height: calc(100vh - 86px);
  background: black;
}

.modal-media video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.video-missing {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  padding: 30px;
  background: linear-gradient(rgba(5, 8, 6, 0.84), rgba(5, 8, 6, 0.94)), url("quant-archer.jpg") center/cover;
  text-align: center;
}

.video-missing strong {
  color: var(--acid);
  font-size: 28px;
}

.video-missing span {
  max-width: 540px;
  color: #bcc4be;
  font-size: 13px;
  line-height: 1.6;
}

.video-missing code {
  color: white;
  font-family: var(--mono);
}

.video-missing a {
  padding-bottom: 3px;
  border-bottom: 1px solid var(--acid);
  color: var(--acid);
  font-size: 12px;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal 700ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.reveal-delay-1 { animation-delay: 100ms; }
.reveal-delay-2 { animation-delay: 200ms; }
.reveal-delay-3 { animation-delay: 300ms; }

@keyframes reveal {
  to { opacity: 1; transform: translateY(0); }
}

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

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

@media (max-width: 980px) {
  .nav-links { display: none; }
  .hero { grid-template-columns: minmax(0, 1fr); padding-top: 60px; }
  .hero-copy { align-items: center; text-align: center; }
  .hero-lede { max-width: 720px; }
  .hero h1 { font-size: clamp(84px, 15vw, 140px); }
  .hero-visual { min-height: 690px; }
  .mini-stats { max-width: 660px; text-align: left; }
  .section-heading { grid-template-columns: 1fr 1.4fr; }
  .section-heading p { grid-column: 2; }
  .timeline { grid-template-columns: 1fr; gap: 25px; }
  .timeline-connector { flex-direction: row; justify-content: center; }
  .timeline-connector span { writing-mode: initial; }
  .timeline-card-green { transform: none; }
  .video-section { grid-template-columns: 1fr; }
  .post-source { grid-column: 1; }
  .video-copy { max-width: 600px; }
  .video-section::before { height: 1200px; }
  .arrow-decoration { opacity: 0.18; }
  .footer { grid-template-columns: 1fr; text-align: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 640px) {
  .shell { width: min(calc(100% - 28px), 1220px); }
  .nav { min-height: 70px; }
  .nav .button-small { display: none; }
  .hero { width: calc(100vw - 28px); max-width: calc(100vw - 28px); min-height: auto; gap: 20px; overflow: hidden; padding-block: 52px 65px; }
  .hero-copy, .hero-visual { width: 100%; max-width: 100%; overflow: hidden; }
  .hero h1 { width: 100%; margin-top: 24px; font-size: clamp(58px, 17vw, 80px); line-height: 0.81; }
  .hero-lede { font-size: 17px; }
  .hero-actions { flex-direction: column; gap: 24px; width: 100%; }
  .hero-actions .button { width: 100%; }
  .mini-stats { margin-top: 52px; }
  .stat-label { font-size: 7px; }
  .mini-stats strong { font-size: 23px; }
  .hero-visual { min-height: 510px; }
  .photo-frame { width: 86%; border-radius: 42% 42% 20px 20px; box-shadow: 11px 14px 0 var(--acid-dark); }
  .stamp { width: 82px; height: 82px; font-size: 11px; }
  .stamp::before { width: 66px; height: 66px; }
  .speech-bubble { left: 0; bottom: 3%; padding: 12px 15px; font-size: 10px; }
  .story { padding-block: 100px; }
  .section-heading { grid-template-columns: 1fr; gap: 25px; }
  .section-heading p { grid-column: auto; }
  .timeline-card { min-height: 500px; padding: 23px; }
  .timeline-card h3 { font-size: 28px; }
  .video-section { gap: 45px; padding-block: 105px; }
  .video-section::before { height: 980px; }
  .video-poster { aspect-ratio: 1058 / 455; border-radius: 18px; box-shadow: 11px 12px 0 var(--acid-dark); }
  .big-play { width: 70px; height: 70px; font-size: 18px; }
  .post-source { margin-top: 5px; }
  .cto { margin-top: 80px; }
  .cto-inner { padding-block: 105px 95px; }
  .cto h2 { font-size: clamp(58px, 19vw, 90px); }
  .cto-grid { grid-template-columns: 1fr; }
  .cto-grid > div { padding: 20px 0 !important; border-right: 0; border-bottom: 1px solid rgba(5, 8, 6, 0.2); }
  .contract-card { align-items: stretch; flex-direction: column; padding: 18px; }
  .contract-card code { font-size: 10px; }
  .contract-copy { justify-content: center; }
  .cto-actions { flex-direction: column; }
  .cto-actions .button { width: 100%; }
  .manifesto { padding-block: 105px; }
  .footer { gap: 24px; }
  .modal-media { aspect-ratio: 9 / 16; }
}

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