html {
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f7faf9;
  color: #101827;
}

body {
  margin: 0;
}

a {
  color: inherit;
}

.page {
  min-height: 100vh;
  padding: 32px 20px 48px;
}

.shell {
  max-width: 1040px;
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0 30px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  box-shadow: 0 14px 28px rgba(16, 24, 39, 0.14);
}

.brand strong {
  display: block;
  font-size: 17px;
  letter-spacing: 0;
}

.brand span {
  display: block;
  margin-top: 2px;
  color: #4d5b68;
  font-size: 13px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.nav a,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid #cfd9df;
  border-radius: 8px;
  background: #ffffff;
  color: #152238;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(16, 24, 39, 0.06);
}

.button.primary {
  border-color: #12346b;
  background: #12346b;
  color: #ffffff;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.72fr);
  gap: 28px;
  align-items: start;
  padding: 42px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: #0f766e;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(40px, 8vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: 0;
}

p {
  margin: 0;
  color: #4d5b68;
  font-size: 16px;
  line-height: 1.65;
}

.lead {
  margin-top: 18px;
  max-width: 720px;
  color: #344250;
  font-size: 18px;
}

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

.panel,
.card {
  border: 1px solid #d7e0e5;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(16, 24, 39, 0.08);
}

.panel {
  padding: 24px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.stat {
  padding: 16px;
  border: 1px solid #dfe7eb;
  border-radius: 8px;
  background: #fbfdfc;
}

.stat b {
  display: block;
  margin-bottom: 5px;
  font-size: 24px;
}

.stat span {
  color: #5c6874;
  font-size: 13px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0 34px;
}

.card {
  padding: 20px;
}

ul {
  margin: 14px 0 0;
  padding-left: 20px;
  color: #3d4a57;
}

li {
  margin: 8px 0;
  line-height: 1.55;
}

.section {
  padding: 28px 0;
}

.muted {
  color: #65727f;
  font-size: 14px;
}

.footer {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #dce4e8;
  color: #65727f;
  font-size: 13px;
  line-height: 1.6;
}

@media (max-width: 820px) {
  .page {
    padding: 22px 16px 38px;
  }

  .topbar,
  .hero {
    grid-template-columns: 1fr;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }

  .grid,
  .stats {
    grid-template-columns: 1fr;
  }
}
