/* ==========================================================================
   NEXRA — Startseite
   Nur auf index.html geladen. Baut auf den Tokens und Komponenten aus
   style.css auf (Buttons, Glas, Eyebrow, Reveal).
   ========================================================================== */

/* ---------- Allgemein ---------- */
.display-title {
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.btn-row--center {
  justify-content: center;
}

.section-head--split {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.section-head--split .display-title {
  margin-bottom: 0;
}

/* ---------- Hero ---------- */
.home-hero {
  position: relative;
  min-height: clamp(620px, 88vh, 980px);
  display: flex;
  align-items: center;
  padding: 140px 0 150px;
  overflow: hidden;
  isolation: isolate;
}

.home-hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
}
.home-hero-media img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: 60% 40%;
  transform: translate3d(0, 0, 0) scale(1.04);
  will-change: transform;
  animation: heroSettle 2.4s var(--ease-out) both;
}
@keyframes heroSettle {
  from {
    opacity: 0;
    filter: blur(10px) brightness(0.6);
    scale: 1.08;
  }
  to {
    opacity: 1;
    filter: none;
    scale: 1;
  }
}

/* Lesbarkeit: links dunkler, unten in den Seitenhintergrund, oben für die Navigation */
.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 7, 12, 0.88) 0%, rgba(5, 7, 12, 0.55) 38%, rgba(5, 7, 12, 0.05) 70%),
    linear-gradient(180deg, rgba(5, 7, 12, 0.7) 0%, rgba(5, 7, 12, 0) 22%),
    linear-gradient(0deg, var(--bg) 0%, rgba(7, 9, 15, 0.85) 14%, rgba(7, 9, 15, 0) 42%);
}

.home-hero-fog {
  position: absolute;
  inset: auto -20% 8% -20%;
  height: 46%;
  z-index: -1;
  pointer-events: none;
  opacity: 0.55;
}
.home-hero-fog span {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 55% at 30% 60%, rgba(160, 170, 210, 0.16), transparent 70%),
    radial-gradient(ellipse 35% 45% at 75% 55%, rgba(240, 170, 120, 0.1), transparent 70%);
  filter: blur(30px);
  animation: fogDrift 38s ease-in-out infinite alternate;
}
.home-hero-fog span:nth-child(2) {
  animation-duration: 52s;
  animation-direction: alternate-reverse;
  opacity: 0.7;
  transform: translateY(20%);
}
@keyframes fogDrift {
  from {
    transform: translate3d(-6%, 0, 0);
  }
  to {
    transform: translate3d(6%, -4%, 0);
  }
}

.home-hero #particle-canvas {
  z-index: 0;
  opacity: 0.7;
}

.home-hero-inner {
  position: relative;
  z-index: 2;
}

.home-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(238, 242, 248, 0.78);
  margin-bottom: 22px;
  animation: riseIn 1s var(--ease-out) 0.2s both;
}
.home-kicker .dot {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--emerald-bright);
  box-shadow: 0 0 12px var(--emerald-bright);
}

.home-title {
  margin-bottom: 26px;
}
.home-title-word {
  display: block;
  font-size: clamp(72px, 13vw, 184px);
  font-weight: 700;
  line-height: 0.86;
  letter-spacing: 0.04em;
  background: linear-gradient(180deg, #ffffff 0%, #dbe7f0 45%, #8fd9bd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 10px 40px rgba(16, 185, 129, 0.25));
  animation: riseIn 1.1s var(--ease-out) 0.3s both;
}
.home-title-claim {
  display: block;
  margin-top: 18px;
  font-size: clamp(20px, 2.6vw, 34px);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  animation: riseIn 1.1s var(--ease-out) 0.45s both;
}
.home-title-claim .c-build {
  color: var(--emerald-bright);
}
.home-title-claim .c-trade {
  color: var(--gold-bright);
}

.home-lead {
  max-width: 540px;
  font-size: clamp(16px, 1.4vw, 18.5px);
  color: rgba(238, 242, 248, 0.78);
  margin-bottom: 34px;
  animation: riseIn 1.1s var(--ease-out) 0.55s both;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  animation: riseIn 1.1s var(--ease-out) 0.65s both;
}
.btn--play {
  padding-inline: 34px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.btn--play::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.5);
  animation: playPulse 2.8s var(--ease-out) infinite;
  z-index: -1;
}
@keyframes playPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.45);
  }
  70%,
  100% {
    box-shadow: 0 0 0 16px rgba(52, 211, 153, 0);
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.home-scroll {
  position: absolute;
  left: 50%;
  bottom: 96px;
  z-index: 2;
  width: 26px;
  height: 42px;
  margin-left: -13px;
  border-radius: 14px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}
.home-scroll span {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  border-radius: 2px;
  background: var(--emerald-bright);
  animation: scrollHint 2s ease-in-out infinite;
}
@keyframes scrollHint {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  80%,
  100% {
    transform: translateY(14px);
    opacity: 0;
  }
}

/* ---------- Status-Leiste ---------- */
.home-status {
  position: relative;
  z-index: 5;
  margin-top: -64px;
}
.status-bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px 18px 18px 26px;
  border-radius: 20px;
  background: linear-gradient(150deg, rgba(20, 26, 40, 0.86), rgba(10, 13, 22, 0.9));
  border: 1px solid var(--border-strong);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.status-main {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
}
.status-main strong {
  font-size: 15px;
  letter-spacing: 0.16em;
  white-space: nowrap;
}
.status-text {
  color: var(--text-dim);
  font-size: 14px;
  white-space: nowrap;
}
.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex: none;
  background: var(--gold-bright);
  box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.15), 0 0 14px rgba(251, 191, 36, 0.7);
  animation: pulse 2.4s ease-in-out infinite;
}
.status-dot.is-online {
  background: var(--emerald-bright);
  box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.15), 0 0 14px rgba(52, 211, 153, 0.8);
}
.status-dot.is-offline {
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(248, 113, 113, 0.15);
  animation: none;
}
.status-facts {
  display: flex;
  justify-content: flex-end;
  gap: 0;
}
.status-facts > div {
  padding: 0 22px;
  border-left: 1px solid var(--border);
}
.status-facts dt {
  font-family: var(--font-display);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.status-facts dd {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}
.status-ip {
  color: var(--emerald-bright);
  font-weight: 600;
  border-bottom: 1px dashed rgba(52, 211, 153, 0.5);
  transition: color 0.2s;
}
.status-ip:hover {
  color: #fff;
}

/* ---------- CityBuild (Editorial) ---------- */
.home-citybuild {
  padding-top: 130px;
}
.editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}
.editorial-media {
  aspect-ratio: 16 / 11.5;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.05);
}
.editorial-media:hover img {
  transform: scale(1.035);
}
.editorial-copy p {
  color: var(--text-dim);
  font-size: 16.5px;
  margin-bottom: 30px;
}
.editorial-copy .display-title {
  font-size: clamp(32px, 3.6vw, 50px);
}

.fact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 26px;
  margin-bottom: 34px;
  padding: 24px 0 0;
  border-top: 1px solid var(--border);
}
.fact-grid dt {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
}
.fact-grid dd {
  font-size: 13.5px;
  color: var(--text-faint);
  margin-top: 4px;
}

/* ---------- Wirtschaft ---------- */
.home-economy {
  overflow: hidden;
  isolation: isolate;
}
.home-economy-backdrop {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.22;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 25%, #000 70%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 25%, #000 70%, transparent 100%);
}
.home-economy-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) blur(2px);
}
.home-economy::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse 50% 60% at 75% 50%, rgba(245, 158, 11, 0.1), transparent 70%),
    linear-gradient(90deg, rgba(7, 9, 15, 0.92) 0%, rgba(7, 9, 15, 0.5) 60%, rgba(7, 9, 15, 0.7) 100%);
}
.economy-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: center;
}
.economy-copy > p {
  color: var(--text-dim);
  font-size: 16.5px;
  margin-bottom: 26px;
}
.economy-copy .checklist {
  margin-bottom: 30px;
}

.market-widget {
  padding: 26px 26px 20px;
  border-color: rgba(245, 158, 11, 0.22);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5), 0 0 60px rgba(245, 158, 11, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.market-widget-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.market-widget-kicker {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.market-widget-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}
.market-widget-price {
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 6px 0 8px;
  color: var(--gold-bright);
  text-shadow: 0 0 30px rgba(251, 191, 36, 0.25);
}
.market-widget-chart {
  width: 100%;
  height: auto;
  aspect-ratio: 520 / 200;
  display: block;
  overflow: visible;
}
.mw-grid line {
  stroke: rgba(255, 255, 255, 0.06);
  stroke-width: 1;
}
.mw-line {
  fill: none;
  stroke: url(#mwLine);
  stroke-width: 2.6;
  stroke-linejoin: round;
  stroke-linecap: round;
  filter: drop-shadow(0 0 8px rgba(52, 211, 153, 0.45));
}
.mw-area {
  fill: url(#mwArea);
  transition: opacity 0.6s;
}
.market-widget.is-drawing .mw-area {
  opacity: 0;
}

.mw-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 16px;
}
.mw-item {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 2px 10px;
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.025);
  text-align: left;
  transition: border-color 0.25s, background 0.25s, transform 0.3s var(--ease-out);
}
.mw-item:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.mw-item.is-active {
  border-color: rgba(251, 191, 36, 0.5);
  background: rgba(251, 191, 36, 0.07);
}
.mw-swatch {
  grid-row: 1 / 3;
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background: var(--c, #aaa);
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.25), 0 0 12px color-mix(in srgb, var(--c, #aaa) 40%, transparent);
}
.mw-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
}
.mw-meta {
  display: flex;
  gap: 8px;
  font-size: 12.5px;
  line-height: 1.3;
  color: var(--text-dim);
}
.mw-meta .delta {
  font-size: 12px;
}
.mw-foot {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
  font-size: 12.5px;
  color: var(--text-faint);
}
.mw-link {
  color: var(--gold-bright);
  font-weight: 600;
}
.mw-link:hover {
  color: #fff;
}
.mw-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  transform-origin: left;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  opacity: 0.7;
}
.mw-progress.is-running {
  transition: transform var(--mw-interval, 6s) linear;
  transform: scaleX(1);
}

/* ---------- Welt ---------- */
.world-map {
  aspect-ratio: 16 / 10;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55);
}
.world-map::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, transparent 55%, rgba(4, 6, 11, 0.55) 100%);
  pointer-events: none;
}
.map-marker {
  position: absolute;
  z-index: 3;
  left: var(--x);
  top: var(--y);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transform: translate(-50%, -12px);
  --tone: var(--emerald-bright);
}
.map-marker--gold {
  --tone: var(--gold-bright);
}
.map-marker--cyan {
  --tone: var(--cyan);
}
.map-marker--violet {
  --tone: #a78bfa;
}
.map-marker--green {
  --tone: #86efac;
}
.map-marker--slate {
  --tone: #cbd5e1;
}
.map-pin {
  position: relative;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: var(--tone);
  border: 2px solid rgba(7, 9, 15, 0.8);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--tone) 35%, transparent), 0 6px 18px rgba(0, 0, 0, 0.5);
  transform: rotate(45deg);
  transition: transform 0.3s var(--ease-spring);
}
.map-pin::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 6px;
  border: 2px solid var(--tone);
  opacity: 0;
  animation: pinPing 2.8s var(--ease-out) infinite;
  animation-delay: calc(var(--i) * 0.45s);
}
@keyframes pinPing {
  0% {
    opacity: 0.8;
    transform: scale(0.6);
  }
  80%,
  100% {
    opacity: 0;
    transform: scale(1.6);
  }
}
.map-label {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 8px;
  background: rgba(7, 9, 15, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  white-space: nowrap;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.map-tip {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  width: 230px;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--panel);
  border: 1px solid color-mix(in srgb, var(--tone) 40%, transparent);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-dim);
  text-align: left;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 6px);
  transition: opacity 0.25s var(--ease-out), transform 0.3s var(--ease-out), visibility 0s linear 0.3s;
  pointer-events: none;
}
.map-marker:hover,
.map-marker:focus-visible {
  z-index: 6;
}
.map-marker:hover .map-pin,
.map-marker:focus-visible .map-pin {
  transform: rotate(45deg) scale(1.25);
}
.map-marker:hover .map-tip,
.map-marker:focus-visible .map-tip,
.map-marker:focus .map-tip {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  transition: opacity 0.25s var(--ease-out), transform 0.3s var(--ease-out), visibility 0s;
}
/* Marker am rechten/unteren Rand: Tooltip nach innen klappen */
.map-marker.tip-left .map-tip {
  left: auto;
  right: -20px;
  transform: translate(0, 6px);
}
.map-marker.tip-left:hover .map-tip,
.map-marker.tip-left:focus .map-tip,
.map-marker.tip-left:focus-visible .map-tip {
  transform: translate(0, 0);
}
.map-marker.tip-up .map-tip {
  top: auto;
  bottom: calc(100% + 8px);
}

/* ---------- Features ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.feature {
  padding: 28px 24px 26px;
  --tone: var(--emerald-bright);
  --tone-bg: rgba(16, 185, 129, 0.12);
  transition: transform 0.45s var(--ease-out), border-color 0.35s, box-shadow 0.45s var(--ease-out), opacity 0.9s var(--ease-out);
}
.feature--gold {
  --tone: var(--gold-bright);
  --tone-bg: rgba(245, 158, 11, 0.12);
}
.feature--cyan {
  --tone: var(--cyan);
  --tone-bg: rgba(34, 211, 238, 0.1);
}
.feature--violet {
  --tone: #a78bfa;
  --tone-bg: rgba(139, 92, 246, 0.12);
}
.feature::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse 80% 60% at 20% 0%, var(--tone-bg), transparent 70%);
  opacity: 0;
  transition: opacity 0.45s;
  pointer-events: none;
}
.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  margin-bottom: 20px;
  color: var(--tone);
  background: var(--tone-bg);
  border: 1px solid color-mix(in srgb, var(--tone) 35%, transparent);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), inset 0 -3px 0 rgba(0, 0, 0, 0.2);
  transition: transform 0.45s var(--ease-spring), box-shadow 0.45s;
}
.feature h3 {
  font-size: 17px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.feature p {
  color: var(--text-dim);
  font-size: 14.5px;
  line-height: 1.6;
}
.feature:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--tone) 40%, transparent);
  box-shadow: var(--shadow-lift);
}
.feature:hover::after {
  opacity: 1;
}
.feature:hover .feature-icon {
  transform: translateY(-2px) rotate(-6deg) scale(1.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 0 26px color-mix(in srgb, var(--tone) 45%, transparent);
}

/* ---------- Spielen ---------- */
.join-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}
.join-card {
  padding: 44px 40px;
  border-color: rgba(16, 185, 129, 0.25);
  background:
    radial-gradient(ellipse 70% 60% at 0% 0%, rgba(16, 185, 129, 0.14), transparent 70%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02) 55%);
}
.join-card .display-title {
  font-size: clamp(30px, 3.4vw, 46px);
}
.join-card > p {
  color: var(--text-dim);
  margin-bottom: 28px;
}
.join-ip {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 2px 16px;
  padding: 18px 18px 18px 22px;
  border-radius: 16px;
  background: rgba(4, 6, 11, 0.55);
  border: 1px solid var(--border-strong);
}
.join-ip-label {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.join-ip-value {
  grid-row: 2;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--emerald-bright);
}
.join-ip .btn {
  grid-row: 1 / 3;
  grid-column: 2;
}
.join-hint {
  margin-top: 18px;
  font-size: 14px;
  color: var(--text-faint);
}
.join-hint a {
  color: var(--emerald-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.join-steps {
  display: grid;
  gap: 14px;
}
.join-steps li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 22px 24px;
  transition: transform 0.4s var(--ease-out), border-color 0.3s, opacity 0.9s var(--ease-out);
}
.join-steps li:hover {
  transform: translateX(6px);
  border-color: rgba(16, 185, 129, 0.35);
}
.step-no {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(52, 211, 153, 0.7);
  min-width: 46px;
}
.join-steps h3 {
  font-size: 17px;
  margin-bottom: 4px;
}
.join-steps p {
  color: var(--text-dim);
  font-size: 14.5px;
}
.join-steps code,
.feature code {
  color: var(--emerald-bright);
  background: rgba(16, 185, 129, 0.1);
  padding: 1px 6px;
  border-radius: 5px;
}

/* ---------- Community ---------- */
.home-community {
  position: relative;
  padding: 150px 0;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}
.home-community-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.home-community-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.home-community::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, var(--bg) 0%, rgba(7, 9, 15, 0.35) 22%, rgba(7, 9, 15, 0.35) 70%, var(--bg) 100%),
    radial-gradient(ellipse 50% 60% at 50% 55%, rgba(7, 9, 15, 0.75), rgba(7, 9, 15, 0.2) 80%);
}
.home-community-inner {
  max-width: 760px;
}
.home-community-claim {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 26px;
}
.community-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}
.community-points li {
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 100px;
  background: rgba(7, 9, 15, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(238, 242, 248, 0.85);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.btn--discord {
  color: #fff;
  background: linear-gradient(160deg, #7983f5 0%, #5865f2 55%, #4752c4 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), inset 0 -8px 16px rgba(20, 24, 80, 0.3), 0 10px 32px rgba(88, 101, 242, 0.45);
}
.btn--discord:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), inset 0 -8px 16px rgba(20, 24, 80, 0.3), 0 16px 44px rgba(88, 101, 242, 0.6);
}

/* ---------- Ränge ---------- */
.rank-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.rank {
  display: flex;
  flex-direction: column;
  padding: 30px 26px 26px;
  --tone: #a8b3c4;
  border-top: 2px solid color-mix(in srgb, var(--tone) 70%, transparent);
  transition: transform 0.45s var(--ease-out), border-color 0.35s, box-shadow 0.45s var(--ease-out), opacity 0.9s var(--ease-out);
}
.rank--haendler {
  --tone: var(--emerald-bright);
}
.rank--magnat {
  --tone: var(--gold-bright);
}
.rank--legende {
  --tone: #a78bfa;
}
.rank:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lift), 0 0 50px color-mix(in srgb, var(--tone) 14%, transparent);
}
.rank--featured {
  border-color: rgba(245, 158, 11, 0.4);
  background:
    radial-gradient(ellipse 90% 50% at 50% 0%, rgba(245, 158, 11, 0.14), transparent 70%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02) 55%);
}
.rank-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 8px;
  color: #241303;
  background: linear-gradient(160deg, #fde68a, var(--gold-bright));
}
.rank-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--tone);
  background: color-mix(in srgb, var(--tone) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--tone) 35%, transparent);
  margin-bottom: 18px;
}
.rank h3 {
  font-size: 22px;
  color: var(--tone);
  letter-spacing: 0.02em;
}
.rank-tag {
  color: var(--text-dim);
  font-size: 14px;
  margin-bottom: 16px;
}
.rank-price {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 18px;
}
.rank-price span {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-faint);
}
.rank ul {
  display: grid;
  align-content: start;
  gap: 9px;
  margin-bottom: 24px;
  flex: 1;
}
.rank li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: var(--text-dim);
}
.rank li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--tone);
  opacity: 0.8;
}
.rank .btn {
  width: 100%;
}
.rank-note {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: var(--text-faint);
}
.rank-note a {
  color: var(--emerald-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- News ---------- */
.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: 18px;
}
.news-lead {
  display: flex;
  flex-direction: column;
  transition: transform 0.45s var(--ease-out), border-color 0.35s, box-shadow 0.45s, opacity 0.9s var(--ease-out);
}
.news-lead-media {
  aspect-ratio: 16 / 8.5;
  border-radius: 0;
}
.news-lead-body {
  padding: 28px 30px 30px;
}
.news-lead h3 {
  font-size: clamp(22px, 2.2vw, 30px);
  margin: 12px 0 12px;
}
.news-lead p,
.news-tile p {
  color: var(--text-dim);
  font-size: 15px;
  margin-bottom: 16px;
}
.news-side {
  display: grid;
  gap: 18px;
}
.news-tile {
  padding: 26px 26px 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.45s var(--ease-out), border-color 0.35s, box-shadow 0.45s, opacity 0.9s var(--ease-out);
}
.news-tile h3 {
  font-size: 19px;
  margin: 12px 0 10px;
}
.news-tile p {
  flex: 1;
}
.news-lead:hover,
.news-tile:hover {
  transform: translateY(-5px);
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: var(--shadow-lift);
}
.news-lead:hover img {
  transform: scale(1.04);
}
.news-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--emerald-bright);
}
.news-more span {
  transition: transform 0.3s var(--ease-out);
}
.news-more:hover span {
  transform: translateX(4px);
}

/* ---------- Responsiv ---------- */
@media (max-width: 1320px) {
  .status-bar {
    grid-template-columns: 1fr auto;
  }
  .status-facts {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
  }
  .status-facts > div:first-child {
    border-left: none;
    padding-left: 0;
  }
}

@media (max-width: 1180px) {
  .status-bar {
    grid-template-columns: 1fr auto;
  }
  .status-facts {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
  }
  .status-facts > div:first-child {
    border-left: none;
    padding-left: 0;
  }
  .feature-grid,
  .rank-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .editorial,
  .economy-grid,
  .join-grid,
  .news-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .editorial-copy {
    max-width: 640px;
  }
  .home-citybuild {
    padding-top: 100px;
  }
  .mw-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .news-side {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .home-hero {
    min-height: clamp(560px, 86svh, 760px);
    padding: 120px 0 140px;
    align-items: flex-end;
  }
  .home-hero::before {
    background:
      linear-gradient(180deg, rgba(5, 7, 12, 0.75) 0%, rgba(5, 7, 12, 0.1) 30%, rgba(5, 7, 12, 0.35) 55%, rgba(7, 9, 15, 0.92) 85%, var(--bg) 100%);
  }
  .home-hero-media img {
    object-position: 68% 40%;
  }
  .home-title-claim {
    letter-spacing: 0.12em;
  }
  .home-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .home-hero-actions .ip-pill {
    justify-content: space-between;
  }
  .home-scroll,
  .home-hero-fog {
    display: none;
  }
  .home-status {
    margin-top: -56px;
  }
  .status-bar {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
  }
  .status-main {
    flex-wrap: wrap;
    row-gap: 4px;
  }
  .status-text {
    white-space: normal;
    width: 100%;
    padding-left: 22px;
  }
  .status-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 0;
  }
  .status-facts > div,
  .status-facts > div:first-child {
    padding: 0 12px;
    border-left: 1px solid var(--border);
  }
  .status-facts > div:nth-child(odd) {
    border-left: none;
    padding-left: 0;
  }
  .status-cta {
    width: 100%;
  }
  .feature-grid,
  .rank-grid,
  .news-side {
    grid-template-columns: 1fr;
  }
  .feature-grid {
    gap: 12px;
  }
  .feature {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 16px;
    padding: 20px 18px;
  }
  .feature-icon {
    grid-row: 1 / 3;
    margin-bottom: 0;
    width: 44px;
    height: 44px;
  }
  .feature h3 {
    margin-bottom: 4px;
    font-size: 15px;
  }
  .mw-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .market-widget {
    padding: 20px 16px 16px;
  }
  .join-card {
    padding: 30px 22px;
  }
  .join-ip {
    grid-template-columns: 1fr;
  }
  .join-ip .btn {
    grid-row: auto;
    grid-column: 1;
    margin-top: 12px;
  }
  .home-community {
    padding: 110px 0;
  }
  .map-label {
    font-size: 10.5px;
    padding: 3px 7px;
  }
  .map-pin {
    width: 12px;
    height: 12px;
  }
  .map-tip {
    width: 190px;
  }
  .home-kicker {
    font-size: 11.5px;
    letter-spacing: 0.16em;
  }
  .market-widget .source-badge {
    white-space: nowrap;
    font-size: 10px;
  }
  .display-title {
    font-size: clamp(30px, 8.4vw, 40px);
  }
  .section-head--split .btn {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .fact-grid {
    gap: 18px 14px;
  }
  .map-label {
    display: none;
  }
}

/* ---------- Weniger Bewegung ---------- */
@media (prefers-reduced-motion: reduce) {
  .reveal--image {
    clip-path: none;
  }
  .reveal--image img,
  .home-hero-media img {
    transform: none !important;
  }
  .reveal--blur {
    filter: none;
  }
  .home-hero-fog,
  .home-scroll span,
  .map-pin::after,
  .btn--play::after {
    display: none;
  }
}
