:root {
  color-scheme: light;
  --bg: #eef4f8;
  --bg-2: #f8fafc;
  --card: rgba(255, 255, 255, 0.92);
  --text: #102033;
  --muted: #5f6f82;
  --accent: #146c43;
  --accent-2: #0b4f6c;
  --accent-3: #b45309;
  --border: rgba(16, 32, 51, 0.12);
  --shadow: 0 20px 45px rgba(16, 32, 51, 0.10);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
}
html, body {
  margin: 0;
  padding: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(20, 108, 67, 0.10), transparent 28%),
    radial-gradient(circle at top right, rgba(11, 79, 108, 0.10), transparent 26%),
    linear-gradient(180deg, #f8fbfe 0%, var(--bg) 100%);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
.shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 18px 48px;
}
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.brand {
  font-weight: 900;
  letter-spacing: 0.4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.brand::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 4px rgba(20, 108, 67, 0.12);
}
.nav { display: flex; flex-wrap: wrap; gap: 10px; }
.nav a {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--border);
  font-size: 14px;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
.nav a:hover,
.nav a:focus-visible,
.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(16, 32, 51, 0.10);
  outline: none;
}
.hero {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 18px;
  align-items: stretch;
  margin-bottom: 18px;
}
.panel {
  position: relative;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 24px;
  backdrop-filter: blur(10px);
}
.panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20, 108, 67, 0.04), transparent 38%, rgba(11, 79, 108, 0.04));
  pointer-events: none;
}
.panel > * {
  position: relative;
  z-index: 1;
}
.kicker { text-transform: uppercase; font-size: 12px; letter-spacing: 0.12em; color: var(--accent-2); font-weight: 800; }
h1 { margin: 10px 0 12px; font-size: clamp(30px, 5vw, 54px); line-height: 1.02; }
h2 { margin: 0 0 10px; font-size: 24px; }
p { line-height: 1.7; color: var(--muted); }
.actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 15px;
  border-radius: 14px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}
.btn.primary { background: var(--accent); color: #fff; }
.btn.secondary {
  background: linear-gradient(180deg, #eef6ff 0%, #e4effc 100%);
  color: var(--accent-2);
  border-color: #cfe0f5;
}
.stack { display: grid; gap: 14px; }
.stat {
  display: grid;
  gap: 6px;
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f8fbff 0%, #f1f7fd 100%);
  border: 1px solid var(--border);
}
.stat strong { font-size: 26px; }
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.card {
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(250,252,255,0.96) 100%);
  border: 1px solid var(--border);
  box-shadow: 0 14px 28px rgba(16, 32, 51, 0.05);
}
.card h3 { margin: 0 0 8px; font-size: 18px; }
.list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}
.footer {
  margin-top: 22px;
  color: var(--muted);
  font-size: 13px;
}
@media (max-width: 860px) {
  .hero, .cards { grid-template-columns: 1fr; }
  .topbar { align-items: flex-start; flex-direction: column; }
  .shell { padding-inline: 14px; }
  .panel { padding: 20px; border-radius: 20px; }
  h1 { font-size: clamp(28px, 10vw, 44px); }
}
