/* ─── Variables ─────────────────────────────────────────────────────── */
:root {
  --cream:      #f5f0e6;
  --cream-2:    #ece5d5;
  --sand:       #e0d8c4;
  --moss:       #2a3d2e;
  --moss-deep:  #1c2a20;
  --moss-light: #3a5240;
  --fern:       #4f6a4a;
  --fern-pale:  rgba(79, 106, 74, 0.12);
  --ink:        #1a2018;
  --muted:      rgba(42, 61, 46, 0.55);
  --rule:       rgba(42, 61, 46, 0.15);
  --rule-soft:  rgba(42, 61, 46, 0.08);
  --serif:      "Instrument Serif", Georgia, serif;
  --sans:       "Inter Tight", "Helvetica Neue", sans-serif;
  --mono:       "JetBrains Mono", ui-monospace, monospace;
  --radius:     12px;
  --transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─── Reset ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a    { color: inherit; text-decoration: none; }
img  { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; }

/* ─── Layout ─────────────────────────────────────────────────────────── */
.wrap      { max-width: 1320px; margin: 0 auto; padding: 0 48px; }
.wrap-wide { max-width: 1520px; margin: 0 auto; padding: 0 48px; }
@media (max-width: 900px)  { .wrap, .wrap-wide { padding: 0 24px; } }
@media (max-width: 480px)  { .wrap, .wrap-wide { padding: 0 18px; } }

/* ─── Scroll Reveal ──────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }
.reveal.d5 { transition-delay: 0.40s; }

/* ─── Typography helpers ─────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--fern);
}
.eyebrow::before { content: ""; width: 24px; height: 1px; background: var(--fern); }

.label {
  font-family: var(--mono); font-size: 11px; color: var(--muted);
  letter-spacing: 0.10em; text-transform: uppercase;
}
.italic {
  font-family: var(--serif); font-style: italic;
  font-weight: 400; letter-spacing: -0.01em;
}

h1, h2, h3, h4 {
  color: var(--moss); font-weight: 500;
  letter-spacing: -0.03em; line-height: 1.05;
  text-wrap: balance;
}

/* ─── Buttons ────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; border-radius: 999px;
  font-size: 14px; font-weight: 500; letter-spacing: -0.01em;
  border: 1px solid transparent;
  transition: transform var(--transition), background var(--transition),
              box-shadow var(--transition), color var(--transition);
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--moss); color: var(--cream); }
.btn-primary:hover { background: var(--moss-deep); box-shadow: 0 10px 32px rgba(42,61,46,0.25); }
.btn-ghost   { border-color: var(--rule); color: var(--moss); }
.btn-ghost:hover { border-color: var(--moss); background: rgba(42,61,46,0.04); }
.btn-cream   { background: var(--cream); color: var(--moss); }
.btn-cream:hover { background: #fff; box-shadow: 0 10px 32px rgba(0,0,0,0.15); }
.btn-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--moss); font-size: 14px; font-weight: 500;
  border-bottom: 1px solid rgba(42,61,46,0.3); padding-bottom: 2px;
  transition: gap var(--transition), border-color var(--transition);
  border-radius: 0;
}
.btn-link:hover { gap: 12px; border-color: var(--moss); }

/* ─── Shared components ──────────────────────────────────────────────── */
.tech-pills { display: flex; flex-wrap: wrap; gap: 6px; }
.tech-pill {
  font-family: var(--mono); font-size: 11px;
  padding: 4px 10px; border-radius: 4px;
  background: rgba(42,61,46,0.07); color: var(--fern);
  letter-spacing: 0.04em;
}
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 999px;
  border: 1px solid var(--rule); font-size: 13px; color: var(--moss);
  background: rgba(245,240,230,0.6);
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--fern); }

.status-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #7cdf5a;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

.verfuegbar {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 32px;
  background: rgba(79,106,74,0.1); border-radius: 999px;
  padding: 10px 18px; font-size: 13px; color: var(--fern); font-weight: 500;
}

/* ─── Logo mark ──────────────────────────────────────────────────────── */
.logo-circle {
  width: 36px; height: 36px;
  flex-shrink: 0;
}
.logo-circle svg,
.logo-circle img { width: 100%; height: 100%; display: block; border-radius: 50%; }
.logo-wordmark { font-size: 17px; font-weight: 600; color: var(--moss); letter-spacing: -0.03em; }
