:root {
  color-scheme: dark;
  --background: #090d16;
  --surface: #111827;
  --border: #273244;
  --text: #f8fafc;
  --muted: #a7b1c2;
  --accent: #38bdf8;
  --warm: #ff6b00;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}
a { color: var(--accent); }
.entity-shell { width: min(1080px, calc(100% - 32px)); margin: 0 auto; }
.entity-header { border-bottom: 1px solid var(--border); background: rgba(9, 13, 22, .94); }
.entity-nav { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.entity-logo { width: 190px; height: auto; display: block; }
.entity-nav-links { display: flex; flex-wrap: wrap; gap: 18px; font-size: .9rem; font-weight: 700; }
.entity-nav-links a { color: #d5dbea; text-decoration: none; }
.entity-nav-links a:hover { color: var(--accent); }
.entity-hero { padding: 84px 0 64px; border-bottom: 1px solid var(--border); background: radial-gradient(circle at 10% 10%, rgba(56, 189, 248, .16), transparent 34%), radial-gradient(circle at 90% 30%, rgba(129, 140, 248, .14), transparent 32%); }
.entity-eyebrow { color: var(--accent); font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.entity-hero h1 { max-width: 800px; margin: 12px 0 20px; font-size: clamp(2.5rem, 7vw, 4.8rem); line-height: 1.02; letter-spacing: -.045em; }
.entity-lead { max-width: 790px; color: #cbd5e1; font-size: clamp(1.05rem, 2vw, 1.25rem); }
.entity-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.entity-button { display: inline-block; padding: 11px 18px; border: 1px solid var(--border); border-radius: 10px; color: var(--text); text-decoration: none; font-weight: 800; }
.entity-button--primary { border-color: var(--warm); background: var(--warm); }
.entity-section { padding: 58px 0; border-bottom: 1px solid var(--border); }
.entity-section h2 { margin: 0 0 16px; font-size: clamp(1.65rem, 4vw, 2.35rem); line-height: 1.15; }
.entity-section p { max-width: 780px; color: #cbd5e1; }
.entity-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 26px; }
.entity-card { padding: 24px; border: 1px solid var(--border); border-radius: 16px; background: var(--surface); }
.entity-card h3 { margin-top: 0; }
.entity-card p { margin-bottom: 0; color: var(--muted); }
.entity-facts { display: grid; grid-template-columns: 180px 1fr; gap: 10px 22px; margin-top: 24px; }
.entity-facts dt { color: var(--muted); font-weight: 700; }
.entity-facts dd { margin: 0; }
.entity-profile { display: grid; grid-template-columns: minmax(220px, 320px) minmax(0, 1fr); gap: 44px; align-items: center; }
.entity-profile img { width: 100%; border: 1px solid var(--border); border-radius: 24px; background: var(--surface); }
.entity-footer { padding: 34px 0; color: var(--muted); font-size: .86rem; }
.entity-footer-row { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

@media (max-width: 720px) {
  .entity-nav { align-items: flex-start; flex-direction: column; padding: 18px 0; }
  .entity-grid, .entity-profile { grid-template-columns: 1fr; }
  .entity-facts { grid-template-columns: 1fr; gap: 2px; }
  .entity-facts dd { margin-bottom: 14px; }
  .entity-hero { padding-top: 58px; }
}
