:root {
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #172033;
  background: #f7f8fb;
  line-height: 1.5;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 248, 251, 0.95)),
    #f7f8fb;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 16px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid rgba(33, 43, 71, 0.1);
  background: rgba(247, 248, 251, 0.86);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 750;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 8px;
  background: #1c3b66;
  color: #ffffff;
  font-size: 0.82rem;
  letter-spacing: 0;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 28px);
  color: #4d5b73;
  font-size: 0.95rem;
}

nav a {
  text-decoration: none;
}

nav a:hover {
  color: #172033;
}

main {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  display: grid;
  min-height: 520px;
  padding: clamp(56px, 10vw, 112px) 0 clamp(40px, 8vw, 80px);
  align-items: center;
}

.hero-copy {
  width: min(760px, 100%);
}

.policy-page {
  width: min(880px, calc(100% - 40px));
}

.policy-hero {
  padding: clamp(48px, 9vw, 88px) 0 clamp(28px, 6vw, 52px);
}

.policy-hero h1 {
  margin-bottom: 18px;
}

.policy-lead {
  width: min(720px, 100%);
  color: #4d5b73;
  font-size: 1.08rem;
}

.eyebrow {
  margin: 0 0 12px;
  color: #2d6f67;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.4rem, 7vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.hero p {
  width: min(640px, 100%);
  margin-bottom: 30px;
  color: #4d5b73;
  font-size: 1.08rem;
}

.primary-action {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 8px;
  background: #1c3b66;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

.primary-action:hover {
  background: #10294b;
}

.content-section {
  padding: clamp(38px, 7vw, 72px) 0;
  border-top: 1px solid rgba(33, 43, 71, 0.1);
}

.section-heading {
  display: grid;
  gap: 4px;
  margin-bottom: 24px;
}

.support-panel,
.faq-grid article {
  border: 1px solid rgba(33, 43, 71, 0.12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(42, 51, 75, 0.06);
}

.support-panel {
  padding: clamp(22px, 4vw, 34px);
}

.support-panel p:last-child {
  margin-bottom: 0;
}

.policy-panel ul {
  margin: 0;
  padding-left: 20px;
  color: #4d5b73;
}

.policy-panel li + li {
  margin-top: 8px;
}

.email-link {
  display: inline-block;
  margin: 2px 0 18px;
  color: #1c3b66;
  font-size: clamp(1.35rem, 4vw, 2.1rem);
  font-weight: 800;
  overflow-wrap: anywhere;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.muted {
  color: #617087;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.faq-grid article {
  padding: 24px;
}

.faq-grid p {
  margin-bottom: 0;
  color: #4d5b73;
}

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

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 30px 0 42px;
  border-top: 1px solid rgba(33, 43, 71, 0.1);
  color: #617087;
}

footer p {
  margin-bottom: 0;
}

@media (max-width: 720px) {
  .site-header,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

  main,
  footer {
    width: min(100% - 32px, 1120px);
  }

  .policy-page {
    width: min(100% - 32px, 880px);
  }

  .hero {
    min-height: 460px;
  }

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