/* Landing showcase — aurora hero, 3D stage, glass bento, cinematic deep-dive */

.mk-landing-showcase {
    --mk-void: #030508;
    --mk-ink-deep: #050a14;
    --mk-cyan: #22d3ee;
    --mk-cyan-glow: #67e8f9;
    --mk-violet: #8b5cf6;
    --mk-magenta: #e879f9;
    --mk-emerald: #34d399;
    --mk-glass: rgba(255, 255, 255, 0.06);
    --mk-glass-border: rgba(255, 255, 255, 0.12);
    overflow-x: clip;
}

/* Landing page shell — seamless dark/light transitions, no double nav offset */

.mk-body--landing {
    background: var(--mk-void, #030508);
}

.mk-body--landing #main-content {
    padding-top: 0;
}

.mk-body--landing .mk-site-footer {
    margin-top: 0;
    margin-bottom: 0;
    border-top-color: rgba(255, 255, 255, 0.06);
}

.mk-body--landing .mk-hero-showcase.hero-grid {
    background: var(--mk-void);
}

/* ── Hero ── */

.mk-hero-showcase {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    padding-bottom: 6rem;
    padding-top: calc(4rem + 1.5rem);
    color: #fff;
    background: var(--mk-void);
    overflow: hidden;
}

.mk-hero-showcase__particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.7;
}

.mk-hero-showcase__cursor-glow {
    position: absolute;
    width: 28rem;
    height: 28rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.14), transparent 65%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.35s ease;
    mix-blend-mode: screen;
}

.mk-hero-showcase.is-hovering .mk-hero-showcase__cursor-glow {
    opacity: 1;
}

.mk-hero-showcase__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.mk-hero-showcase__bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
    transform: scale(1.08);
}

.mk-hero-showcase__mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 90% 60% at 15% 10%, rgba(34, 211, 238, 0.22), transparent 55%),
        radial-gradient(ellipse 70% 50% at 85% 20%, rgba(139, 92, 246, 0.2), transparent 50%),
        radial-gradient(ellipse 60% 40% at 50% 100%, rgba(232, 121, 249, 0.12), transparent 55%),
        linear-gradient(180deg, rgba(3, 5, 8, 0.2) 0%, rgba(3, 5, 8, 0.92) 85%);
}

.mk-hero-showcase__grain {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
    pointer-events: none;
}

.mk-hero-showcase__grid-floor {
    position: absolute;
    left: -20%;
    right: -20%;
    bottom: -30%;
    height: 55%;
    background:
        linear-gradient(rgba(34, 211, 238, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 211, 238, 0.08) 1px, transparent 1px);
    background-size: 48px 48px;
    transform: perspective(500px) rotateX(68deg);
    transform-origin: center top;
    mask-image: linear-gradient(180deg, transparent, #000 35%, #000 70%, transparent);
    opacity: 0.45;
    animation: mk-grid-pulse 8s ease-in-out infinite;
}

@keyframes mk-grid-pulse {
    0%, 100% { opacity: 0.35; }
    50% { opacity: 0.55; }
}

.mk-hero-showcase__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: mk-orb-float 14s ease-in-out infinite;
    pointer-events: none;
}

.mk-hero-showcase__orb--1 {
    width: 28rem;
    height: 28rem;
    top: 8%;
    left: -8%;
    background: rgba(34, 211, 238, 0.25);
}

.mk-hero-showcase__orb--2 {
    width: 22rem;
    height: 22rem;
    top: 20%;
    right: -5%;
    background: rgba(139, 92, 246, 0.22);
    animation-delay: -4s;
}

.mk-hero-showcase__orb--3 {
    width: 16rem;
    height: 16rem;
    bottom: 25%;
    left: 40%;
    background: rgba(232, 121, 249, 0.15);
    animation-delay: -7s;
}

@keyframes mk-orb-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(24px, -18px) scale(1.05); }
    66% { transform: translate(-16px, 12px) scale(0.96); }
}

.mk-hero-showcase__inner {
    position: relative;
    z-index: 2;
    max-width: 76rem;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.mk-hero-showcase__layout {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .mk-hero-showcase__layout {
        grid-template-columns: 1fr 1.05fr;
        gap: 2.5rem;
        min-height: calc(100vh - 8rem);
        min-height: calc(100dvh - 8rem);
    }
}

.mk-hero-showcase__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(34, 211, 238, 0.35);
    background: rgba(34, 211, 238, 0.08);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--mk-cyan-glow);
    backdrop-filter: blur(12px);
}

.mk-hero-showcase__eyebrow-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--mk-emerald);
    box-shadow: 0 0 12px var(--mk-emerald);
    animation: mk-pulse-dot 2s ease-in-out infinite;
}

@keyframes mk-pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.85); }
}

.mk-hero-showcase__title {
    margin-top: 1.25rem;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.mk-hero-showcase__title-gradient {
    display: block;
    background: linear-gradient(120deg, #fff 0%, var(--mk-cyan-glow) 35%, var(--mk-violet) 65%, var(--mk-magenta) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: mk-gradient-shift 6s ease infinite;
}

@keyframes mk-gradient-shift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.mk-hero-showcase__lead {
    margin-top: 1.25rem;
    max-width: 32rem;
    font-size: 1.0625rem;
    line-height: 1.65;
    color: rgba(226, 232, 240, 0.82);
}

.mk-hero-showcase__checks {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1.25rem;
    margin-top: 1.5rem;
    font-size: 0.8125rem;
    color: rgba(203, 213, 225, 0.75);
}

.mk-hero-showcase__check {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.mk-hero-showcase__check-icon {
    color: var(--mk-cyan);
}

.mk-hero-showcase__cta-wrap {
    margin-top: 2rem;
}

.mk-hero-showcase__journey {
    margin-top: 2rem;
    max-width: 28rem;
}

/* 3D stage */

.mk-hero-showcase__stage-wrap {
    position: relative;
    perspective: 1400px;
}

.mk-hero-showcase__stage {
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.15s ease-out;
    will-change: transform;
}

.mk-hero-showcase__stage-glow {
    position: absolute;
    inset: -15%;
    background: radial-gradient(ellipse at center, rgba(34, 211, 238, 0.25), transparent 65%);
    filter: blur(40px);
    z-index: 0;
    animation: mk-stage-glow 5s ease-in-out infinite;
}

@keyframes mk-stage-glow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.mk-hero-showcase__orbital {
    position: absolute;
    inset: -8%;
    pointer-events: none;
    z-index: 1;
}

.mk-orbital-ring {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(34, 211, 238, 0.15);
    border-radius: 50%;
    animation: mk-orbit-spin linear infinite;
}

.mk-orbital-ring:nth-child(2) {
    inset: 8%;
    border-color: rgba(139, 92, 246, 0.2);
    animation-direction: reverse;
}

@keyframes mk-orbit-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.mk-hero-showcase__dashboard {
    position: relative;
    z-index: 2;
    border-radius: 1.25rem;
    padding: 1px;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.5), rgba(139, 92, 246, 0.35), rgba(255, 255, 255, 0.1));
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.05) inset,
        0 32px 80px -20px rgba(0, 0, 0, 0.65),
        0 0 60px -10px rgba(34, 211, 238, 0.35);
}

.mk-hero-showcase__dashboard-inner {
    border-radius: 1.2rem;
    background: rgba(8, 12, 22, 0.82);
    backdrop-filter: blur(24px);
    padding: 1rem 1.25rem 1.25rem;
}

.mk-hero-showcase__chrome {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 0.85rem;
}

.mk-hero-showcase__chrome-dot {
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 50%;
}

.mk-hero-showcase__chrome-url {
    margin-left: 0.5rem;
    font-family: ui-monospace, monospace;
    font-size: 0.625rem;
    color: rgba(148, 163, 184, 0.7);
}

.mk-hero-showcase__dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.85rem;
    font-size: 0.75rem;
}

.mk-hero-showcase__dash-company {
    font-weight: 700;
    color: #fff;
}

.mk-hero-showcase__dash-badge {
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: rgba(52, 211, 153, 0.15);
    color: var(--mk-emerald);
    font-size: 0.625rem;
    font-weight: 600;
}

.mk-hero-showcase__metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.55rem;
}

@media (min-width: 480px) {
    .mk-hero-showcase__metrics {
        grid-template-columns: repeat(4, 1fr);
    }
}

.mk-hero-showcase__metric {
    padding: 0.75rem 0.65rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.mk-hero-showcase__metric-label {
    font-size: 0.5625rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: rgba(148, 163, 184, 0.85);
}

.mk-hero-showcase__metric-value {
    margin-top: 0.25rem;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
}

.mk-hero-showcase__metric-value--cyan { color: var(--mk-cyan-glow); }
.mk-hero-showcase__metric-value--green { color: var(--mk-emerald); }
.mk-hero-showcase__metric-value--amber { color: #fbbf24; }
.mk-hero-showcase__metric-value--white { color: #fff; }

.mk-hero-showcase__feed {
    margin-top: 0.65rem;
    padding: 0.65rem 0.75rem;
    border-radius: 0.65rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.25);
    font-size: 0.6875rem;
    color: rgba(148, 163, 184, 0.9);
    animation: mk-feed-glow 4s ease-in-out infinite;
}

@keyframes mk-feed-glow {
    0%, 100% { border-color: rgba(255, 255, 255, 0.06); }
    50% { border-color: rgba(251, 191, 36, 0.25); }
}

/* ── Metrics ribbon ── */

.mk-section-beam {
    position: relative;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.45), rgba(139, 92, 246, 0.45), transparent);
    overflow: visible;
}

.mk-section-beam::after {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 8rem;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, var(--mk-cyan-glow), transparent);
    filter: blur(2px);
    animation: mk-beam-sweep 6s ease-in-out infinite;
}

@keyframes mk-beam-sweep {
    0%, 100% { left: -10%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

.mk-metrics-ribbon {
    position: relative;
    padding: 1.25rem 0;
    background: linear-gradient(90deg, var(--mk-ink-deep), #0a1628, var(--mk-ink-deep));
    border-block: 1px solid rgba(34, 211, 238, 0.12);
    overflow: hidden;
}

.mk-metrics-ribbon__track {
    display: flex;
    gap: 3rem;
    width: max-content;
    animation: mk-marquee 28s linear infinite;
    padding: 0 1.5rem;
}

.mk-metrics-ribbon:hover .mk-metrics-ribbon__track {
    animation-play-state: paused;
}

@keyframes mk-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.mk-metrics-ribbon__item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    white-space: nowrap;
    font-size: 0.8125rem;
    color: rgba(226, 232, 240, 0.75);
}

.mk-metrics-ribbon__value {
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-weight: 800;
    font-size: 1.125rem;
    background: linear-gradient(90deg, var(--mk-cyan-glow), var(--mk-violet));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ── Trust strip glass ── */

.mk-trust-glass {
    padding: 2.5rem 1.25rem;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.mk-trust-glass__inner {
    max-width: 56rem;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .mk-trust-glass__inner {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mk-trust-glass__card {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1.1rem 1.25rem;
    border-radius: 1rem;
    border: 1px solid rgba(15, 23, 42, 0.06);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px -12px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(8px);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mk-trust-glass__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px -12px rgba(34, 211, 238, 0.2);
}

.mk-trust-glass__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.15), rgba(139, 92, 246, 0.1));
    color: #0891b2;
}

.mk-trust-glass__icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.mk-trust-glass__text {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f172a;
}

/* ── Capabilities bento ── */

.mk-capabilities {
    position: relative;
    padding: 5rem 0 6rem;
    background: #f8fafc;
    overflow: hidden;
}

.mk-capabilities__bg-orb {
    position: absolute;
    width: 32rem;
    height: 32rem;
    right: -10%;
    top: 10%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08), transparent 70%);
    pointer-events: none;
}

.mk-capabilities__header {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto 3.5rem;
    padding: 0 1.25rem;
}

.mk-capabilities__title {
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0b1220;
}

.mk-capabilities__subtitle {
    margin-top: 1rem;
    font-size: 1.0625rem;
    line-height: 1.6;
    color: #64748b;
}

.mk-bento {
    position: relative;
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1.25rem;
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .mk-bento {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: minmax(10rem, auto);
    }

    .mk-bento__card--featured {
        grid-column: span 2;
        grid-row: span 2;
    }

    .mk-bento__card:not(.mk-bento__card--featured) {
        align-self: stretch;
    }
}

.mk-bento__card {
    position: relative;
    border-radius: 1.25rem;
    padding: 1.5rem;
    border: 1px solid rgba(15, 23, 42, 0.06);
    background: #fff;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
    transform-style: preserve-3d;
}

.mk-bento__card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, transparent, rgba(34, 211, 238, 0.35), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.mk-bento__card:hover {
    transform: translateY(-6px) rotateX(2deg);
    box-shadow: 0 24px 48px -16px rgba(15, 23, 42, 0.15), 0 0 40px -8px rgba(34, 211, 238, 0.15);
}

.mk-bento__card:hover::before {
    opacity: 1;
}

.mk-bento__card--holo {
    color: #fff;
    background: var(--mk-ink-deep);
    border-color: rgba(34, 211, 238, 0.12);
}

.mk-bento__card--holo::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--mk-holo-bg);
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    transition: opacity 0.4s ease, transform 0.6s ease;
    pointer-events: none;
}

.mk-bento__card--holo:hover::after {
    opacity: 0.5;
    transform: scale(1.04);
}

.mk-bento__card--holo h3,
.mk-bento__card--holo p {
    position: relative;
    z-index: 1;
    color: rgba(226, 232, 240, 0.88);
}

.mk-bento__card--holo .mk-bento__icon {
    position: relative;
    z-index: 1;
    background: rgba(139, 92, 246, 0.22);
    color: var(--mk-magenta);
}

.mk-bento__spotlight {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    background: radial-gradient(
        600px circle at var(--spot-x, 50%) var(--spot-y, 50%),
        rgba(34, 211, 238, 0.08),
        transparent 45%
    );
}

.mk-bento.is-spotlight-active .mk-bento__spotlight {
    opacity: 1;
}

.mk-bento__card--featured {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 18rem;
    color: #fff;
    border: none;
    background: var(--mk-ink-deep);
}

.mk-bento__card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
}

.mk-bento__card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 20%, rgba(3, 5, 8, 0.92) 75%);
}

.mk-bento__card-content {
    position: relative;
    z-index: 1;
}

.mk-bento__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.85rem;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.18), rgba(139, 92, 246, 0.12));
    color: #0891b2;
}

.mk-bento__card--featured .mk-bento__icon {
    background: rgba(34, 211, 238, 0.2);
    color: var(--mk-cyan-glow);
}

.mk-bento__card h3 {
    margin-top: 1rem;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: inherit;
}

.mk-bento__card--featured h3 {
    font-size: 1.375rem;
}

.mk-bento__card p {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.55;
    color: #64748b;
}

.mk-bento__card--featured p {
    color: rgba(226, 232, 240, 0.8);
    max-width: 28rem;
}

.mk-bento__stat-row {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.mk-bento__stat {
    font-size: 0.75rem;
    color: rgba(203, 213, 225, 0.7);
}

.mk-bento__stat strong {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--mk-cyan-glow);
}

.mk-capabilities__footer {
    margin-top: 3rem;
    text-align: center;
    padding: 0 1.25rem;
}

/* ── Visual interlude ── */

.mk-visual-interlude {
    position: relative;
    min-height: 18rem;
    padding: 6rem 1.25rem;
    background: var(--mk-void);
    overflow: hidden;
    isolation: isolate;
}

.mk-visual-interlude__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.mk-visual-interlude__bg-shift {
    position: absolute;
    inset: -6%;
    will-change: transform;
    transition: transform 0.12s ease-out;
}

.mk-visual-interlude__bg-shift img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.5;
    transform: scale(1.12);
    transform-origin: center center;
    transition: opacity 0.4s ease, transform 0.35s ease;
}

.mk-visual-interlude.is-hovering .mk-visual-interlude__bg-shift img {
    opacity: 0.62;
    transform: scale(1.14);
}

.mk-visual-interlude__spotlight {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    background: radial-gradient(
        520px circle at var(--vi-cx, 50%) var(--vi-cy, 50%),
        rgba(103, 232, 249, 0.18),
        rgba(139, 92, 246, 0.1) 32%,
        transparent 58%
    );
    mix-blend-mode: screen;
}

.mk-visual-interlude.is-hovering .mk-visual-interlude__spotlight {
    opacity: 1;
}

.mk-visual-interlude__cursor-glow {
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.35s ease;
    background: radial-gradient(
        circle,
        rgba(34, 211, 238, 0.16) 0%,
        rgba(139, 92, 246, 0.1) 38%,
        transparent 68%
    );
    mix-blend-mode: screen;
    filter: blur(1px);
}

.mk-visual-interlude.is-hovering .mk-visual-interlude__cursor-glow {
    opacity: 1;
}

.mk-visual-interlude__cursor-ring {
    position: absolute;
    width: 7.5rem;
    height: 7.5rem;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0.85);
    pointer-events: none;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.35s ease, transform 0.25s ease;
    border: 1px solid rgba(103, 232, 249, 0.4);
    box-shadow:
        0 0 28px rgba(34, 211, 238, 0.22),
        inset 0 0 24px rgba(139, 92, 246, 0.12);
}

.mk-visual-interlude.is-hovering .mk-visual-interlude__cursor-ring {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.mk-visual-interlude__scanlines {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.04;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255, 255, 255, 0.5) 2px,
        rgba(255, 255, 255, 0.5) 3px
    );
    pointer-events: none;
    transition: opacity 0.35s ease;
    mask-image: radial-gradient(
        360px circle at var(--vi-cx, 50%) var(--vi-cy, 50%),
        black 0%,
        transparent 72%
    );
    -webkit-mask-image: radial-gradient(
        360px circle at var(--vi-cx, 50%) var(--vi-cy, 50%),
        black 0%,
        transparent 72%
    );
}

.mk-visual-interlude.is-hovering .mk-visual-interlude__scanlines {
    opacity: 0.09;
}

.mk-visual-interlude__veil {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(90deg, var(--mk-void) 0%, transparent 40%, transparent 60%, var(--mk-void) 100%),
        linear-gradient(180deg, var(--mk-void), transparent 30%, transparent 70%, var(--mk-void));
    transition: -webkit-mask-image 0.35s ease, mask-image 0.35s ease;
}

.mk-visual-interlude.is-hovering .mk-visual-interlude__veil {
    -webkit-mask-image: radial-gradient(
        ellipse 420px 300px at var(--vi-cx, 50%) var(--vi-cy, 50%),
        transparent 0%,
        black 72%
    );
    mask-image: radial-gradient(
        ellipse 420px 300px at var(--vi-cx, 50%) var(--vi-cy, 50%),
        transparent 0%,
        black 72%
    );
}

.mk-visual-interlude__inner {
    position: relative;
    z-index: 3;
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}

.mk-visual-interlude__quote {
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.02em;
    color: #fff;
}

.mk-visual-interlude__quote span {
    background: linear-gradient(90deg, var(--mk-cyan-glow), var(--mk-violet));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.mk-visual-interlude__sub {
    margin-top: 1.25rem;
    font-size: 1rem;
    color: rgba(203, 213, 225, 0.7);
}

/* ── Deep-dive (slideshows) ── */

.mk-landing-deepdive {
    position: relative;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 50%, #f1f5f9 100%);
    overflow: hidden;
}

.mk-landing-deepdive__bg {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    pointer-events: none;
}

.mk-landing-deepdive__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mk-landing-deepdive__glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(90%, 48rem);
    height: 12rem;
    background: radial-gradient(ellipse, rgba(34, 211, 238, 0.12), transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.mk-landing-deepdive .feat-section {
    position: relative;
    z-index: 2;
}

.mk-landing-deepdive .feat-section:first-of-type {
    padding-top: 4rem;
}

/* ── Final CTA showcase ── */

.mk-cta-showcase {
    position: relative;
    padding: 6rem 1.25rem;
    background: var(--mk-void);
    overflow: hidden;
}

.mk-cta-showcase__bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.42;
    transform: scale(1.02);
    pointer-events: none;
}

.mk-cta-showcase__aurora {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 100%, rgba(34, 211, 238, 0.15), transparent),
        radial-gradient(ellipse 60% 40% at 20% 50%, rgba(139, 92, 246, 0.12), transparent);
    animation: mk-cta-aurora 10s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes mk-cta-aurora {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.mk-cta-showcase__frame {
    position: relative;
    z-index: 2;
    max-width: 48rem;
    margin: 0 auto;
    padding: 3rem 2rem;
    border-radius: 1.5rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    box-shadow: 0 32px 64px -24px rgba(0, 0, 0, 0.5);
}

.mk-cta-showcase__frame::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: conic-gradient(from 180deg, var(--mk-cyan), var(--mk-violet), var(--mk-magenta), var(--mk-cyan));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.65;
    animation: mk-border-spin 8s linear infinite;
    pointer-events: none;
}

@keyframes mk-border-spin {
    to { filter: hue-rotate(360deg); }
}

.mk-cta-showcase__title {
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #fff;
}

.mk-cta-showcase__lead {
    margin-top: 1rem;
    color: rgba(203, 213, 225, 0.8);
    font-size: 1.0625rem;
    line-height: 1.6;
}

.mk-cta-showcase__journey {
    margin: 2rem auto 0;
    max-width: 32rem;
}

.mk-cta-showcase__actions {
    position: relative;
    z-index: 1;
    margin-top: 2rem;
}

/* ── Scroll reveal ── */

.mk-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.mk-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.mk-reveal--delay-1 { transition-delay: 0.1s; }
.mk-reveal--delay-2 { transition-delay: 0.2s; }
.mk-reveal--delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
    .mk-hero-showcase__orb,
    .mk-hero-showcase__grid-floor,
    .mk-hero-showcase__title-gradient,
    .mk-metrics-ribbon__track,
    .mk-orbital-ring,
    .mk-cta-showcase__aurora,
    .mk-cta-showcase__frame::before,
    .mk-hero-showcase__feed,
    .mk-section-beam::after {
        animation: none !important;
    }

    .mk-hero-showcase__cursor-glow,
    .mk-hero-showcase__particles,
    .mk-visual-interlude__cursor-glow,
    .mk-visual-interlude__cursor-ring,
    .mk-visual-interlude__spotlight {
        display: none;
    }

    .mk-visual-interlude__bg-shift {
        transition: none;
    }

    .mk-visual-interlude__bg-shift img {
        transition: none;
    }

    .mk-visual-interlude.is-hovering .mk-visual-interlude__bg-shift img {
        opacity: 0.5;
        transform: scale(1.12);
    }

    .mk-visual-interlude.is-hovering .mk-visual-interlude__veil {
        -webkit-mask-image: none;
        mask-image: none;
    }

    .mk-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .mk-bento__card:hover {
        transform: none;
    }
}