:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #172033;
  background: #f4f6fa;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #f4f6fa;
}

a {
  color: #1657c8;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.page {
  min-height: 100vh;
}

.nav {
  background: #ffffff;
  border-bottom: 1px solid #dbe3ef;
}

.nav-inner,
.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  font-weight: 800;
  color: #172033;
}

.brand img {
  width: 32px;
  height: 32px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.hero {
  background: #ffffff;
  border-bottom: 1px solid #dbe3ef;
}

.hero .section {
  padding: 44px 0;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 48px;
  align-items: center;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #355072;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

h1 {
  max-width: 720px;
  margin: 0;
  color: #0f172a;
  font-size: clamp(32px, 5vw, 50px);
  line-height: 1.08;
  letter-spacing: 0;
}

.lead {
  max-width: 700px;
  margin: 18px 0 0;
  color: #40516a;
  font-size: 18px;
  line-height: 1.62;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid #c9d5e6;
  border-radius: 8px;
  background: #ffffff;
  color: #172033;
  font-weight: 700;
}

.button.primary {
  background: #1d5fd7;
  border-color: #1d5fd7;
  color: #ffffff;
}

.hero-panel {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid #dbe3ef;
  border-radius: 8px;
  background: #f8fafc;
}

.hero-panel div {
  padding: 14px;
  border: 1px solid #e3e9f3;
  border-radius: 8px;
  background: #ffffff;
}

.hero-panel span {
  display: block;
  color: #0f172a;
  font-size: 20px;
  font-weight: 800;
}

.hero-panel p {
  margin: 4px 0 0;
  color: #52647d;
  font-size: 13px;
  line-height: 1.45;
}

.section {
  padding: 38px 0;
}

.section h2 {
  margin: 0 0 16px;
  color: #0f172a;
  font-size: 26px;
  line-height: 1.2;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.card {
  min-height: 148px;
  padding: 20px;
  border: 1px solid #dbe3ef;
  border-radius: 8px;
  background: #ffffff;
}

.card h3 {
  margin: 0 0 8px;
  color: #0f172a;
  font-size: 18px;
}

.card p,
.section p,
li {
  color: #40516a;
  line-height: 1.65;
}

.tool-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
  padding: 0;
  list-style: none;
}

.tool-list li {
  padding: 12px 14px;
  border: 1px solid #dbe3ef;
  border-radius: 8px;
  background: #ffffff;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.tool-grid .tool a {
  display: grid;
  grid-template-columns: 40px 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
  min-height: 94px;
  padding: 13px;
  border: 1px solid #dbe3ef;
  border-radius: 8px;
  background: #ffffff;
  color: inherit;
  transition: border-color 120ms ease, box-shadow 120ms ease;
}

.tool-grid .tool a:hover {
  border-color: #1d5fd7;
  box-shadow: 0 6px 20px -12px rgba(29, 95, 215, 0.45);
  text-decoration: none;
}

.tool-grid .tool img {
  grid-row: 1 / span 2;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #eef2f8;
  object-fit: contain;
}

.tool-grid .tool-name {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
}

.tool-grid .tool-desc {
  font-size: 13px;
  line-height: 1.5;
  color: #52647d;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.section.cta .card {
  background: #ffffff;
  border-color: #c9d5e6;
  text-align: center;
  padding: 32px 24px;
}

.section.cta h2 {
  margin: 0 0 8px;
  font-size: 22px;
}

.section.cta p {
  margin: 0 auto 18px;
  max-width: 560px;
}

.faq {
  display: grid;
  gap: 14px;
}

.footer {
  border-top: 1px solid #dbe3ef;
  background: #ffffff;
}

.footer .section {
  padding: 24px 0;
  color: #52647d;
  font-size: 14px;
}

@media (max-width: 720px) {
  .nav-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero .section {
    padding: 34px 0;
  }

  .lead {
    font-size: 17px;
  }

  .hero-panel {
    display: none;
  }
}
