@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: optional;
  src: url("/fonts/zYXzKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1syxQKYbABA.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: optional;
  src: url("/fonts/zYXzKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1syxeKYY.woff2") format("woff2");
}
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 400 700;
  font-display: optional;
  src: url("/fonts/V8mDoQDjQSkFtoMM3T6r8E7mPb94C-s0.woff2") format("woff2");
}
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 400 700;
  font-display: optional;
  src: url("/fonts/V8mDoQDjQSkFtoMM3T6r8E7mPbF4Cw.woff2") format("woff2");
}

:root {
  --bg: #f4f6f8;
  --bg-2: #eef1f4;
  --surface: #ffffff;
  --card: #ffffff;
  --ink: #101828;
  --muted: #5f6b7a;
  --accent: #2bb3a0;
  --accent-3: #7c9cff;
  --border: rgba(16,24,40,0.08);
  --card-elev: 0 12px 24px rgba(16,24,40,0.08);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "IBM Plex Sans", "Space Grotesk", sans-serif;
  color: var(--ink);
  background: radial-gradient(1200px 600px at 10% -10%, #e9f4ff 0%, var(--bg) 60%) no-repeat, var(--bg);
}
.site-header, .site-footer {
  margin: 0 auto;
  max-width: 1180px;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 16px 24px;
  /* background: var(--surface); */
  border-bottom: 1px solid var(--border);
  gap: 16px;
}
.site-header .brand{
  font-weight:700;
  letter-spacing:1.4px;
  text-transform:uppercase;
  font-size:30px;
  color: var(--accent-3);
  text-decoration:none;
  font-family: "Space Grotesk", sans-serif;
}
.site-nav{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}
.site-footer {
  border-top: 1px solid var(--border);
  border-bottom: 0;
}
.brand {
  font-weight: 700;
  text-decoration: none;
  color: var(--accent-3);
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.site-nav a, .footer-links a {
  margin-right: 0;
  text-decoration: none;
  color: var(--muted);
  font-size: 16px;
  font-weight: 600;
}
.site-nav a:hover, .footer-links a:hover {
  color: var(--ink);
}
.btn-primary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 16px;
  border-radius:12px;
  border:1px solid rgba(16,24,40,0.06);
  background:var(--accent);
  color:#fff;
  font-weight:600;
  text-decoration:none;
  font-size:13px;
  box-shadow:0 8px 18px rgba(43,179,160,0.25);
}
.btn-primary:hover{filter:brightness(0.96)}
.btn-ghost{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 16px;
  border-radius:12px;
  border:1px solid rgba(16,24,40,0.16);
  background:transparent;
  color:var(--ink);
  font-weight:600;
  text-decoration:none;
  font-size:13px;
}
.btn-ghost:hover{border-color:rgba(43,179,160,0.6)}
.cta-card{
  margin:20px 0 24px;
  padding:14px 16px;
  border-radius:16px;
  background:linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.88));
  border:1px solid var(--border);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.cta-text{
  font-weight:600;
  color:var(--ink);
}
.content {
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px 24px 64px;
}
.lead {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 24px;
}
.content-section {
  margin-top: 28px;
}
.content-section h2 {
  margin-bottom: 10px;
  font-family: "Space Grotesk", sans-serif;
}
.content-section p {
  line-height: 1.6;
  color: #2c3b55;
}
.doc-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(240px,1fr));
  gap:16px;
  margin-top:12px;
}
.doc-card{
  background:linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.88));
  border:1px solid var(--border);
  border-radius:16px;
  padding:16px;
  box-shadow:var(--card-elev);
  display:flex;
  flex-direction:column;
  gap:10px;
}
.doc-title{
  font-size:16px;
  font-weight:700;
  color:var(--ink);
  text-decoration:none;
}
.doc-title:hover{color:var(--accent-3)}
.doc-desc{
  color:var(--muted);
  font-size:13px;
  line-height:1.5;
}
.doc-actions{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.link-list {
  padding-left: 18px;
}
.muted {
  color: var(--muted);
  font-size: 12px;
}

@media (min-width: 960px) {
  .site-header, .site-footer {
    flex-direction: row;
    align-items: flex-end;
  }
}

@media (max-width: 900px) {
  .site-header, .site-footer {
    padding: 14px 16px;
    gap: 12px;
  }
  .site-header .brand {
    font-size: 24px;
  }
  .site-nav {
    gap: 10px;
  }
  .site-nav a {
    font-size: 14px;
  }
  .content {
    padding: 24px 16px 48px;
  }
  .lead {
    font-size: 16px;
  }
}

@media (max-width: 640px) {
  .site-header, .site-footer {
    padding: 12px 14px;
  }
  .site-header .brand {
    font-size: 22px;
  }
  .site-nav {
    gap: 8px;
  }
  .site-nav a {
    font-size: 12px;
  }
  .content h1 {
    font-size: 26px;
  }
  .content-section h2 {
    font-size: 18px;
  }
  .cta-card {
    flex-direction: column;
    align-items: flex-start;
  }
}
