:root {
  color-scheme: light;
  --ink: #071b3f;
  --muted: #5f6f82;
  --line: #d9e2ec;
  --teal: #13b7b8;
  --teal-dark: #078b91;
  --paper: #ffffff;
  --wash: #f5f8fb;
  --soft: #eaf4f6;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--wash);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 0%, rgba(19, 183, 184, 0.13), transparent 34rem),
    linear-gradient(180deg, #ffffff 0%, var(--wash) 100%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: var(--teal-dark);
}

.home-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 32px;
}

.home-shell {
  width: min(100%, 680px);
  text-align: center;
}

.brand-mark {
  width: clamp(112px, 22vw, 184px);
  height: auto;
  margin-bottom: 32px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 9vw, 6.4rem);
}

.lede {
  width: min(100%, 560px);
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 20px;
  background: var(--ink);
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
}

.button:hover {
  background: #0c2859;
}

.text-link {
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover,
.back-link:hover {
  text-decoration: underline;
}

.policy-shell {
  width: min(100%, 860px);
  margin: 0 auto;
  padding: 40px 24px 72px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 40px;
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration: none;
}

.policy-header {
  border-bottom: 1px solid var(--line);
  margin-bottom: 42px;
  padding-bottom: 32px;
}

.policy-logo {
  width: 72px;
  height: auto;
  margin-bottom: 24px;
}

.policy-header h1 {
  font-size: clamp(2.5rem, 7vw, 5.1rem);
}

.policy-meta {
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 700;
}

section {
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
}

section:last-child {
  border-bottom: 0;
}

h2 {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 3vw, 1.8rem);
}

p,
ul {
  margin: 0 0 16px;
}

p:last-child,
ul:last-child {
  margin-bottom: 0;
}

ul {
  padding-left: 1.35rem;
}

li + li {
  margin-top: 8px;
}

@media (max-width: 560px) {
  .home-page {
    padding: 24px;
  }

  .home-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .text-link {
    width: 100%;
  }

  .text-link {
    padding: 12px 0;
  }
}
