@font-face {
  font-family: "Human Display";
  src: url("/assets/display.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Human Sans";
  src: url("/assets/sans.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Human Mono";
  src: url("/assets/mono.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --ink: #050505;
  --paper: #f1e8d7;
  --paper-2: #d9cfbd;
  --red: #ef2b22;
  --lime: #9afc21;
  --line: rgba(241, 232, 215, 0.18);
  --mono: "Human Mono", "Courier New", monospace;
  --display: "Human Display", Impact, sans-serif;
  --sans: "Human Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  cursor: none;
}
a, button { color: inherit; }
a { text-decoration: none; }
button { font: inherit; }
::selection { background: var(--red); color: white; }

.boot {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 18px;
  background: var(--ink);
  transition: transform 0.85s cubic-bezier(.76,0,.24,1), visibility 0.85s;
}
.boot.is-done { transform: translateY(-105%); visibility: hidden; }
.boot__heart { color: var(--red); font-size: clamp(54px, 9vw, 110px); line-height: .8; animation: heartbeat .75s infinite; }
.boot p { margin: 0; font: 500 11px var(--mono); letter-spacing: .25em; }
.boot b { font: 400 12px var(--mono); color: var(--red); }
.boot__track { width: min(320px, 72vw); height: 2px; background: #242424; }
.boot__track span { display: block; width: 0; height: 100%; background: var(--red); }

.noise {
  position: fixed;
  inset: -50%;
  z-index: 1000;
  pointer-events: none;
  opacity: .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='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
  animation: grain .2s steps(2) infinite;
}
.cursor { position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none; width: 42px; height: 42px; border: 1px solid rgba(241,232,215,.5); border-radius: 50%; transform: translate(-50%, -50%); transition: width .2s, height .2s, background .2s, border .2s; mix-blend-mode: difference; }
.cursor span { position: absolute; top: 50%; left: 50%; width: 4px; height: 4px; transform: translate(-50%,-50%); border-radius: 50%; background: white; }
.cursor.is-active { width: 72px; height: 72px; background: white; border-color: white; }
.scroll-progress { position: fixed; z-index: 900; top: 0; left: 0; width: 100%; height: 3px; }
.scroll-progress span { display: block; width: 0; height: 100%; background: var(--red); box-shadow: 0 0 16px var(--red); }

.nav {
  position: fixed;
  z-index: 800;
  top: 0;
  left: 0;
  width: 100%;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3vw;
  border-bottom: 1px solid transparent;
  transition: background .3s, height .3s, border .3s;
}
.nav.is-scrolled { height: 70px; background: rgba(5,5,5,.82); border-color: rgba(255,255,255,.08); backdrop-filter: blur(18px); }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--mono); font-size: 13px; font-weight: 500; letter-spacing: .08em; }
.brand__mark { display: grid; place-items: center; width: 36px; height: 36px; background: var(--red); color: white; font: 20px var(--display); clip-path: polygon(50% 0, 100% 24%, 94% 79%, 50% 100%, 6% 79%, 0 24%); }
.nav__links { display: flex; gap: 34px; font: 500 10px var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.nav__links a { position: relative; opacity: .68; transition: opacity .2s; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -8px; width: 0; height: 1px; background: var(--red); transition: width .25s; }
.nav__links a:hover { opacity: 1; }
.nav__links a:hover::after { width: 100%; }
.menu-button { display: none; background: none; border: 0; }

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 58px;
  padding: 0 25px;
  border: 1px solid var(--paper);
  background: var(--paper);
  color: var(--ink);
  font: 600 11px var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .25s, background .25s, border .25s, transform .25s;
}
.pill span { color: var(--red); font-size: 18px; transition: transform .25s; }
.pill:hover { background: var(--red); color: white; border-color: var(--red); }
.pill:hover span { color: white; transform: translate(3px,-3px); }
.pill--small { min-height: 44px; padding: 0 18px; gap: 14px; }
.pill--disabled { opacity: .55; }
.text-link { display: inline-flex; align-items: center; gap: 18px; font: 500 10px var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.text-link i { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; color: var(--red); font-style: normal; transition: transform .25s, background .25s; }
.text-link:hover i { transform: translateY(4px); background: var(--red); color: white; }

.hero { position: relative; min-height: 100svh; overflow: hidden; isolation: isolate; display: flex; align-items: center; padding: 120px 6vw 80px; }
.hero__grid { position: absolute; inset: 0; z-index: -4; opacity: .12; background-image: linear-gradient(rgba(255,255,255,.25) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.25) 1px, transparent 1px); background-size: 68px 68px; mask-image: linear-gradient(to right, black, transparent 76%); }
.hero__radar { position: absolute; right: -20vw; top: -35vw; z-index: -3; width: 80vw; aspect-ratio: 1; border-radius: 50%; border: 1px solid rgba(154,252,33,.12); background: repeating-radial-gradient(circle, transparent 0 8%, rgba(154,252,33,.08) 8.1% 8.3%); animation: radar 18s linear infinite; }
.hero__radar::after { content: ""; position: absolute; inset: 49.9% 0 auto; height: 1px; background: linear-gradient(90deg, transparent, var(--lime)); transform-origin: 50% 50%; }
.hero__copy { position: relative; z-index: 5; width: 52%; padding-top: 4vh; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 3.5vh; color: var(--paper-2); font: 500 10px var(--mono); letter-spacing: .18em; }
.eyebrow span { width: 8px; height: 8px; background: var(--red); border-radius: 50%; box-shadow: 0 0 12px var(--red); animation: blink 1.2s infinite; }
.hero__title { margin: 0; font: 400 clamp(108px, 13.5vw, 230px)/.74 var(--display); letter-spacing: -.035em; }
.title-line { position: relative; display: block; transform: translateY(120%); opacity: 0; }
.is-ready .title-line { animation: titleIn 1s cubic-bezier(.16,1,.3,1) forwards; }
.is-ready .title-line:nth-child(2) { animation-delay: .12s; }
.title-line--outline { color: transparent; -webkit-text-stroke: 2px var(--paper); }
.title-line--outline::before { content: attr(data-text); position: absolute; inset: 0; color: var(--paper); clip-path: inset(0 100% 0 0); animation: glitchReveal 5s 1.5s infinite; }
.title-line--red { color: var(--red); text-shadow: 0 10px 45px rgba(239,43,34,.18); }
.hero__lede { max-width: 520px; margin: 40px 0 34px; color: rgba(241,232,215,.66); font-size: clamp(16px, 1.4vw, 20px); line-height: 1.55; }
.hero__lede strong { color: var(--paper); font-weight: 500; }
.hero__actions { display: flex; align-items: center; gap: 30px; }
.hero__visual { position: absolute; z-index: -1; inset: 0 0 0 40%; overflow: hidden; clip-path: inset(0 0 0 100%); }
.is-ready .hero__visual { animation: visualReveal .78s .05s cubic-bezier(.76,0,.24,1) forwards; }
.hero__visual img { width: 100%; height: 100%; object-fit: cover; object-position: 56% center; filter: contrast(1.07) saturate(.8) brightness(.72); transform: scale(1.08); animation: heroDrift 12s ease-in-out infinite alternate; }
.image-shade { position: absolute; inset: 0; background: linear-gradient(90deg, var(--ink) 0%, rgba(5,5,5,.85) 8%, transparent 42%), linear-gradient(0deg, rgba(5,5,5,.75), transparent 30%); }
.image-halo { position: absolute; z-index: 2; left: 47%; top: 60%; width: 28vw; height: 20vw; border-radius: 50%; background: var(--red); filter: blur(90px); opacity: .1; animation: pulseHalo 3s infinite; }
.scanline { position: absolute; z-index: 3; left: 0; right: 0; height: 90px; top: -10%; background: linear-gradient(transparent, rgba(154,252,33,.1), transparent); animation: scan 5s linear infinite; mix-blend-mode: screen; }
.target { position: absolute; z-index: 5; width: 40px; height: 40px; border: 1px solid rgba(154,252,33,.8); }
.target::before, .target::after { content: ""; position: absolute; background: var(--lime); }
.target::before { top: 50%; left: -8px; width: 56px; height: 1px; }
.target::after { top: -8px; left: 50%; width: 1px; height: 56px; }
.target span { position: absolute; top: -20px; white-space: nowrap; color: var(--lime); font: 8px var(--mono); letter-spacing: .1em; }
.target--one { left: 48%; top: 68%; animation: target 2s infinite; }
.target--two { right: 14%; top: 39%; opacity: .7; transform: scale(.75); }
.glass-card { border: 1px solid rgba(255,255,255,.18); background: rgba(8,8,8,.46); backdrop-filter: blur(14px); box-shadow: 0 25px 80px rgba(0,0,0,.25); }
.signal-card { position: absolute; z-index: 9; min-width: 170px; padding: 16px; font-family: var(--mono); }
.signal-card small { display: block; margin-bottom: 8px; color: rgba(255,255,255,.5); font-size: 8px; letter-spacing: .16em; }
.signal-card strong { font-size: 22px; letter-spacing: -.05em; }
.signal-card__dot { position: absolute; top: 15px; right: 15px; width: 7px; height: 7px; background: var(--lime); border-radius: 50%; box-shadow: 0 0 10px var(--lime); }
.signal-card--left { right: 37%; bottom: 8%; }
.signal-card--right { right: 3vw; top: 22%; }
.signal-card__wave { display: flex; align-items: center; height: 22px; gap: 3px; margin-top: 8px; }
.signal-card__wave i { display: block; width: 3px; height: 30%; background: var(--red); animation: wave .9s ease-in-out infinite alternate; }
.signal-card__wave i:nth-child(2n) { animation-delay: -.4s; height: 80%; }
.signal-card__wave i:nth-child(3n) { animation-delay: -.7s; height: 50%; }
.mini-code { margin-top: 13px; color: rgba(255,255,255,.35); font-size: 9px; letter-spacing: .1em; }
.mini-code b { color: var(--red); }
.hero__index { position: absolute; right: 3vw; bottom: 4vh; z-index: 5; display: flex; align-items: center; gap: 10px; font: 8px var(--mono); letter-spacing: .15em; }
.hero__index span { color: var(--red); font-size: 12px; }
.hero__index i { width: 50px; height: 1px; background: rgba(255,255,255,.3); }

.ticker { overflow: hidden; border-block: 1px solid var(--line); background: var(--red); color: white; transform: rotate(-1deg) scale(1.02); }
.ticker__track { display: flex; width: max-content; animation: ticker 22s linear infinite; }
.ticker span { display: flex; align-items: center; gap: 48px; padding: 17px 25px; font: 400 22px var(--display); letter-spacing: .06em; }
.ticker i { color: var(--ink); font-style: normal; }

.section { position: relative; padding: 140px 6vw; }
.section-tag { margin-bottom: 60px; color: var(--red); font: 500 10px var(--mono); letter-spacing: .18em; }
.manifesto { background: var(--paper); color: var(--ink); overflow: hidden; }
.manifesto::before { content: "H"; position: absolute; right: -1vw; top: -16vw; color: rgba(5,5,5,.035); font: 80vw/1 var(--display); }
.manifesto__layout { position: relative; z-index: 2; display: grid; grid-template-columns: 1.45fr .55fr; gap: 8vw; align-items: end; }
.display-copy { margin: 0; font: 400 clamp(70px, 9.4vw, 164px)/.87 var(--display); letter-spacing: -.03em; }
.display-copy em { color: var(--red); font-style: normal; }
.manifesto__body { padding-bottom: 10px; }
.manifesto__body p { color: rgba(5,5,5,.62); font-size: 15px; line-height: 1.7; }
.manifesto__body .lead { color: var(--ink); font-size: 23px; line-height: 1.35; font-weight: 600; }
.manifesto__signature { display: flex; align-items: center; gap: 20px; margin-top: 45px; font: 500 8px var(--mono); letter-spacing: .14em; }
.manifesto__signature strong { color: var(--red); font-size: 32px; animation: heartbeat .8s infinite; }
.portrait-strip { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr 1fr .35fr; min-height: 420px; margin-top: 110px; background: var(--ink); color: var(--paper); }
.portrait-strip__image { overflow: hidden; }
.portrait-strip__image img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 46%; filter: grayscale(1) contrast(1.4) brightness(.75); transition: filter .6s, transform 1s; }
.portrait-strip:hover img { filter: grayscale(.25) contrast(1.1) brightness(.8); transform: scale(1.035); }
.portrait-strip__quote { display: flex; align-items: center; position: relative; padding: 60px; border-right: 1px solid var(--line); }
.portrait-strip__quote span { position: absolute; top: 20px; left: 35px; color: var(--red); font: 100px/1 var(--display); }
.portrait-strip__quote p { position: relative; margin: 0; font: 400 clamp(28px, 3.1vw, 52px)/1.05 var(--display); }
.portrait-strip__id { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; writing-mode: vertical-rl; transform: rotate(180deg); }
.portrait-strip__id small { font: 8px var(--mono); letter-spacing: .2em; opacity: .55; }
.portrait-strip__id b { color: var(--red); font: 46px var(--display); }

.proof { overflow: hidden; background: #080808; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.section-heading h2, .protocol__intro h2 { margin: 0; font: 400 clamp(60px, 7.6vw, 125px)/.9 var(--display); letter-spacing: -.02em; }
.section-heading h2 span, .protocol__intro h2 span { color: transparent; -webkit-text-stroke: 1px rgba(241,232,215,.6); }
.section-heading p { max-width: 420px; margin: 0 0 10px; color: rgba(241,232,215,.5); line-height: 1.7; }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 80px; background: var(--line); border: 1px solid var(--line); perspective: 1000px; }
.proof-card { position: relative; min-height: 430px; padding: 35px; background: #080808; transform-style: preserve-3d; transition: background .3s, transform .15s; }
.proof-card:hover { background: #0f0f0f; }
.proof-card__number { position: absolute; top: 30px; right: 30px; color: rgba(255,255,255,.22); font: 10px var(--mono); }
.proof-card__icon { display: grid; place-items: center; width: 95px; height: 95px; margin-bottom: 100px; border: 1px solid rgba(154,252,33,.35); border-radius: 50%; color: var(--lime); font: 34px var(--display); box-shadow: inset 0 0 30px rgba(154,252,33,.05), 0 0 30px rgba(154,252,33,.06); }
.proof-card__icon--lock { color: var(--paper); border-color: var(--line); font: 42px var(--sans); }
.proof-card__icon--human { color: var(--red); border-color: rgba(239,43,34,.4); animation: heartbeat .9s infinite; }
.proof-card h3 { margin: 0 0 16px; font: 400 34px var(--display); }
.proof-card p { min-height: 50px; margin: 0; color: rgba(241,232,215,.48); font-size: 14px; line-height: 1.55; }
.proof-card small { position: absolute; bottom: 35px; color: rgba(241,232,215,.32); font: 8px var(--mono); letter-spacing: .12em; }

.contract { min-height: 90vh; display: grid; place-items: center; overflow: hidden; background: var(--red); color: white; text-align: center; }
.contract::before { content: ""; position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(rgba(0,0,0,.3) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,.3) 1px, transparent 1px); background-size: 50px 50px; }
.contract__orb { position: absolute; top: 50%; left: 50%; width: min(55vw, 700px); aspect-ratio: 1; transform: translate(-50%,-50%); display: grid; place-items: center; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; box-shadow: 0 0 0 80px rgba(255,255,255,.025), 0 0 0 160px rgba(255,255,255,.018); animation: spin 30s linear infinite; }
.contract__orb::before, .contract__orb::after { content: ""; position: absolute; border-radius: 50%; border: 1px dashed rgba(255,255,255,.25); }
.contract__orb::before { inset: 10%; }
.contract__orb::after { inset: 24%; }
.contract__orb span { color: rgba(5,5,5,.16); font: 320px var(--display); transform: rotate(-12deg); }
.contract__content { position: relative; z-index: 2; width: min(850px, 92vw); }
.contract .section-tag { color: white; margin-bottom: 30px; }
.contract h2 { margin: 0; font: 400 clamp(80px, 10vw, 158px)/.8 var(--display); letter-spacing: -.03em; }
.contract__content > p { max-width: 580px; margin: 35px auto; color: rgba(255,255,255,.74); line-height: 1.6; }
.contract-box { width: min(730px, 90vw); min-height: 94px; margin: 10px auto 30px; padding: 15px 18px 15px 25px; display: flex; align-items: center; justify-content: space-between; text-align: left; border: 1px solid rgba(255,255,255,.55); background: rgba(5,5,5,.12); color: white; cursor: none; transition: background .25s, color .25s; }
.contract-box:hover { background: white; color: var(--ink); }
.contract-box span { min-width: 0; }
.contract-box small { display: block; margin-bottom: 9px; font: 8px var(--mono); letter-spacing: .14em; opacity: .65; }
.contract-box b { display: block; overflow: hidden; text-overflow: ellipsis; font: 500 18px var(--mono); letter-spacing: .06em; }
.contract-box i { display: grid; place-items: center; width: 62px; height: 62px; flex: 0 0 auto; background: var(--ink); color: white; font: normal 9px var(--mono); letter-spacing: .1em; }
.contract__actions { display: flex; align-items: center; justify-content: center; gap: 25px; }
.contract .pill { background: var(--ink); color: white; border-color: var(--ink); }
.contract .text-link i { color: white; border-color: rgba(255,255,255,.4); }

.protocol { background: var(--paper); color: var(--ink); }
.protocol__intro { display: flex; justify-content: space-between; align-items: end; gap: 50px; }
.protocol__intro h2 span { -webkit-text-stroke-color: rgba(5,5,5,.42); }
.protocol__intro p { max-width: 400px; color: rgba(5,5,5,.55); line-height: 1.65; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5vw; margin-top: 100px; }
.step { position: relative; }
.step__line { position: relative; height: 2px; margin-bottom: 32px; background: rgba(5,5,5,.18); }
.step__line i { display: block; position: absolute; left: 0; top: -4px; width: 10px; height: 10px; background: var(--red); border-radius: 50%; box-shadow: 0 0 0 5px rgba(239,43,34,.12); }
.step__line::after { content: ""; display: block; width: 0; height: 100%; background: var(--red); transition: width 1s .2s; }
.step.is-visible .step__line::after { width: 100%; }
.step > span, .step small { color: var(--red); font: 500 8px var(--mono); letter-spacing: .16em; }
.step h3 { margin: 18px 0 14px; font: 400 clamp(28px, 3vw, 45px) var(--display); }
.step p { min-height: 72px; color: rgba(5,5,5,.58); font-size: 14px; line-height: 1.6; }
.step small { color: rgba(5,5,5,.4); }

.community { position: relative; min-height: 100svh; overflow: hidden; display: grid; place-items: center; text-align: center; }
.community__bg { position: absolute; inset: 0; }
.community__bg::after { content: ""; position: absolute; inset: 0; background: rgba(5,5,5,.67); }
.community__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 48%; filter: grayscale(1) contrast(1.3); transform: scale(1.05); }
.community__rings { position: absolute; width: 60vw; aspect-ratio: 1; border: 1px solid rgba(239,43,34,.5); border-radius: 50%; box-shadow: 0 0 0 7vw rgba(239,43,34,.06), 0 0 0 14vw rgba(239,43,34,.035); animation: pulseRing 3s ease-in-out infinite; }
.community__content { position: relative; z-index: 2; width: min(880px, 90vw); }
.community__content > span { color: var(--lime); font: 9px var(--mono); letter-spacing: .2em; }
.community h2 { margin: 25px 0; font: 400 clamp(100px, 14vw, 220px)/.73 var(--display); letter-spacing: -.035em; }
.community h2 em { color: var(--red); font-style: normal; }
.community p { font-size: 16px; color: rgba(255,255,255,.55); }
.socials { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 55px; border: 1px solid var(--line); }
.social { display: flex; align-items: center; gap: 12px; min-height: 72px; padding: 0 18px; border-right: 1px solid var(--line); background: rgba(5,5,5,.52); backdrop-filter: blur(10px); transition: background .25s, color .25s; }
.social:last-child { border-right: 0; }
.social:hover { background: var(--paper); color: var(--ink); }
.social span { display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid currentColor; border-radius: 50%; }
.social b { font: 500 9px var(--mono); letter-spacing: .1em; }
.social i { margin-left: auto; color: var(--red); font-style: normal; }

.footer { display: grid; grid-template-columns: 1fr 1.5fr .8fr; gap: 4vw; align-items: center; padding: 55px 4vw; background: var(--paper); color: var(--ink); }
.footer__brand { display: flex; align-items: center; gap: 12px; }
.footer__brand div { display: flex; flex-direction: column; }
.footer__brand b { font: 24px var(--display); }
.footer__brand small { font: 7px var(--mono); letter-spacing: .2em; }
.footer p { margin: 0; color: rgba(5,5,5,.5); font-size: 10px; line-height: 1.6; }
.footer__end { display: flex; justify-content: flex-end; gap: 22px; font: 8px var(--mono); letter-spacing: .1em; }
.toast { position: fixed; z-index: 9999; left: 50%; bottom: 30px; transform: translate(-50%, 130px); padding: 14px 22px; background: var(--lime); color: var(--ink); font: 500 9px var(--mono); letter-spacing: .15em; transition: transform .35s cubic-bezier(.34,1.56,.64,1); }
.toast.is-visible { transform: translate(-50%, 0); }

.reveal { opacity: 0; transform: translateY(35px); transition: opacity .8s, transform .8s cubic-bezier(.16,1,.3,1); }
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes grain { 0%{transform:translate(0,0)} 25%{transform:translate(2%,-3%)} 50%{transform:translate(-3%,2%)} 75%{transform:translate(3%,3%)} 100%{transform:translate(-2%,-2%)} }
@keyframes heartbeat { 0%,100%{transform:scale(1)} 15%{transform:scale(1.18)} 28%{transform:scale(1)} 43%{transform:scale(1.12)} 58%{transform:scale(1)} }
@keyframes blink { 50%{opacity:.25} }
@keyframes titleIn { to{transform:none;opacity:1} }
@keyframes visualReveal { to{clip-path:inset(0)} }
@keyframes heroDrift { to{transform:scale(1.13) translate3d(-1.5%,1%,0)} }
@keyframes glitchReveal { 0%,90%,100%{clip-path:inset(0 100% 0 0);transform:translateX(0)} 92%{clip-path:inset(10% 0 60% 0);transform:translateX(-8px)} 94%{clip-path:inset(60% 0 12% 0);transform:translateX(6px)} 96%{clip-path:inset(20% 0 36% 0);transform:translateX(0)} }
@keyframes radar { to{transform:rotate(360deg)} }
@keyframes scan { to{top:110%} }
@keyframes target { 50%{transform:scale(1.15);box-shadow:0 0 18px rgba(154,252,33,.3)} }
@keyframes pulseHalo { 50%{opacity:.2;transform:scale(1.12)} }
@keyframes wave { to{height:100%} }
@keyframes ticker { to{transform:translateX(-50%)} }
@keyframes spin { to{transform:translate(-50%,-50%) rotate(360deg)} }
@keyframes pulseRing { 50%{transform:scale(1.07);opacity:.65} }

@media (max-width: 1100px) {
  .nav__links { display: none; }
  .hero__copy { width: 68%; }
  .hero__visual { left: 25%; }
  .hero__title { font-size: clamp(100px, 16vw, 190px); }
  .signal-card--left { right: 18%; }
  .manifesto__layout { grid-template-columns: 1fr; }
  .manifesto__body { max-width: 600px; margin-left: auto; }
  .portrait-strip { grid-template-columns: 1fr 1fr .22fr; }
  .section-heading { align-items: start; flex-direction: column; }
}

@media (max-width: 760px) {
  body { cursor: auto; }
  .cursor { display: none; }
  .nav { height: 70px; padding-inline: 18px; }
  .nav > .pill { display: none; }
  .menu-button { display: grid; gap: 6px; padding: 10px; cursor: pointer; }
  .menu-button span { display: block; width: 26px; height: 1px; background: var(--paper); transition: transform .25s; }
  .menu-button.is-open span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-button.is-open span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .nav__links { position: fixed; inset: 70px 0 auto; display: flex; flex-direction: column; gap: 0; padding: 25px 20px; background: rgba(5,5,5,.97); border-bottom: 1px solid var(--line); transform: translateY(-140%); transition: transform .35s; }
  .nav__links.is-open { transform: none; }
  .nav__links a { padding: 16px 0; font-size: 11px; border-bottom: 1px solid var(--line); }
  .hero { align-items: flex-end; min-height: 940px; padding: 100px 20px 70px; }
  .hero__copy { width: 100%; }
  .hero__visual { left: 0; bottom: 28%; height: 72%; }
  .hero__visual img { object-position: 50% 35%; }
  .image-shade { background: linear-gradient(0deg,var(--ink) 0%,rgba(5,5,5,.9) 13%,transparent 55%), linear-gradient(90deg,rgba(5,5,5,.35),transparent,rgba(5,5,5,.25)); }
  .hero__title { font-size: clamp(90px, 31vw, 145px); }
  .eyebrow { margin-bottom: 18px; }
  .hero__lede { margin: 25px 0; font-size: 15px; max-width: 90%; }
  .hero__actions { flex-wrap: wrap; gap: 18px; }
  .signal-card--right { right: 15px; top: 16%; transform: scale(.8); transform-origin: right; }
  .signal-card--left, .hero__index, .target--two { display: none; }
  .target--one { left: 43%; top: 46%; }
  .ticker span { padding-block: 13px; font-size: 18px; }
  .section { padding: 95px 20px; }
  .section-tag { margin-bottom: 40px; }
  .display-copy { font-size: clamp(58px, 18vw, 96px); }
  .manifesto__body { margin-top: 45px; }
  .manifesto__body .lead { font-size: 19px; }
  .portrait-strip { grid-template-columns: 1fr; min-height: auto; margin-top: 70px; }
  .portrait-strip__image { height: 360px; }
  .portrait-strip__quote { min-height: 260px; padding: 45px 30px; }
  .portrait-strip__id { display: none; }
  .section-heading h2, .protocol__intro h2 { font-size: clamp(55px, 18vw, 90px); }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-card { min-height: 360px; }
  .proof-card__icon { margin-bottom: 55px; }
  .contract { min-height: 850px; }
  .contract h2 { font-size: clamp(72px, 23vw, 110px); }
  .contract-box { min-height: 82px; padding-left: 15px; }
  .contract-box b { font-size: 13px; }
  .contract-box i { width: 50px; height: 50px; }
  .contract__actions { flex-direction: column; }
  .contract__orb { width: 115vw; }
  .protocol__intro { flex-direction: column; align-items: flex-start; }
  .steps { grid-template-columns: 1fr; gap: 65px; margin-top: 70px; }
  .step p { min-height: auto; }
  .community { min-height: 850px; }
  .community h2 { font-size: clamp(92px, 29vw, 150px); }
  .community__rings { width: 120vw; }
  .socials { grid-template-columns: 1fr; }
  .social { border-right: 0; border-bottom: 1px solid var(--line); }
  .footer { grid-template-columns: 1fr; padding: 45px 20px; }
  .footer__end { justify-content: space-between; }
}

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