@font-face {
    font-family: 'Mona-Sans';
    src:
        url('fonts/Mona-Sans.woff2') format('woff2-variations'),
        url('fonts/Mona-Sans.woff2') format('woff2');
    font-weight: 200 900;
    font-stretch: 75% 125%;
}

html {
    scroll-behavior: smooth;
}

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

body {
    font-family: 'Mona-Sans', sans-serif;
    background-color: #FFFFFF;
    color: #000000;
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 20px;
    background-color: #FFFFFF;
    align-items: center;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: bold;
}

.logo img {
    height: 30px;
}

.logo-link {
    text-decoration: none;
    color: inherit;
}

.logo span {
    display: none;
}

.btn-access {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #E94335;
    color: white;
    padding: 6px 12px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    font-size: 12px;
}

.btn-access:hover {
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-4px); }
    40%, 80% { transform: translateX(4px); }
}

.btn-access span {
    display: inline-block;
    white-space: nowrap;
}

.btn-access .plus-icon {
    position: relative;
    width: 10px;
    height: 10px;
    flex-shrink: 0;
}

.btn-access .plus-icon::before,
.btn-access .plus-icon::after {
    content: '';
    position: absolute;
    background-color: #FFFFFF;
    transition: transform 0.3s ease-out;
}

.btn-access .plus-icon::before {
    height: 100%;
    width: 2px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.btn-access .plus-icon::after {
    height: 2px;
    width: 100%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.hero {
    position: relative;
    scroll-margin-top: 80px;
    text-align: center;
    padding: 60px 20px;
    overflow: hidden;
}

.hero-background-images {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    height: 100%;
    display: flex;
    gap: 20px;
    justify-content: center;
    z-index: -1;
    filter: grayscale(50%) opacity(0.3);
}

.hero-grid-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 33.33%;
}

.hero-grid-column--center {
    justify-content: center;
}

.hero-background-images img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    animation: fadeInSlideUp 0.8s ease-out forwards;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 0 2px 15px rgba(0,0,0,0.2);
}

.hero-content p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 30px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.waitlist-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.waitlist-form input {
    padding: 15px;
    width: 300px;
    border-radius: 25px;
    border: 1px solid #CCCCCC;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.waitlist-form input:focus {
    outline: none;
    border-color: #E94335;
    box-shadow: 0 0 0 3px rgba(233, 67, 53, 0.2);
}

.waitlist-form button {
    padding: 15px 30px;
    border-radius: 25px;
    border: none;
    background-color: #000000;
    color: #FFFFFF;
    font-size: 16px;
    cursor: pointer;
}

.registration-status {
    font-size: 14px;
    color: #555555;
    text-align: center;
}

.unlock-icon {
    height: 16px;
    vertical-align: middle;
    margin-right: 8px;
}

.efficiency {
    text-align: center;
    padding: 60px 20px;
}

.efficiency h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.stat-item {
    width: 200px;
    padding: 40px 20px;
    border-radius: 8px;
    text-align: left;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.stat-item--black {
    background-color: #000000;
    color: #FFFFFF;
}
.stat-item--black:hover {
    background-color: transparent;
    color: #000000;
    border-color: #000000;
}

.stat-item--red {
    background-color: #E94335;
    color: #FFFFFF;
}
.stat-item--red:hover {
    background-color: transparent;
    color: #E94335;
    border-color: #E94335;
}

.stat-item--yellow {
    background-color: #F8B400;
    color: #000000;
}
.stat-item--yellow:hover {
    background-color: transparent;
    color: #F8B400;
    border-color: #F8B400;
}

.stat-item--white {
    border: 1px solid #CCCCCC;
    background-color: #FFFFFF;
    color: #000000;
}

.stat-item h3 {
    font-size: 48px;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 16px;
}

.work-smarter {
    text-align: center;
    padding: 60px 20px 0;
}

.work-smarter h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.work-smarter p {
    font-size: 18px;
    margin-bottom: 40px;
}

.demo-video {
    max-width: 80%;
    border-radius: 8px;
}

.testimonials {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 60px 20px;
    flex-wrap: wrap;
}

.testimonial-item {
    max-width: 300px;
    text-align: center;
}

.testimonial-item blockquote {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 10px;
    border: none;
}

.testimonial-item cite {
    font-weight: bold;
}

.benefits {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding: 60px 20px;
    background-color: #F9F9F9;
}

.benefits-content {
    max-width: 500px;
}

.benefits-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.benefits-content ul {
    list-style: none;
    margin-bottom: 30px;
}

.benefits-content ul li {
    font-size: 18px;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.benefits-content ul li::before {
    content: '✔';
    color: #E94335;
    position: absolute;
    left: 0;
}

.benefits-image img {
    max-width: 400px;
    border-radius: 8px;
    border: none;
    box-shadow: inset 0 0 0 2px #F9F9F9;
}

.benefits-image {
    display: block; /* Ensure it's visible by default */
}

.faq {
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
}

.faq-item {
    border-bottom: 1px solid #CCCCCC;
    padding: 20px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
}

.faq-icon {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: #E94335;
    transition: transform 0.3s ease-out;
}

.faq-icon::before {
    height: 100%;
    width: 3px;
    left: 50%;
    top: 0;
    transform: translateX(-50%) rotate(0deg);
}

.faq-icon::after {
    height: 3px;
    width: 100%;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
}

.faq-item.active .faq-icon::before {
    transform: translateX(-50%) rotate(45deg);
}

.faq-item.active .faq-icon::after {
    transform: translateY(-50%) rotate(-45deg);
}

.faq-answer {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

footer {
    background-color: #F9F9F9;
    padding: 40px 50px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 960px) {
    .stats-container {
        flex-direction: column;
        align-items: center;
    }

    .stat-item {
        width: 100%;
        max-width: 400px;
    }
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    /* Header & Nav */
    header {
        padding: 15px 20px;
        align-items: center;
    }

    .logo {
        font-size: 18px;
    }

    .logo img {
        height: 30px;
    }

    .logo span {
        display: none;
    }

    /* Hero Section */
    .hero {
        padding: 40px 20px;
        scroll-margin-top: 70px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-background-images {
        display: none;
    }

    .waitlist-form {
        flex-direction: column;
        width: 100%;
    }

    .waitlist-form input {
        width: 100%;
        text-align: center;
    }

    /* General Section & Font Sizing */
    .efficiency,
    .work-smarter,
    .testimonials,
    .benefits,
    .faq {
        padding: 40px 20px;
    }

    .efficiency h2,
    .work-smarter h2,
    .faq h2,
    .benefits-content h2 {
        font-size: 28px;
    }

    /* Benefits Section */
    .benefits {
        flex-direction: column;
        text-align: center;
    }

    .benefits-image {
        display: none; /* Hide benefits image on mobile */
    }

    /* Testimonials */
    .testimonials {
        flex-direction: column;
        align-items: center;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center; /* Center footer content */
    }

    /* --- Further Mobile Optimizations --- */

    /* Get Access Button */
    .btn-access {
        padding: 6px 12px;
        font-size: 12px;
    }

    .btn-access .plus-icon {
        width: 10px;
        height: 10px;
    }

    /* Benefits Image */
    .benefits-image img {
        max-width: 90%;
        margin: 0 auto;
    }

    /* Demo Video */
    .demo-video {
        max-width: 90%;
    }
} 