:root {
    --primary: #22c55e;
    /* Vibrant Green from app */
    --primary-glow: rgba(34, 197, 94, 0.4);
    --secondary: #facc15;
    /* Warm Yellow from app */
    --dark-bg: #0a0e14;
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-border: rgba(255, 255, 255, 0.1);
    --text-main: #e0e6ed;
    --text-muted: #94a3b8;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, var(--primary) 0%, #16a34a 100%);
    --accent-gradient: linear-gradient(135deg, var(--secondary) 0%, #eab308 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.align-center {
    text-align: center;
}

/* Background Decorations */
.background-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    filter: blur(80px);
}

.blob {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    opacity: 0.15;
}

.blob-1 {
    background: var(--primary);
    top: -100px;
    right: -100px;
}

.blob-2 {
    background: var(--secondary);
    bottom: -100px;
    left: -100px;
}

.blob-3 {
    background: #7c3aed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Navbar */
nav {
    height: 80px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 14, 20, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--card-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 48px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Buttons */
.btn {
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
}

.btn-primary {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 10px 20px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px var(--primary-glow);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--card-border);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(0, 242, 254, 0.05);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 242, 254, 0.15);
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
}

h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 700;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

/* Countdown */
.beta-countdown {
    display: flex;
    gap: 30px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
}

.countdown-item span {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
}

.countdown-item label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* App Mockup Rendering */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    border-radius: 24px;
}

.mockup-card {
    width: 300px;
    height: 600px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    border: 8px solid #1a1a1a;
    background: #000;
}

.app-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.app-interface {
    background: #000;
    width: 100%;
    height: 100%;
    border-radius: 18px;
    overflow: hidden;
    padding: 20px;
    border: 1px solid #333;
}

.interface-header {
    display: flex;
    gap: 6px;
    margin-bottom: 30px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.red {
    background: #ff5f56;
}

.yellow {
    background: #ffbd2e;
}

.green {
    background: #27c93f;
}

.notification-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    padding: 12px;
    border-radius: 12px;
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    opacity: 0;
}

.icon-circle {
    width: 32px;
    height: 32px;
    background: rgba(0, 242, 254, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.text strong {
    display: block;
    font-size: 0.85rem;
}

.text span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Sections */
.beta-section {
    padding: 100px 0;
}

.signup-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px;
    text-align: center;
}

.signup-card h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.signup-card p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.form-group {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

input[type="email"] {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    padding: 15px 25px;
    border-radius: 50px;
    color: var(--white);
    outline: none;
    transition: border-color 0.3s;
}

input[type="email"]:focus {
    border-color: var(--primary);
}

.form-footer {
    font-size: 0.85rem;
    margin-top: 20px !important;
}

.hidden {
    display: none;
}

.download-section {
    padding: 100px 0 150px;
}

.download-section h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.store-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.store-btn img {
    height: 50px;
    transition: transform 0.3s;
}

.store-btn:hover img {
    transform: scale(1.05);
}

/* Footer */
footer {
    padding: 60px 0;
    border-top: 1px solid var(--card-border);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-container p {
    color: var(--text-muted);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-up {
    animation: fadeInUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.4s;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-actions,
    .beta-countdown {
        justify-content: center;
    }

    h1 {
        font-size: 3rem;
    }

    .hero-visual {
        margin-top: 40px;
    }

    .mockup-card {
        transform: none;
    }
}

@media (max-width: 600px) {
    .hero-actions {
        flex-direction: column;
    }

    .form-group {
        flex-direction: column;
    }

    .nav-links a:not(.btn) {
        display: none;
    }
}