:root {
  --ink: #17202a;
  --muted: #5c6b7a;
  --line: #dce4ec;
  --surface: #ffffff;
  --soft: #f5f8fb;
  --brand: #0b7a75;
  --brand-dark: #075e59;
  --accent: #f2b84b;
  --accent-soft: #fff4d8;
  --shadow: 0 24px 70px rgba(23, 32, 42, 0.13);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(11, 122, 117, 0.12), transparent 34rem),
    linear-gradient(180deg, #fbfdff 0%, #eef4f8 100%);
  line-height: 1.6;
}

a {
  color: var(--brand-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header,
.site-footer,
main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}

.brand:hover {
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), #163f67);
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.82rem;
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.hero,
.policy-hero {
  margin-top: 34px;
  padding: clamp(42px, 7vw, 84px);
  border: 1px solid rgba(220, 228, 236, 0.9);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 252, 0.88)),
    repeating-linear-gradient(90deg, transparent 0, transparent 36px, rgba(11, 122, 117, 0.05) 37px);
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 7vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.08;
}

.lead {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 800;
  text-align: center;
}

.button:hover {
  text-decoration: none;
}

.button.primary {
  color: #ffffff;
  background: var(--brand);
  box-shadow: 0 14px 28px rgba(11, 122, 117, 0.24);
}

.button.secondary {
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
}

.status-panel {
  padding: 28px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.status-panel > div:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-weight: 800;
}

.status-panel p,
.status-panel dl {
  margin: 0;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #20b15a;
  box-shadow: 0 0 0 6px rgba(32, 177, 90, 0.12);
}

.status-panel dl {
  display: grid;
  gap: 16px;
}

.status-panel dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-panel dd {
  margin: 2px 0 0;
  font-weight: 750;
}

.section {
  margin-top: 26px;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(220, 228, 236, 0.9);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0;
  background: transparent;
  border: 0;
}

.intro-grid article {
  padding: 28px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 22px;
  border-radius: 8px;
  color: var(--brand-dark);
  background: var(--accent-soft);
  font-weight: 900;
}

.intro-grid h2 {
  font-size: 1.25rem;
}

.intro-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 6vw, 72px);
}

.split p {
  color: var(--muted);
}

.checklist {
  display: grid;
  gap: 12px;
}

.checklist div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.checklist strong,
.checklist span {
  display: block;
}

.checklist span {
  color: var(--muted);
}

.section-heading {
  max-width: 700px;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 850;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand-dark), #163f67);
}

.contact-band .eyebrow,
.contact-band p,
.contact-band a {
  color: #ffffff;
}

.contact-band p {
  max-width: 680px;
  margin-bottom: 0;
  opacity: 0.88;
}

.contact-band .button.primary {
  color: var(--brand-dark);
  background: #ffffff;
  box-shadow: none;
}

.policy-hero {
  max-width: none;
}

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

.updated {
  display: inline-flex;
  margin: 18px 0 0;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--brand-dark);
  background: var(--accent-soft);
  font-weight: 850;
}

.policy {
  margin: 26px auto 34px;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 42px rgba(23, 32, 42, 0.08);
}

.policy section + section {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.policy h2 {
  font-size: 1.35rem;
}

.policy p,
.policy li {
  color: var(--muted);
}

.policy ul {
  padding-left: 1.25rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 0 42px;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  gap: 18px;
}

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

  .hero,
  .split,
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .hero,
  .policy-hero {
    margin-top: 14px;
  }

  .status-panel {
    padding: 22px;
  }
}

@media (max-width: 560px) {
  .site-header,
  .site-footer,
  main {
    width: min(100% - 22px, 1120px);
  }

  nav {
    gap: 12px;
  }

  .hero,
  .policy-hero,
  .section,
  .policy,
  .intro-grid article {
    padding: 22px;
  }

  h1 {
    font-size: 2.55rem;
  }

  .button,
  .hero-actions {
    width: 100%;
  }
}
