:root {
  --bg: #f4f7fb;
  --ink: #101828;
  --muted: #516070;
  --line: rgba(16, 24, 40, 0.1);
  --blue: #0091ff;
  --blue-dark: #006ed6;
  --green: #42d77d;
  --surface: #ffffff;
  --surface-soft: #eef6ff;
  --shadow: 0 20px 60px rgba(24, 67, 123, 0.14);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 12%, rgba(66, 215, 125, 0.25), transparent 24rem),
    radial-gradient(circle at 85% 8%, rgba(0, 145, 255, 0.2), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  font-family: Inter, Roboto, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.page {
  min-height: 100vh;
}

.hero {
  width: min(1120px, calc(100% - 32px));
  min-height: 100svh;
  margin: 0 auto;
  padding: 48px 0 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  align-items: center;
  gap: 56px;
}

.hero__content {
  min-width: 0;
  padding: 24px 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  padding: 8px 12px 8px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #22415f;
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
}

.badge img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 780px;
  margin-top: 22px;
  font-size: clamp(44px, 7vw, 78px);
  line-height: 0.96;
  font-weight: 860;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.lead {
  max-width: 640px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.36;
  font-weight: 560;
  overflow-wrap: break-word;
}

.actions {
  width: min(100%, 460px);
  margin-top: 34px;
}

.button {
  min-height: 58px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 26px;
  font-size: 18px;
  line-height: 22px;
  font-weight: 800;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary,
.button--secondary {
  width: 100%;
  color: #ffffff;
  background: linear-gradient(180deg, #0ca2ff 0%, var(--blue) 100%);
  box-shadow: 0 18px 38px rgba(0, 145, 255, 0.28);
}

.button--primary:hover,
.button--secondary:hover {
  background: linear-gradient(180deg, #1bafff 0%, var(--blue-dark) 100%);
  box-shadow: 0 20px 42px rgba(0, 145, 255, 0.34);
}

.microcopy {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.hero__visual {
  justify-self: center;
  width: min(100%, 430px);
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.76));
  box-shadow: var(--shadow);
}

.hero__visual img {
  width: 100%;
  border-radius: 24px;
}

.learn {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 72px;
}

.section-heading {
  display: grid;
  gap: 10px;
  max-width: 720px;
}

.section-heading span {
  color: var(--blue-dark);
  font-size: 14px;
  line-height: 18px;
  font-weight: 850;
  text-transform: uppercase;
}

h2 {
  font-size: 42px;
  line-height: 1.06;
  font-weight: 850;
}

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

.points article,
.final-cta {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(16, 24, 40, 0.06);
}

.points article {
  min-height: 220px;
  padding: 24px;
}

.points span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--surface-soft);
  color: var(--blue-dark);
  font-size: 13px;
  line-height: 1;
  font-weight: 850;
}

h3 {
  margin-top: 18px;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 850;
}

.points p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.final-cta {
  margin-top: 16px;
  padding: 26px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: center;
  gap: 24px;
}

.final-cta p {
  color: #29394a;
  font-size: 20px;
  line-height: 1.38;
  font-weight: 650;
}

.footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 36px;
  border-top: 1px solid var(--line);
  color: rgba(81, 96, 112, 0.78);
  display: grid;
  gap: 8px;
  font-size: 12px;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding: 28px 0 16px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero__content {
    padding: 10px 0 0;
  }

  h1 {
    font-size: 38px;
    line-height: 1.04;
  }

  .lead {
    font-size: 17px;
  }

  .actions {
    margin-top: 26px;
  }

  .hero__visual {
    width: min(100%, 390px);
  }

  .learn {
    padding: 34px 0 54px;
  }

  h2 {
    font-size: 32px;
  }

  .points,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .points article {
    min-height: 0;
  }

  .final-cta {
    padding: 22px;
  }
}

@media (max-width: 640px) {
  .hero,
  .learn,
  .footer {
    width: min(100%, 390px);
    margin-left: 0;
    margin-right: 0;
    padding-left: 16px;
    padding-right: 16px;
  }

  h1 {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  body {
    background:
      radial-gradient(circle at 10% 5%, rgba(66, 215, 125, 0.2), transparent 16rem),
      linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  }

  .hero,
  .learn,
  .footer {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  h1 {
    margin-top: 18px;
    font-size: 32px;
    line-height: 1.04;
    max-width: 100%;
  }

  .lead {
    margin-top: 18px;
    font-size: 16px;
    max-width: 100%;
  }

  .button {
    min-height: 54px;
    padding: 0 18px;
    font-size: 17px;
  }

  .hero__visual {
    max-width: 100%;
    padding: 10px;
    border-radius: 24px;
  }

  .hero__visual img {
    border-radius: 18px;
  }

  .points article {
    padding: 20px;
  }

  .final-cta p {
    font-size: 18px;
  }
}
