/* ==========================================================
   ALPHAXION
   PRE-LAUNCH WEBSITE
   Version 2.0
========================================================== */


/* ==========================================================
   ROOT
========================================================== */

:root{

    --bg:#0b0f16;
    --bg-light:#151c27;

    --white:#ffffff;
    --text:#cfd6df;
    --muted:#8f97a3;

    --orange:#f58220;
    --orange-light:#ff9b3d;

    --border:rgba(255,255,255,.08);

    --radius:14px;

    --shadow:
        0 18px 60px rgba(0,0,0,.45);

}


/* ==========================================================
   RESET
========================================================== */

*,
*::before,
*::after{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    background:var(--bg);

    color:var(--white);

    font-family:
        "Segoe UI",
        Arial,
        Helvetica,
        sans-serif;

    overflow-x:hidden;

    line-height:1.7;

}

img{

    display:block;
    max-width:100%;
    height:auto;

}

a{

    color:inherit;
    text-decoration:none;

}

ul{

    list-style:none;

}


/* ==========================================================
   HEADER
========================================================== */

.header{

    position:fixed;

    inset:0 0 auto 0;

    z-index:1000;

    display:flex;
    justify-content:center;

    padding:
        clamp(18px,2vw,28px)
        clamp(20px,5vw,60px);

    background:
        rgba(11,15,22,.18);

    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);

    transition:
        background .5s ease,
        padding .4s ease;

}


/* ==========================================================
   NAVIGATION
========================================================== */

.nav{

    width:100%;

    display:flex;
    justify-content:center;

}

.nav ul{

    display:flex;

    align-items:center;

    gap:clamp(28px,5vw,80px);

}

.nav a{

    position:relative;

    font-size:
        clamp(.82rem,.9vw,.96rem);

    letter-spacing:3px;

    text-transform:uppercase;

    font-weight:500;

    color:rgba(255,255,255,.94);

    transition:
        color .35s ease;

}

.nav a:hover{

    color:var(--orange);

}

.nav a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-8px;

    width:0;

    height:1px;

    background:var(--orange);

    transition:width .35s ease;

}

.nav a:hover::after{

    width:100%;

}


/* ==========================================================
   HERO
========================================================== */

.hero{

    position:relative;

    min-height:100svh;

    display:flex;

    justify-content:center;

    align-items:flex-end;

    padding:
        clamp(40px,5vw,70px);

    background:

        linear-gradient(
            rgba(0,0,0,.18),
            rgba(0,0,0,.42)
        ),

        url("../images/hero/hero.png")
        center center / cover
        no-repeat;

}


/* ==========================================================
   HERO SCROLL
========================================================== */

.hero-scroll{

    width:100%;

    text-align:center;

    animation:
        heroReveal 2s ease forwards;

}

.hero-scroll-text{

    font-size:
        clamp(.82rem,1vw,1rem);

    letter-spacing:3px;

    text-transform:uppercase;

    color:
        rgba(255,255,255,.92);

}

.hero-scroll-sub{

    margin-top:10px;

    font-size:
        clamp(1.1rem,2vw,1.45rem);

    font-weight:600;

    color:var(--orange);

}

.hero-arrow{

    margin-top:22px;

    font-size:
        clamp(1.6rem,3vw,2.2rem);

    color:var(--white);

    animation:
        bounce 2.8s infinite;

}
/* ==========================================================
   INTRO
========================================================== */

.intro{

    width:min(920px,92%);

    margin:auto;

    padding:
        clamp(80px,10vw,150px)
        0;

    text-align:center;

}

.intro-logo{

    width:clamp(70px,8vw,100px);

    margin:
        0 auto
        clamp(22px,3vw,30px);

}

.company{

    display:block;

    margin-bottom:
        clamp(18px,2vw,24px);

    color:var(--muted);

    font-size:
        clamp(.72rem,.9vw,.9rem);

    letter-spacing:4px;

    text-transform:uppercase;

}

.intro h1{

    font-size:
        clamp(2rem,5vw,4.2rem);

    line-height:1.12;

    font-weight:700;

    margin-bottom:
        clamp(10px,2vw,18px);

}

.intro h2{

    font-size:
        clamp(1.1rem,2vw,1.6rem);

    color:var(--orange);

    font-weight:500;

    margin-bottom:
        clamp(34px,5vw,55px);

}

.intro-text{

    max-width:760px;

    margin:auto;

    color:var(--text);

    font-size:
        clamp(1rem,1.4vw,1.15rem);

    line-height:1.95;

}


/* ==========================================================
   SECTIONS
========================================================== */

.section{

    width:min(900px,92%);

    margin:auto;

    padding:
        clamp(110px,12vw,170px)
        0;

    text-align:center;

}


/* ==========================================================
   DISCOVERY LINE
========================================================== */

.section-line{

    width:72px;

    height:1px;

    margin:
        0 auto
        38px;

    background:

        linear-gradient(
            90deg,
            transparent,
            var(--orange),
            transparent
        );

    transform:scaleX(0);

    transform-origin:center;

}


/* ==========================================================
   SECTION TITLE
========================================================== */

.section-title{

    display:block;

    margin-bottom:
        clamp(20px,2vw,26px);

    color:var(--orange);

    text-transform:uppercase;

    letter-spacing:5px;

    font-size:
        clamp(.78rem,.9vw,.92rem);

    opacity:0;

    transform:translateY(18px);

}


/* ==========================================================
   SECTION HEADLINE
========================================================== */

.section h2{

    max-width:760px;

    margin:
        0 auto
        clamp(35px,4vw,48px);

    font-size:
        clamp(2rem,5vw,3.6rem);

    line-height:1.18;

    font-weight:650;

    opacity:0;

    transform:translateY(28px);

}


/* ==========================================================
   SECTION TEXT
========================================================== */

.section p{

    max-width:760px;

    margin:
        0 auto
        24px;

    color:var(--text);

    font-size:
        clamp(1rem,1.35vw,1.12rem);

    line-height:1.95;

    opacity:0;

    transform:translateY(28px);

}

.section p:last-child{

    margin-bottom:0;

}
/* ==========================================================
   DISCOVERY
========================================================== */

.countdown-title{

    margin:
        clamp(60px,8vw,90px)
        0
        clamp(35px,4vw,50px);

    color:var(--orange);

    text-transform:uppercase;

    letter-spacing:4px;

    font-size:
        clamp(.85rem,1vw,1rem);

}


/* ==========================================================
   COUNTDOWN
========================================================== */

.countdown{

    display:grid;

    grid-template-columns:
        repeat(auto-fit,minmax(110px,1fr));

    gap:
        clamp(16px,2vw,24px);

    max-width:620px;

    margin:
        0 auto
        clamp(60px,8vw,90px);

}

.time-box{

    background:

        rgba(255,255,255,.035);

    border:

        1px solid var(--border);

    border-radius:

        var(--radius);

    backdrop-filter:

        blur(16px);

    box-shadow:

        var(--shadow);

    padding:

        clamp(18px,3vw,26px);

}

.time-box span{

    display:block;

    color:var(--orange);

    font-weight:700;

    font-size:

        clamp(2rem,5vw,3.2rem);

    line-height:1;

}

.time-box small{

    display:block;

    margin-top:14px;

    color:var(--muted);

    letter-spacing:3px;

    text-transform:uppercase;

    font-size:

        clamp(.68rem,.8vw,.8rem);

}


/* ==========================================================
   DISCOVERY FORM
========================================================== */

.launch-form{

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    align-items:center;

    gap:

        clamp(16px,2vw,22px);

    max-width:720px;

    margin:auto;

}

.launch-form input{

    flex:1;

    min-width:260px;

    padding:

        clamp(16px,2vw,18px)
        clamp(18px,2vw,22px);

    border-radius:

        var(--radius);

    border:

        1px solid var(--border);

    background:

        rgba(255,255,255,.03);

    color:var(--white);

    font-size:

        clamp(.95rem,1vw,1rem);

    transition:

        .35s ease;

}

.launch-form input:focus{

    outline:none;

    border-color:var(--orange);

    background:

        rgba(255,255,255,.05);

}

.launch-form button{

    padding:

        clamp(16px,2vw,18px)
        clamp(28px,3vw,36px);

    border:none;

    border-radius:

        var(--radius);

    background:

        linear-gradient(
            135deg,
            var(--orange),
            var(--orange-light)
        );

    color:#fff;

    font-weight:600;

    font-size:

        clamp(.95rem,1vw,1rem);

    cursor:pointer;

    transition:

        transform .35s ease,
        box-shadow .35s ease;

    box-shadow:

        0 10px 30px rgba(245,130,32,.28);

}

.launch-form button:hover{

    transform:

        translateY(-3px);

    box-shadow:

        0 18px 40px rgba(245,130,32,.45);

}


/* ==========================================================
   FOOTER
========================================================== */

footer{

    margin-top:

        clamp(120px,12vw,180px);

    padding:

        clamp(70px,8vw,100px)
        5vw;

    text-align:center;

    background:#070b10;

    border-top:

        1px solid rgba(255,255,255,.05);

}

footer p{

    color:var(--text);

    line-height:2;

    font-size:

        clamp(.95rem,1vw,1.05rem);

}

.footer-links{

    margin-top:40px;

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:30px;

}

.footer-links button{

    background:none;

    border:none;

    color:var(--white);

    cursor:pointer;

    font-size:.95rem;

    letter-spacing:1px;

    transition:.3s;

}

.footer-links button:hover{

    color:var(--orange);

}

.legal-panel{

    max-width:950px;

    margin:40px auto 0;

    padding:0;

    max-height:0;

    overflow:hidden;

    opacity:0;

    text-align:left;

    transition:
        max-height .6s ease,
        opacity .35s ease,
        padding .35s ease;

}

.legal-panel.open{

    max-height:7000px;

    padding:40px;

    opacity:1;

    background:rgba(255,255,255,.03);

    border:1px solid var(--border);

    border-radius:var(--radius);

}
/* ==========================================================
   ALPHAXION DISCOVERY ANIMATION SYSTEM
========================================================== */

/* Die Section bleibt immer sichtbar */

.fade-in{

    position:relative;

}


/* Orange Linie */

.section-line{

    transform:scaleX(0);

    transform-origin:center;

    transition:
        transform .9s cubic-bezier(.22,.61,.36,1);

}


/* Bereichstitel */

.section-title{

    opacity:0;

    transform:
        translateY(20px);

    transition:
        opacity .6s ease,
        transform .6s ease;

}


/* Überschrift */

.section h2{

    opacity:0;

    transform:
        translateY(35px);

    transition:
        opacity .8s ease,
        transform .8s cubic-bezier(.22,.61,.36,1);

}


/* Text */

.section p{

    opacity:0;

    transform:
        translateY(28px);

    transition:
        opacity .8s ease,
        transform .8s ease;

}


/* Countdown */

.countdown-title,
.countdown{

    opacity:0;

    transform:
        translateY(28px);

    transition:
        opacity .8s ease,
        transform .8s ease;

}


/* Formular */

.launch-form{

    opacity:0;

    transform:
        translateY(28px);

    transition:
        opacity .8s ease,
        transform .8s ease;

}


/* ==============================
   Sichtbarer Zustand
============================== */

.fade-in.visible .section-line{

    transform:scaleX(1);

}

.fade-in.visible .section-title{

    opacity:1;

    transform:none;

    transition-delay:.2s;

}

.fade-in.visible h2{

    opacity:1;

    transform:none;

    transition-delay:.45s;

}

.fade-in.visible p:nth-of-type(1){

    opacity:1;

    transform:none;

    transition-delay:.75s;

}

.fade-in.visible p:nth-of-type(2){

    opacity:1;

    transform:none;

    transition-delay:1s;

}

.fade-in.visible p:nth-of-type(3){

    opacity:1;

    transform:none;

    transition-delay:1.25s;

}

.fade-in.visible .countdown-title{

    opacity:1;

    transform:none;

    transition-delay:1.4s;

}

.fade-in.visible .countdown{

    opacity:1;

    transform:none;

    transition-delay:1.6s;

}

.fade-in.visible .launch-form{

    opacity:1;

    transform:none;

    transition-delay:1.9s;

}

/* ==========================================================
   HERO
========================================================== */

@keyframes heroReveal{

    from{

        opacity:0;

        transform:translateY(50px);

    }

    to{

        opacity:1;

        transform:none;

    }

}

@keyframes bounce{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(12px);

    }

}
/* ==========================================================
   RESPONSIVE
========================================================== */

/* Tablets */

@media (max-width:992px){

    .nav ul{

        gap:clamp(18px,4vw,40px);

    }

    .section,
    .intro{

        width:min(94%,900px);

    }

}


/* Smartphones */

@media (max-width:768px){

    .header{

        padding:18px 20px;

    }

    .nav ul{

        gap:20px;

        flex-wrap:wrap;

    }

    .nav a{

        font-size:.8rem;

        letter-spacing:2px;

    }

    .countdown{

        grid-template-columns:
            repeat(2,minmax(110px,1fr));

        max-width:340px;

    }

    .launch-form{

        flex-direction:column;

    }

    .launch-form input,
    .launch-form button{

        width:100%;

        min-width:0;

    }

}


/* Kleine Smartphones */

@media (max-width:480px){

    .hero{

        background-position:center center;

    }

    .hero-scroll{

        padding-bottom:18px;

    }

    .countdown{

        grid-template-columns:1fr;

        max-width:180px;

    }

    .section-line{

        width:52px;

    }

}


/* Große Monitore */

@media (min-width:1600px){

    .section{

        max-width:980px;

    }

    .intro{

        max-width:980px;

    }

}


/* ==========================================================
   ACCESSIBILITY
========================================================== */

@media (prefers-reduced-motion: reduce){

    *{

        animation:none !important;

        transition:none !important;

        scroll-behavior:auto !important;

    }

}
/* ==========================================================
   FOOTER
========================================================== */

.footer{

    padding:80px 0 50px;

    border-top:1px solid rgba(255,255,255,.08);

    background:#0b0f16;

    text-align:center;

}

.footer-logo{

    font-size:clamp(2rem,4vw,2.6rem);

    font-weight:700;

    letter-spacing:.18em;

    margin-bottom:18px;

}

.footer-company{

    font-size:1rem;

    color:#d5d5d5;

    margin-bottom:8px;

}

.footer-location{

    color:#8b95a7;

    margin-bottom:35px;

}

.footer-links{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:18px;

    flex-wrap:wrap;

    margin-bottom:35px;

}

.footer-links a{

    color:#ffffff;

    text-decoration:none;

    font-size:.95rem;

    letter-spacing:.08em;

    transition:.3s ease;

}

.footer-links a:hover{

    color:var(--accent);

}

.footer-divider{

    color:#555;

}

.footer-copy{

    color:#7f8796;

    font-size:.85rem;

    line-height:1.8;

}
.logo-white{

    color:#ffffff;

}

.logo-orange{

    color:var(--accent);

}
:root{

    --orange:#f58220;
    --accent:#f58220;
    --orange-light:#ff9b3d;

}
.footer-links button{

    background:none;

    border:none;

    color:#ffffff;

    font-size:.95rem;

    cursor:pointer;

    letter-spacing:.08em;

    transition:.3s;

}

.footer-links button:hover{

    color:var(--orange);

}