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

:root {
  color: #f7f7f5;
  background: #090909;
  font-family: 'Manrope', Arial, sans-serif;
  font-synthesis: none;
  --red: #f22b1c;
  --line: rgba(255,255,255,.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: #090909; overflow-x: hidden; }
body.intro-lock { overflow: hidden; }
button, a { font: inherit; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
svg { width: 1.15em; height: 1.15em; }

.nav {
  position: fixed; inset: 0 0 auto; z-index: 20; height: 88px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(22px, 5vw, 78px); transition: .35s ease;
  border-bottom: 1px solid transparent;
}
.nav--solid { height: 72px; background: rgba(8,8,8,.78); backdrop-filter: blur(18px); border-color: var(--line); }
.brand, .footer-brand { display: flex; align-items: center; gap: 11px; font-weight: 800; letter-spacing: 0; }
.brand { background: none; border: 0; cursor: pointer; font-size: 16px; }
.brand img, .footer-brand img { width: 46px; height: 46px; object-fit: contain; }
.brand b, .footer-brand b { color: var(--red); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links button { background: none; border: 0; color: rgba(255,255,255,.72); cursor: pointer; transition: .2s; }
.nav-links button:hover { color: #fff; }
.nav-forum { display: flex; align-items: center; gap: 8px; border-left: 1px solid var(--line); padding-left: 30px; font-weight: 700; }
.menu-button { display: none; background: none; border: 0; }
.menu-close-icon { display: none; }
.menu-button--open .menu-open-icon { display: none; }
.menu-button--open .menu-close-icon { display: block; }

.hero { position: relative; min-height: 720px; height: 94vh; max-height: 1040px; overflow: hidden; display: flex; align-items: center; }
.hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 57% center; animation: heroZoom 9s ease-out both; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,5,5,.96) 0%, rgba(5,5,5,.72) 35%, rgba(5,5,5,.16) 68%, rgba(5,5,5,.34) 100%), linear-gradient(0deg, #090909 0%, transparent 24%); }
.hero-lines { position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 76px 76px; mask-image: linear-gradient(90deg, #000, transparent 65%); }
.hero-copy { position: relative; z-index: 2; width: min(680px, 88vw); margin-left: clamp(22px, 8vw, 132px); padding-top: 36px; animation: revealUp .9s .1s both; }
.eyebrow { display: flex; align-items: center; gap: 12px; text-transform: uppercase; font-size: 12px; font-weight: 800; letter-spacing: 2px; color: rgba(255,255,255,.68); }
.eyebrow span { width: 34px; height: 2px; background: var(--red); }
h1, h2 { font-family: 'Unbounded', 'Manrope', sans-serif; letter-spacing: 0; margin: 0; }
h1 { font-size: clamp(64px, 9vw, 142px); line-height: .82; margin: 28px 0 31px; }
h1 span { color: var(--red); }
.hero-copy > p { max-width: 590px; font-size: clamp(17px, 1.4vw, 21px); line-height: 1.65; color: rgba(255,255,255,.75); }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 40px; }
.primary-button, .outline-button { height: 58px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 0 28px; border: 0; font-weight: 800; cursor: pointer; transition: transform .2s, background .2s; }
.primary-button { background: var(--red); color: #fff; box-shadow: 0 14px 44px rgba(242,43,28,.24); }
.primary-button:hover { transform: translateY(-3px); background: #ff3a2c; }
.text-button { display: flex; align-items: center; gap: 7px; background: none; border: 0; font-weight: 700; cursor: pointer; }
.server-pill { position: absolute; z-index: 2; right: clamp(22px, 5vw, 80px); bottom: 58px; display: flex; align-items: center; gap: 14px; padding: 14px 18px; background: rgba(8,8,8,.56); border: 1px solid var(--line); backdrop-filter: blur(14px); }
.server-pill small, .server-pill strong { display: block; }
.server-pill small { color: #aaa; font-size: 10px; }
.server-pill strong { font-size: 13px; margin-top: 3px; }
.pulse { width: 9px; height: 9px; background: #24d160; border-radius: 50%; box-shadow: 0 0 0 7px rgba(36,209,96,.12); animation: pulse 2s infinite; }
.scroll-cue { position: absolute; z-index: 3; bottom: 55px; left: 50%; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; background: rgba(10,10,10,.3); cursor: pointer; animation: float 2.4s infinite; }
.scroll-cue { transition: border-color .2s, background .2s; animation: none; }
.scroll-cue:hover { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.1); }

.manifest, .features { padding: 120px clamp(22px, 8vw, 132px); }
.section-number { color: var(--red); font-size: 11px; font-weight: 800; letter-spacing: 2px; margin-bottom: 54px; }
.manifest-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 90px; align-items: end; }
.manifest h2, .section-head h2, .world h2, .download h2 { font-size: clamp(36px, 5vw, 74px); line-height: 1.08; }
.manifest h2 em { color: #777; font-style: normal; }
.manifest-copy > p { color: #aaa; line-height: 1.8; font-size: 17px; margin: 0 0 45px; }
.stats { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); padding-top: 25px; gap: 18px; }
.stats strong, .stats span { display: block; }
.stats strong { font-family: 'Unbounded'; font-size: 28px; }
.stats span { color: #777; font-size: 12px; margin-top: 8px; }

.features { background: #0e0e0e; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 68px; }
.section-head .section-number { margin: 0; }
.section-head h2 { text-align: right; }
.feature-list { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.feature { position: relative; min-height: 350px; padding: 36px; border-right: 1px solid var(--line); overflow: hidden; transition: background .3s; }
.feature:last-child { border-right: 0; }
.feature:hover { background: #151515; }
.feature-icon { width: 54px; height: 54px; display: grid; place-items: center; color: var(--red); border: 1px solid rgba(242,43,28,.32); }
.feature > span { position: absolute; right: 28px; top: 30px; color: #555; font-family: 'Unbounded'; font-size: 12px; }
.feature h3 { font-size: 24px; margin: 86px 0 16px; }
.feature p { color: #888; line-height: 1.7; max-width: 350px; }
.feature-spark { position: absolute; right: 34px; bottom: 34px; color: #333; transition: .3s; }
.feature:hover .feature-spark { color: var(--red); transform: rotate(18deg); }

.world { position: relative; min-height: 760px; overflow: hidden; display: flex; align-items: center; }
.world > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.world-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,7,7,.92), rgba(7,7,7,.18)), linear-gradient(0deg, #090909, transparent 40%); }
.world-copy { position: relative; z-index: 2; width: min(630px, 88vw); margin-left: clamp(22px, 8vw, 132px); }
.world-copy .section-number { margin-bottom: 35px; }
.world p { color: rgba(255,255,255,.7); font-size: 18px; line-height: 1.75; margin: 28px 0 38px; }
.outline-button { background: rgba(10,10,10,.42); border: 1px solid rgba(255,255,255,.35); backdrop-filter: blur(12px); }
.outline-button:hover { background: #fff; color: #111; }

.download { min-height: 390px; padding: 80px clamp(22px, 8vw, 132px); display: grid; grid-template-columns: 180px 1fr auto; align-items: center; gap: 55px; border-bottom: 1px solid var(--line); }
.download > img { width: 180px; filter: drop-shadow(0 18px 30px rgba(242,43,28,.18)); }
.download h2 { margin: 14px 0; }
.download p { color: #777; }
.kicker { display: flex; gap: 8px; align-items: center; color: var(--red); font-size: 12px; font-weight: 800; text-transform: uppercase; }
footer { min-height: 110px; display: flex; justify-content: space-between; align-items: center; padding: 22px clamp(22px, 5vw, 78px); color: #666; font-size: 12px; }
.footer-brand { color: #fff; font-size: 14px; }
.footer-brand img { width: 38px; height: 38px; }
footer div:last-child { display: flex; gap: 24px; }
footer a:hover { color: #fff; }

@keyframes heroZoom { from { transform: scale(1.07); } to { transform: scale(1); } }
@keyframes revealUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
@keyframes pulse { 50% { box-shadow: 0 0 0 12px rgba(36,209,96,0); } }
.intro { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; pointer-events: all; }
.intro-panel { position: absolute; inset-block: 0; width: 50.2%; background: #050505; animation-duration: 1.05s; animation-delay: 2.72s; animation-fill-mode: forwards; animation-timing-function: cubic-bezier(.77,0,.18,1); }
.intro-panel--left { left: 0; transform-origin: left; animation-name: openLeft; }
.intro-panel--right { right: 0; transform-origin: right; animation-name: openRight; }
.intro-mark { position: relative; z-index: 2; display: grid; justify-items: center; animation: introMark 3.25s cubic-bezier(.22,.8,.2,1) forwards; }
.intro-mark img { width: clamp(130px, 15vw, 210px); filter: drop-shadow(0 22px 54px rgba(242,43,28,.22)); }
.intro-mark > div { display: flex; gap: 12px; margin-top: 18px; font-family: 'Unbounded', sans-serif; font-size: clamp(25px, 3vw, 40px); }
.intro-mark strong { color: var(--red); }
.intro-mark small { margin-top: 13px; color: rgba(255,255,255,.36); font-size: 9px; font-weight: 800; letter-spacing: 3px; }
.intro-progress { position: absolute; z-index: 3; bottom: 9vh; width: min(240px, 50vw); height: 1px; overflow: hidden; background: rgba(255,255,255,.12); animation: introFade 2.8s forwards; }
.intro-progress i { display: block; width: 100%; height: 100%; background: var(--red); transform-origin: left; animation: introLoad 2.5s .15s cubic-bezier(.22,.8,.2,1) both; }

.reveal, .reveal-child { opacity: 0; transform: translateY(42px); transition: opacity .8s ease, transform .8s cubic-bezier(.22,.8,.2,1); }
.reveal.is-visible, .reveal-child.is-visible { opacity: 1; transform: none; }
.feature-list .reveal-child:nth-child(2) { transition-delay: .12s; }
.feature-list .reveal-child:nth-child(3) { transition-delay: .24s; }

@keyframes openLeft { to { transform: translateX(-101%); } }
@keyframes openRight { to { transform: translateX(101%); } }
@keyframes introMark {
  0% { opacity: 0; transform: scale(.88); }
  10%, 68% { opacity: 1; transform: scale(1); }
  82% { opacity: 1; transform: scale(1.03); }
  100% { opacity: 0; transform: scale(1.08); }
}
@keyframes introLoad { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes introFade { 0%, 78% { opacity: 1; } 100% { opacity: 0; } }

@media (max-width: 900px) {
  .nav { height: 70px; }
  .menu-button { display: block; z-index: 3; }
  .nav-links { position: fixed; inset: 0; background: rgba(8,8,8,.97); flex-direction: column; justify-content: center; opacity: 0; pointer-events: none; transition: .25s; }
  .nav-links--open { opacity: 1; pointer-events: auto; }
  .nav-links button, .nav-forum { font-size: 23px; border: 0; padding: 8px; }
  .hero { min-height: 680px; height: 92svh; align-items: flex-end; padding-bottom: 155px; }
  .hero-media { object-position: 56% center; }
  .hero-shade { background: linear-gradient(0deg, #090909 4%, rgba(5,5,5,.68) 58%, rgba(5,5,5,.24)); }
  .hero-copy { margin: 0 22px; padding: 0; }
  .hero-copy > p { font-size: 16px; }
  .server-pill { bottom: 36px; left: 22px; right: auto; }
  .scroll-cue { display: none; }
  .manifest, .features { padding-top: 86px; padding-bottom: 86px; }
  .manifest-grid { grid-template-columns: 1fr; gap: 42px; }
  .section-head { display: block; }
  .section-head .section-number { margin-bottom: 36px; }
  .section-head h2 { text-align: left; }
  .feature-list { grid-template-columns: 1fr; }
  .feature { border-right: 0; border-bottom: 1px solid var(--line); min-height: 290px; }
  .feature:last-child { border-bottom: 0; }
  .feature h3 { margin-top: 56px; }
  .download { grid-template-columns: 110px 1fr; gap: 25px; }
  .download > img { width: 110px; }
  .download > .primary-button { grid-column: 1 / -1; width: 100%; }
}

@media (max-width: 560px) {
  .brand img { width: 38px; height: 38px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .text-button { justify-content: center; }
  .stats { gap: 10px; }
  .stats strong { font-size: 21px; }
  .world { min-height: 670px; }
  .world-overlay { background: linear-gradient(0deg, rgba(7,7,7,.94), rgba(7,7,7,.25)); }
  .download { display: flex; flex-direction: column; align-items: flex-start; }
  footer { flex-direction: column; justify-content: center; gap: 15px; }
}
