.lede { font-family: 'Inter', system-ui, sans-serif; color: var(--brand); font-size: 1.15rem; }
/* Utility classes for branding and dark mode */
.brand-dark { color: var(--brand-dark) !important; }
.brand { color: var(--brand) !important; }
.brand-bg-dark { background: #021a33 !important; }
.brand-bg { background: var(--brand) !important; }
.text-light { color: #f4f6f9 !important; }
.text-lighter { color: #e6f1fb !important; }
.text-mid { color: #85b7eb !important; }
.text-accent { color: #378add !important; }
.font-exo { font-family: 'Exo 2', system-ui, sans-serif !important; }
.font-inter { font-family: 'Inter', system-ui, sans-serif !important; }
.font-heavy { font-weight: 800 !important; }
.font-bold { font-weight: 700 !important; }
.font-semibold { font-weight: 600 !important; }
.font-large { font-size: 1.3rem !important; }
.font-xlarge { font-size: 2.25rem !important; }
.font-lede { font-size: 1.15rem !important; }
.flex-center { display: flex !important; align-items: center !important; gap: 0.75rem !important; }
.img-logo { height: 32px !important; width: auto !important; vertical-align: middle !important; filter: brightness(1.5) !important; display: inline !important; }
.bg-dark-section { background: #042c53 !important; }
.team-member-dark { background: #021a33 !important; border-color: #185fa5 !important; }
.avatar-dark { background: linear-gradient(135deg,#185fa5,#378add) !important; }
/* Veleriq site styles — hand-written, responsive, no build step. */

:root {
  --bg: #ffffff;
  --bg-alt: #f4f6f9;
  --fg: #1a2b3c;
  --fg-secondary: #3a4d60;
  --fg-muted: #6b7a8d;
  --placeholder: #8a9bb0;
  --border: #dde0e6;
  --divider: #e8ebf0;
  --brand: #185fa5;
  --brand-dark: #042c53;
  --brand-mid: #378add;
  --brand-sky: #85b7eb;
  --brand-frost: #e6f1fb;
  --brand-fg: #ffffff;
  --brand-hover: #378add;
  --accent: #378add;
  --success: #1a9a5c;
  --success-light: #e8f5ee;
  --warning: #d68f00;
  --warning-light: #fdf4e0;
  --error: #d94052;
  --error-light: #fdedef;
  --radius: 12px;
  --shadow: 0 8px 24px rgba(17, 24, 39, 0.06);
  --max-width: 1120px;
  --content-width: 720px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #021a33;
    --bg-alt: #042c53;
    --fg: #f4f6f9;
    --fg-secondary: #c9d6e3;
    --fg-muted: #85b7eb;
    --placeholder: #6b7a8d;
    --border: #0a3d6b;
    --divider: #185fa5;
    --brand-frost: #021a33;
    --success-light: #021a33;
    --warning-light: #042c53;
    --error-light: #042c53;
    --shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  }

  /* In dark mode, brand-dark text would be invisible — lift to light brand tones. */
  .brand-dark { color: var(--fg) !important; }
  .brand { color: var(--brand-mid) !important; }
}

html, body { margin: 0; padding: 0; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { color: var(--fg); }
h2 { font-size: 1.6rem; letter-spacing: -0.01em; }
h3 { font-size: 1.2rem; }

p {
  font-family: 'Inter', system-ui, sans-serif;
  margin: 0 0 1em;
  color: var(--fg-secondary);
}
a:hover, a:focus { text-decoration: underline; }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }

img { max-width: 100%; height: auto; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.container.narrow { max-width: var(--content-width); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.5rem;
  background: var(--brand);
  color: var(--brand-fg);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  z-index: 10;
}
.skip-link:focus { left: 0.5rem; }

/* Header */
.site-header {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 5;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--fg);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  display: inline-block;
}
.brand-name { font-size: 1.1rem; }

.nav {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  gap: 1.5rem;
}
.nav a {
  color: var(--fg-muted);
  font-weight: 500;
}
.nav a[aria-current="page"] { color: var(--fg); }

.nav-toggle { display: none; }
.nav-toggle-label { display: none; }

@media (max-width: 640px) {
  .nav-toggle-label {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    cursor: pointer;
  }
  .nav-toggle-label span {
    display: block;
    height: 3px;
    background: var(--fg);
    border-radius: 2px;
  }
  .nav {
    position: absolute;
    top: 64px; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 0.5rem 1.25rem;
    display: none;
  }
  .nav li { padding: 0.6rem 0; border-bottom: 1px solid var(--border); }
  .nav li:last-child { border-bottom: 0; }
  .nav-toggle:checked ~ .nav { display: flex; }
}

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--bg-alt), var(--bg));
  padding: 5rem 0 4rem;
}
.hero-inner { text-align: center; max-width: 760px; margin: 0 auto; }
.hero h1 { font-size: clamp(2rem, 5vw, 3rem); }
.lede { font-size: 1.15rem; color: var(--fg-muted); }
.cta-row {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.7rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.btn-primary {
  background: var(--brand);
  color: var(--brand-fg);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--brand-hover);
  text-decoration: none;
  color: var(--brand-fg);
}
.btn-ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--border);
}
.btn-ghost:hover { background: var(--bg-alt); text-decoration: none; }

/* Sections */
.highlights, .services, .contact { padding: 4rem 0; }
.section-title { text-align: center; margin-bottom: 2rem; }

.cards {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.card h2, .card h3 { margin-top: 0; }

.cta-banner {
  background: var(--bg-alt);
  padding: 3.5rem 0;
  text-align: center;
}
.cta-banner-inner { max-width: 640px; margin: 0 auto; }

/* Page header */
.page-header { padding: 4rem 0 2rem; background: var(--bg-alt); }
.page-header h1 { margin-bottom: 0.5rem; }

/* Prose */
.prose { padding: 3rem 0; }
.prose h2 { margin-top: 2rem; }

.team {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-top: 1rem;
}
.team-member {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
}
.avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  margin: 0 auto 0.75rem;
}
.role { color: var(--fg-muted); margin: 0; }

/* Contact */
.contact-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) {
  .contact-grid { grid-template-columns: 1fr 2fr; }
}
.contact-info h2 { margin-top: 0; }

.contact-form .field { display: flex; flex-direction: column; margin-bottom: 1rem; }
.contact-form label { font-weight: 600; margin-bottom: 0.35rem; }
.contact-form input,
.contact-form textarea {
  font: inherit;
  color: var(--fg);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.7rem 0.85rem;
  width: 100%;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--brand);
  outline: 3px solid var(--accent);
  outline-offset: 0;
}
.field-error { color: #b91c1c; font-size: 0.9rem; margin: 0.35rem 0 0; }
.form-error {
  background: #fee2e2;
  color: #991b1b;
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
}
.thanks {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
  padding: 2rem 0;
  margin-top: 4rem;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
}
.site-footer p { margin: 0; color: var(--fg-muted); }
.site-footer nav { display: flex; gap: 1rem; }
.site-footer nav a { color: var(--fg-muted); }
@media (min-width: 640px) {
  .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}
