:root {
    --primary-violet: #8A2BE2;
    --primary-pink: #FF1493;
    --light-bg: #fdfafc;
    --text-dark: #1a0b2e;
    --text-muted: rgba(26, 11, 46, 0.7);
    --glass-bg: rgba(253, 250, 252, 0.7);
    --glass-border: rgba(138, 43, 226, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--light-bg);
    color: var(--text-dark);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* Background Glow Effects */
.background-glow {
    position: fixed;
    top: -20%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(255,20,147,0.15) 0%, rgba(253,250,252,0) 70%);
    z-index: -1;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.background-glow-secondary {
    position: fixed;
    bottom: -20%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(138,43,226,0.15) 0%, rgba(253,250,252,0) 70%);
    z-index: -1;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 0.8rem 0;
    z-index: 100;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 80px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(138, 43, 226, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: var(--primary-violet);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-button {
    background: var(--primary-violet);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    background: var(--primary-pink);
    box-shadow: 0 6px 20px rgba(255, 20, 147, 0.4);
    color: white;
}

.icon {
    width: 20px;
    height: 20px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.highlight {
    color: var(--primary-pink);
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.primary-cta {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    display: inline-flex;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    opacity: 0;
    transform: scale(0.95);
    animation: fadeScale 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.mockup-container {
    position: relative;
    z-index: 10;
}

.app-mockup {
    max-width: 100%;
    height: auto;
    width: 320px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 8px solid rgba(138, 43, 226, 0.05);
    transform: rotate(-5deg);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mockup-container:hover .app-mockup {
    transform: rotate(0deg) scale(1.05);
}

.mockup-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--primary-pink);
    filter: blur(60px);
    opacity: 0.15;
    z-index: -1;
    border-radius: inherit;
    transition: opacity 0.5s ease;
}

.mockup-container:hover .mockup-glow {
    opacity: 0.25;
}

/* Animations */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeScale {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-actions {
        display: flex;
        justify-content: center;
    }

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

    .app-mockup {
        transform: rotate(0deg);
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
}

/* Footer Styles */
.site-footer {
    background-color: var(--primary-violet);
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.site-footer a {
    color: white;
    text-decoration: underline;
    font-size: 0.9rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.site-footer a:hover {
    color: var(--primary-pink);
}

/* Content Page Layout */
.page-navbar {
    position: relative;
    background: rgba(253, 250, 252, 0.95);
    border-bottom: 1px solid var(--glass-border);
}

.page-content {
    min-height: 60vh;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--primary-violet);
    display: inline-block;
}

.page-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.page-text h2 {
    color: var(--primary-pink);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}
