:root {
  color-scheme: light;
  --ink: #171717;
  --muted: #5c6268;
  --paper: #fbfbf8;
  --white: #ffffff;
  --line: #d7dde1;
  --green: #235f46;
  --red: #b53d38;
  --blue: #25608f;
  --shadow: 0 18px 44px rgba(19, 31, 36, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
}

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

a {
  color: inherit;
}

.site-header {
  align-items: center;
  background: rgba(251, 251, 248, 0.94);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 16px 6vw;
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  font-weight: 800;
  text-decoration: none;
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}

nav a:hover {
  color: var(--ink);
}

.hero {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(15, 18, 20, 0.78), rgba(15, 18, 20, 0.34)),
    url("https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=2200&q=80") center / cover;
  color: var(--white);
  display: flex;
  min-height: 74vh;
  padding: 72px 6vw;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  color: var(--red);
  font-size: 0.88rem;
  font-weight: 800;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f0b0ad;
}

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

h1 {
  font-size: 4rem;
  line-height: 1.02;
  margin-bottom: 24px;
  max-width: 820px;
}

h2 {
  font-size: 2.25rem;
  line-height: 1.12;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

p,
li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.hero p {
  color: rgba(255, 255, 255, 0.88);
}

.lede {
  font-size: 1.22rem;
  max-width: 680px;
}

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

.button {
  border-radius: 8px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-width: 156px;
  padding: 13px 18px;
  text-decoration: none;
}

.primary {
  background: var(--red);
  color: var(--white);
}

.secondary {
  border: 1px solid rgba(255, 255, 255, 0.68);
  color: var(--white);
}

.band {
  padding: 86px 6vw;
}

.intro {
  background: var(--white);
}

.content-grid {
  align-items: center;
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  margin: 0 auto;
  max-width: 1160px;
}

.content-grid img {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.details {
  background: #edf5f0;
}

.feature-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  max-width: 1160px;
}

.feature-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.feature-grid article:nth-child(2) {
  border-top: 6px solid var(--blue);
}

.feature-grid article:nth-child(1) {
  border-top: 6px solid var(--green);
}

.feature-grid article:nth-child(3) {
  border-top: 6px solid var(--red);
}

.privacy {
  background: var(--ink);
  color: var(--white);
}

.privacy p {
  color: rgba(255, 255, 255, 0.78);
}

.privacy .eyebrow {
  color: #f0b0ad;
}

.text-measure {
  margin: 0 auto;
  max-width: 820px;
}

.text-link {
  color: #a8d2ff;
  font-weight: 800;
}

.policy-body .text-link {
  color: var(--blue);
}

.policy-hero {
  background:
    linear-gradient(90deg, rgba(23, 23, 23, 0.82), rgba(23, 23, 23, 0.44)),
    url("https://images.unsplash.com/photo-1554224154-26032ffc0d07?auto=format&fit=crop&w=2200&q=80") center / cover;
  color: var(--white);
  padding: 94px 6vw;
}

.policy-hero p {
  color: rgba(255, 255, 255, 0.86);
}

.policy-body {
  background: var(--white);
  padding: 70px 6vw;
}

.policy-body h2 {
  border-top: 1px solid var(--line);
  font-size: 1.6rem;
  margin-top: 38px;
  padding-top: 30px;
}

code {
  background: #eef0f2;
  border-radius: 6px;
  color: var(--ink);
  padding: 2px 6px;
}

footer {
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: 28px 6vw;
}

footer p {
  font-size: 0.88rem;
  margin-bottom: 6px;
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  nav {
    flex-wrap: wrap;
    gap: 14px;
  }

  .hero {
    min-height: 78vh;
    padding-top: 58px;
  }

  h1 {
    font-size: 2.7rem;
  }

  h2 {
    font-size: 1.9rem;
  }

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

@media (max-width: 420px) {
  h1 {
    font-size: 2.2rem;
  }

  .button {
    width: 100%;
  }
}
