/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg-primary: #090a0c;
    --grey-10: #18191b;
    --grey-20: #303236;
    --grey-50: #797d86;
    --grey-60: #95979e;
    --grey-80: #c9cbcf;
    --grey-90: #e5e5e7;
    --white: #ffffff;
    --blue: #5683da;
    --orange: #ff8964;

    --hero-mask-x: 50%;
    --hero-mask-y: 50%;
    --hero-mask-size: 300px;

    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-title: 'JetBrains Mono', 'Inter', monospace;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--grey-90);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img, svg, video, canvas { display: block; max-width: 100%; }
button { font: inherit; border: none; background: none; cursor: pointer; color: inherit; }

/* ===== HEADER ===== */
#main-header {
    position: fixed;
    left: 0; right: 0; top: 0;
    z-index: 40;
    height: 64px;
    background-color: transparent;
    border-bottom: 1px solid transparent;
    transition: background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                backdrop-filter 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

#main-header.scrolled {
    height: 56px;
    background-color: rgba(9, 10, 12, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    height: 100%;
}

.logo { display: flex; align-items: center; gap: 10px; transition: opacity 0.2s; }
.logo:hover { opacity: 0.85; }
.logo-icon { height: 32px; width: auto; }
.logo-text { color: white; font-family: var(--font-title); font-size: 20px; font-weight: 700; letter-spacing: 2px; }

.main-nav { margin-left: 77px; }
.main-nav ul { display: flex; align-items: center; }

.nav-link {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 12px; font-size: 14px; color: var(--white);
    white-space: nowrap; transition: color 0.2s;
}
.nav-link:hover { color: var(--blue); }
.dropdown-trigger svg { width: 8px; height: auto; opacity: 0.6; }

.header-actions { margin-left: auto; display: flex; align-items: center; gap: 14px; }

.btn-header {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 14px; color: var(--white); padding: 0 6px; transition: color 0.2s;
}
.btn-header:hover { color: var(--grey-80); }
.github-icon { width: 16px; height: 16px; fill: var(--white); }

.btn-outline {
    display: flex; align-items: center; justify-content: center;
    height: 32px; padding: 0 16px;
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: -0.01em; color: var(--white);
    border-radius: 9999px; position: relative; transition: all 0.2s;
}

.btn-outline::before {
    content: ''; position: absolute; inset: 0;
    border-radius: 9999px; border: 1px solid transparent; z-index: -1;
    background: linear-gradient(var(--bg-primary), var(--bg-primary)) padding-box,
                linear-gradient(180deg, rgba(255,255,255,0.3), rgba(255,255,255,0.15)) border-box;
    transition: opacity 0.2s;
}

.btn-outline::after {
    content: ''; position: absolute; inset: 0;
    border-radius: 9999px; border: 1px solid transparent; z-index: -1; opacity: 0;
    background: linear-gradient(#17171a, #17171a) padding-box,
                linear-gradient(180deg, rgba(255,255,255,0.5), rgba(255,255,255,0.25)) border-box;
    transition: opacity 0.2s;
}

.btn-outline:hover::before { opacity: 0; }
.btn-outline:hover::after { opacity: 1; }

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    height: 1438px;
    overflow: hidden;
    background-color: var(--bg-primary);
    padding-top: 184px;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* ===== TITLE — Premium gradient ===== */
.hero-title {
    position: relative; z-index: 30;
    max-width: 616px;
    font-family: var(--font-title);
    font-size: 84px; font-weight: 600;
    line-height: 0.9; letter-spacing: -0.04em;
    background: linear-gradient(to bottom right, #fff 30%, #d5d8f6 80%, #fdf7fe);
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
    opacity: 0;
}

.hero-subtitle {
    position: relative; z-index: 30;
    margin-top: 20px;
    max-width: 448px;
    font-size: 18px; line-height: 1.375; letter-spacing: -0.04em;
    color: var(--grey-90);
    opacity: 0;
}

/* ===== CTA BUTTON — Premium glow ===== */
.hero-cta-wrap {
    margin-top: 44px; position: relative; z-index: 30;
    opacity: 0;
}

.glowing-btn-wrapper {
    position: relative; display: inline-flex; align-items: center; z-index: 10;
}

.glowing-btn-blur {
    position: absolute; left: 50%; top: 50%;
    height: calc(100% + 9px); width: calc(100% + 9px);
    transform: translate(-50%, -50%);
    border-radius: 9999px;
    will-change: transform; pointer-events: none;
}

.glowing-btn-blur::before {
    content: ''; position: absolute; left: -2px; top: -2px;
    z-index: 10; box-sizing: content-box; height: 100%; width: 100%;
    border-radius: 9999px; border: 2px solid transparent;
    filter: blur(2px);
    background: linear-gradient(transparent, transparent) padding-box,
                linear-gradient(97.68deg, rgba(255,177,153,0) 38.1%, rgba(255,177,153,0.2) 82.47%, #ff7950 93.3%) border-box;
}

.glowing-btn-blur::after {
    content: ''; position: absolute; left: -3px; top: -3px;
    z-index: 20; box-sizing: content-box; height: 100%; width: 100%;
    border-radius: 9999px; border: 3px solid transparent;
    filter: blur(15px);
    background: linear-gradient(transparent, transparent) padding-box,
                linear-gradient(91.88deg, rgba(255,137,100,0.2) 46.45%, #cd3100 98.59%) border-box;
}

.glow-normal { opacity: 1; }
.glow-flipped { opacity: 0; transform: translate(-50%, -50%) scaleX(-1); }

.glowing-btn {
    position: relative; z-index: 10;
    display: flex; align-items: center; justify-content: center; gap: 4px;
    height: 40px; padding: 0 64px;
    font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: -0.015em;
    color: #5A250A; border-radius: 9999px;
    border: 1px solid rgba(255,255,255,0.6);
    background-color: #d1d1d1;
    overflow: hidden; transition: all 0.2s; cursor: pointer;
}

.btn-glow-orb {
    position: absolute; z-index: -1;
    display: flex; width: 204px; align-items: center; justify-content: center;
    transition: transform 0.3s ease-out;
}

.btn-glow-orb::before {
    content: ''; position: absolute; top: 50%; transform: translateY(-50%);
    height: 121px; width: 121px;
    background: radial-gradient(50% 50% at 50% 50%, #FFFFF5 3.5%, #FFAA81 26.5%, #FFDA9F 37.5%, rgba(255,170,129,0.50) 49%, rgba(210,106,58,0.00) 92.5%);
}

.btn-glow-orb::after {
    content: ''; position: absolute; top: 50%; transform: translateY(-50%);
    height: 103px; width: 204px;
    background: radial-gradient(43.3% 44.23% at 50% 49.51%, #FFFFF7 29%, #FFFACD 48.5%, #F4D2BF 60.71%, rgba(214,211,210,0.00) 100%);
    filter: blur(5px);
}

.btn-text { color: #5A250A; position: relative; z-index: 2; }
.btn-arrow { width: 17px; height: 9px; color: #5A250A; position: relative; z-index: 2; }
.glowing-btn:hover { filter: brightness(1.08); }

/* ===== HERO ILLUSTRATION ===== */
.hero-illustration {
    position: absolute;
    bottom: 0; left: 24px;
    width: 1574px; max-width: none;
    aspect-ratio: 1.067842;
}

/* Video background — the premium cosmic beam */
.hero-video-wrap {
    position: absolute;
    left: -344px; bottom: 0;
    z-index: 0;
    width: 1920px; height: 1438px;
    max-width: none;
    mix-blend-mode: lighten;
    pointer-events: none;
}

.hero-video {
    width: 100%; height: 100%;
    object-fit: cover;
    max-width: none;
}

/* Canvas glow (supplementary layer) */
.cosmic-canvas {
    position: absolute;
    left: -344px; bottom: 0;
    z-index: 1;
    width: 1920px; height: 1438px;
    max-width: none;
    mix-blend-mode: plus-lighter;
    pointer-events: none;
    opacity: 0.7;
}

/* Mouse-tracking grid overlay */
.hero-mask-overlay {
    position: absolute;
    inset: 0;
    mix-blend-mode: overlay;
    clip-path: circle(var(--hero-mask-size) at var(--hero-mask-x) var(--hero-mask-y));
    pointer-events: none;
    z-index: 5;
}

.grid-pattern, .grid-dots {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    max-width: none;
}

.grid-dots { z-index: 10; }

/* Main screenshot */
.hero-screenshot {
    position: absolute;
    bottom: 141px; left: 8px;
    width: 1024px;
    max-width: 95%;
    border-top-left-radius: 10px; border-top-right-radius: 10px;
    z-index: 10;
    opacity: 0;
    /* Terminal Glow Reflection */
    box-shadow: 0 40px 100px -20px rgba(50, 200, 150, 0.15), 0 0 60px rgba(235, 115, 62, 0.1);
}

/* ===== FILM GRAIN ===== */
.info-section::after, .cta-section::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.015; /* Much softer */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Keep content above grain */
.info-container, .cta-container {
    position: relative;
    z-index: 2;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* ===== FEATURES TICKER ===== */
.features-ticker {
    position: absolute; bottom: 88px;
    z-index: 30; overflow: hidden;
    font-size: 14px; letter-spacing: -0.02em;
    opacity: 0;
    width: 100%;
    left: 0;
}

.ticker-label {
    margin-bottom: 14px;
    font-weight: 300; line-height: 1;
    color: rgba(255,255,255,0.6);
    text-align: center;
}

.ticker-scroll {
    display: flex;
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
}

.ticker-list {
    display: flex;
    flex-shrink: 0;
    font-weight: 600; line-height: 1.125;
    color: var(--white);
    animation: ticker-marquee 25s linear infinite;
}

.ticker-list li {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.ticker-list .dot {
    display: inline-block; width: 3px; height: 3px;
    border-radius: 50%; background: rgba(255,255,255,0.3);
    margin: 0 10px; vertical-align: middle;
}

@keyframes ticker-marquee {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* ===== HERO BOTTOM FADE ===== */
.hero-bottom-fade {
    position: absolute; bottom: 0; left: 0; z-index: 20;
    width: 100%; height: 340px;
    background: linear-gradient(to bottom, rgba(9,10,12,0), var(--bg-primary) 50%);
    pointer-events: none;
}

/* ===== ADDITIONAL SECTIONS ===== */
.info-section {
    padding: 140px 20px 100px;
    position: relative;
    z-index: 30;
    text-align: center;
    background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.02) 0%, transparent 70%);
}

.cta-section {
    padding: 100px 20px 140px;
    position: relative;
    z-index: 30;
    text-align: center;
}

.info-section::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 60%; height: 60%;
    background: radial-gradient(circle, rgba(235, 115, 62, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
    filter: blur(80px);
}

.section-title {
    font-family: var(--font-title);
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.5) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-wrap: balance;
}

.section-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
    max-width: 680px;
    margin: 0 auto 48px;
    text-wrap: balance;
}

.info-cards {
    display: flex;
    gap: 24px;
    justify-content: center;
    max-width: 1200px;
    margin: 60px auto 0;
    flex-wrap: wrap;
    position: relative;
}

.info-card {
    flex: 1;
    min-width: 320px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: left;
    backdrop-filter: blur(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.info-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 40px rgba(255,255,255,0.02);
}

.info-card:hover::after {
    opacity: 1;
}

.info-card .info-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--white);
    box-shadow: inset 0 2px 4px rgba(255,255,255,0.05);
}

.info-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    color: #fff;
}

.info-card p {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    font-size: 16px;
}

/* ===== FOOTER ===== */
.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 60px 20px;
    position: relative;
    z-index: 30;
    background: rgba(0,0,0,0.2);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo-icon {
    height: 28px;
    width: auto;
}

.footer-logo-text {
    color: white;
    font-family: var(--font-title);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
    margin-top: 4px;
}

.footer-links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--white);
}

/* ===== ANIMATIONS ===== */
@keyframes titleIn {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes screenshotIn {
    from { opacity: 0; transform: translateY(80px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1280px) {
    :root {
        --hero-mask-size: 200px;
    }
    
    .hero {
        height: auto;
        min-height: auto;
        padding-top: 130px;
        padding-bottom: 40px;
        overflow: hidden;
    }
    
    .hero-container {
        display: block;
        text-align: center;
        padding: 0 1.5rem;
    }
    
    .hero-title {
        max-width: 640px;
        font-size: 64px;
        text-align: center;
        margin: 0 auto;
        line-height: 1.05;
    }
    
    .hero-subtitle {
        max-width: 480px;
        font-size: 17px;
        text-align: center;
        margin: 16px auto 0;
        line-height: 1.35;
    }
    
    .hero-cta-wrap {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-top: 32px;
    }
    
    /* ===== THE FLUID AND CENTERING MAGIC ===== */
    .hero-illustration {
        position: relative;
        left: 50%;
        transform: translateX(-33.037%); /* Mathematically centers the terminal screenshot horizontally! */
        width: 138.34vw;
        max-width: 1400px; /* Capped to prevent growing too large on mid-sized screens */
        aspect-ratio: 1574 / 1100; /* Cropped top for a perfectly tight mobile/tablet layout */
        margin-top: 24px;
        bottom: auto;
        overflow: hidden;
        flex-shrink: 0; /* Prevents flex container centering from shrinking and truncating layout */
    }
    
    /* Proportional absolute elements inside the centered container */
    .hero-screenshot {
        position: absolute;
        width: 65.057%; /* 1024px / 1574px */
        left: 0.508%; /* 8px / 1574px */
        bottom: 12.818%; /* 141px / 1100px */
        height: 51.727%; /* 569px / 1100px */
        max-width: none;
        transform: none;
        opacity: 0;
        /* Reflection and glow effects */
        box-shadow: 0 40px 100px -20px rgba(50, 200, 150, 0.15), 0 0 60px rgba(235, 115, 62, 0.1);
    }
    
    .hero-video-wrap, .cosmic-canvas {
        position: absolute;
        left: -21.855%; /* -344px / 1574px */
        bottom: 0;
        width: 121.982%; /* 1920px / 1574px */
        height: 130.727%; /* 1438px / 1100px */
        min-width: auto;
        transform: none;
    }
    
    .hero-mask-overlay {
        display: none;
    }
    
    .features-ticker {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        bottom: auto;
        margin-top: 40px;
        padding: 0 1.5rem;
        width: 100%;
        opacity: 0;
    }
    
    .ticker-list {
        justify-content: center;
    }
}

@media (max-width: 1024px) {
    .header-container {
        justify-content: center;
    }
    
    .main-nav {
        display: none;
    }
    
    .header-actions {
        display: none; /* Hide header-actions completely to prevent shifting centering */
    }
    
    .hero-title {
        max-width: 520px;
        font-size: 52px;
    }
    
    .hero-subtitle {
        max-width: 440px;
        font-size: 16px;
    }
    
    .section-title {
        font-size: 40px;
        text-align: center;
    }
    
    .info-section, .cta-section {
        padding: 80px 20px;
    }
    
    .info-cards {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        margin-top: 40px;
        width: 100%;
    }
    
    .info-card {
        width: 100%;
        max-width: 480px;
        padding: 36px 28px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: auto;
    }
    
    .info-card .info-icon {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 20px;
    }
}

@media (max-width: 640px) {
    .hero {
        padding-top: 110px;
    }
    
    .hero-title {
        max-width: 320px;
        font-size: 38px;
    }
    
    .hero-subtitle {
        max-width: 290px;
        font-size: 14px;
        margin-top: 14px;
    }
    
    .hero-cta-wrap {
        margin-top: 24px;
    }
    
    .hero-illustration {
        width: 138.34vw;
        margin-top: 20px;
    }
    
    .features-ticker {
        margin-top: 32px;
        font-size: 12px;
        padding: 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 15px;
        margin-bottom: 36px;
    }
    
    .info-section, .cta-section {
        padding: 60px 16px;
    }
    
    .info-card {
        max-width: 100%;
        padding: 28px 20px;
    }
    
    .footer-container {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        gap: 24px;
    }
    
    .footer-left {
        align-items: center;
    }
    
    .footer-links {
        justify-content: center;
        gap: 16px 24px;
    }
}

/* ===== PRELOADER & COORDINATED ENTRANCE ===== */
.body-locked {
    overflow: hidden;
    height: 100vh;
}

.preloader {
    position: fixed;
    inset: 0;
    background-color: var(--bg-primary);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.preloader.fade-out {
    opacity: 0;
    transform: scale(1.02);
    pointer-events: none;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.preloader-logo-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-right: -16px;
    animation: logoTracking 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.preloader-logo-icon {
    height: 48px;
    width: auto;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.15));
}

.preloader-logo-text {
    color: var(--white);
    font-family: var(--font-title);
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 16px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

.preloader-line-wrap {
    width: 120px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
    border-radius: 99px;
    position: relative;
}

.preloader-line {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, transparent, var(--white), transparent);
    transform: translateX(-100%);
    animation: lineLoad 1.8s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

@keyframes logoTracking {
    0% {
        letter-spacing: 4px;
        margin-right: -4px;
        opacity: 0;
        filter: blur(4px);
    }
    50% {
        opacity: 1;
        filter: blur(0px);
    }
    100% {
        letter-spacing: 16px;
        margin-right: -16px;
        opacity: 1;
        filter: blur(0px);
    }
}

@keyframes lineLoad {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Coordinated Entrance */
body.loaded .hero-title {
    animation: titleIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}
body.loaded .hero-subtitle {
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.12s both;
}
body.loaded .hero-cta-wrap {
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.24s both;
}
body.loaded .hero-screenshot {
    animation: screenshotIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}
body.loaded .features-ticker {
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

