@font-face {
    font-family: 'MMHeadlinePro';
    src: url('assets/fonts/MMHeadlinePro-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'NotoSans';
    src: url('assets/fonts/NotoSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'NotoSans';
    src: url('assets/fonts/NotoSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

:root {
    --mm-red: #DF0000;
    --mm-dark: #1F1F1F;
    --mm-light: #FFFFFF;
    --mm-gray: #F4F4F4;
    --font-primary: 'NotoSans', sans-serif;
    --font-headline: 'MMHeadlinePro', sans-serif;
    --container-width: 1200px;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
}

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

body {
    font-family: var(--font-primary);
    background-color: var(--mm-light);
    color: var(--mm-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
.hero-title,
.final-tagline {
    font-family: var(--font-headline);
}

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

/* Header */
.header {
    background-color: var(--mm-red);
    color: var(--mm-light);
    padding: var(--spacing-sm) 0;
    display: flex;
    align-items: center;
}

.logo {
    height: 50px;
    /* Adjust height as needed */
    width: auto;
    display: block;
}

/* Hero */
.hero {
    background-color: var(--mm-gray);
    padding: 8rem 0 6rem;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: var(--spacing-md);
    color: var(--mm-dark);
    text-transform: uppercase;
}

.hero-title .highlight {
    color: var(--mm-red);
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 300;
    color: var(--mm-dark);
}

/* Intro */
.intro {
    padding: var(--spacing-lg) 0;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.lead-text {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

/* Features */
.features {
    padding: var(--spacing-lg) 0;
    background-color: var(--mm-dark);
    color: var(--mm-light);
    text-align: center;
}

.features h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-lg);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    padding: var(--spacing-md);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

/* Product Highlight */
.product-highlight {
    padding: var(--spacing-lg) 0;
    text-align: center;
    background: linear-gradient(to bottom, #fff, #ffe6e6);
}

.product-highlight h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: var(--spacing-sm);
}

.cta-wrapper {
    margin-top: var(--spacing-lg);
}

.micro-copy {
    margin-top: var(--spacing-sm);
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--mm-red);
    color: var(--mm-light);
    box-shadow: 0 4px 15px rgba(223, 0, 0, 0.3);
}

.btn-primary:hover {
    background-color: #b30000;
    transform: scale(1.05);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--mm-red);
    color: var(--mm-red);
    margin-top: var(--spacing-md);
}

.btn-secondary:hover {
    background-color: var(--mm-red);
    color: var(--mm-light);
}

/* Closing */
.closing {
    padding: var(--spacing-lg) 0;
    text-align: center;
    background: linear-gradient(to bottom, #fff, #ffe6e6);
}

.final-tagline {
    font-size: 4rem;
    font-weight: 900;
    color: var(--mm-red);
    margin-top: var(--spacing-lg);
    text-transform: uppercase;
    letter-spacing: -2px;
}

/* Footer */
.footer {
    padding: var(--spacing-md) 0;
    text-align: center;
    background-color: var(--mm-dark);
    color: #888;
    font-size: 0.9rem;
}

/* Helper Class */
.hidden {
    display: none;
}

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

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .features h2 {
        font-size: 2rem;
    }

    .final-tagline {
        font-size: 2.5rem;
    }

    .container {
        padding: 0 1.5rem;
    }
}