/* Nexus City – global theme */
/* Fonts via includes/header.php (preconnect) */

:root {
  --nc-bg: #05020c;
  --nc-cyan: #00e1fd;
  --nc-purple: #b026ff;
  --nc-blue: #5b8cff;
  --nc-glass: rgba(8, 4, 22, 0.72);
  --nc-header-h: 5.25rem;
}

* { box-sizing: border-box; }

body {
  font-family: 'Rajdhani', sans-serif;
  background: var(--nc-bg);
  color: #fff;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(ellipse 90% 55% at 15% 10%, rgba(0, 225, 253, 0.09) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 85% 90%, rgba(176, 38, 255, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(91, 140, 255, 0.04) 0%, transparent 70%),
    var(--nc-bg);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(0, 225, 253, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 225, 253, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 25%, black 15%, transparent 78%);
  pointer-events: none;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--nc-bg); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--nc-cyan), var(--nc-purple));
  border-radius: 10px;
}

/* ── Header ───────────────────────────────────────────── */
.nc-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nc-header-h);
  transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.35s ease,
              box-shadow 0.35s ease,
              border-color 0.35s ease;
}

.nc-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 2, 12, 0.88) 0%, rgba(5, 2, 12, 0.55) 100%);
  backdrop-filter: blur(22px) saturate(1.4);
  -webkit-backdrop-filter: blur(22px) saturate(1.4);
  border-bottom: 1px solid rgba(0, 225, 253, 0.12);
  z-index: -1;
}

.nc-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(0, 225, 253, 0.5) 20%,
    rgba(176, 38, 255, 0.6) 50%,
    rgba(0, 225, 253, 0.5) 80%,
    transparent 100%);
  opacity: 0.7;
  animation: nc-shimmer-line 6s ease-in-out infinite;
}

@keyframes nc-shimmer-line {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 1; }
}

.nc-header.is-scrolled {
  --nc-header-h: 4.25rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.55), 0 0 60px rgba(0, 225, 253, 0.06);
}

.nc-header.is-scrolled::before {
  background: rgba(5, 2, 12, 0.94);
}

.nc-header__inner {
  max-width: 88rem;
  margin: 0 auto;
  height: 100%;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Logo – offizielles NEXUS-CITY Emblem (nexus-city.net-logo.png) */
.nc-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nc-brand__emblem {
  position: relative;
  width: 3.5rem;
  height: 3.5rem;
  flex-shrink: 0;
  transition: width 0.35s ease, height 0.35s ease;
}

.nc-header.is-scrolled .nc-brand__emblem {
  width: 2.85rem;
  height: 2.85rem;
}

.nc-brand__emblem img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 50%;
  filter: drop-shadow(0 0 12px rgba(0, 225, 253, 0.45)) drop-shadow(0 0 6px rgba(255, 120, 40, 0.25));
  transition: filter 0.35s ease, transform 0.35s ease;
}

.nc-brand:hover .nc-brand__emblem img {
  filter: drop-shadow(0 0 20px rgba(0, 225, 253, 0.65)) drop-shadow(0 0 10px rgba(255, 120, 40, 0.4));
  transform: scale(1.04);
}

.nc-brand__emblem::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid rgba(0, 225, 253, 0.15);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.nc-brand:hover .nc-brand__emblem::after {
  opacity: 1;
  animation: nc-pulse-ring 1.5s ease-out infinite;
}

@keyframes nc-pulse-ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.25); opacity: 0; }
}

.nc-brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nc-brand__text--hide-sm .nc-brand__tag {
  display: none;
}

@media (min-width: 640px) {
  .nc-brand__text--hide-sm .nc-brand__tag {
    display: block;
    margin-top: 0;
    font-size: 0.65rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(0, 225, 253, 0.55);
    white-space: nowrap;
    font-weight: 600;
  }
}

.nc-header.is-scrolled .nc-brand__tag {
  display: none !important;
}

@media (min-width: 1024px) {
  .nc-brand__emblem {
    width: 3.75rem;
    height: 3.75rem;
  }
}

/* Nav pill bar */
.nc-nav {
  display: none;
  align-items: center;
  gap: 0.15rem;
  padding: 0.35rem;
  border-radius: 1rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

@media (min-width: 1024px) {
  .nc-nav { display: flex; }
}

.nc-nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.85rem;
  border-radius: 0.65rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  transition: color 0.25s ease, background 0.25s ease, transform 0.2s ease;
  white-space: nowrap;
}

.nc-nav__link i {
  font-size: 0.72rem;
  opacity: 0.75;
}

.nc-nav__link:hover {
  color: #fff;
  background: rgba(0, 225, 253, 0.08);
  transform: translateY(-1px);
}

.nc-nav__link.is-active {
  color: var(--nc-cyan);
  background: linear-gradient(135deg, rgba(0, 225, 253, 0.14), rgba(176, 38, 255, 0.1));
  box-shadow: 0 0 20px rgba(0, 225, 253, 0.12), inset 0 0 0 1px rgba(0, 225, 253, 0.2);
}

.nc-nav__link.is-active::after {
  content: "";
  position: absolute;
  bottom: 0.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 2px;
  background: var(--nc-cyan);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--nc-cyan);
}

.nc-nav__link--vote { color: rgba(251, 191, 36, 0.85); }
.nc-nav__link--vote:hover, .nc-nav__link--vote.is-active { color: #fbbf24; }

.nc-nav__link--bdt { color: rgba(250, 204, 21, 0.85); }
.nc-nav__link--shop { color: rgba(52, 211, 153, 0.85); }
.nc-nav__link--admin { color: rgba(251, 191, 36, 0.9); }

/* Header actions */
.nc-header__actions {
  display: none;
  align-items: center;
  gap: 0.65rem;
}

@media (min-width: 1024px) {
  .nc-header__actions { display: flex; }
}

.nc-btn-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: 0.85rem;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: #000;
  background: linear-gradient(135deg, #00e1fd 0%, #00c4e0 50%, #5b8cff 100%);
  box-shadow: 0 0 28px rgba(0, 225, 253, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}

.nc-btn-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.35) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}

.nc-btn-cta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 40px rgba(0, 225, 253, 0.55), 0 8px 24px rgba(0, 0, 0, 0.35);
}

.nc-btn-cta:hover::before {
  transform: translateX(120%);
}

.nc-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.35);
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.25s ease;
}

.nc-btn-icon:hover {
  color: var(--nc-cyan);
  border-color: rgba(0, 225, 253, 0.35);
  background: rgba(0, 225, 253, 0.08);
  box-shadow: 0 0 16px rgba(0, 225, 253, 0.15);
}

/* Mobile toggle */
.nc-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.5rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(0, 225, 253, 0.2);
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

@media (min-width: 1024px) {
  .nc-burger { display: none; }
}

.nc-burger span {
  display: block;
  height: 2px;
  background: linear-gradient(90deg, var(--nc-cyan), var(--nc-purple));
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nc-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nc-burger.is-open span:nth-child(2) { opacity: 0; }
.nc-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nc-mobile {
  position: fixed;
  inset: 0;
  z-index: 99;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.nc-mobile.is-open {
  pointer-events: auto;
  opacity: 1;
}

.nc-mobile__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 2, 12, 0.85);
  backdrop-filter: blur(12px);
}

.nc-mobile__panel {
  position: absolute;
  top: var(--nc-header-h);
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem;
  overflow-y: auto;
  transform: translateY(-12px);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.nc-mobile.is-open .nc-mobile__panel {
  transform: translateY(0);
  opacity: 1;
}

.nc-mobile__link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  margin-bottom: 0.35rem;
  border-radius: 1rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.25s ease;
}

.nc-mobile__link:hover,
.nc-mobile__link.is-active {
  color: var(--nc-cyan);
  background: rgba(0, 225, 253, 0.08);
  border-color: rgba(0, 225, 253, 0.15);
}

.nc-header-spacer {
  height: var(--nc-header-h);
}

/* ── Legacy utilities (used across pages) ─────────────── */
.glass {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(10, 5, 25, 0.55);
}

.glass-strong {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(8, 4, 20, 0.75);
}

.neon-border {
  border: 1px solid rgba(0, 225, 253, 0.2);
  box-shadow: 0 0 25px rgba(0, 225, 253, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.neon-border-purple {
  border: 1px solid rgba(176, 38, 255, 0.25);
  box-shadow: 0 0 30px rgba(176, 38, 255, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.gradient-text {
  background: linear-gradient(135deg, #00e1fd 0%, #b026ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(0, 225, 253, 0.7);
  font-weight: 700;
}

.btn-primary {
  background: linear-gradient(135deg, #00e1fd, #00b8d4);
  color: #000;
  font-weight: 700;
  border-radius: 1rem;
  padding: 1rem 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 0 25px rgba(0, 225, 253, 0.35);
}

.mc-inventory {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  max-width: 22rem;
}

.mc-inventory__row {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 0.35rem;
}

.mc-inventory__row--hotbar {
  margin-top: 0.35rem;
  padding-top: 0.35rem;
  border-top: 1px solid rgba(0, 225, 253, 0.15);
}

.mc-slot {
  position: relative;
  aspect-ratio: 1;
  border-radius: 0.45rem;
  border: 1px solid rgba(0, 225, 253, 0.15);
  background: rgba(0, 0, 0, 0.55);
}

.mc-slot--armor {
  width: 3rem;
  height: 3rem;
}

.mc-slot__icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: pixelated;
  padding: 0.15rem;
}

.mc-slot__amount {
  position: absolute;
  right: 0.2rem;
  bottom: 0.05rem;
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 2px #000;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 40px rgba(0, 225, 253, 0.55);
}

.btn-ghost {
  border: 1px solid rgba(0, 225, 253, 0.3);
  background: rgba(0, 0, 0, 0.35);
  font-weight: 700;
  border-radius: 1rem;
  padding: 1rem 2rem;
  transition: all 0.3s ease;
}

.btn-ghost:hover {
  background: rgba(0, 225, 253, 0.08);
  border-color: rgba(0, 225, 253, 0.5);
  transform: translateY(-1px);
}

.card-hover {
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 225, 253, 0.45) !important;
  box-shadow: 0 12px 40px rgba(0, 225, 253, 0.12);
}

/* Sichtbar für LCP/FCP – Animation nur mit JS */
.reveal {
  opacity: 1;
  transform: none;
}

html.js-anim .reveal:not(.visible) {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

html.js-anim .reveal.visible {
  opacity: 1;
  transform: none;
}

main > section:not(.hero-lcp):not(.nc-hero) {
  content-visibility: auto;
  contain-intrinsic-size: auto 480px;
}

body.nc-perf-home main > section:not(.nc-hero) {
  content-visibility: visible;
  contain-intrinsic-size: auto;
}

@media (prefers-reduced-motion: reduce) {
  html.js-anim .reveal:not(.visible),
  html.js-anim .reveal.visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

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

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(0, 225, 253, 0.2); }
  50% { box-shadow: 0 0 40px rgba(0, 225, 253, 0.4); }
}

.animate-float { animation: float 4s ease-in-out infinite; }
.animate-pulse-glow { animation: pulse-glow 3s ease-in-out infinite; }

/* Legacy nav (wiki subpages etc.) */
.nav-link {
  position: relative;
  transition: all 0.25s ease;
}

.nav-link:hover {
  color: #00e1fd;
  text-shadow: 0 0 10px rgba(0, 225, 253, 0.5);
}

.nav-active {
  color: #00e1fd;
  text-shadow: 0 0 10px rgba(0, 225, 253, 0.5);
}

.nav-active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #00e1fd;
  box-shadow: 0 0 10px #00e1fd;
}

/* ── SEO / Kristalle Landing ─────────────────────────── */
.nc-breadcrumb {
  margin-bottom: 1.5rem;
}
.nc-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}
.nc-breadcrumb__list a {
  color: rgba(0, 225, 253, 0.75);
  transition: color 0.2s;
}
.nc-breadcrumb__list a:hover { color: #00e1fd; }
.nc-breadcrumb__sep { margin: 0 0.15rem; opacity: 0.35; }

.nc-crystals-hero {
  position: relative;
  border-radius: 1.5rem;
  border: 1px solid rgba(0, 225, 253, 0.2);
  background: linear-gradient(135deg, rgba(0, 225, 253, 0.06) 0%, rgba(176, 38, 255, 0.05) 50%, rgba(5, 2, 12, 0.9) 100%);
  overflow: hidden;
}
.nc-crystals-hero__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(0, 225, 253, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(176, 38, 255, 0.1) 0%, transparent 55%);
  pointer-events: none;
}
.nc-crystals-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
}
.nc-crystals-stat {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}
.nc-crystals-lore {
  background: linear-gradient(145deg, rgba(0, 225, 253, 0.04), rgba(5, 2, 12, 0.6));
}
.nc-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, rgba(0, 225, 253, 0.25), rgba(176, 38, 255, 0.2));
  font-weight: 800;
  font-size: 1rem;
  color: #00e1fd;
  font-family: 'Orbitron', sans-serif;
}
.nc-crystals-cta {
  background: linear-gradient(135deg, rgba(0, 225, 253, 0.08) 0%, rgba(176, 38, 255, 0.06) 100%);
  box-shadow: 0 0 60px rgba(0, 225, 253, 0.08);
}
.nc-faq__item summary {
  list-style: none;
}
.nc-faq__item summary::-webkit-details-marker { display: none; }
.nc-faq__item summary::after {
  content: "+";
  float: right;
  font-weight: 700;
  color: rgba(0, 225, 253, 0.6);
  transition: transform 0.2s;
}
.nc-faq__item[open] summary::after {
  content: "−";
  color: #00e1fd;
}
.nc-faq__item[open] {
  border-color: rgba(0, 225, 253, 0.2);
}
.nc-pack-guide {
  transition: border-color 0.25s, transform 0.25s;
}
.nc-pack-guide:hover {
  border-color: rgba(0, 225, 253, 0.25);
  transform: translateY(-2px);
}

/* ── Skip Link & Mobile Bar ──────────────────────────── */
.nc-icon {
  display: inline-block;
  vertical-align: -0.125em;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
}
.nc-icon--xl {
  width: 2.25rem;
  height: 2.25rem;
}
.nc-skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--nc-cyan);
  color: #05020c;
  font-weight: 700;
  border-radius: 0 0 0.5rem 0;
}
.nc-skip-link:focus {
  left: 0;
}

body.has-mobile-bar {
  padding-bottom: 4.25rem;
}
.nc-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 0.5rem 0.75rem calc(0.5rem + env(safe-area-inset-bottom));
  background: rgba(5, 2, 12, 0.92);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(0, 225, 253, 0.15);
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.5rem;
}
@media (max-width: 768px) {
  .nc-mobile-bar { display: grid; }
  body:not(.nc-perf-home) { padding-bottom: 4.25rem; }
}
.nc-mobile-bar__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 0.5rem;
  border-radius: 0.75rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.2s, color 0.2s;
}
.nc-mobile-bar__btn i { font-size: 1.1rem; }
.nc-mobile-bar__btn:hover { background: rgba(255, 255, 255, 0.08); color: #fff; }
.nc-mobile-bar__btn--cta {
  background: rgba(0, 225, 253, 0.12);
  border-color: rgba(0, 225, 253, 0.35);
  color: var(--nc-cyan);
}

/* ── Footer ──────────────────────────────────────────── */
.nc-footer-cta {
  background: linear-gradient(135deg, rgba(0, 225, 253, 0.04) 0%, rgba(176, 38, 255, 0.03) 100%);
}
.nc-status-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  flex-shrink: 0;
}
.nc-status-dot.is-live {
  background: #34d399;
  box-shadow: 0 0 8px rgba(52, 211, 153, 0.6);
}
.nc-status-dot.is-dev {
  background: #fbbf24;
  box-shadow: 0 0 8px rgba(251, 191, 36, 0.5);
  animation: nc-pulse-dot 2s ease-in-out infinite;
}
@keyframes nc-pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ── Homepage: Quick Pills & Feature Grid ────────────── */
.nc-quick-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.nc-quick-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.nc-quick-pill:hover {
  border-color: rgba(0, 225, 253, 0.4);
  background: rgba(0, 225, 253, 0.08);
  color: #fff;
  transform: translateY(-1px);
}
.nc-feature-link {
  display: block;
  height: 100%;
  border-radius: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.nc-feature-link:hover {
  border-color: rgba(0, 225, 253, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 225, 253, 0.08);
}
.nc-feature-link__arrow {
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s, transform 0.2s;
}
.nc-feature-link:hover .nc-feature-link__arrow {
  opacity: 1;
  transform: translateX(0);
}

.nc-legal-content h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin: 1.25rem 0 0.5rem;
}
.nc-legal-content h2:first-child { margin-top: 0; }
.nc-legal-content a { color: #00e1fd; text-decoration: underline; text-underline-offset: 2px; }
.nc-legal-content ul { list-style: disc; padding-left: 1.25rem; margin: 0.5rem 0; }
.nc-legal-content li { margin: 0.35rem 0; }
.nc-legal-content strong { color: #fff; }
