/* ══════════════════════════════════════════════════════════
   AutomateOps.io – Shared Design-System Stylesheet
   Enthaelt die auf allen Seiten identische "Chrome": Reset,
   Farb-/Font-Variablen, Navigation, Divider und Footer.
   Seiten-spezifische Styles bleiben im jeweiligen <style>-Block.
   ══════════════════════════════════════════════════════════ */

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

:root {
  --navy:        #0a1628;
  --navy-mid:    #0f2044;
  --navy-card:   rgba(255,255,255,0.04);
  --card-border: rgba(255,255,255,0.07);
  --blue:        #1a7fd4;
  --blue-light:  #3ba3f5;
  --cyan:        #00c8e0;
  --text:        #e8f0fe;
  --muted:       #8aaac8;
  --font-head:   'Space Mono', monospace;
  --font-body:   'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAV ── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
}
nav {
  background: rgba(10,22,40,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--card-border);
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 15px;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 1px;
}
.nav-logo span { color: var(--cyan); }
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--muted);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--cyan); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s;
}
@media (max-width: 700px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(10,22,40,0.97);
    padding: 20px 5vw;
    gap: 20px;
    border-bottom: 1px solid var(--card-border);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
}

/* ── DIVIDER ── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(26,127,212,0.35), transparent);
  margin: 0 5vw;
}

/* ── FOOTER ── */
footer {
  padding: 40px 5vw;
  border-top: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
  flex-wrap: wrap;
}
.footer-links a {
  font-family: var(--font-head);
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--muted);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--cyan); }
.footer-copy {
  font-size: 12px;
  color: var(--muted);
  opacity: 0.5;
}

/* ── VISUALLY-HIDDEN (a11y / GEO direct-answer helper) ── */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── DIRECT ANSWER BLOCKS (GEO) ── */
.direct-answer {
  font-size: 16px;
  color: var(--muted);
  max-width: 640px;
  margin: -4px 0 28px;
  line-height: 1.6;
}
