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

:root {
    --bg-color: #0F172A;
    --bg-color-alt: #1E293B;
    --text-main: #FFFFFF;
    --text-muted: #94A3B8;
    --accent-blue: #3b82f6;
    --accent-amber: #f59e0b;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* TYPOGRAPHY */
h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.gradient-text {
    background: linear-gradient(135deg, #60A5FA, #3b82f6, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* UTILS */
.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 6%;
    position: relative;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    margin-left: 32px;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-blue);
}

/* HERO SECTION */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Glowing Orbs */
.blob {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.4;
    animation: float 10s infinite ease-in-out alternate;
}

.blob-1 {
    top: -100px;
    right: -100px;
    background-color: var(--accent-blue);
}

.blob-2 {
    bottom: 10%;
    left: -150px;
    background-color: #8B5CF6;
    animation-delay: -5s;
}

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

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
    margin-top: 50px;
}

/* CTAs */
.cta-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 16px 32px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.6);
}

/* MOCKUP SHOT */
.hero-image-wrapper {
    position: relative;
    max-width: 320px;
    margin: 60px auto 0;
    z-index: 10;
}

.hero-mockup {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.8);
    border: 8px solid #2a3548;
    transition: transform 0.2s ease-out;
}

/* FEATURES SECTION */
.features {
    padding: 100px 6%;
    position: relative;
    z-index: 10;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.feature-card {
    padding: 40px;
    text-align: center;
    transition: transform 0.3s, background 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--c);
    color: var(--c);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.feature-card p {
    font-size: 1rem;
}

/* GALLERY HORIZONTAL SCROLL */
.gallery {
    padding: 80px 0;
    overflow: hidden;
}

.carousel-container {
    width: 100%;
    overflow-x: auto;
    padding: 20px 6%;
    scrollbar-width: none; /* Firefox */
}
.carousel-container::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.carousel-track {
    display: flex;
    gap: 20px;
    width: max-content;
}

.carousel-track img {
    height: 500px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 4px solid rgba(255,255,255,0.1);
    transition: transform 0.3s;
}

.carousel-track img:hover {
    transform: scale(1.05);
}


/* FOOTER */
footer {
    padding: 40px 6%;
    text-align: center;
}

.footer-content {
    padding: 60px 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo img {
    width: 32px;
    border-radius: 8px;
}

.footer-links {
    margin: 24px 0;
}

.footer-links a {
    color: var(--accent-blue);
    text-decoration: none;
    margin: 0 16px;
    font-weight: 600;
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.5;
}

/* ANIMATIONS */
.fade-up-1 { opacity: 0; animation: fadeUp 1s ease 0.2s forwards; }
.fade-up-2 { opacity: 0; animation: fadeUp 1s ease 0.4s forwards; }
.fade-up-3 { opacity: 0; animation: fadeUp 1s ease 0.6s forwards; }
.fade-up-4 { opacity: 0; animation: fadeUp 1s ease 0.8s forwards; }

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

/* RESPONSIVE */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    p { font-size: 1rem; }
    
    .navbar { flex-direction: column; gap: 20px; }
    .nav-links a { margin: 0 12px; }
    
    .carousel-track img { height: 400px; }
}
