:root {
    --primary-red: hsl(358, 76%, 50%);
    --primary-red-hover: hsl(358, 76%, 45%);
    --bg-white: hsl(0, 0%, 98%);
    --text-dark: hsl(220, 15%, 15%);
    --text-muted: hsl(220, 10%, 45%);
    --glass-bg: hsla(0, 0%, 100%, 0.7);
    --glass-border: hsla(0, 0%, 100%, 0.4);
    --shadow-premium: 0 20px 40px -10px hsla(220, 15%, 15%, 0.1);
    --radius-lg: 24px;
    --radius-md: 16px;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Background Animations */
.background-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    filter: blur(80px);
    opacity: 0.5;
}

.blob {
    position: absolute;
    border-radius: 50%;
}

.blob-1 {
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, var(--primary-red) 0%, transparent 70%);
    top: -10%;
    right: -10%;
    animation: floating 15s infinite ease-in-out;
}

.blob-2 {
    width: 30vw;
    height: 30vw;
    background: radial-gradient(circle, hsl(210, 50%, 80%) 0%, transparent 70%);
    bottom: -5%;
    left: -5%;
    animation: floating 20s infinite ease-in-out reverse;
}

.blob-3 {
    width: 25vw;
    height: 25vw;
    background: radial-gradient(circle, hsl(0, 0%, 90%) 0%, transparent 70%);
    top: 40%;
    left: 20%;
    animation: floating 12s infinite ease-in-out;
}

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

/* Header */
header {
    padding: 2rem 5%;
    display: flex;
    justify-content: flex-start;
}

.logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* Main Content */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 5% 4rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.content-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 3.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
    text-align: center;
    max-width: 850px;
    width: 100%;
    margin-bottom: 4rem;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.subtitle {
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.info-text {
    max-width: 600px;
    margin: 0 auto 3rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

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

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--primary-red);
    color: white;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 10px 30px -10px hsla(358, 76%, 50%, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-red-hover);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px -10px hsla(358, 76%, 50%, 0.6);
}

.btn-primary svg {
    transition: transform 0.3s ease;
}

.btn-primary:hover svg {
    transform: translateX(5px);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    width: 100%;
}

.feature-item {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-8px);
    background: hsl(0, 0%, 100%);
    box-shadow: var(--shadow-premium);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.feature-item h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-item p {
    color: var(--text-muted);
}

/* Footer */
footer {
    padding: 3rem 5%;
    text-align: center;
    border-top: 1px solid hsla(0, 0%, 0%, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

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

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s ease-out forwards;
}

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

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

/* Responsive */
@media (max-width: 768px) {
    header {
        justify-content: center;
    }
    
    .content-card {
        padding: 2.5rem 1.5rem;
    }

    footer {
        flex-direction: column;
        gap: 1.5rem;
        padding-bottom: 4rem;
    }

    .footer-links {
        gap: 1rem;
    }
}
