:root {
  --bg: #07070a;
  --surface: #111116;
  --text: #f4f4f5;
  --muted: #a1a1aa;
  --border: rgba(255, 255, 255, 0.08);
  --accent: #f97316;
  --link: #fb923c;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "DM Sans", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
}
a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }
.site-header {
  border-bottom: 1px solid var(--border);
  background: rgba(7, 7, 10, 0.9);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 10;
}
.header-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.header-logo img { height: 28px; width: auto; display: block; }
.header-nav {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  font-size: 0.9rem;
}
.header-nav a { color: var(--muted); text-decoration: none; }
.header-nav a:hover { color: var(--text); text-decoration: none; }
main {
  max-width: 860px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}
h1 {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.meta {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.company-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
}
.company-box strong { color: var(--text); }
.company-box p { color: var(--muted); margin-top: 0.35rem; }
h2 {
  font-family: "Syne", sans-serif;
  font-size: 1.25rem;
  font-weight: 650;
  margin: 2rem 0 0.75rem;
  letter-spacing: -0.01em;
}
h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 1.5rem 0 0.5rem;
}
p, li { color: #d4d4d8; margin-bottom: 0.85rem; }
ul, ol { padding-left: 1.35rem; margin-bottom: 1rem; }
li { margin-bottom: 0.45rem; }
strong { color: var(--text); }
footer {
  border-top: 1px solid var(--border);
  padding: 1.75rem 0;
  color: var(--muted);
  font-size: 0.9rem;
}
.footer-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
}
.footer-links a { color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: var(--text); }
@media (max-width: 640px) {
  .header-nav { gap: 0.85rem; font-size: 0.8rem; }
}
