/* Drauger Inc — production styles (no external dependencies) */

:root {
  --bg: #ffffff;
  --text: #12151a;
  --muted: #4a5568;
  --border: #e2e8f0;
  --accent: #0b5cad;
  --accent-hover: #094a8a;
  --accent-soft: #e8f2fc;
  --surface: #f6f8fb;
  --surface-2: #eef2f7;
  --max: 68rem;
  --header-h: 3.25rem;
  --radius: 6px;
  --radius-lg: 10px;
  --shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --space-xs: 0.35rem;
  --space-sm: 0.65rem;
  --space-md: 1rem;
  --space-lg: 1.75rem;
  --space-xl: 2.75rem;
  --space-2xl: 4rem;
  --fs-sm: 0.8125rem;
  --fs-base: 1rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.375rem;
  --fs-2xl: 1.75rem;
  --fs-hero: clamp(1.75rem, 4vw, 2.5rem);
  --lh: 1.55;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-padding-top: calc(var(--header-h) + 0.5rem); }

body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--fs-base);
  line-height: var(--lh);
  color: var(--text);
  background: var(--bg);
}

img, svg { display: block; max-width: 100%; height: auto; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}

.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: var(--space-sm) var(--space-md);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}
.skip-link:focus { left: var(--space-md); top: var(--space-md); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--space-md);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: var(--fs-lg);
  color: var(--text);
  text-decoration: none;
}
.logo:hover { color: var(--accent); text-decoration: none; }
.logo img { width: 1.75rem; height: 1.75rem; }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  cursor: pointer;
}
.nav-toggle svg { width: 1.25rem; height: 1.25rem; }

.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.15rem 0.85rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: var(--fs-sm);
}

.site-nav a {
  color: var(--muted);
  padding: 0.25rem 0;
  font-weight: 500;
}
.site-nav a:hover,
.site-nav a[aria-current="true"] { color: var(--accent); }

.nav-login {
  font-weight: 600;
  color: var(--accent) !important;
}

@media (max-width: 52rem) {
  .nav-toggle { display: inline-flex; }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    padding: var(--space-md);
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transform: translateY(-110%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.2s ease, opacity 0.2s ease, visibility 0.2s;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .site-nav a { font-size: var(--fs-base); }
}

/* Buttons */
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.55rem 1.1rem;
  font-size: var(--fs-sm);
  font-weight: 600;
  line-height: 1.2;
  border-radius: var(--radius);
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn:hover { text-decoration: none; }

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff;
}

.btn-secondary {
  background: var(--bg);
  color: var(--accent);
  border-color: var(--accent);
}
.btn-secondary:hover {
  background: var(--accent-soft);
  color: var(--accent-hover);
}

/* Sections */
main section {
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid var(--border);
}
main section:last-of-type { border-bottom: none; }

h1, h2, h3 {
  margin: 0 0 var(--space-sm);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 { font-size: var(--fs-hero); }
h2 { font-size: var(--fs-2xl); }
h3 { font-size: var(--fs-xl); }

.section-label {
  font-size: var(--fs-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin: 0 0 var(--space-xs);
}

.tagline {
  margin: 0;
  font-size: var(--fs-xl);
  color: var(--muted);
  max-width: 42ch;
  font-weight: 500;
}

.lead {
  margin: var(--space-md) 0 0;
  color: var(--muted);
  max-width: 58ch;
  font-size: var(--fs-lg);
}

/* Hero */
.hero {
  padding-top: var(--space-2xl);
  background:
    linear-gradient(165deg, var(--accent-soft) 0%, transparent 55%),
    var(--bg);
}

.hero-grid {
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 48rem) {
  .hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.hero-visual {
  display: flex;
  justify-content: center;
  padding: var(--space-lg);
}

.hero-card {
  width: 100%;
  max-width: 20rem;
  padding: var(--space-lg);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.hero-card ul {
  margin: var(--space-md) 0 0;
  padding: 0;
  list-style: none;
  font-size: var(--fs-sm);
  color: var(--muted);
}

.hero-card li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0;
  border-top: 1px solid var(--border);
}
.hero-card li:first-child { border-top: none; padding-top: 0; }

.hero-card img { width: 1.25rem; height: 1.25rem; flex-shrink: 0; }

/* Pillars */
.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

@media (min-width: 48rem) {
  .pillars { grid-template-columns: repeat(3, 1fr); }
}

.pillar {
  padding: var(--space-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.pillar:hover {
  border-color: #c5d4e8;
  box-shadow: var(--shadow-md);
}

.pillar-icon {
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: var(--space-sm);
  color: var(--accent);
}

.pillar h3 { font-size: var(--fs-lg); }
.pillar h3 a { color: var(--text); }
.pillar h3 a:hover { color: var(--accent); text-decoration: none; }

.pillar p {
  margin: 0;
  font-size: var(--fs-sm);
  color: var(--muted);
}

/* Product sections */
.product-section { background: var(--bg); }
.product-section.alt { background: var(--surface); }

.product-inner {
  display: grid;
  gap: var(--space-lg);
  align-items: start;
}

@media (min-width: 48rem) {
  .product-inner {
    grid-template-columns: auto 1fr;
    gap: var(--space-xl);
  }
}

.product-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-lg);
  background: var(--accent-soft);
  color: var(--accent);
}

.product-icon-wrap img { width: 2rem; height: 2rem; }

ul.features {
  margin: var(--space-lg) 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: var(--space-sm);
}

ul.features li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--muted);
  font-size: var(--fs-sm);
}

ul.features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
}

/* Why */
.why-list {
  margin: var(--space-xl) 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 40rem) {
  .why-list { grid-template-columns: 1fr 1fr; }
}

.why-list li {
  padding: var(--space-md) var(--space-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  font-size: var(--fs-sm);
  font-weight: 500;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: var(--space-xl);
  margin-top: var(--space-lg);
}

@media (min-width: 40rem) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

.contact-card {
  padding: var(--space-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.contact-card h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-sm);
}

.contact-card address {
  font-style: normal;
  color: var(--muted);
  font-size: var(--fs-sm);
  margin: 0 0 var(--space-md);
}

.contact-emails {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: var(--fs-sm);
}

.contact-emails li { margin-bottom: var(--space-xs); }

/* Legal snippets */
.legal-section {
  padding: var(--space-xl) 0;
  background: var(--surface-2);
  font-size: var(--fs-sm);
  color: var(--muted);
}

.legal-section h2 { font-size: var(--fs-xl); color: var(--text); }
.legal-section p { max-width: 60ch; margin: var(--space-sm) 0 0; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--text);
  color: #94a3b8;
  padding: var(--space-xl) 0;
  font-size: var(--fs-sm);
}

.site-footer a { color: #cbd5e1; }
.site-footer a:hover { color: #fff; }

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.footer-brand {
  margin: 0;
  color: #e2e8f0;
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-lg);
  list-style: none;
  margin: 0;
  padding: 0;
}
