.whmb {
    --whmb-black: #070707;
    --whmb-yellow: #ffc400;
    --whmb-gold: #f0aa00;
    --whmb-charcoal: #171717;
    --whmb-muted: #5f6673;
    --whmb-border: #e3e6ea;
    --whmb-bg: #f7f8fa;
    color: var(--whmb-black);
    font-family: inherit;
    line-height: 1.55;
}

.whmb *,
.whmb *::before,
.whmb *::after {
    box-sizing: border-box;
}

.whmb a {
    color: inherit;
}

.whmb-hero,
.whmb-single-hero,
.whmb-section,
.whmb-promo,
.whmb-related {
    max-width: 1180px;
    margin: 0 auto 28px;
}

.whmb-hero,
.whmb-single-hero {
    border: 1px solid var(--whmb-border);
    border-radius: 28px;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 15%, rgba(255, 196, 0, 0.18), transparent 28%),
        linear-gradient(135deg, #ffffff 0%, #f3f5f8 100%);
    padding: clamp(28px, 5vw, 64px);
}

.whmb-hero-landing h1,
.whmb-single h1 {
    max-width: 900px;
    margin: 0 0 16px;
    font-size: clamp(34px, 6vw, 72px);
    line-height: 0.95;
    letter-spacing: -0.06em;
    text-transform: uppercase;
}

.whmb-hero-landing p,
.whmb-single-copy > p:last-of-type {
    max-width: 680px;
    font-size: clamp(17px, 2vw, 21px);
    color: #252a31;
}

.whmb-eyebrow,
.whmb-series {
    color: var(--whmb-gold);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.whmb-series-large {
    margin: -4px 0 6px;
    font-size: clamp(26px, 4vw, 46px);
    letter-spacing: -0.04em;
    text-transform: none;
}

.whmb-single h2,
.whmb-section h2,
.whmb-promo h2,
.whmb-related h2 {
    margin: 0 0 14px;
    font-size: clamp(24px, 3vw, 38px);
    line-height: 1.08;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.whmb-single-copy h2 {
    color: var(--whmb-gold);
    font-size: clamp(18px, 2.6vw, 30px);
}

.whmb-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.whmb-badges span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #d6dbe1;
    border-radius: 999px;
    background: #fff;
    padding: 10px 14px;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
}

.whmb-badges span::before,
.whmb-feature-list li::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--whmb-yellow);
    flex: 0 0 auto;
}

.whmb-product-grid {
    max-width: 1180px;
    margin: 0 auto 28px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.whmb-card,
.whmb-spec-card,
.whmb-section,
.whmb-related {
    border: 1px solid var(--whmb-border);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 16px 44px rgba(9, 18, 30, 0.06);
}

.whmb-card {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    overflow: hidden;
}

.whmb-card-image-link {
    min-height: 280px;
    background: var(--whmb-bg);
    text-decoration: none;
}

.whmb-card-body {
    padding: 28px;
}

.whmb-card h2 {
    margin: 0 0 8px;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 0.95;
    letter-spacing: -0.06em;
    text-transform: uppercase;
}

.whmb-card p {
    color: #303640;
}

.whmb-board-image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: contain;
    background: #f7f8fa;
}

.whmb-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 280px;
    padding: 24px;
    color: var(--whmb-muted);
    background:
        linear-gradient(45deg, rgba(255,196,0,0.08) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255,196,0,0.08) 25%, transparent 25%),
        #f4f5f7;
    text-align: center;
    font-weight: 700;
}

.whmb-feature-list {
    list-style: none;
    margin: 18px 0 24px;
    padding: 0;
}

.whmb-feature-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 8px 0;
    font-weight: 650;
}

.whmb-feature-list li::before {
    margin-top: 8px;
}

.whmb-feature-list-columns {
    columns: 2;
    column-gap: 38px;
}

.whmb-feature-list-columns li {
    break-inside: avoid;
}

.whmb-button,
.whmb-related a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--whmb-yellow);
    color: #000;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.18);
}

.whmb-single-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
    gap: clamp(24px, 5vw, 60px);
    align-items: center;
}

.whmb-single-image {
    border: 1px solid var(--whmb-border);
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
}

.whmb-section,
.whmb-related {
    padding: clamp(24px, 4vw, 42px);
}

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

.whmb-spec-card {
    padding: 22px;
    box-shadow: none;
    background: linear-gradient(180deg, #ffffff, #fbfbfc);
}

.whmb-spec-card h3 {
    margin: 0 0 12px;
    padding-bottom: 10px;
    border-bottom: 4px solid var(--whmb-yellow);
    font-size: 18px;
    line-height: 1.1;
    text-transform: uppercase;
}

.whmb-spec-card ul {
    margin: 0;
    padding-left: 18px;
}

.whmb-spec-card li {
    margin: 7px 0;
}

.whmb-promo {
    border-radius: 0;
    padding: clamp(24px, 4vw, 38px);
    background: repeating-linear-gradient(135deg, #000 0 18px, #111 18px 36px);
    color: #fff;
    text-align: center;
}

.whmb-promo h2 {
    color: var(--whmb-yellow);
}

.whmb-promo p {
    max-width: 720px;
    margin: 0 auto;
    font-size: 18px;
}

.whmb-related-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

@media (max-width: 980px) {
    .whmb-product-grid,
    .whmb-card,
    .whmb-single-hero,
    .whmb-spec-grid {
        grid-template-columns: 1fr;
    }

    .whmb-card-image-link,
    .whmb-board-image,
    .whmb-image-placeholder {
        min-height: 220px;
    }

    .whmb-feature-list-columns {
        columns: 1;
    }
}

@media (max-width: 640px) {
    .whmb-hero,
    .whmb-single-hero,
    .whmb-section,
    .whmb-related,
    .whmb-card-body {
        padding: 22px;
        border-radius: 18px;
    }

    .whmb-hero-landing h1,
    .whmb-single h1,
    .whmb-card h2 {
        letter-spacing: -0.04em;
    }
}

/* Full-width page support for the plugin-generated landing and product pages. */
body.whmb-is-message-board-page .whmb-full-width-template,
body.whmb-is-message-board-page .whmb-full-width-content,
body.whmb-is-message-board-page .whmb-full-width-page,
body.whmb-is-message-board-page .whmb-full-width-entry-content {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

body.whmb-is-message-board-page .whmb-full-width-page::before,
body.whmb-is-message-board-page .whmb-full-width-page::after,
body.whmb-is-message-board-page .whmb-full-width-entry-content::before,
body.whmb-is-message-board-page .whmb-full-width-entry-content::after {
    display: none;
}

body.whmb-is-message-board-page .whmb {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: clamp(16px, 3vw, 42px);
    overflow-x: clip;
}

body.whmb-is-message-board-page .whmb-hero,
body.whmb-is-message-board-page .whmb-single-hero,
body.whmb-is-message-board-page .whmb-section,
body.whmb-is-message-board-page .whmb-product-grid,
body.whmb-is-message-board-page .whmb-promo,
body.whmb-is-message-board-page .whmb-related {
    max-width: 1320px;
}

body.whmb-is-message-board-page .whmb-promo {
    max-width: none;
    margin-left: calc(clamp(16px, 3vw, 42px) * -1);
    margin-right: calc(clamp(16px, 3vw, 42px) * -1);
}

/* Answer Engine Optimization / Generative Engine Optimization / LLM-ready content blocks. */
.whmb-ai-overview {
    background:
        linear-gradient(135deg, rgba(255, 196, 0, 0.10), rgba(255, 255, 255, 0.96) 34%),
        #fff;
}

.whmb-answer {
    max-width: 980px;
    margin: 0 0 24px;
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 750;
    color: #171717;
}

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

.whmb-ai-grid > div {
    border: 1px solid var(--whmb-border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
}

.whmb-ai-grid h3 {
    margin: 0 0 8px;
    font-size: 16px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.whmb-ai-grid p {
    margin: 0;
    color: #303640;
}

.whmb-ai-grid a {
    display: inline-block;
    margin-top: 10px;
    font-weight: 800;
    color: #000;
    text-decoration-thickness: 2px;
    text-decoration-color: var(--whmb-yellow);
}

@media (max-width: 980px) {
    .whmb-ai-grid {
        grid-template-columns: 1fr;
    }
}

/* Co-branded landing header logo support. */
.whmb-brand-lockup {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin: 0 0 24px;
    padding: 12px 16px;
    border: 1px solid rgba(7, 7, 7, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 12px 28px rgba(9, 18, 30, 0.06);
}

.whmb-brand-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    min-height: 42px;
}

.whmb-brand-logo img {
    display: block;
    width: auto;
    max-width: 190px;
    max-height: 54px;
    object-fit: contain;
}

.whmb-brand-logo span,
.whmb-brand-lockup-text span {
    font-weight: 900;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.whmb-brand-separator,
.whmb-brand-lockup-text strong {
    color: var(--whmb-gold);
    font-size: 22px;
    line-height: 1;
}

.whmb-hero-landing .whmb-eyebrow {
    margin-bottom: 12px;
}

.whmb-hero-landing h1 {
    max-width: 1040px;
}

.whmb-hero-landing p {
    max-width: 850px;
}

@media (max-width: 640px) {
    .whmb-brand-lockup {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
        align-items: center;
        justify-content: center;
        width: min(100%, 360px);
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        gap: 8px;
        padding: 14px 16px;
        border-radius: 24px;
    }

    .whmb-brand-logo {
        min-width: 0;
        min-height: 50px;
        width: 100%;
    }

    .whmb-brand-logo img {
        width: 100%;
        max-width: 150px;
        max-height: 62px;
        object-fit: contain;
    }

    .whmb-brand-logo:first-child img {
        margin-left: auto;
    }

    .whmb-brand-logo:last-child img {
        margin-right: auto;
    }

    .whmb-brand-separator,
    .whmb-brand-lockup-text strong {
        font-size: 24px;
        line-height: 1;
        padding: 0 2px;
    }
}

@media (max-width: 360px) {
    .whmb-brand-lockup {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 14px;
    }

    .whmb-brand-logo img {
        width: auto;
        max-width: 180px;
    }

    .whmb-brand-logo:first-child img,
    .whmb-brand-logo:last-child img {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Mobile header spacing: prevents fixed/sticky site headers from covering the hero content. */
@media (max-width: 782px) {
    body.whmb-is-message-board-page .whmb {
        padding-top: 96px;
    }

    body.admin-bar.whmb-is-message-board-page .whmb {
        padding-top: 118px;
    }
}

@media (max-width: 480px) {
    body.whmb-is-message-board-page .whmb {
        padding-top: 110px;
    }

    body.admin-bar.whmb-is-message-board-page .whmb {
        padding-top: 132px;
    }
}

/* v1.0.7: cleaner mobile logo lockup and professional feature icons. */
.whmb-feature-list li::before {
    content: none;
    display: none;
}

.whmb-feature-list li {
    align-items: center;
    gap: 12px;
}

.whmb-feature-list li > span:not(.whmb-feature-icon) {
    min-width: 0;
}

.whmb-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 999px;
    background: var(--whmb-black);
    color: var(--whmb-yellow);
    box-shadow: inset 0 0 0 2px rgba(255, 196, 0, 0.22);
}

.whmb-feature-icon svg {
    display: block;
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.whmb-feature-icon-grid svg,
.whmb-feature-icon-eye svg {
    fill: currentColor;
    stroke: none;
}

.whmb-card .whmb-feature-list {
    display: grid;
    gap: 8px;
}

.whmb-card .whmb-feature-list li {
    margin: 0;
    padding: 8px 10px;
    border: 1px solid rgba(7, 7, 7, 0.07);
    border-radius: 14px;
    background: #fafbfc;
}

@media (max-width: 640px) {
    .whmb-brand-lockup {
        grid-template-columns: 1fr;
        width: min(100%, 345px);
        gap: 10px;
        padding: 18px 22px;
        border-radius: 26px;
        text-align: center;
    }

    .whmb-brand-separator,
    .whmb-brand-lockup-text strong {
        display: none;
    }

    .whmb-brand-logo {
        min-height: 0;
        width: 100%;
        padding: 2px 0;
    }

    .whmb-brand-logo img {
        width: auto;
        max-width: 230px;
        max-height: 64px;
        margin-left: auto;
        margin-right: auto;
    }

    .whmb-brand-logo:first-child img {
        max-width: 235px;
    }

    .whmb-brand-logo:last-child img {
        max-width: 205px;
    }

    .whmb-brand-logo + .whmb-brand-logo {
        padding-top: 8px;
        border-top: 1px solid rgba(7, 7, 7, 0.08);
    }

    .whmb-brand-lockup-text span {
        display: block;
        width: 100%;
        line-height: 1.1;
    }

    .whmb-card .whmb-feature-list li {
        padding: 9px 10px;
    }
}
