@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --ink: #111111;
  --paper: #f5f1e8;
  --pink: #ff4fd8;
  --acid: #dfff00;
  --orange: #ff6b00;
  --violet: #6b3cff;
  --blue: #1f5cff;
  --line: rgba(17,17,17,.22);
  --display: "Archivo Black", Impact, sans-serif;
  --body: "Inter", Arial, sans-serif;
  --shadow: 8px 8px 0 var(--ink);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { color: inherit; }
img, svg { max-width: 100%; }
::selection { color: var(--ink); background: var(--acid); }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 9999;
  padding: .8rem 1rem;
  color: #fff;
  background: var(--ink);
}
.skip-link:focus { top: 1rem; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .055;
  z-index: 100;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}
.cursor-glow {
  position: fixed;
  width: 26rem;
  height: 26rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,79,216,.18), transparent 65%);
  transform: translate(-50%,-50%);
  pointer-events: none;
  z-index: -1;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  min-height: 82px;
  padding: 1rem 4vw;
  border-bottom: 1px solid transparent;
  transition: .25s ease;
}
.site-header.scrolled {
  background: rgba(245,241,232,.91);
  backdrop-filter: blur(16px);
  border-color: var(--line);
}
.brand { display: inline-flex; align-items: center; gap: .8rem; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 3rem; height: 3rem;
  color: white;
  background: var(--ink);
  border-radius: 50%;
  font-family: var(--display);
  letter-spacing: -.08em;
}
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-size: .86rem; letter-spacing: .02em; }
.brand-copy small { margin-top: .35rem; font-size: .6rem; letter-spacing: .18em; }

.primary-nav { display: flex; align-items: center; gap: 1.5rem; font-size: .8rem; font-weight: 800; text-transform: uppercase; }
.primary-nav a:not(.nav-cta) { position: relative; }
.primary-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -.35rem;
  height: 2px; background: var(--ink);
  transition: right .2s ease;
}
.primary-nav a:hover::after { right: 0; }
.nav-cta { padding: .85rem 1rem; color: white; background: var(--ink); border: 2px solid var(--ink); }
.nav-cta:hover { color: var(--ink); background: var(--acid); }
.menu-button { display: none; width: 3rem; height: 3rem; border: 0; background: transparent; }
.menu-button span:not(.sr-only) { display: block; width: 1.6rem; height: 2px; margin: .35rem auto; background: var(--ink); }

.section { padding: 8rem 6vw; }
.section-kicker {
  margin-bottom: 1.5rem;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.section-kicker::before { content: "●"; margin-right: .6rem; color: var(--pink); }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 6vw;
  padding-top: 9rem;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  width: 30rem; height: 30rem;
  left: -18rem; bottom: -14rem;
  border-radius: 50%;
  background: var(--acid);
  filter: blur(1px);
  z-index: -2;
}
.hero h1 {
  margin: .7rem 0 1.4rem;
  font: 400 clamp(4rem, 9vw, 9rem)/.78 var(--display);
  letter-spacing: -.075em;
}
.outline-text {
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
  text-stroke: 2px var(--ink);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin: 0;
  padding: .45rem .7rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
}
.pulse-dot {
  width: .55rem; height: .55rem;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 0 rgba(255,79,216,.7);
  animation: pulse 1.7s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,79,216,.6); }
  75%,100% { box-shadow: 0 0 0 9px rgba(255,79,216,0); }
}
.hero-intro { max-width: 40rem; font-size: clamp(1rem, 1.6vw, 1.3rem); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 1.8rem;
  min-height: 3.5rem;
  padding: .9rem 1.2rem;
  border: 2px solid var(--ink);
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translate(-3px,-3px); box-shadow: 5px 5px 0 var(--ink); }
.button-primary { background: var(--pink); }
.button-ghost { background: transparent; }
.button-dark { color: white; background: var(--ink); }
.button-submit { width: 100%; background: var(--acid); }
.mini-proof { display: flex; gap: 2rem; margin-top: 2.8rem; }
.mini-proof div { display: grid; padding-left: 1rem; border-left: 2px solid var(--ink); }
.mini-proof strong { font: 2rem/1 var(--display); }
.mini-proof span { margin-top: .3rem; font-size: .66rem; font-weight: 700; text-transform: uppercase; }

.hero-visual { position: relative; display: grid; place-items: center; }
.poster-card {
  position: relative;
  width: min(100%, 31rem);
  aspect-ratio: .76;
  padding: 1.4rem;
  overflow: hidden;
  color: white;
  background: var(--violet);
  border: 3px solid var(--ink);
  box-shadow: 14px 14px 0 var(--ink);
  transform: rotate(2.4deg);
}
.poster-card::before {
  content: "";
  position: absolute;
  width: 23rem; height: 23rem;
  left: -5rem; bottom: -2rem;
  border-radius: 50%;
  background: var(--orange);
}
.poster-topline, .poster-footer {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .12em;
}
.poster-burst {
  position: absolute;
  z-index: 2;
  top: 22%;
  left: 8%;
  font: 400 clamp(4rem, 7vw, 7rem)/.8 var(--display);
  letter-spacing: -.08em;
  transform: rotate(-7deg);
  text-shadow: 6px 6px 0 var(--ink);
}
.poster-grid {
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.8) 1px, transparent 1px);
  background-size: 24px 24px;
}
.poster-sticker {
  position: absolute;
  z-index: 4;
  color: var(--ink);
  border: 2px solid var(--ink);
  font-family: var(--display);
  text-align: center;
  box-shadow: 4px 4px 0 var(--ink);
}
.sticker-one { top: 17%; right: 8%; padding: .55rem .7rem; background: var(--acid); transform: rotate(9deg); }
.sticker-two { right: -1rem; bottom: 22%; padding: .65rem 1.4rem; background: var(--pink); transform: rotate(-10deg); }
.sticker-three {
  left: 7%; bottom: 8%; width: 6.5rem; aspect-ratio: 1;
  display: grid; place-items: center; border-radius: 50%; background: white; transform: rotate(8deg);
}
.poster-footer { position: absolute; left: 1.4rem; right: 1.4rem; bottom: 1.4rem; }
.hero-orbit { position: absolute; z-index: -1; border: 1px solid rgba(17,17,17,.22); border-radius: 50%; }
.orbit-one { width: 42rem; height: 42rem; right: -10rem; top: 12%; }
.orbit-two { width: 30rem; height: 30rem; right: -4rem; top: 22%; }
.scroll-hint {
  position: absolute;
  bottom: 2rem; left: 6vw;
  display: flex; gap: .6rem;
  font-size: .68rem; font-weight: 800; text-transform: uppercase;
}

.ticker { overflow: hidden; color: white; background: var(--ink); transform: rotate(-1deg) scale(1.02); }
.ticker-track {
  display: flex;
  width: max-content;
  padding: 1rem 0;
  animation: ticker 24s linear infinite;
}
.ticker-track span { padding: 0 1rem; font: 1.4rem var(--display); }
.ticker-track i { color: var(--acid); font-style: normal; }
@keyframes ticker { to { transform: translateX(-50%); } }

.about { background: var(--acid); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; }
.about h2, .manifesto h2, .agenda h2, .events h2, .voices h2, .join h2 {
  margin: 0;
  font: 400 clamp(3.4rem, 7vw, 7rem)/.88 var(--display);
  letter-spacing: -.07em;
}
.highlight { display: inline-block; color: var(--paper); background: var(--ink); padding: .05em .1em .12em; transform: rotate(-1deg); }
.about-copy { max-width: 39rem; }
.about-copy .lead { margin-top: 0; font-size: clamp(1.35rem, 2.6vw, 2.2rem); font-weight: 700; line-height: 1.25; }
.about-copy > p:not(.lead) { font-size: 1.05rem; line-height: 1.65; }
.quote-card {
  position: relative;
  margin-top: 3rem;
  padding: 2.4rem;
  background: var(--pink);
  border: 3px solid var(--ink);
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}
.quote-card blockquote { margin: 0; font: 1.45rem/1.25 var(--display); }
.quote-mark { position: absolute; right: 1rem; top: -.5rem; font: 7rem/1 var(--display); opacity: .18; }

.manifesto { color: white; background: var(--ink); }
.manifesto-heading { display: flex; justify-content: space-between; align-items: end; gap: 2rem; margin-bottom: 4rem; }
.manifesto-list { border-top: 1px solid rgba(255,255,255,.25); }
.manifesto-item {
  display: grid;
  grid-template-columns: 4rem 1fr minmax(16rem, .75fr);
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.25);
  transition: padding .2s ease, color .2s ease;
}
.manifesto-item:hover { padding-left: 1rem; color: var(--acid); }
.manifesto-item > span { font: .76rem var(--display); color: var(--pink); }
.manifesto-item h3 { margin: 0; font: clamp(1.15rem, 2.3vw, 2rem) var(--display); }
.manifesto-item p { margin: 0; color: rgba(255,255,255,.72); line-height: 1.5; }
.text-button {
  margin-top: 2.5rem;
  padding: 0 0 .4rem;
  color: white;
  background: transparent;
  border: 0;
  border-bottom: 2px solid var(--pink);
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.agenda { background: var(--pink); }
.agenda-intro { display: grid; grid-template-columns: 1fr .7fr; align-items: end; gap: 3rem; }
.agenda-intro .section-kicker { grid-column: 1/-1; }
.agenda-intro p { max-width: 30rem; margin: 0 0 .8rem; font-size: 1.2rem; line-height: 1.6; }
.agenda-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 4rem; }
.agenda-card {
  min-height: 25rem;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background: var(--paper);
  border: 3px solid var(--ink);
  transition: transform .25s ease, box-shadow .25s ease;
}
.agenda-card:nth-child(2) { background: var(--acid); transform: translateY(2rem); }
.agenda-card:nth-child(3) { color: white; background: var(--violet); transform: translateY(4rem); }
.agenda-card:hover { transform: translate(-5px,-5px); box-shadow: 10px 10px 0 var(--ink); }
.agenda-card:nth-child(2):hover { transform: translate(-5px, calc(2rem - 5px)); }
.agenda-card:nth-child(3):hover { transform: translate(-5px, calc(4rem - 5px)); }
.card-icon { font-size: 2.4rem; }
.card-number { margin: auto 0 1rem; font-size: .75rem; font-weight: 800; }
.agenda-card h3 { margin: 0; font: 2rem/1 var(--display); }
.agenda-card > p:last-of-type { line-height: 1.55; }
.agenda-card a { margin-top: 1rem; font-size: .8rem; font-weight: 800; text-transform: uppercase; }

.events { padding-top: 12rem; }
.events-header { display: grid; grid-template-columns: 1fr .6fr; align-items: end; gap: 3rem; margin-bottom: 4rem; }
.events-header > p { max-width: 28rem; line-height: 1.6; }
.event-list { border-top: 3px solid var(--ink); }
.event-row {
  display: grid;
  grid-template-columns: 7rem 1fr auto auto;
  align-items: center;
  gap: 2rem;
  min-height: 8.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--ink);
}
.event-date { display: flex; align-items: end; gap: .5rem; }
.event-date strong { font: 3.8rem/.8 var(--display); }
.event-date span { font-size: .7rem; font-weight: 800; }
.event-place p { margin: 0 0 .4rem; font: 1.6rem var(--display); }
.event-place span { font-size: .82rem; }
.event-tag { padding: .45rem .65rem; border: 1px solid var(--ink); border-radius: 999px; font-size: .65rem; font-weight: 800; }
.event-row button { padding: .7rem 0; background: transparent; border: 0; border-bottom: 2px solid var(--pink); font-weight: 800; cursor: pointer; }

.voices { position: relative; overflow: hidden; background: var(--blue); }
.voices-track {
  position: absolute;
  left: -2%; right: -2%; top: 2rem;
  display: flex; gap: 2rem;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.38);
  font: clamp(4rem, 10vw, 10rem)/1 var(--display);
  white-space: nowrap;
}
.voices-layout { position: relative; z-index: 2; display: grid; grid-template-columns: .9fr 1.1fr; gap: 7vw; align-items: center; padding-top: 6rem; }
.voices-copy { color: white; }
.voices-copy p { max-width: 34rem; font-size: 1.1rem; line-height: 1.6; }
.story-stack { min-height: 33rem; position: relative; }
.story-card {
  position: absolute;
  width: min(75%, 27rem);
  padding: 2rem;
  border: 3px solid var(--ink);
  box-shadow: var(--shadow);
}
.story-card > span { font: 5rem/0 var(--display); opacity: .25; }
.story-card p { font: 1.45rem/1.2 var(--display); }
.story-card small { font-size: .68rem; font-weight: 800; }
.story-one { top: 0; left: 6%; background: var(--acid); transform: rotate(-5deg); }
.story-two { top: 28%; right: 0; background: var(--pink); transform: rotate(4deg); }
.story-three { left: 12%; bottom: 0; background: white; transform: rotate(-2deg); }

.join { background: var(--paper); }
.join-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 7vw; padding: clamp(2rem, 5vw, 5rem); color: white; background: var(--ink); border-radius: 1rem; }
.join h2 span { color: var(--pink); }
.join-copy > p { max-width: 26rem; font-size: 1.1rem; line-height: 1.6; }
.join-form, .modal-form { display: grid; gap: 1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.join-form label, .modal-form label { display: grid; gap: .5rem; }
.join-form label > span, .modal-form label > span { font-size: .7rem; font-weight: 800; text-transform: uppercase; }
.join-form input, .join-form select, .modal-form input {
  width: 100%;
  min-height: 3.5rem;
  padding: .8rem 1rem;
  color: white;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 0;
}
.join-form input:focus, .join-form select:focus, .modal-form input:focus { outline: 2px solid var(--pink); outline-offset: 2px; }
.join-form select option { color: var(--ink); }
.checkbox-label { grid-template-columns: auto 1fr !important; align-items: start; margin: .4rem 0; }
.checkbox-label input { width: 1rem; min-height: auto; accent-color: var(--pink); }
.checkbox-label span { font-size: .72rem !important; line-height: 1.5; text-transform: none !important; }
.form-status { min-height: 1.2rem; margin: 0; font-size: .8rem; color: var(--acid); }

.final-banner { padding: 5rem 6vw; text-align: center; background: var(--acid); border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink); }
.final-banner p { margin: 0; font-size: .75rem; font-weight: 800; letter-spacing: .16em; }
.final-banner h2 { margin: .6rem 0 1.7rem; font: clamp(3rem, 9vw, 9rem)/.9 var(--display); letter-spacing: -.07em; }
.final-banner a { font-size: .8rem; font-weight: 800; text-transform: uppercase; border-bottom: 2px solid var(--ink); }

.site-footer { padding: 4rem 6vw 2rem; color: white; background: var(--ink); }
.footer-brand { display: flex; align-items: center; gap: 1rem; }
.footer-brand p { font-weight: 800; line-height: 1.2; }
.footer-brand small { color: rgba(255,255,255,.55); font-weight: 500; }
.footer-links, .social-links { display: flex; flex-wrap: wrap; gap: 1.2rem; margin-top: 2rem; font-size: .78rem; font-weight: 800; text-transform: uppercase; }
.social-links a { display: grid; place-items: center; width: 2.7rem; height: 2.7rem; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; }
.footer-bottom { display: grid; grid-template-columns: auto 1fr; gap: 2rem; align-items: end; margin-top: 4rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.18); font-size: .68rem; color: rgba(255,255,255,.55); }
.legal-note { max-width: 44rem; justify-self: end; text-align: right; line-height: 1.5; }

.modal {
  width: min(92vw, 42rem);
  padding: clamp(2rem, 5vw, 4rem);
  color: white;
  background: var(--ink);
  border: 3px solid var(--pink);
  box-shadow: 14px 14px 0 var(--pink);
}
.modal::backdrop { background: rgba(17,17,17,.78); backdrop-filter: blur(7px); }
.modal h2 { margin: 0 0 2rem; font: clamp(2.3rem, 5vw, 4.5rem)/.9 var(--display); }
.modal-close { position: absolute; top: 1rem; right: 1rem; width: 2.7rem; height: 2.7rem; color: white; background: transparent; border: 1px solid white; border-radius: 50%; font-size: 1.5rem; cursor: pointer; }
.modal-agenda { display: grid; gap: .8rem; padding-left: 1.3rem; line-height: 1.5; }

.reveal { opacity: 0; transform: translateY(25px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }

@media (max-width: 980px) {
  .primary-nav {
    position: fixed;
    inset: 0;
    display: grid;
    place-content: center;
    gap: 1.7rem;
    background: var(--acid);
    font: 1.8rem var(--display);
    transform: translateY(-105%);
    transition: transform .35s ease;
  }
  .primary-nav.open { transform: translateY(0); }
  .nav-cta { text-align: center; }
  .menu-button { display: block; position: relative; z-index: 2; }
  .hero { grid-template-columns: 1fr; padding-top: 9rem; }
  .hero-visual { margin-top: 1rem; }
  .hero h1 { font-size: clamp(4rem, 15vw, 8rem); }
  .about-grid, .voices-layout, .join-panel { grid-template-columns: 1fr; }
  .agenda-intro, .events-header { grid-template-columns: 1fr; }
  .agenda-cards { grid-template-columns: 1fr; }
  .agenda-card:nth-child(2), .agenda-card:nth-child(3) { transform: none; }
  .agenda-card:nth-child(2):hover, .agenda-card:nth-child(3):hover { transform: translate(-5px,-5px); }
  .events { padding-top: 8rem; }
  .story-stack { min-height: 38rem; }
}

@media (max-width: 680px) {
  .section { padding: 6rem 1.2rem; }
  .site-header { padding-inline: 1.1rem; }
  .brand-copy { display: none; }
  .hero { padding-top: 7.5rem; }
  .hero h1 { font-size: clamp(3.5rem, 18vw, 6rem); }
  .poster-card { width: 88%; }
  .mini-proof { gap: 1rem; }
  .mini-proof strong { font-size: 1.4rem; }
  .mini-proof span { font-size: .58rem; }
  .scroll-hint { left: 1.2rem; }
  .manifesto-heading { display: block; }
  .manifesto-item { grid-template-columns: 2.5rem 1fr; }
  .manifesto-item p { grid-column: 2; }
  .event-row { grid-template-columns: 5rem 1fr auto; gap: .8rem; }
  .event-date strong { font-size: 2.7rem; }
  .event-tag { display: none; }
  .event-row button { grid-column: 2 / 4; justify-self: start; }
  .story-card { width: 88%; }
  .field-row { grid-template-columns: 1fr; }
  .footer-bottom { grid-template-columns: 1fr; }
  .legal-note { justify-self: start; text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .cursor-glow { display: none; }
}
