:root {
    /* Cyberpunk Palette */
    --bg-color: #050510;
    /* Deep Violet Black */
    --bg-accent: #0f0518;
    /* Darker Violet */
    --text-primary: #ffffff;
    --text-secondary: #b8c1ec;

    /* Neon Accents */
    --neon-cyan: #00f3ff;
    --neon-purple: #bc13fe;
    --neon-orange: #ff9e00;
    --neon-pink: #ff0055;

    /* Glass / HUD */
    --glass-bg: rgba(15, 5, 24, 0.7);
    --glass-border: rgba(188, 19, 254, 0.3);
    --glass-highlight: rgba(0, 243, 255, 0.2);
    --glass-blur: 12px;

    /* Glows */
    --glow-cyan: 0 0 10px rgba(0, 243, 255, 0.5), 0 0 20px rgba(0, 243, 255, 0.3);
    --glow-purple: 0 0 10px rgba(188, 19, 254, 0.5), 0 0 20px rgba(188, 19, 254, 0.3);

    /* Spacing */
    --container-width: 1200px;
    --header-height: 80px;
}

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


body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Space Grotesk', 'Outfit', sans-serif;
    /* Tech font priority */
    overflow-x: hidden;
    line-height: 1.6;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(188, 19, 254, 0.08), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(0, 243, 255, 0.08), transparent 25%);
}

/* Background Canvas */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.8;
    mix-blend-mode: screen;
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    text-transform: uppercase;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    z-index: 100;
    background: rgba(5, 5, 16, 0.8);
    backdrop-filter: blur(var(--glass-blur));
    border-bottom: 1px solid rgba(0, 243, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    box-shadow: 0 0 15px var(--neon-purple);
    border: 1px solid var(--neon-cyan);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    text-shadow: 0 0 10px var(--neon-cyan);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: var(--header-height);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 20%, #050510 100%);
    pointer-events: none;
    z-index: -1;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
    z-index: 2;
}

.hero-title {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(188, 19, 254, 0.5), 0 0 40px rgba(0, 243, 255, 0.3);
}

.hero-title span {
    display: block;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* Cards (Apps & Videos) */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 6rem;
}

.card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);

    /* Corner Accents (Clip Path simulation via CSS) */
    clip-path: polygon(20px 0, 100% 0,
            100% calc(100% - 20px), calc(100% - 20px) 100%,
            0 100%, 0 20px);
}

.card::after {
    /* Border for clip-path workaround or aesthetic */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: inset 0 0 0 1px var(--glass-border);
    pointer-events: none;
    z-index: 10;
}

.card:hover {
    transform: translateY(-10px);
    background: rgba(15, 5, 24, 0.9);
    border-color: var(--neon-cyan);
    box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.8),
        var(--glow-cyan);
}

/* Holographic sheen */
.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.1), transparent);
    transform: skewX(-25deg);
    transition: 0.5s;
    pointer-events: none;
}

.card:hover::before {
    left: 150%;
    transition: 0.7s;
}

.app-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.8));
    transition: transform 0.3s ease;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.card:hover .app-icon {
    transform: scale(1.1);
    border-color: var(--neon-purple);
    box-shadow: 0 0 20px var(--neon-purple);
}

.card-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 0.05em;
}

.card-desc {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1rem;
}

/* Status Badges */
.badge {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: 'Space Grotesk', sans-serif;
}

.badge-coming-soon {
    background: rgba(255, 158, 0, 0.1);
    color: var(--neon-orange);
    border: 1px solid var(--neon-orange);
    box-shadow: 0 0 10px rgba(255, 158, 0, 0.2);
}

.btn-glow {
    padding: 0.8rem 2.5rem;
    border-radius: 4px;
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-cyan));
    /* Purple to Cyan */
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    font-family: 'Space Grotesk', sans-serif;
    transition: all 0.3s ease;

    /* Clip Corners */
    clip-path: polygon(10px 0, 100% 0,
            100% calc(100% - 10px), calc(100% - 10px) 100%,
            0 100%, 0 10px);
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.btn-glow:hover::after {
    opacity: 1;
}

.btn-glow:hover {
    box-shadow: 0 0 20px var(--neon-cyan);
    transform: translateY(-2px);
    color: #000;
}

.btn-outline {
    padding: 0.8rem 2.5rem;
    border-radius: 4px;
    border: 1px solid var(--neon-purple);
    background: transparent;
    color: var(--text-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-family: 'Space Grotesk', sans-serif;

    /* Clip Corners */
    clip-path: polygon(10px 0, 100% 0,
            100% calc(100% - 10px), calc(100% - 10px) 100%,
            0 100%, 0 10px);
}

.btn-outline:hover {
    background: rgba(188, 19, 254, 0.2);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(188, 19, 254, 0.4);
    transform: translateY(-2px);
    color: #fff;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1rem;
}

/* Video Wrapper */
.video-wrapper {
    width: 100%;
    border-radius: 8px;
    /* Slightly squarer */
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
}

.video-wrapper iframe {
    width: 100%;
    aspect-ratio: 16/9;
    display: block;
}

/* Footer */
.footer {
    text-align: center;
    padding: 3rem;
    color: var(--text-secondary);
    border-top: 1px solid var(--glass-border);
    margin-top: 4rem;
    background: linear-gradient(to top, #000, transparent);
}

/* Philosophy Section */
.philosophy {
    padding: 6rem 0;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.philosophy-item {
    padding: 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.philosophy-item:hover {
    background: rgba(188, 19, 254, 0.1);
    border-color: var(--neon-purple);
    transform: scale(1.05);
}

.philosophy-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

.philosophy-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--neon-purple);
}

.philosophy-item p {
    color: var(--text-secondary);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Responsive */
@media (max-width: 768px) {
    .header {
        padding: 0 1.5rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .grid {
        grid-template-columns: 1fr;
    }
}