:root {
  color-scheme: light;
  --bg: #f7f8f3;
  --text: #202124;
  --muted: #62686f;
  --line: #d9ded4;
  --accent: #176d6a;
  --accent-dark: #104f4d;
  --panel: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(23, 109, 106, 0.08), transparent 42%),
    var(--bg);
}

.page {
  width: min(1040px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 76px 0 48px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 40px;
  align-items: center;
}

.intro {
  display: grid;
  gap: 24px;
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(42px, 8vw, 84px);
  line-height: 0.98;
  letter-spacing: 0;
}

.summary {
  max-width: 660px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.7;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-weight: 700;
}

.button.primary {
  border-color: var(--accent);
  color: #ffffff;
  background: var(--accent);
}

.button:hover {
  border-color: var(--accent);
}

.button.primary:hover {
  background: var(--accent-dark);
}

.panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 48px rgba(28, 35, 31, 0.08);
}

.panel h2 {
  margin-bottom: 22px;
  font-size: 22px;
}

.stats {
  margin: 0;
  display: grid;
  gap: 18px;
}

.stats div {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.stats div:first-child {
  padding-top: 0;
  border-top: 0;
}

.stats dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.stats dd {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

@media (max-width: 760px) {
  .page {
    width: min(100% - 28px, 520px);
    padding: 44px 0 32px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .summary {
    font-size: 18px;
  }

  .actions {
    display: grid;
  }

  .button {
    width: 100%;
    text-align: center;
  }
}
