:root {
  --los-navy-950: #04070d;
  --los-navy-900: #060b16;
  --los-navy-800: #0a1428;
  --los-navy-700: #0f1e38;
  --los-navy-600: #16294a;
  --los-line: #1c2c4a;

  --los-gold: #d4af37;
  --los-gold-bright: #f3dc95;
  --los-gold-dim: #8a6526;

  --los-text: #eef2fa;
  --los-text-dim: #98a7c4;

  --los-live: #38d39f;
  --los-developing: #4aa8ff;
  --los-planned: #5c6b8a;
  --los-attention: #ff7a5c;
  --los-new: var(--los-gold-bright);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--los-navy-900);
  color: var(--los-text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.los-header {
  border-bottom: 1px solid var(--los-line);
  background: linear-gradient(180deg, var(--los-navy-800), var(--los-navy-900));
  padding: 28px 20px 22px;
}
.los-header-inner { max-width: 1100px; margin: 0 auto; }
.los-eyebrow {
  margin: 0 0 4px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--los-gold-bright);
}
.los-title { margin: 0 0 6px; font-size: clamp(20px, 3vw, 30px); font-weight: 700; }
.los-subtitle { margin: 0; color: var(--los-text-dim); font-size: 14px; }

.los-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 20px 60px;
}

.los-error {
  border: 1px solid var(--los-attention);
  background: rgba(255, 122, 92, 0.08);
  color: var(--los-attention);
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 14px;
}

.los-section-title {
  margin: 0 0 14px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--los-text-dim);
}

.los-module-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .los-module-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .los-module-grid { grid-template-columns: repeat(2, 1fr); }
}

.los-card {
  background: var(--los-navy-800);
  border: 1px solid var(--los-line);
  border-radius: 14px;
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.los-card--planned { opacity: 0.72; }

.los-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.los-card-title { margin: 0; font-size: 18px; font-weight: 700; }

.los-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid currentColor;
  white-space: nowrap;
}
.los-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.los-badge--live { color: var(--los-live); }
.los-badge--developing { color: var(--los-developing); }
.los-badge--planned { color: var(--los-planned); }
.los-badge--attention { color: var(--los-attention); }
.los-badge--new-activity { color: var(--los-new); }

.los-card-description {
  margin: 0;
  color: var(--los-text-dim);
  font-size: 14px;
  line-height: 1.5;
}

.los-card-areas {
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
}
.los-card-areas li {
  font-size: 12px;
  color: var(--los-text-dim);
  background: var(--los-navy-700);
  border: 1px solid var(--los-line);
  border-radius: 999px;
  padding: 4px 10px;
}
.los-card-areas li.is-attention {
  color: var(--los-attention);
  border-color: var(--los-attention);
}

.los-card-footer {
  margin-top: auto;
  padding-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.los-card-hint { margin: 0; font-size: 12px; color: var(--los-text-dim); }

.los-card-open {
  display: inline-block;
  color: var(--los-navy-900);
  background: var(--los-gold);
  padding: 9px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}
.los-card-open:hover { background: var(--los-gold-bright); }

.los-card-unavailable {
  margin: 0;
  font-size: 13px;
  color: var(--los-text-dim);
  font-style: italic;
}

.los-footer {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid var(--los-line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.los-footer-note { margin: 0; font-size: 12px; color: var(--los-text-dim); max-width: 60ch; }
.los-tree-link {
  font-size: 12px;
  color: var(--los-text-dim);
  text-decoration: none;
  border: 1px solid var(--los-line);
  border-radius: 999px;
  padding: 6px 12px;
  white-space: nowrap;
}
.los-tree-link:hover { color: var(--los-gold-bright); border-color: var(--los-gold-dim); }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
