*, *::before, *::after { box-sizing: border-box; }
:root {
  --brand: #6366f1;
  --text: #0f172a;
  --muted: #64748b;
  --border: #e2e8f0;
  --surface: #ffffff;
  --bg: #f8fafc;
}
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.75;
}
.site-nav {
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}
.nav-inner {
  width: min(960px, calc(100% - 32px));
  height: 64px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 10px; color: var(--brand); font-weight: 800; text-decoration: none; }
.brand img { width: 36px; height: 36px; border-radius: 10px; }
.back-link { color: #475569; font-size: .86rem; font-weight: 700; text-decoration: none; }
.page {
  width: min(820px, calc(100% - 32px));
  margin: 48px auto 72px;
}
.hero {
  padding: 42px;
  background: linear-gradient(135deg, #312e81, #6366f1);
  color: white;
  border-radius: 24px;
  margin-bottom: 28px;
}
.eyebrow { margin: 0 0 8px; font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; opacity: .75; }
h1 { margin: 0 0 12px; font-size: clamp(2rem, 6vw, 3.2rem); line-height: 1.1; }
.hero p { margin: 0; color: rgba(255,255,255,.82); }
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px;
  margin-top: 18px;
  box-shadow: 0 10px 30px rgba(15,23,42,.04);
}
h2 { margin: 0 0 10px; font-size: 1.35rem; }
p, li { color: #475569; }
a { color: var(--brand); }
.contact-button {
  display: inline-flex;
  padding: 12px 20px;
  border-radius: 10px;
  background: var(--brand);
  color: white;
  font-weight: 800;
  text-decoration: none;
}
.site-footer {
  background: white;
  border-top: 1px solid var(--border);
  padding: 25px 20px;
  text-align: center;
}
.footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px 0; }
.footer-links a {
  padding: 2px 14px;
  border-right: 1px solid var(--border);
  color: #334155;
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
}
.footer-links a:last-child { border-right: 0; }
.copyright { color: #94a3b8; font-size: .78rem; margin: 10px 0 0; }
@media (max-width: 600px) {
  .hero, .card { padding: 24px; }
  .page { margin-top: 28px; }
  .footer-links a { padding: 2px 9px; }
}
