:root {
  --bg: #0d0c13;
  --bg-soft: #14121d;
  --card: #181620;
  --card-light: #211e2c;
  --text: #f7f5ff;
  --muted: #a7a2b5;
  --line: rgba(255, 255, 255, 0.10);
  --purple: #a869ff;
  --purple-dark: #7336d5;
  --purple-soft: #d7b9ff;
  --lime: #b9f43b;
  --red: #ff6577;
  --radius: 22px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

::selection { color: #160d20; background: var(--purple-soft); }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 120px 0; position: relative; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: .3s ease;
}
.site-header.scrolled {
  background: rgba(13, 12, 19, .82);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}
.nav { height: 82px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: none; }
.brand-cube {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--purple);
  color: white;
  box-shadow: inset -6px -6px 0 rgba(57, 14, 112, .34), 7px 7px 0 rgba(168, 105, 255, .13);
  transform: rotate(4deg);
}
.brand-cube span { font-weight: 1000; font-size: 22px; transform: rotate(-4deg); }
.brand-copy { display: flex; align-items: baseline; letter-spacing: -1px; }
.brand-copy b { font-size: 22px; }
.brand-copy small { color: var(--purple); font-size: 15px; font-weight: 900; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { font-size: 13px; font-weight: 750; color: #d7d2e3; transition: color .2s ease; }
.nav-links a:hover { color: white; }
.nav-links .nav-discord {
  padding: 11px 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .04);
}
.nav-discord span { color: var(--purple); margin-left: 4px; }
.menu-toggle { display: none; border: 0; background: transparent; width: 44px; height: 44px; padding: 10px; cursor: pointer; }
.menu-toggle span { display: block; height: 2px; background: white; margin: 5px 0; transition: .25s ease; }

.hero { min-height: 820px; display: grid; align-items: center; padding-top: 150px; overflow: hidden; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black 35%, transparent 94%);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.hero-glow-one { width: 660px; height: 660px; right: -170px; top: 20px; background: radial-gradient(circle, rgba(128, 58, 235, .23), transparent 67%); }
.hero-glow-two { width: 480px; height: 480px; left: -260px; bottom: 40px; background: radial-gradient(circle, rgba(185, 244, 59, .08), transparent 67%); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.02fr .98fr; gap: 75px; align-items: center; }
.eyebrow { color: var(--purple-soft); font-size: 11px; font-weight: 900; letter-spacing: 2.3px; text-transform: uppercase; }
.hero-copy > .eyebrow { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 20px; color: #d9d4e5; }
.live-dot { width: 8px; height: 8px; background: var(--lime); box-shadow: 0 0 0 5px rgba(185, 244, 59, .1), 0 0 16px rgba(185, 244, 59, .6); animation: pulse 2s infinite; }
@keyframes pulse { 50% { opacity: .55; transform: scale(.8); } }
h1, h2, h3, p { margin-top: 0; }
h1, .section-heading h2, .start h2, .faq h2, .community h2 {
  line-height: .96;
  letter-spacing: -.06em;
  font-weight: 950;
}
h1 { font-size: clamp(64px, 7vw, 100px); margin-bottom: 28px; }
h1 span, .section-heading h2 span, .start h2 span, .faq h2 span, .community h2 span { color: var(--purple); }
.hero-text { color: var(--muted); max-width: 590px; font-size: 17px; line-height: 1.75; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 12px; align-items: stretch; }
.button {
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 56px;
  padding: 14px 22px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .5px;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-3px); }
.button-primary { background: var(--purple); color: #130b1f; box-shadow: 8px 8px 0 rgba(168, 105, 255, .18); }
.button-primary:hover { background: #bb8aff; box-shadow: 10px 10px 0 rgba(168, 105, 255, .14); }
.button-primary small, .button-primary b { display: block; line-height: 1.2; text-align: left; }
.button-primary small { font-size: 9px; opacity: .72; letter-spacing: 1.3px; }
.button-primary b { font-size: 15px; }
.button-icon { font-size: 22px; }
.button-ghost { color: white; border: 1px solid var(--line); background: rgba(255, 255, 255, .025); }
.button-ghost:hover { background: rgba(255, 255, 255, .07); }
.button-ghost span { color: var(--purple); font-size: 16px; }
.quick-facts { display: flex; gap: 22px; flex-wrap: wrap; color: #777181; font-size: 11px; font-weight: 750; margin-top: 28px; }
.quick-facts span::first-letter { color: var(--lime); }

.hero-visual { position: relative; }
.status-card { position: relative; z-index: 2; padding: 25px; background: rgba(25, 22, 35, .91); border: 1px solid var(--line); box-shadow: var(--shadow); backdrop-filter: blur(14px); }
.status-card::before { content: ""; position: absolute; inset: -6px 16px 16px -6px; border: 1px solid rgba(168, 105, 255, .28); pointer-events: none; z-index: -1; }
.status-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 20px; }
.status-kicker { font-size: 9px; color: var(--muted); letter-spacing: 2px; font-weight: 850; }
.status-card h2 { margin: 4px 0 0; font-size: 25px; letter-spacing: -.7px; }
.server-state { display: inline-flex; align-items: center; gap: 7px; font-size: 10px; font-weight: 900; padding: 8px 10px; color: var(--lime); background: rgba(185, 244, 59, .08); border: 1px solid rgba(185, 244, 59, .18); }
.server-state i { width: 6px; height: 6px; background: currentColor; box-shadow: 0 0 9px currentColor; }
.server-state.is-offline { color: var(--red); background: rgba(255,101,119,.08); border-color: rgba(255,101,119,.2); }
.server-state.is-loading { color: #f3d45d; background: rgba(243,212,93,.08); border-color: rgba(243,212,93,.2); }

.server-preview { height: 195px; position: relative; overflow: hidden; background: linear-gradient(#33214f 0 54%, #64467b 55% 62%, #24202d 62%); }
.server-preview::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 60px rgba(10, 6, 17, .55); }
.moon { width: 25px; height: 25px; background: #f4e8c3; box-shadow: 0 0 28px rgba(244,232,195,.3); position: absolute; right: 52px; top: 27px; }
.cloud { position: absolute; height: 7px; background: rgba(231, 213, 255, .25); box-shadow: 8px 0 rgba(231, 213, 255, .25), -8px 0 rgba(231, 213, 255, .25), 0 7px rgba(231, 213, 255, .18); }
.cloud-a { left: 45px; top: 40px; width: 34px; }
.cloud-b { right: 115px; top: 76px; width: 27px; transform: scale(.75); }
.mountain { position: absolute; clip-path: polygon(50% 0, 100% 100%, 0 100%); }
.mountain-back { width: 210px; height: 110px; background: #463259; left: 52px; bottom: 54px; }
.mountain-front { width: 255px; height: 130px; background: #2b2435; right: -30px; bottom: 53px; }
.grass-layer { position: absolute; height: 23px; left: 0; right: 0; bottom: 48px; background: #5d8234; box-shadow: inset 0 -7px #48692b; }
.dirt-layer { position: absolute; height: 48px; left: 0; right: 0; bottom: 0; background-color: #5d4030; background-image: linear-gradient(45deg, rgba(255,255,255,.06) 25%, transparent 25%, transparent 75%, rgba(0,0,0,.08) 75%), linear-gradient(45deg, rgba(0,0,0,.08) 25%, transparent 25%, transparent 75%, rgba(255,255,255,.05) 75%); background-size: 18px 18px; background-position: 0 0, 9px 9px; }
.tree { position: absolute; bottom: 66px; z-index: 2; }
.tree i { position: absolute; width: 12px; height: 36px; background: #493121; left: 18px; top: 28px; }
.tree b { display: block; width: 48px; height: 48px; background: #315d32; box-shadow: 9px -7px #3a6c3a, -8px 8px #274e2b; }
.tree-one { left: 40px; transform: scale(.8); }
.tree-two { right: 55px; transform: scale(.62); }
.portal { position: absolute; width: 54px; height: 83px; left: 52%; bottom: 65px; transform: translateX(-50%); z-index: 3; padding: 9px; background: #15131a; border: 7px solid #6a3c8e; box-shadow: 0 0 18px rgba(168, 105, 255, .55); }
.portal i { display: block; height: 100%; background: repeating-linear-gradient(45deg, #963cff 0 6px, #c170ff 6px 12px, #7626bd 12px 18px); animation: portal 4s linear infinite; }
@keyframes portal { to { background-position: 60px 0; } }

.status-stats { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-bottom: 0; margin-top: 18px; }
.status-stat { padding: 15px 12px; border-right: 1px solid var(--line); min-width: 0; }
.status-stat:last-child { border-right: 0; }
.status-stat span, .status-stat small { display: block; color: #74707d; line-height: 1.25; }
.status-stat span { font-size: 8px; font-weight: 900; letter-spacing: 1.4px; }
.status-stat strong { display: block; font-size: 16px; margin: 5px 0 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.status-stat small { font-size: 8px; }
.status-copy { width: 100%; padding: 13px 15px; display: flex; justify-content: space-between; color: white; background: #0e0d13; border: 1px solid var(--line); cursor: pointer; }
.status-copy span { font-weight: 800; letter-spacing: .3px; }
.status-copy b { font-size: 9px; letter-spacing: 1.4px; color: var(--purple-soft); }
.floating-chip { position: absolute; z-index: 5; font-size: 9px; font-weight: 950; letter-spacing: 1px; background: white; color: #17111d; padding: 10px 13px; box-shadow: 8px 8px 0 rgba(0,0,0,.22); }
.floating-chip span { color: var(--purple-dark); }
.chip-one { top: -22px; right: 34px; transform: rotate(3deg); }
.chip-two { bottom: 80px; left: -34px; transform: rotate(-4deg); }

.ticker { overflow: hidden; background: var(--purple); color: #160b24; padding: 14px 0; transform: rotate(-1deg) scale(1.02); }
.ticker-track { width: max-content; display: flex; gap: 46px; animation: ticker 28s linear infinite; font-size: 11px; font-weight: 950; letter-spacing: 1.4px; }
@keyframes ticker { to { transform: translateX(-50%); } }

.section-heading { display: grid; grid-template-columns: 1fr 1.25fr .65fr; gap: 50px; align-items: start; margin-bottom: 58px; }
.section-heading > div:first-child { display: flex; align-items: center; gap: 14px; }
.section-number { width: 34px; height: 34px; display: inline-grid; place-items: center; flex: none; font-size: 9px; font-weight: 950; color: #151020; background: var(--purple); box-shadow: 5px 5px 0 rgba(168, 105, 255, .15); }
.section-heading h2 { font-size: clamp(42px, 5vw, 68px); margin-bottom: 0; }
.section-heading > p { color: var(--muted); font-size: 14px; line-height: 1.8; }
.section-heading.compact { display: block; }
.section-heading.compact > div { margin-bottom: 28px; }
.section-heading.compact h2 { max-width: 760px; }
.section-heading.row { display: flex; justify-content: space-between; align-items: end; }
.section-heading.row > div > div { display: flex; gap: 14px; align-items: center; margin-bottom: 22px; }
.section-heading.row > a { border-bottom: 1px solid var(--line); padding-bottom: 5px; color: var(--muted); font-size: 12px; font-weight: 800; }
.section-heading.row > a span { color: var(--purple); }

.modes { background: #100f17; }
.mode-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.mode-card { position: relative; min-width: 0; background: var(--card); border: 1px solid var(--line); overflow: hidden; transition: transform .25s ease, border-color .25s ease; }
.mode-card:hover { transform: translateY(-7px); border-color: rgba(168, 105, 255, .4); }
.mode-art { position: relative; height: 250px; overflow: hidden; }
.mode-city .mode-art { background: linear-gradient(165deg, #613bab, #2c1d51 68%, #191525); }
.mode-games .mode-art { background: linear-gradient(165deg, #cfef73, #67982f 58%, #182315); }
.mode-art::after { content: ""; position: absolute; inset: 0; 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: 28px 28px; }
.mode-badge { position: absolute; top: 18px; left: 18px; z-index: 2; padding: 7px 9px; font-size: 8px; font-weight: 950; letter-spacing: 1.4px; background: rgba(13,12,19,.84); border: 1px solid rgba(255,255,255,.15); }
.pixel-sun { width: 46px; height: 46px; position: absolute; right: 57px; top: 40px; background: #f2d57b; box-shadow: 0 0 40px rgba(242,213,123,.28); }
.city-skyline { position: absolute; left: 0; right: 0; bottom: 0; height: 170px; display: flex; align-items: flex-end; justify-content: center; gap: 7px; }
.city-skyline i { width: 70px; position: relative; z-index: 1; background-color: #17131f; background-image: repeating-linear-gradient(90deg, transparent 0 14px, rgba(178,130,255,.3) 14px 20px), repeating-linear-gradient(0deg, transparent 0 14px, rgba(178,130,255,.25) 14px 20px); }
.city-skyline i:nth-child(1) { height: 75px; }
.city-skyline i:nth-child(2) { height: 130px; }
.city-skyline i:nth-child(3) { height: 100px; }
.city-skyline i:nth-child(4) { height: 155px; }
.city-skyline i:nth-child(5) { height: 85px; }
.game-crosshair { width: 100px; height: 100px; border: 4px solid rgba(13,12,19,.55); border-radius: 50%; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); }
.game-crosshair i:first-child { position: absolute; left: 48%; top: -27px; width: 4px; height: 150px; background: rgba(13,12,19,.5); }
.game-crosshair i:last-child { position: absolute; top: 48%; left: -27px; height: 4px; width: 150px; background: rgba(13,12,19,.5); }
.game-block { position: absolute; width: 58px; height: 58px; background: #221a30; box-shadow: inset -10px -10px rgba(0,0,0,.28), 9px 9px rgba(0,0,0,.12); z-index: 2; }
.block-a { left: 90px; top: 86px; transform: rotate(14deg); }
.block-b { right: 100px; top: 54px; width: 74px; height: 74px; transform: rotate(-10deg); }
.block-c { right: 155px; bottom: 22px; width: 44px; height: 44px; transform: rotate(8deg); }
.mode-content { padding: 32px; }
.mode-title { display: flex; align-items: center; gap: 14px; }
.mode-title > span { color: var(--purple); font-size: 10px; font-weight: 900; }
.mode-title h3 { margin: 0; font-size: 32px; letter-spacing: -1.2px; }
.mode-content > p { color: var(--muted); font-size: 14px; max-width: 510px; }
.mode-content ul { padding: 0; margin: 24px 0 28px; list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.mode-content li { color: #d5d1dc; font-size: 12px; font-weight: 650; }
.mode-content li span { color: var(--purple); font-size: 8px; margin-right: 7px; }
.mode-games .mode-content li span { color: var(--lime); }
.mode-content > a { display: inline-flex; gap: 12px; align-items: center; padding-bottom: 5px; border-bottom: 1px solid var(--line); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .8px; }
.mode-content > a span { color: var(--purple); }

.features { background: var(--bg); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.feature-card { min-height: 245px; padding: 28px; position: relative; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.012); transition: background .25s ease; }
.feature-card:hover { background: rgba(168,105,255,.055); }
.feature-icon { width: 44px; height: 44px; display: grid; place-items: center; color: #160d20; background: var(--purple); font-size: 22px; margin-bottom: 34px; box-shadow: 6px 6px 0 rgba(168,105,255,.15); }
.feature-index { position: absolute; top: 28px; right: 28px; color: #5c5765; font-size: 9px; font-weight: 900; }
.feature-card h3 { font-size: 18px; margin-bottom: 9px; }
.feature-card p { color: var(--muted); font-size: 13px; line-height: 1.75; margin-bottom: 0; }

.start { padding-top: 50px; }
.start-shell { position: relative; display: grid; grid-template-columns: .86fr 1.14fr; gap: 90px; padding: 75px; background: #191622; border: 1px solid var(--line); box-shadow: var(--shadow); overflow: hidden; }
.start-shell::before { content: ""; position: absolute; width: 360px; height: 360px; left: -190px; top: -210px; background: var(--purple); transform: rotate(38deg); opacity: .09; }
.start-copy { position: relative; }
.start-copy .eyebrow { display: inline-block; margin-left: 10px; }
.start h2 { font-size: clamp(42px, 4vw, 62px); margin: 28px 0 22px; }
.start-copy p { color: var(--muted); font-size: 14px; max-width: 400px; }
.steps { padding: 0; margin: 0; list-style: none; }
.steps li { display: flex; gap: 24px; padding: 0 0 24px; margin-bottom: 24px; border-bottom: 1px solid var(--line); }
.steps li:last-child { margin-bottom: 0; }
.step-number { font-size: 10px; font-weight: 950; color: var(--purple); padding-top: 5px; }
.steps h3 { margin-bottom: 5px; font-size: 17px; }
.steps p { color: var(--muted); font-size: 12px; margin: 0; }
.steps p b { color: var(--purple-soft); }
.join-bar { grid-column: 1 / -1; display: flex; justify-content: space-between; align-items: center; padding: 18px 20px 18px 24px; background: #0e0d14; border: 1px solid var(--line); }
.join-bar div span, .join-bar div strong { display: block; }
.join-bar div span { color: var(--muted); font-size: 8px; letter-spacing: 1.8px; font-weight: 900; }
.join-bar div strong { font-size: 21px; }

.news { background: #100f17; }
.news-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr; gap: 20px; }
.news-card { border: 1px solid var(--line); background: var(--card); overflow: hidden; }
.news-image { height: 195px; position: relative; display: grid; place-items: center; overflow: hidden; }
.news-image::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(45deg, rgba(255,255,255,.045) 25%, transparent 25%, transparent 75%, rgba(255,255,255,.045) 75%); background-size: 30px 30px; }
.news-image-one { background: linear-gradient(135deg, #4b258c, #b166ff); }
.news-image-two { background: linear-gradient(135deg, #315526, #a7df38); }
.news-image-three { background: linear-gradient(135deg, #2a2635, #6f607e); }
.news-image span { position: absolute; top: 18px; left: 18px; z-index: 2; padding: 6px 8px; color: #17111d; background: white; font-size: 8px; font-weight: 950; letter-spacing: 1px; }
.news-image b { font-size: 78px; letter-spacing: -7px; text-shadow: 8px 8px rgba(0,0,0,.18); z-index: 1; }
.news-content { padding: 26px; }
.news-meta { display: block; font-size: 8px; color: var(--purple-soft); font-weight: 900; letter-spacing: 1.5px; margin-bottom: 10px; }
.news-content h3 { font-size: 19px; line-height: 1.3; margin-bottom: 10px; }
.news-featured .news-content h3 { font-size: 24px; }
.news-content p { color: var(--muted); font-size: 12px; line-height: 1.7; min-height: 42px; }
.news-content a { display: inline-flex; gap: 8px; align-items: center; text-transform: uppercase; font-size: 9px; font-weight: 950; letter-spacing: 1px; }
.news-content a span { color: var(--purple); }

.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 110px; }
.faq-intro .eyebrow { margin-left: 10px; }
.faq h2 { font-size: clamp(42px, 4.8vw, 66px); margin: 28px 0 22px; }
.faq-intro p { max-width: 390px; color: var(--muted); font-size: 13px; }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 0; font-size: 15px; font-weight: 800; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { font-size: 22px; color: var(--purple); font-weight: 400; transition: transform .2s ease; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details p { color: var(--muted); font-size: 13px; max-width: 650px; margin: -4px 0 24px; }
.inline-copy { border: 0; padding: 0; color: var(--purple-soft); background: transparent; font-weight: 800; cursor: pointer; }

.community { padding: 70px 0; background: var(--purple); color: #160c21; }
.community-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 34px; }
.community-mark { width: 78px; height: 78px; display: grid; place-items: center; border: 2px solid rgba(22,12,33,.28); box-shadow: 8px 8px 0 rgba(22,12,33,.12); font-size: 37px; }
.community .eyebrow { color: rgba(22,12,33,.62); }
.community h2 { font-size: clamp(38px, 4vw, 56px); margin: 8px 0 10px; }
.community h2 span { color: white; }
.community p { margin: 0; font-size: 13px; font-weight: 650; opacity: .72; }
.button-light { background: #160c21; color: white; box-shadow: 8px 8px 0 rgba(22,12,33,.14); }

.footer { background: #09080d; padding: 58px 0 24px; }
.footer-main { display: grid; grid-template-columns: .6fr 1.1fr 1fr; gap: 55px; align-items: start; padding-bottom: 42px; }
.footer-main > p { color: #77717f; font-size: 12px; max-width: 360px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px 26px; }
.footer-links a { color: #aaa4b2; font-size: 11px; font-weight: 750; }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid var(--line); color: #57525e; font-size: 9px; font-weight: 700; letter-spacing: .5px; }

.toast { position: fixed; right: 24px; bottom: 24px; z-index: 90; display: flex; align-items: center; gap: 12px; min-width: 270px; padding: 15px 18px; color: #151020; background: var(--lime); box-shadow: 12px 12px 0 rgba(0,0,0,.23); opacity: 0; transform: translateY(20px); pointer-events: none; transition: .3s ease; }
.toast.show { opacity: 1; transform: translateY(0); }
.toast > span { width: 27px; height: 27px; display: grid; place-items: center; border: 2px solid currentColor; font-weight: 900; }
.toast b, .toast small { display: block; line-height: 1.25; }
.toast b { font-size: 13px; }
.toast small { font-size: 9px; opacity: .68; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1020px) {
  .nav-links { gap: 20px; }
  .hero { padding-top: 125px; }
  .hero-grid { gap: 36px; }
  h1 { font-size: clamp(58px, 8vw, 80px); }
  .status-stats { grid-template-columns: 1fr 1fr; }
  .status-stat:nth-child(2) { border-right: 0; }
  .status-stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section-heading { grid-template-columns: .7fr 1.2fr .7fr; gap: 30px; }
  .start-shell { padding: 55px; gap: 55px; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; }
  .news-featured .news-image { height: 100%; min-height: 250px; }
  .faq-grid { gap: 55px; }
}

@media (max-width: 780px) {
  .section { padding: 88px 0; }
  .container { width: min(100% - 28px, 650px); }
  .nav { height: 70px; }
  .menu-toggle { display: block; }
  .menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-links { position: absolute; left: 14px; right: 14px; top: 77px; display: grid; gap: 0; padding: 10px; background: #17141f; border: 1px solid var(--line); box-shadow: var(--shadow); opacity: 0; transform: translateY(-10px); pointer-events: none; transition: .25s ease; }
  .nav-links.open { opacity: 1; transform: none; pointer-events: auto; }
  .nav-links a { padding: 13px; border-bottom: 1px solid var(--line); }
  .nav-links .nav-discord { margin-top: 8px; border: 0; background: var(--purple); color: #160c21; }
  .hero { min-height: auto; padding: 125px 0 105px; }
  .hero-grid { grid-template-columns: 1fr; gap: 70px; }
  h1 { font-size: clamp(56px, 16vw, 84px); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .quick-facts { gap: 10px 18px; }
  .chip-two { left: 8px; bottom: -24px; }
  .section-heading { display: block; }
  .section-heading > div:first-child { margin-bottom: 24px; }
  .section-heading h2 { margin-bottom: 22px; }
  .mode-grid, .feature-grid, .start-shell, .faq-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .start { padding-top: 20px; }
  .start-shell { padding: 38px 28px; gap: 45px; }
  .join-bar { grid-column: auto; }
  .news-grid { grid-template-columns: 1fr; }
  .news-featured { grid-column: auto; display: block; }
  .news-featured .news-image { height: 210px; min-height: 0; }
  .section-heading.row { display: block; }
  .section-heading.row > a { display: inline-block; margin-top: 20px; }
  .community-inner { grid-template-columns: auto 1fr; }
  .community .button { grid-column: 1 / -1; width: 100%; }
  .footer-main { grid-template-columns: 1fr; gap: 24px; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 520px) {
  .hero-copy > .eyebrow { font-size: 9px; }
  h1 { font-size: 53px; }
  .hero-text { font-size: 15px; }
  .status-card { padding: 17px; }
  .status-card-top { align-items: flex-start; flex-direction: column; }
  .server-preview { height: 175px; }
  .floating-chip { display: none; }
  .status-stat strong { font-size: 14px; }
  .mode-art { height: 205px; }
  .mode-content { padding: 25px; }
  .mode-content ul { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 220px; }
  .join-bar { align-items: stretch; flex-direction: column; gap: 16px; }
  .community-inner { grid-template-columns: 1fr; text-align: center; }
  .community-mark { margin-inline: auto; }
  .footer-bottom { flex-direction: column; }
  .toast { left: 14px; right: 14px; bottom: 14px; min-width: 0; }
}

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