:root {
  font-family: Arial, Helvetica, sans-serif;
  color: #171717;
  background: #f5f5f3;
  line-height: 1.6;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: #f5f5f3;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #f5f5f3;
}

.container {
  width: min(100% - 32px, 760px);
  margin: 0 auto;
  padding: 72px 0;
}

.card {
  background: #ffffff;
  border: 1px solid #e5e5e2;
  border-radius: 18px;
  padding: 48px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 28px;
  font-size: clamp(32px, 6vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

p {
  margin: 0 0 20px;
}

.intro {
  font-size: 20px;
  line-height: 1.5;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid #e8e8e5;
}

a {
  color: #171717;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

a:hover,
a:focus-visible {
  text-decoration-thickness: 2px;
}

a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

footer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #e8e8e5;
  font-size: 14px;
  color: #666666;
}

footer p {
  margin: 0;
}

@media (max-width: 600px) {
  .container {
    width: min(100% - 20px, 760px);
    padding: 24px 0;
  }

  .card {
    padding: 28px 22px;
    border-radius: 14px;
  }

  .intro {
    font-size: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}