/* Farbpalette und Basiseinstellungen */
:root {
  --bg: #0f1012;
  --bg-elev: #151617;
  --text: #e7e9ee;
  --muted: #b7b4ad;
  --cream: #f2e9dd;
  --cream-2: #efe4d6;
  --accent: #6ea8ff;
  --accent-2: #8aa5ff;
  --border: #2a2c2f;
  --shadow: 0 20px 40px rgba(0,0,0,.35);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 600px at 25% -200px, #1c1f23 0%, var(--bg) 55%),
              radial-gradient(800px 400px at 90% -150px, #15181d 0%, #0c0d0f 70%);
}

/* Layout helpers */
.container {
  width: min(1100px, 92%);
  margin-inline: auto;
}

/* Header / Navigation */
.site-header {
  position: sticky;
  top: 0; z-index: 30;
  background: rgba(20,21,23,.7);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); }
.logo { display:inline-grid; place-items:center; width:36px; height:36px; border-radius: 10px; background: linear-gradient(180deg,#202328,#121316); color:#cfd4dd; font-weight:700; letter-spacing:.5px; }
.brand-text { font-weight: 600; letter-spacing: .2px; }
.menu a { color: #cfd4dd; text-decoration: none; margin-left: 20px; font-weight: 500; }
.menu a:hover { color: #fff; }

/* Hero Section */
.hero { position: relative; padding: 92px 0 72px; overflow: hidden; }
.hero-inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: 34px; align-items: center; }
.label { display:inline-block; padding: 6px 10px; border-radius: 999px; background: rgba(255,255,255,.06); border:1px solid var(--border); color:#cfd4dd; font-size:.85rem; }
.hero h1 { font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.08; margin: 14px 0 8px; }
.lead { color: #cfd4dd; max-width: 58ch; }
.actions { display:flex; gap: 12px; margin-top: 22px; flex-wrap: wrap; }

.btn { display:inline-flex; align-items:center; justify-content:center; padding: 12px 18px; border-radius: 999px; text-decoration:none; border: 1px solid transparent; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn.primary { color: #0c0d0f; font-weight: 600; background: linear-gradient(180deg, var(--accent-2), var(--accent)); box-shadow: 0 10px 24px rgba(110,168,255,.35); }
.btn.primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(110,168,255,.45); }
.btn.ghost { color: #d7dae2; border-color: #2c2f33; background: rgba(255,255,255,.04); }
.btn.ghost:hover { background: rgba(255,255,255,.07); transform: translateY(-1px); }
.btn.secondary { color:#0f1012; background: #ffe7b3; border-color: #e8c67a; box-shadow: 0 10px 20px rgba(240,197,118,.25); }
.btn.secondary:hover { filter: brightness(1.05); transform: translateY(-1px); }

.hero-card .card { background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03)); border: 1px solid var(--border); border-radius: 22px; padding: 26px; box-shadow: var(--shadow); }
.card-icon { font-size: 28px; margin-bottom: 10px; }
.hero-card h3 { margin: 6px 0 6px; }
.hero-card p { color: #cfd4dd; }

/* Cream Info Section */
.info { background: var(--cream); color: #272524; padding: 80px 0; }
.info-card { background: var(--cream-2); border: 1px solid #e3d8c8; border-radius: 18px; padding: 28px; box-shadow: 0 14px 32px rgba(0,0,0,.12); }
.info-card h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin: 0 0 8px; }
.info-card p { color: #4a473f; max-width: 65ch; }
.info .btn.secondary { margin-top: 14px; }

/* Footer */
.footer { padding: 32px 0; border-top: 1px solid var(--border); background: #0e0f11; color: #b9bec9; }
.footer small { display:block; text-align:center; }

/* Decorative orbs */
.orb { position: absolute; width: 420px; height: 420px; border-radius: 50%; filter: blur(80px); opacity: .25; animation: float 16s ease-in-out infinite; }
.orb-1 { right: -120px; top: -80px; background: radial-gradient(circle at 50% 50%, rgba(110,168,255,.8), rgba(110,168,255,0)); }
.orb-2 { left: -120px; bottom: -160px; background: radial-gradient(circle at 50% 50%, rgba(226,192,128,.8), rgba(226,192,128,0)); animation-delay: 4s; }

@keyframes float { 0%{ transform: translateY(0)} 50%{ transform: translateY(-10px)} 100%{ transform: translateY(0)} }

/* Reveal on scroll */
[data-reveal] { opacity: 0; transform: translateY(12px) scale(.98); transition: opacity .6s ease, transform .6s ease; }
.is-visible { opacity: 1 !important; transform: translateY(0) scale(1) !important; }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .menu { display:none; }
  .hero { padding: 72px 0 52px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}