﻿/* ============================================================
   TASK FORCE PHOENIX – A SQUADRON  |  Global Styles
   ============================================================ */

:root {
  --red:        #c0392b;
  --red-light:  #e74c3c;
  --red-dark:   #922b21;
  --gold:       #b8860b;
  --bg:         #0a0a0a;
  --bg2:        #111111;
  --bg3:        #1a1a1a;
  --bg4:        #222222;
  --border:     rgba(192, 57, 43, 0.35);
  --text:       #d0d0d0;
  --text-dim:   #888;
  --white:      #f0f0f0;
  --font-head:  'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body:  'Barlow', 'Segoe UI', sans-serif;
  --font-mono:  'Share Tech Mono', 'Courier New', monospace;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: clamp(14px, 1.1vw, 18px);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Kampagne-Seite: body füllt exakt den Viewport */
body.kampagne-body { height: 100vh; overflow: hidden; }

footer { margin-top: auto; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.15;
}

a { color: var(--red-light); text-decoration: none; }
a:hover { color: var(--white); }

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--red-dark); border-radius: 3px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1rem, 4vw, 4rem);
  height: clamp(60px, 5vw, 80px);
}

nav.menu-open {
  height: auto;
  flex-wrap: wrap;
  align-items: flex-start;
  padding-top: 0;
  padding-bottom: 0.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
}

.nav-logo img {
  height: 36px;
  width: 36px;
  object-fit: contain;
}

.nav-logo-text {
  font-family: var(--font-head);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}

.nav-logo-text span {
  color: var(--red-light);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 0.4rem 1rem;
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  border: 1px solid transparent;
  border-radius: 2px;
  transition: all 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  border-color: var(--red-dark);
  background: rgba(192, 57, 43, 0.15);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn-primary:hover {
  background: var(--red-light);
  color: var(--white);
  border-color: var(--red-light);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(240,240,240,0.4);
}

.btn-secondary:hover {
  background: rgba(240,240,240,0.08);
  border-color: var(--white);
  color: var(--white);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.8) 100%),
    url('img/hero-bg.jpg') center/cover no-repeat;
}

/* Fallback pattern when no image */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(192,57,43,0.03) 2px,
      rgba(192,57,43,0.03) 4px
    );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 0 1.5rem;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--red-light);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 0.5rem;
}

.hero h1 .accent {
  color: var(--red-light);
  display: block;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.3rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red-light);
  font-family: var(--font-head);
  margin-bottom: 1.5rem;
}

.hero-tagline {
  font-size: 0.95rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
  font-style: italic;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  animation: bounce 2s infinite;
}

.hero-scroll-hint::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--red-light), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   SECTION SCAFFOLDING
   ============================================================ */
section {
  padding: clamp(3rem, 6vw, 8rem) 0;
}

.container {
  width: min(1160px, 90vw);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 3rem);
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 3.5rem);
  color: var(--white);
  margin-bottom: clamp(1.5rem, 3vw, 3rem);
}

.divider {
  width: 48px;
  height: 2px;
  background: var(--red);
  margin-bottom: 2.5rem;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about {
  background: var(--bg2);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-text p {
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.about-text p strong {
  color: var(--red-light);
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.pillar {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-top: 2px solid var(--red);
  padding: 1.25rem;
  border-radius: 2px;
}

.pillar-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.pillar h4 {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.pillar p {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ============================================================
   MISSION SECTION
   ============================================================ */
.mission {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.mission::before {
  content: 'CAG';
  position: absolute;
  top: 50%;
  right: -2rem;
  transform: translateY(-50%);
  font-family: var(--font-head);
  font-size: 18rem;
  font-weight: 900;
  color: rgba(192,57,43,0.04);
  pointer-events: none;
  letter-spacing: -0.05em;
  line-height: 1;
}

.mission-box {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  padding: 2rem;
  border-radius: 2px;
  margin-bottom: 3rem;
}

.mission-box h3 {
  color: var(--red-light);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}

.mission-box p {
  color: var(--text);
  line-height: 1.8;
}

/* ============================================================
   SPIELWEISE (GAMEPLAY) SECTION
   ============================================================ */
.spielweise {
  background: var(--bg2);
  position: relative;
}

.spielweise-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--bg2) 0%, rgba(17,17,17,0.85) 40%, var(--bg2) 100%),
    url('assets/spielweise-bg.jpg') center/cover no-repeat;
  opacity: 0.4;
}

.spielweise-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.sp-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 1.75rem;
  transition: border-color 0.2s, transform 0.2s;
}

.sp-card:hover {
  border-color: var(--red);
  transform: translateY(-3px);
}

.sp-card-num {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--red);
  letter-spacing: 0.25em;
  margin-bottom: 0.75rem;
}

.sp-card h3 {
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.sp-card ul {
  list-style: none;
}

.sp-card ul li {
  padding: 0.35rem 0;
  color: var(--text);
  font-size: 0.875rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.sp-card ul li::before {
  content: '▸';
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================================
   RECRUITMENT / BEITRETEN SECTION
   ============================================================ */
.recruiting {
  background: var(--bg);
}

.recruiting-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.req-list {
  list-style: none;
  margin-top: 1rem;
}

.req-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: var(--text);
  font-size: 0.9rem;
}

.req-list li::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border: 2px solid var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--red);
  flex-shrink: 0;
  background: rgba(192,57,43,0.1);
}

.step-content h4 {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.step-content p {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--bg3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--white);
}

.cta-text p {
  color: var(--text-dim);
  margin-top: 0.5rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  text-align: center;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand {
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  text-transform: uppercase;
}

.footer-brand span { color: var(--red-light); }

.footer-note {
  font-size: 0.72rem;
  color: var(--text-dim);
}

/* ============================================================
   MITGLIEDER PAGE
   ============================================================ */
.page-header {
  padding: 7rem 0 3rem;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.page-header .emblem {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.page-header .emblem img {
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(192,57,43,0.4));
}

.page-header h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
}

.page-header p {
  color: var(--text-dim);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

.roster-section {
  background: var(--bg);
  padding: 4rem 0;
}

.teams-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.team-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.team-card-header {
  background: var(--bg4);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--border);
}

.team-badge {
  width: 40px;
  height: 40px;
  background: rgba(192,57,43,0.2);
  border: 1px solid var(--red-dark);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--red-light);
  letter-spacing: 0.05em;
}

.team-card-header .team-meta {
  display: flex;
  flex-direction: column;
}

.team-card-header .team-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--text-dim);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.team-card-header h3 {
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  color: var(--white);
}

.team-positions {
  padding: 0.5rem 0;
}

.position-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.15s;
}

.position-row:last-child { border-bottom: none; }

.position-row:hover { background: rgba(255,255,255,0.03); }

.position-name {
  font-family: var(--font-head);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--text);
  text-transform: uppercase;
}

.position-status {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}

.position-status.open { color: var(--text-dim); font-style: italic; }
.position-status.filled { color: #4caf50; }

.no-positions {
  padding: 1.5rem 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
  display: flex;
  justify-content: space-between;
}

/* ============================================================
   KAMPAGNE PAGE
   ============================================================ */
.kampagne-section {
  background: var(--bg);
  padding-top: 0;
}

.map-toolbar {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 0.6rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.map-toolbar-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.map-toolbar h3 {
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--white);
  text-transform: uppercase;
}

.map-toolbar-right {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--red);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

#kampagne-wrap {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  padding-top: clamp(60px, 5vw, 80px);
}

#campaign-map {
  flex: 1;
  min-height: 0;
  width: 100%;
  background: #0d0d0d;
}

#mission-sidebar {
  flex-shrink: 0;
}

/* Leaflet overrides */
.leaflet-container {
  background: #0d0d0d !important;
  font-family: var(--font-body);
}

.leaflet-tile-pane { filter: grayscale(1) brightness(0.15) sepia(0.3) hue-rotate(-10deg); }

.leaflet-control-zoom a {
  background: var(--bg3) !important;
  color: var(--text) !important;
  border-color: var(--border) !important;
  font-size: 1.1rem !important;
}

.leaflet-control-zoom a:hover {
  background: var(--bg4) !important;
  color: var(--red-light) !important;
}

/* Custom mission marker */
.mission-marker {
  position: relative;
}

.mission-marker-pulse {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
  border: 2px solid var(--red-light);
  position: relative;
  cursor: pointer;
  transition: transform 0.15s;
}

.mission-marker-pulse.marker-inprogress {
  background: #64b5f6;
  border-color: #90caf9;
}

.mission-marker-pulse.marker-inprogress::before {
  border-color: #64b5f6;
}

.mission-marker-pulse::before {
  content: '';
  position: absolute;
  top: -6px; left: -6px; right: -6px; bottom: -6px;
  border-radius: 50%;
  border: 1px solid var(--red);
  animation: ping 1.8s ease-out infinite;
  opacity: 0;
}

@keyframes ping {
  0%   { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(2.2); opacity: 0; }
}

.mission-marker-pulse:hover { transform: scale(1.4); }

/* Mission modal */
.mission-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
}

.mission-modal-overlay.open { display: flex; }

.mission-modal {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-top: 2px solid var(--red);
  width: 100%;
  max-width: 680px;
  max-height: 85vh;
  overflow-y: auto;
  border-radius: 2px;
  position: relative;
}

.mission-modal-header {
  padding: 1.25rem 1.5rem;
  background: var(--bg4);
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.mission-modal-header .op-code {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--red);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.mission-modal-header h2 {
  font-size: 1.4rem;
  color: var(--white);
}

.mission-modal-close {
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 0 0.25rem;
  transition: color 0.15s;
}

.mission-modal-close:hover { color: var(--red-light); }

.mission-modal-body {
  padding: 1.5rem;
}

.mission-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.mission-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.mission-meta-item .label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--text-dim);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.mission-meta-item .value {
  font-family: var(--font-head);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: var(--white);
}

.mission-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.25rem;
}

.mission-tab {
  padding: 0.6rem 1.25rem;
  font-family: var(--font-head);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.15s;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  margin-bottom: -1px;
}

.mission-tab:hover { color: var(--text); }
.mission-tab.active { color: var(--red-light); border-bottom-color: var(--red); }

.mission-tab-content { display: none; }
.mission-tab-content.active { display: block; }

.mission-tab-content h4 {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--red-light);
  margin-bottom: 0.75rem;
}

.mission-tab-content p {
  color: var(--text);
  font-size: 0.875rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.mission-tab-content ul {
  padding-left: 1rem;
  color: var(--text);
  font-size: 0.875rem;
  line-height: 1.9;
}

.outcome-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 2px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.outcome-success    { background: rgba(76,175,80,0.15); color: #4caf50; border: 1px solid rgba(76,175,80,0.3); }
.outcome-partial    { background: rgba(255,152,0,0.15); color: #ff9800; border: 1px solid rgba(255,152,0,0.3); }
.outcome-failure    { background: rgba(192,57,43,0.15); color: var(--red-light); border: 1px solid var(--border); }
.outcome-inprogress { background: rgba(100,181,246,0.12); color: #64b5f6; border: 1px solid rgba(100,181,246,0.35); animation: pulse-badge 2s ease-in-out infinite; }

@keyframes pulse-badge {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.55; }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 3.5rem;
  gap: 0.25rem;
}

.stat-num {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-suffix {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--red-light);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 0.15rem;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* ============================================================
   ABOUT — REDESIGNED SPLIT LAYOUT
   ============================================================ */
.about-split {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 5rem;
  align-items: start;
}

.about-split-label .section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.about-split-content .about-lead {
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  border-left: 3px solid var(--red);
  padding-left: 1.25rem;
}

.about-split-content p {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-split-content p strong { color: var(--red-light); }

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.tag {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  background: rgba(255,255,255,0.03);
  transition: all 0.15s;
}

.tag:hover {
  color: var(--red-light);
  border-color: var(--red-dark);
  background: rgba(192,57,43,0.08);
}

/* ============================================================
   COMMUNITY & CAREERS
   ============================================================ */
.community {
  background: var(--bg2);
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.comm-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}

.comm-card-header {
  background: var(--bg3);
  padding: 1rem 1.25rem;
  font-family: var(--font-head);
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.comm-card-header svg { color: var(--red-light); flex-shrink: 0; }

.comm-card-body { padding: 0.5rem 0 1rem; }

/* Operation Orders list */
.op-order-list { padding: 0 0.25rem; }

.op-order-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.15s;
  cursor: default;
}

.op-order-item:last-child { border-bottom: none; }
.op-order-item:hover { background: rgba(255,255,255,0.03); }

.op-order-name {
  font-size: 0.9rem;
  color: var(--white);
}

.op-order-date {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  margin-left: 1rem;
}

/* Positions list */
.positions-list { padding: 0 0.25rem; }

.pos-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.9rem;
  color: var(--white);
}

.pos-row:last-child { border-bottom: none; }

.pos-badge {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
}

.pos-badge.open {
  background: rgba(192,57,43,0.15);
  color: var(--red-light);
  border: 1px solid var(--red-dark);
}

.pos-badge.closed {
  background: rgba(255,255,255,0.06);
  color: var(--text-dim);
  border: 1px solid rgba(255,255,255,0.1);
}

.comm-read-more {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1rem 0;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red-light);
  transition: color 0.15s;
}

.comm-read-more:hover { color: var(--white); }

/* ============================================================
   LARGE SCREENS (1920px+)
   ============================================================ */
@media (min-width: 1920px) {
  .container { width: min(1600px, 88vw); }
  .about-split { grid-template-columns: 380px 1fr; gap: clamp(4rem, 6vw, 9rem); }
  .stat-item { padding: 0.5rem clamp(3rem, 4vw, 6rem); }
}

/* ============================================================
   HAMBURGER / MOBILE NAV
   ============================================================ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  z-index: 1100;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 1101px) {
  .nav-links { display: flex; }
  .nav-hamburger { display: none; }
}

@media (max-width: 1000px) {
  .about-split { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 900px) {
  .about-grid,
  .recruiting-inner,
  .spielweise-grid,
  .teams-grid,
  .community-grid { grid-template-columns: 1fr; }

  .about-pillars { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 0.5rem 2rem; }
  .stat-divider { display: none; }
  .stats-grid { gap: 1rem; }

  .cta-inner { flex-direction: column; }
}

@media (max-width: 1100px) {
  nav { padding: 0 1rem; align-items: center; }

  nav.menu-open { padding-bottom: 0.5rem; }

  .nav-hamburger { display: flex; }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0;
    padding-top: 0.5rem;
  }

  .nav-links.open { display: flex; }

  .nav-links li { width: 100%; }

  .nav-links a {
    padding: 0.9rem 0.5rem;
    font-size: 1rem;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    border-radius: 0;
  }
}

@media (max-width: 600px) {
  .about-pillars { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .mission-meta { flex-direction: column; gap: 0.75rem; }
  .stat-item { padding: 0.5rem 1.25rem; }
  .container { padding: 0 1rem; }
  section { padding: 3.5rem 0; }
}
