/* BeCompliant — shared styles */
:root {
  --brand-ink: #000000;
  --brand-graphite: #1F2933;
  --brand-green: #00B67A;
  --brand-green-soft: #E6F7EF;
  --brand-mist: #F2F4F6;
  --background: #ffffff;
  --foreground: #000000;
  --muted: #F2F4F6;
  --muted-foreground: #5b6470;
  --border: #e6e8ec;
  --card: #ffffff;
  --radius: 0.875rem;
}
* { border-color: var(--border); }
html { font-family: 'Manrope', ui-sans-serif, system-ui, sans-serif; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body { background: var(--background); color: var(--foreground); margin: 0; }
h1,h2,h3,h4 { letter-spacing: -0.02em; }
::selection { background: rgba(0,182,122,0.3); }

.container-page { width: 100%; margin-inline: auto; padding-inline: 1.25rem; max-width: 80rem; }
@media (min-width: 768px) { .container-page { padding-inline: 2rem; } }

.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  border-radius: 9999px; background: var(--brand-green); color: white;
  padding: 0.875rem 1.5rem; font-weight: 600; font-size: 0.95rem;
  transition: transform .2s, box-shadow .2s, background .2s;
  box-shadow: 0 8px 24px -12px rgba(0,182,122,0.6); text-decoration: none;
}
.btn-primary:hover { background: #00a06c; transform: translateY(-1px); box-shadow: 0 14px 30px -14px rgba(0,182,122,0.7); }

.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  border-radius: 9999px; background: transparent; color: var(--brand-ink);
  padding: 0.875rem 1.5rem; font-weight: 600; font-size: 0.95rem;
  border: 1px solid rgba(0,0,0,0.2); transition: background .2s, border-color .2s;
  text-decoration: none;
}
.btn-secondary:hover { background: var(--brand-mist); border-color: rgba(0,0,0,0.4); }

.btn-ghost-dark {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  border-radius: 9999px; padding: 0.875rem 1.5rem; font-weight: 600; font-size: 0.95rem;
  color: white; border: 1px solid rgba(255,255,255,0.25); transition: background .2s;
  text-decoration: none;
}
.btn-ghost-dark:hover { background: rgba(255,255,255,0.08); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--brand-green);
}

.card-lift { transition: transform .3s, box-shadow .3s, border-color .3s; }
.card-lift:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -24px rgba(0,0,0,0.15); border-color: rgba(0,182,122,0.4); }

.draw-line { stroke-dasharray: 1000; stroke-dashoffset: 1000; animation: draw 2.2s ease forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.fade-up { animation: fadeUp .7s ease both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,0.85); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-link { color: #2d3748; font-weight: 500; font-size: 0.9rem; text-decoration: none; padding: 0.5rem 0.75rem; border-radius: 0.5rem; transition: color .15s, background .15s; }
.nav-link:hover { color: var(--brand-green); background: var(--brand-mist); }
.nav-link.active { color: var(--brand-green); }

/* Footer */
.site-footer { background: var(--brand-ink); color: white; padding: 4rem 0 2rem; margin-top: 0; }
.site-footer a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.9rem; transition: color .15s; }
.site-footer a:hover { color: var(--brand-green); }

/* Utilities */
.text-brand-green { color: var(--brand-green); }
.bg-brand-green { background: var(--brand-green); }
.bg-brand-green-soft { background: var(--brand-green-soft); }
.bg-brand-ink { background: var(--brand-ink); }
.bg-brand-mist { background: var(--brand-mist); }
.text-brand-ink { color: var(--brand-ink); }
.text-muted { color: var(--muted-foreground); }
.border-border { border-color: var(--border); }
.bg-card { background: var(--card); }

/* Mobile menu */
.mobile-menu { display: none; }
.mobile-menu.open { display: block; }
@media (min-width: 900px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none; }
}
@media (max-width: 899px) {
  .nav-desktop { display: none; }
}
