:root {
  color-scheme: light;
  --accent: #0a4ce6;
  --text: #0b1020;
  --secondary: #5d6575;
  --rule: #dce4f2;
  --page: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--page);
}

body {
  margin: 0;
  background: var(--page);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-underline-offset: 0.16em;
}

a:focus-visible {
  border-radius: 4px;
  outline: 3px solid color-mix(in srgb, var(--accent) 34%, transparent);
  outline-offset: 4px;
}

.site-header {
  align-items: center;
  border-bottom: 1px solid var(--rule);
  display: flex;
  height: 78px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1440px;
  padding: 0 clamp(24px, 5vw, 72px);
}

.brand {
  align-items: center;
  color: var(--text);
  display: inline-flex;
  font-size: 22px;
  font-weight: 720;
  gap: 11px;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand img {
  border-radius: 8px;
  display: block;
}

nav {
  align-items: stretch;
  align-self: stretch;
  display: flex;
  gap: clamp(20px, 3vw, 42px);
}

nav a {
  align-items: center;
  color: var(--text);
  display: flex;
  font-size: 15px;
  font-weight: 520;
  position: relative;
  text-decoration: none;
}

nav a[aria-current="page"] {
  color: var(--accent);
  font-weight: 650;
}

nav a[aria-current="page"]::after {
  background: var(--accent);
  bottom: -1px;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(32px, 5vw, 84px);
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1.06fr);
  margin: 0 auto;
  max-width: 1440px;
  min-height: 680px;
  overflow: hidden;
  padding: 72px clamp(24px, 8vw, 124px);
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(56px, 6.1vw, 88px);
  letter-spacing: -0.055em;
  line-height: 0.98;
  margin: 0;
  max-width: 760px;
}

.hero-copy > p {
  color: #303745;
  font-size: clamp(22px, 2vw, 30px);
  letter-spacing: -0.024em;
  line-height: 1.35;
  margin: 34px 0 0;
  max-width: 660px;
}

.availability {
  color: var(--secondary);
  display: inline-block;
  font-size: 18px;
  margin-top: 32px;
}

.hero-art {
  display: block;
  height: auto;
  justify-self: center;
  max-width: 760px;
  transform: translateX(2%);
  width: min(58vw, 760px);
}

.trust-band {
  align-items: center;
  border-bottom: 1px solid var(--rule);
  border-top: 1px solid var(--rule);
  color: var(--accent);
  display: flex;
  gap: 28px;
  justify-content: center;
  min-height: 136px;
  padding: 28px 24px;
}

.trust-band svg {
  flex: 0 0 auto;
}

.trust-band p {
  color: var(--text);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 680;
  letter-spacing: -0.02em;
  margin: 0;
}

.document {
  margin: 0 auto;
  max-width: 800px;
  min-height: calc(100vh - 166px);
  padding: 64px 24px 88px;
}

.document-title {
  border: 0;
  margin-bottom: 42px;
  padding: 0;
}

.document-title h1 {
  font-size: clamp(42px, 5vw, 60px);
  letter-spacing: -0.045em;
  line-height: 1.02;
  margin: 0 0 12px;
}

.document-title p {
  color: var(--secondary);
  font-size: 17px;
  margin: 0;
}

.document section {
  border-top: 1px solid var(--rule);
  padding: 32px 0 28px;
}

.document section:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.document h2 {
  color: var(--accent);
  font-size: 23px;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0 0 12px;
}

.document p {
  color: #303745;
  font-size: 17px;
  margin: 0 0 14px;
}

.document p:last-child {
  margin-bottom: 0;
}

.document strong {
  color: var(--text);
}

footer {
  border-top: 1px solid var(--rule);
  color: var(--secondary);
  font-size: 14px;
  padding: 28px 24px;
  text-align: center;
}

@media (max-width: 820px) {
  .site-header {
    height: auto;
    min-height: 72px;
  }

  .brand span {
    font-size: 19px;
  }

  nav {
    gap: 18px;
  }

  nav a {
    font-size: 14px;
  }

  .hero {
    gap: 28px;
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 48px;
    padding-top: 64px;
  }

  .hero h1 {
    font-size: clamp(50px, 13vw, 72px);
  }

  .hero-art {
    transform: none;
    width: min(100%, 620px);
  }
}

@media (max-width: 560px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding-bottom: 16px;
    padding-top: 16px;
  }

  nav {
    align-self: auto;
    min-height: 34px;
  }

  nav a[aria-current="page"]::after {
    bottom: -8px;
  }

  .hero {
    padding-top: 48px;
  }

  .hero h1 {
    font-size: clamp(46px, 15vw, 62px);
  }

  .hero-copy > p {
    font-size: 21px;
    margin-top: 26px;
  }

  .availability {
    font-size: 16px;
    margin-top: 24px;
  }

  .trust-band {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .trust-band p {
    font-size: 20px;
  }

  .document {
    padding-top: 48px;
  }

  .document-title h1 {
    font-size: 44px;
  }
}
