:root {
    --mk-bg: #08111d;
    --mk-line: rgba(142, 181, 207, 0.18);
    --mk-line-strong: rgba(100, 209, 255, 0.28);
    --mk-text: #ecf6ff;
    --mk-muted: #9ab2c5;
    --mk-accent: #31d7ff;
    --mk-warm: #ffc36c;
    --mk-shadow: 0 32px 80px rgba(2, 8, 18, 0.42);
    --mk-width: min(1160px, calc(100vw - 32px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(49, 215, 255, 0.16), transparent 28%),
        radial-gradient(circle at 82% 16%, rgba(255, 195, 108, 0.12), transparent 24%),
        linear-gradient(180deg, #060d16 0%, #08111d 45%, #0a1523 100%);
    color: var(--mk-text);
    font-family: "Manrope", "Segoe UI", Tahoma, sans-serif;
}

body.catalog-marketing-page {
    background: linear-gradient(180deg, #f5f7fa 0%, #edf2f7 100%);
    color: #16324f;
}

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

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

.marketing-flash-stack {
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 40;
    display: grid;
    gap: 10px;
    width: min(420px, calc(100vw - 32px));
}

.marketing-flash {
    border-radius: 18px;
    padding: 12px 14px;
    border: 1px solid var(--mk-line);
    backdrop-filter: blur(18px);
    box-shadow: var(--mk-shadow);
    font-size: 13px;
}

.marketing-flash--success {
    background: rgba(13, 58, 52, 0.82);
    border-color: rgba(86, 222, 174, 0.34);
}

.marketing-flash--error {
    background: rgba(60, 18, 24, 0.82);
    border-color: rgba(255, 116, 132, 0.34);
}

.marketing-shell {
    width: 100%;
    min-height: 100vh;
}

.marketing-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    width: var(--mk-width);
    margin: 10px auto 0;
    padding: 10px 12px;
    background: rgba(5, 12, 20, 0.72);
    border: 1px solid rgba(146, 186, 213, 0.12);
    border-radius: 999px;
    backdrop-filter: blur(18px);
    box-shadow: 0 16px 30px rgba(2, 8, 18, 0.16);
}

.marketing-brand {
    display: inline-flex;
    align-items: center;
    gap: 0;
}

.marketing-brand img {
    width: min(100%, 136px);
    height: auto;
}

.marketing-nav {
    display: inline-flex;
    justify-content: center;
    gap: 14px;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    color: var(--mk-muted);
    font-size: 12px;
    scrollbar-width: none;
}

.marketing-nav::-webkit-scrollbar {
    display: none;
}

.marketing-nav a {
    white-space: nowrap;
}

.marketing-nav a:hover,
.marketing-nav a:focus-visible {
    color: var(--mk-text);
}

.marketing-header__actions {
    display: inline-flex;
    gap: 8px;
    flex-wrap: nowrap;
}

.marketing-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 12px;
    font-weight: 700;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
    white-space: nowrap;
}

.marketing-button:hover,
.marketing-button:focus-visible {
    transform: translateY(-1px);
}

.marketing-button--primary {
    background: linear-gradient(135deg, var(--mk-warm), var(--mk-accent));
    color: #04111f;
    box-shadow: 0 18px 36px rgba(1, 130, 205, 0.22);
}

.marketing-button--ghost {
    border-color: var(--mk-line-strong);
    background: rgba(255, 255, 255, 0.02);
    color: var(--mk-text);
}

.marketing-button--wide {
    width: 100%;
}

.hero-poster {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.84fr) minmax(360px, 1.02fr);
    align-items: center;
    gap: 20px;
    width: var(--mk-width);
    min-height: auto;
    margin: 0 auto;
    padding: 14px 0 22px;
}

.hero-poster__backdrop,
.hero-poster__beam {
    position: absolute;
    pointer-events: none;
}

.hero-poster__backdrop {
    inset: 10% -6% -10% -6%;
    background:
        linear-gradient(135deg, rgba(49, 215, 255, 0.08), transparent 36%),
        radial-gradient(circle at 70% 42%, rgba(0, 136, 255, 0.18), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
    border: 1px solid rgba(135, 182, 214, 0.1);
    border-radius: 44px;
}

.hero-poster__beam {
    width: 260px;
    height: 260px;
    filter: blur(32px);
    opacity: 0.62;
    animation: marketingFloat 8s ease-in-out infinite;
}

.hero-poster__beam--one {
    top: 12%;
    right: 22%;
    background: rgba(49, 215, 255, 0.22);
}

.hero-poster__beam--two {
    bottom: 6%;
    left: 12%;
    background: rgba(255, 195, 108, 0.18);
    animation-delay: -3s;
}

.hero-poster__content,
.hero-poster__visual {
    position: relative;
    z-index: 1;
}

.hero-poster__content {
    max-width: 480px;
}

.hero-kicker,
.section-kicker {
    margin: 0 0 10px;
    color: var(--mk-accent);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-poster h1,
.marketing-section h2 {
    margin: 0;
    font-family: "Space Grotesk", "Manrope", sans-serif;
    letter-spacing: -0.04em;
}

.hero-poster h1 {
    max-width: 13ch;
    font-size: clamp(1.85rem, 2.8vw, 2.8rem);
    line-height: 1.06;
    text-wrap: balance;
}

.hero-copy {
    max-width: 46ch;
    margin: 12px 0 0;
    color: var(--mk-muted);
    font-size: clamp(0.92rem, 1vw, 0.98rem);
    line-height: 1.58;
}

.catalog-open-shell {
    width: min(1380px, calc(100vw - 40px));
    margin: 28px auto 48px;
    display: grid;
    gap: 24px;
}

.catalog-open-hero {
    display: grid;
    grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
    gap: 18px;
    padding: 26px;
    border-radius: 32px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.85), transparent 26%),
        linear-gradient(135deg, #0f75cc 0%, #1697ee 100%);
    box-shadow: 0 28px 64px rgba(13, 65, 120, 0.22);
}

.catalog-open-hero__copy {
    display: grid;
    align-content: start;
    gap: 14px;
    color: #ffffff;
}

.catalog-open-hero__eyebrow {
    margin: 0;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.76);
    font-weight: 800;
}

.catalog-open-hero__copy h1 {
    margin: 0;
    font-size: clamp(2.4rem, 3.8vw, 4.4rem);
    line-height: 0.94;
    letter-spacing: -0.05em;
    font-family: "Space Grotesk", "Manrope", sans-serif;
    text-wrap: balance;
}

.catalog-open-hero__intro {
    margin: 0;
    max-width: 46ch;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.catalog-open-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.catalog-open-pill {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 0.82rem;
    font-weight: 700;
    color: #ffffff;
}

.catalog-open-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.catalog-open-stats article {
    min-width: 160px;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: grid;
    gap: 6px;
}

.catalog-open-stats span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.78);
}

.catalog-open-stats strong {
    font-size: 1.35rem;
    line-height: 1;
    color: #ffffff;
}

.catalog-open-hero__gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 170px;
    gap: 12px;
}

.catalog-open-hero-card {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    overflow: hidden;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 32px rgba(10, 66, 124, 0.14);
}

.catalog-open-hero-card.is-primary {
    grid-column: span 2;
    grid-row: span 2;
}

.catalog-open-hero-card__image {
    min-height: 0;
    display: grid;
    place-items: center;
    padding: 16px;
    background: linear-gradient(180deg, #fdfefe 0%, #edf3f9 100%);
}

.catalog-open-hero-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.catalog-open-hero-card__image span {
    font-size: 2rem;
    font-weight: 800;
    color: #8aa2bc;
}

.catalog-open-hero-card__body {
    display: grid;
    gap: 6px;
    padding: 14px 16px 16px;
    color: #18334f;
}

.catalog-open-hero-card__body span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b819a;
    font-weight: 800;
}

.catalog-open-hero-card__body strong {
    font-size: 0.96rem;
    line-height: 1.25;
}

.catalog-open-hero-card__body em {
    font-style: normal;
    font-weight: 800;
    color: #0f72ca;
}

.catalog-open-nav {
    position: sticky;
    top: 10px;
    z-index: 10;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding: 12px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(164, 184, 205, 0.34);
    backdrop-filter: blur(16px);
}

.catalog-open-nav a {
    padding: 9px 13px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(181, 195, 211, 0.56);
    color: #1d456e;
    font-size: 0.84rem;
    font-weight: 700;
}

.catalog-open-sections {
    display: grid;
    gap: 22px;
}

.catalog-open-section {
    display: grid;
    gap: 16px;
    padding: 20px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(174, 189, 206, 0.36);
    box-shadow: 0 18px 36px rgba(31, 64, 99, 0.08);
}

.catalog-open-section.is-featured {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.98));
}

.catalog-open-section__header {
    display: grid;
    grid-template-columns: minmax(260px, 0.7fr) minmax(180px, 0.3fr);
    gap: 18px;
    align-items: center;
}

.catalog-open-section__copy {
    display: grid;
    gap: 10px;
}

.catalog-open-section__copy > p:first-child {
    margin: 0;
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6d8197;
    font-weight: 800;
}

.catalog-open-section__copy h2 {
    margin: 0;
    font-size: clamp(1.6rem, 2vw, 2.35rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
    color: #17324c;
}

.catalog-open-section__intro {
    margin: 0;
    max-width: 56ch;
    color: #63778c;
    line-height: 1.55;
}

.catalog-open-section__meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.catalog-open-section__meta span {
    padding: 8px 12px;
    border-radius: 999px;
    background: #eef4fa;
    border: 1px solid rgba(181, 195, 211, 0.5);
    color: #365475;
    font-size: 0.8rem;
    font-weight: 700;
}

.catalog-open-section__lead {
    display: grid;
    place-items: center;
    min-height: 220px;
    padding: 18px;
    border-radius: 24px;
    background: linear-gradient(180deg, #fbfdff 0%, #edf3f9 100%);
}

.catalog-open-section__lead img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.catalog-open-section__lead span {
    font-size: 2rem;
    font-weight: 800;
    color: #8ca1b7;
}

.catalog-open-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
}

.catalog-open-grid.is-featured {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.catalog-open-card {
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(188, 202, 216, 0.48);
    box-shadow: 0 12px 28px rgba(31, 64, 99, 0.07);
}

.catalog-open-card__image {
    display: grid;
    place-items: center;
    height: 240px;
    padding: 16px;
    background: linear-gradient(180deg, #fcfdff 0%, #eef4f9 100%);
}

.catalog-open-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.catalog-open-card__image span {
    font-size: 1.9rem;
    font-weight: 800;
    color: #8fa4ba;
}

.catalog-open-card__body {
    display: grid;
    gap: 10px;
    padding: 16px 16px 18px;
    color: #17324c;
}

.catalog-open-card__topline {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #71859c;
    font-weight: 800;
}

.catalog-open-card__body h3 {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.22;
}

.catalog-open-card__body p {
    margin: 0;
    color: #6c8198;
    font-size: 0.88rem;
}

.catalog-open-card__footer {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
}

.catalog-open-card__footer strong {
    font-size: 1.08rem;
    color: #0f72ca;
}

.catalog-open-card__footer span {
    color: #4a805b;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

@media (max-width: 1180px) {
    .catalog-open-hero,
    .catalog-open-section__header {
        grid-template-columns: minmax(0, 1fr);
    }

    .catalog-open-hero__gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .catalog-open-shell {
        width: min(100vw - 20px, 100%);
        margin: 16px auto 26px;
    }

    .catalog-open-hero,
    .catalog-open-section {
        padding: 16px;
        border-radius: 24px;
    }

    .catalog-open-hero__gallery,
    .catalog-open-grid,
    .catalog-open-grid.is-featured {
        grid-template-columns: minmax(0, 1fr);
    }

    .catalog-open-hero-card.is-primary {
        grid-column: span 1;
        grid-row: span 1;
    }

    .catalog-open-card__image,
    .catalog-open-section__lead {
        height: 220px;
        min-height: 220px;
    }
}

/* 2026-04-22 final public image-fit override */

.catalog-showcase__hero-image,
.catalog-showcase__product-image,
.catalog-showcase__section-lead,
.catalog-open-hero-card__image,
.catalog-open-card__image,
.catalog-open-section__lead {
    display: grid !important;
    place-items: center !important;
    overflow: hidden !important;
}

.catalog-showcase__hero-image img,
.catalog-showcase__product-image img,
.catalog-showcase__section-lead img,
.catalog-open-hero-card__image img,
.catalog-open-card__image img,
.catalog-open-section__lead img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    margin: auto !important;
    object-fit: contain !important;
    object-position: center !important;
}

/* 2026-04-22 catalog presentation cleanup */

.catalog-showcase__hero-grid,
.catalog-open-hero__gallery {
    align-items: stretch;
}

.catalog-showcase__hero-card,
.catalog-open-hero-card {
    min-width: 0;
    grid-template-rows: minmax(0, 1fr) 98px;
}

.catalog-showcase__hero-image,
.catalog-open-hero-card__image {
    overflow: hidden;
    padding: 22px 26px 28px;
}

.catalog-showcase__hero-image img,
.catalog-open-hero-card__image img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto !important;
    height: auto !important;
    margin: auto;
    object-fit: contain;
    object-position: center;
}

.catalog-showcase__hero-body strong,
.catalog-open-hero-card__body strong {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    min-height: calc(2 * 1.22em);
    line-height: 1.22;
    overflow-wrap: anywhere;
}

.catalog-showcase__hero-body p,
.catalog-open-hero-card__body span {
    min-height: 1.25em;
}

.catalog-showcase__product-grid,
.catalog-open-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.catalog-showcase__product-card,
.catalog-open-card {
    min-width: 0;
    grid-template-rows: 252px minmax(124px, auto);
}

.catalog-showcase__product-image,
.catalog-open-card__image {
    height: 252px;
    min-height: 252px;
    overflow: hidden;
    padding: 24px 28px 30px;
}

.catalog-showcase__product-image img,
.catalog-open-card__image img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto !important;
    height: auto !important;
    margin: auto;
    object-fit: contain;
    object-position: center;
}

.catalog-showcase__hero-image img,
.catalog-showcase__product-image img,
.catalog-showcase__section-lead img,
.catalog-open-hero-card__image img,
.catalog-open-card__image img,
.catalog-open-section__lead img {
    max-width: 100%;
    max-height: 100%;
}

.catalog-showcase__product-body,
.catalog-open-card__body {
    align-content: start;
    min-width: 0;
    border-top: 1px solid rgba(188, 202, 216, 0.3);
}

.catalog-showcase__product-body h3,
.catalog-open-card__body h3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    min-height: calc(2 * 1.24em);
    line-height: 1.24;
    overflow-wrap: anywhere;
}

.catalog-showcase__pack,
.catalog-open-card__body p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    min-height: 1.45em;
    line-height: 1.45;
}

@media (max-width: 1180px) {
    .catalog-showcase__product-grid,
    .catalog-open-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .catalog-showcase__product-grid,
    .catalog-open-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.hero-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
    color: #d2e5f4;
}

.hero-strip span {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(149, 184, 207, 0.16);
    font-size: 11px;
    letter-spacing: 0.04em;
}

.hero-poster__visual {
    display: grid;
    gap: 12px;
    justify-items: center;
}

.hero-orbit {
    position: relative;
    width: min(100%, 620px);
    padding: 14px;
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
        rgba(10, 22, 36, 0.82);
    border: 1px solid rgba(146, 186, 213, 0.16);
    box-shadow: var(--mk-shadow);
    overflow: hidden;
}

.hero-orbit::after {
    content: "";
    position: absolute;
    inset: -20% auto auto -20%;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(49, 215, 255, 0.1);
    filter: blur(16px);
}

.hero-orbit img {
    width: 100%;
    animation: marketingDrift 14s ease-in-out infinite;
}

.hero-caption {
    display: grid;
    gap: 6px;
    width: min(100%, 540px);
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(149, 184, 207, 0.16);
    color: var(--mk-muted);
}

.hero-caption strong {
    color: var(--mk-text);
    font-size: 14px;
}

.marketing-section {
    width: var(--mk-width);
    margin: 0 auto;
    padding: 40px 0;
}

.section-heading {
    max-width: 760px;
}

.marketing-section h2 {
    font-size: clamp(1.16rem, 1.8vw, 1.55rem);
    line-height: 1.18;
    text-wrap: balance;
}

.section-heading--compact {
    max-width: 620px;
}

.section-heading--compact h2 {
    font-size: clamp(1.1rem, 1.55vw, 1.36rem);
}

.platform-rails {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.platform-rail {
    padding: 16px 0 0;
    border-top: 1px solid var(--mk-line-strong);
}

.platform-rail__index {
    color: var(--mk-warm);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.platform-rail h3,
.integration-band__item strong,
.workflow-step strong {
    margin: 10px 0 6px;
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: 0.96rem;
    letter-spacing: -0.03em;
}

.platform-rail p,
.integration-band__item p,
.workflow-step p,
.demo-panel__copy p,
.demo-note {
    margin: 0;
    color: var(--mk-muted);
    font-size: 0.92rem;
    line-height: 1.58;
}

.marketing-section--workflow {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: 18px;
    align-items: center;
}

.marketing-section--planner {
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(320px, 1.04fr);
    gap: 18px;
    align-items: start;
}

.workflow-visual {
    padding: 12px;
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
        rgba(8, 18, 30, 0.82);
    border: 1px solid rgba(146, 186, 213, 0.16);
    box-shadow: var(--mk-shadow);
}

.workflow-copy {
    display: grid;
    gap: 14px;
}

.workflow-steps {
    display: grid;
    gap: 10px;
}

.workflow-step {
    padding-left: 14px;
    border-left: 1px solid var(--mk-line-strong);
}

.planner-copy {
    display: grid;
    gap: 12px;
    max-width: 520px;
}

.planner-panel {
    display: grid;
    gap: 12px;
    padding: 16px;
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
        rgba(8, 18, 30, 0.82);
    border: 1px solid rgba(146, 186, 213, 0.16);
    box-shadow: var(--mk-shadow);
}

.planner-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 24px;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(49, 215, 255, 0.1);
    color: var(--mk-accent);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.planner-points,
.planner-panel__grid {
    display: grid;
    gap: 10px;
}

.planner-point,
.planner-tile {
    padding: 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(149, 184, 207, 0.14);
}

.planner-point strong,
.planner-tile strong {
    display: block;
    margin-bottom: 6px;
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: 0.96rem;
    letter-spacing: -0.03em;
}

.planner-point p,
.planner-tile p {
    margin: 0;
    color: var(--mk-muted);
    font-size: 0.9rem;
    line-height: 1.56;
}

.planner-tile__eyebrow {
    display: inline-block;
    margin-bottom: 6px;
    color: var(--mk-accent);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.integration-band {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.integration-band__item {
    padding: 14px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
    border: 1px solid rgba(149, 184, 207, 0.14);
    box-shadow: var(--mk-shadow);
}

.integration-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(255, 195, 108, 0.12);
    color: var(--mk-warm);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.demo-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
    gap: 18px;
    padding: 18px;
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(49, 215, 255, 0.08), rgba(255, 195, 108, 0.08)),
        rgba(8, 18, 30, 0.86);
    border: 1px solid rgba(149, 184, 207, 0.16);
    box-shadow: var(--mk-shadow);
}

.demo-panel__copy {
    display: grid;
    gap: 10px;
}

.demo-points {
    display: grid;
    gap: 8px;
    margin: 6px 0 0;
    padding: 0;
    list-style: none;
}

.demo-points li {
    position: relative;
    padding-left: 18px;
    color: var(--mk-text);
    font-size: 0.9rem;
}

.demo-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--mk-warm), var(--mk-accent));
}

.demo-form {
    display: grid;
    gap: 12px;
    padding: 16px;
    border-radius: 16px;
    background: rgba(5, 13, 23, 0.74);
    border: 1px solid rgba(149, 184, 207, 0.16);
}

.demo-form label {
    display: grid;
    gap: 8px;
    color: var(--mk-muted);
    font-size: 13px;
}

.demo-form input,
.demo-form select {
    width: 100%;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 14px;
    border: 1px solid rgba(149, 184, 207, 0.18);
    background: rgba(255, 255, 255, 0.04);
    color: var(--mk-text);
    font: inherit;
}

.demo-form input::placeholder {
    color: #88a1b5;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 720ms ease, transform 720ms ease;
}

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

@keyframes marketingFloat {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(10px, -14px, 0) scale(1.05);
    }
}

@keyframes marketingDrift {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -8px, 0);
    }
}

@media (max-width: 1080px) {
    .marketing-header {
        grid-template-columns: auto 1fr;
        align-items: center;
        gap: 10px;
        padding: 10px 12px;
        border-radius: 18px;
    }

    .marketing-nav {
        grid-column: 1 / -1;
        justify-content: flex-start;
        width: 100%;
        padding-bottom: 2px;
    }

    .marketing-header__actions {
        justify-content: flex-end;
    }

    .hero-poster,
    .marketing-section--workflow,
    .marketing-section--planner,
    .demo-panel {
        grid-template-columns: 1fr;
    }

    .platform-rails,
    .integration-band {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .marketing-section h2 {
        font-size: clamp(1.08rem, 2vw, 1.34rem);
    }

    .section-heading--compact h2 {
        font-size: clamp(1rem, 1.8vw, 1.2rem);
    }

    .hero-poster h1 {
        max-width: 15ch;
        font-size: clamp(1.64rem, 3.5vw, 2.2rem);
    }
}

@media (max-width: 720px) {
    :root {
        --mk-width: min(100vw - 20px, 1200px);
    }

    .marketing-nav {
        gap: 10px;
        font-size: 11px;
    }

    .marketing-brand img {
        width: 122px;
    }

    .marketing-header__actions,
    .hero-actions {
        width: 100%;
        flex-direction: column;
    }

    .marketing-button {
        width: 100%;
        min-height: 38px;
    }

    .hero-poster {
        min-height: auto;
        gap: 14px;
        padding-top: 8px;
    }

    .hero-poster h1 {
        max-width: 100%;
        font-size: clamp(1.38rem, 7vw, 1.82rem);
        line-height: 1.1;
    }

    .marketing-section {
        padding: 28px 0;
    }

    .section-heading {
        max-width: 100%;
    }

    .marketing-section h2 {
        font-size: clamp(1rem, 4.8vw, 1.2rem);
        line-height: 1.2;
    }

    .section-heading--compact h2 {
        font-size: clamp(0.96rem, 4.4vw, 1.12rem);
        line-height: 1.22;
    }

    .hero-copy,
    .platform-rail p,
    .integration-band__item p,
    .workflow-step p,
    .demo-panel__copy p,
    .demo-note {
        font-size: 0.88rem;
        line-height: 1.54;
    }

    .platform-rails,
    .integration-band {
        grid-template-columns: 1fr;
    }

    .planner-point,
    .planner-tile {
        padding: 12px;
    }

    .demo-panel {
        padding: 14px;
    }

    .demo-form {
        padding: 14px;
    }
}

body.catalog-marketing-page {
    background: linear-gradient(180deg, #f4f7fa 0%, #eef3f7 100%);
    color: #18324b;
}

.catalog-showcase {
    width: min(1420px, calc(100vw - 36px));
    margin: 26px auto 42px;
    display: grid;
    gap: 22px;
}

.catalog-showcase__hero {
    display: grid;
    grid-template-columns: minmax(340px, 0.84fr) minmax(0, 1.16fr);
    gap: 18px;
    padding: 28px;
    border-radius: 34px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.86), transparent 26%),
        linear-gradient(135deg, #0f75cc 0%, #1895ea 100%);
    box-shadow: 0 28px 68px rgba(12, 67, 122, 0.22);
}

.catalog-showcase__intro {
    display: grid;
    align-content: start;
    gap: 14px;
    color: #ffffff;
}

.catalog-showcase__brand-mark {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
}

.catalog-showcase__brand-mark-logo {
    display: grid;
    place-items: center;
    width: 96px;
    height: 96px;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 32px rgba(13, 63, 111, 0.18);
}

.catalog-showcase__brand-mark-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 12px;
}

.catalog-showcase__brand-mark-logo span {
    font-size: 2rem;
    font-weight: 800;
    color: var(--catalog-brand-accent, #16324f);
}

.catalog-showcase__eyebrow {
    margin: 0;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.74);
}

.catalog-showcase__intro h1 {
    margin: 0;
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: clamp(2.5rem, 4vw, 4.7rem);
    line-height: 0.94;
    letter-spacing: -0.06em;
    text-wrap: balance;
}

.catalog-showcase__copy {
    margin: 0;
    max-width: 44ch;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.62;
}

.catalog-showcase__catalog-name {
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}

.catalog-showcase__audience,
.catalog-showcase__summary {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.catalog-showcase__audience span,
.catalog-showcase__summary span {
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 800;
}

.catalog-showcase__audience span {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

.catalog-showcase__summary span {
    background: rgba(7, 46, 93, 0.28);
    color: rgba(255, 255, 255, 0.9);
}

.catalog-showcase__hero-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 182px;
    gap: 12px;
}

.catalog-showcase__hero-card {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    overflow: hidden;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 34px rgba(13, 63, 111, 0.16);
}

.catalog-showcase__hero-card.is-primary {
    grid-column: span 2;
    grid-row: span 2;
}

.catalog-showcase__hero-image {
    display: grid;
    place-items: center;
    min-height: 0;
    padding: 18px;
    background: linear-gradient(180deg, #fcfdff 0%, #eef4f9 100%);
}

.catalog-showcase__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.catalog-showcase__hero-image span {
    font-size: 2rem;
    font-weight: 800;
    color: #8ea4ba;
}

.catalog-showcase__hero-asset,
.catalog-showcase__lead-asset,
.catalog-showcase__product-asset {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.catalog-showcase__hero-body {
    display: grid;
    gap: 6px;
    padding: 14px 16px 16px;
    color: #18334f;
}

.catalog-showcase__hero-body strong {
    font-size: 0.98rem;
    line-height: 1.24;
}

.catalog-showcase__hero-body span {
    font-weight: 800;
    color: #0f72ca;
}

.catalog-showcase__nav {
    position: sticky;
    top: 10px;
    z-index: 10;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding: 12px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(173, 189, 206, 0.34);
    backdrop-filter: blur(16px);
}

.catalog-showcase__nav a {
    padding: 9px 14px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(184, 197, 212, 0.5);
    color: #1b456e;
    font-size: 0.84rem;
    font-weight: 700;
}

.catalog-showcase__sections {
    display: grid;
    gap: 24px;
}

.catalog-showcase__section {
    display: grid;
    gap: 18px;
    padding: 22px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(180, 194, 209, 0.38);
    box-shadow: 0 18px 36px rgba(31, 64, 99, 0.08);
}

.catalog-showcase__section-head {
    display: grid;
    grid-template-columns: minmax(260px, 0.74fr) minmax(220px, 0.26fr);
    gap: 18px;
    align-items: center;
}

.catalog-showcase__section-copy {
    display: grid;
    gap: 10px;
}

.catalog-showcase__section-copy > p:first-child {
    margin: 0;
    font-size: 0.76rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 800;
    color: #6c8197;
}

.catalog-showcase__section-copy h2 {
    margin: 0;
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: clamp(1.8rem, 2.2vw, 2.6rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
    color: #18324b;
}

.catalog-showcase__section-description {
    margin: 0;
    max-width: 54ch;
    color: #667b90;
    line-height: 1.58;
}

.catalog-showcase__section-lead {
    display: grid;
    place-items: center;
    min-height: 210px;
    padding: 18px;
    border-radius: 24px;
    background: linear-gradient(180deg, #fcfdff 0%, #eef4f9 100%);
}

.catalog-showcase__section-lead img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.catalog-showcase__section-lead span {
    font-size: 2rem;
    font-weight: 800;
    color: #8ea4ba;
}

.catalog-showcase__feature-rail {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.catalog-showcase__feature-card {
    display: grid;
    grid-template-columns: minmax(220px, 0.56fr) minmax(0, 0.44fr);
    overflow: hidden;
    border-radius: 26px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid rgba(180, 194, 209, 0.44);
    box-shadow: 0 14px 28px rgba(31, 64, 99, 0.08);
}

.catalog-showcase__feature-image {
    display: grid;
    place-items: center;
    min-height: 240px;
    padding: 18px;
    background: linear-gradient(180deg, #fcfdff 0%, #edf4f9 100%);
}

.catalog-showcase__feature-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.catalog-showcase__feature-image span {
    font-size: 2rem;
    font-weight: 800;
    color: #8ea4ba;
}

.catalog-showcase__feature-body {
    display: grid;
    align-content: space-between;
    gap: 14px;
    padding: 18px;
}

.catalog-showcase__feature-body p {
    margin: 0 0 8px;
    font-size: 0.76rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 800;
    color: #6d8198;
}

.catalog-showcase__feature-body h3 {
    margin: 0;
    font-size: clamp(1.1rem, 1.35vw, 1.45rem);
    line-height: 1.12;
    color: #18324b;
}

.catalog-showcase__feature-body strong {
    font-size: 1.4rem;
    color: #0f72ca;
}

.catalog-showcase__product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.catalog-showcase__product-card {
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(188, 202, 216, 0.48);
    box-shadow: 0 12px 26px rgba(31, 64, 99, 0.06);
}

.catalog-showcase__product-image {
    display: grid;
    place-items: center;
    height: 260px;
    padding: 18px;
    background: linear-gradient(180deg, #fcfdff 0%, #eef4f9 100%);
}

.catalog-showcase__product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.catalog-showcase__product-image span {
    font-size: 1.8rem;
    font-weight: 800;
    color: #8ea4ba;
}

.catalog-showcase__product-body {
    display: grid;
    gap: 10px;
    padding: 16px 16px 18px;
}

.catalog-showcase__product-body h3 {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.22;
    color: #17324c;
}

.catalog-showcase__product-body p {
    margin: 0;
    color: #6a7c90;
    line-height: 1.48;
}

.catalog-showcase__product-footer {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.catalog-showcase__product-footer strong {
    font-size: 1.08rem;
    color: #0f72ca;
}

.catalog-showcase__footer {
    padding: 4px 6px 28px;
    text-align: center;
    color: #6a7c90;
    font-size: 0.88rem;
    font-weight: 700;
}

@media (max-width: 1240px) {
    .catalog-showcase__hero,
    .catalog-showcase__section-head,
    .catalog-showcase__feature-card {
        grid-template-columns: minmax(0, 1fr);
    }

    .catalog-showcase__feature-image {
        min-height: 220px;
    }
}

@media (max-width: 920px) {
    .catalog-showcase {
        width: min(100vw - 22px, 100%);
        margin: 18px auto 28px;
    }

    .catalog-showcase__hero-grid,
    .catalog-showcase__feature-rail,
    .catalog-showcase__product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .catalog-showcase__hero,
    .catalog-showcase__section {
        padding: 18px;
        border-radius: 24px;
    }

    .catalog-showcase__hero-grid,
    .catalog-showcase__feature-rail,
    .catalog-showcase__product-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .catalog-showcase__hero-card.is-primary {
        grid-column: span 1;
        grid-row: span 1;
    }

    .catalog-showcase__product-image,
    .catalog-showcase__feature-image,
    .catalog-showcase__section-lead {
        height: 220px;
        min-height: 220px;
    }
}

/* 2026-04-22 catalog public final image-fit override */

.catalog-showcase__hero-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}

.catalog-showcase__hero-card {
    grid-template-rows: minmax(0, 1fr) 108px;
}

.catalog-showcase__hero-image,
.catalog-showcase__section-lead,
.catalog-showcase__product-image {
    display: grid;
    place-items: center;
    overflow: hidden;
    background: linear-gradient(180deg, #fcfdff 0%, #eef4f9 100%);
}

.catalog-showcase__hero-image {
    padding: 20px 22px 18px;
}

.catalog-showcase__section-lead {
    min-height: 240px;
    padding: 22px 24px;
}

.catalog-showcase__product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}

.catalog-showcase__product-card {
    display: grid;
    grid-template-rows: 312px minmax(128px, auto);
    min-width: 0;
}

.catalog-showcase__product-image {
    height: 312px;
    min-height: 312px;
    padding: 26px 24px 20px;
}

.catalog-showcase__hero-asset,
.catalog-showcase__lead-asset,
.catalog-showcase__product-asset,
.catalog-showcase__hero-image img,
.catalog-showcase__section-lead img,
.catalog-showcase__product-image img {
    display: block !important;
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 100% !important;
    margin: auto !important;
    object-fit: contain !important;
    object-position: center !important;
}

.catalog-showcase__hero-asset,
.catalog-showcase__lead-asset,
.catalog-showcase__product-asset {
    width: 100%;
    height: 100%;
}

.catalog-showcase__product-body {
    display: grid;
    align-content: start;
    gap: 10px;
    padding: 16px 18px 18px;
    border-top: 1px solid rgba(188, 202, 216, 0.28);
}

.catalog-showcase__product-body h3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    min-height: calc(2 * 1.24em);
    margin: 0;
    line-height: 1.24;
    overflow-wrap: anywhere;
}

.catalog-showcase__pack {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    min-height: 1.45em;
    margin: 0;
}

.catalog-showcase__product-footer {
    margin-top: auto;
}

@media (max-width: 920px) {
    .catalog-showcase__product-grid,
    .catalog-showcase__hero-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .catalog-showcase__product-card {
        grid-template-rows: 280px minmax(124px, auto);
    }

    .catalog-showcase__product-image {
        height: 280px;
        min-height: 280px;
    }
}

@media (max-width: 720px) {
    .catalog-showcase__product-grid,
    .catalog-showcase__hero-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .catalog-showcase__hero-card.is-primary {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* 2026-04-22 hard public catalog image-stage reset */

.catalog-showcase__product-card,
.catalog-open-card {
    grid-template-rows: auto minmax(126px, auto) !important;
}

.catalog-showcase__product-image,
.catalog-open-card__image {
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 1 / 1 !important;
    padding: 22px !important;
}

.catalog-showcase__section-lead,
.catalog-open-section__lead {
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 1 / 1 !important;
    padding: 22px !important;
}

.catalog-showcase__hero-image,
.catalog-open-hero-card__image {
    padding: 20px !important;
}

.catalog-showcase__product-asset,
.catalog-open-card__image img,
.catalog-showcase__lead-asset,
.catalog-open-section__lead img,
.catalog-showcase__hero-asset,
.catalog-open-hero-card__image img {
    display: block !important;
    width: auto !important;
    height: auto !important;
    max-width: 84% !important;
    max-height: 84% !important;
    margin: auto !important;
    object-fit: contain !important;
    object-position: center !important;
}

/* 2026-04-23 authoritative public catalog card system */

.catalog-showcase__hero-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    grid-auto-rows: 206px !important;
    gap: 16px !important;
    align-items: stretch !important;
}

.catalog-showcase__hero-card {
    display: grid !important;
    grid-template-rows: minmax(0, 1fr) 108px !important;
    min-width: 0 !important;
    overflow: hidden !important;
}

.catalog-showcase__hero-card.is-primary {
    grid-column: span 2 !important;
    grid-row: span 2 !important;
}

.catalog-showcase__hero-image {
    display: grid !important;
    place-items: center !important;
    min-height: 0 !important;
    height: auto !important;
    aspect-ratio: auto !important;
    overflow: hidden !important;
    padding: 22px !important;
    background: linear-gradient(180deg, #fcfdff 0%, #eef4f9 100%) !important;
}

.catalog-showcase__hero-card.is-primary .catalog-showcase__hero-image {
    padding: 26px !important;
}

.catalog-showcase__hero-asset,
.catalog-showcase__lead-asset,
.catalog-showcase__product-asset {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: contain !important;
}

.catalog-showcase__hero-card:not(.is-primary) .catalog-showcase__hero-asset {
    background-size: contain !important;
}

.catalog-showcase__hero-body {
    display: grid !important;
    align-content: start !important;
    gap: 6px !important;
    padding: 14px 16px 16px !important;
    background: #ffffff !important;
}

.catalog-showcase__hero-body strong {
    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 2 !important;
    overflow: hidden !important;
    min-height: calc(2 * 1.2em) !important;
    margin: 0 !important;
    line-height: 1.2 !important;
}

.catalog-showcase__product-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 18px !important;
    align-items: stretch !important;
}

.catalog-showcase__product-card {
    display: grid !important;
    grid-template-rows: 268px minmax(130px, auto) !important;
    min-width: 0 !important;
    overflow: hidden !important;
}

.catalog-showcase__product-image {
    display: grid !important;
    place-items: center !important;
    height: 268px !important;
    min-height: 268px !important;
    padding: 24px !important;
    overflow: hidden !important;
    background: linear-gradient(180deg, #fcfdff 0%, #eef4f9 100%) !important;
}

.catalog-showcase__product-body {
    display: grid !important;
    align-content: start !important;
    gap: 8px !important;
    padding: 16px 18px 18px !important;
    border-top: 1px solid rgba(188, 202, 216, 0.28) !important;
    background: #ffffff !important;
}

.catalog-showcase__product-body h3 {
    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 2 !important;
    overflow: hidden !important;
    min-height: calc(2 * 1.22em) !important;
    margin: 0 !important;
    line-height: 1.22 !important;
}

.catalog-showcase__pack {
    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 1 !important;
    overflow: hidden !important;
    min-height: 1.34em !important;
    margin: 0 !important;
}

@media (max-width: 920px) {
    .catalog-showcase__hero-grid,
    .catalog-showcase__product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .catalog-showcase__hero-grid {
        grid-auto-rows: 192px !important;
    }
}

@media (max-width: 720px) {
    .catalog-showcase__hero-grid,
    .catalog-showcase__product-grid {
        grid-template-columns: minmax(0, 1fr) !important;
    }

    .catalog-showcase__hero-card.is-primary {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
}

/* 2026-04-25 catalog density controls */
.catalog-showcase__controls {
    display: flex;
    justify-content: flex-end;
}

.product-density-toolbar {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid rgba(188, 202, 216, 0.56);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

.product-density-toolbar__label {
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #5a6d83;
    white-space: nowrap;
}

.product-density-toolbar__buttons {
    display: inline-flex;
    gap: 6px;
    padding: 4px;
    border-radius: 999px;
    background: #edf3f8;
}

.product-density-button {
    min-height: 32px;
    padding: 0 12px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #4f6277;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
}

.product-density-button.is-active {
    background: linear-gradient(135deg, var(--catalog-brand-primary, #c63f34), var(--catalog-brand-accent, #163a63));
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(22, 58, 99, 0.18);
}

[data-product-density-root][data-product-density="2"] .catalog-showcase__product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

[data-product-density-root][data-product-density="3"] .catalog-showcase__product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

[data-product-density-root][data-product-density="4"] .catalog-showcase__product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

@media (max-width: 920px) {
    .catalog-showcase__controls {
        justify-content: stretch;
    }

    .product-density-toolbar {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 720px) {
    .catalog-showcase__controls {
        justify-content: stretch;
    }

    .product-density-toolbar {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }

    .product-density-toolbar__buttons {
        width: 100%;
        justify-content: space-between;
    }

    .product-density-button {
        flex: 1 1 0;
        text-align: center;
    }
}

.marketing-shell--register {
    min-height: 100vh;
}

.register-page {
    width: var(--mk-width);
    margin: 0 auto;
    padding: 22px 0 48px;
}

.register-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: end;
    margin-bottom: 18px;
}

.register-hero h1 {
    margin: 0 0 8px;
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.02;
}

.register-hero p {
    margin: 0;
    max-width: 760px;
    color: rgba(236, 246, 255, 0.76);
}

.register-hero__chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.register-panel {
    border: 1px solid rgba(146, 186, 213, 0.14);
    border-radius: 28px;
    background: rgba(7, 15, 26, 0.72);
    box-shadow: var(--mk-shadow);
    backdrop-filter: blur(18px);
    padding: 24px;
}

.register-panel--compact {
    max-width: 860px;
}

.register-form {
    display: grid;
    gap: 20px;
}

.register-form__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.register-form label,
.register-form__full {
    display: grid;
    gap: 8px;
    font-size: 13px;
    color: rgba(236, 246, 255, 0.88);
}

.register-form input,
.register-form select,
.register-form textarea {
    width: 100%;
    min-height: 48px;
    border-radius: 16px;
    border: 1px solid rgba(146, 186, 213, 0.16);
    background: rgba(255, 255, 255, 0.05);
    color: var(--mk-text);
    padding: 12px 14px;
    font: inherit;
}

.register-form textarea {
    min-height: 128px;
    resize: vertical;
}

.register-form input::placeholder,
.register-form textarea::placeholder {
    color: rgba(154, 178, 197, 0.74);
}

.register-form__full {
    grid-column: 1 / -1;
}

.register-form__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.register-form__hint,
.register-success p {
    color: rgba(236, 246, 255, 0.72);
    font-size: 13px;
}

.register-success {
    display: grid;
    gap: 16px;
}

.register-success h1 {
    margin: 0;
    font-size: clamp(32px, 4vw, 44px);
}

.register-success__meta {
    display: inline-flex;
    width: fit-content;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(146, 186, 213, 0.18);
    background: rgba(255, 255, 255, 0.04);
    font-size: 13px;
    font-weight: 700;
}

@media (max-width: 920px) {
    .register-hero,
    .register-form__grid {
        grid-template-columns: 1fr;
    }

    .register-hero__chips {
        justify-content: flex-start;
    }
}
