/* === TOKENS === */
:root {
  --bg: #0A0B0F;
  --surface: #12141C;
  --surface-2: #1A1D27;
  --border: #232636;
  --fg: #F4F4F6;
  --fg-muted: #7C8296;
  --fg-dim: #4A5168;
  --accent: #00E87A;
  --accent-dim: rgba(0, 232, 122, 0.12);
  --amber: #F59E0B;
  --amber-dim: rgba(245, 158, 11, 0.12);
  --red: #EF4444;
  --blue: #3B82F6;
  --font-display: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

/* === TYPOGRAPHY === */
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.1rem; }

/* === NAV === */
.nav {
  padding: 1.5rem 2.5rem;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 100;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--fg);
}
.nav-logo-accent { color: var(--accent); }
.nav-tagline {
  color: var(--fg-muted);
  font-size: 0.8rem;
  padding-left: 1rem;
  border-left: 1px solid var(--border);
}

/* === SECTION UTILITIES === */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
}
.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-title {
  color: var(--fg);
  margin-bottom: 1rem;
  max-width: 600px;
}
.section-body {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 560px;
}
.section-body.centered {
  margin: 0 auto 3rem;
  text-align: center;
  max-width: 640px;
}

/* === HERO === */
.hero {
  padding: 7rem 2.5rem 5rem;
  position: relative;
  overflow: hidden;
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.hero-inner { max-width: 1200px; margin: 0 auto; }
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 0 0 rgba(0, 232, 122, 0.5);
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 232, 122, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(0, 232, 122, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 232, 122, 0); }
}
.hero-headline {
  max-width: 720px;
  margin-bottom: 1.5rem;
  color: var(--fg);
}
.hero-headline-accent { color: var(--accent); }
.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 3.5rem;
}
.hero-data-row {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  max-width: 1200px;
  margin: 0 auto;
}
.hero-stat { flex: 1; }
.hero-stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--fg);
}
.hero-stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-top: 0.25rem;
}
.hero-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

/* === THREE COL === */
.pulse-section {
  padding: 6rem 0;
  border-top: 1px solid var(--border);
}
.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.col-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
}
.col-icon {
  color: var(--accent);
  margin-bottom: 1rem;
}
.col-card h3 {
  color: var(--fg);
  margin-bottom: 0.6rem;
}
.col-card p {
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* === SPLIT LAYOUT === */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.split-layout-reverse .split-left { order: 2; }
.split-layout-reverse .split-right { order: 1; }

/* === FEATURE LIST === */
.feature-list {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--fg-muted);
  font-size: 0.9rem;
}
.feature-list li svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

/* === COMPLIANCE SECTION === */
.compliance-section {
  padding: 6rem 0;
  border-top: 1px solid var(--border);
}
.compliance-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.comp-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}
.comp-status { font-size: 0.78rem; font-weight: 600; }
.comp-status-red { color: var(--red); }
.comp-card-date { font-size: 0.78rem; color: var(--fg-muted); }
.comp-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.comp-item:last-child { border-bottom: none; }
.comp-item-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}
.comp-dot-red { background: var(--red); }
.comp-dot-green { background: var(--accent); }
.comp-item-title { font-size: 0.9rem; font-weight: 500; color: var(--fg); }
.comp-item-meta { font-size: 0.78rem; color: var(--fg-muted); margin-top: 0.2rem; }
.comp-item-meta strong { color: var(--red); }

/* === RISKS SECTION === */
.risks-section {
  padding: 6rem 0;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.risk-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.risk-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.risk-title { font-size: 0.85rem; font-weight: 600; color: var(--fg); }
.risk-badge { font-size: 0.72rem; font-weight: 600; padding: 0.25rem 0.75rem; border-radius: 20px; }
.risk-badge-amber { background: var(--amber-dim); color: var(--amber); }
.risk-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.risk-item:last-child { border-bottom: none; }
.risk-item-name { font-size: 0.9rem; font-weight: 500; color: var(--fg); }
.risk-item-meta { font-size: 0.78rem; color: var(--fg-muted); margin-top: 0.2rem; }
.risk-tag { font-size: 0.72rem; font-weight: 600; padding: 0.2rem 0.6rem; border-radius: 4px; }
.risk-tag-amber { background: var(--amber-dim); color: var(--amber); }
.risk-tag-red { background: rgba(239,68,68,0.12); color: var(--red); }
.risk-tag-green { background: var(--accent-dim); color: var(--accent); }
.risk-item-clear .risk-item-name,
.risk-item-clear .risk-item-meta { color: var(--fg-muted); }

/* === REPORTING SECTION === */
.reporting-section {
  padding: 6rem 0;
  border-top: 1px solid var(--border);
}
.reporting-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  max-width: 720px;
  margin: 0 auto;
}
.rep-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}
.rep-header-left { display: flex; align-items: center; gap: 0.75rem; }
.rep-logo-mark {
  width: 32px;
  height: 32px;
  background: var(--accent-dim);
  border: 1px solid rgba(0,232,122,0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 700;
  font-family: var(--font-display);
}
.rep-from { font-size: 0.85rem; font-weight: 600; color: var(--fg); }
.rep-sub { font-size: 0.75rem; color: var(--fg-muted); }
.rep-badge { font-size: 0.7rem; color: var(--fg-dim); background: var(--surface); border: 1px solid var(--border); border-radius: 4px; padding: 0.15rem 0.5rem; }
.rep-body { padding: 1.5rem; }
.rep-section { margin-bottom: 1.25rem; }
.rep-section:last-child { margin-bottom: 0; }
.rep-section-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-dim); margin-bottom: 0.5rem; }
.rep-row { font-size: 0.85rem; display: flex; align-items: center; gap: 0.6rem; padding: 0.35rem 0; color: var(--fg-muted); }
.rep-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.rep-dot-amber { background: var(--amber); }
.rep-dot-green { background: var(--accent); }
.rep-dot-blue { background: var(--blue); }

/* === CLOSING === */
.closing-section {
  padding: 8rem 0 6rem;
  border-top: 1px solid var(--border);
}
.closing-headline {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--fg);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 1.5rem;
}
.closing-sub {
  text-align: center;
  color: var(--fg-muted);
  max-width: 540px;
  margin: 0 auto 3rem;
  font-size: 1rem;
  line-height: 1.7;
}
.closing-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
.closing-stat { text-align: center; }
.closing-stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--fg);
}
.closing-stat-label { font-size: 0.8rem; color: var(--fg-muted); display: block; margin-top: 0.25rem; }
.closing-stat-divider { width: 1px; height: 50px; background: var(--border); }

/* === FOOTER === */
.footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
}
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 2.5rem; text-align: center; }
.footer-logo { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; color: var(--fg); }
.footer-logo-accent { color: var(--accent); }
.footer-tagline { color: var(--fg-muted); font-size: 0.85rem; margin: 0.5rem 0 1rem; }
.footer-links a { color: var(--fg-muted); text-decoration: none; font-size: 0.8rem; }
.footer-links a:hover { color: var(--accent); }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero { padding: 5rem 1.5rem 3.5rem; }
  .hero-data-row { flex-direction: column; gap: 1.5rem; }
  .hero-divider { display: none; }
  .three-col { grid-template-columns: 1fr; }
  .split-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .split-layout-reverse .split-left,
  .split-layout-reverse .split-right { order: unset; }
  .closing-stats { flex-direction: column; gap: 1.5rem; }
  .closing-stat-divider { display: none; }
  .section-inner, .footer-inner { padding: 0 1.5rem; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .hero-headline br { display: none; }
}