:root {
  --bg: #0b0d12;
  --panel: #12151d;
  --panel-2: #171b24;
  --border: #232a38;
  --border-soft: #1c222e;
  --ink: #e9ecf3;
  --dim: #9aa4b5;
  --faint: #67718a;
  --accent: #e2b155;
  --accent-soft: rgba(226, 177, 85, 0.12);
  --radius: 12px;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono: "Inter", system-ui, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--accent);
  color: #211503;
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: #2a3242;
  border-radius: 99px;
}
::-webkit-scrollbar-thumb:hover {
  background: #39445a;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
}

img,
svg {
  max-width: 100%;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.wrap {
  width: min(1140px, calc(100% - 48px));
  margin: 0 auto;
}

.wrap.wide {
  width: min(1320px, calc(100% - 48px));
}

.wrap.narrow {
  width: min(780px, calc(100% - 48px));
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(11, 13, 18, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.scrolled {
  background: rgba(11, 13, 18, 0.93);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.header-inner {
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16.5px;
  font-weight: 800;
  letter-spacing: -0.4px;
  white-space: nowrap;
}

.logo-mark {
  width: 23px;
  height: 23px;
  flex-shrink: 0;
  filter: drop-shadow(0 3px 8px rgba(226, 177, 85, 0.25));
}

.logo span {
  color: var(--accent);
}

.logo i {
  font-style: normal;
  font-weight: 600;
  color: var(--faint);
}

.nav-island {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(18, 21, 29, 0.72);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  padding: 5px;
}

.nav-island a {
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--dim);
  transition: color 0.15s ease, background 0.15s ease;
}

.nav-island a:hover {
  color: var(--ink);
}

.nav-island a.active {
  color: var(--accent);
  background: var(--accent-soft);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  color: var(--dim);
}

.burger svg {
  width: 20px;
  height: 20px;
}

.burger .ic-open {
  display: block;
}

.burger .ic-close {
  display: none;
}

.burger.open .ic-open {
  display: none;
}

.burger.open .ic-close {
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  padding: 12px 20px;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.btn svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.sm {
  padding: 9px 14px;
  font-size: 13px;
  border-radius: 9px;
}

.btn.lg {
  padding: 15px 26px;
  font-size: 15px;
}

.btn.block {
  width: 100%;
}

.btn.solid {
  background: var(--accent);
  color: #211503;
}

.btn.solid:hover {
  background: #edc06a;
  box-shadow: 0 8px 24px rgba(226, 177, 85, 0.25);
}

.btn.ghost {
  border: 1px solid var(--border);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.02);
}

.btn.ghost:hover {
  border-color: #37415a;
  background: rgba(255, 255, 255, 0.04);
}

.btn-discord svg {
  color: #8ea1f2;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 128px 0 60px;
  background:
    radial-gradient(ellipse 55% 45% at 72% 18%, rgba(226, 177, 85, 0.09), transparent 65%),
    radial-gradient(ellipse 40% 40% at 12% 80%, rgba(87, 200, 234, 0.05), transparent 60%);
}

#waterFx {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero .wrap {
  position: relative;
  z-index: 1;
}

.hero-h1 {
  font-size: clamp(40px, 6.4vw, 74px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 26px;
}

.hero-lower {
  display: grid;
  grid-template-columns: minmax(0, 500px) auto;
  justify-content: space-between;
  align-items: end;
  gap: 44px;
}

.hero-sub {
  font-size: 16px;
  color: var(--dim);
  margin-bottom: 24px;
  max-width: 52ch;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-bottom: 20px;
}

.hero-stats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 13px;
  font-size: 12.5px;
  color: var(--faint);
}

.hero-stats b {
  color: var(--dim);
  font-weight: 500;
}

.hero-stats span {
  opacity: 0.5;
}

.hero-art {
  width: 340px;
}

.hero-art svg {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 26px 44px rgba(0, 0, 0, 0.38));
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 46px;
  background: rgba(18, 21, 29, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
}

.stat-cell {
  padding: 16px 22px 15px;
  border-left: 1px solid var(--border-soft);
}

.stat-cell:first-child {
  border-left: none;
}

.stat-cell b {
  display: block;
  font-family: var(--mono);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.6px;
  color: var(--accent);
  margin-bottom: 1px;
}

.stat-cell span {
  font-size: 12.5px;
  color: var(--dim);
}

.bob1 {
  animation: bob1 5.2s ease-in-out infinite;
}

.bob2 {
  animation: bob2 4.1s ease-in-out infinite;
}

.bob3 {
  animation: bob3 6.4s ease-in-out infinite;
}

@keyframes bob1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@keyframes bob2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes bob3 {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(-12px); opacity: 0.55; }
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: var(--panel);
}

.section + .section {
  border-top: 1px solid var(--border-soft);
}

.hero + .section {
  border-top: none;
}

section[id] {
  scroll-margin-top: 72px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--accent);
  margin-bottom: 12px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--accent);
  opacity: 0.6;
}

.row-head.center .eyebrow {
  justify-content: center;
}

.row-head.center .eyebrow::before,
.row-head.center .eyebrow::after {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--accent);
  opacity: 0.7;
}

.section-title {
  font-size: clamp(24px, 3vw, 31px);
  font-weight: 800;
  letter-spacing: -0.9px;
  line-height: 1.14;
}

.side-note {
  color: var(--dim);
  font-size: 14px;
  margin-top: 12px;
  max-width: 34ch;
}

.split-head {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 46px;
  align-items: start;
}

.split-head .section-title {
  font-size: clamp(22px, 2.6vw, 28px);
}

.row-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 24px;
}

.row-sub {
  color: var(--dim);
  font-size: 14.5px;
  max-width: 380px;
  padding-bottom: 4px;
}

.row-head.center {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  margin-bottom: 32px;
}

.row-head.center .eyebrow {
  margin-bottom: 0;
}

.row-head.center .row-sub {
  padding-bottom: 0;
}

.vs-wrap {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  background: var(--bg);
  overflow-x: auto;
}

.vs-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
}

.vs-table th,
.vs-table td {
  padding: 12px 16px;
  text-align: left;
  font-size: 13.5px;
  border-bottom: 1px solid var(--border-soft);
}

.vs-table tr:last-child td {
  border-bottom: none;
}

.vs-table thead th {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  color: var(--faint);
  white-space: nowrap;
}

.vs-table tbody td:first-child {
  font-size: 12.5px;
  color: var(--faint);
}

.vs-table th:not(:first-child),
.vs-table td:not(:first-child) {
  text-align: center;
}

.vs-table .hl {
  background: var(--accent-soft);
  color: var(--ink);
  font-weight: 600;
}

.why-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 36px;
}

.why-row > div {
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

.why-row h3 {
  font-size: 14.5px;
  font-weight: 700;
  margin-bottom: 6px;
}

.why-row p {
  font-size: 13.5px;
  color: var(--dim);
}

.mod-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.cat {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--dim);
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.cat i {
  font-style: normal;
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--faint);
}

.cat:hover {
  color: var(--ink);
  border-color: var(--border);
}

.cat.active {
  color: var(--accent);
  border-color: rgba(226, 177, 85, 0.5);
  background: var(--accent-soft);
}

.cat.active i {
  color: var(--accent);
}

.mod-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mod-row {
  background: var(--panel);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 14px 16px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.section.alt .mod-row {
  background: var(--bg);
}

.mod-row:hover {
  border-color: rgba(226, 177, 85, 0.4);
  transform: translateY(-1px);
}

.mod-head {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 5px;
}

.mod-ico {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  color: var(--accent);
  opacity: 0.9;
}

.mod-row strong {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.2px;
}

.mod-row p {
  font-size: 12.5px;
  color: var(--dim);
  line-height: 1.5;
}

.clip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.clip-card {
  background: var(--panel);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.clip-card:hover {
  border-color: var(--border);
}

.clip-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 16%, rgba(248, 250, 252, 0.07), transparent 40%),
    linear-gradient(180deg, #1d2942 0%, #131a2b 58%, #0e1320 100%);
}

.art {
  position: absolute;
  inset: 0;
  display: none;
}

.art.active {
  display: block;
}

.art svg {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.clip-card:hover .art.active svg {
  transform: scale(1.045);
}

.clip-tag {
  position: absolute;
  left: 12px;
  bottom: 10px;
  background: rgba(7, 9, 14, 0.74);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  padding: 5px 10px;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--dim);
}

.clip-tag b {
  color: var(--accent);
  font-weight: 500;
}

.clip-body {
  padding: 14px 16px 16px;
}

.clip-body h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.chip {
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  font-size: 12px;
  font-weight: 500;
  color: var(--dim);
  cursor: pointer;
  transition: all 0.15s ease;
}

.chip:hover {
  color: var(--ink);
  border-color: var(--border);
}

.chip.active {
  color: var(--accent);
  border-color: rgba(226, 177, 85, 0.5);
  background: var(--accent-soft);
}

.launch-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-top: 22px;
}

.install-label {
  font-family: var(--mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--faint);
  margin-bottom: 2px;
}

.launch-chip {
  padding: 7px 14px;
  border-radius: 9px;
  border: 1px solid var(--border);
  background: var(--bg);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--dim);
}

.launch-chip.dim {
  border-style: dashed;
  color: var(--faint);
  font-weight: 500;
  background: transparent;
}

.steps {
  list-style: none;
  counter-reset: step;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.steps li {
  position: relative;
  counter-increment: step;
  background: var(--bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 17px 16px 15px 60px;
}

.steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 17px;
  top: 17px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  border: 1px solid rgba(226, 177, 85, 0.3);
  border-radius: 8px;
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--accent);
}

.steps h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 3px;
}

.steps p {
  font-size: 13px;
  color: var(--dim);
}

.help-line {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  border-top: 1px dashed var(--border);
  padding-top: 16px;
}

.help-line p {
  font-size: 13.5px;
  color: var(--dim);
}

code {
  font-family: var(--font);
  font-size: 0.88em;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-soft);
  border-radius: 5px;
  padding: 1.5px 6px;
  color: var(--ink);
}

kbd {
  font-family: var(--font);
  font-size: 0.82em;
  font-weight: 600;
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-bottom-width: 2px;
  border-radius: 5px;
  padding: 2px 6px;
  color: var(--ink);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 400px));
  justify-content: center;
  gap: 18px;
}

.price-card {
  background: var(--panel);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 26px;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border-color: rgba(226, 177, 85, 0.45);
  box-shadow: 0 0 0 1px rgba(226, 177, 85, 0.14), 0 24px 56px rgba(0, 0, 0, 0.35);
}

.plan-note {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  margin-bottom: 12px;
}

.price-card h3 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--dim);
  margin-bottom: 8px;
}

.amount {
  font-family: var(--mono);
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.amount i {
  font-family: var(--font);
  font-style: normal;
  font-size: 13px;
  font-weight: 500;
  color: var(--faint);
  letter-spacing: 0;
  margin-left: 4px;
}

.price-card ul {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}

.price-card li {
  position: relative;
  padding-left: 22px;
  font-size: 13.5px;
  color: var(--dim);
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 2px;
  transform: rotate(45deg);
}

.pay-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.pay-label {
  font-family: var(--mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--faint);
  margin-right: 6px;
}

.pay-chip {
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--dim);
}

.pay-chip.dim {
  border-style: dashed;
  color: var(--faint);
}

.fine-note {
  text-align: center;
  font-size: 13px;
  color: var(--faint);
  margin-top: 18px;
}

.end-zone {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: start;
}

.faq-col .section-title {
  margin-bottom: 20px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.faq-list details {
  background: var(--panel);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  overflow: hidden;
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  padding-right: 42px;
  user-select: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--mono);
  font-size: 15px;
  color: var(--faint);
  transition: color 0.2s ease;
}

.faq-list details[open] summary::after {
  content: "\2212";
  color: var(--accent);
}

.faq-list details p {
  padding: 0 18px 16px;
  font-size: 13.5px;
  color: var(--dim);
}

.dj {
  display: flex;
  align-items: center;
  gap: 22px;
  background: var(--panel);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 24px 26px;
}

.section.alt .dj {
  background: var(--bg);
}

.dj-logo {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: #5865f2;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(88, 101, 242, 0.32);
}

.dj-logo svg {
  width: 28px;
  height: 28px;
}

.dj-text {
  flex-grow: 1;
  min-width: 0;
}

.dj-text h3 {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.4px;
  margin-bottom: 3px;
}

.dj-text p {
  font-size: 13.5px;
  color: var(--dim);
  max-width: 56ch;
}

.btn.discord {
  background: #5865f2;
  color: #fff;
  flex-shrink: 0;
}

.btn.discord:hover {
  background: #4a5be8;
  box-shadow: 0 8px 24px rgba(88, 101, 242, 0.3);
}

.dj.stack {
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}

.dj.stack .dj-text p {
  margin-bottom: 6px;
}

.dj-alt-link {
  font-size: 13px;
}

.roster-featured {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 22px;
  background:
    radial-gradient(ellipse 90% 130% at 0% -30%, rgba(226, 177, 85, 0.1), transparent 55%),
    var(--panel);
  border: 1px solid rgba(226, 177, 85, 0.35);
  border-radius: 14px;
  padding: 24px 26px;
}

.r-logo {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 11px;
  display: block;
}

.r-logo.big {
  width: 56px;
  height: 56px;
  border-radius: 13px;
  box-shadow: 0 10px 26px rgba(226, 177, 85, 0.25);
}

.rf-main {
  flex-grow: 1;
  min-width: 240px;
}

.rf-name {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 3px;
}

.rf-name h3 {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.4px;
}

.rf-name i {
  font-style: normal;
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--accent);
  border: 1px solid rgba(226, 177, 85, 0.45);
  border-radius: 4px;
  padding: 2px 7px;
}

.rf-main > p {
  font-size: 13.5px;
  color: var(--dim);
  max-width: 52ch;
}

.rf-price {
  text-align: right;
  flex-shrink: 0;
}

.rf-price b {
  display: block;
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -0.6px;
  color: var(--accent);
}

.rf-price b i {
  font-style: normal;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--faint);
}

.rf-price span {
  font-size: 11.5px;
  color: var(--faint);
}

.roster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.roster-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--panel);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 18px;
  transition: border-color 0.15s ease;
}

.roster-card:hover {
  border-color: var(--border);
}

.roster-card h3 {
  font-size: 14.5px;
  font-weight: 700;
  margin: 12px 0 3px;
}

.roster-card p {
  font-size: 12.5px;
  color: var(--dim);
  margin-bottom: 14px;
}

.rc-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dim);
  transition: color 0.15s ease;
}

.rc-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.15s ease;
}

.rc-link:hover {
  color: var(--accent);
}

.rc-link:hover svg {
  transform: translateX(2px);
}

.footer {
  border-top: 1px solid var(--border-soft);
  padding-top: 44px;
  background: var(--panel);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 34px;
}

.foot-brand p {
  margin-top: 14px;
  font-size: 13.5px;
  color: var(--dim);
  max-width: 34ch;
}

.foot-col h4 {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--faint);
  margin-bottom: 12px;
}

.foot-col a {
  display: block;
  font-size: 13.5px;
  color: var(--dim);
  margin-bottom: 9px;
  transition: color 0.15s ease;
}

.foot-col a:hover {
  color: var(--accent);
}

.foot-bottom {
  margin-top: 36px;
  border-top: 1px solid var(--border-soft);
  padding: 18px 0 22px;
}

.foot-bottom p {
  font-size: 12.5px;
  color: var(--faint);
}

.legal {
  padding: 124px 0 80px;
}

.legal h1 {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.legal-updated {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--faint);
  margin-bottom: 30px;
}

.legal h2 {
  font-size: 17px;
  font-weight: 700;
  margin: 28px 0 8px;
}

.legal p,
.legal li {
  font-size: 14.5px;
  color: var(--dim);
  max-width: 68ch;
}

.legal strong {
  color: var(--ink);
}

.legal ul {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.text-link {
  color: var(--accent);
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease;
}

.text-link:hover {
  border-color: var(--accent);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1020px) {
  .hero-lower {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-art {
    width: 300px;
    margin: 8px auto 0;
  }

  .stat-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-cell:nth-child(odd) {
    border-left: none;
  }

  .stat-cell:nth-child(n+3) {
    border-top: 1px solid var(--border-soft);
  }

  .split-head {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .side-note {
    max-width: 56ch;
  }

  .row-head:not(.center) {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .row-head:not(.center) .row-sub {
    padding-bottom: 0;
  }

  .mod-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .clip-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .end-zone {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 940px) {
  .nav-island {
    position: fixed;
    top: 70px;
    left: 16px;
    right: 16px;
    z-index: 49;
    flex-direction: column;
    align-items: stretch;
    border-radius: 14px;
    padding: 8px;
    background: rgba(14, 16, 23, 0.97);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  }

  .nav-island.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-island a {
    padding: 12px 15px;
    font-size: 14.5px;
  }

  .burger {
    display: flex;
  }

  .btn-discord {
    display: none;
  }
}

@media (max-width: 720px) {
  .hero {
    padding: 104px 0 48px;
  }

  .hero-art {
    display: none;
  }

  .hero-sub {
    font-size: 15px;
  }

  .stat-strip {
    margin-top: 34px;
  }

  .stat-cell {
    padding: 13px 16px 12px;
  }

  .stat-cell b {
    font-size: 17px;
  }

  .section {
    padding: 44px 0;
  }

  .wrap,
  .wrap.wide {
    width: calc(100% - 40px);
  }

  .mod-list {
    grid-template-columns: 1fr;
  }

  .clip-grid {
    grid-template-columns: 1fr;
  }

  .price-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .dj {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 22px;
  }

  .roster-featured {
    padding: 20px;
  }

  .rf-price {
    text-align: left;
  }

  .help-line {
    flex-direction: column;
    align-items: flex-start;
  }
}
