@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@400;700&display=swap');

@font-face {
  font-family: Inter;
  src: url('https://cdn.prod.website-files.com/67c08ea22d8c948740e1cae0/67c08ea32d8c948740e1cb41_Inter.var.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: GeistMono;
  src: url('https://cdn.prod.website-files.com/67c08ea22d8c948740e1cae0/69ed3320a82d520c0ce50d85_GeistMono-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --paper: #fafafa;
  --ink: #111111;
  --muted: #919191;
  --line: rgba(17, 17, 17, .28);
  --red: #9d151c;
  --gutter: clamp(1.75rem, 4.2vw, 4rem);
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
  font-synthesis: none;
}

* { box-sizing: border-box; }
html, body { overscroll-behavior-x: none; }
html { overscroll-behavior-y: none; scroll-behavior: smooth; overflow-x: hidden; overflow-y: auto; }
body { margin: 0; min-width: 320px; overflow-x: hidden; overflow-y: visible; scroll-behavior: smooth; background: var(--paper); font-size: 80%; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
::selection { color: white; background: var(--red); }
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
h1, h2, p { margin: 0; }
strong { font-weight: 400; color: var(--ink); }

.hex-cursor { position: fixed; z-index: 1200; top: 0; left: 0; width: 14px; height: 14px; pointer-events: none; opacity: 0; background: white; clip-path: polygon(25% 6.7%, 75% 6.7%, 100% 50%, 75% 93.3%, 25% 93.3%, 0 50%); transform: translate(-50%, -50%) rotate(30deg); mix-blend-mode: difference; transition: transform .15s ease, opacity .15s ease; }
.has-pointer .hex-cursor { opacity: 1; }
.has-pointer a, .has-pointer button { cursor: none; }
.hex-cursor.is-hover { transform: translate(-50%, -50%) rotate(30deg) scale(4); }

.site-nav { position: fixed; z-index: 1100; bottom: 2rem; left: 50%; display: flex; width: max-content; height: 4rem; align-items: center; justify-content: center; border-radius: 999px; color: var(--ink); background: white; box-shadow: 0 3px 24px rgba(0, 0, 0, .14); transform: translateX(-50%); font: 12.8px/17.92px Inter, Arial, sans-serif; text-transform: uppercase; }
.site-nav.is-back-home { width: max-content; }
.nav-menu { display: flex; width: max-content; height: 100%; align-items: center; justify-content: space-between; }
.site-nav.is-back-home .nav-menu { width: max-content; }
.site-nav a { margin: 0 1.9375px; padding: 8px 20px; border-radius: 450px; white-space: nowrap; transition: color .2s, background-color .2s; }
.site-nav.is-back-home .nav-back-home { margin: 0 16px; }
.site-nav a:first-child { margin-left: 16px; }
.site-nav a:last-child { margin-right: 16px; }
.site-nav a:hover { background: var(--paper); }
.site-nav .is-current { position: relative; z-index: 1; padding: 8px 20px; border-radius: 400px; color: white; background: var(--ink); }
.site-nav .is-current:hover { color: white; background: var(--ink); }
.site-nav a:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 0; border-radius: 999px; background: transparent; }
.nav-toggle span { display: block; width: 16px; height: 1px; margin: 5px auto; background: var(--ink); transition: transform .2s; }
.site-nav.is-open .nav-toggle span:first-child { transform: translateY(3px) rotate(45deg); }
.site-nav.is-open .nav-toggle span:last-child { transform: translateY(-3px) rotate(-45deg); }

.hero { position: relative; height: 90vh; overflow: hidden; color: white; background: var(--ink); }
.hero-background { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .39; transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.06); transform-origin: center; will-change: transform; }
.hero::after { position: absolute; inset: 0; background: rgba(0, 0, 0, .08); content: ''; }
.hero-content { position: relative; z-index: 1; display: grid; height: 100%; min-height: 0; grid-template-columns: 1fr 1fr; align-items: center; gap: 1rem; padding: 0 2.5rem; }
.hero-logo { width: min(100%, 47rem); filter: invert(1); transform: none; }
.hero-tagline { justify-self: end; width: 357.2px; max-width: 100%; font: 14px/18.2px GeistMono, Verdana, sans-serif; letter-spacing: 1px; text-transform: uppercase; white-space: nowrap; transform: none; }
.hero-bottom { display: none; grid-column: 1 / -1; align-items: end; justify-content: space-between; font: clamp(1.15rem, 2vw, 2rem)/1.05 Inconsolata, monospace; }
.hero-button { display: inline-flex; align-items: center; gap: .8rem; border: 1px solid white; border-radius: 2rem; padding: .85rem 1.15rem; font-size: .68rem; text-transform: uppercase; transition: color .25s, background .25s; }
.hero-button:hover { color: var(--ink); background: white; }

.intro, .statement { padding: 4rem 2.5rem; background: var(--paper); }
.intro { min-height: 245px; }
.intro h1, .statement h2 { width: 50%; max-width: none; font: 400 32px/36px Inter, Arial, sans-serif; letter-spacing: -1px; }
.intro h1 { color: var(--muted); }
.intro h1 strong, .statement h2 strong { color: var(--ink); }
.text-reveal-char { color: var(--muted); }
.text-reveal-mask { position: absolute; z-index: 1; overflow: hidden; pointer-events: none; }
.text-reveal-mask::before, .text-reveal-mask::after { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: var(--paper); content: ''; will-change: transform; }
.text-reveal-mask::before { transform: translateX(0); }
.text-reveal-mask::after { transform: translateX(-101%); }
.text-reveal-mask.is-revealing::before { animation: text-reveal-mask-before var(--text-reveal-duration, .72s) var(--text-reveal-easing, cubic-bezier(.33, 1, .68, 1)) var(--text-reveal-delay, 0ms) 1 both; }
.text-reveal-mask.is-revealing::after { animation: text-reveal-mask-after var(--text-reveal-duration, .72s) var(--text-reveal-easing, cubic-bezier(.33, 1, .68, 1)) var(--text-reveal-delay, 0ms) 1 both; }
@keyframes text-reveal-mask-before { from { transform: translateX(0); } to { transform: translateX(200%); } }
@keyframes text-reveal-mask-after { from { transform: translateX(-101%); } to { transform: translateX(101%); } }

.partner-strip { height: 323.1875px; overflow: hidden; padding: 25.6px 0 89.6px; background: var(--paper); -webkit-mask-image: linear-gradient(to right, transparent 0%, #fff 20% 80%, transparent 100%); mask-image: linear-gradient(to right, transparent 0%, #fff 20% 80%, transparent 100%); }
.partner-strip, .artist-window { cursor: default; touch-action: pan-y; }
.partner-track { display: flex; width: max-content; animation: partner-scroll 42s linear infinite; cursor: default; touch-action: pan-y; user-select: none; will-change: transform; }
.partner-sequence { display: flex; flex: none; gap: 1rem; }
.partner-card { display: grid; flex: none; width: 256px; height: 208px; place-items: center; padding: 40px; border-radius: 12px; background: white; }
.partner-card img { width: 176px; max-width: 100%; height: 118.55px; object-fit: contain; filter: none; pointer-events: none; -webkit-user-drag: none; }
@keyframes partner-scroll { from { transform: translate3d(0, 0, 0); } to { transform: translate3d(-50%, 0, 0); } }

.statement { padding-top: 4rem; padding-bottom: 4rem; }
.statement h2 { color: var(--muted); }
.statement-platform { padding-top: 4rem; }

.art-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; padding: 0 2.5rem; background: var(--paper); }
.art-frame { aspect-ratio: 2 / 3; overflow: hidden; border-radius: 12px; background: #ddd; }
.art-frame video { width: 100%; height: 100%; object-fit: cover; filter: brightness(1.05) grayscale(1); }

.artist-intro { height: 356px; padding: 254px 2.5rem 0; background: var(--paper); }
.artist-intro .section-title { padding: 0; }
.artists { height: 452.28125px; overflow: hidden; padding: 25.6px 0 0; background: var(--paper); }
.section-title { padding: 0 2.5rem 4rem; font: 400 32px/36px Inter, Arial, sans-serif; letter-spacing: -1px; }
.artist-window { overflow: hidden; padding: 0 var(--gutter); }
.artist-track { display: flex; width: max-content; animation: artist-scroll 42s linear infinite; cursor: default; touch-action: pan-y; user-select: none; -webkit-user-select: none; -webkit-user-drag: none; }
.artist-sequence { display: flex; flex: none; gap: 1rem; }
.artist-track * { user-select: none; -webkit-user-select: none; -webkit-user-drag: none; }
.has-pointer .partner-strip, .has-pointer .partner-strip *, .has-pointer .artist-window, .has-pointer .artist-window *, .has-pointer .partner-track, .has-pointer .artist-track { cursor: none; }
.partner-strip.is-marquee-dragging, .artist-window.is-marquee-dragging, .partner-track.is-marquee-dragging, .artist-track.is-marquee-dragging { cursor: default; }
.has-pointer .partner-strip.is-marquee-dragging, .has-pointer .artist-window.is-marquee-dragging, .has-pointer .partner-track.is-marquee-dragging, .has-pointer .artist-track.is-marquee-dragging { cursor: none; }
.partner-track.is-marquee-dragging, .artist-track.is-marquee-dragging { animation: none; }
.artist-card { display: flex; flex-direction: column; width: 256px; gap: 0; font-family: Inter, Arial, sans-serif; }
.artist-card img { width: 256px; height: 256px; aspect-ratio: 1; object-fit: cover; border-radius: 12px; filter: grayscale(1); transition: filter .35s; pointer-events: none; -webkit-user-drag: none; }
.artist-card:hover img { filter: grayscale(0); }
.artist-card span { width: 240px; margin: 16px 0 0 16px; padding-bottom: 3.2px; font-size: 12.8px; font-weight: 700; }
.artist-card small { width: 240px; max-width: 240px; margin-left: 16px; color: var(--ink); font-family: GeistMono, Inconsolata, monospace; font-size: 12px; line-height: 14px; text-transform: uppercase; }
@keyframes artist-scroll { to { transform: translateX(-50%); } }

.team { height: 100vh; margin-top: 8rem; padding: 12rem 2.5rem 0; overflow: hidden; background: var(--paper); }
.team .section-title { margin: 0 0 3.1rem; padding: 0; line-height: 1.2; }
.team-list { position: relative; border-top: 1px solid transparent; }
.team-list::before, .team-link::after { position: absolute; z-index: 1; right: 0; left: 0; height: 1px; background: var(--line); content: ''; pointer-events: none; transform: scaleX(0); transform-origin: left center; }
.team-list::before { top: -1px; }
.team-member { position: relative; }
.team-link { position: relative; display: block; border-bottom: 1px solid transparent; padding: 1rem 0; font-family: GeistMono, Inconsolata, monospace; transition: background-color .3s; }
.team-link::after { bottom: -1px; }
.team.is-lines-revealed .team-list::before, .team.is-lines-revealed .team-link::after { animation: team-line-draw .72s cubic-bezier(.33, 1, .68, 1) 1s 1 both; }
.team.is-lines-revealed .team-member:nth-child(1) .team-link::after { animation-delay: 1.08s; }
.team.is-lines-revealed .team-member:nth-child(2) .team-link::after { animation-delay: 1.16s; }
.team.is-lines-revealed .team-member:nth-child(3) .team-link::after { animation-delay: 1.24s; }
.team.is-lines-revealed .team-member:nth-child(4) .team-link::after { animation-delay: 1.32s; }
.team.is-lines-revealed .team-member:nth-child(5) .team-link::after { animation-delay: 1.4s; }
.team.is-lines-revealed .team-member:nth-child(6) .team-link::after { animation-delay: 1.48s; }
.team.is-lines-revealed .team-member:nth-child(7) .team-link::after { animation-delay: 1.56s; }
@keyframes team-line-draw { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.team-link:hover { background: white; }
.team-details { display: grid; grid-template-columns: .25fr .25fr .75fr .25fr; gap: 1rem; align-items: center; font-size: 14px; line-height: 1.5; }
.team-details span { color: var(--ink); font-size: 14px; text-transform: uppercase; }
.team-details b { color: var(--ink); font-size: 14px; font-weight: 400; }
.team-details small { color: #777; font-size: 14px; text-transform: uppercase; }
.team-details i { display: flex; justify-content: flex-end; color: var(--ink); font-style: normal; }
.team-details svg { width: .8rem; height: 1rem; fill: none; stroke: currentColor; stroke-linecap: square; stroke-linejoin: round; stroke-width: 1.25; transform: rotate(-45deg); }
.team-preview { position: absolute; z-index: 2; top: -15rem; right: 8%; width: 16rem; height: 20rem; overflow: hidden; border-radius: .75rem; opacity: 0; pointer-events: none; transform: scale(.9); transition: opacity .3s ease, transform .35s ease; }
.team-preview img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); }
.team-link:hover .team-preview { opacity: 1; transform: scale(1); }
.team-photo { display: none; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: .75rem; filter: grayscale(1); }

.manifesto-link { height: 50vh; margin: 0 2.5rem 4rem; border-radius: 24px; overflow: hidden; background: var(--ink); }
.manifesto-link a { position: relative; display: grid; height: 100%; min-height: 0; place-content: center; overflow: hidden; color: white; text-align: center; }
.manifesto-link a::before { position: absolute; inset: -4%; background: url('https://cdn.prod.website-files.com/67c08ea22d8c948740e1cae0/69ebbface543146a78b88a0c_explosion_web.avif') center/cover; opacity: .45; content: ''; transform: translate3d(0, var(--parallax-y, 0px), 0); will-change: transform; }
.manifesto-link span, .manifesto-link small { position: relative; z-index: 1; }
.manifesto-link span { font: 32px/35.2px GeistMono, Verdana, sans-serif; letter-spacing: 7px; }
.manifesto-link small { margin-top: .7rem; font: 12px/14px GeistMono, Verdana, sans-serif; }

.site-footer { position: relative; display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 2rem; height: 100vh; min-height: 640px; align-content: start; padding: 2rem 2.5rem 0; overflow: hidden; background: var(--paper); font: 12px/19px GeistMono, Verdana, sans-serif; text-transform: uppercase; }
.footer-mark { width: 4.5rem; height: 5.2rem; align-self: start; }
.footer-column { display: flex; flex-direction: column; gap: .45rem; }
.footer-column strong { font: 700 13px/1.35 Inconsolata, monospace; text-transform: uppercase; }
.footer-column span { color: #777; }
.footer-links a { text-decoration: underline; text-underline-offset: .25rem; }
.footer-links a:hover, .footer-column > a:hover { color: var(--red); }
.closing-line { position: absolute; top: 50%; right: 2.5rem; left: 2.5rem; margin: 0; overflow: hidden; padding: 0; transform: translateY(-50%); text-align: left; white-space: normal; font: 6rem/1.1 Inter, Arial, sans-serif; letter-spacing: -1px; text-transform: none; }
.closing-line .text-reveal-target { color: var(--muted); }
.mobile-break { display: none; }

@media (prefers-reduced-motion: reduce) {
  html, body { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .team.is-lines-revealed .team-list::before, .team.is-lines-revealed .team-link::after { animation-delay: 0ms !important; }
  .hero-background { transform: none; will-change: auto; }
  .manifesto-link a::before { background-position: center; will-change: auto; }
}
@media (max-width: 991px) {
  .site-nav { position: fixed; width: max-content; height: 4rem; }
  .nav-toggle { display: none; }
  .nav-menu { position: static; display: flex; width: max-content; height: 100%; flex-direction: row; align-items: center; padding: 0; border-radius: 0; background: transparent; box-shadow: none; transform: none; }
  .site-nav.is-open { width: max-content; }
  .site-nav .nav-menu a, .site-nav .nav-menu a:first-child, .site-nav .nav-menu a:last-child { display: block; margin: 0; }
  .site-nav .nav-menu a:first-child { margin-left: 16px; }
  .site-nav .nav-menu a:last-child { margin-right: 16px; }
  .team-link { display: flex; gap: 1rem; align-items: flex-start; }
  .team-preview { display: none; }
  .team-photo { display: none; }
  .team-details { flex: 1; }
}
@media (min-width: 768px) and (max-width: 991px) {
  .intro { min-height: 320px; }
  .statement-platform { min-height: 524px; }
}
@media (max-width: 767px) {
  .hero { height: 90vh; min-height: 0; }
  .hero-content { display: flex; height: 100%; min-height: 0; flex-direction: column; align-items: stretch; justify-content: center; gap: 1.5rem; padding: 0 1rem; transform: none; }
  .hero-logo { width: min(88%, 22rem); margin: 0 auto; transform: none; }
  .hero-tagline { align-self: center; width: min(88%, 22rem); max-width: 100%; font-size: 12px; line-height: 16px; letter-spacing: .7px; white-space: normal; transform: none; }
  .hero-bottom { display: none; }
  .intro, .statement { padding: 3rem 1rem; }
  .intro h1, .statement h2 { width: 100%; font-size: clamp(1.65rem, 7.8vw, 2rem); line-height: 1.12; letter-spacing: -.06em; }
  .partner-strip { height: 250px; padding: 1.5rem 0 3.5rem; }
  .partner-card { width: 208px; height: 169px; padding: 1.75rem; }
  .partner-card img { width: 142px; height: 96px; }
  .art-grid { grid-template-columns: 1fr; gap: 1rem; padding: 0 1rem; }
  .artist-intro { height: auto; min-height: 220px; padding: 8rem 1rem 2rem; }
  .artist-intro .section-title { padding: 0; }
  .section-title { padding: 0 1rem 3rem; font-size: clamp(1.65rem, 7.8vw, 2rem); line-height: 1.12; letter-spacing: -.06em; }
  .artists { height: 384px; padding-top: 1.5rem; }
  .artist-track { gap: .75rem; }
  .artist-card { width: 208px; }
  .artist-card img { width: 208px; height: 208px; }
  .artist-card span { width: 192px; margin: .75rem 0 0 .75rem; font-size: 12px; }
  .artist-card small { width: 192px; max-width: 192px; margin-left: .75rem; font-size: 11px; line-height: 13px; }
  .team { height: auto; min-height: 0; margin-top: 4rem; padding: 7rem 1rem 4rem; }
  .team .section-title { margin-bottom: 2rem; padding: 0; }
  .team-link { display: flex; gap: .75rem; align-items: flex-start; }
  .team-details { grid-template-columns: minmax(0, 1fr) 2.75rem 1.25rem; gap: .35rem .5rem; min-width: 0; min-height: 0; }
  .team-details span { grid-column: 1 / 3; min-width: 0; }
  .team-details b { grid-column: 1; }
  .team-details small { grid-column: 1 / 3; min-width: 0; overflow-wrap: anywhere; }
  .team-details i { grid-column: 3; grid-row: 1 / 4; }
  .team-details span, .team-details b, .team-details small { font-size: 12px; line-height: 1.35; }
  .manifesto-link { height: 512px; min-height: 0; margin: 0 1rem 3rem; border-radius: 24px; }
  .manifesto-link span { max-width: calc(100% - 2rem); justify-self: center; font: 32px/35.2px GeistMono, Verdana, sans-serif; letter-spacing: 7px; overflow-wrap: anywhere; }
  .manifesto-link small { margin-top: .7rem; font: 12px/16.8px Inter, Arial, sans-serif; }
  .site-footer { display: flex; height: auto; min-height: 0; flex-direction: column; gap: 0; padding: 6.4375rem 1rem 8.21875rem; font: 14px/19px GeistMono, Verdana, sans-serif; }
  .footer-column { gap: 1.2vw; }
  .footer-mark { width: 88px; height: 106.52px; margin: 0 0 2.5rem; order: 2; object-fit: contain; object-position: top left; }
  .footer-address { order: 3; gap: 2.25rem; }
  .footer-links { order: 4; gap: 2.25rem; margin-top: 3rem; }
  .footer-legal { order: 5; gap: 3rem; margin-top: 2.25rem; }
  .footer-column strong { font-size: 14px; line-height: 14px; }
  .footer-links a, .footer-legal a { font-size: 14px; line-height: 14px; }
  .footer-legal span { font-size: 12px; line-height: 19px; }
  .closing-line { position: static; width: calc(100% + 3rem); max-width: 390px; order: 1; margin: 0 0 10.5rem; transform: none; font-size: clamp(52px, 16.4103vw, 64px); line-height: 1.125; letter-spacing: -1px; text-transform: none; overflow-wrap: anywhere; }
  .mobile-break { display: inline; }
}
@media (max-width: 480px) {
  :root { --gutter: 1.25rem; }
  .site-nav { bottom: 2rem; gap: 1.1rem; }
  .hero-content { padding-top: 0; }
  .hero-button { width: 163.58px; height: 67.66px; flex: 0 0 auto; justify-content: center; padding: 23px 38.4px; border-radius: 450px; font: 14px/19.6px Inconsolata, monospace; }
  .statement-platform { min-height: 0; }
  .artist-intro { padding-top: 7rem; }
  .team-link { flex-direction: column; }
}
@media (max-width: 380px) {
  .statement-platform { min-height: 0; }
}
