:root {
  color-scheme: light;
  --ink: #143b34;
  --muted: #5f756f;
  --paper: #fbfaf6;
  --panel: #ffffff;
  --line: #e3ddd0;
  --brand: #005747;
  --brand-2: #0e8a73;
  --gold: #b4872d;
  --shadow: 0 24px 70px rgba(20, 59, 52, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(14, 138, 115, 0.16), transparent 32rem),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: var(--brand);
  font-weight: 700;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.shell {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 56px;
}

.topbar {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 48px;
}

.brand {
  align-items: center;
  display: flex;
  gap: 14px;
  min-width: 0;
}

.brand img {
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(20, 59, 52, 0.18);
  height: 56px;
  width: 56px;
}

.brand-name {
  display: grid;
  gap: 2px;
}

.brand-name strong {
  font-size: 1.05rem;
}

.brand-name span,
.nav {
  color: var(--muted);
  font-size: 0.94rem;
}

.nav {
  align-items: center;
  display: flex;
  gap: 18px;
  white-space: nowrap;
}

.hero {
  background: var(--panel);
  border: 1px solid rgba(227, 221, 208, 0.88);
  border-radius: 28px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 28px;
  grid-template-columns: 1.1fr 0.9fr;
  overflow: hidden;
  padding: clamp(28px, 5vw, 56px);
}

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

h1 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  letter-spacing: 0;
  line-height: 0.98;
  margin: 0;
}

.lede {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  max-width: 62ch;
}

.cta-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  align-items: center;
  background: var(--brand);
  border-radius: 999px;
  color: white;
  display: inline-flex;
  min-height: 48px;
  padding: 0 22px;
}

.button.secondary {
  background: #edf5f2;
  color: var(--brand);
}

.support-card {
  align-self: center;
  background: linear-gradient(145deg, #064f42, #0b7562);
  border-radius: 24px;
  color: white;
  padding: 28px;
}

.support-card p {
  color: rgba(255, 255, 255, 0.76);
  margin: 8px 0 0;
}

.support-card .large {
  color: #ffdc8c;
  display: block;
  font-size: clamp(1.2rem, 3vw, 1.55rem);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 24px;
}

.section {
  margin-top: 42px;
}

.section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: 0;
  line-height: 1.1;
  margin: 0 0 16px;
}

.panel {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
}

.panel h3 {
  font-size: 1.05rem;
  margin: 0 0 8px;
}

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

.panel p {
  margin: 0;
}

.faq {
  display: grid;
  gap: 14px;
}

details {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

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

.footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  justify-content: space-between;
  margin-top: 48px;
  padding-top: 24px;
}

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

  .nav {
    flex-wrap: wrap;
    white-space: normal;
  }

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

  .hero {
    border-radius: 22px;
  }
}
