:root {
    --bg-primary: #1a1a2c;
    --bg-secondary: #141421;
    --bg-card: #222235;
    --bg-card-hover: #2a2a40;
    --text-primary: #ffffff;
    --text-secondary: #b0b0c8;
    --text-muted: #7878a0;
    --gradient-main: linear-gradient(90deg, #FB8466 0%, #BD5BD4 33%, #7473FA 66%, #53B2FA 100%);
    --gradient-reverse: linear-gradient(270deg, #FB8466 0%, #BD5BD4 33%, #7473FA 66%, #53B2FA 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.m-container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.m-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 44, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.m-nav {
    max-width: 1160px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.m-logo img {
    height: 34px;
}

.m-menu {
    display: flex;
    list-style: none;
    gap: 36px;
}

.m-menu a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: color 0.2s;
}

.m-menu a:hover {
    color: var(--text-primary);
}

.m-nav-btns {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Buttons */
.m-btn-gradient {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    background: var(--gradient-main);
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.m-btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(189, 91, 212, 0.35);
}

.m-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 20px;
    background: transparent;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.2s;
}

.m-btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.m-btn-lg {
    padding: 14px 28px;
    font-size: 1rem;
    border-radius: 12px;
}

.m-btn-white {
    background: var(--text-primary);
    color: var(--bg-primary);
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.m-btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.m-link-white {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    transition: color 0.2s;
}

.m-link-white:hover {
    color: var(--text-primary);
}

/* Hero */
.m-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.m-hero-bg {
    position: absolute;
    top: 0;
    right: -200px;
    width: 700px;
    height: 700px;
    background: var(--gradient-main);
    filter: blur(150px);
    opacity: 0.15;
    border-radius: 50%;
}

.m-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.m-hero-text {
    position: relative;
    z-index: 2;
}

.m-pill {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(189, 91, 212, 0.15);
    border: 1px solid rgba(189, 91, 212, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #BD5BD4;
    margin-bottom: 24px;
}

.m-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.m-text-gradient {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.m-hero-text > p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 480px;
    margin-bottom: 32px;
}

.m-hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.m-hero-stats {
    display: flex;
    gap: 40px;
}

.m-mini-stat {
    display: flex;
    flex-direction: column;
}

.m-mini-stat strong {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.m-mini-stat span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.m-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.m-hero-card {
    position: relative;
    width: 300px;
    height: 300px;
    background: var(--bg-card);
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.m-card-glow {
    position: absolute;
    inset: -2px;
    background: var(--gradient-main);
    border-radius: 34px;
    z-index: -1;
    opacity: 0.5;
    filter: blur(20px);
}

.m-hero-card img {
    width: 55%;
}

/* Section Styles */
.m-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.m-section-top {
    margin-bottom: 50px;
}

.m-section-top.m-center {
    text-align: center;
}

.m-section-top h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
}

/* Features */
.m-features {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.m-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.m-feature-item {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 32px 28px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s, border-color 0.3s;
}

.m-feature-item:hover {
    transform: translateY(-6px);
    border-color: rgba(189, 91, 212, 0.3);
}

.m-feature-icon {
    width: 52px;
    height: 52px;
    background: var(--gradient-main);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.m-feature-icon svg {
    width: 26px;
    height: 26px;
    color: white;
}

.m-feature-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.m-feature-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Steps */
.m-steps {
    padding: 100px 0;
}

.m-steps-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.m-steps-info h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.m-steps-info p {
    color: var(--text-secondary);
    margin-bottom: 28px;
    max-width: 400px;
}

.m-steps-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.m-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 28px;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: border-color 0.3s;
}

.m-step:hover {
    border-color: rgba(116, 115, 250, 0.4);
}

.m-step-num {
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.m-step-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.m-step-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Benefits */
.m-benefits {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.m-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.m-benefit {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s;
}

.m-benefit:hover {
    transform: translateY(-4px);
}

.m-benefit h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.m-benefit p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* CTA */
.m-cta {
    padding: 80px 0;
}

.m-cta-box {
    background: var(--gradient-main);
    border-radius: 28px;
    padding: 64px 48px;
    text-align: center;
}

.m-cta-box h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 12px;
}

.m-cta-box p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 32px;
}

.m-cta-btns {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

/* Footer */
.m-footer {
    background: var(--bg-secondary);
    padding: 64px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.m-footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.m-footer-brand img {
    height: 32px;
    margin-bottom: 14px;
}

.m-footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    max-width: 260px;
}

.m-footer-col h5 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.m-footer-col a {
    display: block;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 10px;
    transition: color 0.2s;
}

.m-footer-col a:hover {
    color: var(--text-primary);
}

.m-footer-bar {
    padding: 24px 0;
    text-align: center;
}

.m-footer-bar p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .m-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }

    .m-hero-text > p {
        margin: 0 auto 32px;
    }

    .m-hero-cta {
        justify-content: center;
    }

    .m-hero-stats {
        justify-content: center;
    }

    .m-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .m-steps-layout {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .m-steps-info p {
        margin: 0 auto 28px;
    }

    .m-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .m-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 768px) {
    .m-menu {
        display: none;
    }

    .m-hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .m-hero-card {
        width: 240px;
        height: 240px;
    }

    .m-features-grid,
    .m-benefits-grid {
        grid-template-columns: 1fr;
    }

    .m-cta-box {
        padding: 48px 28px;
    }

    .m-features,
    .m-steps,
    .m-benefits {
        padding: 60px 0;
    }

    .m-footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .m-nav-btns .m-btn-outline {
        display: none;
    }

    .m-hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .m-hero-cta a {
        width: 100%;
    }

    .m-hero-stats {
        flex-direction: column;
        gap: 20px;
    }
}
