/* Shared design system for the Sumova site (landing + privacy). Page-specific rules live
   in each page's own <style> block. */

/* Self-hosted Roboto (variable, latin subset) — no third-party font CDN, so no visitor IP
   ever reaches Google (LG München I, 3 O 17493/20). */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('fonts/roboto-latin.woff2') format('woff2');
}

* { box-sizing: border-box; }
body {
  margin: 0;
  background: #0d0e10;
  color: #e8eaed;
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  overflow-x: hidden;
}
a { color: #8ab4f8; text-decoration: none; }
a:hover { color: #aecbfa; }
.wrap { max-width: 1180px; margin: 0 auto; padding-inline: 32px; }
.kicker { font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #8ab4f8; margin-bottom: 14px; }

/* Nav */
.nav { padding-block: 26px; display: flex; align-items: center; justify-content: space-between; }
.nav-links { display: flex; align-items: center; gap: 34px; font-size: 14.5px; }
.nav-links a { color: #bdc1c6; }
.btn-pill { display: inline-flex; align-items: center; padding: 9px 18px; border-radius: 22px; background: #8ab4f8; font-weight: 700; font-size: 14px; }
.btn-pill, .nav-links a.btn-pill { color: #202124; }
.logo-row { display: flex; align-items: center; gap: 11px; color: #e8eaed; }
.logo-tile { border-radius: 11px; background: linear-gradient(150deg, #2b2c30 0%, #202125 100%); display: flex; align-items: center; justify-content: center; }

/* Footer */
.footer { border-top: 1px solid #1a1b1e; }
.footer-inner { padding-block: 34px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-links { display: flex; gap: 26px; font-size: 14px; }
.footer-links a { color: #9aa0a6; }

@media (max-width: 980px) {
  .nav-links a:not(.btn-pill) { display: none; }
}
