:root {
    --mc-bg: #f5f7fb;
    --mc-surface: #ffffff;
    --mc-surface-soft: #eef4ff;
    --mc-text: #111827;
    --mc-muted: #6b7280;
    --mc-primary: #2563eb;
    --mc-primary-dark: #1d4ed8;
    --mc-secondary: #0f172a;
    --mc-border: #e5e7eb;
    --mc-green: #16a34a;
    --mc-orange: #f97316;
    --mc-radius-xl: 28px;
    --mc-radius-lg: 20px;
    --mc-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--mc-text);
    background: var(--mc-bg);
}

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

.mc-landing-container {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
}

.mc-landing-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.8);
}

.mc-header-inner {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.mc-brand {
    display: inline-flex;
    align-items: center;
}

.mc-brand-logo {
    height: 42px;
    width: auto;
    display: block;
}

.mc-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    color: var(--mc-muted);
    font-size: 14px;
    font-weight: 600;
}

.mc-nav a:hover {
    color: var(--mc-primary);
}

.mc-nav-cta {
    color: #ffffff !important;
    background: var(--mc-primary);
    padding: 11px 16px;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.24);
}

.mc-hero {
    padding: 82px 0 72px;
    background:
        radial-gradient(circle at 12% 18%, rgba(37, 99, 235, 0.18), transparent 32%),
        radial-gradient(circle at 88% 4%, rgba(14, 165, 233, 0.18), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f5f7fb 100%);
}

.mc-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 46px;
    align-items: center;
}

.mc-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 13px;
    border-radius: 999px;
    background: #eaf1ff;
    color: var(--mc-primary);
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 20px;
}

.mc-hero h1 {
    font-size: clamp(40px, 6vw, 68px);
    line-height: 0.98;
    letter-spacing: -0.055em;
    margin: 0;
    color: #0f172a;
}

.mc-hero-text {
    margin: 24px 0 0;
    max-width: 620px;
    color: var(--mc-muted);
    font-size: 19px;
    line-height: 1.7;
}

.mc-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.mc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 800;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.mc-btn:hover {
    transform: translateY(-1px);
}

.mc-btn-primary {
    color: #ffffff;
    background: var(--mc-primary);
    box-shadow: 0 18px 34px rgba(37, 99, 235, 0.26);
}

.mc-btn-primary:hover {
    background: var(--mc-primary-dark);
}

.mc-btn-secondary {
    color: #0f172a;
    background: #ffffff;
    border: 1px solid var(--mc-border);
}

.mc-hero-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.mc-hero-notes span {
    color: #334155;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--mc-border);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 700;
}

.mc-hero-card {
    background: linear-gradient(135deg, #0f172a, #1d4ed8);
    border-radius: 36px;
    padding: 22px;
    box-shadow: var(--mc-shadow);
}

.mc-dashboard-preview {
    background: rgba(255, 255, 255, 0.96);
    border-radius: 28px;
    padding: 22px;
}

.mc-preview-top {
    display: flex;
    gap: 7px;
    margin-bottom: 24px;
}

.mc-preview-top span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #d1d5db;
}

.mc-preview-title {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.mc-preview-title small {
    display: block;
    color: var(--mc-muted);
    font-size: 13px;
    margin-bottom: 5px;
}

.mc-preview-title strong {
    display: block;
    font-size: 24px;
    color: #111827;
}

.mc-status {
    color: #15803d;
    background: #dcfce7;
    border-radius: 999px;
    padding: 7px 10px;
    font-size: 12px;
    font-weight: 900;
}

.mc-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.mc-metrics div {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 15px 12px;
}

.mc-metrics small {
    display: block;
    color: var(--mc-muted);
    font-size: 12px;
    margin-bottom: 6px;
}

.mc-metrics strong {
    font-size: 25px;
    color: #0f172a;
}

.mc-preview-list {
    margin-top: 18px;
    display: grid;
    gap: 10px;
}

.mc-preview-list div {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
}

.mc-preview-list p {
    margin: 0;
    color: #374151;
    font-size: 14px;
    font-weight: 700;
}

.mc-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    flex: 0 0 auto;
}

.mc-dot.green {
    background: var(--mc-green);
}

.mc-dot.blue {
    background: var(--mc-primary);
}

.mc-dot.orange {
    background: var(--mc-orange);
}

.mc-section {
    padding: 86px 0;
}

.mc-section-soft {
    background: #ffffff;
}

.mc-section-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.mc-section-heading span,
.mc-section-kicker {
    display: inline-block;
    color: var(--mc-primary);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.mc-section-heading h2,
.mc-feature-content h2,
.mc-portal-content h2,
.mc-dark-grid h2,
.mc-contact-card h2 {
    margin: 0;
    color: #0f172a;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.mc-section-heading p,
.mc-feature-content p,
.mc-portal-content p,
.mc-dark-grid p,
.mc-contact-card p {
    color: var(--mc-muted);
    font-size: 17px;
    line-height: 1.7;
    margin: 18px 0 0;
}

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

.mc-card {
    background: var(--mc-surface);
    border: 1px solid var(--mc-border);
    border-radius: var(--mc-radius-lg);
    padding: 24px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.mc-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: #eef4ff;
    margin-bottom: 18px;
    font-size: 24px;
}

.mc-card h3 {
    margin: 0 0 10px;
    color: #111827;
    font-size: 19px;
}

.mc-card p {
    margin: 0;
    color: var(--mc-muted);
    font-size: 15px;
    line-height: 1.6;
}

.mc-feature-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 42px;
    align-items: center;
}

.mc-feature-list {
    display: grid;
    gap: 14px;
    margin-top: 26px;
}

.mc-feature-list div {
    padding: 16px;
    border: 1px solid var(--mc-border);
    border-radius: 18px;
    background: #f8fafc;
}

.mc-feature-list strong {
    display: block;
    color: #111827;
    margin-bottom: 5px;
}

.mc-feature-list span {
    color: var(--mc-muted);
    line-height: 1.5;
}

.mc-feature-panel {
    background: #0f172a;
    color: #ffffff;
    border-radius: 30px;
    padding: 20px;
    box-shadow: var(--mc-shadow);
}

.mc-panel-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 12px;
}

.mc-panel-row:last-child {
    margin-bottom: 0;
}

.mc-panel-row span {
    color: #dbeafe;
}

.mc-panel-row strong {
    color: #ffffff;
}

.mc-portal-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 50px;
    align-items: center;
}

.mc-phone-card {
    display: flex;
    justify-content: center;
}

.mc-phone {
    width: 285px;
    min-height: 520px;
    background: #111827;
    border-radius: 38px;
    padding: 14px;
    box-shadow: var(--mc-shadow);
}

.mc-phone-header {
    width: 90px;
    height: 6px;
    border-radius: 999px;
    background: #374151;
    margin: 8px auto 18px;
}

.mc-phone-content {
    min-height: 460px;
    border-radius: 28px;
    background: #ffffff;
    padding: 22px;
}

.mc-phone-content h4 {
    margin: 0 0 22px;
    font-size: 22px;
    color: #0f172a;
}

.mc-phone-item {
    padding: 15px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    margin-bottom: 12px;
}

.mc-phone-item span {
    display: block;
    color: var(--mc-muted);
    font-size: 12px;
    margin-bottom: 5px;
}

.mc-phone-item strong {
    color: #111827;
}

.mc-phone-button {
    margin-top: 22px;
    background: var(--mc-primary);
    color: #ffffff;
    border-radius: 999px;
    padding: 13px;
    text-align: center;
    font-weight: 900;
}

.mc-check-list {
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 13px;
}

.mc-check-list li {
    position: relative;
    padding-left: 32px;
    color: #374151;
    font-weight: 650;
    line-height: 1.5;
}

.mc-check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: -1px;
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #dcfce7;
    color: #15803d;
    font-size: 13px;
    font-weight: 900;
}

.mc-section-dark {
    background: #0f172a;
    color: #ffffff;
}

.mc-dark-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 44px;
    align-items: center;
}

.mc-dark-grid h2,
.mc-dark-grid p {
    color: #ffffff;
}

.mc-dark-grid p {
    color: #cbd5e1;
}

.mc-steps {
    display: grid;
    gap: 14px;
}

.mc-steps div {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
}

.mc-steps span {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--mc-primary);
    font-weight: 900;
}

.mc-steps p {
    margin: 0;
    color: #ffffff;
    font-weight: 800;
}

.mc-contact-section {
    background:
        radial-gradient(circle at 15% 20%, rgba(37, 99, 235, 0.12), transparent 28%),
        #f5f7fb;
}

.mc-contact-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    background: #ffffff;
    border: 1px solid var(--mc-border);
    border-radius: var(--mc-radius-xl);
    padding: 38px;
    box-shadow: var(--mc-shadow);
}

.mc-contact-card > div:first-child {
    max-width: 690px;
}

.mc-contact-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 230px;
}

.mc-footer {
    background: #ffffff;
    border-top: 1px solid var(--mc-border);
}

.mc-footer-inner {
    min-height: 74px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    color: var(--mc-muted);
    font-size: 14px;
    font-weight: 700;
}

@media (max-width: 960px) {
    .mc-nav {
        display: none;
    }

    .mc-hero-grid,
    .mc-feature-layout,
    .mc-portal-grid,
    .mc-dark-grid {
        grid-template-columns: 1fr;
    }

    .mc-hero {
        padding-top: 54px;
    }

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

    .mc-feature-panel {
        order: -1;
    }

    .mc-contact-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .mc-contact-actions {
        width: 100%;
    }

    .mc-contact-actions .mc-btn {
        width: 100%;
    }
}

@media (max-width: 620px) {
    .mc-header-inner {
        height: 66px;
    }

    .mc-brand-logo {
        height: 36px;
    }

    .mc-hero {
        padding: 44px 0 54px;
    }

    .mc-hero-actions {
        flex-direction: column;
    }

    .mc-btn {
        width: 100%;
    }

    .mc-hero-notes {
        display: grid;
    }

    .mc-benefits-grid {
        grid-template-columns: 1fr;
    }

    .mc-section {
        padding: 62px 0;
    }

    .mc-metrics {
        grid-template-columns: 1fr;
    }

    .mc-contact-card {
        padding: 26px;
    }

    .mc-footer-inner {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 20px 0;
    }
}