@font-face { 
  font-family: 'Bold';
  src: url('fonts/TTSupermolotNeue-CondBold.ttf');
}
@font-face { 
  font-family: 'Medium';
  src: url('fonts/TTSupermolotNeue-CondMed.ttf');
}
@font-face { 
  font-family: 'Black';
  src: url('fonts/TTSupermolotNeue-CondBlack.ttf');
}
@font-face { 
  font-family: 'DemiBold';
  src: url('fonts/TTSupermolotNeue-CondDBold.ttf');
}
@font-face { 
  font-family: 'Regular';
  src: url('fonts/TTSupermolotNeue-CondRegular.ttf');
}
@font-face { 
  font-family: 'ExtraBold';
  src: url('fonts/TTSupermolotNeue-CondXBold.ttf');
}

:root {
  --bg-0: #05060c;
  --bg-1: #090b14;
  --cyan: #a652ff;
  --cyan-soft: #c9a3ff;
  --magenta: #7317a1;
  --green: #34d399;
  --text-hi: #f3f6fb;
  --text-lo: #8b96ad;
  --border: rgba(140, 160, 200, 0.14);
  --panel: rgba(18, 22, 36, 0.55);
  --font-display: 'DemiBold';
  --font-body: 'DemiBold';
  
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  background: var(--bg-0);
  color: var(--text-hi);
  font-family: var(--font-body);
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
}

img, svg {
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: auto;
}

input,
textarea,
select,
[contenteditable="true"] {
  user-select: text;
  -webkit-user-select: text;
  -moz-user-select: text;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

/* ---------- Background layers ---------- */

.bg-city {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  z-index: -3;
  background-image: url("img/bg.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.bg-city::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 8%, rgba(166, 82, 255, 0.10), transparent 60%),
    linear-gradient(180deg, rgba(5, 7, 13, 0.55) 0%, rgba(8, 11, 20, 0.72) 45%, var(--bg-0) 100%);
}

.bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  z-index: -2;
  background-image:
    linear-gradient(rgba(201, 163, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 163, 255, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black, transparent 75%);
}

.bg-vignette {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(177, 75, 255, 0.10), transparent 70%),
    radial-gradient(ellipse 100% 60% at 50% 0%, rgba(0,0,0,0), rgba(2,4,9,0.5) 100%),
    linear-gradient(180deg, transparent 0%, var(--bg-0) 100%);
}



/* ---------- Navbar ---------- */

.navbar {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 22px 56px;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(6px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.logo-mark-img {
  height: 26px;
  width: auto;
  display: inline-block;
  filter: drop-shadow(0 0 6px rgba(166, 82, 255, 0.4));
}

.logo-text .accent {
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-lo);
}

.nav-links a {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 0;
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a .ico {
  font-style: normal;
  font-size: 13px;
  opacity: 0.85;
}

.nav-links a:hover {
  color: var(--text-hi);
}

.nav-links a.active {
  color: var(--text-hi);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -22px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  border-radius: 2px;
}

/* ---------- Dropdown (Information) ---------- */

.nav-item {
  position: relative;
}

.nav-item > a {
  display: flex;
  align-items: center;
  gap: 7px;
}

.nav-item.has-dropdown:hover > a {
  color: var(--cyan-soft);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 22px;
  min-width: 190px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s;
  z-index: 20;
}

.nav-item.has-dropdown:hover .dropdown,
.nav-item.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.dropdown-inner {
  position: relative;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid rgba(201, 163, 255, 0.18);
  background: linear-gradient(180deg, rgba(16, 21, 36, 0.96), rgba(9, 12, 22, 0.96));
  backdrop-filter: blur(12px);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset,
    0 0 24px rgba(166, 82, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow: hidden;
  transform: translateY(6px);
  transition: transform 0.18s ease;
}

.dropdown-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  border-radius: 2px;
  opacity: 0.9;
}

.nav-item.has-dropdown:hover .dropdown-inner,
.nav-item.has-dropdown:focus-within .dropdown-inner {
  transform: translateY(0);
}

.dropdown-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--text-lo);
  opacity: 0.85;
  transition: color 0.15s ease, opacity 0.15s ease;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 10px;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-lo);
  transition: color 0.15s ease, background 0.15s ease;
}

.dropdown-item:hover {
  color: var(--text-hi);
  background: rgba(201, 163, 255, 0.08);
}

.dropdown-item:hover .dropdown-icon {
  color: var(--cyan-soft);
  opacity: 1;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-lo);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.icon-btn:hover {
  color: var(--cyan);
  border-color: rgba(166, 82, 255, 0.4);
}

.link-btn {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-hi);
  opacity: 0.9;
}

.link-btn:hover {
  opacity: 1;
}

.btn-register {
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14.5px;
  color: #04141a;
  background: linear-gradient(90deg, var(--cyan-soft), var(--cyan));
  box-shadow: 0 0 18px rgba(166, 82, 255, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-register:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 26px rgba(166, 82, 255, 0.55);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  z-index: 5;
  min-height: calc(100vh - 82px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px 40px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--cyan-soft);
  padding: 9px 22px;
  border: 1px solid rgba(166, 82, 255, 0.35);
  border-radius: 999px;
  background: rgba(166, 82, 255, 0.06);
  margin-bottom: 42px;
}

.eyebrow-arrow {
  color: var(--magenta);
  font-size: 10px;
}

.title {
  font-family: var(--font-display);
  line-height: 1;
  margin-bottom: 40px;
}

.title-line {
  display: block;
  font-size: clamp(56px, 9vw, 108px);
  font-weight: 900;
  letter-spacing: 0.03em;
}

.title-white {
  color: var(--text-hi);
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.15);
}

.title-grad {
  background: linear-gradient(90deg, var(--cyan) 0%, var(--cyan-soft) 35%, var(--magenta) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 22px rgba(201, 163, 255, 0.25));
}

.subtitle {
  max-width: 640px;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 400;
  color: var(--text-lo);
  margin-bottom: 44px;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 70px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  color: #04141a;
  background: linear-gradient(90deg, var(--cyan-soft), var(--cyan));
  box-shadow: 0 0 22px rgba(166, 82, 255, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(166, 82, 255, 0.55);
}

.btn-secondary {
  color: var(--text-hi);
  background: var(--panel);
  border-color: var(--border);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(177, 75, 255, 0.45);
  box-shadow: 0 0 20px rgba(177, 75, 255, 0.18);
}

.scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-lo);
}

.mouse {
  width: 22px;
  height: 34px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.wheel {
  width: 3px;
  height: 7px;
  border-radius: 2px;
  background: var(--cyan-soft);
  animation: scrollWheel 1.6s ease-in-out infinite;
}

.scroll-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  font-weight: 600;
}

@keyframes scrollWheel {
  0%   { transform: translateY(0);   opacity: 1; }
  60%  { transform: translateY(8px); opacity: 0.2; }
  100% { transform: translateY(0);   opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .wheel {
    animation: none;
  }
}

/* ---------- FAQ ---------- */

.faq {
  position: relative;
  z-index: 5;
  max-width: 860px;
  margin: 0 auto;
  padding: 90px 24px 120px;
  text-align: center;
}

.faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}

.faq-item {
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--panel);
  backdrop-filter: blur(6px);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text-hi);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--cyan-soft);
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 22px 20px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-lo);
}

/* ---------- Footer ---------- */

.footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 95% 95% at 95% 0%, rgba(166, 82, 255, 0.10), transparent 65%),
    linear-gradient(180deg, rgba(9,11,20,0.95), var(--bg-0));
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.05;
  pointer-events: none;
}

.footer > * {
  position: relative;
  z-index: 1;
}

.footer-grid-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 60% 80% at 0% 0%, rgba(166, 82, 255, 0.06), transparent 60%),
    linear-gradient(rgba(201, 163, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 163, 255, 0.04) 1px, transparent 1px);
  background-size: auto, 48px 48px, 48px 48px;
}

.footer-top {
  max-width: 1320px;
  margin: 0 auto;
  padding: 64px 56px 48px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 40px;
}

.footer-logo {
  margin-bottom: 18px;
}

.footer-desc {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text-lo);
  margin-bottom: 22px;
  max-width: 340px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid var(--border);
  color: var(--text-lo);
  background: rgba(255, 255, 255, 0.02);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.social-btn:hover {
  color: var(--cyan-soft);
  border-color: rgba(166, 82, 255, 0.4);
  background: rgba(166, 82, 255, 0.06);
}

.footer-heading {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text-hi);
  padding-left: 12px;
  border-left: 2px solid var(--cyan);
  margin-bottom: 20px;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14.5px;
  color: var(--text-lo);
  padding: 7px 0;
  transition: color 0.15s ease;
}

.footer-link:hover {
  color: var(--cyan-soft);
}

.chevron-mini {
  color: var(--text-lo);
  font-size: 13px;
}

.status-card {
  padding: 18px 20px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(10, 13, 24, 0.5);
}

.status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  padding: 8px 0;
}

.status-label {
  color: var(--text-lo);
}

.status-value {
  font-weight: 700;
  color: var(--text-hi);
}

.status-value .status-of {
  font-weight: 500;
  color: var(--text-lo);
}

.status-cyan {
  color: var(--cyan-soft);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px rgba(52, 211, 153, 0.8);
}

.status-bar {
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  margin-top: 8px;
}

.status-fill {
  display: block;
  height: 100%;
  width: 57%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-soft));
}

.footer-bottom {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  padding: 22px 56px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
}

.footer-copy {
  font-size: 13px;
  color: var(--text-lo);
  max-width: 640px;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.footer-legal a {
  color: var(--text-lo);
  transition: color 0.15s ease;
}

.footer-legal a:hover {
  color: var(--cyan-soft);
}

.footer-divider {
  color: var(--border);
}

@media (max-width: 1080px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .footer-top {
    grid-template-columns: 1fr;
    padding: 48px 24px 32px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 24px 32px;
  }
}

.section-tint {
  position: relative;
  isolation: isolate;
}

.stats {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 40px 56px 90px;
}

.stat-card {
  padding: 26px 24px 22px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--panel);
  backdrop-filter: blur(6px);
  text-align: center;
}

.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.icon-cyan   { color: var(--cyan-soft); }
.icon-violet { color: var(--magenta); }
.icon-purple { color: #8b8fd6; }
.icon-green  { color: var(--green); }

.stat-value {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--text-hi);
  margin-bottom: 6px;
}

.stat-value .stat-of {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-lo);
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-lo);
  margin-bottom: 18px;
}

.stat-bar {
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.stat-fill {
  display: block;
  height: 100%;
  border-radius: 4px;
}

.fill-cyan   { background: linear-gradient(90deg, var(--cyan), var(--cyan-soft)); }
.fill-muted  { background: rgba(140, 150, 170, 0.5); }
.fill-violet { background: linear-gradient(90deg, var(--magenta), #7c5cff); }
.fill-green  { background: linear-gradient(90deg, var(--green), #6ee7a8); }

.why {
  position: relative;
  z-index: 5;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 24px 110px;
  text-align: center;
}

.section-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--cyan-soft);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 4vw, 46px);
  color: var(--text-hi);
  letter-spacing: 0.02em;
  margin-bottom: 22px;
}

.section-rule {
  display: block;
  width: 90px;
  height: 3px;
  margin: 0 auto 34px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
}

.section-subtitle {
  max-width: 640px;
  margin: 0 auto 56px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-lo);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  text-align: left;
}

.feature-card {
  padding: 30px 28px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--panel);
  backdrop-filter: blur(6px);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  margin-bottom: 22px;
  background: rgba(255, 255, 255, 0.04);
}

.feature-icon.icon-cyan   { background: rgba(166, 82, 255, 0.10); }
.feature-icon.icon-violet { background: rgba(177, 75, 255, 0.10); }
.feature-icon.icon-green  { background: rgba(52, 211, 153, 0.10); }

.feature-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--text-hi);
  margin-bottom: 12px;
}

.feature-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-lo);
}

.section-eyebrow.eyebrow-violet {
  color: var(--magenta);
}

/* ---------- Factions & careers ---------- */

.factions {
  position: relative;
  z-index: 5;
  max-width: 1140px;
  margin: 0 auto;
  padding: 90px 24px 30px;
  text-align: center;
}

.faction-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 56px;
  text-align: left;
}

.faction-card {
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--panel);
  backdrop-filter: blur(6px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.faction-media {
  position: relative;
  height: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-size: cover;
  background-position: center;
}

.faction-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 6, 12, 0.35), rgba(4, 6, 12, 0.75));
}

.faction-media-lspd { background-image: url("img/police.png"); }
.faction-media-safr  { background-image: url("img/lsmd.png"); }
.faction-media-under { background-image: url("img/hoj.png"); }

.faction-media-bs { background-image: url("img/bs.png"); }
.faction-media-hb { background-image: url("img/hn.png"); }
.faction-media-bad { background-image: url("img/bad.png"); }

.faction-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.faction-name {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.1em;
  color: #fff;
}

.faction-body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.faction-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-hi);
  margin-bottom: 12px;
  line-height: 1.3;
}

.faction-text {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-lo);
  margin-bottom: 22px;
  flex: 1;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px solid rgba(166, 82, 255, 0.4);
  color: var(--cyan-soft);
  font-size: 14.5px;
  font-weight: 600;
  text-align: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.btn-outline:hover {
  background: rgba(166, 82, 255, 0.08);
  border-color: rgba(166, 82, 255, 0.7);
}

/* ---------- Featured vehicles ---------- */

.vehicles {
  position: relative;
  z-index: 5;
  max-width: 1140px;
  margin: 0 auto;
  padding: 90px 24px 120px;
  text-align: center;
}

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 56px;
  text-align: left;
}

.vehicle-card {
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--panel);
  backdrop-filter: blur(6px);
  overflow: hidden;
}

.vehicle-media {
  height: 190px;
  background-size: cover;
  background-position: center;
}

.vehicle-media-1 { background-image: linear-gradient(135deg, #3a1f14, #7a3a1f 40%, #14202e 100%); }
.vehicle-media-2 { background-image: linear-gradient(135deg, #0d2030, #1c3a56 40%, #2a1240 100%); }
.vehicle-media-3 { background-image: linear-gradient(135deg, #0a1522, #14283d 45%, #1c1030 100%); }

.vehicle-body {
  padding: 20px 22px 24px;
}

.vehicle-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.vehicle-title {
  font-family: var(--font-display);
  font-size: 16.5px;
  font-weight: 700;
  color: var(--text-hi);
  line-height: 1.35;
}

.vehicle-price {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  padding-top: 2px;
}

.price-cyan   { color: var(--cyan-soft); }
.price-violet { color: var(--magenta); }
.price-green  { color: var(--green); }

.vehicle-text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-lo);
}

@media (max-width: 980px) {
  .faction-grid,
  .vehicle-grid {
    grid-template-columns: 1fr;
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .stats {
    grid-template-columns: 1fr;
    padding: 32px 20px 70px;
  }
}

@media (max-width: 1080px) {
  .nav-links {
    display: none;
  }
  .navbar {
    padding: 20px 28px;
  }
}

@media (max-width: 640px) {
  .navbar {
    padding: 16px 18px;
  }
  .logo-text {
    font-size: 14px;
  }
  .cta-row {
    flex-direction: column;
    width: 100%;
  }
  .btn {
    width: 100%;
    justify-content: center;
  }
  .subtitle {
    font-size: 16px;
  }
}

/* ==========================================================
   Contact page
   ========================================================== */

.page-hero {
  position: relative;
  z-index: 5;
  max-width: 720px;
  margin: 0 auto;
  padding: 90px 24px 10px;
  text-align: center;
}

.contact {
  position: relative;
  z-index: 5;
  max-width: 1140px;
  margin: 0 auto;
  padding: 50px 24px 130px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  margin-top: 20px;
  align-items: start;
}

/* ---- Form panel ---- */

.contact-form-card {
  padding: 36px 36px 32px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--panel);
  backdrop-filter: blur(6px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.field label {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-lo);
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(6, 8, 16, 0.55);
  color: var(--text-hi);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(139, 150, 173, 0.6);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(166, 82, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(166, 82, 255, 0.12);
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238b96ad' stroke-width='2'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  cursor: pointer;
}

.field-note {
  font-size: 12.5px;
  color: var(--text-lo);
  margin-top: -8px;
  margin-bottom: 22px;
}

.form-submit {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.form-status {
  font-size: 13.5px;
  color: var(--text-lo);
}

.form-status.is-success {
  color: var(--green);
}

/* ---- Side info panels ---- */

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-info-card {
  padding: 24px 26px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--panel);
  backdrop-filter: blur(6px);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(166, 82, 255, 0.10);
  color: var(--cyan-soft);
}

.contact-info-body .contact-info-title {
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--text-hi);
  margin-bottom: 6px;
}

.contact-info-body .contact-info-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-lo);
}

.contact-info-body a.contact-info-text:hover {
  color: var(--cyan-soft);
}

.contact-hours-card {
  padding: 24px 26px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--panel);
  backdrop-filter: blur(6px);
}

.contact-hours-card .contact-info-title {
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--text-hi);
  margin-bottom: 16px;
}

.hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-lo);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row span:last-child {
  font-weight: 700;
  color: var(--text-hi);
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact-form-card {
    padding: 26px 22px 22px;
  }
}

/* ==========================================================
   About page — story section
   ========================================================== */

.story {
  position: relative;
  z-index: 5;
  max-width: 1220px;
  margin: 0 auto;
  padding: 40px 24px 110px;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  margin-top: 56px;
  align-items: start;
}

.story-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--magenta);
  margin-bottom: 14px;
}

.story-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 38px);
  color: var(--text-hi);
  line-height: 1.2;
  margin-bottom: 22px;
}

.story-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-lo);
  margin-bottom: 18px;
}

.story-stats {
  display: flex;
  gap: 40px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.story-stat {
  display: flex;
  align-items: center;
  gap: 12px;
}

.story-stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  flex-shrink: 0;
}

.story-stat-icon.icon-cyan   { background: rgba(166, 82, 255, 0.10); color: var(--cyan-soft); }
.story-stat-icon.icon-violet { background: rgba(177, 75, 255, 0.10); color: var(--magenta); }

.story-stat-value {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--text-hi);
  line-height: 1.2;
}

.story-stat-label {
  font-size: 12.5px;
  color: var(--text-lo);
}

.story-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.story-card {
  padding: 26px 26px 24px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--panel);
  backdrop-filter: blur(6px);
}

.story-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.story-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  flex-shrink: 0;
}

.story-card-icon.icon-cyan   { background: rgba(166, 82, 255, 0.10); color: var(--cyan-soft); }
.story-card-icon.icon-violet { background: rgba(177, 75, 255, 0.10); color: var(--magenta); }
.story-card-icon.icon-green  { background: rgba(52, 211, 153, 0.10); color: var(--green); }

.story-card-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-hi);
}

.story-card-text {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-lo);
}

@media (max-width: 900px) {
  .story-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Timeline ---------- */

.timeline-section {
  position: relative;
  z-index: 5;
  max-width: 1000px;
  margin: 0 auto;
  padding: 100px 24px 130px;
  text-align: center;
}

.timeline {
  position: relative;
  margin-top: 68px;
  display: flex;
  flex-direction: column;
  gap: 64px;
  text-align: left;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: var(--border);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 0 44px;
}

.timeline-item.side-left {
  text-align: right;
}

.timeline-item.side-right {
  margin-left: 50%;
  text-align: left;
}

.timeline-dot {
  position: absolute;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--bg-0);
}

.timeline-item.side-left .timeline-dot {
  right: -6px;
}

.timeline-item.side-right .timeline-dot {
  left: -6px;
}

.timeline-item.is-current .timeline-dot {
  border-color: var(--green);
  background: var(--green);
  box-shadow: 0 0 10px rgba(52, 211, 153, 0.8);
}

.timeline-date {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text-lo);
  margin-bottom: 10px;
}

.timeline-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(52, 211, 153, 0.12);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.timeline-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--text-hi);
  margin-bottom: 10px;
}

.timeline-text {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text-lo);
}

@media (max-width: 760px) {
  .timeline::before {
    left: 20px;
  }
  .timeline-item,
  .timeline-item.side-right {
    width: 100%;
    margin-left: 0;
    padding-left: 52px;
    padding-right: 0;
    text-align: left;
  }
  .timeline-item.side-left .timeline-dot,
  .timeline-item.side-right .timeline-dot {
    left: 14px;
    right: auto;
  }
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px; /* Platz für die Navbar-Höhe, falls sie sticky/fixed ist */
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* ==========================================================
   Regelwerk page
   ========================================================== */

:root {
  --red: #ff5c7a;
  --red-soft: rgba(255, 92, 122, 0.14);
  --yellow: #f4c452;
  --yellow-soft: rgba(244, 196, 82, 0.14);
}

.rules-search-wrap {
  position: relative;
  z-index: 5;
  max-width: 720px;
  margin: 0 auto 56px;
  padding: 0 24px;
}

.rules-search {
  position: relative;
  display: flex;
  align-items: center;
}

.rules-search-icon {
  position: absolute;
  left: 20px;
  z-index: 2;
  color: #ffffff;
  pointer-events: none;
  transform: translateZ(0);
}

.rules-search input {
  width: 100%;
  padding: 16px 20px 16px 50px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--panel);
  backdrop-filter: blur(6px);
  color: var(--text-hi);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.rules-search input::placeholder {
  color: rgba(139, 150, 173, 0.6);
}

.rules-search input:focus {
  outline: none;
  border-color: rgba(166, 82, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(166, 82, 255, 0.12);
}

.rules-main {
  position: relative;
  z-index: 5;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px 48px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 22px;
  align-items: start;
}

.rules-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: sticky;
  top: 24px;
}

.rules-nav-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--panel);
  backdrop-filter: blur(6px);
}

.rules-nav-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 16px 18px;
  border-radius: 10px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text-lo);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  text-align: left;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}

.rules-nav-btn:not(.is-active):hover {
  background: rgba(201, 163, 255, 0.06);
}

.rules-nav-btn .rules-nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  opacity: 0.85;
}

.rules-nav-btn:hover {
  color: var(--text-hi);
  border-color: rgba(166, 82, 255, 0.35);
}

.rules-nav-btn.is-active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  box-shadow: 0 0 22px rgba(166, 82, 255, 0.35);
  transform: translateY(-1px);
}

.rules-nav-btn.is-active .rules-nav-icon {
  opacity: 1;
}

.rules-panels {
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: auto;
  padding-right: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.rules-panels::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.rules-panel {
  display: none;
  flex-direction: column;
  gap: 20px;
}

.rules-panel.is-active {
  display: flex;
}

.rule-card {
  padding: 30px 32px 28px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--panel);
  backdrop-filter: blur(6px);
  transition: opacity 0.15s ease;
}

.rule-card.is-hidden {
  display: none;
}

.rule-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.rule-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  color: var(--cyan-soft);
  letter-spacing: 0.01em;
}

.rule-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
  margin-top: 2px;
}

.badge-red {
  color: var(--red);
  background: var(--red-soft);
  border: 1px solid rgba(255, 92, 122, 0.35);
}

.badge-red-strong {
  color: #fff;
  background: linear-gradient(90deg, #ff5c7a, #b3264a);
  box-shadow: 0 0 14px rgba(255, 92, 122, 0.35);
}

.badge-yellow {
  color: var(--yellow);
  background: var(--yellow-soft);
  border: 1px solid rgba(244, 196, 82, 0.35);
}

.badge-green {
  color: var(--green);
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.35);
}

.badge-info {
  color: var(--cyan-soft);
  background: rgba(166, 82, 255, 0.12);
  border: 1px solid rgba(166, 82, 255, 0.35);
}

.rule-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-lo);
}

.rule-text code {
  padding: 2px 7px;
  border-radius: 5px;
  background: rgba(166, 82, 255, 0.12);
  color: var(--cyan-soft);
  font-family: var(--font-body);
  font-size: 13.5px;
}

.rules-empty {
  display: none;
  padding: 50px 20px 0;
  text-align: center;
  color: var(--text-lo);
  font-size: 15px;
}

.rules-empty.is-visible {
  display: block;
}

@media (max-width: 900px) {
  .rules-main {
    grid-template-columns: 1fr;
  }
  .rules-nav {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .rules-nav-box {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
  }
  .rules-nav-btn {
    width: auto;
    flex: 1 1 auto;
  }
  .rules-panels {
    max-height: none;
    overflow-y: visible;
    padding-right: 0;
  }
}

@media (max-width: 640px) {
  .rule-card {
    padding: 24px 22px 22px;
  }
  .rule-head {
    flex-direction: column;
  }
}

/* ---------- Background layers ---------- */

.bg-city,
.bg-grid,
.bg-vignette {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  pointer-events: none;
}