:root {
  --background: #f7fafc;
  --surface: #ffffff;
  --surface-muted: #eef6f8;
  --foreground: #202837;
  --muted: #667386;
  --border: #d5dde8;
  --brand: #f5b414;
  --brand-soft: #fff3cb;
  --navy: #203f60;
  --teal: #cfeff5;
  --shadow: 0 1px 2px rgba(32, 63, 96, 0.08), 0 22px 48px -32px rgba(32, 63, 96, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  background: var(--background);
}

body {
  margin: 0;
  color: var(--foreground);
  background:
    linear-gradient(rgba(213, 221, 232, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(213, 221, 232, 0.12) 1px, transparent 1px),
    var(--background);
  background-size: 48px 48px;
  font-family: "Segoe UI", Aptos, system-ui, -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.58;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--border);
  background: rgba(247, 250, 252, 0.9);
  backdrop-filter: blur(16px);
}

.header-inner,
.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.2rem;
}

.brand img {
  width: 80px;
  height: 80px;
  padding: 0;
  border-radius: 10px;
  background: var(--foreground);
  object-fit: contain;
}

.brand span span {
  color: var(--brand);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.text-link {
  color: var(--foreground);
  text-decoration: none;
  font-weight: 650;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--foreground);
  text-decoration: none;
  font-weight: 750;
  box-shadow: var(--shadow);
}

.button.primary {
  border-color: var(--brand);
  background: var(--brand);
}

.hero {
  padding: 82px 0 64px;
  background: linear-gradient(135deg, #fbfdff 0%, #eef8fb 56%, #fff7de 100%);
  border-bottom: 1px solid var(--border);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 840px;
  font-size: clamp(2.35rem, 6vw, 4.6rem);
}

h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.55rem);
}

h3 {
  font-size: 1.1rem;
}

.lead {
  max-width: 780px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.15rem;
}

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

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 48px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--border);
}

.metric {
  padding: 22px;
  background: rgba(255, 255, 255, 0.72);
}

.metric strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1.2;
}

.metric span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding: 72px 0;
}

.section.alt {
  border-block: 1px solid var(--border);
  background: var(--surface-muted);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 16px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  padding: 24px;
  box-shadow: var(--shadow);
}

.card p {
  color: var(--muted);
}

.card p:last-child,
.card ul:last-child {
  margin-bottom: 0;
}

.tag {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 4px 10px;
  border: 1px solid rgba(245, 180, 20, 0.45);
  border-radius: 999px;
  background: var(--brand-soft);
  font-size: 0.78rem;
  font-weight: 800;
}

.list {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.list li + li {
  margin-top: 10px;
}

.panel {
  padding: 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), #2e5a83);
  color: #ffffff;
}

.panel p {
  color: rgba(255, 255, 255, 0.76);
}

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

.footer {
  padding: 34px 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 760px) {
  .header-inner,
  .container {
    width: min(100% - 32px, 1120px);
  }

  .brand span {
    display: none;
  }

  .text-link {
    display: none;
  }

  .hero {
    padding: 56px 0 48px;
  }

  .metrics,
  .grid.two,
  .grid.three,
  .section-head {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 54px 0;
  }
}
