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

/* Farbvariablen */
:root { --bg: #08080c; --text: #e8e4de; --dim: #9e9a94; --accent: #d4ff2b; --accent2: #ff6b35; }

/* Basis */
html, body { height: 100%; overflow: hidden; font-family: 'DM Sans', -apple-system, sans-serif; background: var(--bg); color: var(--text); }
.page { height: 100vh; height: 100dvh; position: relative; display: flex; align-items: center; justify-content: center; }

/* Rauschtextur */
.page::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E"); opacity: 0.4; pointer-events: none; z-index: 1; }

/* Nebula-Lichter */
.orb { position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none; }
.orb-1 { width: 800px; height: 800px; background: radial-gradient(circle, rgba(30,180,180,0.22) 0%, transparent 65%); top: -25%; right: 0%; animation: orbDrift1 20s ease-in-out infinite alternate; }
.orb-2 { width: 700px; height: 700px; background: radial-gradient(circle, rgba(50,100,100,0.20) 0%, transparent 65%); bottom: -20%; left: -8%; animation: orbDrift2 25s ease-in-out infinite alternate; }
.orb-3 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(20,150,160,0.16) 0%, transparent 60%); top: 35%; left: 25%; animation: orbDrift3 18s ease-in-out infinite alternate; }
.orb-4 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(60,50,130,0.14) 0%, transparent 60%); top: 5%; left: -8%; animation: orbDrift4 22s ease-in-out infinite alternate; }
.orb-5 { width: 450px; height: 450px; background: radial-gradient(circle, rgba(40,160,150,0.10) 0%, transparent 60%); bottom: 5%; right: 15%; animation: orbDrift5 16s ease-in-out infinite alternate; }

/* Nebula-Animationen */
@keyframes orbDrift1 { 0% { transform: translate(0, 0); } 100% { transform: translate(-80px, 50px); } }
@keyframes orbDrift2 { 0% { transform: translate(0, 0); } 100% { transform: translate(60px, -40px); } }
@keyframes orbDrift3 { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(50px, -60px) scale(1.15); } }
@keyframes orbDrift4 { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(40px, 50px) scale(1.1); } }
@keyframes orbDrift5 { 0% { transform: translate(0, 0); } 100% { transform: translate(-50px, -30px); } }

/* Sternenhimmel Canvas */
#particleCanvas { position: absolute; inset: 0; z-index: 2; pointer-events: none; }

/* Inhalt */
.content { position: relative; z-index: 10; width: 100%; max-width: 1200px; padding: 0 clamp(2rem, 5vw, 4rem); }

/* Navigation */
.topbar { position: absolute; top: 0; left: 0; right: 0; z-index: 20; padding: clamp(1.5rem, 3vw, 2.5rem) clamp(2rem, 5vw, 4rem); display: flex; justify-content: space-between; align-items: center; }
.topbar-logo { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.95rem; letter-spacing: -0.02em; opacity: 0; animation: fadeIn 1s ease 0.2s forwards; }
.topbar-logo span { color: var(--accent); }
.topbar-links { display: flex; gap: 2rem; align-items: center; opacity: 0; animation: fadeIn 1s ease 0.4s forwards; }
.topbar-links a { color: var(--dim); text-decoration: none; font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 400; transition: color 0.3s ease; position: relative; }
.topbar-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--accent); transition: width 0.3s ease; }
.topbar-links a:hover { color: var(--text); }
.topbar-links a:hover::after { width: 100%; }

/* Hero-Bereich */
.hero { display: flex; flex-direction: column; gap: 1.4rem; }
.hero-label { font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--dim); font-weight: 500; opacity: 0; animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards; display: flex; align-items: center; gap: 1rem; }
.hero-label::before { content: ''; display: block; width: 40px; height: 1px; background: var(--dim); }

/* Hero-Titel */
.hero-title { font-family: 'Syne', sans-serif; font-size: clamp(2.8rem, 6.5vw, 5.5rem); font-weight: 800; line-height: 1.35; letter-spacing: -0.04em; padding-bottom: 0.05em; }
.hero-title .line-1 { display: block; opacity: 0; animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards; }
.hero-title .line-2 { display: block; opacity: 0; animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.75s forwards; }

/* Outline-Text Hover */
.hero-title .highlight { -webkit-text-stroke: 1.5px var(--text); color: transparent; transition: color 0.4s ease, -webkit-text-stroke-color 0.4s ease; cursor: default; }
.hero-title .highlight:hover, .hero-title .highlight.active { color: var(--accent); -webkit-text-stroke-color: var(--accent); }

/* Untertitel */
.hero-sub { max-width: 420px; font-size: clamp(0.9rem, 1.2vw, 1.05rem); line-height: 1.7; color: var(--dim); font-weight: 300; opacity: 0; animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards; }

/* Animationen */
@keyframes slideUp { 0% { opacity: 0; transform: translateY(30px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { 0% { opacity: 0; } 100% { opacity: 1; } }

/* Fusszeile */
.bottombar { position: absolute; bottom: 0; left: 0; right: 0; z-index: 20; padding: clamp(1.5rem, 3vw, 2.5rem) clamp(2rem, 5vw, 4rem); display: flex; justify-content: space-between; align-items: flex-end; opacity: 0; animation: fadeIn 1s ease 1.3s forwards; }
.status { display: flex; align-items: center; gap: 0.6rem; font-size: 0.75rem; color: var(--dim); letter-spacing: 0.04em; }
.status-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 12px rgba(212,255,43,0.5); animation: pulse 2.5s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }
.location { font-size: 0.75rem; color: var(--dim); letter-spacing: 0.06em; }

/* Ecken-Deko */
.corner { position: absolute; width: 60px; height: 60px; z-index: 5; opacity: 0; animation: fadeIn 1.2s ease 1.5s forwards; }
.corner--tl { top: clamp(1.2rem, 3vw, 2.2rem); left: clamp(1.5rem, 5vw, 3.5rem); border-top: 1px solid rgba(255,255,255,0.06); border-left: 1px solid rgba(255,255,255,0.06); }
.corner--br { bottom: clamp(1.2rem, 3vw, 2.2rem); right: clamp(1.5rem, 5vw, 3.5rem); border-bottom: 1px solid rgba(255,255,255,0.06); border-right: 1px solid rgba(255,255,255,0.06); }

/* Maus-Lichteffekt */
.cursor-glow { position: fixed; width: 250px; height: 250px; border-radius: 50%; background: radial-gradient(circle, rgba(30,170,170,0.08) 0%, rgba(40,130,140,0.03) 50%, transparent 70%); pointer-events: none; z-index: 3; transform: translate(-50%, -50%); will-change: left, top; }

/* Mobil */
@media (max-width: 768px) { .topbar-links { gap: 1.2rem; } .hero-sub { max-width: 320px; } .corner { display: none; } .bottombar { flex-direction: column; gap: 1rem; align-items: flex-start; } }
