:root {
    --bg: #fafaf9;
    --fg: #0f172a;
    --muted: #64748b;
    --accent: #f43f5e;
    --accent-hover: #e11d48;
    --card: #ffffff;
    --border: #e2e8f0;
    --premium-gold: #fbbf24;
    --premium-silver: #94a3b8;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--fg);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Space Grotesk', sans-serif;
}

.gradient-text {
    background: linear-gradient(135deg, #0f172a 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Hero Background Layers */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, #f8fafc 0%, #ffe4e6 50%, #ffffff 100%);
    /* Tinted with accent light */
}

.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M321.39,56.44c58.41-5.19,152.31-22.31,231.18-32.21C656.6,9.66,756.2,2.77,838.2,5.56c91.8,3.11,153.6,25.61,211.4,47.61c43.8,16.61,95.1,36.61,148.2,47.61c60.5,12.61,108.7,12.21,126.2,8.21V120H0V27.44C51.5,33.86,151.9,40.77,250.4,48.29C278.5,50.81,300,53.61,321.39,56.44z" fill="%23ffffff"></path></svg>');
    background-size: cover;
    background-position: top;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    animation: float 20s infinite alternate;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(244, 63, 94, 0.15);
    top: -10%;
    right: -5%;
}

/* Tinted with accent */
.orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(6, 182, 212, 0.1);
    bottom: 10%;
    left: -10%;
    animation-delay: 5s;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(30px, 50px);
    }
}

/* Play Icon & Animations */
.play-icon::after {
    content: '';
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent #fff;
    margin-left: 4px;
}

@keyframes floatUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mockup-animate {
    animation: floatUp 1s ease-out;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-card:hover {
    transform: translateY(-8px);
}

.pricing-card.featured {
    border: 2px solid var(--accent);
    box-shadow: 0 25px 50px -12px rgba(244, 63, 94, 0.15);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    transition: all 0.3s ease;
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(244, 63, 94, 0.4);
}

.countdown-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

/* Mobile Menu Animation */
.mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.mobile-menu.open {
    max-height: 500px;
    /* Sufficient height for content */
    padding-top: 1rem;
    padding-bottom: 1rem;
}

@media (prefers-reduced-motion: reduce) {
    .mockup-animate {
        animation: none;
    }

    .reveal {
        transition: opacity 0.3s ease;
        transform: none;
    }

    * {
        animation-duration: 0.01ms !important;
    }
}