:root {
    --clr-bg: #111111; /* Edles, dunkles Design passend zur Marke */
    --clr-text: #ffffff;
    --clr-text-muted: #a0a0a0;
    --clr-accent: #2BD1FF;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Manrope', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background: var(--clr-bg);
    color: var(--clr-text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* ─── Fullscreen Video Background ──────────────────────────────── */
.video-bg-wrapper {
    position: fixed;
    inset: 0;                  /* top/right/bottom/left: 0 */
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}

.video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* GPU-Beschleunigung für flüssige Performance */
    transform: translateZ(0);
    will-change: transform;
    /* Leichtes Blur für Tiefeneffekt & bessere Lesbarkeit */
    filter: blur(0px) brightness(0.55);
}

.video-bg-overlay {
    position: absolute;
    inset: 0;
    /* Mehrschichtiges Overlay: dunkle Basis + Vignette */
    background:
        radial-gradient(ellipse at center, transparent 30%, rgba(10, 10, 20, 0.55) 100%),
        linear-gradient(to bottom,
            rgba(10, 10, 20, 0.45) 0%,
            rgba(10, 10, 20, 0.25) 50%,
            rgba(10, 10, 20, 0.60) 100%
        );
}

/* Background Glow (ähnlich zur Hauptseite) */
body::before {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70vw;
    height: 70vh;
    background: radial-gradient(circle at center, rgba(43, 209, 255, 0.08) 0%, rgba(106, 39, 255, 0.04) 50%, transparent 80%);
    z-index: -1;
    filter: blur(80px);
    pointer-events: none;
}


.coming-soon-container {
    position: relative; /* Wichtig für z-index */
    text-align: center;
    padding: 2rem 5vw;
    margin-top: auto;
    margin-bottom: auto;
    max-width: 900px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Logo Styling */
.logo-wrapper {
    margin-bottom: 4rem;
}

.logo {
    height: 60px;
    width: auto;
    display: block;
}

/* Typography */
.massive-text {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 600;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.text-gradient {
    background: linear-gradient(135deg, #2BD1FF 0%, #2A35B0 50%, #6A27FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
    padding-bottom: 0.15em;
    margin-bottom: -0.15em;
}

.font-serif {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 600;
    padding-left: 0.02em;
    padding-right: 0.02em;
}

.bold-lead {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--clr-text-muted);
    margin-bottom: 3.5rem;
    max-width: 650px;
    font-weight: 400;
    line-height: 1.6;
}

/* Button / Link Styling (übernommen vom Hauptdesign) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 0.75rem 0.75rem 2rem;
    border-radius: 50px 0 50px 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    gap: 1.25rem;
}

.email-btn {
    text-transform: lowercase !important;
}

.primary {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.primary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--clr-accent);
    box-shadow: 0 10px 30px rgba(43, 209, 255, 0.15);
}

.btn-icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2BD1FF 0%, #2A35B0 50%, #6A27FF 100%);
    color: #ffffff;
    transition: transform 0.3s ease;
}

.primary:hover .btn-icon-circle {
    transform: rotate(45deg);
}

/* Initial States für die Animationen */
.reveal, .reveal-text {
    opacity: 0;
}
.reveal {
    transform: translateY(30px);
}

/* Glassmorphism Legal Container */
.legal-glass-container {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 0.6rem 1.8rem;
    margin-top: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.legal-glass-container:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.legal-link {
    color: var(--clr-text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: #ffffff;
}

.legal-separator {
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
}

/* Bottom Image Styling */
.hero-image-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    /* Ohne Rahmen / Glassmorphismus */
}

.hero-bottom-image {
    width: auto;
    max-width: 90%;
    height: auto;
    max-height: 350px; /* Kleiner als vorher, gut einpassend */
    display: block;
    object-fit: contain;
    object-position: bottom; /* Ganz am unteren Rand */
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-image-wrapper:hover .hero-bottom-image {
    transform: scale(1.02);
}
