:root {
  --bg: #08090b;
  --bg-2: #0b0d10;
  --panel: #0f1216;
  --panel-2: #13171c;
  --text: #f4f4f2;
  --muted: #90959c;
  --muted-2: #5f646b;
  --orange: #ff7200;
  --orange-2: #ff8a2a;
  --orange-soft: rgba(255, 114, 0, .10);
  --line: rgba(255,255,255,.07);
  --line-strong: rgba(255,255,255,.13);
  --line-orange: rgba(255,114,0,.32);
  --green: #61d39b;
  --header: 82px;
  --shell: 1180px;
  --cut: 14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header); }
body {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 15% 10%, rgba(255,114,0,.045), transparent 28%),
    linear-gradient(180deg, #08090b 0%, #090b0e 100%);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body::selection { background: var(--orange); color: #090909; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
img { display: block; max-width: 100%; }
.shell { width: min(calc(100% - 44px), var(--shell)); margin: 0 auto; }

.noise {
  position: fixed; inset: 0; z-index: 9998; pointer-events: none; opacity: .024;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}
.scroll-progress { position: fixed; top: 0; left: 0; z-index: 10000; width: 100%; height: 2px; transform: scaleX(0); transform-origin: left; background: linear-gradient(90deg, var(--orange), #ffad68); box-shadow: 0 0 20px rgba(255,114,0,.55); }
.ambient { position: fixed; z-index: -2; border-radius: 50%; pointer-events: none; filter: blur(130px); }
.ambient-one { width: 430px; height: 430px; left: -240px; top: 180px; background: rgba(255,114,0,.08); }
.ambient-two { width: 360px; height: 360px; right: -240px; top: 52%; background: rgba(255,255,255,.025); }

.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header);
  background: rgba(8,9,11,.72); border-bottom: 1px solid transparent; backdrop-filter: blur(20px);
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.site-header.scrolled { background: rgba(8,9,11,.92); border-color: var(--line); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 13px; min-width: 230px; }
.brand-mark { position: relative; width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--line-strong); background: #0d1013; clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 9px 100%, 0 calc(100% - 9px)); }
.brand-mark::before { content: ""; position: absolute; inset: 4px; border: 1px solid rgba(255,114,0,.22); clip-path: inherit; }
.brand-logo { width: 31px; height: 31px; object-fit: contain; transition: transform .35s cubic-bezier(.2,.8,.2,1), filter .35s ease; }
.brand:hover .brand-logo { transform: scale(1.08) rotate(-4deg); filter: drop-shadow(0 0 12px rgba(255,114,0,.35)); }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-family: "Barlow Condensed", sans-serif; font-size: 19px; letter-spacing: .12em; font-weight: 800; }
.brand-copy small { margin-top: 5px; color: var(--muted-2); font-size: 8px; font-weight: 800; letter-spacing: .19em; }

.desktop-nav { display: flex; align-items: center; gap: 3px; }
.desktop-nav a { position: relative; display: inline-flex; align-items: center; gap: 7px; padding: 10px 12px; color: #8b9097; font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; transition: color .2s ease; }
.desktop-nav a span { color: #4c5056; font-family: "Barlow Condensed", sans-serif; font-size: 9px; letter-spacing: .08em; transition: color .2s ease; }
.desktop-nav a::before { content: ""; position: absolute; left: 12px; right: 12px; bottom: 2px; height: 1px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.desktop-nav a:hover, .desktop-nav a.active { color: #f2f2f0; }
.desktop-nav a:hover span, .desktop-nav a.active span { color: var(--orange); }
.desktop-nav a.active::before { transform: scaleX(1); }
.header-actions { min-width: 230px; display: flex; align-items: center; justify-content: flex-end; gap: 8px; }
.discord-link, .menu-button { height: 40px; border: 1px solid var(--line-strong); background: rgba(255,255,255,.025); }
.discord-link { display: inline-flex; align-items: center; gap: 9px; padding: 0 14px; font-size: 10px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px)); transition: background .2s ease, border-color .2s ease, transform .2s ease; }
.discord-link i { color: var(--orange); }
.discord-link:hover { transform: translateY(-2px); border-color: rgba(255,114,0,.35); background: var(--orange-soft); }
.menu-button { display: none; width: 40px; place-items: center; cursor: pointer; }
.mobile-nav { display: none; }

.hero { position: relative; min-height: 100vh; padding-top: var(--header); display: flex; align-items: center; isolation: isolate; overflow: hidden; }
.hero-grid { position: absolute; inset: 0; z-index: -3; background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to bottom, #000 10%, transparent 88%); animation: gridMove 22s linear infinite; }
.hero::before { content: ""; position: absolute; width: 680px; height: 680px; right: -260px; top: 82px; border: 1px solid rgba(255,114,0,.06); border-radius: 50%; box-shadow: 0 0 0 90px rgba(255,114,0,.012), 0 0 0 180px rgba(255,114,0,.009); z-index: -2; }
.hero::after { content: "OVERLINE"; position: absolute; left: -12px; bottom: -57px; z-index: -2; color: rgba(255,255,255,.014); font-family: "Barlow Condensed", sans-serif; font-size: clamp(150px, 23vw, 360px); font-weight: 800; letter-spacing: -.03em; line-height: .75; pointer-events: none; }
.hero-inner { display: grid; grid-template-columns: 1.08fr .92fr; gap: 78px; align-items: center; padding: 92px 0 96px; }
.eyebrow { display: flex; align-items: center; gap: 11px; color: #8d9298; font-size: 9px; font-weight: 800; letter-spacing: .18em; }
.eyebrow-index { color: var(--orange); font-family: "Barlow Condensed", sans-serif; font-size: 12px; letter-spacing: .1em; }
.eyebrow-line { width: 34px; height: 1px; background: linear-gradient(90deg, var(--orange), transparent); }
.hero-title { margin-top: 20px; display: grid; width: fit-content; font-family: "Barlow Condensed", sans-serif; font-weight: 800; line-height: .76; letter-spacing: -.035em; text-transform: uppercase; }
.hero-word { display: block; overflow: hidden; padding-right: .05em; transform: translateY(115%); opacity: 0; animation: wordReveal .95s cubic-bezier(.16,.84,.3,1) forwards; }
.hero-word-main { font-size: clamp(82px, 9.4vw, 132px); color: #f4f4f1; }
.hero-word-accent { margin-left: .42em; font-size: clamp(82px, 9.4vw, 132px); color: var(--orange); animation-delay: .09s; text-shadow: 0 12px 44px rgba(255,114,0,.09); }
.hero-word-sub { margin-top: 16px; margin-left: .22em; font-family: "Manrope", sans-serif; font-size: clamp(11px, 1.25vw, 15px); line-height: 1; letter-spacing: .58em; color: #777d84; animation-delay: .18s; }
.hero-statement { display: grid; grid-template-columns: 2px 1fr; gap: 16px; align-items: stretch; max-width: 620px; margin-top: 31px; }
.statement-mark { background: linear-gradient(var(--orange), rgba(255,114,0,.1)); }
.hero-statement p { color: #9aa0a7; font-size: 13px; line-height: 1.9; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.action { position: relative; min-height: 60px; display: flex; align-items: center; gap: 13px; padding: 0 17px; border: 1px solid var(--line-strong); overflow: hidden; clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px)); transition: transform .22s ease, border-color .22s ease, background .22s ease; }
.action::after { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, transparent 20%, rgba(255,255,255,.12) 43%, transparent 64%); transform: translateX(-120%); transition: transform .55s ease; }
.action:hover::after { transform: translateX(120%); }
.action:hover { transform: translateY(-3px); }
.action-primary { min-width: 220px; background: var(--orange); color: #0b0b0b; border-color: var(--orange); }
.action-secondary { min-width: 185px; background: rgba(255,255,255,.025); }
.action-secondary:hover { border-color: var(--line-orange); background: var(--orange-soft); }
.action-icon { width: 33px; height: 33px; display: grid; place-items: center; background: rgba(0,0,0,.13); font-size: 10px; }
.action-copy { display: grid; gap: 3px; min-width: 0; }
.action-copy small { font-size: 7px; font-weight: 800; letter-spacing: .16em; opacity: .65; }
.action-copy strong { font-family: "Barlow Condensed", sans-serif; font-size: 16px; letter-spacing: .05em; text-transform: uppercase; }
.action-arrow { margin-left: auto; font-size: 10px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 42px; margin-top: 41px; padding-top: 21px; border-top: 1px solid var(--line); }
.hero-meta div { position: relative; display: grid; gap: 6px; }
.hero-meta div + div::before { content: ""; position: absolute; left: -21px; top: 4px; bottom: 4px; width: 1px; background: var(--line); }
.hero-meta span { color: #565b61; font-size: 7px; font-weight: 800; letter-spacing: .17em; }
.hero-meta strong { color: #d6d8d9; font-size: 10px; font-weight: 700; }

.hero-visual { position: relative; min-height: 550px; display: grid; place-items: center; }
.visual-frame { position: relative; width: min(96%, 485px); aspect-ratio: 1; display: grid; place-items: center; transition: transform .18s ease-out; will-change: transform; }
.visual-frame::before { content: ""; position: absolute; inset: 5%; border: 1px solid rgba(255,255,255,.055); transform: rotate(45deg); }
.visual-frame::after { content: ""; position: absolute; inset: 19%; border: 1px dashed rgba(255,114,0,.15); border-radius: 50%; animation: reverseSpin 25s linear infinite; }
.corner { position: absolute; width: 36px; height: 36px; border-color: rgba(255,114,0,.46); border-style: solid; z-index: 2; }
.corner-tl { top: 0; left: 0; border-width: 1px 0 0 1px; }
.corner-tr { top: 0; right: 0; border-width: 1px 1px 0 0; }
.corner-bl { bottom: 0; left: 0; border-width: 0 0 1px 1px; }
.corner-br { bottom: 0; right: 0; border-width: 0 1px 1px 0; }
.orbit { position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,.075); }
.orbit-outer { inset: 7%; animation: spin 24s linear infinite; }
.orbit-inner { inset: 27%; border-color: rgba(255,114,0,.17); animation: reverseSpin 16s linear infinite; }
.orbit span { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 16px rgba(255,114,0,.82); }
.orbit-outer span { top: -4px; left: 51%; }
.orbit-inner span { bottom: -4px; right: 30%; width: 5px; height: 5px; }
.logo-halo { position: absolute; width: 58%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(255,114,0,.10) 0%, rgba(255,114,0,.03) 38%, transparent 70%); filter: blur(6px); animation: pulseHalo 4.5s ease-in-out infinite; }
.hero-logo { position: relative; z-index: 1; width: 53%; object-fit: contain; filter: drop-shadow(0 28px 45px rgba(0,0,0,.45)); animation: logoFloat 5.4s ease-in-out infinite; }
.visual-label { position: absolute; color: #4f545a; font-size: 7px; font-weight: 800; letter-spacing: .18em; }
.label-top { top: 16px; left: 55px; }
.label-side { right: -72px; top: 48%; transform: rotate(90deg); }
.status-panel { position: absolute; left: 8%; right: 4%; bottom: -7px; z-index: 3; border: 1px solid var(--line-strong); background: rgba(11,13,16,.9); backdrop-filter: blur(18px); clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%); box-shadow: 0 26px 70px rgba(0,0,0,.33); animation: statusFloat 6s ease-in-out infinite; }
.status-panel::before { content: ""; position: absolute; left: 0; top: 0; width: 92px; height: 1px; background: var(--orange); }
.status-topline { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 15px 17px; border-bottom: 1px solid var(--line); }
.status-title { display: flex; align-items: center; gap: 10px; }
.status-title div { display: grid; gap: 2px; }
.status-title small { color: #5b6067; font-size: 7px; font-weight: 800; letter-spacing: .16em; }
.status-title strong { font-family: "Barlow Condensed", sans-serif; font-size: 14px; letter-spacing: .12em; color: var(--green); }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(97,211,155,.4); animation: livePulse 1.8s infinite; }
.status-code { color: var(--orange); font-family: "Barlow Condensed", sans-serif; font-size: 10px; font-weight: 800; letter-spacing: .15em; }
.status-grid { display: grid; grid-template-columns: 1.35fr 1fr .8fr; }
.status-grid div { padding: 13px 17px 15px; display: grid; gap: 5px; }
.status-grid div + div { border-left: 1px solid var(--line); }
.status-grid span { color: #53585f; font-size: 7px; font-weight: 800; letter-spacing: .16em; }
.status-grid strong { color: #d7d8da; font-size: 9px; font-weight: 700; white-space: nowrap; }
.scroll-cue { position: absolute; left: 50%; bottom: 23px; transform: translateX(-50%); display: flex; align-items: center; gap: 10px; color: #4f545a; font-size: 7px; font-weight: 800; letter-spacing: .22em; writing-mode: horizontal-tb; }
.scroll-cue i { color: var(--orange); animation: bounceDown 1.7s ease-in-out infinite; }

.section { position: relative; padding: 116px 0; }
.section::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent); }
.section-about { background: #0a0c0f; }
.section-server { background: #0c0f12; overflow: hidden; }
.section-server::after { content: "CITY"; position: absolute; right: -16px; bottom: -37px; color: rgba(255,255,255,.018); font-family: "Barlow Condensed", sans-serif; font-size: clamp(130px, 20vw, 290px); font-weight: 800; line-height: .75; pointer-events: none; }
.section-rules { background: #090b0d; }
.section-team { background: #0b0d10; }
.section-intro { display: grid; grid-template-columns: 120px minmax(0, 1fr) 360px; gap: 32px; align-items: end; }
.section-code { align-self: start; padding-top: 5px; color: #4d5258; font-family: "Barlow Condensed", sans-serif; font-size: 10px; font-weight: 800; letter-spacing: .16em; }
.kicker { color: var(--orange); font-size: 8px; font-weight: 800; letter-spacing: .22em; }
.section-title-wrap h2, .server-copy h2, .rules-copy h2 { margin-top: 12px; font-family: "Barlow Condensed", sans-serif; font-size: clamp(48px, 5.5vw, 76px); line-height: .91; letter-spacing: -.025em; text-transform: uppercase; }
h2 em { color: var(--orange); font-style: normal; font-weight: 800; }
.section-intro-text, .server-copy p, .rules-copy p { color: #8f959c; font-size: 12px; line-height: 1.9; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 58px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.feature { position: relative; min-height: 300px; padding: 23px 22px 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: linear-gradient(180deg, rgba(255,255,255,.018), transparent); overflow: hidden; transition: background .3s ease; }
.feature::before { content: ""; position: absolute; width: 220px; height: 220px; left: var(--mx,50%); top: var(--my,50%); transform: translate(-50%,-50%); background: radial-gradient(circle, rgba(255,114,0,.1), transparent 65%); opacity: 0; transition: opacity .25s ease; pointer-events: none; }
.feature:hover::before { opacity: 1; }
.feature-index { position: absolute; right: 18px; top: 16px; color: #383c41; font-family: "Barlow Condensed", sans-serif; font-size: 34px; font-weight: 800; letter-spacing: -.03em; transition: color .25s ease; }
.feature:hover .feature-index { color: rgba(255,114,0,.35); }
.feature-icon { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,114,0,.22); color: var(--orange); background: rgba(255,114,0,.045); font-size: 13px; clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px)); }
.feature h3 { margin-top: 84px; max-width: 185px; font-family: "Barlow Condensed", sans-serif; font-size: 24px; line-height: .98; letter-spacing: .01em; text-transform: uppercase; }
.feature p { margin-top: 13px; color: #858b92; font-size: 11px; line-height: 1.75; }
.feature-line { position: absolute; left: 22px; bottom: 0; width: 0; height: 2px; background: var(--orange); transition: width .35s cubic-bezier(.2,.8,.2,1); }
.feature:hover .feature-line { width: 72px; }

.server-layout, .rules-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 86px; align-items: start; }
.server-copy, .rules-copy { position: sticky; top: calc(var(--header) + 40px); }
.server-copy .section-code, .rules-copy .section-code { margin-bottom: 46px; }
.server-copy p, .rules-copy p { max-width: 470px; margin-top: 21px; }
.inline-link { display: inline-flex; align-items: center; gap: 12px; margin-top: 28px; color: #f1f1ef; font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.inline-link i { color: var(--orange); transition: transform .2s ease; }
.inline-link:hover i { transform: translateX(5px); }
.server-modules { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.module { position: relative; min-height: 240px; padding: 22px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; transition: background .25s ease; }
.module::before { content: attr(data-module); position: absolute; right: 13px; bottom: -20px; color: rgba(255,255,255,.025); font-family: "Barlow Condensed", sans-serif; font-size: 106px; font-weight: 800; line-height: 1; transition: color .25s ease, transform .25s ease; }
.module:hover { background: rgba(255,114,0,.035); }
.module:hover::before { color: rgba(255,114,0,.07); transform: translateY(-5px); }
.module-top { display: flex; align-items: center; justify-content: space-between; color: #555b61; }
.module-top span { font-size: 7px; font-weight: 800; letter-spacing: .17em; }
.module-top i { color: var(--orange); font-size: 11px; }
.module h3 { margin-top: 66px; font-family: "Barlow Condensed", sans-serif; font-size: 31px; text-transform: uppercase; }
.module p { max-width: 240px; margin-top: 8px; color: #7f858c; font-size: 10px; line-height: 1.7; }
.module-arrow { position: absolute; right: 18px; bottom: 17px; width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid var(--line); color: #555b61; font-size: 8px; transition: color .2s ease, border-color .2s ease, transform .2s ease; }
.module:hover .module-arrow { color: var(--orange); border-color: rgba(255,114,0,.3); transform: translate(2px,-2px); }

.rules {
  display: grid;
  gap: 12px;
  border-top: 0;
}

.rules details {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.018), rgba(255,255,255,.006));
  clip-path: polygon(0 0, calc(100% - 13px) 0, 100% 13px, 100% 100%, 0 100%);
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}

.rules details::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 0;
  background: var(--orange);
  box-shadow: 0 0 20px rgba(255,114,0,.35);
  transition: height .28s ease;
}

.rules details:hover {
  border-color: rgba(255,114,0,.18);
  background: rgba(255,255,255,.019);
}

.rules details[open] {
  border-color: rgba(255,114,0,.22);
  background: linear-gradient(180deg, rgba(255,114,0,.035), rgba(255,255,255,.008) 150px);
}

.rules details[open]::before { height: 100%; }

.rules summary {
  list-style: none;
  min-height: 76px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 14px;
  padding: 0 18px 0 20px;
  cursor: pointer;
  user-select: none;
}

.rules summary::-webkit-details-marker { display: none; }

.rules summary > span {
  color: var(--orange);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
}

.rules summary > strong {
  min-width: 0;
  font-family: "Barlow Condensed", sans-serif;
  color: #f2f2ef;
  font-size: 21px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .025em;
  text-transform: uppercase;
}

.rules summary > i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,.015);
  color: #737980;
  font-size: 8px;
  transform: rotate(0deg);
  transition: transform .28s cubic-bezier(.2,.8,.2,1), color .2s ease, border-color .2s ease, background .2s ease;
}

.rules details[open] summary > i {
  transform: rotate(45deg);
  color: var(--orange);
  border-color: rgba(255,114,0,.34);
  background: var(--orange-soft);
}

.rule-content {
  margin: 0 18px 18px 66px;
  padding: 4px 0 2px 20px;
  border-left: 1px solid rgba(255,255,255,.075);
  animation: accordionIn .28s ease both;
}

.rule-content h4 {
  position: relative;
  margin: 22px 0 7px;
  color: #f1f2ef;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: .015em;
}

.rule-content h4:first-child { margin-top: 8px; }

.rule-content h4::before {
  content: "";
  position: absolute;
  left: -25px;
  top: 8px;
  width: 8px;
  height: 1px;
  background: var(--orange);
  box-shadow: 0 0 10px rgba(255,114,0,.45);
}

.rules .rule-content p {
  max-width: 760px;
  padding: 0;
  margin: 0 0 12px;
  color: #8f959c;
  font-size: 11px;
  line-height: 1.85;
  animation: none;
}

.rules .rule-content p strong,
.rules .rule-content li strong {
  color: #dcdedb;
  font-weight: 700;
}

.rule-content ul {
  display: grid;
  gap: 8px;
  margin: 10px 0 18px;
  padding: 0;
  list-style: none;
}

.rule-content li {
  position: relative;
  padding: 10px 12px 10px 30px;
  border: 1px solid rgba(255,255,255,.055);
  background: rgba(255,255,255,.012);
  color: #8f959c;
  font-size: 10.5px;
  line-height: 1.55;
}

.rule-content li::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 50%;
  width: 5px;
  height: 5px;
  transform: translateY(-50%) rotate(45deg);
  background: var(--orange);
  box-shadow: 0 0 10px rgba(255,114,0,.3);
}

@media (max-width: 720px) {
  .rules { gap: 8px; }
  .rules summary {
    min-height: 68px;
    grid-template-columns: 36px minmax(0, 1fr) 30px;
    gap: 10px;
    padding: 0 12px 0 14px;
  }
  .rules summary > strong { font-size: 18px; }
  .rules summary > i { width: 30px; height: 30px; }
  .rule-content {
    margin: 0 14px 14px 14px;
    padding: 2px 0 1px 16px;
  }
  .rule-content h4 { font-size: 17px; }
  .rule-content h4::before { left: -21px; }
  .rules .rule-content p { font-size: 10.5px; line-height: 1.75; }
}

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 58px; background: var(--line); border: 1px solid var(--line); }
.team-card { position: relative; min-height: 245px; padding: 22px; background: #0d1013; overflow: hidden; opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.8,.2,1), background .25s ease; }
.team-card.visible { opacity: 1; transform: translateY(0); }
.team-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,114,0,.08), transparent 45%); opacity: 0; transition: opacity .25s ease; }
.team-card:hover { background: #101419; }
.team-card:hover::before { opacity: 1; }
.team-card-index { position: absolute; right: 16px; top: 13px; color: #34383d; font-family: "Barlow Condensed", sans-serif; font-size: 28px; font-weight: 800; }
.team-avatar { position: relative; z-index: 1; width: 62px; height: 62px; display: grid; place-items: center; border: 1px solid rgba(255,114,0,.22); background: #11151a; color: var(--orange); font-family: "Barlow Condensed", sans-serif; font-size: 21px; font-weight: 800; letter-spacing: .04em; clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px)); }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-content { position: relative; z-index: 1; margin-top: 52px; }
.team-content h3 { font-family: "Barlow Condensed", sans-serif; font-size: 27px; line-height: 1; text-transform: uppercase; }
.team-content p { margin-top: 6px; color: #767c83; font-size: 10px; }
.team-role { display: inline-flex; margin-top: 14px; padding-top: 10px; border-top: 1px solid var(--line); color: var(--orange); font-size: 7px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }

.site-footer { border-top: 1px solid var(--line); background: #070809; padding: 24px 0; }
.footer-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; }
.footer-brand { display: inline-flex; align-items: center; gap: 10px; }
.footer-mark { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid var(--line-strong); }
.footer-mark img { width: 25px; height: 25px; object-fit: contain; }
.footer-brand > span:last-child { display: grid; line-height: 1; }
.footer-brand strong { font-family: "Barlow Condensed", sans-serif; font-size: 15px; letter-spacing: .12em; }
.footer-brand small { margin-top: 4px; color: #4e5359; font-size: 7px; font-weight: 800; letter-spacing: .2em; }
.footer-inner > p { color: #4c5157; font-size: 7px; font-weight: 700; letter-spacing: .11em; }
.footer-socials { justify-self: end; display: flex; gap: 7px; }
.footer-socials a { width: 33px; height: 33px; display: grid; place-items: center; border: 1px solid var(--line); color: #777c82; font-size: 9px; transition: color .2s ease, border-color .2s ease, transform .2s ease; }
.footer-socials a:hover { color: var(--orange); border-color: rgba(255,114,0,.3); transform: translateY(-2px); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.2,.75,.25,1), transform .7s cubic-bezier(.2,.75,.25,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

@keyframes wordReveal { to { transform: translateY(0); opacity: 1; } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes reverseSpin { to { transform: rotate(-360deg); } }
@keyframes gridMove { to { background-position: 64px 64px, 64px 64px; } }
@keyframes logoFloat { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-9px) rotate(1deg); } }
@keyframes pulseHalo { 0%,100% { transform: scale(.94); opacity: .7; } 50% { transform: scale(1.08); opacity: 1; } }
@keyframes livePulse { 0% { box-shadow: 0 0 0 0 rgba(97,211,155,.38); } 70% { box-shadow: 0 0 0 8px rgba(97,211,155,0); } 100% { box-shadow: 0 0 0 0 rgba(97,211,155,0); } }
@keyframes statusFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
@keyframes bounceDown { 0%,100% { transform: translateY(-2px); } 50% { transform: translateY(4px); } }
@keyframes accordionIn { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: translateY(0); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal, .team-card, .hero-word { opacity: 1; transform: none; }
}

@media (max-width: 1020px) {
  .desktop-nav, .discord-link { display: none; }
  .menu-button { display: grid; }
  .header-actions { min-width: auto; }
  .mobile-nav { position: fixed; top: var(--header); left: 0; right: 0; display: grid; gap: 2px; padding: 12px 22px 18px; border-bottom: 1px solid var(--line); background: rgba(8,9,11,.97); transform: translateY(-125%); opacity: 0; pointer-events: none; transition: transform .25s ease, opacity .25s ease; }
  .mobile-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .mobile-nav a { padding: 12px 8px; color: #8b9096; border-bottom: 1px solid var(--line); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { min-height: 500px; }
  .section-intro { grid-template-columns: 90px 1fr; }
  .section-intro-text { grid-column: 2; max-width: 650px; }
  .server-layout, .rules-layout { grid-template-columns: 1fr; gap: 56px; }
  .server-copy, .rules-copy { position: static; }
}

@media (max-width: 760px) {
  :root { --header: 72px; }
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .brand { min-width: 0; }
  .brand-copy small { display: none; }
  .hero-inner { padding: 72px 0 90px; }
  .hero-word-main, .hero-word-accent { font-size: clamp(72px, 24vw, 104px); }
  .hero-word-accent { margin-left: .16em; }
  .hero-word-sub { margin-left: .12em; letter-spacing: .4em; }
  .hero-actions { flex-direction: column; }
  .action { width: 100%; }
  .hero-meta { gap: 22px 28px; }
  .hero-meta div + div::before { display: none; }
  .hero-visual { min-height: 410px; }
  .visual-frame { width: min(92%, 390px); }
  .label-side { display: none; }
  .status-panel { left: 0; right: 0; }
  .status-grid { grid-template-columns: 1fr 1fr; }
  .status-grid div:last-child { display: none; }
  .section { padding: 86px 0; }
  .section-intro { grid-template-columns: 1fr; gap: 17px; }
  .section-intro-text { grid-column: auto; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .server-modules { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; justify-items: start; }
  .footer-socials { justify-self: start; }
}

@media (max-width: 520px) {
  .brand-mark { width: 39px; height: 39px; }
  .brand-copy strong { font-size: 17px; }
  .eyebrow { font-size: 7px; }
  .hero-word-main, .hero-word-accent { font-size: clamp(64px, 25vw, 88px); }
  .hero-statement p { font-size: 11px; }
  .hero-visual { min-height: 350px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature { min-height: 250px; }
  .feature h3 { margin-top: 58px; }
  .section-title-wrap h2, .server-copy h2, .rules-copy h2 { font-size: 48px; }
  .rules summary { grid-template-columns: 34px 1fr 28px; }
  .rules summary strong { font-size: 18px; }
  .status-grid { grid-template-columns: 1fr; }
  .status-grid div:nth-child(2) { display: none; }
}
