/* ============================================================
   V-SCORE — MASTER STYLESHEET v3
   Inspired by: Guardbase, Denmar Consulting register
   White-dominant, electric blue accent, editorial type
   Playfair Display / IBM Plex Sans / JetBrains Mono
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&family=IBM+Plex+Sans:wght@300;400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --blue:       #2B4FFF;
  --blue-mid:   #1E3A8A;
  --blue-deep:  #0A1628;
  --blue-tint:  #EEF2FF;
  --accent:     #E8521A;
  --accent-lt:  #FDE8DF;
  --white:      #FFFFFF;
  --off-white:  #F7F8FA;
  --ink:        #0F172A;
  --mid:        #64748B;
  --light:      #94A3B8;
  --border:     #E2E8F0;
  --border-strong: #CBD5E1;

  --f-serif: 'Playfair Display', Georgia, serif;
  --f-sans:  'IBM Plex Sans', system-ui, sans-serif;
  --f-mono:  'JetBrains Mono', monospace;

  --max: 1080px;
  --nav-h: 64px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-sans);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── NAVIGATION ─────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--white);
  z-index: 100;
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.nav-logo .wm-name {
  font-family: var(--f-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.01em;
  line-height: 1;
}

.nav-logo .wm-sub {
  font-family: var(--f-mono);
  font-size: 8px;
  letter-spacing: 0.22em;
  color: var(--light);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--mid);
  letter-spacing: 0.01em;
  transition: color 0.15s;
}

.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); font-weight: 500; }

.nav-cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 8px 20px;
  font-weight: 500 !important;
  font-size: 13px !important;
  transition: opacity 0.15s !important;
}

.nav-cta:hover { opacity: 0.88; }

/* ── SHARED ─────────────────────────────────────────────── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
}

.page-body { padding-top: var(--nav-h); }

.eyebrow {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--blue);
  flex-shrink: 0;
}

/* ── BUTTONS ────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-family: var(--f-sans);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 28px;
  letter-spacing: 0.02em;
  transition: opacity 0.15s;
  cursor: pointer;
  border: none;
}
.btn-primary:hover { opacity: 0.88; }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--ink);
  font-family: var(--f-sans);
  font-size: 14px;
  font-weight: 400;
  padding: 11px 28px;
  letter-spacing: 0.02em;
  border: 1px solid var(--border-strong);
  transition: border-color 0.15s;
  cursor: pointer;
}
.btn-outline:hover { border-color: var(--ink); }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: var(--f-sans);
  font-size: 14px;
  font-weight: 400;
  padding: 11px 28px;
  letter-spacing: 0.02em;
  border: 1px solid rgba(255,255,255,0.3);
  transition: border-color 0.15s;
  cursor: pointer;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.7); }

.btn-blue-ghost {
  display: inline-block;
  background: transparent;
  color: var(--blue);
  font-family: var(--f-sans);
  font-size: 14px;
  font-weight: 500;
  padding: 11px 28px;
  letter-spacing: 0.02em;
  border: 1px solid var(--blue);
  transition: all 0.15s;
}
.btn-blue-ghost:hover { background: var(--blue); color: var(--white); }

/* ── FOOTER ─────────────────────────────────────────────── */
footer {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.footer-brand .brand-name {
  font-family: var(--f-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.footer-brand .brand-tag {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 13px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 13px;
  font-weight: 400;
  color: var(--mid);
  transition: color 0.15s;
}

.footer-col ul a:hover { color: var(--ink); }

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--light);
}

.footer-bottom .disclaimer {
  font-size: 11px;
  font-weight: 300;
  color: var(--light);
  max-width: 460px;
  text-align: right;
  line-height: 1.5;
  font-family: var(--f-sans);
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .container { padding: 0 24px; }
  .nav-inner { padding: 0 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .footer-bottom .disclaimer { text-align: center; }
}
