:root {
  color-scheme: light;
  --bg: #fbfaf6;
  --paper: #fffefa;
  --ink: #171235;
  --muted: #686478;
  --line: #dedbd1;
  --teal: #00aeb7;
  --coral: #ff7467;
  --violet: #6d58b8;
  --yellow: #f3d86a;
  --max: 900px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 30px 0 22px;
  border-bottom: 1px solid var(--line);
}

.brand {
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.nav a {
  text-decoration: none;
}

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

.article {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 86px;
}

.eyebrow,
.purchase-label {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: 4.6rem;
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: 1.55rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.lead {
  max-width: 680px;
  margin-bottom: 44px;
  color: #353044;
  font-size: 1.25rem;
  line-height: 1.75;
}

.hero-media {
  margin: 0 0 62px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.hero-media img {
  display: block;
  width: 100%;
  height: auto;
}

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

.section p {
  margin-bottom: 0;
  color: #383342;
  font-size: 1.05rem;
}

.policy {
  margin-top: 58px;
  padding-top: 44px;
  border-top: 1px solid var(--line);
}

.policy-header {
  max-width: 760px;
  margin-bottom: 30px;
}

.policy-header p:last-child {
  margin-bottom: 0;
  color: #383342;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 38px;
}

.policy-item {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.policy-item h3 {
  margin: 0 0 10px;
  font-size: 1.02rem;
  line-height: 1.3;
}

.policy-item p {
  margin: 0;
  color: #383342;
  font-size: 0.96rem;
  line-height: 1.7;
}

.policy-item a {
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.purchase {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 30px;
  padding: 34px 0 0;
  border-top: 1px solid var(--line);
}

.purchase h2 {
  margin-bottom: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 178px;
  padding: 12px 18px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  background:
    linear-gradient(90deg, var(--teal), var(--yellow) 48%, var(--coral))
    border-box;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.button:hover {
  box-shadow: 5px 5px 0 var(--ink);
  transform: translate(-2px, -2px);
}

.button:focus-visible {
  outline: 3px solid var(--violet);
  outline-offset: 4px;
}

.site-footer {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 38px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 720px) {
  .site-header {
    width: min(var(--max), calc(100% - 28px));
    padding-top: 22px;
  }

  .nav {
    gap: 12px;
  }

  .article {
    width: min(var(--max), calc(100% - 28px));
    padding: 48px 0 64px;
  }

  h1 {
    font-size: 3rem;
  }

  .lead {
    margin-bottom: 34px;
    font-size: 1.08rem;
  }

  .hero-media {
    margin-bottom: 46px;
  }

  .purchase {
    align-items: flex-start;
    flex-direction: column;
  }

  .policy-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .button {
    width: 100%;
  }

  .site-footer {
    width: min(var(--max), calc(100% - 28px));
  }
}

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

  h1 {
    font-size: 2.55rem;
  }
}
