:root {
  color-scheme: light;
  --canvas: #f7f7f7;
  --surface: #ffffff;
  --ink: #171717;
  --secondary: #555555;
  --muted: #717171;
  --line: #e2e2e2;
  --line-soft: #e9e9e9;
  --accent: #171717;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--canvas);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.site-header,
main,
.site-footer {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-header {
  padding: 28px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  color: #ffffff;
  background: var(--accent);
  font-size: 14px;
  line-height: 1;
}

nav,
.site-footer {
  color: var(--secondary);
  font-size: 14px;
}

.hero {
  min-height: calc(100vh - 178px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 860px;
  padding: 72px 0 92px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  color: var(--ink);
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1.04;
}

h1 {
  font-size: clamp(76px, 15vw, 176px);
}

h2 {
  font-size: clamp(30px, 4vw, 50px);
}

.lede {
  max-width: 680px;
  margin: 26px 0 0;
  color: var(--secondary);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.35;
}

.availability {
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 56px;
  padding: 64px 0;
  border-top: 1px solid var(--line);
}

.split-section p,
.split-section address {
  margin: 0;
  color: var(--secondary);
  font-size: 19px;
  line-height: 1.55;
}

.company-section address {
  color: var(--ink);
  font-style: normal;
}

.site-footer {
  padding: 34px 0 42px;
  border-top: 1px solid var(--line);
}

.policy {
  max-width: 820px;
  padding: 54px 0 80px;
}

.policy h1 {
  font-size: clamp(46px, 8vw, 86px);
}

.policy .lede {
  margin-top: 14px;
  color: var(--muted);
  font-size: 17px;
}

.policy section {
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.policy section:first-of-type {
  margin-top: 44px;
}

.policy h2 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.15;
}

.policy p {
  margin: 0;
  color: var(--secondary);
  font-size: 17px;
  line-height: 1.58;
}

@media (max-width: 760px) {
  .site-header,
  main,
  .site-footer {
    width: min(100% - 28px, 1040px);
  }

  .site-header {
    padding: 20px 0;
  }

  .hero {
    min-height: auto;
    padding: 86px 0 74px;
  }

  h1 {
    font-size: clamp(62px, 22vw, 104px);
  }

  .lede {
    font-size: 21px;
  }

  .split-section {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 48px 0;
  }

  .split-section p,
  .split-section address {
    font-size: 17px;
  }
}
