:root {
    --mkt-accent: #60a5fa;
    --mkt-accent-strong: #3b82f6;
    --mkt-accent-glow: rgba(96, 165, 250, 0.18);
    --mkt-gold: #d4a24c;
    --mkt-gold-glow: rgba(212, 162, 76, 0.18);
    --mkt-ink: #0f172a;
    --mkt-copy: #334155;
    --mkt-copy-soft: #64748b;
    --mkt-line: rgba(148, 163, 184, 0.18);
    --mkt-panel: rgba(255, 255, 255, 0.72);
    --mkt-panel-strong: rgba(255, 255, 255, 0.84);
    --mkt-shadow: 0 28px 60px rgba(15, 23, 42, 0.10);
}

body.mkt-page {
    font-family: 'Inter', 'Roboto', sans-serif;
    color: var(--mkt-ink);
    background:
        radial-gradient(circle at top left, rgba(96, 165, 250, 0.10), transparent 28%),
        radial-gradient(circle at 85% 10%, rgba(212, 162, 76, 0.12), transparent 24%),
        linear-gradient(180deg, #f8fbff 0%, #edf4ff 42%, #f8fafc 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body.mkt-page::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.018) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 90%);
    pointer-events: none;
    z-index: -3;
}

.mkt-orb {
    position: fixed;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.34;
    pointer-events: none;
    z-index: -2;
}

.mkt-orb--one {
    top: -120px;
    left: -100px;
    background: rgba(96, 165, 250, 0.26);
}

.mkt-orb--two {
    right: -120px;
    top: 260px;
    background: rgba(212, 162, 76, 0.18);
}

.mkt-shell {
    width: min(1240px, calc(100% - 40px));
    margin: 0 auto;
    padding: 42px 0 90px;
}

.mkt-panel {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.68));
    border: 1px solid rgba(255,255,255,0.78);
    box-shadow: var(--mkt-shadow);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.mkt-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.56), transparent 34%),
        linear-gradient(180deg, transparent, rgba(96, 165, 250, 0.05));
    pointer-events: none;
}

.mkt-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 32px;
    padding: 42px;
    border-radius: 34px;
}

.mkt-hero-copy,
.mkt-hero-stack,
.mkt-cta-copy,
.mkt-cta-actions {
    position: relative;
    z-index: 1;
}

.mkt-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(96, 165, 250, 0.18);
    box-shadow: 0 14px 28px rgba(96, 165, 250, 0.12);
    color: var(--mkt-accent);
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.mkt-kicker--ghost {
    background: rgba(96, 165, 250, 0.08);
}

.mkt-title {
    margin: 20px 0 14px;
    max-width: 11ch;
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.2rem, 4.1vw, 4.35rem);
    line-height: 1.02;
    font-weight: 900;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.mkt-subtitle {
    margin: 0;
    max-width: 62ch;
    color: var(--mkt-copy);
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.18rem);
    line-height: 1.72;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.mkt-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.mkt-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.06);
    color: var(--mkt-ink);
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.mkt-chip i {
    color: var(--mkt-accent);
    font-size: 0.96rem;
}

.mkt-hero-actions,
.mkt-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.mkt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 18px;
    text-decoration: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.84rem;
    font-weight: 900;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.mkt-btn:hover {
    transform: translateY(-2px);
}

.mkt-btn--primary {
    background: linear-gradient(135deg, #111827, #1f2937);
    color: #fff;
    box-shadow: 0 20px 34px rgba(15, 23, 42, 0.18);
}

.mkt-btn--primary:hover {
    box-shadow: 0 24px 38px rgba(15, 23, 42, 0.22);
}

.mkt-btn--secondary {
    background: rgba(255,255,255,0.76);
    border: 1px solid rgba(96, 165, 250, 0.18);
    color: var(--mkt-ink);
    box-shadow: 0 18px 30px rgba(96, 165, 250, 0.10);
}

.mkt-btn--secondary i {
    color: var(--mkt-accent);
}

.mkt-hero-stack {
    display: grid;
    gap: 18px;
}

.mkt-preview-card,
.mkt-monopoly-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.70));
    border: 1px solid rgba(255,255,255,0.78);
    box-shadow: 0 26px 46px rgba(15, 23, 42, 0.10);
}

.mkt-preview-card {
    padding: 20px;
}

.mkt-preview-card::before,
.mkt-monopoly-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.48), transparent 40%);
    pointer-events: none;
}

.mkt-preview-top {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.mkt-preview-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(148, 163, 184, 0.44);
}

.mkt-preview-screen {
    position: relative;
    z-index: 1;
    min-height: 310px;
    border-radius: 24px;
    padding: 22px;
    background:
        linear-gradient(180deg, rgba(248, 250, 252, 0.96), rgba(226, 232, 240, 0.72)),
        radial-gradient(circle at top left, rgba(96, 165, 250, 0.12), transparent 38%);
    border: 1px solid rgba(148, 163, 184, 0.18);
}

.mkt-preview-badge {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(96, 165, 250, 0.12);
    color: var(--mkt-accent-strong);
    border: 1px solid rgba(96, 165, 250, 0.18);
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.mkt-preview-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 28px 0 30px;
}

.mkt-preview-node {
    width: 66px;
    height: 66px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(96, 165, 250, 0.16);
    box-shadow: 0 18px 30px rgba(96, 165, 250, 0.12);
    color: var(--mkt-accent-strong);
    font-size: 1.28rem;
}

.mkt-preview-line {
    flex: 1;
    max-width: 68px;
    height: 1px;
    background: linear-gradient(90deg, rgba(96, 165, 250, 0.16), rgba(96, 165, 250, 0.56), rgba(96, 165, 250, 0.16));
}

.mkt-preview-metrics {
    display: grid;
    gap: 12px;
}

.mkt-preview-metric {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.84);
    border: 1px solid rgba(148, 163, 184, 0.16);
}

.mkt-preview-metric strong {
    min-width: 48px;
    color: var(--mkt-gold);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.88rem;
    letter-spacing: 0.14em;
}

.mkt-preview-metric span {
    color: var(--mkt-copy);
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.mkt-monopoly-card {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 18px;
    padding: 24px;
}

.mkt-monopoly-icon {
    position: relative;
    z-index: 1;
    width: 78px;
    height: 78px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 162, 76, 0.12);
    border: 1px solid rgba(212, 162, 76, 0.20);
    color: var(--mkt-gold);
    font-size: 1.55rem;
    box-shadow: 0 18px 30px rgba(212, 162, 76, 0.16);
}

.mkt-monopoly-copy {
    position: relative;
    z-index: 1;
}

.mkt-monopoly-copy h2,
.mkt-cta-copy h2,
.mkt-step-card h3 {
    margin: 0;
    color: var(--mkt-ink);
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1rem, 1.55vw, 1.24rem);
    font-weight: 800;
    line-height: 1.28;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.mkt-monopoly-copy p,
.mkt-step-card p,
.mkt-cta-copy p {
    margin: 14px 0 0;
    color: var(--mkt-copy);
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.94rem;
    font-weight: 700;
    line-height: 1.72;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.mkt-steps-wrap {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 22px;
}

.mkt-step-card {
    padding: 30px 24px 26px;
    border-radius: 28px;
}

.mkt-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 58px;
    height: 34px;
    border-radius: 999px;
    margin-bottom: 16px;
    background: rgba(96, 165, 250, 0.10);
    border: 1px solid rgba(96, 165, 250, 0.18);
    color: var(--mkt-accent-strong);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.mkt-step-icon {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: rgba(255,255,255,0.90);
    border: 1px solid rgba(96, 165, 250, 0.18);
    box-shadow: 0 18px 30px rgba(96, 165, 250, 0.12);
    color: var(--mkt-accent-strong);
    font-size: 1.34rem;
}

.mkt-cta-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    margin-top: 22px;
    padding: 30px 34px;
    border-radius: 30px;
}

.mkt-cta-panel::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -90px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.16), transparent 70%);
    pointer-events: none;
}

@media (max-width: 1120px) {
    .mkt-hero {
        grid-template-columns: 1fr;
    }

    .mkt-title {
        max-width: none;
    }

    .mkt-steps-wrap {
        grid-template-columns: 1fr;
    }

    .mkt-cta-panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .mkt-shell {
        width: min(100% - 24px, 1240px);
        padding: 24px 0 72px;
    }

    .mkt-hero,
    .mkt-step-card,
    .mkt-cta-panel {
        padding-left: 18px;
        padding-right: 18px;
    }

    .mkt-hero {
        padding-top: 24px;
        padding-bottom: 24px;
        border-radius: 26px;
    }

    .mkt-preview-screen {
        min-height: auto;
        padding: 18px;
    }

    .mkt-preview-flow {
        gap: 10px;
    }

    .mkt-preview-line {
        max-width: 24px;
    }

    .mkt-preview-node {
        width: 56px;
        height: 56px;
        border-radius: 18px;
    }

    .mkt-chip-row,
    .mkt-hero-actions,
    .mkt-cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .mkt-btn {
        width: 100%;
    }

    .mkt-monopoly-card {
        grid-template-columns: 1fr;
    }

    .mkt-monopoly-icon {
        width: 64px;
        height: 64px;
        border-radius: 18px;
    }
}

/* ==========================================================================
   HOW TO MARKET EXECUTIVE WOW PASS
   Premium flagship marketing playbook / enterprise authority alignment
   ========================================================================== */

:root {
    --mkt-premium-shadow: 0 30px 70px rgba(15, 23, 42, 0.10), 0 10px 24px rgba(15, 23, 42, 0.05), inset 0 1px 0 rgba(255,255,255,0.92), inset 0 0 0 1px rgba(15, 23, 42, 0.04);
    --mkt-premium-shadow-hover: 0 38px 88px rgba(15, 23, 42, 0.14), 0 16px 34px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255,255,255,0.96), inset 0 0 0 1px rgba(15, 23, 42, 0.05);
    --mkt-copy-stronger: #334155;
    --mkt-focus-ring: 0 0 0 3px rgba(96, 165, 250, 0.22);
}

body.mkt-page {
    background:
        radial-gradient(circle at 50% -8%, rgba(96, 165, 250, 0.12), rgba(96, 165, 250, 0) 28%),
        radial-gradient(circle at 100% 100%, rgba(217, 119, 6, 0.08), rgba(217, 119, 6, 0) 24%),
        linear-gradient(180deg, #f8fbfd 0%, #eef4f7 44%, #ffffff 100%) !important;
    line-height: 1.65;
}

body.mkt-page::before {
    opacity: 0.65;
}

.mkt-orb {
    opacity: 0.26;
    filter: blur(78px);
}

.mkt-shell {
    width: min(1280px, calc(100% - 40px));
    padding: 42px 0 92px;
}

.mkt-panel {
    background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,255,255,0.74)) !important;
    border: 1px solid rgba(255,255,255,0.94) !important;
    box-shadow: var(--mkt-premium-shadow) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.mkt-panel::before {
    background:
        radial-gradient(circle at top right, rgba(96, 165, 250, 0.12), transparent 34%),
        linear-gradient(180deg, rgba(255,255,255,0.26), rgba(255,255,255,0.04)) !important;
}

.mkt-hero {
    gap: 28px;
    padding: 48px 48px 46px;
    border-radius: 38px;
    background:
        radial-gradient(circle at 50% 0%, rgba(96, 165, 250, 0.16), rgba(96, 165, 250, 0) 42%),
        linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.80)) !important;
    box-shadow: var(--mkt-premium-shadow-hover) !important;
}

.mkt-hero::after {
    content: "";
    position: absolute;
    left: 34px;
    right: 34px;
    top: 0;
    height: 2px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, rgba(255,255,255,0), rgba(96,165,250,0.40), rgba(255,255,255,0));
    pointer-events: none;
}

.mkt-kicker,
.mkt-chip,
.mkt-btn,
.mkt-preview-badge,
.mkt-preview-metric span,
.mkt-step-number {
    letter-spacing: 0.12em !important;
}

.mkt-kicker {
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.88));
    border-color: rgba(96, 165, 250, 0.22);
    box-shadow: 0 14px 30px rgba(96, 165, 250, 0.12);
}

.mkt-kicker--ghost {
    background: linear-gradient(180deg, rgba(239,246,255,0.98), rgba(219,234,254,0.86));
}

.mkt-title {
    max-width: 11ch;
    font-size: clamp(2.45rem, 4.2vw, 4.5rem);
    line-height: 1.02;
    text-shadow: 0 1px 0 rgba(255,255,255,0.92);
}

.mkt-subtitle,
.mkt-monopoly-copy p,
.mkt-step-card p,
.mkt-cta-copy p,
.mkt-preview-metric span {
    font-family: 'Inter', 'Roboto', sans-serif;
    text-transform: none !important;
    letter-spacing: 0.01em !important;
    color: var(--mkt-copy) !important;
}

.mkt-subtitle,
.mkt-monopoly-copy p,
.mkt-step-card p,
.mkt-cta-copy p {
    font-size: 0.98rem;
    font-weight: 500;
    line-height: 1.72;
}

.mkt-subtitle {
    max-width: 760px;
    color: var(--mkt-copy-stronger) !important;
}

.mkt-chip-row {
    gap: 14px;
    margin-top: 30px;
}

.mkt-chip {
    min-height: 44px;
    padding: 0 18px;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,250,252,0.90));
    border-color: rgba(226, 232, 240, 0.96);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.04);
}

.mkt-hero-actions,
.mkt-cta-actions {
    gap: 14px;
    margin-top: 30px;
}

.mkt-btn {
    min-height: 54px;
    padding: 0 22px;
    border-radius: 18px;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.12);
}

.mkt-btn--primary {
    background: linear-gradient(135deg, #60a5fa, #2563eb);
    box-shadow: 0 18px 34px rgba(37, 99, 235, 0.22);
}

.mkt-btn--secondary {
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,250,252,0.90));
    border-color: rgba(226, 232, 240, 0.96);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.04);
}

.mkt-btn:hover {
    transform: translateY(-2px);
}

.mkt-hero-stack {
    gap: 20px;
}

.mkt-preview-card,
.mkt-monopoly-card {
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(248,250,252,0.84)) !important;
    border: 1px solid rgba(255,255,255,0.94);
    box-shadow: var(--mkt-premium-shadow) !important;
}

.mkt-preview-card {
    padding: 22px;
}

.mkt-preview-screen {
    min-height: 320px;
    border-radius: 24px;
    padding: 24px;
    background:
        linear-gradient(180deg, rgba(248,250,252,0.98), rgba(241,245,249,0.88)),
        radial-gradient(circle at top left, rgba(96,165,250,0.12), transparent 38%);
    border-color: rgba(148, 163, 184, 0.16);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.80), 0 14px 26px rgba(15, 23, 42, 0.05);
}

.mkt-preview-badge {
    background: linear-gradient(180deg, rgba(239,246,255,0.98), rgba(219,234,254,0.88));
    border-color: rgba(96, 165, 250, 0.18);
    box-shadow: 0 12px 24px rgba(59, 130, 246, 0.10);
}

.mkt-preview-node {
    width: 70px;
    height: 70px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(241,245,249,0.90));
    border-color: rgba(96, 165, 250, 0.18);
    box-shadow: 0 18px 30px rgba(96, 165, 250, 0.12);
}

.mkt-preview-line {
    height: 2px;
    background: linear-gradient(90deg, rgba(96,165,250,0.16), rgba(96,165,250,0.72), rgba(96,165,250,0.16));
}

.mkt-preview-metrics {
    gap: 14px;
}

.mkt-preview-metric {
    padding: 15px 16px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,250,252,0.90));
    border-color: rgba(226, 232, 240, 0.92);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.04);
}

.mkt-preview-metric strong {
    min-width: 54px;
    text-shadow: 0 1px 0 rgba(255,255,255,0.92);
}

.mkt-monopoly-card {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 20px;
    padding: 26px;
}

.mkt-monopoly-icon {
    width: 82px;
    height: 82px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,248,240,0.90));
    border-color: rgba(217, 119, 6, 0.20);
    box-shadow: 0 18px 30px rgba(217, 119, 6, 0.16);
}

.mkt-monopoly-copy h2,
.mkt-cta-copy h2,
.mkt-step-card h3 {
    letter-spacing: 0.04em;
    line-height: 1.24;
    text-wrap: balance;
}

.mkt-steps-wrap {
    gap: 22px;
    margin-top: 26px;
}

.mkt-step-card {
    padding: 32px 26px 28px;
    border-radius: 30px;
    min-height: 100%;
}

.mkt-step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--mkt-premium-shadow-hover) !important;
}

.mkt-step-number {
    min-width: 62px;
    height: 36px;
    background: linear-gradient(180deg, rgba(239,246,255,0.98), rgba(219,234,254,0.88));
    border-color: rgba(96, 165, 250, 0.18);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.84);
}

.mkt-step-icon {
    width: 74px;
    height: 74px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(241,245,249,0.90));
    border-color: rgba(96, 165, 250, 0.18);
    box-shadow: 0 18px 30px rgba(96, 165, 250, 0.12);
}

.mkt-cta-panel {
    gap: 28px;
    margin-top: 28px;
    padding: 32px 34px;
    border-radius: 32px;
    background:
        radial-gradient(circle at 100% 0%, rgba(96,165,250,0.12), rgba(96,165,250,0) 42%),
        linear-gradient(180deg, rgba(255,255,255,0.94), rgba(248,250,252,0.86)) !important;
    box-shadow: var(--mkt-premium-shadow-hover) !important;
}

.mkt-cta-panel::after {
    opacity: 0.72;
}

.mkt-btn:focus-visible {
    outline: none;
    border-color: rgba(59,130,246,0.42) !important;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.92), var(--mkt-focus-ring), 0 18px 34px rgba(15, 23, 42, 0.10) !important;
}

@media (prefers-reduced-motion: reduce) {
    body.mkt-page {
        animation: none !important;
    }

    body.mkt-page::before,
    .mkt-orb {
        display: none !important;
    }

    .mkt-btn,
    .mkt-step-card {
        transition: none !important;
    }
}

@media (max-width: 1120px) {
    .mkt-shell {
        width: min(100% - 28px, 100%);
    }

    .mkt-hero {
        padding: 32px;
    }
}

@media (max-width: 720px) {
    .mkt-shell {
        width: min(100% - 20px, 100%);
        padding: 24px 0 72px;
    }

    .mkt-hero,
    .mkt-step-card,
    .mkt-cta-panel,
    .mkt-preview-card,
    .mkt-monopoly-card {
        border-radius: 24px;
    }

    .mkt-hero {
        padding: 24px 18px;
    }

    .mkt-title {
        font-size: clamp(1.95rem, 8vw, 3rem);
        letter-spacing: 0.02em;
    }

    .mkt-subtitle,
    .mkt-monopoly-copy p,
    .mkt-step-card p,
    .mkt-cta-copy p,
    .mkt-preview-metric span {
        font-size: 0.95rem;
        line-height: 1.68;
    }

    .mkt-preview-screen {
        padding: 18px;
    }

    .mkt-preview-node {
        width: 58px;
        height: 58px;
        border-radius: 18px;
    }

    .mkt-monopoly-card {
        grid-template-columns: 1fr;
    }

    .mkt-monopoly-icon {
        width: 66px;
        height: 66px;
        border-radius: 20px;
    }
}

