@font-face {
  font-family: 'Enra Sans Variable';
  src: url('/fonts/Enra_Sans_Variable.otf') format('opentype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --muted-surface: #003263;
  --accent: #97ccfe;
  --accent-dark: #6eb3f7;
  --white: #ffffff;
  --font: 'Enra Sans Variable', 'Inter', system-ui, sans-serif;
  --text: #003263;
  --secondary: rgba(0, 50, 99, 0.65);
  --border: rgba(0, 50, 99, 0.18);
  --surface-light: rgba(151, 204, 254, 0.12);
  --row-alt: rgba(0, 50, 99, 0.03);
  --muted-hover: #004a8f;
  --page-bg: linear-gradient(135deg, #f4f8fc 0%, #e8f0f8 100%);
  --danger: #d93025;
  --success: #1a7f4b;
  --radius: 16px;
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.5);
  --glass-shadow: 0 8px 32px rgba(0, 50, 99, 0.08);
}

.brand-logo {
  height: 44px;
  width: auto;
  display: block;
}

/* Top utility bar — matches marketing site email strip */
.top-bar {
  width: 100%;
  background: var(--muted-surface);
  color: rgba(255, 255, 255, 0.85);
  font-size: 12.5px;
  font-weight: 500;
  text-align: center;
  padding: 9px 16px;
  letter-spacing: 0.2px;
}
.top-bar a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}
.top-bar a:hover { color: var(--white); }

.header-contact {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.contact-lines {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.45;
}

.contact-lines a {
  color: var(--accent);
  text-decoration: none;
}

.contact-lines a:hover { color: var(--white); }

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 16px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.3px;
}

.footer-contact a {
  color: var(--accent);
  text-decoration: none;
}

.footer-contact a:hover { color: var(--white); }

.accent-rule {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 10px;
}
