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

:root {
    --primary: #28BCE1;
    --primary-light: #5dd3f3;
    --background: #ffffff;
    --background-gradient: linear-gradient(180deg, #ffffff 0%, #e8f7fc 50%, #c5edf8 100%);
    --text-dark: #0a0a0a;
    --text-secondary: #6b7280;
    --text-muted: #9ca3af;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--background);
    color: var(--text-dark);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--background-gradient);
    z-index: -1;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 100;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.5px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

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

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    text-align: center;
}

.hero-content {
    max-width: 600px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(40, 188, 225, 0.1);
    border: 1px solid rgba(40, 188, 225, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 32px;
}

.laurel {
    font-size: 16px;
}

h1 {
    font-size: clamp(48px, 12vw, 80px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

h1 span {
    display: block;
}

.text-dark {
    color: var(--text-dark);
}

.text-primary {
    color: var(--primary);
}

.tagline {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.app-preview {
    position: relative;
    height: 120px;
    margin-bottom: 40px;
}

.checkmark-float {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0 10px 40px rgba(40, 188, 225, 0.3);
    animation: float 3s ease-in-out infinite;
}

.float-1 {
    left: 20%;
    top: 10px;
    animation-delay: 0s;
    transform: rotate(-15deg);
}

.float-2 {
    left: 50%;
    top: 30px;
    transform: translateX(-50%) rotate(10deg);
    animation-delay: 0.5s;
}

.float-3 {
    right: 20%;
    top: 5px;
    animation-delay: 1s;
    transform: rotate(20deg);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(var(--rotate, 0deg));
    }
    50% {
        transform: translateY(-15px) rotate(var(--rotate, 0deg));
    }
}

.float-1 { --rotate: -15deg; }
.float-2 { --rotate: 10deg; }
.float-3 { --rotate: 20deg; }

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--text-dark);
    color: white;
}

.btn-primary:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    padding: 40px 24px;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-links {
    margin-bottom: 16px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

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

.divider {
    margin: 0 12px;
    color: var(--text-muted);
}

.copyright {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.contact {
    font-size: 13px;
    color: var(--text-muted);
}

.contact a {
    color: var(--primary);
    text-decoration: none;
}

/* Legal Pages */
.legal-page {
    min-height: 100vh;
    padding: 120px 24px 80px;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.legal-content .last-updated {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-content ul {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--primary);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 12px 16px;
    }
    
    .logo {
        font-size: 18px;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .nav-links a {
        font-size: 14px;
    }
    
    .hero {
        padding: 100px 20px 60px;
    }
    
    .checkmark-float {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .legal-content {
        padding: 32px 24px;
    }
    
    .legal-content h1 {
        font-size: 28px;
    }
}
