@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/poppins-400.ttf") format("truetype");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/poppins-500.ttf") format("truetype");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/poppins-700.ttf") format("truetype");
}

:root {
  color-scheme: light;
  --brand: #155dfc;
  --brand-dark: #083aa9;
  --ink: #101828;
  --muted: #667085;
  --line: #d9e2ef;
  --surface: #f6f9fc;
  --card: #ffffff;
  --nav: #061226;
  --success: #039855;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  color: var(--ink);
  background: #ffffff;
  font-weight: 500;
  line-height: 1.62;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
}

.nav {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo img {
  width: 136px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #344054;
  font-size: 15px;
}

.btn {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 500;
  line-height: 1;
}

.btn-primary {
  color: #ffffff;
  background: var(--brand);
  box-shadow: 0 12px 28px rgba(21, 93, 252, .20);
}

.btn-secondary {
  color: var(--brand);
  border-color: #b8cdfd;
  background: #ffffff;
}

.breadcrumbs {
  padding: 18px 0 0;
  color: var(--muted);
  background: #ffffff;
  font-size: 14px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.breadcrumbs li + li::before {
  content: "/";
  color: #98a2b3;
}

.breadcrumbs a {
  color: var(--brand-dark);
}

.hero {
  padding: 78px 0 58px;
  background: radial-gradient(circle at 50% 0%, rgba(21, 93, 252, .11), transparent 34%), linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 700;
}

h1 {
  max-width: 760px;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: 0;
}

.lead {
  max-width: 720px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 19px;
}

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

.hero-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--card);
  box-shadow: 0 22px 60px rgba(16, 24, 40, .10);
}

.hero-card h2 {
  margin-bottom: 14px;
  font-size: 22px;
}

.hero-card ul,
.content-card ul {
  display: grid;
  gap: 12px;
  list-style: none;
}

.hero-card li,
.content-card li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  color: #344054;
}

.hero-card li::before,
.content-card li::before {
  content: "✓";
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 7px;
  color: var(--success);
  background: #ecfdf3;
  font-size: 13px;
}

.section {
  padding: 66px 0;
}

.section-soft {
  padding: 66px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-head h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.12;
}

.section-head p,
.content-card p {
  color: var(--muted);
  font-size: 17px;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.content-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--card);
}

.content-card h3 {
  margin-bottom: 10px;
  color: var(--brand-dark);
  font-size: 21px;
}

.cta {
  padding: 62px 0;
  color: #ffffff;
  background: var(--nav);
}

.cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta h2 {
  max-width: 720px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.12;
}

.footer {
  padding: 30px 0;
  color: #98a2b3;
  background: #050b17;
  font-size: 14px;
}

.footer .container,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
}

.footer .container {
  align-items: center;
  justify-content: space-between;
}

.footer a:hover {
  color: #ffffff;
}

@media (max-width: 820px) {
  .nav {
    height: auto;
    padding: 16px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
  }

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

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

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