@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;800&family=Inter:wght@400;500&display=swap');

:root {
    --bg-white: #F5F5F7;
    --card-bg: rgba(255, 255, 255, 0.7);
    --accent-blue: #007AFF;
    --accent-gradient: linear-gradient(135deg, #007AFF 0%, #00C6FF 100%);
    --text-primary: #1D1D1F;
    --text-secondary: #86868B;
    --border-color: rgba(0, 0, 0, 0.1);
    --glass-blur: blur(20px);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-white);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Background Gradients */
body::before {
    content: '';
    position: fixed;
    top: -10%;
    right: -10%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(0, 122, 255, 0.15) 0%, transparent 70%);
    z-index: -1;
}

body::after {
    content: '';
    position: fixed;
    bottom: -10%;
    left: -10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(88, 86, 214, 0.1) 0%, transparent 70%);
    z-index: -1;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 0 60px;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.app-icon {
    width: 140px;
    height: 140px;
    border-radius: 32px;
    margin-bottom: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 20px rgba(0, 122, 255, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.hero h1 {
    font-size: 4rem;
    letter-spacing: -1px;
    margin-bottom: 20px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.5rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    font-weight: 500;
}

.button {
    display: inline-flex;
    align-items: center;
    background: var(--accent-gradient);
    color: white;
    padding: 16px 36px;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 20px rgba(0, 122, 255, 0.2);
}

.button:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 122, 255, 0.4);
}

.button i {
    margin-right: 10px;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.feature-card {
    background: var(--card-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 122, 255, 0.5);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--accent-blue);
    margin-bottom: 24px;
    display: block;
}

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

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

/* Info Section & Legal Pages */
.info-section,
.legal-content {
    background: var(--card-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    padding: 60px;
    border-radius: 32px;
    border: 1px solid var(--border-color);
    margin: 40px 0;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin: 40px 0 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.legal-content p,
.legal-content li {
    margin-bottom: 1.2em;
    color: var(--text-secondary);
}

.legal-content ul {
    padding-left: 20px;
    margin-bottom: 2em;
}

.info-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.links {
    list-style: none;
    margin-top: 40px;
    display: flex;
    gap: 30px;
}

.links a {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    transition: opacity 0.2s;
}

.links a i {
    margin-right: 8px;
}

.links a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Contact */
.contact-box {
    text-align: center;
    padding: 60px 0;
}

.email {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-top: 10px;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .info-section {
        padding: 30px;
    }

    .links {
        flex-direction: column;
        gap: 15px;
    }
}