:root {
    --landing-bg: #07111f;
    --landing-bg-soft: #0f172a;
    --landing-surface: #ffffff;
    --landing-surface-soft: #f6f8fb;
    --landing-surface-muted: rgba(255, 255, 255, 0.08);
    --landing-ink: #0f172a;
    --landing-ink-soft: #1e293b;
    --landing-muted: #64748b;
    --landing-muted-strong: #94a3b8;
    --landing-line: rgba(148, 163, 184, 0.22);
    --landing-accent: #ea580c;
    --landing-accent-soft: #ffedd5;
    --landing-cyan: #22d3ee;
    --landing-amber: #f59e0b;
    --landing-shadow: 0 28px 80px rgba(2, 6, 23, 0.16);
    --landing-radius: 28px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--landing-ink);
    font-family: 'Manrope', sans-serif;
    background:
        radial-gradient(circle at top left, rgba(34, 211, 238, 0.09), transparent 28rem),
        linear-gradient(180deg, #f8fafc 0%, #ffffff 28%, #eef2f7 100%);
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

.landing-page {
    position: relative;
    overflow-x: clip;
    padding-top: 6.9rem;
}

.landing-seo-h1 {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.landing-page::before,
.landing-page::after {
    content: '';
    position: fixed;
    inset: auto;
    pointer-events: none;
    z-index: 0;
    border-radius: 999px;
    filter: blur(90px);
}

.landing-page::before {
    width: 22rem;
    height: 22rem;
    top: 6rem;
    right: -8rem;
    background: rgba(34, 211, 238, 0.18);
}

.landing-page::after {
    width: 24rem;
    height: 24rem;
    bottom: 8rem;
    left: -10rem;
    background: rgba(234, 88, 12, 0.14);
}

.landing-shell {
    width: min(1240px, calc(100% - 2rem));
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.landing-kicker,
.landing-section__eyebrow,
.landing-panel-label,
.landing-card__tag,
.landing-component-category__label,
.landing-band__lead span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.landing-kicker,
.landing-section__eyebrow {
    color: var(--landing-accent);
}

.landing-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.25rem;
    padding: 0.85rem 1.3rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 800;
    transition:
        transform 180ms ease,
        background-color 180ms ease,
        border-color 180ms ease,
        color 180ms ease,
        box-shadow 180ms ease;
    border: 1px solid transparent;
}

.landing-button:hover {
    transform: translateY(-1px);
}

.landing-button--solid {
    color: #fff;
    background: linear-gradient(135deg, #ea580c 0%, #fb923c 100%);
    box-shadow: 0 18px 40px rgba(234, 88, 12, 0.28);
}

.landing-button--ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
}

.landing-button--ghost-light {
    color: var(--landing-ink);
    border-color: rgba(15, 23, 42, 0.12);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(12px);
}

.landing-button--ghost-light:hover {
    color: #9a3412;
    border-color: rgba(234, 88, 12, 0.26);
    background: rgba(255, 255, 255, 0.92);
}

.landing-button--ghost-dark {
    color: var(--landing-ink);
    border-color: rgba(15, 23, 42, 0.14);
    background: rgba(255, 255, 255, 0.88);
}

.landing-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.landing-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.1rem;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.84rem;
    font-weight: 700;
}

.landing-chip-row--compact {
    gap: 0.5rem;
}

.landing-chip--soft {
    background: var(--landing-accent-soft);
    border-color: rgba(234, 88, 12, 0.14);
    color: #9a3412;
}

.landing-text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    color: var(--landing-accent);
}

.landing-text-link::after {
    content: '+';
    font-size: 1rem;
    line-height: 1;
}

.landing-text-link--inverse {
    color: #fdba74;
}

.landing-section {
    padding: 2.5rem 0;
    position: relative;
}

.landing-section__heading {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 1.5rem 3rem;
    align-items: end;
    margin-bottom: 1.8rem;
}

.landing-section__heading h2 {
    margin: 0.55rem 0 0;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.landing-section__heading--single-line {
    display: block;
}

.landing-section__heading--single-line h2 {
    white-space: nowrap;
}

.landing-section__heading p {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.85;
    color: var(--landing-muted);
    max-width: 42rem;
}

.landing-section__heading--inverse h2,
.landing-section__heading--inverse p {
    color: #fff;
}

.landing-header {
    position: sticky;
    top: 0;
    z-index: 30;
    padding: 0;
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.96) 0%, rgba(248, 250, 252, 0.84) 72%, rgba(248, 250, 252, 0) 100%);
    backdrop-filter: blur(18px);
}

.landing-header__inner {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem 2.25rem;
    min-height: 6.6rem;
    padding: 1.2rem 1.65rem;
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.96);
    border: 0;
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
}

.landing-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    flex: 0 0 auto;
}

.landing-brand__mark {
    width: 3.35rem;
    height: 3.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.landing-brand--header .landing-brand__mark {
    color: #2f3fb7;
}

.landing-brand--header .landing-brand__mark svg {
    width: 100%;
    height: 100%;
}

.landing-brand__copy {
    display: inline-flex;
    flex-direction: column;
    gap: 0.08rem;
}

.landing-brand__copy strong {
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.landing-brand__copy small {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.landing-brand--header .landing-brand__copy strong {
    color: #25367f;
}

.landing-brand--header .landing-brand__copy small {
    color: #617198;
}

.landing-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.landing-nav--desktop {
    margin: 0 auto;
}

.landing-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
    min-height: 2.95rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    color: #243046;
    font-size: 0.95rem;
    font-weight: 700;
    transition:
        color 180ms ease,
        background-color 180ms ease;
}

.landing-nav__link:hover {
    color: #1d4ed8;
    background: rgba(37, 99, 235, 0.06);
}

.landing-nav__link svg {
    width: 0.92rem;
    height: 0.92rem;
}

.landing-header__tools {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex: 0 0 auto;
}

.landing-icon-button {
    width: 3.75rem;
    height: 3.75rem;
    border: 1px solid rgba(37, 48, 70, 0.14);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #243046;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        color 180ms ease,
        box-shadow 180ms ease,
        background-color 180ms ease;
}

.landing-icon-button:hover {
    transform: translateY(-1px);
    border-color: rgba(37, 99, 235, 0.2);
    color: #1d4ed8;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
}

.landing-icon-button svg {
    width: 1.55rem;
    height: 1.55rem;
}

.cart-btn {
    position: relative;
}

.cart-btn__badge {
    position: absolute;
    top: -0.2rem;
    right: -0.2rem;
    min-width: 1.35rem;
    height: 1.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.28rem;
    border: 2px solid #fff;
    border-radius: 999px;
    background: #ef4444;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1;
}

.cart-btn__badge.is-empty {
    display: none;
}

.landing-icon-button--menu {
    background: #2f3fb7;
    border-color: #2f3fb7;
    color: #fff;
}

.landing-icon-button--menu:hover {
    color: #fff;
    border-color: #24339b;
    background: #24339b;
}

.landing-nav-panel {
    position: absolute;
    top: calc(100% + 0.9rem);
    right: 0;
    width: min(24rem, 100%);
    padding: 1rem;
    border-radius: 1.6rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(226, 232, 240, 0.92);
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.12);
    display: none;
}

.landing-header.is-open .landing-nav-panel {
    display: block;
}

.landing-nav--panel {
    flex-direction: column;
    align-items: stretch;
}

.landing-nav--panel .landing-nav__link {
    justify-content: space-between;
    border-radius: 1rem;
}

.landing-search-overlay {
    position: fixed;
    inset: 0;
    z-index: 45;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 7rem 1rem 1rem;
    background: rgba(15, 23, 42, 0.32);
    backdrop-filter: blur(14px);
}

.landing-search-overlay.is-open {
    display: flex;
}

.global-cart {
    position: fixed;
    inset: 0;
    z-index: 320;
    display: none;
}

.global-cart.is-open {
    display: block;
}

.global-cart__overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.48);
}

.global-cart__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(460px, 100%);
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    box-shadow: -24px 0 50px rgba(15, 23, 42, 0.18);
}

.global-cart__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.35rem;
    border-bottom: 1px solid #e5e7eb;
    background: linear-gradient(180deg, #fff, #f7fafc);
}

.global-cart__header h2 {
    margin: 0;
    color: #243046;
    font-size: 1.25rem;
    font-weight: 800;
}

.global-cart__header p {
    margin: 0.15rem 0 0;
    color: #6b7280;
    font-size: 0.86rem;
}

.global-cart__close {
    width: 2.35rem;
    height: 2.35rem;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    background: #fff;
    color: #243046;
    font-size: 1.45rem;
    line-height: 1;
    cursor: pointer;
}

.global-cart__items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    background: #f7fafc;
}

.global-cart__empty {
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    background: #fff;
    color: #6b7280;
    font-size: 0.92rem;
}
.global-cart__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding: 0.75rem 0.85rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    background: #fff;
    color: #243046;
    font-size: 0.86rem;
    font-weight: 800;
}
.global-cart__toolbar label {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    cursor: pointer;
}
.global-cart__toolbar input,
.global-cart__select {
    width: 1rem;
    height: 1rem;
    accent-color: #2f3fb7;
}

.global-cart__item {
    display: grid;
    grid-template-columns: auto 4.25rem minmax(0, 1fr);
    gap: 0.85rem;
    align-items: start;
    margin-bottom: 0.75rem;
    padding: 0.85rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    background: #fff;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.global-cart__image {
    width: 4.25rem;
    height: 4.25rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.35rem;
    object-fit: cover;
    background: #eef2f7;
}

.global-cart__name {
    margin: 0 0 0.35rem;
    color: #243046;
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1.35;
}

.global-cart__price {
    margin: 0 0 0.65rem;
    color: #1d4ed8;
    font-size: 0.88rem;
    font-weight: 800;
}

.global-cart__controls {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.global-cart__qty {
    width: 2rem;
    height: 2rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.35rem;
    background: #fff;
    color: #243046;
    font-weight: 800;
    cursor: pointer;
}

.global-cart__qty-value {
    min-width: 1.75rem;
    text-align: center;
    color: #243046;
    font-weight: 800;
}

.global-cart__remove {
    margin-left: auto;
    border: 0;
    background: transparent;
    color: #b42318;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
}

.global-cart__footer {
    position: sticky;
    bottom: 0;
    z-index: 2;
    padding: 1rem 1.25rem 1.25rem;
    border-top: 1px solid #e5e7eb;
    background: #fff;
    box-shadow: 0 -16px 34px rgba(15, 23, 42, 0.1);
}

.global-cart__total {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.8rem;
    color: #243046;
    font-weight: 800;
}
.global-cart__selected {
    margin: -0.35rem 0 0.8rem;
    color: #6b7280;
    font-size: 0.86rem;
    font-weight: 700;
}

.global-cart__browse {
    min-height: 2.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.35rem;
    background: #2f3fb7;
    color: #fff;
    font-weight: 800;
    text-decoration: none;
}

.global-cart__checkout {
    width: 100%;
    min-height: 3.35rem;
    margin-bottom: 0.7rem;
    border: 0;
    border-radius: 0.35rem;
    background: #f97316;
    color: #fff;
    font: inherit;
    font-size: 1.05rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 14px 28px rgba(249, 115, 22, 0.28);
}

.global-cart__checkout:hover {
    background: #ea580c;
}

.global-cart__checkout:disabled {
    background: #cbd5e1;
    box-shadow: none;
    cursor: not-allowed;
}

.global-cart__browse:hover {
    background: #24339b;
    color: #fff;
}

.global-checkout {
    position: fixed;
    inset: 0;
    z-index: 330;
    display: none;
}

.global-checkout.is-open {
    display: block;
}

.global-checkout__overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
}

.global-checkout__modal {
    position: relative;
    width: min(980px, calc(100% - 1.75rem));
    max-height: calc(100vh - 3rem);
    overflow-y: auto;
    margin: 1.5rem auto;
    border-radius: 0.5rem;
    background: #fff;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.22);
}

.global-checkout__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.35rem;
    border-bottom: 1px solid #e5e7eb;
    background: linear-gradient(180deg, #fff, #f7fafc);
}

.global-checkout__header h2 {
    margin: 0;
    color: #243046;
    font-size: 1.25rem;
    font-weight: 800;
}

.global-checkout__header p {
    margin: 0.2rem 0 0;
    color: #6b7280;
    font-size: 0.9rem;
}

.global-checkout__close {
    width: 2.35rem;
    height: 2.35rem;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    background: #fff;
    color: #243046;
    font-size: 1.45rem;
    line-height: 1;
    cursor: pointer;
}

.global-checkout__body {
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
    gap: 1rem;
    padding: 1rem;
}

.global-checkout__summary,
.global-checkout__form-panel {
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    background: #fff;
}

.global-checkout__summary {
    align-self: start;
    overflow: hidden;
}

.global-checkout__summary h3,
.global-checkout__section h3 {
    margin: 0;
    color: #243046;
    font-size: 0.95rem;
    font-weight: 800;
}

.global-checkout__summary h3 {
    padding: 0.85rem 0.95rem;
    border-bottom: 1px solid #e5e7eb;
    background: #f7fafc;
}

.global-checkout__summary [data-global-checkout-items] {
    display: grid;
    gap: 0.6rem;
    padding: 0.85rem;
}

.global-checkout__line {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.9rem;
    color: #243046;
    font-size: 0.9rem;
}

.global-checkout__line span {
    overflow-wrap: anywhere;
}

.global-checkout__form-panel {
    display: grid;
    gap: 1rem;
    padding: 1rem;
}

.global-checkout__error,
.global-checkout__success {
    display: none;
    padding: 0.85rem 1rem;
    border-radius: 0.4rem;
    font-size: 0.9rem;
}

.global-checkout__error {
    background: #fef2f2;
    color: #991b1b;
}

.global-checkout__success {
    background: #f0fdf4;
    color: #166534;
}

.global-checkout__section {
    display: grid;
    gap: 0.75rem;
}

.global-checkout__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.global-checkout__field {
    display: grid;
    gap: 0.4rem;
}

.global-checkout__field--full {
    grid-column: 1 / -1;
}

.global-checkout__field label {
    color: #243046;
    font-size: 0.84rem;
    font-weight: 800;
}

.global-checkout__field--required label::after {
    content: " *";
    color: #b42318;
}

.global-checkout__field input,
.global-checkout__field textarea {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 0.35rem;
    padding: 0.75rem 0.8rem;
    color: #243046;
    font: inherit;
}

.global-checkout__field input:focus,
.global-checkout__field textarea:focus {
    outline: 2px solid rgba(47, 63, 183, 0.14);
    border-color: #2f3fb7;
}

.global-checkout__field textarea {
    min-height: 5.8rem;
    resize: vertical;
}

.global-checkout__actions {
    display: block;
}

.global-checkout__submit {
    width: 100%;
    min-height: 3.35rem;
    padding: 0 1rem;
    border-radius: 0.35rem;
    font: inherit;
    font-size: 1.05rem;
    font-weight: 800;
    cursor: pointer;
}

.global-checkout__submit {
    border: 0;
    background: #f97316;
    color: #fff;
    box-shadow: 0 14px 28px rgba(249, 115, 22, 0.28);
}

.global-checkout__submit:hover {
    background: #ea580c;
}

.global-checkout__submit:disabled {
    opacity: 0.65;
    box-shadow: none;
    cursor: wait;
}

@media (max-width: 760px) {
    .global-checkout__modal {
        width: 100%;
        min-height: 100vh;
        max-height: 100vh;
        margin: 0;
        border-radius: 0;
    }

    .global-checkout__body,
    .global-checkout__grid {
        grid-template-columns: 1fr;
    }

    .global-checkout__submit {
        width: 100%;
    }
}

.landing-search-dialog {
    width: min(40rem, 100%);
    padding: 1.25rem;
    border-radius: 1.6rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(226, 232, 240, 0.92);
    box-shadow: 0 24px 80px rgba(15, 23, 42, 0.16);
}

.landing-search-dialog__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.landing-search-dialog__top strong {
    color: var(--landing-ink);
    font-size: 1.05rem;
}

.landing-search-dialog__close {
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    background: #fff;
    color: var(--landing-ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.landing-search-dialog__close svg {
    width: 1.1rem;
    height: 1.1rem;
}

.landing-search-field {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.95rem 1rem;
    border-radius: 1rem;
    background: #f8fafc;
    border: 1px solid rgba(226, 232, 240, 0.92);
}

.landing-search-field svg {
    width: 1.15rem;
    height: 1.15rem;
    color: var(--landing-muted);
    flex: 0 0 auto;
}

.landing-search-field input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--landing-ink);
}

.landing-search-results {
    display: grid;
    gap: 0.7rem;
    margin-top: 1rem;
    max-height: min(26rem, 56vh);
    overflow: auto;
}

.landing-search-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 1rem;
    border-radius: 1rem;
    background: #fff;
    border: 1px solid rgba(226, 232, 240, 0.92);
    color: var(--landing-ink);
    font-weight: 700;
}

.landing-search-link:hover {
    border-color: rgba(37, 99, 235, 0.18);
    background: rgba(37, 99, 235, 0.03);
}

.landing-search-link small {
    color: var(--landing-muted);
    font-size: 0.8rem;
}

.landing-hero {
    position: relative;
    aspect-ratio: 1920 / 730;
    height: auto;
    min-height: 0;
    background: var(--landing-bg);
}

.landing-hero__slider {
    position: relative;
    height: 100%;
    min-height: inherit;
}

.landing-hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 620ms ease;
}

.landing-hero__slide.is-active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

.landing-hero__media {
    position: absolute;
    inset: 0;
    display: block;
    background-color: #0f172a;
    background-size: cover;
    background-position: center;
}

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

.landing-hero__media::before,
.landing-hero__media::after {
    content: '';
    position: absolute;
    inset: 0;
}

.landing-hero__media::before {
    display: none;
}

.landing-hero__media::after {
    display: none;
}

.landing-hero__media--fallback {
    background:
        radial-gradient(circle at top right, rgba(34, 211, 238, 0.22), transparent 20rem),
        linear-gradient(135deg, #07111f 0%, #10213f 52%, #1b315d 100%);
}

.landing-hero__grid {
    min-height: calc(100vh - 5rem);
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.85fr);
    gap: 2rem;
    align-items: center;
    padding: 4.5rem 0 5rem;
}

.landing-hero__copy {
    max-width: 42rem;
}

.landing-hero__copy h1 {
    margin: 0.75rem 0 1rem;
    color: #fff;
    font-size: clamp(3rem, 6vw, 5.75rem);
    line-height: 0.95;
    letter-spacing: -0.06em;
    text-wrap: balance;
}

.landing-hero__copy p {
    margin: 0 0 1.75rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
    line-height: 1.9;
    max-width: 34rem;
}

.landing-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.8rem;
}

.landing-hero__panel {
    padding: 1.55rem;
    border-radius: calc(var(--landing-radius) + 2px);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.06) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 28px 80px rgba(2, 6, 23, 0.36);
    backdrop-filter: blur(18px);
}

.landing-hero__panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.landing-panel-label {
    color: rgba(255, 255, 255, 0.62);
}

.landing-panel-status {
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    color: #fed7aa;
    background: rgba(234, 88, 12, 0.14);
    font-size: 0.78rem;
    font-weight: 800;
}

.landing-metric-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.landing-metric-card {
    padding: 1rem;
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.landing-metric-card__value {
    color: #fff;
    font-size: clamp(1.7rem, 4vw, 2.3rem);
    font-weight: 800;
    letter-spacing: -0.05em;
}

.landing-metric-card__label {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-top: 0.35rem;
}

.landing-hero__contact {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.landing-hero__contact-label {
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.landing-hero__contact a {
    display: inline-block;
    margin-top: 0.45rem;
    color: #fff;
    font-size: 1.35rem;
    font-weight: 800;
}

.landing-hero__contact p,
.landing-hero__contact span {
    display: block;
    margin: 0.55rem 0 0;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.75;
}

.landing-hero__dots {
    position: absolute;
    left: 50%;
    bottom: 1.2rem;
    display: flex;
    gap: 0.75rem;
    transform: translateX(-50%);
    z-index: 3;
}

.landing-hero__dot {
    width: 2.4rem;
    min-height: 1.5rem;
    padding: 0;
    border-radius: 999px;
    border: 0;
    background: linear-gradient(
        to bottom,
        transparent calc(50% - 0.18rem),
        rgba(255, 255, 255, 0.22) calc(50% - 0.18rem),
        rgba(255, 255, 255, 0.22) calc(50% + 0.18rem),
        transparent calc(50% + 0.18rem)
    );
    cursor: pointer;
    transition: background-color 180ms ease, width 180ms ease;
}

.landing-hero__dot.is-active {
    width: 3.8rem;
    background: linear-gradient(
        to bottom,
        transparent calc(50% - 0.18rem),
        #fff calc(50% - 0.18rem),
        #fff calc(50% + 0.18rem),
        transparent calc(50% + 0.18rem)
    );
}

.landing-band {
    position: relative;
    z-index: 5;
    padding: 0 0 1.2rem;
}

.landing-band__inner {
    padding: 1.35rem 1.5rem;
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: var(--landing-shadow);
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    gap: 1rem 1.5rem;
    align-items: center;
}

.landing-band__lead strong {
    display: block;
    margin-top: 0.35rem;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--landing-ink);
}

.landing-band__lead p {
    margin: 0.45rem 0 0;
    color: var(--landing-muted);
    line-height: 1.8;
}

.landing-band--secondary .landing-band__inner {
    background:
        radial-gradient(circle at top right, rgba(34, 211, 238, 0.12), transparent 14rem),
        linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 247, 237, 0.98) 100%);
    border-color: rgba(234, 88, 12, 0.16);
}

.landing-band__items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    justify-content: flex-end;
}

.landing-band__items a {
    padding: 0.72rem 0.95rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: var(--landing-ink-soft);
    font-size: 0.9rem;
    font-weight: 800;
}

.landing-image-banner {
    position: relative;
    z-index: 5;
    padding: 0 0 1.2rem;
}

.landing-image-banner__link {
    display: block;
    overflow: hidden;
    border-radius: 1.5rem;
    background: #e2e8f0;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: var(--landing-shadow);
}

.landing-image-banner__link img {
    width: 100%;
    aspect-ratio: 1200 / 280;
    object-fit: cover;
}

.landing-card-grid {
    display: grid;
    gap: 1.25rem;
}

.landing-card-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.landing-carousel {
    position: relative;
}

.landing-carousel--spaced {
    margin-top: 1.25rem;
}

.landing-carousel__button {
    position: absolute;
    z-index: 4;
    top: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--landing-ink);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.18);
    transform: translateY(-50%);
    cursor: pointer;
    transition: opacity 160ms ease, transform 160ms ease, background 160ms ease;
}

.landing-carousel__button:hover {
    background: var(--landing-accent);
    color: #fff;
    transform: translateY(-50%) scale(1.04);
}

.landing-carousel__button[disabled] {
    opacity: 0.32;
    cursor: not-allowed;
    pointer-events: none;
}

.landing-carousel__button--prev {
    left: 0;
    transform: translate(-115%, -50%);
}

.landing-carousel__button--next {
    right: 0;
    transform: translate(115%, -50%);
}

.landing-carousel--dark .landing-carousel__button {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(15, 23, 42, 0.86);
    color: #fff;
}

.landing-carousel--dark .landing-carousel__button:hover {
    background: #ea580c;
}

.landing-carousel__button--prev:hover {
    transform: translate(-115%, -50%) scale(1.04);
}

.landing-carousel__button--next:hover {
    transform: translate(115%, -50%) scale(1.04);
}

.landing-showcase-grid {
    display: flex;
    align-items: stretch;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 1.15rem;
    padding: 0.15rem 0 0.85rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(234, 88, 12, 0.72) rgba(226, 232, 240, 0.7);
    -webkit-overflow-scrolling: touch;
}

.landing-showcase-grid::-webkit-scrollbar {
    height: 0.55rem;
}

.landing-showcase-grid::-webkit-scrollbar-track {
    border-radius: 999px;
    background: rgba(226, 232, 240, 0.7);
}

.landing-showcase-grid::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(234, 88, 12, 0.72);
}

.landing-showcase-card {
    display: flex;
    flex: 0 0 calc((100% - 3.45rem) / 4);
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border-radius: 1.2rem;
    background: #fff;
    border: 1px solid rgba(226, 232, 240, 0.92);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.09);
    scroll-snap-align: start;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.landing-showcase-card:hover {
    transform: translateY(-4px);
    border-color: rgba(234, 88, 12, 0.26);
    box-shadow: 0 24px 56px rgba(15, 23, 42, 0.13);
}

.landing-showcase-card__media {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #eef2f7;
}

.landing-showcase-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 220ms ease;
}

.landing-showcase-card:hover .landing-showcase-card__media img {
    transform: scale(1.04);
}

.landing-showcase-card__media--fallback {
    background:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(135deg, #13233f 0%, #1d3b63 100%);
    background-size: 28px 28px, 28px 28px, auto;
}

.landing-showcase-card__media--fallback span {
    color: rgba(255, 255, 255, 0.88);
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.landing-showcase-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1rem 1.05rem 1.1rem;
}

.landing-showcase-card h3 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0 0 0.55rem;
    color: var(--landing-ink);
    font-size: 1.05rem;
    line-height: 1.35;
    height: calc(1.05rem * 1.35 * 2);
    max-height: calc(1.05rem * 1.35 * 2);
}

.landing-showcase-card h3 a:hover {
    color: var(--landing-accent);
}

.landing-showcase-card p {
    display: -webkit-box;
    flex: 0 0 auto;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
    color: var(--landing-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    height: calc(0.92rem * 1.6 * 3);
    max-height: calc(0.92rem * 1.6 * 3);
}

.landing-showcase-card__price {
    margin-top: 1rem;
    color: #dc2626;
    font-size: 1.05rem;
    font-weight: 900;
}

.landing-showcase-card__price--contact {
    align-self: flex-start;
    padding: 0.62rem 0.95rem;
    margin-top: 1rem;
    border-radius: 999px;
    background: var(--landing-accent);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 850;
    box-shadow: 0 14px 30px rgba(234, 88, 12, 0.22);
}

.landing-showcase-card__price--contact:hover {
    background: #c2410c;
    color: #fff;
}

.landing-card {
    display: flex;
    min-width: 0;
    height: 100%;
    flex-direction: column;
    overflow: hidden;
    border-radius: var(--landing-radius);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(226, 232, 240, 0.88);
    box-shadow: var(--landing-shadow);
}

.landing-card__media {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
    background: #eef2f7;
    isolation: isolate;
}

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

.landing-card__media--fallback {
    background:
        radial-gradient(circle at top right, rgba(34, 211, 238, 0.28), transparent 15rem),
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(135deg, #0f172a 0%, #13233f 60%, #1d3b63 100%);
    background-size: auto, 36px 36px, 36px 36px, auto;
}

.landing-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.3rem 1.35rem 1.45rem;
}

.landing-card__tag {
    color: var(--landing-muted);
}

.landing-card__body h3 {
    margin: 0.75rem 0 0.75rem;
    color: var(--landing-ink);
    font-size: 1.5rem;
    line-height: 1.18;
}

.landing-card__body h3 a:hover {
    color: var(--landing-accent);
}

.landing-card__body p {
    margin: 0;
    color: var(--landing-muted);
    line-height: 1.75;
}

.landing-card__body > .landing-text-link {
    margin-top: auto;
    padding-top: 1rem;
}

.landing-spec-list {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
    display: grid;
    gap: 0.8rem;
}

.landing-spec-list li {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.landing-spec-list li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.landing-spec-list span {
    color: var(--landing-muted);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.landing-spec-list strong {
    color: var(--landing-ink);
    font-size: 0.97rem;
    line-height: 1.55;
}

.landing-section--dark {
    background:
        radial-gradient(circle at top left, rgba(34, 211, 238, 0.12), transparent 25rem),
        linear-gradient(180deg, #08111f 0%, #0b1628 100%);
}

.landing-service-grid {
    display: flex;
    align-items: stretch;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 1.25rem;
    padding-bottom: 0.85rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(253, 186, 116, 0.78) rgba(255, 255, 255, 0.12);
    -webkit-overflow-scrolling: touch;
}

.landing-service-grid::-webkit-scrollbar {
    height: 0.55rem;
}

.landing-service-grid::-webkit-scrollbar-track {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
}

.landing-service-grid::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(253, 186, 116, 0.78);
}

.landing-service-card {
    display: flex;
    flex: 0 0 calc((100% - 3.75rem) / 4);
    height: 25.5rem;
    flex-direction: column;
    overflow: hidden;
    padding: 0;
    border-radius: var(--landing-radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 60px rgba(2, 6, 23, 0.28);
    scroll-snap-align: start;
}

.landing-service-card__media {
    display: block;
    min-height: 11.5rem;
    background: linear-gradient(135deg, rgba(234, 88, 12, 0.22), rgba(14, 165, 233, 0.18));
}

.landing-service-card__media img {
    width: 100%;
    height: 11.5rem;
    object-fit: cover;
    display: block;
}

.landing-service-card h3 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 1.2rem 1.2rem 0.75rem;
    color: #fff;
    font-size: 1.28rem;
    line-height: 1.1;
    height: calc(1.28rem * 1.1 * 2);
    max-height: calc(1.28rem * 1.1 * 2);
}

.landing-service-card p {
    display: -webkit-box;
    flex: 0 0 auto;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0 1.2rem 1.1rem;
    color: rgba(255, 255, 255, 0.74);
    font-size: 1rem;
    line-height: 1.85;
    height: calc(1rem * 1.85 * 3);
    max-height: calc(1rem * 1.85 * 3);
}

.landing-service-card .landing-text-link {
    margin: 0 1.2rem 1.25rem;
}

.landing-section--pressure {
    padding: 2.5rem 0 0.75rem;
    background:
        linear-gradient(180deg, rgba(255, 247, 237, 0.48) 0%, rgba(255, 255, 255, 0) 68%);
}

.landing-pressure {
    display: grid;
    gap: 1.1rem;
}

.landing-pressure__hero {
    position: relative;
    overflow: hidden;
    border-radius: calc(var(--landing-radius) - 8px);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: var(--landing-shadow);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem 1.35rem;
    align-items: center;
    padding: clamp(1.05rem, 2vw, 1.45rem);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 247, 237, 0.94) 100%);
}

.landing-pressure__hero::before {
    content: '';
    position: absolute;
    top: 1rem;
    left: 1.15rem;
    width: 3.4rem;
    height: 0.24rem;
    border-radius: 999px;
    background: linear-gradient(90deg, #ea580c 0%, #fdba74 100%);
}

.landing-pressure__hero::after {
    content: '';
    position: absolute;
    right: -5rem;
    top: -6rem;
    width: 18rem;
    height: 18rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(251, 146, 60, 0.16) 0%, rgba(251, 146, 60, 0) 68%);
    pointer-events: none;
}

.landing-pressure__content {
    display: grid;
    gap: 0.75rem;
    min-width: 0;
    padding-top: 1.35rem;
}

.landing-pressure__content h3 {
    margin: 0;
    font-size: clamp(1.35rem, 2.2vw, 2rem);
    line-height: 1.15;
    letter-spacing: -0.025em;
    text-wrap: balance;
}

.landing-pressure__content p {
    margin: 0;
    color: var(--landing-muted);
    line-height: 1.75;
    max-width: 52rem;
    font-size: 1.05rem;
}

.landing-pressure__content .landing-chip-row {
    margin-top: 0.45rem;
}

.landing-pressure__actions {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    align-self: center;
    padding-top: 1.35rem;
}

.landing-pressure__actions::before {
    content: none;
}

.landing-pressure__actions .landing-button {
    min-width: 0;
    padding: 0.72rem 1.25rem;
    font-size: 0.9rem;
    box-shadow: 0 22px 44px rgba(234, 88, 12, 0.22);
}

.landing-product-grid {
    margin-top: 1.25rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.landing-product-grid .landing-product-card {
    height: 100%;
}

.landing-product-block {
    margin-top: 1.35rem;
}

.landing-product-block__heading {
    margin-bottom: 1rem;
}

.landing-product-block__heading h3 {
    margin: 0.45rem 0 0;
    color: var(--landing-ink);
    font-size: 1.55rem;
    line-height: 1.15;
}

.landing-product-card {
    display: flex;
    min-width: 0;
    height: 100%;
    flex-direction: column;
    overflow: hidden;
    border-radius: calc(var(--landing-radius) - 4px);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: var(--landing-shadow);
}

.landing-product-card__media {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #eef2f7;
}

.landing-product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.landing-product-card__media--fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(135deg, #13233f 0%, #1d3b63 100%);
    background-size: 28px 28px, 28px 28px, auto;
}

.landing-product-card__media--fallback span {
    color: rgba(255, 255, 255, 0.86);
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.landing-product-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.25rem;
}

.landing-product-card__category {
    color: var(--landing-muted);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.landing-product-card h3 {
    margin: 0.7rem 0 0.75rem;
    color: var(--landing-ink);
    font-size: 1.28rem;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.landing-product-card h3 a:hover {
    color: var(--landing-accent);
}

.landing-product-card p {
    margin: 0;
    color: var(--landing-muted);
    line-height: 1.75;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.landing-product-card__specs {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.58rem 1rem;
}

.landing-product-card__specs li {
    position: relative;
    padding-left: 0.9rem;
    color: var(--landing-muted);
    line-height: 1.55;
}

.landing-product-card__specs li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.62rem;
    width: 0.38rem;
    height: 0.38rem;
    border-radius: 999px;
    background: var(--landing-accent);
}

.landing-product-card__footer {
    margin-top: auto;
    padding-top: 1.1rem;
}

.landing-pressure__specs {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
    display: grid;
    gap: 0.5rem;
}

.landing-pressure__specs li {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.55rem 0.7rem;
    border-radius: 0.95rem;
    background: rgba(15, 23, 42, 0.04);
}

.landing-pressure__specs span {
    color: var(--landing-muted);
    font-size: 0.8rem;
    font-weight: 700;
}

.landing-pressure__specs strong {
    color: var(--landing-ink);
    font-size: 0.84rem;
    font-weight: 800;
    text-align: right;
}

.landing-component-categories {
    display: grid;
    gap: 1rem;
}

.landing-component-categories--grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.landing-component-category {
    padding: 1.45rem;
    border-radius: var(--landing-radius);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: var(--landing-shadow);
}

.landing-component-category--amber {
    background:
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.16), transparent 12rem),
        rgba(255, 255, 255, 0.94);
}

.landing-component-category--cyan {
    background:
        radial-gradient(circle at top right, rgba(34, 211, 238, 0.16), transparent 12rem),
        rgba(255, 255, 255, 0.94);
}

.landing-component-category--orange {
    background:
        radial-gradient(circle at top right, rgba(234, 88, 12, 0.16), transparent 12rem),
        rgba(255, 255, 255, 0.94);
}

.landing-component-category h3 {
    margin: 0.8rem 0 0.75rem;
    font-size: 1.38rem;
    line-height: 1.1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.landing-component-category p {
    margin: 0;
    color: var(--landing-muted);
    line-height: 1.8;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.landing-component-category__highlight {
    margin: 1.05rem 0;
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    background: rgba(15, 23, 42, 0.04);
    color: var(--landing-ink-soft);
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1.7;
}

.landing-component-card {
    display: grid;
    grid-template-columns: minmax(7rem, 8.4rem) minmax(0, 1fr);
    gap: 1rem;
    padding: 1rem;
    border-radius: calc(var(--landing-radius) - 4px);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: var(--landing-shadow);
}

.landing-component-card__visual {
    min-height: 11rem;
    border-radius: 1.2rem;
    overflow: hidden;
    background: linear-gradient(135deg, #13233f 0%, #1d3b63 100%);
}

.landing-component-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.landing-component-card__visual--fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    isolation: isolate;
}

.landing-component-card__visual--fallback::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 28px 28px;
}

.landing-component-card__visual--fallback span {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.86);
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.landing-component-card__meta,
.landing-component-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.landing-component-card__meta span:first-child,
.landing-component-card__footer span {
    color: var(--landing-muted);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.landing-status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 1.9rem;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.1);
    color: #15803d;
    font-size: 0.78rem;
    font-weight: 800;
}

.landing-component-card h3 {
    margin: 0.8rem 0 0.7rem;
    font-size: 1.15rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.landing-component-card h3 a:hover,
.landing-news-card h3 a:hover {
    color: var(--landing-accent);
}

.landing-component-card p {
    margin: 0 0 1rem;
    color: var(--landing-muted);
    line-height: 1.75;
    font-size: 0.92rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.landing-section--about {
    background:
        radial-gradient(circle at 75% 20%, rgba(234, 88, 12, 0.16), transparent 20rem),
        radial-gradient(circle at 15% 75%, rgba(34, 211, 238, 0.12), transparent 24rem),
        linear-gradient(180deg, #f8fafc 0%, #eef3f8 100%);
}

.landing-about {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
}

.landing-about__content h2 {
    margin: 0.75rem 0 1rem;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.landing-about__content > p {
    margin: 0;
    color: var(--landing-muted);
    line-height: 1.95;
    font-size: 1.02rem;
}

.landing-about__notes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin: 1.6rem 0;
}

.landing-about__notes article {
    padding: 1.2rem;
    border-radius: 1.4rem;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(226, 232, 240, 0.84);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

.landing-about__notes h3 {
    margin: 0 0 0.55rem;
    font-size: 1rem;
}

.landing-about__notes p {
    margin: 0;
    color: var(--landing-muted);
    line-height: 1.8;
}

.landing-about__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.landing-about__visual {
    position: relative;
    display: grid;
    gap: 1rem;
}

.landing-about__logo-card {
    position: relative;
    display: grid;
    justify-items: center;
    gap: 1.2rem;
    overflow: hidden;
    min-height: 26rem;
    padding: clamp(1.6rem, 4vw, 2.6rem);
    border-radius: calc(var(--landing-radius) + 0.45rem);
    background:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        radial-gradient(circle at top right, rgba(253, 186, 116, 0.28), transparent 15rem),
        linear-gradient(135deg, #0f172a 0%, #1d3b63 100%);
    background-size: 34px 34px, 34px 34px, auto, auto;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--landing-shadow);
}

.landing-about__logo-card::before {
    content: '';
    position: absolute;
    inset: 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.6rem;
    pointer-events: none;
}

.landing-about__logo-mark {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: min(13rem, 58vw);
    aspect-ratio: 1;
    padding: 0;
    border-radius: 2rem;
    background: transparent;
    box-shadow: none;
}

.landing-about__logo-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.landing-about__logo-copy {
    position: relative;
    z-index: 1;
    max-width: 24rem;
    text-align: center;
    color: #fff;
}

.landing-about__logo-copy span {
    display: inline-flex;
    margin-bottom: 0.6rem;
    padding: 0.42rem 0.8rem;
    border-radius: 999px;
    background: rgba(234, 88, 12, 0.18);
    color: #fed7aa;
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.landing-about__logo-copy strong {
    display: block;
    font-size: clamp(2rem, 5vw, 3.6rem);
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.landing-about__logo-copy p {
    margin: 0.8rem 0 0;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.75;
}

.landing-news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.landing-news-card {
    overflow: hidden;
    border-radius: var(--landing-radius);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(226, 232, 240, 0.88);
    box-shadow: var(--landing-shadow);
}

.landing-news-card__media {
    display: block;
    min-height: 14rem;
    background-size: cover;
    background-position: center;
    position: relative;
}

.landing-news-card__media::before,
.landing-news-card__media::after {
    content: '';
    position: absolute;
    inset: 0;
}

.landing-news-card__media::before {
    background: linear-gradient(180deg, rgba(7, 17, 31, 0.12) 0%, rgba(7, 17, 31, 0.6) 100%);
}

.landing-news-card__media::after {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 34px 34px;
}

.landing-news-card__media--fallback {
    background:
        radial-gradient(circle at top right, rgba(234, 88, 12, 0.18), transparent 12rem),
        linear-gradient(135deg, #0f172a 0%, #1d3b63 100%);
}

.landing-news-card__body {
    padding: 1.2rem;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1rem;
}

.landing-news-card__date {
    min-width: 4.6rem;
    padding-right: 1rem;
    border-right: 1px solid rgba(148, 163, 184, 0.18);
}

.landing-news-card__date strong {
    display: block;
    font-size: 2rem;
    line-height: 1;
    letter-spacing: -0.06em;
}

.landing-news-card__date span {
    display: block;
    margin-top: 0.35rem;
    color: var(--landing-muted);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.landing-news-card__content h3 {
    margin: 0;
    font-size: 1.25rem;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.landing-news-card__content p {
    margin: 0.75rem 0 1rem;
    color: var(--landing-muted);
    line-height: 1.82;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.landing-cta {
    padding: 0 0 5.5rem;
}

.landing-cta__inner {
    padding: 2rem;
    border-radius: calc(var(--landing-radius) + 4px);
    background:
        radial-gradient(circle at top right, rgba(34, 211, 238, 0.14), transparent 18rem),
        linear-gradient(135deg, #fff 0%, #fff7ed 100%);
    border: 1px solid rgba(234, 88, 12, 0.12);
    box-shadow: var(--landing-shadow);
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) auto;
    gap: 1.5rem;
    align-items: center;
}

.landing-cta__inner h2 {
    margin: 0.75rem 0 0;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.1;
    letter-spacing: -0.05em;
}

.landing-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    justify-content: flex-end;
}

.landing-footer {
    background:
        radial-gradient(circle at top right, rgba(34, 211, 238, 0.12), transparent 18rem),
        linear-gradient(180deg, #08111f 0%, #060c15 100%);
    color: #fff;
}

.landing-footer__inner {
    padding: 4rem 0 2rem;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 2rem;
}

.landing-brand--footer .landing-brand__copy strong {
    font-size: 1.05rem;
    color: #fff;
}

.landing-brand--footer .landing-brand__copy small {
    color: rgba(255, 255, 255, 0.68);
}

.landing-brand--footer .landing-brand__mark {
    border-radius: 1rem;
    background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.08em;
    box-shadow: 0 16px 30px rgba(234, 88, 12, 0.28);
}

.landing-footer__brand p,
.landing-footer__links p {
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.85;
}

.landing-footer__contact {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem 1.2rem;
}

.landing-footer__contact a {
    color: #fff;
    font-weight: 800;
}

.landing-footer__links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.landing-footer__links span {
    display: inline-block;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.52);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.landing-footer__links a,
.landing-footer__links p {
    display: block;
    margin: 0 0 0.75rem;
    color: rgba(255, 255, 255, 0.78);
}

.landing-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem 0 2rem;
}

.landing-footer__bottom span {
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.9rem;
}

.landing-reveal {
    opacity: 0;
    transform: translateY(26px);
    transition:
        opacity 620ms ease,
        transform 620ms ease;
}

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

@media (max-width: 1120px) {
    .landing-header__inner {
        min-height: 0;
        padding: 1rem 1.2rem;
        gap: 1rem;
    }

    .landing-nav--desktop {
        display: none;
    }

    .landing-nav-panel {
        width: min(26rem, 100%);
    }

    .landing-card-grid--three,
    .landing-component-categories--grid,
    .landing-news-grid,
    .landing-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .landing-showcase-card,
    .landing-service-card {
        flex-basis: calc((100% - 1.25rem) / 2);
    }

    .landing-pressure,
    .landing-pressure__hero,
    .landing-about,
    .landing-cta__inner,
    .landing-footer__inner,
    .landing-section__heading,
    .landing-band__inner {
        grid-template-columns: 1fr;
    }

    .landing-pressure__hero {
        gap: 1.2rem;
    }

    .landing-pressure__content,
    .landing-pressure__actions {
        padding-top: 1.2rem;
    }

    .landing-pressure__actions {
        align-items: flex-start;
    }

    .landing-pressure__actions .landing-button {
        min-width: 0;
        width: auto;
    }

    .landing-band__items,
    .landing-cta__actions {
        justify-content: flex-start;
    }

    .landing-hero__grid {
        grid-template-columns: 1fr;
        padding-top: 4rem;
    }

    .landing-hero__copy {
        max-width: 100%;
    }

}

@media (max-width: 860px) {
    .landing-page {
        padding-top: 5.4rem;
    }

    .landing-header {
        padding: 0;
    }

    .landing-header__inner {
        padding: 0.9rem 1rem;
        border-radius: 1.45rem;
    }

    .landing-brand__mark {
        width: 2.9rem;
        height: 2.9rem;
    }

    .landing-brand__copy strong {
        font-size: 0.88rem;
    }

    .landing-brand__copy small {
        display: none;
    }

    .landing-header__tools {
        margin-left: auto;
        gap: 0.6rem;
    }

    .landing-icon-button {
        width: 3.25rem;
        height: 3.25rem;
    }

    .landing-icon-button svg {
        width: 1.35rem;
        height: 1.35rem;
    }

    .landing-nav-panel {
        right: 0;
        left: 0;
        width: auto;
        padding: 0.9rem;
        border-radius: 1.35rem;
    }

    .landing-nav--panel {
        flex-direction: column;
        align-items: stretch;
    }

    .landing-search-overlay {
        padding: 5.5rem 0.8rem 0.8rem;
    }

    .landing-search-dialog {
        padding: 1rem;
    }

    .landing-section__heading--single-line h2 {
        white-space: normal;
    }

    .landing-card-grid--three,
    .landing-news-grid,
    .landing-footer__links,
    .landing-about__notes,
    .landing-component-categories--grid,
    .landing-product-grid {
        grid-template-columns: 1fr;
    }

    .landing-showcase-card,
    .landing-service-card {
        flex-basis: min(86vw, 22rem);
    }

    .landing-carousel__button {
        width: 2.35rem;
        height: 2.35rem;
        font-size: 1.65rem;
    }

    .landing-carousel__button--prev {
        left: 0.35rem;
    }

    .landing-carousel__button--next {
        right: 0.35rem;
    }

    .landing-component-card {
        grid-template-columns: 1fr;
    }

    .landing-hero {
        aspect-ratio: 1920 / 730;
        height: auto;
        min-height: 0;
    }

    .landing-hero__grid {
        min-height: auto;
        padding: 7rem 0 5rem;
    }

    .landing-image-banner__link img {
        aspect-ratio: 1200 / 280;
    }
}

@media (max-width: 520px) {
    .landing-page {
        padding-top: 4.8rem;
    }

    .landing-header__inner {
        padding: 0.8rem;
        gap: 0.55rem;
    }

    .landing-brand__copy {
        display: none;
    }

    .landing-header__tools {
        gap: 0.45rem;
    }

    .landing-icon-button {
        width: 2.9rem;
        height: 2.9rem;
    }
}

@media (max-width: 640px) {
    .landing-shell {
        width: min(1240px, calc(100% - 1.2rem));
    }

    .landing-section {
        padding: 2.5rem 0;
    }

    .landing-hero__copy h1 {
        font-size: clamp(2.5rem, 14vw, 4rem);
    }

    .landing-hero__copy p,
    .landing-section__heading p,
    .landing-about__content > p {
        font-size: 0.96rem;
    }

    .landing-card__media,
    .landing-news-card__media {
        min-height: 12rem;
    }

    .landing-about__logo-card {
        min-height: 22rem;
    }

    .landing-about__logo-mark {
        width: min(10.5rem, 62vw);
    }

    .landing-metric-grid {
        grid-template-columns: 1fr 1fr;
    }

    .landing-news-card__body {
        grid-template-columns: 1fr;
    }

    .landing-news-card__date {
        border-right: 0;
        padding-right: 0;
        padding-bottom: 0.8rem;
        border-bottom: 1px solid rgba(148, 163, 184, 0.18);
        display: flex;
        align-items: baseline;
        gap: 0.75rem;
    }

    .landing-cta__inner,
    .landing-pressure__hero,
    .landing-pressure__actions,
    .landing-component-category,
    .landing-card__body,
    .landing-component-card,
    .landing-news-card__body,
    .landing-about__notes article {
        padding: 1.15rem;
    }

    .landing-pressure__hero::before {
        top: 1.15rem;
        left: 1.15rem;
        width: 3.8rem;
    }

    .landing-pressure__content,
    .landing-pressure__actions {
        padding-top: 1.1rem;
    }

    .landing-pressure__content h3 {
        font-size: clamp(1.25rem, 7vw, 1.7rem);
    }

    .landing-pressure__content p {
        font-size: 0.98rem;
    }

    .landing-pressure__actions .landing-button {
        width: 100%;
    }
}

/* Landing card text clamps: titles 2 lines, descriptions 3 lines. */
.landing-showcase-card h3,
.landing-showcase-card h3 a,
.landing-product-card h3,
.landing-product-card h3 a,
.landing-component-category h3,
.landing-component-category h3 a,
.landing-component-card h3,
.landing-component-card h3 a,
.landing-news-card__content h3,
.landing-news-card__content h3 a,
.landing-service-card h3,
.landing-service-card h3 a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-width: 0;
}

.landing-showcase-card p,
.landing-product-card p,
.landing-component-category p,
.landing-component-card p,
.landing-news-card__content p,
.landing-service-card p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-width: 0;
}
