:root {
  color-scheme: light;
  --ink: #101114;
  --muted: #626974;
  --line: #d9dee8;
  --surface: #ffffff;
  --canvas: #f4f7fc;
  --blue: #1f66e5;
  --green: #087f67;
  --coral: #ce4257;
  --yellow: #e0a100;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-size: 17px;
  line-height: 1.55;
}

a { color: var(--blue); }

a:focus-visible,
button:focus-visible {
  outline: 3px solid #88b2ff;
  outline-offset: 4px;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1160px, calc(100% - 40px));
  min-height: 76px;
  margin: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 760;
  text-decoration: none;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 15px;
  font-weight: 650;
}

.site-nav a {
  color: var(--ink);
  text-decoration: none;
}

.language-link {
  border: 1px solid #bdc8da;
  border-radius: 6px;
  padding: 7px 10px;
  background: rgba(255,255,255,.76);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: min(860px, 88vh);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background-color: #edf3ff;
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0 0 0 45%;
  content: "";
  background: var(--hero-screen) center 11% / 470px auto no-repeat;
  filter: drop-shadow(0 18px 30px rgba(31, 62, 112, .22));
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: rgba(237, 243, 255, .18);
}

.hero-content {
  width: min(1160px, calc(100% - 40px));
  margin: 72px auto 0;
}

.hero-copy { max-width: 575px; }

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 780;
  text-transform: uppercase;
}

h1, h2, h3 { line-height: 1.12; }

h1 {
  max-width: 600px;
  margin: 0;
  font-size: clamp(56px, 8vw, 92px);
  letter-spacing: 0;
}

.hero-lead {
  max-width: 535px;
  margin: 22px 0 28px;
  color: #343a45;
  font-size: 22px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid var(--blue);
  border-radius: 7px;
  padding: 10px 18px;
  color: white;
  background: var(--blue);
  font-weight: 720;
  text-decoration: none;
}

.button.secondary {
  color: var(--blue);
  background: rgba(255,255,255,.84);
}

.release-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
}

.band { padding: 82px 0; }
.band.white { background: var(--surface); }
.band.dark { color: white; background: #18202c; }

.container {
  width: min(1080px, calc(100% - 40px));
  margin: auto;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading h2 {
  margin: 0 0 14px;
  font-size: 42px;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
}

.dark .section-heading p { color: #c5ccda; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 34px;
}

.feature {
  padding-top: 18px;
  border-top: 3px solid var(--blue);
}

.feature:nth-child(2n) { border-top-color: var(--green); }
.feature:nth-child(3n) { border-top-color: var(--coral); }

.feature h3 { margin: 0 0 8px; font-size: 21px; }
.feature p { margin: 0; color: var(--muted); }

.privacy-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #465061;
  border-bottom: 1px solid #465061;
}

.privacy-facts div { padding: 28px; }
.privacy-facts div + div { border-left: 1px solid #465061; }
.privacy-facts strong { display: block; margin-bottom: 6px; font-size: 20px; }
.privacy-facts span { color: #c5ccda; }

.screens {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  align-items: start;
}

.screens figure { margin: 0; }
.screens img {
  display: block;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(31, 48, 81, .14);
}
.screens figcaption { margin-top: 12px; color: var(--muted); font-size: 15px; }

.content-page { padding: 126px 0 84px; background: var(--surface); }
.content-page main { width: min(780px, calc(100% - 40px)); margin: auto; }
.content-page h1 { font-size: 48px; }
.content-page h2 { margin-top: 42px; font-size: 27px; }
.content-page h3 { margin-top: 30px; font-size: 20px; }
.content-page li + li { margin-top: 8px; }
.updated { color: var(--muted); }

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); padding: 18px 0; }
.faq summary { cursor: pointer; font-weight: 720; }
.faq details p { color: var(--muted); }

.contact-box {
  margin-top: 40px;
  border-left: 4px solid var(--green);
  padding: 20px 24px;
  background: #eef9f5;
}

.site-footer { padding: 32px 0; color: #59616d; background: #eef1f6; font-size: 14px; }
.footer-row { display: flex; justify-content: space-between; gap: 20px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; }

@media (max-width: 760px) {
  .site-header { width: min(100% - 28px, 1160px); }
  .site-nav > a:not(.language-link) { display: none; }
  .hero { min-height: 820px; align-items: start; }
  .hero::before { inset: 505px -24px 0 30%; background-size: 270px auto; background-position: center top; }
  .hero::after { background: rgba(237, 243, 255, .48); }
  .hero-content { width: calc(100% - 32px); margin-top: 118px; }
  .hero-copy { max-width: 100%; }
  h1 { font-size: 58px; }
  .hero-lead { max-width: 420px; font-size: 19px; }
  .band { padding: 60px 0; }
  .section-heading h2 { font-size: 34px; }
  .feature-grid, .screens { grid-template-columns: 1fr; }
  .feature-grid { gap: 26px; }
  .screens { width: min(360px, 100%); margin: auto; }
  .privacy-facts { grid-template-columns: 1fr; }
  .privacy-facts div + div { border-left: 0; border-top: 1px solid #465061; }
  .content-page h1 { font-size: 40px; }
  .footer-row { flex-direction: column; }
}
