/* ── Self-hosted fonts ── */
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('/fonts/space-grotesk-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('/fonts/space-grotesk-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/space-grotesk-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/space-grotesk-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/jetbrains-mono-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/jetbrains-mono-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* ── Tokens ── */
:root {
  --black: #000000;
  --panel: #0A0A0A;
  --magenta: #FF2E93;
  --white: #FFFFFF;
  --gray: #737373;
  --body-text: #D4D4D4;
  --line: #1A1A1A;
  --display: 'Space Grotesk', system-ui, sans-serif;
  --mono: 'JetBrains Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--display);
  font-weight: 300;
  font-size: 13px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container { max-width: 1080px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 640px) { .container { padding: 0 32px; } }

.label { font-family: var(--mono); font-size: 9px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray); }
@media (min-width: 640px) { .label { font-size: 10px; } }
.label--magenta { color: var(--magenta); }

.ticked { position: relative; }
.ticked::before, .ticked::after { content: ''; position: absolute; width: 16px; height: 16px; pointer-events: none; }
.ticked::before { top: 0; left: 0; border-top: 1px solid var(--magenta); border-left: 1px solid var(--magenta); }
.ticked::after { top: 0; right: 0; border-top: 1px solid var(--magenta); border-right: 1px solid var(--magenta); }
.ticked-b { position: relative; }
.ticked-b::before, .ticked-b::after { content: ''; position: absolute; width: 16px; height: 16px; pointer-events: none; }
.ticked-b::before { bottom: 0; left: 0; border-bottom: 1px solid var(--magenta); border-left: 1px solid var(--magenta); }
.ticked-b::after { bottom: 0; right: 0; border-bottom: 1px solid var(--magenta); border-right: 1px solid var(--magenta); }

header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(0, 0, 0, 0.88); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); padding: 12px 0; }
@media (min-width: 640px) { header { padding: 14px 0; } }
header .container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--display); font-weight: 500; font-size: 15px; letter-spacing: -0.03em; color: var(--white); text-decoration: none; }
@media (min-width: 640px) { .logo { font-size: 16px; } }
.logo .dot { color: var(--magenta); text-shadow: 0 0 12px rgba(255, 46, 147, 0.6); }
.nav-links { display: flex; gap: 14px; list-style: none; }
@media (min-width: 640px) { .nav-links { gap: 20px; } }
.nav-links a { font-family: var(--mono); font-size: 9px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray); text-decoration: none; transition: color 0.2s ease; padding: 4px 0; -webkit-tap-highlight-color: transparent; }
@media (min-width: 640px) { .nav-links a { font-size: 10px; } }
.nav-links a:hover { color: var(--magenta); }
.nav-links a:focus-visible { outline: 1px solid var(--magenta); outline-offset: 4px; }

.hero { min-height: 100vh; min-height: 100dvh; display: flex; flex-direction: column; justify-content: center; padding: 80px 0 40px; position: relative; overflow: hidden; }
@media (min-width: 640px) { .hero { padding: 100px 0 60px; } }
.hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255, 46, 147, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 46, 147, 0.03) 1px, transparent 1px); background-size: 60px 60px; pointer-events: none; }
@media (min-width: 640px) { .hero::before { background-size: 80px 80px; } }
.hero-glow { position: absolute; top: -200px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(255, 46, 147, 0.08) 0%, transparent 65%); pointer-events: none; }
.hero-content { position: relative; z-index: 1; }
.hero-wordmark { font-family: var(--display); font-weight: 500; font-size: clamp(44px, 11vw, 96px); letter-spacing: -0.045em; line-height: 1.0; margin-bottom: 12px; }
.hero-wordmark .dot { color: var(--magenta); text-shadow: 0 0 20px rgba(255, 46, 147, 0.7), 0 0 60px rgba(255, 46, 147, 0.3); }
.hero-sub { font-weight: 300; font-size: 13px; color: var(--body-text); margin-bottom: 32px; max-width: 420px; line-height: 1.7; }
@media (min-width: 640px) { .hero-sub { font-size: 14px; margin-bottom: 48px; } }
.hero-sub .accent { color: var(--magenta); }

.doors { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 640px) { .doors { grid-template-columns: 1fr 1fr; gap: 16px; } }
.door { background: var(--panel); border: 1px solid var(--line); border-top: 2px solid var(--magenta); border-radius: 0; padding: 24px 20px 20px; display: flex; flex-direction: column; gap: 12px; transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, background 0.3s ease; position: relative; overflow: hidden; cursor: pointer; -webkit-tap-highlight-color: transparent; }
@media (min-width: 640px) { .door { padding: 32px 28px 28px; gap: 16px; } }
.door::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 80px; background: linear-gradient(180deg, rgba(255, 46, 147, 0.0) 0%, transparent 100%); pointer-events: none; transition: opacity 0.3s ease; opacity: 0; }
.door:hover::after { opacity: 1; }
.door:hover { border-color: var(--magenta); box-shadow: 0 0 32px rgba(255, 46, 147, 0.12), 0 0 80px rgba(255, 46, 147, 0.05); transform: translateY(-2px); background: #0d0d0d; }
.door--gamevox { border-top-width: 2px; }
.door--gamevox::after { background: linear-gradient(180deg, rgba(255, 46, 147, 0.05) 0%, transparent 100%); opacity: 1; }
.door--gamevox:hover::after { background: linear-gradient(180deg, rgba(255, 46, 147, 0.12) 0%, transparent 100%); opacity: 1; }
.door--gamevox:hover { box-shadow: 0 0 40px rgba(255, 46, 147, 0.2), 0 0 100px rgba(255, 46, 147, 0.08); }
.door h3 { font-family: var(--display); font-weight: 500; font-size: 24px; letter-spacing: -0.035em; }
@media (min-width: 640px) { .door h3 { font-size: 30px; } }
.door p { font-weight: 300; font-size: 12px; color: var(--body-text); line-height: 1.7; flex-grow: 1; }
.badge-new { display: inline-block; font-family: var(--mono); font-size: 8px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; background: var(--magenta); color: var(--black); padding: 2px 8px; margin-left: 10px; vertical-align: middle; position: relative; top: -2px; box-shadow: 0 0 12px rgba(255, 46, 147, 0.4); }

.door-cta { display: inline-flex; align-items: center; gap: 8px; font-family: var(--display); font-weight: 500; font-size: 13px; text-decoration: none; padding: 12px 24px; border-radius: 0; align-self: flex-start; position: relative; z-index: 1; -webkit-tap-highlight-color: transparent; transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.15s ease; }
@media (min-width: 640px) { .door-cta { font-size: 14px; padding: 12px 28px; } }
.door-cta:focus-visible { outline: 1px solid var(--magenta); outline-offset: 4px; }
.door-cta:active { transform: scale(0.97); }
.door-cta .arrow { transition: transform 0.25s ease; font-size: 16px; }
.door-cta:hover .arrow { transform: translateX(6px); }
.door-cta--fill { background: var(--magenta); color: var(--black); box-shadow: 0 0 12px rgba(255, 46, 147, 0.25); }
.door-cta--fill:hover { box-shadow: 0 0 28px rgba(255, 46, 147, 0.55), 0 0 60px rgba(255, 46, 147, 0.2); }
.door-cta--ghost { background: transparent; color: var(--magenta); border: 1px solid var(--magenta); box-shadow: 0 0 8px rgba(255, 46, 147, 0.15); }
.door-cta--ghost:hover { background: var(--magenta); color: var(--black); box-shadow: 0 0 28px rgba(255, 46, 147, 0.55), 0 0 60px rgba(255, 46, 147, 0.2); }
.door--gamevox .door-cta { box-shadow: 0 0 16px rgba(255, 46, 147, 0.35); }
.door--gamevox .door-cta:hover { box-shadow: 0 0 36px rgba(255, 46, 147, 0.6), 0 0 80px rgba(255, 46, 147, 0.2); }

.hero-hud { display: flex; justify-content: space-between; align-items: center; margin-top: 28px; padding-top: 14px; border-top: 1px solid var(--line); position: relative; z-index: 1; }
@media (min-width: 640px) { .hero-hud { margin-top: 40px; padding-top: 16px; } }
.hud-item { font-family: var(--mono); font-size: 9px; font-weight: 500; letter-spacing: 0.12em; color: var(--gray); }
@media (min-width: 640px) { .hud-item { font-size: 10px; } }
.hud-diamond { display: inline-block; width: 6px; height: 6px; background: var(--magenta); transform: rotate(45deg); margin-right: 6px; box-shadow: 0 0 8px rgba(255, 46, 147, 0.5); }
.hud-right { display: none; }
@media (min-width: 640px) { .hud-right { display: block; } }

.section { padding: 64px 0; border-top: 1px solid var(--line); }
@media (min-width: 640px) { .section { padding: 88px 0; } }
.section-label { margin-bottom: 28px; }
@media (min-width: 640px) { .section-label { margin-bottom: 36px; } }

.manifesto h2 { font-weight: 500; font-size: clamp(22px, 5vw, 38px); letter-spacing: -0.04em; line-height: 1.2; max-width: 620px; margin-bottom: 20px; }
.manifesto h2 .accent { color: var(--magenta); }
.manifesto-body { max-width: 520px; font-weight: 300; font-size: 13px; color: var(--body-text); line-height: 1.8; }
.manifesto-body p + p { margin-top: 14px; }

.people-grid { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 24px; }
@media (min-width: 640px) { .people-grid { grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; } }
.person { background: var(--panel); border: 1px solid var(--line); border-radius: 0; padding: 20px; }
@media (min-width: 640px) { .person { padding: 24px; } }
.person h4 { font-weight: 500; font-size: 16px; letter-spacing: -0.02em; margin-bottom: 4px; }
.person .role { font-family: var(--mono); font-size: 10px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray); margin-bottom: 10px; }
.person p:last-child { font-weight: 300; font-size: 12px; color: var(--body-text); line-height: 1.7; }

.facts { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 24px; }
@media (min-width: 640px) { .facts { display: flex; flex-wrap: wrap; gap: 32px; margin-top: 28px; } }
.fact-value { font-weight: 500; font-size: 18px; letter-spacing: -0.02em; margin-bottom: 2px; }
@media (min-width: 640px) { .fact-value { font-size: 20px; } }
.fact-label { font-family: var(--mono); font-size: 9px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray); }
@media (min-width: 640px) { .fact-label { font-size: 10px; } }

.philosophy { max-width: 520px; font-weight: 300; font-size: 13px; color: var(--body-text); line-height: 1.8; margin-top: 24px; }

.contact-inner { display: flex; flex-direction: column; gap: 20px; }
@media (min-width: 640px) { .contact-inner { flex-direction: row; justify-content: space-between; align-items: flex-end; gap: 24px; } }
.contact-inner h2 { font-weight: 500; font-size: clamp(20px, 4vw, 30px); letter-spacing: -0.03em; line-height: 1.2; }
.contact-email { font-family: var(--mono); font-size: 12px; font-weight: 500; color: var(--magenta); text-decoration: none; letter-spacing: 0.02em; padding: 8px 0; border-bottom: 1px solid transparent; transition: border-color 0.2s ease, text-shadow 0.2s ease; -webkit-tap-highlight-color: transparent; }
@media (min-width: 640px) { .contact-email { font-size: 13px; padding: 2px 0; } }
.contact-email:hover { border-color: var(--magenta); text-shadow: 0 0 12px rgba(255, 46, 147, 0.4); }
.contact-email:focus-visible { outline: 1px solid var(--magenta); outline-offset: 4px; }

.bottom-doors .doors { margin-top: 20px; }

footer { padding: 20px 0; border-top: 1px solid var(--line); }
footer .container { display: flex; flex-direction: column; gap: 10px; }
@media (min-width: 640px) { footer .container { flex-direction: row; justify-content: space-between; align-items: center; } }
footer .logo { font-size: 14px; }
footer .meta { font-family: var(--mono); font-size: 10px; font-weight: 500; letter-spacing: 0.1em; color: var(--gray); }

.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(120px); z-index: 200; background: var(--panel); border: 1px solid var(--magenta); border-radius: 0; padding: 14px 20px; display: flex; align-items: center; gap: 14px; box-shadow: 0 0 30px rgba(255, 46, 147, 0.2), 0 4px 40px rgba(0, 0, 0, 0.6); opacity: 0; transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease; max-width: calc(100vw - 40px); width: 420px; }
@media (max-width: 639px) { .toast { bottom: 16px; left: 16px; right: 16px; transform: translateX(0) translateY(120px); width: auto; } }
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
@media (max-width: 639px) { .toast.show { transform: translateX(0) translateY(0); } }
.toast-icon { width: 10px; height: 10px; background: var(--magenta); border-radius: 50%; flex-shrink: 0; box-shadow: 0 0 10px rgba(255, 46, 147, 0.6); animation: toast-pulse 2s ease-in-out infinite; }
@keyframes toast-pulse { 0%, 100% { box-shadow: 0 0 10px rgba(255, 46, 147, 0.6); } 50% { box-shadow: 0 0 18px rgba(255, 46, 147, 0.9); } }
.toast-text { flex-grow: 1; font-size: 12px; font-weight: 300; color: var(--body-text); line-height: 1.5; }
.toast-text strong { color: var(--white); font-weight: 500; }
.toast-cta { font-family: var(--display); font-weight: 500; font-size: 11px; color: var(--black); background: var(--magenta); padding: 8px 16px; text-decoration: none; white-space: nowrap; flex-shrink: 0; transition: box-shadow 0.2s ease; -webkit-tap-highlight-color: transparent; }
.toast-cta:hover { box-shadow: 0 0 20px rgba(255, 46, 147, 0.5); }
.toast-cta:focus-visible { outline: 1px solid var(--white); outline-offset: 2px; }
.toast-close { background: none; border: none; color: var(--gray); font-size: 18px; cursor: pointer; padding: 4px; line-height: 1; flex-shrink: 0; transition: color 0.2s ease; -webkit-tap-highlight-color: transparent; }
.toast-close:hover { color: var(--white); }
