* {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
    background: #ffffff;
    overflow-x: hidden;
}

.mirrai-subheader {
    background: #f6f7fb;
    border-bottom: 1px solid rgba(95, 39, 205, 0.12);
    padding: 32px 0;
}

.subheader-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    align-items: center;
}

.subheader-eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    color: #5f27cd;
    margin-bottom: 8px;
}

.mirrai-subheader h2 {
    font-size: 2rem;
    color: #1e272e;
    margin-bottom: 10px;
}

.mirrai-subheader p {
    color: #5c6b77;
    line-height: 1.7;
}

.subheader-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}


.mirrai-hero {
    position: relative;
    background: linear-gradient(135deg, #5f27cd 0%, #341f97 50%, #0c2461 100%);
    color: white;
    padding: 120px 0 100px;
    text-align: center;
    overflow: hidden;
}

.mirrai-hero-eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
}

.mirrai-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.mirrai-hero .container {
    position: relative;
    z-index: 1;
}

.mirrai-hero h1 {
    font-size: 4.5rem;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #ffffff 0%, #a29bfe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out;
}

.mirrai-hero p {
    font-size: 1.35rem;
    max-width: 850px;
    margin: 0 auto 30px;
    line-height: 1.8;
    font-weight: 400;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.app-preview {
    padding: 90px 0;
    background: #2c2d31;
    color: #ffffff;
}

.app-preview h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -1px;
}

.app-preview p {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 760px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    max-width: 980px;
    margin: 0 auto;
    padding: 0 20px;
}

.preview-card {
    background: #1f2024;
    border-radius: 28px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.preview-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.45);
}

.preview-card img {
    width: 100%;
    max-width: 220px;
    height: auto;
    border-radius: 22px;
    display: block;
}

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

.how-it-works {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.how-it-works h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 70px;
    color: #1e272e;
    font-weight: 800;
    letter-spacing: -1px;
}

.steps-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.step {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
    opacity: 0;
    animation: slideIn 0.6s ease-out forwards;
}

.step:nth-child(1) { animation-delay: 0.1s; }
.step:nth-child(2) { animation-delay: 0.2s; }
.step:nth-child(3) { animation-delay: 0.3s; }
.step:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #5f27cd 0%, #341f97 100%);
    color: white;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    box-shadow: 0 20px 40px rgba(95, 39, 205, 0.3);
    transition: all 0.3s ease;
}

.step:hover .step-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 25px 50px rgba(95, 39, 205, 0.4);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #1e272e;
    font-weight: 700;
}

.step-content p {
    color: #57606f;
    line-height: 1.8;
    font-size: 1.15rem;
}

.shopping-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.shopping-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 30px;
    color: #1e272e;
    font-weight: 800;
    letter-spacing: -1px;
}

.shopping-section .intro {
    text-align: center;
    font-size: 1.25rem;
    color: #57606f;
    max-width: 850px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.shopping-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.shopping-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(95, 39, 205, 0.1);
}

.shopping-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(95, 39, 205, 0.2);
    border-color: rgba(95, 39, 205, 0.3);
}

.shopping-card h3 {
    color: #5f27cd;
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 700;
}

.shopping-card p {
    color: #57606f;
    line-height: 1.7;
    font-size: 1.05rem;
}

.social-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #5f27cd 0%, #341f97 50%, #0c2461 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.social-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.social-section .container {
    position: relative;
    z-index: 1;
}

.social-section h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -1px;
}

.social-section p {
    font-size: 1.3rem;
    margin-bottom: 50px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.social-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    background: white;
    color: #5f27cd;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.social-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
}

.social-button svg {
    width: 26px;
    height: 26px;
}

.about-mirrai {
    padding: 100px 0;
    background: white;
}

.about-mirrai .container {
    max-width: 950px;
    padding: 0 20px;
}

.about-mirrai h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 40px;
    color: #1e272e;
    font-weight: 800;
    letter-spacing: -1px;
}

.about-mirrai p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #57606f;
    margin-bottom: 25px;
    text-align: center;
}

.cta-section {
    background: linear-gradient(135deg, #1e272e 0%, #0c1419 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -1px;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 20px 50px;
    background: linear-gradient(135deg, #5f27cd 0%, #341f97 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 15px 35px rgba(95, 39, 205, 0.4);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(95, 39, 205, 0.5);
}

footer.mirrai-footer {
    background: #0a0a0a;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 35px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #a29bfe;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

.back-home {
    display: inline-block;
    margin: 20px 0;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-home:hover {
    color: #a29bfe;
    transform: translateX(-5px);
}

@media (max-width: 768px) {
    .subheader-actions {
        justify-content: flex-start;
    }
    .mirrai-hero h1 {
        font-size: 2.8rem;
    }

    .step {
        flex-direction: column !important;
        text-align: center;
    }

    .how-it-works h2,
    .shopping-section h2,
    .social-section h2,
    .about-mirrai h2 {
        font-size: 2.2rem;
    }
}
