:root {
    --bg-color: #FFF8E1;
    --card-bg: #FFFFFF;
    --primary-color: #D4AF37;
    --text-color: #333333;
    --text-muted: #666666;
    --border-radius: 12px;
    --font-family: 'Outfit', sans-serif;
    --container-width: 1200px;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
}

/* Reset & Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s;
}

a:hover {
    opacity: 0.8;
}

/* Header / Hero */
.hero {
    text-align: center;
    padding: 6rem 0 4rem;
    animation: fadeIn 1s ease-out;
}

.logo {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
    letter-spacing: -0.02em;
}

.tagline {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-weight: 300;
}

/* Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 1.5rem;
    background-color: #222;
    color: #fff;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Features */
.features {
    padding: var(--spacing-lg) 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.feature-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

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

/* Screenshots */
.screenshots {
    padding: var(--spacing-lg) 0;
    overflow: hidden;
}

.screenshot-gallery {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.screenshot-item {
    text-align: center;
    max-width: 340px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.screenshot-item:nth-child(1) {
    animation-delay: 0.2s;
}

.screenshot-item:nth-child(2) {
    animation-delay: 0.4s;
}

.screenshot-item:nth-child(3) {
    animation-delay: 0.6s;
}

.screenshot-item img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 4px solid #fff;
}

.screenshot-item:hover img {
    transform: translateY(-5px);
}

.caption {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
}

/* Trust */
.trust {
    text-align: center;
    padding: 3rem 0;
    color: var(--text-muted);
    font-size: 1rem;
    opacity: 0.8;
}

/* Footer */
footer {
    text-align: center;
    padding: 3rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 2rem;
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.separator {
    margin: 0 0.5rem;
    color: #ccc;
}

.copyright {
    color: #999;
    font-size: 0.8rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .logo {
        font-size: 2.5rem;
    }

    .hero {
        padding: 4rem 0 3rem;
    }

    .screenshot-gallery {
        gap: 3rem;
    }
}