/* ── Reset & base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  background: #0d0d1a;
  color: #d4c9a8;
  min-height: 100vh;
  line-height: 1.6;
}

a { color: #c9aa71; text-decoration: none; transition: color 0.2s; }
a:hover { color: #e8d5a0; }

/* ── Header ─────────────────────────────────────────────────── */
header {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  border-bottom: 2px solid #c9aa71;
  padding: 3rem 2rem;
  text-align: center;
}

.site-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.ankh { font-size: 2.5rem; color: #c9aa71; }

header h1 {
  font-size: 2.5rem;
  color: #c9aa71;
  letter-spacing: 0.15em;
}

.subtitle {
  color: #8a9bb5;
  margin-top: 0.75rem;
  font-style: italic;
  font-size: 1.1rem;
}

/* ── Main ───────────────────────────────────────────────────── */
main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
}

/* ── Card Grid ──────────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (max-width: 800px) {
  .card-grid { grid-template-columns: 1fr; }
}

.report-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #111122 0%, #0f1628 100%);
  border: 1px solid #2a2a4a;
  border-radius: 12px;
  padding: 2rem;
  transition: border-color 0.3s, transform 0.2s;
  color: inherit;
}

.report-card:hover {
  border-color: #c9aa71;
  transform: translateY(-2px);
  color: inherit;
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.report-card h2 {
  color: #c9aa71;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.card-tagline {
  color: #8a9bb5;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.card-description {
  color: #8a9bb5;
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex: 1;
}

.card-description em { color: #d4c9a8; }

.card-stats {
  list-style: none;
  margin-bottom: 1.5rem;
  padding: 0;
}

.card-stats li {
  color: #8a9bb5;
  font-size: 0.85rem;
  padding: 0.3rem 0;
  border-bottom: 1px solid #1a1a2e;
}

.card-stats li strong { color: #c9aa71; }

.card-link {
  display: inline-block;
  color: #c9aa71;
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: auto;
}

.report-card:hover .card-link { color: #e8d5a0; }

/* ── About Section ──────────────────────────────────────────── */
.about-section {
  background: linear-gradient(135deg, #111122 0%, #0f1628 100%);
  border: 1px solid #2a2a4a;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.about-section h2 {
  color: #c9aa71;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #2a2a4a;
}

.about-section p {
  color: #8a9bb5;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.about-section p:last-child { margin-bottom: 0; }

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid #2a2a4a;
  margin-top: 1rem;
}

.site-footer p {
  color: #4a5568;
  font-size: 0.85rem;
}

.footer-latin {
  margin-top: 0.5rem;
  font-style: italic;
  color: #2a2a4a;
}

/* ── Scrollbar ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0d0d1a; }
::-webkit-scrollbar-thumb { background: #2a2a4a; border-radius: 3px; }

.dev-portrait {
    float: left;
    height: 80px;
    width: auto;
    margin: 0 1rem 0.5rem 0;
}
