:root {
    --primary: #ff00ff;
    --secondary: #00ffff;
    --accent: #bc13fe;
    --bg-dark: #050505;
    --text-light: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Blobs */
.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, #111, #000);
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: move 20s infinite alternate;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -100px;
    left: -100px;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: var(--secondary);
    bottom: -150px;
    right: -150px;
    animation-delay: -5s;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    top: 40%;
    left: 60%;
    animation-delay: -10s;
}

@keyframes move {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(100px, 100px) scale(1.2); }
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    position: absolute;
    width: 100%;
    z-index: 10;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--text-light);
}

.logo span {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary);
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    margin-left: 2rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s;
    opacity: 0.8;
}

.nav-links a:hover {
    color: var(--secondary);
    opacity: 1;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 10%;
    gap: 5%;
}

.hero-content {
    flex: 1;
}

.glitch-text {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
    color: #fff;
    position: relative;
    margin-bottom: 2rem;
}

.subtitle {
    font-size: 1.2rem;
    max-width: 500px;
    opacity: 0.7;
    margin-bottom: 3rem;
}

.cta-button, .btn-small {
    background: linear-gradient(45deg, var(--primary), var(--accent));
    text-decoration: none;
    display: inline-block;
    border: none;
    color: white;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 4px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button {
    padding: 1.2rem 2.5rem;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.4);
}

.btn-small {
    padding: 0.6rem 1.2rem;
    font-size: 0.7rem;
    margin-left: 2rem;
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
}

.cta-button:hover, .btn-small:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 40px rgba(255, 0, 255, 0.6);
}

.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
}

.floating-img {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Glass Section */
.glass-section {
    padding: 8rem 10%;
}

.content-wrapper {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 4rem;
}

h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
    background: linear-gradient(to right, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.vision-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 20px;
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
}

.vision-card:hover {
    background: rgba(255, 255, 255, 0.08);
}

.vision-card h3 {
    color: var(--secondary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Feature Section */
.feature-section {
    padding: 8rem 10%;
}

.feature-content {
    display: flex;
    align-items: center;
    gap: 10%;
}

.feature-text { flex: 1; }
.feature-visual { flex: 1; }

.feature-list {
    list-style: none;
    margin-top: 2rem;
}

.feature-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-list li span {
    color: var(--primary);
    font-size: 1.5rem;
}

.glass-frame {
    width: 100%;
    border-radius: 20px;
    border: 10px solid var(--glass-bg);
    box-shadow: 0 0 50px rgba(0,255,255,0.2);
}

/* Gallery Section */
.gallery-section {
    padding: 8rem 10%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    aspect-ratio: 9/16;
    overflow: hidden;
    border-radius: 15px;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Footer */
.footer {
    padding: 4rem;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    opacity: 0.8;
}

.footer p {
    opacity: 0.5;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.app-store-link {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--secondary);
    color: var(--secondary);
    text-decoration: none;
    border-radius: 30px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: background 0.3s, color 0.3s;
}

.app-store-link:hover {
    background: var(--secondary);
    color: var(--bg-dark);
    box-shadow: 0 0 20px var(--secondary);
}

/* Responsive */
@media (max-width: 968px) {
    .hero { flex-direction: column; text-align: center; padding-top: 15rem; }
    .glitch-text { font-size: 3rem; }
    .vision-grid { grid-template-columns: 1fr; }
    .feature-content { flex-direction: column-reverse; }
    .gallery-grid { grid-template-columns: 1fr; }
}
