:root {
  --bg: #0b0d12;
  --bg-alt: #0f1219;
  --text: #e6e9ef;
  --muted: #b3b9c6;
  --brand: #66e3a4;
  --brand-strong: #3bd18a;
  --card: #151927;
  --border: #22283a;
  --shadow: 0 10px 30px rgba(0,0,0,0.3);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 600px at 10% -10%, #102030, transparent), var(--bg);
  line-height: 1.6;
}

.container { width: min(1100px, 92%); margin: 0 auto; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11,13,18,0.7); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }

.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text); font-weight: 700; }
.brand-logo { height: 40px; width: auto; display: block; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; gap: 2px; }
.brand-name { letter-spacing: 0.3px; font-size: 1.1rem; }
.brand-slogan { font-size: 0.7rem; font-weight: 500; color: var(--muted); letter-spacing: 0.5px; }

.nav-toggle { display: none; background: transparent; color: var(--text); border: 1px solid var(--border); border-radius: 8px; padding: 8px 10px; }
.nav-list { display: flex; gap: 22px; list-style: none; margin: 0; padding: 0; }
.nav-list a { color: var(--text); text-decoration: none; opacity: 0.9; }
.nav-list a:hover { color: var(--brand); }

.hero { position: relative; padding: 84px 0 64px; overflow: hidden; }
.hero-inner { text-align: center; }
.hero h1 { font-size: clamp(34px, 6vw, 56px); line-height: 1.1; margin: 0 0 12px; }
.subtitle { color: var(--muted); font-size: clamp(16px, 2.5vw, 20px); margin: 0 auto; width: min(780px, 95%); }
.hero-cta { display: flex; gap: 12px; justify-content: center; margin-top: 24px; flex-wrap: wrap; }

.button { display: inline-block; padding: 12px 16px; border-radius: 10px; border: 1px solid var(--border); color: var(--text); text-decoration: none; background: #121623; box-shadow: var(--shadow); }
.button.primary { background: linear-gradient(135deg, var(--brand), var(--brand-strong)); color: #062015; border-color: transparent; font-weight: 700; }
.button:hover { transform: translateY(-1px); }

.hero-bg { position: absolute; inset: -20% -10% auto -10%; height: 70%; background: radial-gradient(600px 260px at 50% 0, rgba(102,227,164,0.15), transparent), radial-gradient(800px 400px at 80% 10%, rgba(59,209,138,0.12), transparent); pointer-events: none; filter: blur(20px); }

.section { padding: 64px 0; }
.section.alt { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section h2 { font-size: 28px; margin: 0 0 22px; }

.cards { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.card { grid-column: span 12; background: linear-gradient(180deg, #151927, #101522); border: 1px solid var(--border); border-radius: 14px; padding: 18px; box-shadow: var(--shadow); }
.card h3 { margin: 0 0 8px; font-size: 20px; }
.card p { margin: 0 0 12px; color: var(--muted); }
.card-link { color: var(--brand); text-decoration: none; font-weight: 600; }
.card-link:hover { text-decoration: underline; }

@media (min-width: 720px) {
  .card { grid-column: span 4; }
}

/* Leadership avatars */
.avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  color: #062015;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.5px;
  font-size: 24px;
  box-shadow: var(--shadow);
  margin-bottom: 10px;
}
.leader-card { display: flex; flex-direction: column; align-items: flex-start; }
.leader-meta { color: var(--muted); margin: -4px 0 8px; }

.two-col { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 920px) { .two-col { grid-template-columns: 1.2fr 0.8fr; } }

.stat { background: #11162a; border: 1px solid var(--border); border-radius: 12px; padding: 18px; margin-bottom: 14px; }
.stat-num { display: block; font-size: 28px; font-weight: 800; color: var(--brand); }
.stat-label { color: var(--muted); }

.form { width: min(720px, 100%); }
.form-row { display: grid; gap: 8px; margin-bottom: 14px; }
.form-row input, .form-row textarea { background: #0f1322; border: 1px solid var(--border); color: var(--text); border-radius: 10px; padding: 12px 12px; }
.form-row input:focus, .form-row textarea:focus { outline: 2px solid var(--brand); outline-offset: 1px; }
.form-actions { display: flex; align-items: center; gap: 12px; }
.form-status { color: var(--muted); min-height: 1.2em; }

.site-footer { border-top: 1px solid var(--border); background: #0b0f1c; }
.site-footer .brand-logo { height: 32px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 24px 0; flex-wrap: wrap; }
.footer-links { list-style: none; margin: 0; padding: 0; display: flex; gap: 18px; }
.fineprint { color: var(--muted); margin: 6px 0 0; font-size: 14px; }

/* Blog article styles */
.article-header { padding: 48px 0 32px; }
.article-header h1 { font-size: clamp(26px, 5vw, 36px); margin: 0 0 12px; line-height: 1.25; }
.article-meta { color: var(--muted); font-size: 15px; margin-bottom: 24px; }
.article-body { max-width: 680px; margin: 0 auto; padding-bottom: 48px; }
.article-body h2 { font-size: 22px; margin: 36px 0 14px; color: var(--text); }
.article-body h3 { font-size: 18px; margin: 24px 0 10px; color: var(--text); }
.article-body p { margin: 0 0 16px; color: var(--muted); }
.article-body ul, .article-body ol { margin: 0 0 16px; padding-left: 24px; color: var(--muted); }
.article-body li { margin-bottom: 6px; }
.article-body strong { color: var(--text); }
.article-body a { color: var(--brand); text-decoration: none; }
.article-body a:hover { text-decoration: underline; }
.back-link { display: inline-flex; align-items: center; gap: 6px; color: var(--brand); text-decoration: none; margin-bottom: 24px; font-size: 15px; }
.back-link:hover { text-decoration: underline; }
.article-divider { border: none; border-top: 1px solid var(--border); margin: 32px 0; }

@media (max-width: 760px) {
  .nav-toggle { display: inline-block; }
  .nav-list { position: absolute; right: 4%; top: 56px; background: #0f1322; border: 1px solid var(--border); border-radius: 12px; padding: 12px; display: none; flex-direction: column; width: 220px; box-shadow: var(--shadow); }
  .nav-list.open { display: flex; }
}


