:root {
  --bg0: #ffffff;
  --surface: #ffffff;
  --text: #1b2225;
  --muted: #5a676f;
  --accent: #2e7a78;
  --accent2: #2c5d86;
  --border: rgba(35, 45, 50, 0.12);
  --radius: 16px;
  --max: 1100px;
  --shadow: 0 10px 24px rgba(22, 29, 33, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--text);
  background: var(--bg0);
  line-height: 1.5;
}

a { color: var(--accent2); text-decoration: none; }
a:hover { text-decoration: underline; }

.skip-link {
  position: absolute; left: -999px; top: auto;
  width: 1px; height: 1px; overflow: hidden;
}
.skip-link:focus {
  left: 16px; top: 16px; width: auto; height: auto;
  background: var(--surface); padding: 10px 12px; border-radius: 10px;
  border: 1px solid var(--border);
  z-index: 9999;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.9);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 260px;
}
.brand img {
  height: 34px;
  width: auto;
}
.brand .tag {
  font-size: 13px;
  color: var(--muted);
}

.navlinks {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}
.navlinks a {
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  padding: 6px 2px;
}
.navlinks a:hover {
  color: var(--text);
  text-decoration: none;
}
.navlinks a.cta {
  color: #ffffff;
}
.navlinks a.cta:hover {
  color: #ffffff;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
  border: 1px solid rgba(46,122,120,0.3);
  background: #2e7a78;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(46,122,120,0.18);
}
.cta:hover {
  text-decoration: none;
  transform: translateY(-1px);
}
.cta.secondary {
  background: #ffffff;
  border: 1px solid var(--border);
  color: var(--text);
  box-shadow: none;
  font-weight: 700;
}

.hero {
  padding: 48px 0 26px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 22px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .brand { min-width: unset; }
  .hero { padding-top: 28px; }
  .nav { padding: 8px 0; }
}
@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .navlinks {
    width: 100%;
    justify-content: flex-start;
  }
  .btnrow {
    width: 100%;
  }
  .cta {
    width: 100%;
  }
}

.card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card.pad {
  padding: 22px;
}

.h1 {
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.12;
  margin: 0 0 14px;
}
.lede {
  color: var(--muted);
  font-size: 18px;
  margin: 0 0 18px;
}
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 0;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #f6f7f8;
  color: var(--muted);
  font-weight: 650;
  font-size: 13px;
}

.btnrow {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.section {
  padding: 24px 0;
}
.section h2 {
  margin: 0 0 12px;
  font-size: 24px;
}
.section p {
  margin: 0 0 10px;
  color: var(--muted);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

.kicker {
  color: var(--accent2);
  font-weight: 900;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 8px;
}

.list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.list li {
  margin: 8px 0;
}

.callout {
  border-left: 4px solid var(--accent);
  padding: 12px 14px;
  background: rgba(46, 122, 120, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(46, 122, 120, 0.25);
}

.faq details {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
  background: #fafbfc;
  margin: 10px 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--text);
}
.faq p {
  margin-top: 10px;
}

.footer {
  padding: 26px 0 38px;
  border-top: 1px solid var(--border);
  margin-top: 20px;
}
.footer small {
  color: rgba(90, 103, 111, 0.9);
}
.footer .cols {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 14px;
  margin: 14px 0 0;
}
@media (max-width: 900px) {
  .footer .cols { grid-template-columns: 1fr; }
}
hr.sep {
  border: none;
  border-top: 1px solid var(--border);
  margin: 18px 0;
}

.notice {
  font-size: 13px;
  color: rgba(90, 103, 111, 0.9);
}
