/* Färger plockade från logotypen: primär marinblå ~ #28374e, text vit */
:root{
  --vmi-navy: #28374e;
  --vmi-navy-600: #1f2e43;
  --text: #ffffff;
  --card-bg: rgba(255,255,255,0.06);
  --border: rgba(255,255,255,0.18);
}
*{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(--vmi-navy);
  color: var(--text);
  display:flex; align-items:center; justify-content:center;
}
.container{width:100%; max-width:920px; padding:24px}
.brand{display:flex; align-items:center; justify-content:center; margin-bottom:24px}
.logo{height:64px; width:auto; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.35));}
.card{
  backdrop-filter: blur(6px);
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius:16px;
  padding:32px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.22);
}
.nowrap{white-space:nowrap}
#title{font-size: clamp(28px, 4vw, 40px); margin:0 0 12px 0}
.lead{font-size: clamp(16px, 2.2vw, 18px); margin:0 0 24px 0; opacity:0.95}
.cta{display:flex; gap:12px}
.btn{
  display:inline-block; padding:12px 18px; border-radius:10px; text-decoration:none; color:#fff;
  background: linear-gradient(180deg, #2f4057 0%, var(--vmi-navy-600) 100%);
  border:1px solid rgba(255,255,255,0.2);
  transition: transform .08s ease, box-shadow .2s ease;
}
.btn:hover{transform: translateY(-1px); box-shadow:0 8px 18px rgba(0,0,0,0.28)}
.footer{margin-top:18px; text-align:center; opacity:0.8; font-size:14px}
