*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #f5f5f7;
  color: #1d1d1f;
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1rem .75rem;
}

.legal-link {
  margin-top: .75rem;
  font-size: .8125rem;
}

.legal-link a {
  color: #2563eb;
  text-decoration: none;
}

.legal-link a:hover {
  text-decoration: underline;
}

.legal-link a:focus {
  outline: none;
}

.legal-link a:focus-visible {
  outline: 3px solid #1d4ed8;
  outline-offset: 2px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}

.logo svg {
  width: 38px;
  height: 38px;
}

.logo span {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: #1d1d1f;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: .75rem;
  padding: 5px 14px;
  background: rgba(10, 135, 84, .08);
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 600;
  color: #0a8754;
}

.trust-badge svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 1rem 2rem;
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}

h1 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1d1d1f;
  text-align: center;
  margin-bottom: .5rem;
  letter-spacing: -.02em;
}

.intro {
  text-align: center;
  font-size: .875rem;
  color: #515154;
  margin-bottom: 1.5rem;
  max-width: 520px;
}

.choices {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.choice {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .75rem;
  padding: 1.5rem 1.25rem;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s, box-shadow .2s, transform .15s;
}

.choice:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .06);
}

.choice:active {
  transform: translateY(0);
}

.choice:focus {
  outline: none;
}

.choice:focus-visible {
  outline: 3px solid #1d1d1f;
  outline-offset: 3px;
}

.choice--green:focus-visible {
  outline-color: #06693f;
}

.choice--red:focus-visible {
  outline-color: #b91c1c;
}

.choice--blue:focus-visible {
  outline-color: #1d4ed8;
}

.choice--green {
  border-color: #0a8754;
  background: linear-gradient(to bottom, rgba(10, 135, 84, .04), #ffffff);
}

.choice--green:hover {
  border-color: #06693f;
  background: linear-gradient(to bottom, rgba(10, 135, 84, .08), #ffffff);
}

.choice--red:hover    { border-color: #dc2626; }
.choice--blue:hover   { border-color: #2563eb; }

.choice__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.choice--green .choice__icon { background: rgba(10, 135, 84, .1); }
.choice--red   .choice__icon { background: rgba(220, 38, 38, .08); }
.choice--blue  .choice__icon { background: rgba(37, 99, 235, .08); }

.choice__title {
  font-size: 1rem;
  font-weight: 600;
  color: #1d1d1f;
  line-height: 1.4;
}

.choice__sub {
  font-size: .85rem;
  color: #515154;
  margin-top: .25rem;
  line-height: 1.4;
}

.footer-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px 28px;
  padding: 24px 16px;
  border-top: 1px solid #e0e0e0;
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}

.footer-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .6;
  transition: opacity .15s;
}

.footer-icons a:hover { opacity: 1; }

.footer-icons a:focus {
  outline: none;
}

.footer-icons a:focus-visible {
  opacity: 1;
  outline: 3px solid #1d1d1f;
  outline-offset: 4px;
  border-radius: 4px;
}

.footer-icons img,
.footer-icons svg {
  height: 28px;
  width: auto;
  display: block;
}

.footer-icons__text {
  font-size: .8125rem;
  font-weight: 700;
  color: #0a8754;
  letter-spacing: .02em;
  text-decoration: none;
}

.disclaimer {
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  border-top: 1px solid #e0e0e0;
  font-size: .78rem;
  line-height: 1.6;
  color: #515154;
  text-align: center;
  max-width: 720px;
  width: 100%;
}

.disclaimer p + p { margin-top: .75rem; }

.disclaimer strong {
  font-weight: 600;
  color: #1d1d1f;
}

.site-footer {
  text-align: center;
  padding: 16px 16px 32px;
  font-size: .75rem;
  color: #515154;
}

.legal-main {
  flex: 1;
  max-width: 640px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 3rem;
  width: 100%;
}

.legal-main h1 {
  text-align: left;
  margin-bottom: 1rem;
}

.legal-main h2 {
  font-size: 1.05rem;
  margin: 1.5rem 0 .5rem;
  color: #1d1d1f;
}

.legal-main p,
.legal-main li {
  font-size: .875rem;
  color: #515154;
  margin-bottom: .75rem;
}

.legal-main ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.legal-main .back {
  display: inline-block;
  margin-bottom: 1.25rem;
  font-size: .875rem;
  font-weight: 500;
  color: #2563eb;
  text-decoration: none;
}

.legal-main .back:hover {
  text-decoration: underline;
}

.legal-main .back:focus {
  outline: none;
}

.legal-main .back:focus-visible {
  outline: 3px solid #1d4ed8;
  outline-offset: 2px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .choice {
    transition: border-color .2s, box-shadow .2s;
  }

  .choice:hover,
  .choice:active {
    transform: none;
  }

  .footer-icons a {
    transition: none;
  }
}

@media (min-width: 640px) {
  h1 { font-size: 1.4rem; }
  .choices { gap: 1.15rem; }
  .choice { padding: 1.5rem 2rem; }
}
