:root {
    --bg-color: #08090d;
    --bg-secondary: #11131a;
    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
    --accent-1: #00f2fe;
    --accent-2: #4facfe;
    --accent-3: #8a2387;
    --accent-4: #e94057;
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .logo {
    font-family: 'Outfit', sans-serif;
}

/* Background effects */
.blob-bg {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(79,172,254,0.12) 0%, rgba(0,242,254,0) 70%);
    top: -150px;
    left: -200px;
    border-radius: 50%;
    z-index: -1;
    animation: float 15s ease-in-out infinite;
    filter: blur(40px);
}

.blob-bg-2 {
    background: radial-gradient(circle, rgba(233,64,87,0.08) 0%, rgba(138,35,135,0) 70%);
    top: 30%;
    right: -100px;
    left: auto;
    animation: float 20s ease-in-out infinite reverse;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0, 0) scale(1); }
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    background: linear-gradient(90deg, #ffffff, #a5b4fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.btn-primary-small {
    background: linear-gradient(135deg, var(--accent-2), var(--accent-1));
    color: white !important;
    padding: 0.6rem 1.4rem;
    border-radius: 8px;
    font-weight: 600 !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.4);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3rem 5% 8rem;
    min-height: calc(100vh - 120px);
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards 0.2s;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: rgba(79, 172, 254, 0.1);
    border: 1px solid rgba(79, 172, 254, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-2);
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent-2), var(--accent-1), #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-weight: 300;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 1.2rem;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2.2rem;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-2), var(--accent-1));
    color: white;
    box-shadow: 0 10px 20px rgba(79, 172, 254, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(79, 172, 254, 0.4);
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

/* Visual Mockup */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    animation: fadeInUp 0.8s forwards 0.4s;
    perspective: 1000px;
}

.glass-panel {
    background: rgba(17, 19, 26, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    width: 100%;
    max-width: 600px;
    height: 400px;
    display: flex;
    flex-direction: column;
    transform: rotateY(-8deg) rotateX(4deg);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-panel:hover {
    transform: rotateY(0deg) rotateX(0deg) translateY(-10px);
    box-shadow: 0 40px 80px rgba(79, 172, 254, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.panel-header {
    height: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    padding: 0 15px;
    gap: 8px;
    background: rgba(0,0,0,0.2);
    border-radius: 16px 16px 0 0;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.panel-body {
    flex: 1;
    padding: 20px;
}

.mockup-skeleton {
    display: flex;
    gap: 20px;
    height: 100%;
}

.sidebar-skel {
    width: 25%;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nav-item-skel {
    height: 24px;
    border-radius: 6px;
    background: rgba(255,255,255,0.03);
}

.nav-item-skel.active {
    background: rgba(79, 172, 254, 0.15);
    border-left: 3px solid var(--accent-2);
}

.content-skel {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.header-skel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.title-skel {
    height: 28px;
    width: 50%;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
}

.avatar-skel {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}

.text-skel {
    height: 12px;
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 4px;
}
.text-skel.short {
    width: 70%;
}

.cards-skel {
    display: flex;
    gap: 15px;
    margin-top: auto;
}

.card-skel {
    height: 120px;
    flex: 1;
    background: linear-gradient(180deg, rgba(79, 172, 254, 0.05) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(79, 172, 254, 0.1);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.card-skel::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    transform: translateX(-100%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    100% { transform: translateX(100%); }
}

/* Features */
.features-section {
    padding: 8rem 5%;
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, var(--bg-color) 0%, var(--bg-secondary) 100%);
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    background: linear-gradient(to right, #fff, #9ca3af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.feature-card {
    padding: 2.5rem;
    border-radius: 20px;
    transition: transform 0.4s ease, background 0.4s ease, border-color 0.4s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at top right, rgba(79, 172, 254, 0.1), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(79, 172, 254, 0.3);
}

.feature-card:hover::before {
    opacity: 1;
}

.icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(79,172,254,0.15), rgba(0,242,254,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.8rem;
    color: var(--accent-2);
    border: 1px solid rgba(79, 172, 254, 0.2);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.icon-wrapper svg {
    width: 26px;
    height: 26px;
}

.feature-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

/* Footer */
footer {
    padding: 4rem 5% 2rem;
    background: var(--bg-secondary);
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.footer-logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

footer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    width: 100%;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

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

/* New specific elements */
.email-input {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    color: var(--text-primary);
    font-size: 1.05rem;
    font-family: inherit;
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 300px;
    outline: none;
    transition: all 0.3s ease;
}

.email-input:focus {
    border-color: var(--accent-2);
    box-shadow: 0 0 0 3px rgba(79, 172, 254, 0.2);
}

.step-card {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-2), var(--accent-1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.8rem;
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    box-shadow: 0 10px 20px rgba(79, 172, 254, 0.3);
}

/* Responsive */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 2rem;
    }
    
    .hero-content {
        align-items: center;
        display: flex;
        flex-direction: column;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }

    .hero-visual {
        width: 100%;
        margin-top: 2rem;
    }

    .nav-links {
        display: none;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}
