/*(c) Haxter Corporation | All right reserved. */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: #ffffff;
    color: #0b1f3a;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
}

/* Sub Header */

.mwa-sub-header {
    width: 100%;
    background: linear-gradient(90deg, #ffffff 0%, #f3f0ff 38%, #826af7 100%);
    border-bottom: 1px solid rgba(130, 106, 247, 0.25);
    font-family: Arial, Helvetica, sans-serif;
}

.mwa-sub-header__container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 18px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
}

.mwa-sub-header__brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.mwa-sub-header__logo {
    height: 38px;
    width: auto;
    max-width: 280px;
    display: block;
    object-fit: contain;
}

.mwa-sub-header__nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 26px;
    flex-wrap: wrap;
}

.mwa-sub-header__nav a {
    display: inline-block;
    text-decoration: none;
    color: #ffffff;
    font-size: clamp(1.25rem, 1.2vw, 1.8rem);
    line-height: 1.1;
    font-weight: 600;
    white-space: nowrap;
    letter-spacing: -0.03em;
    transition: color 0.25s ease, transform 0.25s ease;
}

.mwa-sub-header__nav a:hover {
    color: #0b1f3a;
    transform: translateY(-2px);
}

/* Shared */

.mwa-hero__eyebrow,
.mwa-overview__eyebrow,
.mwa-capabilities__eyebrow,
.mwa-scope__eyebrow,
.mwa-bi__eyebrow,
.mwa-not-included__eyebrow,
.mwa-commercial-model__eyebrow,
.mwa-contact__eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    color: #826af7;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.mwa-overview h2,
.mwa-capabilities__header h2,
.mwa-scope h2,
.mwa-bi h2,
.mwa-not-included h2,
.mwa-commercial-model h2,
.mwa-contact h2 {
    font-size: 4.2rem;
    line-height: 1.08;
    font-weight: 650;
    letter-spacing: -0.06em;
    color: #0b1f3a;
    margin-bottom: 26px;
}

/* Hero */

.mwa-hero {
    width: 100%;
    min-height: 720px;
    padding: 110px 32px;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.86) 42%, rgba(31,65,234,0.20) 100%),
        radial-gradient(circle at top right, rgba(130,106,247,0.34), transparent 42%),
        linear-gradient(135deg, #ffffff 0%, #f3f0ff 45%, #eef3ff 100%);
    display: flex;
    align-items: center;
}

.mwa-hero__container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.mwa-hero__content {
    max-width: 900px;
}

.mwa-hero h1 {
    font-size: 7rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.08em;
    color: #0b1f3a;
    margin-bottom: 28px;
}

.mwa-hero p {
    font-size: 2.2rem;
    line-height: 1.55;
    color: #40516a;
    max-width: 880px;
}

.mwa-hero__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
}

.mwa-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 30px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 700;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.mwa-hero__button:hover {
    transform: translateY(-3px);
}

.mwa-hero__button--primary {
    background: #826af7;
    color: #ffffff;
    border: 1px solid #826af7;
}

.mwa-hero__button--primary:hover {
    background: #1f41ea;
    border-color: #1f41ea;
}

.mwa-hero__button--secondary {
    background: #ffffff;
    color: #0b1f3a;
    border: 1px solid #d8ddec;
}

.mwa-hero__button--secondary:hover {
    border-color: #826af7;
    color: #826af7;
}

/* Overview */

.mwa-overview {
    width: 100%;
    padding: 96px 32px;
    background: #ffffff;
}

.mwa-overview__container {
    max-width: 1080px;
    margin: 0 auto;
}

.mwa-overview p {
    font-size: 2rem;
    line-height: 1.6;
    color: #40516a;
    margin-bottom: 18px;
}

/* Capabilities */

.mwa-capabilities {
    width: 100%;
    padding: 104px 32px;
    background: #f8f9ff;
}

.mwa-capabilities__container {
    max-width: 1280px;
    margin: 0 auto;
}

.mwa-capabilities__header {
    max-width: 940px;
    margin-bottom: 58px;
}

.mwa-capabilities__header p {
    font-size: 2rem;
    line-height: 1.55;
    color: #40516a;
}

.mwa-capabilities__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.mwa-capabilities__card {
    min-height: 310px;
    padding: 32px;
    border: 1px solid #e5e8ef;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(11, 31, 58, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.mwa-capabilities__card:hover {
    transform: translateY(-6px);
    border-color: #826af7;
    box-shadow: 0 26px 70px rgba(11, 31, 58, 0.13);
}

.mwa-capabilities__card--featured {
    background: linear-gradient(180deg, #ffffff 0%, #f3f0ff 100%);
    border-color: #826af7;
}

.mwa-capabilities__code {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #f3f0ff;
    color: #826af7;
    font-size: 1.45rem;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.mwa-capabilities__card h3 {
    font-size: 2.45rem;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.045em;
    color: #0b1f3a;
    margin-bottom: 16px;
}

.mwa-capabilities__card p {
    font-size: 1.8rem;
    line-height: 1.5;
    color: #40516a;
}

/* Scope */

.mwa-scope {
    width: 100%;
    padding: 96px 32px;
    background: #ffffff;
}

.mwa-scope__container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 52px;
    align-items: center;
}

.mwa-scope__content p {
    font-size: 2rem;
    line-height: 1.6;
    color: #40516a;
    margin-bottom: 18px;
}

.mwa-scope__panel {
    padding: 34px;
    border-radius: 24px;
    border: 1px solid #826af7;
    background: linear-gradient(180deg, #ffffff 0%, #f3f0ff 100%);
    box-shadow: 0 18px 45px rgba(11, 31, 58, 0.08);
}

.mwa-scope__panel h3 {
    font-size: 2.6rem;
    line-height: 1.15;
    letter-spacing: -0.045em;
    color: #0b1f3a;
    margin-bottom: 24px;
}

.mwa-scope__panel ul {
    list-style: none;
}

.mwa-scope__panel li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 15px;
    font-size: 1.9rem;
    line-height: 1.45;
    color: #40516a;
}

.mwa-scope__panel li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #826af7;
}

/* Passive BI */

.mwa-bi {
    width: 100%;
    padding: 96px 32px;
    background: linear-gradient(135deg, #ffffff 0%, #f3f0ff 50%, #eef3ff 100%);
}

.mwa-bi__container {
    max-width: 1280px;
    margin: 0 auto;
}

.mwa-bi__content {
    max-width: 960px;
    margin-bottom: 50px;
}

.mwa-bi__content p {
    font-size: 2rem;
    line-height: 1.6;
    color: #40516a;
    margin-bottom: 18px;
}

.mwa-bi__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.mwa-bi__grid article {
    padding: 30px;
    border: 1px solid #e5e8ef;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.84);
}

.mwa-bi__grid h3 {
    font-size: 2.3rem;
    line-height: 1.15;
    letter-spacing: -0.04em;
    color: #0b1f3a;
    margin-bottom: 14px;
}

.mwa-bi__grid p {
    font-size: 1.75rem;
    line-height: 1.5;
    color: #40516a;
}

/* Not Included */

.mwa-not-included {
    width: 100%;
    padding: 96px 32px;
    background: #ffffff;
}

.mwa-not-included__container {
    max-width: 1280px;
    margin: 0 auto;
}

.mwa-not-included__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-top: 44px;
}

.mwa-not-included__grid div {
    padding: 26px;
    border: 1px solid #e5e8ef;
    border-radius: 18px;
    background: #f8f9ff;
    color: #40516a;
    font-size: 1.8rem;
    line-height: 1.45;
}

/* Commercial Model */

.mwa-commercial-model {
    width: 100%;
    padding: 96px 32px;
    background: #f8f9ff;
}

.mwa-commercial-model__container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 52px;
    align-items: center;
}

.mwa-commercial-model__content p {
    font-size: 2rem;
    line-height: 1.6;
    color: #40516a;
}

.mwa-commercial-model__card {
    padding: 34px;
    border-radius: 24px;
    border: 1px solid #826af7;
    background: linear-gradient(180deg, #ffffff 0%, #f3f0ff 100%);
    box-shadow: 0 18px 45px rgba(11, 31, 58, 0.08);
}

.mwa-commercial-model__card h3 {
    font-size: 2.8rem;
    line-height: 1.15;
    letter-spacing: -0.045em;
    color: #0b1f3a;
    margin-bottom: 16px;
}

.mwa-commercial-model__card p {
    font-size: 1.9rem;
    line-height: 1.5;
    color: #40516a;
}

/* Contact */

.mwa-contact {
    width: 100%;
    padding: 86px 32px;
    background: linear-gradient(135deg, #0b1f3a 0%, #1f41ea 52%, #826af7 100%);
    color: #ffffff;
}

.mwa-contact__container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.mwa-contact__content {
    max-width: 860px;
}

.mwa-contact__eyebrow {
    color: rgba(255, 255, 255, 0.78);
}

.mwa-contact h2 {
    color: #ffffff;
}

.mwa-contact p {
    font-size: 2rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82);
}

.mwa-contact__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 30px;
    border-radius: 999px;
    background: #ffffff;
    color: #0b1f3a;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 700;
    white-space: nowrap;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.mwa-contact__button:hover {
    transform: translateY(-3px);
    background: #f3f0ff;
    color: #826af7;
}

/* Responsive */

@media (max-width: 1100px) {
    .mwa-sub-header__container {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .mwa-sub-header__nav {
        width: 100%;
        justify-content: flex-start;
    }

    .mwa-capabilities__grid,
    .mwa-bi__grid,
    .mwa-not-included__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mwa-scope__container,
    .mwa-commercial-model__container {
        grid-template-columns: 1fr;
    }

    .mwa-contact__container {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .mwa-sub-header {
        background: linear-gradient(135deg, #ffffff 0%, #f3f0ff 48%, #826af7 100%);
    }

    .mwa-sub-header__container {
        padding: 20px 24px;
    }

    .mwa-sub-header__logo {
        height: auto;
        width: 100%;
        max-width: 240px;
    }

    .mwa-sub-header__nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .mwa-sub-header__nav a {
        width: 100%;
        padding: 12px 14px;
        border: 1px solid rgba(130, 106, 247, 0.22);
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.72);
        color: #10233f;
        font-size: 1.3rem;
    }

    .mwa-hero {
        min-height: auto;
        padding: 88px 24px;
    }

    .mwa-hero h1 {
        font-size: 4.8rem;
    }

    .mwa-hero p,
    .mwa-overview p,
    .mwa-capabilities__header p,
    .mwa-scope__content p,
    .mwa-bi__content p,
    .mwa-commercial-model__content p,
    .mwa-contact p {
        font-size: 2rem;
    }

    .mwa-overview,
    .mwa-capabilities,
    .mwa-scope,
    .mwa-bi,
    .mwa-not-included,
    .mwa-commercial-model {
        padding: 74px 24px;
    }

    .mwa-overview h2,
    .mwa-capabilities__header h2,
    .mwa-scope h2,
    .mwa-bi h2,
    .mwa-not-included h2,
    .mwa-commercial-model h2,
    .mwa-contact h2 {
        font-size: 3rem;
    }

    .mwa-capabilities__grid,
    .mwa-bi__grid,
    .mwa-not-included__grid {
        grid-template-columns: 1fr;
    }

    .mwa-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .mwa-hero__button,
    .mwa-contact__button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .mwa-sub-header__container {
        padding: 18px;
    }

    .mwa-sub-header__nav {
        grid-template-columns: 1fr;
    }

    .mwa-hero {
        padding: 72px 18px;
    }

    .mwa-hero h1 {
        font-size: 4rem;
    }

    .mwa-overview,
    .mwa-capabilities,
    .mwa-scope,
    .mwa-bi,
    .mwa-not-included,
    .mwa-commercial-model,
    .mwa-contact {
        padding: 58px 18px;
    }

    .mwa-capabilities__card,
    .mwa-scope__panel,
    .mwa-bi__grid article,
    .mwa-not-included__grid div,
    .mwa-commercial-model__card {
        padding: 26px;
    }

    .mwa-capabilities__card h3,
    .mwa-scope__panel h3,
    .mwa-bi__grid h3,
    .mwa-commercial-model__card h3 {
        font-size: 2.3rem;
    }
}