:root {
  color-scheme: light;
  --bg: #f4f7f4;
  --ink: #121614;
  --muted: #5b6662;
  --panel: #ffffff;
  --line: #d7e2dd;
  --teal: #0f766e;
  --teal-dark: #0b514c;
  --coral: #cb543f;
  --shadow: 0 22px 55px rgba(18, 22, 20, .1);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(185, 240, 106, .22), transparent 34rem),
    linear-gradient(180deg, #edf7f3 0, var(--bg) 620px);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a { color: inherit; }
.wrap {
  width: min(960px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  border-bottom: 1px solid rgba(215, 226, 221, .84);
  background: rgba(244, 247, 244, .9);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 850;
}

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

.mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), #12201d);
  box-shadow: 0 10px 25px rgba(15, 118, 110, .25);
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid var(--teal);
  border-radius: var(--radius);
  background: var(--teal);
  color: #fff;
  font-weight: 850;
  text-decoration: none;
}

.hero {
  padding: 58px 0 28px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--coral);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2rem, 6vw, 3rem);
  line-height: 1.05;
}

h1,
h2,
h3,
.lead,
.eyebrow,
.btn,
.link-grid a {
  text-transform: capitalize;
}

.lead {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.content {
  display: grid;
  gap: 18px;
  padding: 28px 0 64px;
}

.panel {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, .78);
  box-shadow: var(--shadow);
}

.panel h2,
.panel h3 {
  margin: 0 0 10px;
  line-height: 1.14;
}

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

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

.link-grid {
  display: grid;
  gap: 10px;
}

.link-grid a {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--teal-dark);
  font-weight: 850;
  text-decoration: none;
}

.site-footer {
  border-top: 1px solid rgba(215, 226, 221, .28);
  background: #080c14;
  color: #cbd5e1;
  padding: 34px 0;
  font-size: .92rem;
  line-height: 1.7;
}

.footer-inner {
  display: grid;
  gap: 12px;
  justify-items: center;
  align-items: center;
  text-align: center;
}

.footer-brand {
  color: #fff;
  font-weight: 900;
  letter-spacing: .04em;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 14px;
  width: 100%;
  text-align: center;
}

.footer-links a,
.site-footer a {
  color: #7dd3fc;
  text-decoration: none;
}

.site-footer p {
  width: 100%;
  margin: 0;
  text-align: center;
}
.footer-notice {
  max-width: 980px;
  margin: 0 auto;
  color: #94a3b8;
  font-size: .84rem;
  text-align: center;
}

@media (min-width: 760px) {
  .link-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
