@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&family=IBM+Plex+Serif:ital,wght@0,400;0,600;0,700;1,400;1,600&display=swap');

:root {
  --green: #00b37d;
  --green-dark: #007d56;
  --green-pale: #e8faf4;
  --green-mid: #c0f0df;
  --blue: #2563eb;
  --blue-pale: #eff6ff;
  --amber: #d97706;
  --amber-pale: #fffbeb;
  --amber-mid: #fde68a;
  --red: #dc2626;
  --red-pale: #fef2f2;
  --ink: #111827;
  --ink-2: #374151;
  --ink-3: #6b7280;
  --ink-4: #9ca3af;
  --line: #e5e7eb;
  --line-dark: #d1d5db;
  --bg: #ffffff;
  --bg-off: #f9fafb;
  --bg-dark: #0f172a;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow: 0 1px 4px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── TOPBAR ── */
.topbar {
  background: var(--green);
  color: white;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 8px 20px;
  letter-spacing: 0.01em;
}
.topbar a { color: white; text-decoration: underline; opacity: 0.9; }

/* ── NAV ── */
.nav {
  background: white;
  border-bottom: 1.5px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-icon {
  width: 34px; height: 34px;
  background: var(--green);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo-icon svg { width: 18px; height: 18px; fill: none; stroke: white; stroke-width: 2.5; }
.nav-logo-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.nav-logo-name span { color: var(--green); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--ink-3);
  padding: 6px 12px;
  border-radius: 8px;
  transition: all 0.12s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--ink); background: var(--bg-off); }
.nav-links a.active { color: var(--green); background: var(--green-pale); }
.nav-cta-wrap { flex-shrink: 0; }
.nav-cta {
  background: var(--green);
  color: white;
  font-size: 0.84rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  transition: all 0.12s;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,179,125,0.3); }
.nav-mobile { display: none; background: none; border: none; cursor: pointer; padding: 4px; color: var(--ink); }

/* ── FOOTER ── */
.footer {
  background: var(--bg-dark);
  padding: 56px 32px 36px;
  margin-top: 80px;
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { font-size: 1rem; font-weight: 700; color: white; margin-bottom: 10px; }
.footer-tagline { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 260px; }
.footer-col-head { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 14px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 0.83rem; color: rgba(255,255,255,0.5); transition: color 0.12s; }
.footer-links a:hover { color: white; }
.footer-bottom {
  max-width: 1120px;
  margin: 28px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.25); }
.footer-disclaimer { font-size: 0.72rem; color: rgba(255,255,255,0.2); line-height: 1.65; max-width: 640px; }

/* ── SHARED LAYOUT ── */
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 32px; }
.wrap-sm { max-width: 780px; margin: 0 auto; padding: 0 32px; }
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }

/* ── TYPOGRAPHY ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.h1 {
  font-family: 'IBM Plex Serif', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ink);
}
.h2 {
  font-family: 'IBM Plex Serif', serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 14px;
}
.h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.lead { font-size: 1.05rem; color: var(--ink-2); line-height: 1.8; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-green { background: var(--green); color: white; }
.btn-green:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(0,179,125,0.35); }
.btn-outline { background: white; color: var(--green); border: 2px solid var(--green); }
.btn-outline:hover { background: var(--green-pale); }
.btn-white { background: white; color: var(--ink); }
.btn-white:hover { background: var(--bg-off); box-shadow: var(--shadow); }
.btn-ghost-white { background: rgba(255,255,255,0.12); color: white; border: 1.5px solid rgba(255,255,255,0.25); }
.btn-ghost-white:hover { background: rgba(255,255,255,0.2); }
.btn-lg { padding: 14px 28px; font-size: 0.95rem; border-radius: 12px; }

/* ── TAGS / BADGES ── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.tag-green { background: var(--green-pale); color: var(--green-dark); border: 1px solid var(--green-mid); }
.tag-amber { background: var(--amber-pale); color: var(--amber); border: 1px solid var(--amber-mid); }
.tag-red { background: var(--red-pale); color: var(--red); border: 1px solid #fecaca; }
.tag-gray { background: var(--bg-off); color: var(--ink-3); border: 1px solid var(--line); }
.tag-blue { background: var(--blue-pale); color: var(--blue); border: 1px solid #bfdbfe; }

/* ── CARDS ── */
.card {
  background: white;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.card:hover { border-color: var(--green-mid); box-shadow: var(--shadow); transform: translateY(-2px); }

/* ── STATUS DOTS ── */
.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; flex-shrink: 0; }
.dot-green { background: var(--green); }
.dot-amber { background: var(--amber); }
.dot-red { background: var(--red); }
.dot-gray { background: var(--line-dark); }

/* ── ALERT BOXES ── */
.alert {
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.88rem;
  line-height: 1.7;
}
.alert-red { background: var(--red-pale); border: 1px solid #fecaca; border-left: 4px solid var(--red); }
.alert-amber { background: var(--amber-pale); border: 1px solid #fde68a; border-left: 4px solid var(--amber); }
.alert-green { background: var(--green-pale); border: 1px solid var(--green-mid); border-left: 4px solid var(--green); }
.alert-blue { background: var(--blue-pale); border: 1px solid #bfdbfe; border-left: 4px solid var(--blue); }
.alert strong { color: var(--ink); }
.alert-icon { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.alert-body { color: var(--ink-2); }

/* ── DIVIDER ── */
hr { border: none; border-top: 1.5px solid var(--line); margin: 48px 0; }

/* ── ANIMATIONS ── */
@keyframes up { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:translateY(0); } }
.anim { animation: up 0.5s ease both; }
.anim-1 { animation-delay: 0.05s; }
.anim-2 { animation-delay: 0.12s; }
.anim-3 { animation-delay: 0.19s; }
.anim-4 { animation-delay: 0.26s; }
.anim-5 { animation-delay: 0.33s; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  .nav-inner { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-mobile { display: flex; }
  .nav-cta-wrap { display: none; }
  .wrap { padding: 0 20px; }
  .wrap-sm { padding: 0 20px; }
  .section { padding: 52px 0; }
  .footer { padding: 44px 20px 28px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
}
