/* 
   Apple-Style CSS for Desktophero - Premium Onepager
   Typography: Inter
   Theme: Midnight High-End Tech
*/

:root {
    /* Brand Colors */
    --bg-dark: #050a14; /* Deep premium black/blue */
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    
    /* Branding Accents based on Logo */
    --accent-cyan: #00E5FF;
    --accent-green: #00E676;
    
    /* UI Elements */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

body, html {
    width: 100%;
    height: 100%;
    font-family: var(--font-family);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* -------------------------------------
   Dynamic Background
---------------------------------------- */
.bg-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.6;
    animation: float 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.orb-1 {
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,229,255,0.4) 0%, transparent 70%);
    animation-delay: -5s;
}

.orb-2 {
    bottom: -15%;
    left: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0,230,118,0.3) 0%, transparent 70%);
}

.grid-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, black 0%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 0%, transparent 80%);
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 30px) scale(1.05); }
    100% { transform: translate(20px, -40px) scale(0.95); }
}

/* -------------------------------------
   Main Layout Container
---------------------------------------- */
.onepager-container {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 60px 40px 140px;
    text-align: center;
}

/* -------------------------------------
   Logo
---------------------------------------- */
.logo-wrapper {
    margin-bottom: 60px;
    z-index: 20;
}

.main-logo {
    width: 400px;
    max-width: 80vw;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(0, 229, 255, 0.2));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.main-logo:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 0 40px rgba(0, 229, 255, 0.4));
}

.hero-slogan {
    margin-top: 15px;
    font-size: 22px;
    font-weight: 500;
    color: var(--accent-cyan);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
}

/* -------------------------------------
   Typography & Content
---------------------------------------- */
.content-wrapper {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 100px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.main-headline {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.sub-headline {
    font-size: 20px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 48px;
    max-width: 600px;
}

/* -------------------------------------
   Buttons & CTA
---------------------------------------- */
.cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #000000;
    padding: 16px 36px;
    border-radius: 980px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
    background: #f0f0f0;
}

.btn-primary ion-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.btn-primary:hover ion-icon {
    transform: translateX(4px);
}

/* -------------------------------------
   Footer
---------------------------------------- */
.social-footer {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    text-align: center;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 400;
    opacity: 0.8;
}

.contact-info {
    margin-bottom: 8px;
    line-height: 1.8;
}

.contact-info strong {
    color: var(--text-primary);
    font-weight: 600;
}

.contact-info a {
    color: var(--accent-cyan);
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.separator {
    margin: 0 8px;
    opacity: 0.5;
}

.show-mobile {
    display: none;
}

.copyright {
    opacity: 0.6;
    font-size: 12px;
}

/* -------------------------------------
   Reveal Animations
---------------------------------------- */
.reveal-fast, .reveal-medium, .reveal-slow {
    opacity: 0;
    transform: translateY(30px);
}

.reveal-fast {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.2s;
}

.reveal-medium {
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.4s;
}

.reveal-slow {
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* -------------------------------------
   Responsive Design
---------------------------------------- */
@media (max-width: 768px) {
    body, html {
        overflow-y: auto; /* allow scroll on small devices if needed */
        height: auto;
        min-height: 100vh;
    }
    
    .onepager-container {
        height: auto;
        min-height: 100vh;
        padding: 60px 24px 100px;
        justify-content: center;
    }

    .main-logo {
        width: 300px;
        margin-bottom: 40px;
    }

    .main-headline {
        font-size: 42px;
    }

    .sub-headline {
        font-size: 16px;
    }
    .sub-headline br { 
        display: none; 
    }

    .hide-mobile {
        display: none;
    }

    .show-mobile {
        display: block;
        margin-top: 4px;
    }
    
    .glow-orb {
        filter: blur(80px);
    }
    
    .orb-1 {
        width: 400px;
        height: 400px;
    }
    
    .social-footer {
        position: relative;
        margin-top: 60px;
        bottom: 0;
    }
}
