/* Auto-generated from core.json — do not edit manually */
:root {
  --q-primary: #00A859;
  --q-secondary: #05050A;
  --q-radius: 0.375rem;
  --q-surface: #ffffff;
  --q-gap: 1.5rem;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-family: Inter, system-ui, sans-serif;
  --base-size: 16px;
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}
body {
  font-family: var(--font-family);
  font-size: var(--base-size);
  background-color: var(--q-secondary);
  color: var(--q-surface);
}
.container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--q-gap);
  padding: var(--q-gap);
}
.brand-logo {
  height: 40px;
  aspect-ratio: auto;
  object-fit: contain;
}

/* Desktop: hide hamburger — belt-and-suspenders (inline <style> has same rule) */
.nav-mobile-toggle {
    display: none;
}
@media (max-width: 768px) {
    .nav-mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Stats bar — sauditech.link specific (kpi-widgets.css not loaded) */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    padding: 2rem var(--space-6, 1.5rem);
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
}

/* P5.3 — Skip link off-screen */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 9999;
}
.skip-link:focus {
  position: fixed;
  left: 0;
  top: 0;
  width: auto;
  height: auto;
  padding: 0.75rem 1.5rem;
  background: #00A859;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
}

/* P5.5 — Hero full viewport height */
.hero {
  min-height: 100vh;
  min-height: 100svh;
}

/* P7.4 — Design system bridge: old class names → qmc-equivalent behaviour */
.nav { position: sticky; top: 0; z-index: 100; backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }
.page-section { padding: clamp(5rem, 10vw, 8rem) var(--space-6); max-width: var(--container-xl, 1200px); margin: 0 auto; }
.section-header { text-align: center; margin-bottom: var(--space-12); }
.section-title { font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: var(--font-extrabold); letter-spacing: -0.02em; margin-bottom: var(--space-3); }
.section-description { font-size: var(--text-base, 1rem); color: var(--text-muted); max-width: 600px; margin: var(--space-2) auto 0; line-height: var(--leading-relaxed); }
@media (max-width: 768px) {
  .section-header, .section-title, .section-description { text-align: center; margin-left: auto; margin-right: auto; }
  .page-section { padding-top: 64px; padding-bottom: 64px; }
}
