/* ==========================================================================
   DYNTHELOR — landing page
   ========================================================================== */

:root {
  --bg: #0c0f12;
  --bg-card: #14181d;
  --bg-card-hover: #191e24;
  --border: #232a31;
  --text: #d8dee3;
  --text-dim: #7c8790;
  --text-heading: #f2f5f7;
  --accent: #4fd1c5;
  --accent-dim: #2f8a80;
  --status-progress: #e0a94f;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.55;
}

.page {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 1.5rem 3rem;
}

.hero {
  margin-bottom: 3.5rem;
}

.hero__title {
  margin: 0;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: -0.01em;
}

.hero__tagline {
  margin: 0.6rem 0 0;
  color: var(--text-dim);
  font-size: 1.05rem;
  max-width: 42ch;
}

.group {
  margin-bottom: 3rem;
}

.group__title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.card {
  display: block;
  border: 1px solid var(--border);
  background: var(--bg-card);
  border-radius: 8px;
  padding: 1.1rem 1.25rem;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s ease, border-color 0.15s ease;
}

a.card:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent-dim);
}

.card--static {
  cursor: default;
}

.card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.4rem;
}

.card__name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-heading);
}

.status {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.55rem;
  border-radius: 99px;
  white-space: nowrap;
}

.status--live {
  color: var(--accent);
  border: 1px solid var(--accent-dim);
}

.status--progress {
  color: var(--status-progress);
  border: 1px solid var(--status-progress);
}

.card__desc {
  margin: 0 0 0.6rem;
  color: var(--text);
  font-size: 0.95rem;
}

.card__link {
  font-size: 0.85rem;
  color: var(--accent);
}

.dormant-list {
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--text-dim);
  font-size: 0.95rem;
}

.dormant-list li {
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
}

.dormant-list li:last-child {
  border-bottom: none;
}

.dormant-name {
  color: var(--text);
  font-weight: 600;
}

.footer {
  margin-top: 2rem;
  color: var(--text-dim);
  font-size: 0.8rem;
}
