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

body {
    background: #04040c;
    background-image:
        radial-gradient(ellipse 80% 60% at 50% 30%, #1a103a 0%, #0b091e 45%, #04040c 100%);
    min-height: 100vh;
    overflow: hidden;
}

.hero-container {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.vignette {
    position: absolute;
    inset: 0;
    z-index: 10;
    pointer-events: none;
    background:
        radial-gradient(ellipse 100% 100% at 50% 50%, transparent 40%, rgba(4, 4, 12, 0.85) 100%);
}

.glow-ring {
    position: absolute;
    width: 620px;
    height: 120px;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
    box-shadow:
        0 0   8px  4px rgba(255, 255, 255, 0.55),
        0 0  30px 12px rgba(180, 120, 255, 0.55),
        0 0  70px 28px rgba(100, 140, 255, 0.35),
        0 0 130px 55px rgba(80,  80,  200, 0.20);
}

.slider {
    width: 160px;
    height: 220px;
    position: absolute;
    top:  calc(45% - 110px);
    left: calc(50% - 80px);
    transform-style: preserve-3d;
    animation: orbit 60s linear infinite;
    z-index: 3;
}

@keyframes orbit {
    from { transform: perspective(1100px) rotateX(15deg) rotateY(0deg);   }
    to   { transform: perspective(1100px) rotateX(15deg) rotateY(360deg); }
}

.card {
    position: absolute;
    inset: 0;
    transform: rotateY(calc((360 / var(--total)) * (var(--index) - 1) * 1deg)) translateZ(380px);
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow:
        0  8px 20px rgba(0, 0, 0, 0.70),
        0  0   14px rgba(140, 100, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.phone-mockup {
    position: absolute;
    width:  1000px;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    filter:
        drop-shadow(0 25px 50px rgba(0, 0, 0, 0.95))
        drop-shadow(0  0   35px rgba(120, 80, 255, 0.40));
}

.phone-mockup img {
    width: 100%;
    height: auto;
    display: block;
}

.info {
    position: absolute;
    left: 50%;
    bottom: 11vh;
    transform: translateX(-50%);
    z-index: 8;
    width: 100%;
    max-width: 900px;
    padding: 0 2rem;
    text-align: center;
}

.info h1 {
    font-family: 'ICA_Rubrick', 'Georgia', serif;
    font-weight: 700;
    font-size: clamp(3rem, 6.5vw, 5.25rem);
    line-height: 1.02;
    color: #ffffff;
    letter-spacing: -0.015em;
    text-shadow:
        0 0  30px rgba(150, 110, 255, 0.55),
        0 0  70px rgba(110, 140, 255, 0.30),
        0 2px 14px rgba(0,   0,   0,   0.65);
}

.info h1::after {
    display: none;
}


.info .tagline {
    margin-top: 18px;
    font-family: 'Georgia', serif;
    font-style: normal;
    font-size: clamp(1rem, 1.7vw, 1.25rem);
    color: rgba(215, 200, 255, 0.8);
    letter-spacing: 0.12em;
    line-height: 1.5;
}

.info .tagline em {
    font-style: normal;
    color: rgba(220, 210, 255, 0.55);
}
    /* ── Footer — absolutely pinned ── */
.footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(215, 200, 255, 0.8);
    font-size: 11px;
    letter-spacing: 0.06em;
    text-align: center;
}
