/* ===========================================================
   Qognio Fokus-Pages — Pain-Point-Linsen Stylesheet
   Light-Theme, bronze accent, Inter-Font
   =========================================================== */
:root {
  --bg-primary:    #FAFAF7;
  --bg-secondary:  #FFFFFF;
  --bg-tertiary:   #F5F4EE;
  --text-strong:   #0A0A0A;
  --text-body:     #1F1F1E;
  --text-muted:    #6B6B68;
  --text-soft:     #8A8A86;
  --accent:        #A8865B;
  --accent-deep:   #8C6B41;
  --accent-soft:   rgba(168,134,91,0.10);
  --olive:         #5C7A3C;
  --line:          rgba(0,0,0,0.08);
  --line-strong:   rgba(0,0,0,0.14);
  --shadow-sm:     0 1px 3px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.04);
  --shadow-md:     0 1px 3px rgba(0,0,0,0.05), 0 12px 36px rgba(0,0,0,0.06);
  --radius-sm:     8px;
  --radius-md:     12px;
  --radius-lg:     16px;
  --radius-pill:   999px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  background: var(--bg-primary);
  color: var(--text-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  background: rgba(250,250,247,0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 60px;
}
.logo {
  font-size: 1.25rem; font-weight: 600;
  letter-spacing: -0.025em; color: var(--text-strong);
}
.logo span { color: var(--accent); font-weight: 500; }
.nav-links { display: flex; gap: 1.75rem; align-items: center; }
.nav-links a {
  color: var(--text-body);
  font-size: 0.9rem;
  font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a.current { color: var(--accent-deep); font-weight: 500; }
.nav-cta {
  background: var(--text-strong);
  color: #fff !important;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-pill);
  font-weight: 500;
}
.nav-cta:hover { background: #2a2a2a !important; }

/* ===== MAIN / CRUMBS ===== */
main { padding-top: 60px; }
.crumbs {
  max-width: 1180px;
  margin: 1.5rem auto 0;
  padding: 0 2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.crumbs a { color: var(--text-muted); }
.crumbs a:hover { color: var(--accent); }
.crumbs .sep { margin: 0 0.5rem; color: var(--text-soft); }
.crumbs span:last-child { color: var(--text-body); font-weight: 500; }

/* ===== HERO ===== */
.fokus-hero {
  max-width: 980px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
  text-align: left;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--accent-deep);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.fokus-hero h1 {
  font-size: clamp(2.1rem, 5.2vw, 3.6rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: var(--text-strong);
  margin-bottom: 1.5rem;
  max-width: 880px;
}
.fokus-hero h1 em {
  font-style: normal;
  color: var(--accent);
  font-weight: 500;
}
.hero-lede {
  color: var(--text-muted);
  font-size: 1.15rem;
  line-height: 1.65;
  margin-bottom: 1.75rem;
  max-width: 720px;
}
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.hero-meta .dot { color: var(--text-soft); }

/* ===== SECTIONS ===== */
.fokus-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.fokus-section.solution-stack {
  max-width: 980px;
  background: var(--bg-tertiary);
  margin: 2rem auto;
  border-radius: var(--radius-lg);
}
.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--accent-deep);
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.section-title {
  font-size: clamp(1.7rem, 3.6vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--text-strong);
  margin-bottom: 1rem;
}
.section-title em {
  font-style: normal;
  color: var(--accent);
  font-weight: 500;
}
.section-intro {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 2.25rem;
  max-width: 720px;
}

/* ===== TEAM CARDS ===== */
.team-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}
.team-card {
  display: block;
  background: var(--bg-secondary);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.team-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.team-card.primary {
  background: linear-gradient(155deg, var(--bg-secondary) 0%, var(--accent-soft) 100%);
  border-color: var(--accent);
}
.team-card.planned {
  background: var(--bg-tertiary);
  border-style: dashed;
}
.team-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--accent-deep);
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.team-tag.planned { color: var(--text-soft); }
.team-card h3 {
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--text-strong);
  margin-bottom: 0.75rem;
}
.team-pitch {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.team-go {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--accent-deep);
}
.team-card.planned .team-go { color: var(--text-soft); }

/* ===== AGENT TILES ===== */
.agent-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.agent-tile {
  display: block;
  background: var(--bg-secondary);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: border-color 0.25s, transform 0.25s;
}
.agent-tile:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.agent-letter {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.85rem;
}
.agent-tile h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-strong);
  margin-bottom: 0.5rem;
}
.agent-tile p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* ===== BRANCHEN-CARDS ===== */
.branche-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.branche-card {
  background: var(--bg-secondary);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
}
.branche-card h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-strong);
  margin-bottom: 0.6rem;
}
.branche-card p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.6;
  margin-bottom: 0.85rem;
}
.stack-line {
  display: inline-block;
  font-size: 0.82rem;
  color: var(--accent-deep);
  font-weight: 500;
  font-family: 'Inter', monospace;
  background: var(--accent-soft);
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-sm);
}

/* ===== CTA BLOCK ===== */
.cta-block {
  max-width: 980px;
  margin: 3rem auto 5rem;
  padding: 3.5rem 2.5rem;
  background: linear-gradient(155deg, #0A0A0A 0%, #1F1F1E 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  text-align: left;
}
.cta-block .eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.cta-block h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #fff;
}
.cta-block p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
  max-width: 600px;
}
.btn-row {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
}
.btn-primary, .btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.2s;
}
.btn-primary {
  background: var(--accent);
  color: #fff !important;
  border: 1px solid var(--accent);
}
.btn-primary:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
}
.btn-outline {
  background: transparent;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.05);
}

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid var(--line);
  padding: 3rem 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}
footer p { margin-bottom: 1rem; }
.footer-links {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  justify-content: center;
}
.footer-links a {
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }

/* ===== RESPONSIVE ===== */
@media (max-width: 720px) {
  nav { padding: 0 1rem; }
  .nav-links { gap: 1rem; }
  .nav-links a { font-size: 0.85rem; }
  .fokus-hero { padding: 3rem 1.25rem 2rem; }
  .fokus-section { padding: 3rem 1.25rem; }
  .cta-block { padding: 2.5rem 1.5rem; margin: 2rem 1rem 3rem; }
}
