:root {
  color: #333;
  background: #f2f2f2;
  font: 16px/1.6 Helvetica, Verdana, Arial, sans-serif;
  font-synthesis: none;
  --accent: #a33232;
  --accent-hover: #aa3838;
  --heading: #333;
  --muted: #666;
  --page: #f2f2f2;
  --surface: #fff;
  --border: #e6e6e6;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--heading);
  background: var(--page);
}

main {
  width: min(880px, calc(100% - 32px));
  margin: auto;
  padding: 24px 0 56px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
  padding: 14px 20px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.brand {
  display: block;
  flex: 0 1 280px;
  min-width: 0;
  line-height: 0;
  text-decoration: none;
}

.brand img {
  display: block;
  width: min(100%, 260px);
  height: auto;
}

nav {
  display: flex;
  flex: 0 0 auto;
  gap: 16px;
  font-size: .9rem;
}

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

a { color: var(--accent); }
a:hover, a:focus-visible { color: var(--accent-hover); }
nav a:hover, nav a:focus-visible { text-decoration: underline; }

.card,
.policy {
  padding: clamp(28px, 6vw, 56px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 14px 40px rgb(51 51 51 / 8%);
}

.eyebrow {
  color: var(--accent);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--heading);
  font-weight: 400;
}

h1 {
  margin: .2rem 0 1rem;
  font-size: clamp(2.3rem, 7vw, 4.25rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}

h2 {
  margin: 2.3rem 0 .7rem;
  font-size: clamp(1.35rem, 3vw, 1.7rem);
}

p,
li { color: var(--muted); }

.lede {
  max-width: 700px;
  margin: 0;
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-block;
  padding: 13px 20px;
  border: 1px solid #742424;
  border-radius: 4px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.button:hover,
.button:focus-visible {
  border-color: #7c2929;
  background: var(--accent-hover);
  color: #fff;
}

.button-note {
  color: var(--muted);
  font-size: .9rem;
}

.how-it-works {
  margin-top: 32px;
  padding: 22px 24px;
  background: #f7f7f7;
  border-left: 4px solid var(--accent);
}

.how-it-works h2 { margin-top: 0; }
.how-it-works p:last-child { margin-bottom: 0; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.feature {
  padding: 22px;
  background: #fffaf9;
  border: 1px solid #ead2d2;
  border-top: 4px solid var(--accent);
  border-radius: 8px;
}

.feature strong {
  display: block;
  margin-bottom: 6px;
}

.feature span { color: var(--muted); }

.instructions {
  margin-top: 24px;
}

.instructions h2 {
  margin: .2rem 0 .7rem;
  font-size: clamp(1.8rem, 5vw, 2.7rem);
}

.instructions > p {
  max-width: 660px;
  margin-top: 0;
}

.steps {
  display: grid;
  gap: 18px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  position: relative;
  min-height: 48px;
  padding-left: 64px;
  counter-increment: steps;
}

.steps li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: #111;
  color: #fff;
  content: counter(steps);
  font-weight: 800;
}

.steps strong {
  display: block;
  color: var(--heading);
}

.bookmark {
  overflow-wrap: anywhere;
  font-weight: 700;
}

.privacy-note {
  margin-top: 28px;
  padding: 16px 18px;
  background: #fffaf9;
  border: 1px solid #ead2d2;
  border-left: 4px solid var(--accent);
}

.privacy-note p { margin: 0; }

.policy {
  max-width: 760px;
  margin-inline: auto;
}

.policy h1 { font-size: clamp(2.25rem, 6vw, 3.5rem); }
.policy > :first-child { margin-top: 0; }
.policy li { margin: 8px 0; }
.date { margin-top: -.35rem; }

.site-footer {
  margin-top: 32px;
  padding: 24px 4px 8px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: .9rem;
  text-align: center;
}

@media (max-width: 680px) {
  .site-header {
    align-items: center;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
  }

  .brand {
    flex-basis: auto;
    width: 100%;
  }

  .brand img {
    width: min(100%, 240px);
    margin-inline: auto;
  }

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

@media (max-width: 420px) {
  nav { gap: 12px; }
  .steps li { padding-left: 56px; }
}
