:root {
  --bg-dark: #0f172a;
  --bg-light: #ffffff;
  --bg-section: #f8fafc;
  --text-main: #0f172a;
  --text-muted: #475569;
  --accent: #38bdf8;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, sans-serif;
  color: var(--text-main);
  background: var(--bg-light);
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.header {
  background: var(--bg-dark);
  padding: 24px 0;
}

.header-content {
  display: flex;
  align-items: center;
}

.logo {
  height: 56px;
}

.hero {
  background: linear-gradient(180deg, #020617, #020617);
  color: white;
  padding: 100px 0;
  text-align: left;
}

.hero h1 {
  font-size: 2.6rem;
  margin-bottom: 16px;
}

.subtitle {
  max-width: 720px;
  color: #cbd5f5;
  font-size: 1.1rem;
}

.section {
  padding: 80px 0;
  background: var(--bg-section);
}

.section.dark {
  background: #020617;
  color: #e5e7eb;
}

.section.dark p {
  color: #cbd5f5;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 24px;
}

.focus-list {
  list-style: none;
}

.focus-list li {
  padding-left: 18px;
  margin-bottom: 12px;
  position: relative;
}

.focus-list li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.compliance {
  background: #f1f5f9;
  font-size: 0.95rem;
}

.footer {
  background: var(--bg-dark);
  color: #94a3b8;
  padding: 32px 0;
  font-size: 0.9rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer a {
  color: #7dd3fc;
  text-decoration: none;
}
