:root {
  --bg: #f2f4f6;
  --ink: #111722;
  --muted: #5f6876;
  --line: #c9d1db;
  --brand-dark: #0d1117;
  --brand-gray: #8b939e;
  --brand-gray-strong: #b0b7c2;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

a { color: inherit; }

.container { width: min(1140px, 92vw); margin: 0 auto; }

.topbar { position: sticky; top: 0; z-index: 30; background: rgba(13, 17, 23, 0.98); border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.topbar__accent { height: 4px; background: linear-gradient(90deg, var(--brand-gray) 0%, var(--brand-gray-strong) 60%, #ffffff 100%); }
.topbar__inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.brand { display: inline-flex; flex-direction: column; text-decoration: none; line-height: 1.1; }
.brand__logo { color: #ffffff; font-size: 2rem; font-weight: 800; font-style: italic; letter-spacing: 0.05em; }
.brand__portal { color: #dbe2eb; font-size: 0.86rem; font-weight: 600; }

.main-nav { display: flex; gap: 26px; }
.main-nav a { text-decoration: none; color: #f7f9fc; font-weight: 500; }
.main-nav a:hover, .main-nav a.is-active { color: var(--brand-gray-strong); }

.hero { position: relative; color: #f7f9fc; min-height: clamp(420px, 58vh, 620px); display: grid; align-items: end; }
.hero--home { background: url("https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat; }
.hero--reporting { background: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(8, 12, 18, 0.9) 0%, rgba(8, 12, 18, 0.68) 60%, rgba(8, 12, 18, 0.88) 100%); }
.hero__content { position: relative; z-index: 1; padding: 80px 0 68px; max-width: 760px; }

.eyebrow { margin: 0; color: #cfd5de; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.78rem; }
.hero h1 { font-size: clamp(2rem, 6vw, 4.1rem); margin: 0.28em 0 0.2em; }
.hero p { margin: 0; font-size: clamp(1rem, 2vw, 1.2rem); line-height: 1.6; }

.section { padding: 68px 0; }
.section--alt { background: #eef1f5; border-top: 1px solid var(--line); }
.section__heading h2 { margin: 0; font-size: clamp(1.5rem, 3vw, 2.2rem); }
.section__heading p { margin: 10px 0 0; color: var(--muted); }

.links-row { margin-top: 26px; display: grid; grid-template-columns: repeat(3, 1fr); }
.inline-link { padding: 24px 20px; text-decoration: none; }
.inline-link + .inline-link { border-left: 1px solid var(--line); }
.inline-link__title { display: block; font-size: 1.18rem; font-weight: 700; }
.inline-link__meta { display: block; margin-top: 8px; color: var(--muted); font-size: 0.95rem; }
.inline-link:hover .inline-link__title { color: #4a5564; }

.split-info { display: flex; justify-content: space-between; align-items: end; gap: 20px; }
.split-info h2 { margin: 0; font-size: clamp(1.4rem, 2.8vw, 2rem); }
.split-info p { margin: 8px 0 0; color: var(--muted); max-width: 700px; }
.text-cta { text-decoration: none; font-weight: 700; white-space: nowrap; }
.text-cta:hover { color: #4a5564; }

.line-list { border-top: 1px solid var(--line); }
.line-list__item { display: flex; justify-content: space-between; align-items: center; gap: 14px; text-decoration: none; padding: 20px 0; border-bottom: 1px solid var(--line); font-size: 1.15rem; font-weight: 600; }
.line-list__arrow { color: #748092; }
.line-list__item:hover { color: #4a5564; }

.footer { background: #0d1117; color: #d8dee8; padding: 28px 0; border-top: 3px solid var(--brand-gray); }
.footer__inner { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.footer a { color: #e6ebf4; }

@media (max-width: 900px) {
  .links-row { grid-template-columns: 1fr; }
  .inline-link + .inline-link { border-left: 0; border-top: 1px solid var(--line); }
  .split-info { flex-direction: column; align-items: flex-start; }
}
