@charset "UTF-8";

:root {
  --black: #050505;
  --ink: #101010;
  --white: #fff;
  --paper: #fff;
  --muted: #9b9b9b;
  --line: rgba(255, 255, 255, .18);
  --dark-line: rgba(0, 0, 0, .16);
  --pink: #ff0084;
  --blue: #0000ff;
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --pad: clamp(24px, 5vw, 82px);
  --scroll: 0;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body.splash-active, body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
a { color: var(--blue); text-underline-offset: .2em; }
a:hover { text-decoration-thickness: 2px; }
::selection { background: var(--pink); color: var(--white); }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 9999; padding: 12px 16px; background: var(--white); color: var(--blue); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

/* Splash */
.splash { position: fixed; inset: 0; z-index: 10000; display: grid; place-items: center; background: #000; color: #fff; transition: transform .85s cubic-bezier(.76, 0, .24, 1), visibility .85s; }
.splash.is-leaving { transform: translateY(-100%); }
.splash.is-gone { display: none; }
.splash-noise { position: absolute; inset: 0; opacity: .2; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 42px 42px; mask-image: radial-gradient(circle, #000, transparent 72%); }
.splash-mark { position: relative; text-align: center; animation: splash-in .8s .15s both; }
.splash-mark img { width: clamp(130px, 18vw, 260px); margin: 0 auto; filter: drop-shadow(0 0 50px rgba(255,0,132,.25)); }
.splash-mark p { margin: 18px 0 0; font-size: 12px; font-weight: 800; letter-spacing: .34em; text-transform: uppercase; }
.splash-meter { position: absolute; left: 5vw; right: 5vw; bottom: 70px; height: 1px; background: rgba(255,255,255,.2); overflow: hidden; }
.splash-meter i { display: block; width: 100%; height: 100%; background: var(--pink); transform-origin: left; animation: meter 2.35s .2s cubic-bezier(.4,0,.1,1) both; }
.splash-skip { position: absolute; right: 5vw; bottom: 87px; border: 0; padding: 0; background: transparent; color: white; cursor: pointer; font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.splash-skip span { color: var(--pink); margin-left: 8px; }
@keyframes splash-in { from { opacity: 0; transform: scale(.82); } to { opacity: 1; transform: scale(1); } }
@keyframes meter { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* Header */
.page-shell { min-height: 100vh; }
.site-header { position: fixed; z-index: 900; top: 20px; left: var(--pad); right: var(--pad); height: 68px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; padding: 9px 12px 9px 20px; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; background: rgba(8,8,8,.84); color: white; backdrop-filter: blur(18px); box-shadow: 0 12px 50px rgba(0,0,0,.18); transition: top .3s, background .3s, box-shadow .3s; }
.site-header.scrolled { top: 10px; background: rgba(5,5,5,.95); box-shadow: 0 15px 55px rgba(0,0,0,.32); }
.site-brand { display: flex; align-items: center; gap: 10px; min-width: max-content; color: white; text-decoration: none; font-size: 19px; font-weight: 900; letter-spacing: -.05em; }
.site-brand > img { width: 34px; height: 34px; object-fit: contain; }
.site-brand > span > span { color: var(--pink); }
.site-nav { display: flex; justify-content: center; align-items: center; gap: clamp(16px, 2.1vw, 34px); }
.site-nav > a, .nav-dropdown > summary { position: relative; padding: 10px 0; border: 0; color: rgba(255,255,255,.72); text-decoration: none; cursor: pointer; list-style: none; font-size: 11px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; transition: color .2s; }
.nav-dropdown > summary::-webkit-details-marker { display: none; }
.nav-dropdown > summary::after { content: "+"; display: inline-block; margin-left: 6px; color: var(--pink); }
.nav-dropdown[open] > summary::after { content: "−"; }
.site-nav > a::before { content: ""; position: absolute; left: 0; right: 100%; bottom: 4px; height: 2px; background: var(--blue); transition: right .25s; }
.site-nav > a:hover, .site-nav > a.active, .nav-dropdown > summary:hover { color: white; }
.site-nav > a:hover::before, .site-nav > a.active::before { right: 0; }
.nav-dropdown { position: relative; }
.nav-dropdown-menu { position: absolute; top: calc(100% + 10px); left: 50%; width: 190px; padding: 10px; border: 1px solid rgba(255,255,255,.15); background: #0a0a0a; transform: translateX(-50%); box-shadow: 0 20px 50px rgba(0,0,0,.45); }
.nav-dropdown-menu a { display: flex; justify-content: space-between; padding: 13px 12px; color: white; font-size: 12px; font-weight: 700; text-decoration: none; }
.nav-dropdown-menu a::after { content: "↗"; color: var(--pink); }
.nav-dropdown-menu a:hover { background: var(--blue); }
.header-apply { display: inline-flex; align-items: center; gap: 18px; min-width: max-content; padding: 14px 18px; border-radius: 999px; background: white; color: black; text-decoration: none; font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; transition: background .2s, color .2s, transform .2s; }
.header-apply b { color: var(--pink); font-size: 16px; }
.header-apply:hover { background: var(--pink); color: white; transform: translateY(-1px); }
.header-apply:hover b { color: white; }
.menu-toggle { display: none; }

/* Home hero */
.home-hero { position: relative; min-height: 900px; height: 100svh; overflow: hidden; background: #050505; color: white; }
.hero-grid { position: absolute; inset: 0; opacity: .22; background-image: linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px); background-size: clamp(55px, 6vw, 110px) clamp(55px, 6vw, 110px); mask-image: linear-gradient(90deg, black, transparent 78%); }
.hero-orbit { position: absolute; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; pointer-events: none; }
.orbit-one { width: 70vw; aspect-ratio: 1; left: -23vw; bottom: -44vw; box-shadow: 0 0 0 6vw rgba(255,255,255,.018), 0 0 0 12vw rgba(255,255,255,.014), 0 0 0 18vw rgba(255,255,255,.01); }
.orbit-two { width: 44vw; aspect-ratio: 1; right: -26vw; top: -15vw; border-color: rgba(255,0,132,.35); box-shadow: 0 0 0 4vw rgba(255,0,132,.018), 0 0 0 8vw rgba(255,0,132,.012); }
.hero-copy { position: absolute; z-index: 3; left: var(--pad); top: 51%; width: min(690px, 49vw); transform: translateY(-45%); }
.overline { display: flex; align-items: center; gap: 12px; margin: 0 0 25px; font-size: 11px; font-weight: 900; letter-spacing: .2em; text-transform: uppercase; }
.overline > span { width: 26px; height: 2px; background: var(--pink); }
.overline.dark { color: #444; }
.home-hero h1, .worlds-heading h2, .support-heading h2, .founders-copy h2, .final-cta h2, .manifesto h2 { margin: 0; font-family: var(--display); font-weight: 900; letter-spacing: -.015em; line-height: 1.02; text-wrap: balance; text-transform: uppercase; }
.home-hero h1 { font-size: clamp(6.4rem, 12vw, 13rem); }
.home-hero h1 em { color: var(--pink); font-style: normal; -webkit-text-stroke: 1px var(--pink); }
.hero-lede { width: min(540px, 92%); margin: 34px 0 0; color: #bcbcbc; font-size: clamp(16px, 1.35vw, 21px); line-height: 1.55; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 26px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 30px; min-height: 56px; padding: 0 24px; border: 0; color: inherit; text-decoration: none; cursor: pointer; font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; transition: transform .2s, background .2s, color .2s; }
.button:hover { transform: translateY(-3px); }
.button-pink { background: var(--pink); color: white; }
.button-pink:hover { background: var(--blue); }
.button-white { background: white; color: black; }
.button-white:hover { background: var(--pink); color: white; }
.button-black { background: black; color: white; }
.button-black:hover { background: var(--blue); }
.arrow-link { display: inline-flex; align-items: center; gap: 18px; color: var(--blue); font-size: 12px; font-weight: 900; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; }
.home-hero .arrow-link { color: white; }
.arrow-link span { color: var(--pink); font-size: 18px; transition: transform .2s; }
.arrow-link:hover span { transform: translateX(5px); }
.dark-link { color: var(--blue); }
.hero-portrait { --mx: 0px; --my: 0px; position: absolute; z-index: 2; right: 7vw; bottom: 0; width: min(49vw, 820px); height: 83%; transition: transform .15s linear; transform: translate(var(--mx), var(--my)); }
.portrait-frame { position: absolute; inset: 0; overflow: hidden; clip-path: polygon(12% 4%, 100% 0, 92% 100%, 0 100%); }
.portrait-frame::before { content: ""; position: absolute; z-index: 2; inset: 0; background: linear-gradient(90deg, #050505 0, transparent 30%), linear-gradient(0deg, #050505 0, transparent 25%); pointer-events: none; }
.portrait-frame::after { content: ""; position: absolute; z-index: 2; inset: 0; background: var(--pink); mix-blend-mode: color; opacity: .12; pointer-events: none; }
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 53% center; filter: contrast(1.08) saturate(.75); }
.portrait-caption { position: absolute; z-index: 4; right: 7%; bottom: 6%; display: flex; align-items: flex-start; gap: 12px; width: 250px; margin: 0; font-size: 11px; line-height: 1.45; letter-spacing: .08em; text-transform: uppercase; }
.portrait-caption span { color: var(--pink); font-weight: 900; }
.hero-stamp { position: absolute; z-index: 5; top: 148px; right: var(--pad); display: flex; flex-direction: column; align-items: flex-end; gap: 3px; color: white; font-size: 9px; font-weight: 800; letter-spacing: .23em; text-transform: uppercase; transform: rotate(90deg) translateX(100%); transform-origin: top right; }
.hero-stamp strong { color: var(--pink); font-size: 12px; }
.hero-index { position: absolute; z-index: 4; left: var(--pad); bottom: 34px; color: white; font-size: 11px; font-weight: 900; letter-spacing: .18em; }
.hero-index span { color: var(--pink); }

.ticker { overflow: hidden; background: var(--pink); color: white; }
.ticker > div { display: flex; align-items: center; width: max-content; padding: 16px 0; animation: ticker 22s linear infinite; }
.ticker span { padding: 0 2.7vw; font-family: var(--display); font-size: clamp(24px, 3vw, 47px); letter-spacing: .01em; text-transform: uppercase; }
.ticker i { color: black; font-style: normal; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* Home sections */
.section-pad { padding: clamp(85px, 11vw, 180px) var(--pad); }
.section-label { display: flex; align-items: center; gap: 14px; font-size: 10px; font-weight: 900; letter-spacing: .19em; text-transform: uppercase; }
.section-label span { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid currentColor; border-radius: 50%; }
.section-label p { margin: 0; }
.section-label.light { color: white; }
.manifesto { display: grid; grid-template-columns: 1fr 3fr; gap: 5vw; background: var(--paper); }
.manifesto-copy { max-width: 1260px; }
.manifesto h2 { font-size: clamp(4.2rem, 8.3vw, 10rem); }
.manifesto h2 em, .support-heading h2 em, .final-cta h2 em { color: var(--pink); font-style: normal; }
.manifesto-bottom { display: grid; grid-template-columns: minmax(240px, 530px) auto; align-items: end; gap: 40px; margin-top: 50px; }
.manifesto-bottom > p { margin: 0; font-size: clamp(17px, 1.4vw, 22px); line-height: 1.55; }
.manifesto-bottom .arrow-link { justify-self: end; }
.creator-worlds { background: var(--black); color: white; }
.worlds-heading { display: grid; grid-template-columns: 1fr 3fr; gap: 5vw; padding-bottom: 80px; }
.worlds-heading h2 { font-size: clamp(5.3rem, 10.5vw, 12rem); }
.worlds-heading h2 em { color: transparent; font-style: normal; -webkit-text-stroke: 2px var(--pink); }
.world-list { border-top: 1px solid var(--line); }
.world-card { position: relative; display: grid; grid-template-columns: 90px 100px 1fr 70px; align-items: center; gap: 30px; min-height: 230px; padding: 44px var(--pad); border-bottom: 1px solid var(--line); color: white; text-decoration: none; overflow: hidden; transition: color .35s; }
.world-card::before { content: ""; position: absolute; inset: 0; background: var(--paper); transform: scaleY(0); transform-origin: bottom; transition: transform .42s cubic-bezier(.16,1,.3,1); }
.world-card:hover::before { transform: scaleY(1); }
.world-card:hover { color: black; }
.world-card > * { position: relative; z-index: 1; }
.world-number { color: var(--pink); font-size: 11px; font-weight: 900; }
.world-icon { display: grid; place-items: center; width: 72px; height: 72px; border: 1px solid currentColor; border-radius: 50%; color: var(--pink); font-size: 30px; }
.world-card h3 { margin: 0 0 12px; font-family: var(--display); font-size: clamp(3rem, 5vw, 6.7rem); letter-spacing: -.01em; line-height: 1; text-transform: uppercase; }
.world-card p { max-width: 620px; margin: 0; color: #9f9f9f; font-size: 15px; line-height: 1.6; }
.world-card:hover p { color: #444; }
.world-card > b { justify-self: end; color: var(--pink); font-size: 32px; }
.support-system { display: grid; grid-template-columns: 1fr 3fr; gap: 5vw; background: var(--paper); }
.support-heading h2 { font-size: clamp(4.7rem, 9vw, 10rem); }
.support-grid { grid-column: 2; display: grid; grid-template-columns: repeat(2, 1fr); margin-top: 70px; border-top: 1px solid var(--dark-line); border-left: 1px solid var(--dark-line); }
.support-card { position: relative; min-height: 410px; display: flex; flex-direction: column; padding: 34px; border-right: 1px solid var(--dark-line); border-bottom: 1px solid var(--dark-line); overflow: hidden; }
.support-card > span { position: relative; z-index: 1; font-size: 10px; font-weight: 900; letter-spacing: .18em; }
.support-card h3 { position: relative; z-index: 1; margin: auto 0 14px; font-family: var(--display); font-size: clamp(2.4rem, 3.6vw, 4.8rem); letter-spacing: -.01em; line-height: 1.03; text-wrap: balance; text-transform: uppercase; }
.support-card p { position: relative; z-index: 1; max-width: 500px; margin: 0; color: #5e5e5e; font-size: 13px; line-height: 1.6; }
.card-pulse { position: absolute; top: 38%; left: 15%; right: 15%; height: 2px; background: var(--blue); transform: skewY(-18deg); box-shadow: 30px -20px 0 var(--pink), 60px 15px 0 black; }
.card-pulse.double { transform: skewY(16deg); box-shadow: 30px 15px 0 black, 60px -10px 0 var(--pink), 90px 20px 0 var(--blue); }
.card-pulse.sharp { height: 4px; transform: rotate(-28deg); box-shadow: 35px 20px 0 black, 70px -8px 0 var(--pink); }
.accent-card { background: var(--pink); color: white; }
.accent-card > strong { position: relative; z-index: 1; display: block; margin: 42px 0 30px; font-family: var(--display); font-size: clamp(5rem, 8vw, 8.5rem); letter-spacing: -.01em; line-height: 1; }
.accent-card p { color: white; }
.founders-feature { display: grid; grid-template-columns: 1.1fr .9fr; min-height: 850px; background: black; color: white; }
.founders-photo { position: relative; overflow: hidden; }
.founders-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 55%, black 100%), linear-gradient(0deg, black 0, transparent 25%); }
.founders-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: grayscale(1) contrast(1.12); }
.founders-copy { display: flex; flex-direction: column; justify-content: center; padding: 100px var(--pad) 100px 7vw; }
.founders-copy .section-label { margin-bottom: 80px; }
.founders-copy h2 { font-size: clamp(4.2rem, 7vw, 8.2rem); }
.founders-copy h2 em { color: var(--pink); font-style: normal; }
.founders-copy > p:not(.overline) { max-width: 600px; margin: 36px 0 0; color: #aaa; font-size: 17px; line-height: 1.7; }
.founder-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin: 42px 0; padding: 30px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.founder-stats div { display: flex; align-items: flex-end; gap: 12px; }
.founder-stats strong { color: var(--pink); font-family: var(--display); font-size: 58px; line-height: .8; }
.founder-stats span { padding-bottom: 4px; color: #999; font-size: 10px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.founders-copy .button { align-self: flex-start; }
.final-cta { position: relative; overflow: hidden; background: white; }
.final-cta::after { content: "NP"; position: absolute; right: -2vw; bottom: -8vw; color: transparent; font-family: var(--display); font-size: 34vw; line-height: .8; -webkit-text-stroke: 1px rgba(0,0,0,.08); pointer-events: none; }
.final-cta > * { position: relative; z-index: 1; }
.final-cta h2 { max-width: 1320px; font-size: clamp(5rem, 10.5vw, 12rem); }
.final-cta-actions { display: flex; align-items: center; gap: 34px; margin-top: 50px; }

/* Footer */
.site-footer { padding: 80px var(--pad) 25px; background: var(--black); color: white; }
.footer-top { display: flex; align-items: flex-end; justify-content: space-between; padding-bottom: 52px; border-bottom: 1px solid var(--line); }
.footer-brand { display: flex; align-items: center; gap: 16px; color: white; text-decoration: none; font-size: clamp(34px, 4.5vw, 70px); font-weight: 900; letter-spacing: -.07em; }
.footer-brand img { width: clamp(60px, 7vw, 110px); }
.footer-brand > span > span { color: var(--pink); }
.footer-top > p { margin: 0; text-align: right; color: #aaa; font-size: 11px; font-weight: 900; letter-spacing: .18em; line-height: 1.6; text-transform: uppercase; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 30px; padding: 65px 0; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 13px; }
.footer-column h3 { margin: 0 0 15px; color: #777; font-size: 10px; letter-spacing: .18em; text-transform: uppercase; }
.footer-column a { color: white; font-size: 14px; text-decoration: none; }
.footer-column a:hover { color: var(--pink); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 24px; border-top: 1px solid var(--line); color: #777; font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.footer-bottom a { color: var(--blue); text-decoration: none; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s cubic-bezier(.16,1,.3,1); }
.reveal.show { opacity: 1; transform: none; }

/* Shared inner pages */
.inner-page { background: var(--paper); }
.page-hero { position: relative; min-height: 720px; display: flex; align-items: flex-end; overflow: hidden; padding: 190px var(--pad) 90px; background: var(--black); color: white; }
.page-hero::before { content: ""; position: absolute; inset: 0; opacity: .34; background-image: linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px); background-size: 82px 82px; mask-image: radial-gradient(circle at 70% 30%, black, transparent 70%); }
.page-hero::after { content: attr(data-word); position: absolute; right: -1vw; bottom: -3vw; color: transparent; font-family: var(--display); font-size: clamp(12rem, 25vw, 30rem); line-height: .75; -webkit-text-stroke: 1px rgba(255,255,255,.08); text-transform: uppercase; }
.page-hero-content { position: relative; z-index: 1; width: min(1100px, 100%); }
.eyebrow { margin: 0 0 25px; font-size: 10px; font-weight: 900; letter-spacing: .22em; text-transform: uppercase; }
.eyebrow::before { content: ""; display: inline-block; width: 25px; height: 2px; margin-right: 12px; vertical-align: middle; background: var(--pink); }
.eyebrow.dark { color: #444; }
.page-hero h1, .content-heading h2, .legal-title, .category-statement h2 { margin: 0; font-family: var(--display); font-weight: 900; letter-spacing: -.01em; line-height: 1.02; text-wrap: balance; text-transform: uppercase; }
.page-hero h1 { font-size: clamp(6rem, 12vw, 13rem); }
.page-hero h1 em, .content-heading h2 em, .category-statement h2 em { color: var(--pink); font-style: normal; }
.page-hero .lead { max-width: 680px; margin: 30px 0 0; color: #aaa; font-size: clamp(17px, 1.5vw, 22px); line-height: 1.55; }
.content-section { padding: clamp(85px, 10vw, 160px) var(--pad); background: var(--paper); }
.content-section.dark { background: var(--black); color: white; }
.content-grid { display: grid; grid-template-columns: minmax(280px, .85fr) minmax(360px, 1.25fr); gap: clamp(50px, 10vw, 180px); }
.content-heading h2 { font-size: clamp(4rem, 7vw, 8rem); }
.content-copy { font-size: clamp(17px, 1.35vw, 21px); line-height: 1.75; }
.content-copy > p:first-child { margin-top: 0; }
.content-copy a { color: var(--blue); }
.dark .content-copy { color: #aaa; }
.value-list { margin-top: 40px; border-top: 1px solid var(--dark-line); }
.dark .value-list { border-color: var(--line); }
.value-list > div { display: flex; align-items: flex-start; gap: 22px; padding: 24px 0; border-bottom: 1px solid var(--dark-line); }
.dark .value-list > div { border-color: var(--line); }
.value-list b { min-width: 30px; color: var(--pink); font-size: 10px; letter-spacing: .12em; }
.value-list strong { font-size: 14px; letter-spacing: .03em; }
.value-list span { font-size: 15px; line-height: 1.55; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 70px; background: var(--dark-line); border: 1px solid var(--dark-line); }
.person-card { position: relative; min-height: 470px; overflow: hidden; background: #111; color: white; text-decoration: none; }
.person-card img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.08); transition: transform .6s, filter .35s; }
.person-card::after { content: ""; position: absolute; inset: 35% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.93)); }
.person-card:hover img { transform: scale(1.035); filter: grayscale(0); }
.person-card-info { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 22px; }
.person-card-info h3 { margin: 0; font-family: var(--display); font-size: 38px; letter-spacing: -.02em; text-transform: uppercase; }
.person-card-info p { margin: 5px 0 0; color: #aaa; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }

/* Creator categories */
.category-tabs { position: sticky; z-index: 50; top: 98px; display: flex; justify-content: center; gap: 5px; padding: 12px; background: rgba(255,255,255,.92); backdrop-filter: blur(14px); border-bottom: 1px solid var(--dark-line); }
.category-tabs a { padding: 13px 22px; border: 1px solid var(--dark-line); color: var(--blue); text-decoration: none; font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.category-tabs a:hover, .category-tabs a.current { background: var(--blue); color: white; }
.creator-category { min-height: 720px; display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--dark-line); scroll-margin-top: 160px; }
.category-statement { display: flex; flex-direction: column; justify-content: center; padding: 90px var(--pad); }
.category-statement > span { color: var(--pink); font-size: 10px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.category-statement h2 { margin-top: 30px; font-size: clamp(4.5rem, 7.5vw, 9rem); }
.category-statement p { max-width: 560px; color: #555; font-size: 17px; line-height: 1.7; }
.category-statement .arrow-link { margin-top: 25px; align-self: flex-start; }
.category-visual { position: relative; display: grid; place-items: center; overflow: hidden; background: #080808; color: white; }
.category-visual::before, .category-visual::after { content: ""; position: absolute; width: 70%; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; }
.category-visual::after { width: 44%; border-color: var(--pink); }
.category-word { position: relative; z-index: 1; font-family: var(--display); font-size: clamp(6rem, 13vw, 15rem); line-height: .8; text-transform: uppercase; transform: rotate(-8deg); }
.creator-category:nth-of-type(even) .category-visual { background: var(--pink); }
.creator-category:nth-of-type(even) .category-visual::after { border-color: var(--blue); }
.creator-category:nth-of-type(even) .category-word { color: black; }

/* Forms */
.contact-grid, .application-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px, 8vw, 130px); }
.contact-cards { margin-top: 45px; border-top: 1px solid var(--dark-line); }
.contact-card { display: grid; grid-template-columns: 48px 1fr auto; align-items: center; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--dark-line); color: var(--ink); text-decoration: none; }
.contact-card:hover { color: var(--blue); }
.contact-card-icon { display: grid; place-items: center; width: 42px; height: 42px; background: black; color: white; }
.contact-card h3 { margin: 0; font-size: 13px; text-transform: uppercase; }
.contact-card p { margin: 4px 0 0; color: #666; font-size: 13px; }
.contact-card > span:last-child { color: var(--pink); font-size: 20px; }
.form-card { padding: clamp(30px, 4vw, 58px); background: var(--black); color: white; }
.form-card .content-heading h2 { font-size: clamp(3rem, 5vw, 5.8rem); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { display: flex; flex-direction: column; gap: 9px; }
.field.full { grid-column: 1 / -1; }
.field label { color: #aaa; font-size: 9px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.field input, .field select, .field textarea { width: 100%; border: 0; border-bottom: 1px solid #555; border-radius: 0; padding: 13px 0; outline: 0; background: transparent; color: white; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--pink); }
.field select option { background: black; color: white; }
.field textarea { min-height: 130px; resize: vertical; }
.form-note { margin: 20px 0 0; color: #777; font-size: 10px; line-height: 1.5; }

/* Policies */
.policy-layout { display: grid; grid-template-columns: minmax(220px, 330px) minmax(0, 850px); justify-content: space-between; gap: 8vw; }
.policy-nav { position: sticky; top: 120px; align-self: start; padding: 28px; border: 1px solid var(--dark-line); }
.policy-nav h2 { margin: 0 0 20px; font-size: 10px; letter-spacing: .18em; text-transform: uppercase; }
.policy-nav a { display: block; padding: 10px 0; border-bottom: 1px solid var(--dark-line); color: var(--blue); font-size: 12px; text-decoration: none; }
.policy-article section { padding: 0 0 60px; margin-bottom: 60px; border-bottom: 1px solid var(--dark-line); scroll-margin-top: 130px; }
.policy-article h2 { margin: 0 0 28px; font-family: var(--display); font-size: clamp(3rem, 5vw, 5.5rem); letter-spacing: -.01em; line-height: 1.04; text-wrap: balance; text-transform: uppercase; }
.policy-article h3 { margin: 30px 0 12px; font-size: 14px; text-transform: uppercase; }
.policy-article p, .policy-article li { color: #444; font-size: 16px; line-height: 1.75; }
.policy-article ul, .policy-article ol { padding-left: 22px; }
.policy-article a { color: var(--blue); }
.policy-notice { padding: 24px; border-left: 4px solid var(--pink); background: white; }

/* Compatibility for retained secondary pages */
.container { width: min(1180px, calc(100% - 2 * var(--pad))); margin-inline: auto; }
.nav { position: relative; z-index: 10; background: var(--black); color: white; }
.navin { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: flex; align-items: center; gap: 10px; color: white; font-weight: 900; text-decoration: none; }
.brand-logo { width: 42px; }
.links { display: flex; align-items: center; gap: 22px; }
.links a { color: white; font-size: 12px; text-decoration: none; }
.btn { display: inline-flex; padding: 13px 18px; border: 1px solid currentColor; background: transparent; color: inherit; text-decoration: none; cursor: pointer; }
.btn.primary { border-color: var(--pink); background: var(--pink); color: white; }
.menu { display: none; }
.pagehero, .hero { padding: 160px 0 100px; background: var(--black); color: white; }
.pagehero h1, .hero h1 { margin: 10px 0 22px; font-family: var(--display); font-size: clamp(4rem, 9vw, 9rem); letter-spacing: -.01em; line-height: 1.02; text-wrap: balance; text-transform: uppercase; }
.gradient { color: var(--pink); }
.lead, .lede { max-width: 760px; font-size: 19px; line-height: 1.65; }
.section, .content { padding: 80px 0; }
.section.alt { background: white; }
.grid { display: grid; gap: 20px; }
.g3 { grid-template-columns: repeat(3, 1fr); }
.card { padding: 30px; border: 1px solid var(--dark-line); background: white; }
.card a { color: var(--blue); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.check > div { padding: 14px 0; border-bottom: 1px solid var(--dark-line); }
.actions { display: flex; gap: 12px; margin-top: 30px; }
.footer { padding: 60px 0 25px; background: var(--black); color: white; }
.footergrid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 35px; }
.footergrid > div { display: flex; flex-direction: column; gap: 10px; }
.footergrid a { color: white; }
.small { color: #888; font-size: 12px; line-height: 1.6; }
.person { position: relative; overflow: hidden; background: #111; color: white; text-decoration: none; }
.person img { width: 100%; aspect-ratio: .8; object-fit: cover; }
.person-info { padding: 18px; }
.person-info h3 { margin: 0; }
.team-grid.container { width: min(1180px, calc(100% - 2 * var(--pad))); }

@media (max-width: 1180px) {
  .site-header { grid-template-columns: auto auto 1fr auto; }
  .menu-toggle { grid-column: 2; display: inline-flex; align-items: center; gap: 10px; border: 0; background: transparent; color: white; cursor: pointer; font-size: 10px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
  .menu-toggle i, .menu-toggle i::before { display: block; width: 18px; height: 1px; background: var(--pink); transition: transform .25s; }
  .menu-toggle i::before { content: ""; transform: translateY(5px); }
  .menu-toggle[aria-expanded="true"] i { transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] i::before { transform: rotate(-90deg); }
  .site-nav { position: fixed; z-index: 899; inset: 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 4px; padding: 110px var(--pad) 60px; background: rgba(5,5,5,.985); visibility: hidden; opacity: 0; transform: translateY(-15px); transition: opacity .3s, transform .3s, visibility .3s; }
  .site-nav.open { visibility: visible; opacity: 1; transform: none; }
  .site-nav > a, .nav-dropdown > summary { font-family: var(--display); font-size: clamp(3.5rem, 8vw, 7rem); letter-spacing: 0; line-height: 1; }
  .nav-dropdown-menu { top: 0; left: calc(100% + 20px); transform: none; }
  .header-apply { grid-column: 4; }
  .hero-copy { width: 55vw; }
  .hero-portrait { right: -8vw; width: 60vw; opacity: .88; }
  .support-system, .manifesto, .worlds-heading { grid-template-columns: 180px 1fr; }
  .support-grid { grid-column: 2; }
}

@media (max-width: 860px) {
  :root { --pad: 22px; }
  .site-header { top: 10px; left: 12px; right: 12px; height: 58px; padding: 7px 9px 7px 13px; gap: 10px; }
  .site-brand > img { width: 30px; height: 30px; }
  .site-brand > span { display: none; }
  .header-apply { padding: 11px 14px; }
  .header-apply span { display: none; }
  .menu-toggle { justify-self: start; }
  .site-nav > a, .nav-dropdown > summary { font-size: clamp(3.2rem, 15vw, 6rem); }
  .nav-dropdown-menu { position: static; width: auto; padding: 0 0 10px 20px; border: 0; transform: none; box-shadow: none; }
  .nav-dropdown-menu a { padding: 8px 0; }
  .home-hero { min-height: 780px; height: 100svh; }
  .hero-copy { top: 25%; width: calc(100% - 44px); transform: none; }
  .home-hero h1 { font-size: clamp(5.4rem, 22vw, 9rem); }
  .hero-lede { font-size: 15px; }
  .hero-portrait { right: -24%; width: 125%; height: 55%; opacity: .72; }
  .portrait-frame::before { background: linear-gradient(0deg, #050505 0, transparent 30%), linear-gradient(180deg, #050505 0, transparent 20%); }
  .portrait-caption, .hero-stamp { display: none; }
  .hero-index { bottom: 18px; }
  .manifesto, .worlds-heading, .support-system { display: block; }
  .manifesto .section-label, .worlds-heading .section-label, .support-system > .section-label { margin-bottom: 60px; }
  .manifesto-bottom { grid-template-columns: 1fr; }
  .manifesto-bottom .arrow-link { justify-self: start; }
  .world-card { grid-template-columns: 45px 1fr 35px; gap: 15px; min-height: 190px; }
  .world-card .world-icon { display: none; }
  .world-card p { font-size: 13px; }
  .support-grid { grid-template-columns: 1fr; margin-top: 50px; }
  .support-card { min-height: 300px; }
  .founders-feature { grid-template-columns: 1fr; }
  .founders-photo { min-height: 520px; }
  .founders-photo::after { background: linear-gradient(0deg, black 0, transparent 35%); }
  .founders-copy { padding: 70px var(--pad) 90px; }
  .founders-copy .section-label { margin-bottom: 55px; }
  .final-cta-actions { align-items: flex-start; flex-direction: column; }
  .footer-top { align-items: flex-start; flex-direction: column; gap: 25px; }
  .footer-top > p { text-align: left; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; }
  .page-hero { min-height: 610px; padding-top: 145px; }
  .page-hero h1 { font-size: clamp(5rem, 21vw, 8.5rem); }
  .content-grid, .contact-grid, .application-grid, .policy-layout { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .person-card { min-height: 400px; }
  .creator-category { grid-template-columns: 1fr; }
  .category-statement { min-height: 560px; }
  .category-visual { min-height: 430px; }
  .policy-nav { position: static; }
  .category-tabs { top: 76px; justify-content: flex-start; overflow-x: auto; }
  .split, .g3, .footergrid { grid-template-columns: 1fr; }
  .links { display: none; }
  .links.open { display: flex; position: absolute; inset: 80px 0 auto; flex-direction: column; align-items: flex-start; padding: 30px var(--pad); background: black; }
  .nav .menu { display: inline-flex; }
}

@media (max-width: 520px) {
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .home-hero h1 { font-size: 5.5rem; }
  .manifesto h2, .worlds-heading h2, .support-heading h2, .founders-copy h2, .final-cta h2 { font-size: 4rem; }
  .world-card { grid-template-columns: 30px 1fr 24px; padding-block: 35px; }
  .world-card h3 { font-size: 3.1rem; }
  .world-card > b { font-size: 22px; }
  .support-card h3 { font-size: 2.7rem; }
  .founders-photo { min-height: 380px; }
  .founder-stats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 4.8rem; }
  .content-heading h2, .category-statement h2 { font-size: 3.7rem; }
  .team-grid { grid-template-columns: 1fr; }
  .person-card { min-height: 460px; }
  .form-grid { grid-template-columns: 1fr; }
  .field { grid-column: 1; }
}

@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; }
}
