/* Base */
:root {
  --bg: #0b1220;
  --card: #121a2b;
  --text: #e6edf3;
  --muted: #a9b4c0;
  --brand: #5b8cff;
  --brand-ink: #0b1220;
  --border: #1f2a44;
}
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { width: min(1100px, 92%); margin: 0 auto; }

/* Header */
.site-header { border-bottom: 1px solid var(--border); position: sticky; top: 0; backdrop-filter: blur(6px); background: rgba(11,18,32,0.7); }
.site-header.small { position: static; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.brand__title { font-weight: 600; display: block; }
.brand__tagline { color: var(--muted); font-size: 0.95rem; }
.nav a { margin-left: 16px; color: var(--text); opacity: .9; }
.nav a:hover { opacity: 1; }

/* Hero */
.hero { padding: 72px 0 36px; text-align: left; }
.hero h1 { font-size: clamp(1.8rem, 2.5vw + 1rem, 2.6rem); line-height: 1.2; margin: 0 0 12px; }
.hero p { color: var(--muted); font-size: 1.05rem; margin: 0 0 20px; }
.cta .btn { display: inline-block; background: var(--brand); color: var(--brand-ink); padding: 12px 18px; border-radius: 8px; font-weight: 600; }
.cta .btn:hover { filter: brightness(0.95); text-decoration: none; }

/* Sections */
.section { padding: 44px 0; }
.section.alt { background: var(--card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section h2 { margin-top: 0; font-size: 1.6rem; }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin-top: 16px; }
.card { background: var(--card); border: 1px solid var(--border); border-radius: 10px; padding: 16px; }
.card h3 { margin-top: 0; }
.card p { color: var(--muted); }

/* Contact */
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { margin: 8px 0; }
.fine-print { color: var(--muted); font-size: 0.9rem; }

/* Footer */
.site-footer { border-top: 1px solid var(--border); }
.footer-inner { padding: 18px 0; font-size: 0.95rem; color: var(--muted); display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }

/* Legal pages */
.legal h1 { margin-top: 0; }
.legal h2 { margin-top: 28px; font-size: 1.2rem; }

@media (max-width: 640px) {
  .nav { display: none; }
  .hero { text-align: left; }
}

