:root {
  --bg: #f6f1e8;
  --card: #fffaf2;
  --text: #201913;
  --muted: #6b6259;
  --border: #e7dbce;
  --green: #2f9e44;
  --orange: #f08c00;
  --red: #d9480f;
  --shadow: 0 18px 40px rgba(31,25,19,.08);
  --radius: 24px;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  background: radial-gradient(circle at top, #fff 0, var(--bg) 45%);
  color: var(--text);
}
.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero {
  width: min(920px, 100%);
  padding: 40px;
}
.eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f2e6d8;
  color: #8c5b25;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
h1 {
  margin: 0;
  font-size: clamp(2.3rem, 6vw, 4.5rem);
  line-height: .95;
}
.lead {
  margin: 18px 0 10px;
  max-width: 65ch;
  font-size: 1.08rem;
  color: var(--muted);
}
.intro {
  margin: 0 0 28px;
  max-width: 70ch;
  font-size: 1rem;
}
.buttons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 26px;
}
.btn {
  border: 0;
  border-radius: 18px;
  padding: 18px 16px;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  cursor: pointer;
  transition: transform .15s ease, opacity .15s ease;
}
.btn:hover { transform: translateY(-2px); opacity: .95; }
.btn-green { background: var(--green); }
.btn-orange { background: var(--orange); }
.btn-red { background: var(--red); }
.result {
  padding: 24px;
  border-radius: 22px;
  background: #fff;
}
.result-label {
  margin: 0 0 8px;
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
}
.result h2 {
  margin: 0 0 8px;
  font-size: clamp(1.4rem, 3vw, 2rem);
}
.result p:last-child { margin: 0; color: var(--muted); }

/* Legal pages */
.legal-page {
  max-width: 920px;
  margin: 2rem auto;
  padding: 2rem;
  background: #fffaf1;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(0,0,0,.06);
}

.legal-page h1 {
  margin: 0 0 1.4rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.legal-page h2 {
  margin: 1.6rem 0 .75rem;
  font-size: 1.2rem;
}

.legal-page p,
.legal-page li {
  color: #4f463f;
  line-height: 1.7;
}

@media (max-width: 700px) {
  .hero { padding: 28px 20px; }
  
  .footer {
  margin-top: 3rem;
  padding: 1.25rem 0 1.5rem;
  border-top: 1px solid var(--border);
}

.footer .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: .55rem;
}

.footer-links a {
  color: var(--muted);
  font-size: .95rem;
  text-decoration: none;
  transition: color .2s ease;
}

.footer-links a:hover {
  color: var(--text);
  text-decoration: underline;
}

.footer-copy {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
}

.sep {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--muted);
  opacity: .55;
}

@media (max-width: 640px) {
  .footer {
    padding: 1rem 0 1.25rem;
  }

  .footer-links {
    gap: .4rem;
  }

  .footer-links a,
  .footer-copy {
    font-size: .86rem;
  }
}
  .buttons { grid-template-columns: 1fr; }