:root {
  --bg: #0f1115;
  --bg-alt: #161a21;
  --text: #eaecef;
  --text-muted: #9aa0aa;
  --accent: #5b8cff;
  --border: #2a2f3a;
  --max-width: 860px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
}

.page-header {
  padding: 1.4rem 1.5rem 1.1rem;
  text-align: center;
}

.back-link {
  display: inline-block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}

.back-link:hover {
  color: var(--accent);
}

.page-header h1 {
  margin: 0 0 0.3rem;
  font-size: 1.8rem;
}

.page-header p {
  margin: 0 auto;
  max-width: 640px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.intro {
  margin: 0 0 2.5rem;
}

.intro p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.highlight,
.brief {
  margin: 0 0 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.brief h2 {
  font-size: 1.1rem;
  margin: 0 0 0.6rem;
}

.brief p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.brief em {
  color: var(--text);
  font-style: normal;
}

.brief .mini-stats {
  margin-top: 1.25rem;
}

.kicker {
  margin: 0 0 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
}

.highlight h2 {
  font-size: 1.25rem;
  margin: 0 0 0.75rem;
  line-height: 1.3;
}

.highlight p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.highlight strong {
  color: var(--text);
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 1.75rem 0;
}

figure {
  margin: 0;
}

.tag {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  text-align: center;
}

figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  background: #fff;
}

figure.single {
  max-width: 600px;
  margin: 1.75rem auto;
}

figure.single.small {
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.mini-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.mini-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  padding: 0.65rem 1.3rem;
  border-right: 1px solid var(--border);
}

.mini-stat:last-child {
  border-right: none;
}

.mini-stat-value {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.1;
}

.mini-stat-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  text-align: center;
}

.report-link {
  text-align: center;
  padding-top: 1rem;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 0.7rem 1.6rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  .before-after {
    grid-template-columns: 1fr;
  }

  .mini-stat {
    padding: 0.65rem 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
