@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800;900&family=Rajdhani:wght@600;700&display=swap");

:root {
    --page: #f6f7f5;
    --surface: #ffffff;
    --surface-soft: #eef2ef;
    --ink: #17202a;
    --muted: #60707d;
    --line: #dbe2e6;
    --brand: #e84f2b;
    --brand-dark: #b9361c;
    --accent: #0f766e;
    --accent-soft: #dff3ef;
    --shadow: 0 16px 40px rgba(23, 32, 42, .08);
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink) !important;
    background: var(--page) !important;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif !important;
    line-height: 1.45;
}

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

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

.container {
    width: min(var(--max), 92%) !important;
    margin: 0 auto;
}

header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255, 255, 255, .88) !important;
    border-bottom: 1px solid rgba(23, 32, 42, .08) !important;
    backdrop-filter: blur(14px);
}

.nav {
    min-height: 72px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    color: var(--ink) !important;
    font-weight: 850 !important;
    font-size: 20px !important;
    letter-spacing: 0;
    white-space: nowrap;
}

nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

nav a,
.back {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 9px 12px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none !important;
    transition: background .18s ease, color .18s ease, transform .18s ease;
}

.back,
nav a,
.muted,
p {
    color: var(--muted) !important;
}

nav a:hover,
.back:hover {
    color: var(--ink) !important;
    background: rgba(23, 32, 42, .06);
}

.nav-cta,
.btn,
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 12px 17px;
    border: 0;
    background: var(--brand) !important;
    color: #fff !important;
    border-radius: 8px !important;
    box-shadow: 0 10px 24px rgba(232, 79, 43, .18);
    cursor: pointer;
    font-weight: 850;
    line-height: 1;
    text-align: center;
    text-decoration: none !important;
    transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.btn:hover,
.btn-primary:hover {
    background: var(--brand-dark) !important;
    transform: translateY(-1px);
}

.btn-secondary {
    color: var(--ink) !important;
    background: #fff !important;
    border: 1px solid var(--line) !important;
    box-shadow: none;
}

.btn-secondary:hover {
    border-color: rgba(15, 118, 110, .36) !important;
    background: var(--accent-soft) !important;
    color: #0c3d39 !important;
}

.nav-cta {
    min-height: 38px;
    padding: 10px 14px;
}

.card,
.box,
.summary-box,
.method,
.faq-item,
.step {
    background: var(--surface) !important;
    color: var(--ink) !important;
    border: 1px solid var(--line) !important;
    border-radius: 8px !important;
    box-shadow: var(--shadow);
}

.media,
.product-media {
    background: var(--surface-soft) !important;
    color: var(--muted) !important;
    border: 1px solid var(--line) !important;
    border-radius: 8px !important;
}

.tag,
.point {
    color: var(--accent) !important;
    background: var(--accent-soft) !important;
    border: 1px solid rgba(15, 118, 110, .18) !important;
    border-radius: 999px !important;
}

.price,
.total,
.order-number {
    color: var(--brand) !important;
}

input,
select,
textarea {
    background: #fff !important;
    color: var(--ink) !important;
    border: 1px solid var(--line) !important;
    border-radius: 8px !important;
}

input:focus,
select:focus,
textarea:focus {
    outline: 3px solid rgba(15, 118, 110, .18);
    border-color: var(--accent) !important;
}

.store-hero {
    min-height: 74vh;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--ink);
    background-size: cover;
    background-position: center right;
    isolation: isolate;
}

.store-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(246, 247, 245, .98), rgba(246, 247, 245, .88) 46%, rgba(246, 247, 245, .22) 78%),
        linear-gradient(180deg, rgba(255, 255, 255, .10), rgba(246, 247, 245, .52));
}

.store-hero .container {
    padding: 96px 0 72px;
}

.hero-copy {
    max-width: 720px;
}

.hero-copy h1 {
    color: var(--ink);
    font-size: clamp(46px, 8vw, 88px);
    line-height: .96;
    letter-spacing: 0;
    margin: 0 0 20px;
}

.hero-copy p {
    color: #34424d !important;
    font-size: clamp(18px, 2vw, 23px);
    line-height: 1.55;
    margin: 0 0 26px;
    max-width: 680px;
}

.eyebrow {
    color: var(--accent) !important;
    letter-spacing: 0;
    text-transform: none;
    font-weight: 800;
}

.hero-actions,
.btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.hero-points span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 8px 11px;
    color: #24413e;
    background: rgba(255, 255, 255, .76);
    border: 1px solid rgba(15, 118, 110, .18);
    border-radius: 999px;
    font-weight: 750;
    box-shadow: 0 10px 28px rgba(23, 32, 42, .08);
}

.section-band {
    padding: 58px 0;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.section-title {
    color: var(--ink) !important;
    font-size: clamp(32px, 4vw, 48px) !important;
    letter-spacing: 0 !important;
    line-height: 1.05;
}

.section-text {
    color: var(--muted) !important;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.product-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 52px rgba(23, 32, 42, .12);
}

.product-card .media {
    height: 250px;
    border-radius: 0 !important;
    border-width: 0 0 1px 0 !important;
}

.product-card .body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.product-card h2,
.product-card h3 {
    margin: 0;
}

.product-card p {
    margin: 0;
    line-height: 1.55;
}

.flow-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.flow-step {
    padding: 18px;
    border-left: 4px solid var(--accent);
    background: var(--surface);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.store-product {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .78fr);
    gap: 34px;
    padding: 44px 0 68px;
}

.product-buy {
    align-self: start;
    position: sticky;
    top: 96px;
}

.gallery-main {
    aspect-ratio: 1 / .78;
    min-height: 420px;
    overflow: hidden;
}

.gallery-main img,
.gallery-main video,
.media img,
.media video,
.product-media img,
.product-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-top: 12px;
}

.gallery-thumb {
    aspect-ratio: 1 / .72;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: var(--surface);
    padding: 0;
    cursor: pointer;
}

.gallery-thumb img,
.gallery-thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.variant {
    border-color: var(--line) !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
}

.variant + .variant {
    border-top: 1px solid var(--line);
}

.variant-price {
    text-align: right;
    font-weight: 800;
}

.product-description,
.purchase-note,
.alert-card,
.buy-panel {
    padding: 22px;
    margin: 22px 0;
}

.product-description {
    white-space: pre-line;
    line-height: 1.7;
    color: var(--muted);
    background: transparent !important;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.purchase-note {
    display: grid;
    gap: 7px;
    background: var(--accent-soft);
    border: 1px solid rgba(15, 118, 110, .18);
    border-radius: 8px;
    color: #24413e;
}

.buy-panel {
    margin-top: 18px;
}

.quantity-input {
    max-width: 120px;
}

table {
    width: 100%;
}

th {
    color: var(--muted) !important;
}

td,
th {
    border-bottom: 1px solid var(--line) !important;
}

footer {
    background: #fff !important;
    border-top: 1px solid var(--line) !important;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 24px 0;
    color: var(--muted);
}

.nav-premium {
    min-height: 164px !important;
    padding: 12px 0;
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 26px;
    font-size: 44px !important;
}

.brand-lockup img {
    width: 124px;
    height: 124px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 18px 40px rgba(23, 32, 42, .24);
}

.brand-copy {
    display: grid;
    gap: 8px;
}

.brand-copy strong {
    color: var(--ink);
    font-size: 52px;
    line-height: 1;
}

.brand-copy small {
    color: var(--accent);
    font-size: 16px;
    font-weight: 850;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.nav-premium nav a {
    font-size: 15px;
}

.landing-hero {
    position: relative;
    min-height: calc(100vh - 164px);
    overflow: hidden;
    background:
        linear-gradient(125deg, #f7f8f5 0%, #eef2ef 66%, #1d2529 66%, #101519 100%);
}

.landing-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 150px;
    background: linear-gradient(0deg, var(--page), rgba(246, 247, 245, 0));
    pointer-events: none;
}

.landing-hero-grid {
    min-height: calc(100vh - 164px);
    display: grid;
    grid-template-columns: minmax(0, .94fr) minmax(380px, 1.06fr);
    gap: 44px;
    align-items: center;
    padding: 62px 0 84px;
    position: relative;
    z-index: 1;
}

.landing-copy {
    max-width: 760px;
}

.landing-copy h1 {
    max-width: 760px;
    margin: 12px 0 18px;
    color: var(--ink);
    font-size: clamp(50px, 6.1vw, 88px);
    line-height: .95;
    letter-spacing: 0;
}

.landing-copy p {
    max-width: 640px;
    color: #273742 !important;
    font-size: clamp(18px, 1.8vw, 23px);
    line-height: 1.62;
    font-weight: 560;
}

.hero-product-stage {
    position: relative;
    min-height: 620px;
    display: block;
    color: #fff;
}

.hero-main-image,
.hero-secondary-image,
.hero-tertiary-image {
    position: absolute;
    object-fit: cover;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .28);
}

.hero-main-image {
    right: 0;
    top: 3%;
    width: min(660px, 96%);
    aspect-ratio: 16 / 11;
    border-radius: 8px;
    z-index: 1;
    object-position: center;
}

.hero-secondary-image {
    left: 0;
    bottom: 0;
    width: min(370px, 48%);
    aspect-ratio: 4 / 3;
    border: 10px solid #f6f7f5;
    border-radius: 8px;
    z-index: 3;
    object-position: center;
}

.hero-tertiary-image {
    right: 2%;
    bottom: 18px;
    width: min(235px, 32%);
    aspect-ratio: 3 / 5;
    border: 10px solid #f6f7f5;
    border-radius: 8px;
    z-index: 2;
    object-position: center;
}

.product-story {
    padding: 28px 0 84px;
}

.product-feature {
    min-height: 620px;
    display: grid;
    grid-template-columns: minmax(340px, .9fr) minmax(0, 1fr);
    gap: 56px;
    align-items: center;
    padding: 64px 0;
    border-bottom: 1px solid var(--line);
}

.product-feature.is-reversed {
    grid-template-columns: minmax(0, 1fr) minmax(340px, .9fr);
}

.product-feature.is-reversed .product-feature-media {
    order: 2;
}

.product-feature-media {
    min-height: 520px;
    overflow: hidden;
    background: #101519;
    border-radius: 8px;
    box-shadow: 0 28px 70px rgba(23, 32, 42, .14);
}

.product-feature-media img,
.product-feature-media video {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    transition: transform .35s ease;
}

.product-feature-media:hover img,
.product-feature-media:hover video {
    transform: scale(1.035);
}

.product-feature-copy h2 {
    margin: 10px 0 12px;
    color: var(--ink);
    font-size: clamp(38px, 5vw, 72px);
    line-height: .94;
}

.product-feature-copy h3 {
    max-width: 720px;
    margin: 0 0 14px;
    color: #263440;
    font-size: clamp(22px, 2.5vw, 34px);
    line-height: 1.12;
}

.product-feature-copy p {
    max-width: 650px;
    color: var(--muted) !important;
    font-size: 18px;
    line-height: 1.7;
}

.feature-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0;
}

.feature-points span {
    padding: 9px 12px;
    color: #24413e;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-weight: 800;
}

.feature-buy-row {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.feature-buy-row strong {
    color: var(--brand);
    font-size: 24px;
}

.trust-band {
    padding: 72px 0;
    color: #f6f7f5;
    background: #101519;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1.45fr repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}

.trust-grid h2 {
    max-width: 650px;
    margin: 10px 0 0;
    color: #fff;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1;
}

.trust-item {
    padding-top: 10px;
    border-top: 2px solid var(--brand);
}

.trust-item strong,
.trust-item span {
    display: block;
}

.trust-item strong {
    color: #fff;
    font-size: 20px;
}

.trust-item span {
    margin-top: 8px;
    color: rgba(255, 255, 255, .72);
    line-height: 1.55;
}

.catalog-hero {
    padding: 86px 0 70px;
}

.gallery-caption {
    margin: 12px 0 0;
    color: var(--muted) !important;
    font-weight: 700;
}

.gallery-thumb.is-active {
    outline: 3px solid rgba(232, 79, 43, .35);
    border-color: var(--brand) !important;
}

.technical-panel {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
    gap: 38px;
    margin: 0 0 78px;
    padding: 38px;
    color: #f6f7f5;
    background: #101519;
    border-radius: 8px;
}

.technical-panel h2 {
    max-width: 760px;
    margin: 10px 0 14px;
    color: #fff;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1;
}

.technical-panel p {
    max-width: 640px;
    color: rgba(255, 255, 255, .72) !important;
    font-size: 18px;
    line-height: 1.7;
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 0;
}

.spec-grid div {
    padding: 18px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
}

.spec-grid dt {
    color: rgba(255, 255, 255, .58);
    font-weight: 800;
}

.spec-grid dd {
    margin: 7px 0 0;
    color: #fff;
    font-size: 20px;
    font-weight: 850;
}

@media (max-width: 980px) {
    .product-grid,
    .flow-strip,
    .store-product {
        grid-template-columns: 1fr;
    }

    .nav-premium {
        min-height: 126px !important;
        padding: 10px 0;
    }

    .brand-lockup {
        gap: 18px;
    }

    .brand-lockup img {
        width: 94px;
        height: 94px;
    }

    .brand-copy strong {
        font-size: 38px;
    }

    .brand-copy small {
        font-size: 12px;
    }

    .nav-premium nav a {
        font-size: 14px;
        padding: 8px 10px;
    }

    .store-hero {
        min-height: 68vh;
    }

    .section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .product-buy {
        position: static;
    }

    .gallery-main {
        min-height: 300px;
    }

    .landing-hero {
        background: linear-gradient(180deg, #f7f8f5 0%, #eef2ef 64%, #101519 64%, #101519 100%);
    }

    .landing-hero-grid,
    .product-feature,
    .product-feature.is-reversed,
    .trust-grid,
    .technical-panel {
        grid-template-columns: 1fr;
    }

    .landing-hero-grid {
        min-height: auto;
        padding: 56px 0 70px;
    }

    .hero-product-stage {
        min-height: 540px;
    }

    .product-feature,
    .product-feature.is-reversed {
        min-height: auto;
        gap: 28px;
        padding: 44px 0;
    }

    .product-feature.is-reversed .product-feature-media {
        order: 0;
    }

    .product-feature-media,
    .product-feature-media img,
    .product-feature-media video {
        min-height: 360px;
    }
}

@media (max-width: 720px) {
    .nav {
        min-height: 86px !important;
    }

    nav {
        display: none !important;
    }

    .product-grid {
        gap: 16px;
    }

    .store-hero .container {
        padding: 92px 0 44px;
    }

    .store-hero::before {
        background:
            linear-gradient(180deg, rgba(246, 247, 245, .98), rgba(246, 247, 245, .90) 54%, rgba(246, 247, 245, .42)),
            linear-gradient(90deg, rgba(246, 247, 245, .92), rgba(246, 247, 245, .50));
    }

    .hero-actions .btn,
    .section-head .btn {
        width: 100%;
    }

    .footer-row {
        flex-direction: column;
    }

    .brand-lockup img {
        width: 68px;
        height: 68px;
    }

    .brand-copy strong {
        font-size: 28px;
    }

    .brand-copy small {
        font-size: 10px;
    }

    .landing-copy h1 {
        font-size: 46px;
    }

    .hero-product-stage {
        min-height: 440px;
    }

    .hero-main-image {
        width: 100%;
        right: 0;
        top: 0;
    }

    .hero-secondary-image {
        width: 58%;
        bottom: 8px;
        border-width: 6px;
    }

    .hero-tertiary-image {
        width: 34%;
        right: 0;
        bottom: 0;
        border-width: 6px;
    }

    .product-feature-copy h2 {
        font-size: 42px;
    }

    .feature-buy-row .btn {
        width: 100%;
    }

    .technical-panel {
        padding: 24px;
    }

    .spec-grid {
        grid-template-columns: 1fr;
    }
}

body.landing-page {
    color: #f7f8f5 !important;
    background: #090d10 !important;
}

.landing-page header {
    background: rgba(9, 13, 16, .86) !important;
    border-bottom: 1px solid rgba(255, 255, 255, .10) !important;
    backdrop-filter: blur(18px);
}

.landing-page .nav-premium {
    min-height: 106px !important;
    padding: 12px 0;
}

.landing-page .brand-lockup {
    gap: 18px;
    color: #fff !important;
}

.landing-page .brand-lockup img {
    width: 76px;
    height: 76px;
    border: 1px solid rgba(255, 214, 107, .28);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .32);
}

.landing-page .brand-copy strong {
    color: #fff;
    font-size: clamp(30px, 3vw, 42px);
    letter-spacing: 0;
}

.landing-page .brand-copy small {
    color: #59d5ba;
    font-size: 12px;
    letter-spacing: .08em;
}

.landing-page .nav-premium nav a {
    color: rgba(255, 255, 255, .74) !important;
    font-size: 14px;
}

.landing-page .nav-premium nav a:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, .08);
}

.landing-page .nav-premium .nav-cta {
    color: #fff !important;
    background: #f0562f !important;
}

.landing-page .landing-hero {
    min-height: calc(100vh - 106px);
    background:
        linear-gradient(115deg, rgba(9, 13, 16, .98) 0%, rgba(10, 17, 22, .98) 48%, rgba(31, 22, 17, .92) 100%),
        url("/images/hero-porta-roadbook.jpg") center / cover;
    isolation: isolate;
}

.landing-page .landing-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(90deg, rgba(240, 86, 47, .18), transparent 24%),
        linear-gradient(180deg, transparent 0%, rgba(9, 13, 16, .90) 100%);
    pointer-events: none;
}

.landing-page .landing-hero::after {
    height: 170px;
    background: linear-gradient(0deg, #090d10, rgba(9, 13, 16, 0));
}

.landing-page .landing-hero-grid {
    min-height: calc(100vh - 106px);
    grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
    gap: 58px;
    padding: 64px 0 88px;
}

.landing-page .landing-copy {
    max-width: 820px;
}

.landing-page .eyebrow {
    color: #59d5ba !important;
    font-size: 14px;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.landing-page .landing-copy h1 {
    max-width: 850px;
    margin: 16px 0 20px;
    color: #fff;
    font-size: clamp(58px, 7.2vw, 112px);
    line-height: .88;
    text-wrap: balance;
}

.landing-page .landing-copy p {
    max-width: 710px;
    color: rgba(255, 255, 255, .82) !important;
    font-size: clamp(18px, 1.7vw, 23px);
    line-height: 1.62;
    font-weight: 520;
}

.landing-page .hero-actions {
    margin-top: 30px;
}

.landing-page .btn-primary {
    min-height: 52px;
    padding: 15px 22px;
    background: #f0562f !important;
    box-shadow: 0 18px 42px rgba(240, 86, 47, .30);
}

.landing-page .btn-secondary {
    min-height: 52px;
    padding: 15px 22px;
    color: #fff !important;
    background: rgba(255, 255, 255, .08) !important;
    border-color: rgba(255, 255, 255, .18) !important;
}

.landing-page .hero-signal-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 720px;
    margin-top: 32px;
}

.landing-page .hero-signal-row span {
    min-height: 82px;
    padding: 16px;
    color: rgba(255, 255, 255, .76);
    background: rgba(255, 255, 255, .075);
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 8px;
}

.landing-page .hero-signal-row strong {
    display: block;
    color: #fff;
    font-size: 28px;
    line-height: 1;
}

.landing-page .hero-product-stage {
    min-height: 690px;
    perspective: 1200px;
}

.landing-page .hero-product-stage::before {
    content: "SCF";
    position: absolute;
    right: -3%;
    top: 3%;
    color: rgba(255, 255, 255, .045);
    font-size: clamp(120px, 16vw, 230px);
    font-weight: 900;
    letter-spacing: .02em;
    line-height: .8;
}

.landing-page .stage-card {
    position: absolute;
    overflow: hidden;
    background: #11181d;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    box-shadow: 0 34px 100px rgba(0, 0, 0, .46);
}

.landing-page .stage-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.landing-page .stage-card span {
    position: absolute;
    left: 14px;
    bottom: 14px;
    padding: 9px 12px;
    color: #fff;
    background: rgba(9, 13, 16, .74);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 850;
    backdrop-filter: blur(10px);
}

.landing-page .stage-main {
    right: 0;
    top: 4%;
    z-index: 1;
    width: min(690px, 96%);
    aspect-ratio: 16 / 11;
    transform: rotate(-4deg) translateY(8px);
}

.landing-page .stage-control {
    left: -1%;
    bottom: 3%;
    z-index: 3;
    width: min(390px, 48%);
    aspect-ratio: 4 / 3;
    transform: rotate(3deg);
}

.landing-page .stage-app {
    right: 3%;
    bottom: 0;
    z-index: 4;
    width: min(250px, 31%);
    aspect-ratio: 3 / 5;
    transform: rotate(5deg);
}

.landing-page .product-story {
    padding: 84px 0 96px;
    background:
        linear-gradient(180deg, #090d10 0%, #10171b 54%, #0b0f12 100%);
}

.landing-page .product-story-intro {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(280px, .55fr);
    gap: 36px;
    align-items: end;
    margin-bottom: 34px;
}

.landing-page .product-story-intro h2 {
    max-width: 900px;
    margin: 12px 0 0;
    color: #fff;
    font-size: clamp(38px, 5vw, 72px);
    line-height: .95;
}

.landing-page .product-story-intro p {
    color: rgba(255, 255, 255, .68) !important;
    font-size: 18px;
    line-height: 1.65;
}

.landing-page .product-feature {
    min-height: 0;
    grid-template-columns: minmax(310px, .86fr) minmax(0, 1fr);
    gap: 38px;
    margin-top: 22px;
    padding: 24px;
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .25);
}

.landing-page .product-feature.is-reversed {
    grid-template-columns: minmax(0, 1fr) minmax(310px, .86fr);
}

.landing-page .product-feature-media {
    min-height: 420px;
    background: #0b0f12;
    border-radius: 8px;
    box-shadow: none;
}

.landing-page .product-feature-media img,
.landing-page .product-feature-media video {
    min-height: 420px;
}

.landing-page .product-feature-copy {
    align-self: center;
}

.landing-page .product-feature-copy h2 {
    color: #fff;
    font-size: clamp(38px, 4.2vw, 64px);
}

.landing-page .product-feature-copy h3 {
    color: rgba(255, 255, 255, .88);
}

.landing-page .product-feature-copy p {
    color: rgba(255, 255, 255, .66) !important;
}

.landing-page .feature-points span {
    color: #dffdf3;
    background: rgba(89, 213, 186, .10);
    border-color: rgba(89, 213, 186, .22);
}

.landing-page .feature-buy-row strong {
    color: #ffce6b;
}

.landing-page .trust-band {
    background: #f6f7f5;
    color: #17202a;
}

.landing-page .trust-grid h2,
.landing-page .trust-item strong {
    color: #17202a;
}

.landing-page .trust-item span {
    color: #60707d;
}

.landing-page footer {
    background: #090d10 !important;
    border-top-color: rgba(255, 255, 255, .10) !important;
}

@media (max-width: 980px) {
    .landing-page .landing-hero-grid,
    .landing-page .product-story-intro {
        grid-template-columns: 1fr;
    }

    .landing-page .landing-hero-grid {
        min-height: auto;
    }

    .landing-page .hero-product-stage {
        min-height: 620px;
    }

    .landing-page .product-feature,
    .landing-page .product-feature.is-reversed {
        grid-template-columns: 1fr;
    }

    .landing-page .product-feature.is-reversed .product-feature-media {
        order: 0;
    }
}

@media (max-width: 720px) {
    .landing-page .nav-premium {
        min-height: 88px !important;
    }

    .landing-page .brand-lockup img {
        width: 62px;
        height: 62px;
    }

    .landing-page .brand-copy strong {
        font-size: 24px;
    }

    .landing-page .landing-copy h1 {
        font-size: clamp(48px, 14vw, 68px);
    }

    .landing-page .hero-signal-row {
        grid-template-columns: 1fr;
    }

    .landing-page .hero-product-stage {
        min-height: 500px;
    }

    .landing-page .stage-main {
        width: 100%;
        top: 0;
    }

    .landing-page .stage-control {
        width: 58%;
        left: 0;
        bottom: 16px;
    }

    .landing-page .stage-app {
        width: 34%;
        right: 0;
        bottom: 0;
    }

    .landing-page .product-feature {
        padding: 14px;
    }
}

.landing-page {
    --lp-bg: #06101d;
    --lp-bg-deep: #020712;
    --lp-panel: rgba(12, 26, 46, .76);
    --lp-panel-strong: rgba(16, 35, 62, .90);
    --lp-blue: #2f7df6;
    --lp-blue-bright: #60a5fa;
    --lp-cyan: #57e7d1;
    --lp-ink: #f8fbff;
    --lp-muted: rgba(226, 239, 255, .74);
    font-family: Inter, "Segoe UI", Arial, sans-serif !important;
    background: var(--lp-bg-deep) !important;
}

.landing-page .container {
    width: min(1760px, calc(100% - 64px)) !important;
}

.landing-page .brand-copy strong,
.landing-page .landing-copy h1,
.landing-page .product-story-intro h2,
.landing-page .product-feature-copy h2,
.landing-page .trust-grid h2 {
    font-family: Rajdhani, "Arial Narrow", Inter, sans-serif;
    font-weight: 700;
}

.landing-page header {
    background: rgba(4, 12, 24, .90) !important;
    border-bottom: 1px solid rgba(96, 165, 250, .22) !important;
}

.landing-page .nav-premium {
    min-height: 128px !important;
}

.landing-page .brand-lockup {
    gap: 22px;
}

.landing-page .brand-lockup img {
    width: 96px;
    height: 96px;
    border-color: rgba(96, 165, 250, .34);
    box-shadow: 0 20px 50px rgba(47, 125, 246, .22);
}

.landing-page .brand-copy strong {
    font-size: clamp(44px, 3.5vw, 58px);
    line-height: .88;
}

.landing-page .brand-copy small {
    color: var(--lp-cyan);
    font-size: 14px;
    letter-spacing: .09em;
}

.landing-page .nav-premium nav {
    gap: 14px;
}

.landing-page .nav-premium nav a {
    min-height: 46px;
    padding: 12px 15px;
    color: rgba(232, 242, 255, .82) !important;
    font-size: 16px;
}

.landing-page .nav-premium .nav-cta,
.landing-page .btn-primary {
    background: var(--lp-blue) !important;
    box-shadow: 0 20px 46px rgba(47, 125, 246, .36);
}

.landing-page .nav-premium .nav-cta:hover,
.landing-page .btn-primary:hover {
    background: #1d63d8 !important;
}

.landing-page .landing-hero {
    min-height: calc(100vh - 128px);
    background:
        radial-gradient(circle at 72% 24%, rgba(47, 125, 246, .32), transparent 34%),
        radial-gradient(circle at 18% 44%, rgba(87, 231, 209, .12), transparent 32%),
        linear-gradient(118deg, rgba(2, 7, 18, .98) 0%, rgba(6, 18, 32, .98) 46%, rgba(8, 34, 72, .92) 100%),
        url("/images/hero-porta-roadbook.jpg") center / cover;
}

.landing-page .landing-hero::before {
    background:
        linear-gradient(90deg, rgba(47, 125, 246, .24), transparent 28%),
        linear-gradient(180deg, rgba(2, 7, 18, .10) 0%, rgba(2, 7, 18, .92) 100%);
}

.landing-page .landing-hero::after {
    background: linear-gradient(0deg, var(--lp-bg-deep), rgba(2, 7, 18, 0));
}

.landing-page .landing-hero-grid {
    min-height: calc(100vh - 128px);
    grid-template-columns: minmax(0, .94fr) minmax(620px, 1.06fr);
    gap: clamp(42px, 5vw, 90px);
    padding: 74px 0 96px;
}

.landing-page .eyebrow {
    color: var(--lp-cyan) !important;
}

.landing-page .landing-copy h1 {
    max-width: 980px;
    color: var(--lp-ink);
    font-size: clamp(72px, 7vw, 128px);
    line-height: .84;
}

.landing-page .landing-copy p {
    max-width: 860px;
    color: var(--lp-muted) !important;
    font-size: clamp(21px, 1.6vw, 29px);
    line-height: 1.46;
    font-weight: 700;
}

.landing-page .btn-secondary {
    color: #eaf3ff !important;
    background: rgba(47, 125, 246, .12) !important;
    border-color: rgba(96, 165, 250, .34) !important;
}

.landing-page .hero-signal-row {
    max-width: 900px;
    gap: 16px;
}

.landing-page .hero-signal-row span {
    min-height: 94px;
    color: rgba(226, 239, 255, .78);
    background: linear-gradient(180deg, rgba(32, 64, 110, .58), rgba(13, 27, 48, .72));
    border-color: rgba(96, 165, 250, .25);
}

.landing-page .hero-signal-row strong {
    color: #fff;
    font-size: 30px;
}

.landing-page .hero-product-stage {
    min-height: 720px;
}

.landing-page .hero-product-stage::before {
    color: rgba(96, 165, 250, .07);
}

.landing-page .stage-card {
    background: var(--lp-panel-strong);
    border-color: rgba(96, 165, 250, .28);
    box-shadow: 0 36px 110px rgba(0, 0, 0, .50), 0 0 60px rgba(47, 125, 246, .10);
}

.landing-page .stage-card span {
    background: rgba(4, 12, 24, .78);
    border-color: rgba(96, 165, 250, .32);
}

.landing-page .stage-main {
    width: min(780px, 100%);
}

.landing-page .stage-control {
    width: min(430px, 50%);
}

.landing-page .stage-app {
    width: min(285px, 32%);
}

.landing-page .product-story {
    background:
        radial-gradient(circle at 16% 8%, rgba(47, 125, 246, .18), transparent 34%),
        linear-gradient(180deg, var(--lp-bg-deep) 0%, #071626 48%, #050b14 100%);
}

.landing-page .product-feature {
    background: linear-gradient(135deg, rgba(16, 35, 62, .72), rgba(6, 16, 29, .88));
    border-color: rgba(96, 165, 250, .18);
}

.landing-page .feature-points span {
    color: #dff7ff;
    background: rgba(47, 125, 246, .14);
    border-color: rgba(96, 165, 250, .28);
}

.landing-page .feature-buy-row strong {
    color: var(--lp-blue-bright);
}

.landing-page .trust-item {
    border-top-color: var(--lp-blue);
}

@media (max-width: 1180px) {
    .landing-page .landing-hero-grid {
        grid-template-columns: 1fr;
    }

    .landing-page .hero-product-stage {
        min-height: 640px;
    }
}

@media (max-width: 720px) {
    .landing-page .container {
        width: min(100% - 28px, 1760px) !important;
    }

    .landing-page .brand-lockup img {
        width: 68px;
        height: 68px;
    }

    .landing-page .brand-copy strong {
        font-size: 30px;
    }

    .landing-page .landing-copy h1 {
        font-size: clamp(54px, 16vw, 78px);
    }

    .landing-page .landing-copy p {
        font-size: 19px;
    }
}

.landing-page .product-story-intro.product-story-heading {
    display: block;
    margin-bottom: clamp(24px, 3vw, 42px);
}

.landing-page .product-story-heading h2 {
    margin: 0;
    color: var(--lp-ink);
    font-size: clamp(52px, 5.4vw, 92px);
    line-height: .86;
}

.landing-page .product-feature,
.landing-page .product-feature.is-reversed {
    gap: clamp(30px, 3.4vw, 58px);
    padding: clamp(28px, 3.4vw, 56px);
}

.landing-page .product-feature {
    grid-template-columns: minmax(420px, .98fr) minmax(0, 1.02fr);
}

.landing-page .product-feature.is-reversed {
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
}

.landing-page .product-feature-media {
    display: block;
    min-height: 0;
    height: clamp(430px, 38vw, 610px);
    aspect-ratio: 16 / 10;
}

.landing-page .product-feature-media img,
.landing-page .product-feature-media video {
    height: 100%;
    min-height: 0;
    object-fit: cover;
}

.landing-page .product-feature-copy h2 {
    max-width: 1000px;
    font-size: clamp(48px, 4.8vw, 82px);
}

.landing-page .product-feature-copy h3 {
    max-width: 960px;
    font-size: clamp(28px, 3vw, 46px);
}

.landing-page .product-feature-copy p {
    max-width: 920px;
    font-size: clamp(18px, 1.45vw, 24px);
}

.landing-page .feature-points {
    max-width: 1040px;
    gap: 12px;
}

.landing-page .feature-points span {
    padding: 11px 14px;
    font-size: clamp(15px, 1.05vw, 18px);
}

.landing-page .trust-band {
    padding: clamp(56px, 6vw, 94px) 0;
}

.landing-page .trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(24px, 3vw, 52px);
}

.landing-page .trust-item {
    padding-top: 28px;
}

.landing-page .trust-item strong {
    font-family: Rajdhani, "Arial Narrow", Inter, sans-serif;
    font-size: clamp(34px, 3.1vw, 54px);
    line-height: .94;
}

.landing-page .trust-item span {
    max-width: 680px;
    font-size: clamp(18px, 1.35vw, 23px);
    line-height: 1.45;
}

@media (max-width: 980px) {
    .landing-page .product-feature,
    .landing-page .product-feature.is-reversed,
    .landing-page .trust-grid {
        grid-template-columns: 1fr;
    }

    .landing-page .product-feature-media {
        height: clamp(320px, 58vw, 520px);
    }
}

@media (max-width: 720px) {
    .landing-page .product-story-heading h2 {
        font-size: clamp(46px, 15vw, 72px);
    }

    .landing-page .product-feature-copy h2 {
        font-size: clamp(42px, 12vw, 62px);
    }

    .landing-page .product-feature-copy h3 {
        font-size: clamp(25px, 7vw, 34px);
    }

    .landing-page .product-feature-media {
        height: clamp(300px, 72vw, 440px);
    }
}

.landing-page .landing-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(420px, .82fr);
    align-items: center;
    gap: clamp(42px, 5vw, 78px);
}

.landing-page .landing-copy h1 {
    max-width: 920px;
    font-size: clamp(66px, 6.2vw, 116px);
}

.landing-page .hero-product-stage {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 18px;
    align-content: center;
    min-height: 0;
    max-width: 760px;
    width: 100%;
    justify-self: end;
}

.landing-page .hero-product-stage::before {
    display: none;
}

.landing-page .stage-card,
.landing-page .stage-main,
.landing-page .stage-control,
.landing-page .stage-app {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
}

.landing-page .stage-main {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
    max-height: 430px;
}

.landing-page .stage-control,
.landing-page .stage-app {
    aspect-ratio: 4 / 3;
    max-height: 230px;
}

.landing-page .stage-control {
    grid-column: auto;
}

.landing-page .stage-app {
    grid-column: auto;
}

.landing-page .stage-card img {
    object-fit: cover;
}

.landing-page .stage-card span {
    display: none;
}

.landing-page .product-feature {
    grid-template-columns: minmax(320px, .78fr) minmax(0, 1.22fr);
}

.landing-page .product-feature.is-reversed {
    grid-template-columns: minmax(0, 1.22fr) minmax(320px, .78fr);
}

.landing-page .product-feature-media {
    height: clamp(340px, 30vw, 480px);
}

.landing-page .product-feature-copy h2 {
    font-size: clamp(44px, 4.2vw, 70px);
}

.landing-page .product-feature-copy h3 {
    font-size: clamp(26px, 2.55vw, 40px);
}

.landing-page .feature-buy-row {
    margin-top: 6px;
}

@media (max-width: 1180px) {
    .landing-page .landing-hero-grid {
        grid-template-columns: 1fr;
    }

    .landing-page .hero-product-stage {
        max-width: 860px;
        justify-self: start;
    }
}

@media (max-width: 980px) {
    .landing-page .product-feature,
    .landing-page .product-feature.is-reversed {
        grid-template-columns: 1fr;
    }

    .landing-page .product-feature.is-reversed .product-feature-media {
        order: 0;
    }

    .landing-page .product-feature-media {
        height: clamp(300px, 56vw, 460px);
    }
}

@media (max-width: 720px) {
    .landing-page .landing-copy h1 {
        font-size: clamp(50px, 14vw, 70px);
    }

    .landing-page .hero-product-stage {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .landing-page .stage-main,
    .landing-page .stage-control,
    .landing-page .stage-app {
        max-height: none;
        aspect-ratio: 16 / 10;
    }

    .landing-page .product-feature-media {
        height: clamp(280px, 68vw, 390px);
    }
}

.landing-page .product-feature,
.landing-page .product-feature.is-reversed {
    grid-template-columns: minmax(0, 1fr) minmax(420px, .78fr);
    align-items: center;
    overflow: hidden;
}

.landing-page .product-feature > * {
    min-width: 0;
}

.landing-page .product-feature-copy {
    order: 1;
    max-width: 940px;
}

.landing-page .product-feature-media,
.landing-page .product-feature.is-reversed .product-feature-media {
    order: 2;
    justify-self: end;
    width: 100%;
    max-width: 760px;
    height: clamp(360px, 31vw, 520px);
}

.landing-page .product-feature-media img,
.landing-page .product-feature-media video {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
}

@media (max-width: 1180px) {
    .landing-page .product-feature,
    .landing-page .product-feature.is-reversed {
        grid-template-columns: minmax(0, 1fr) minmax(360px, .86fr);
    }

    .landing-page .product-feature-media,
    .landing-page .product-feature.is-reversed .product-feature-media {
        max-width: 660px;
        height: clamp(320px, 36vw, 460px);
    }
}

@media (max-width: 900px) {
    .landing-page .product-feature,
    .landing-page .product-feature.is-reversed {
        grid-template-columns: 1fr;
    }

    .landing-page .product-feature-copy {
        order: 1;
    }

    .landing-page .product-feature-media,
    .landing-page .product-feature.is-reversed .product-feature-media {
        order: 2;
    }

    .landing-page .product-feature-media,
    .landing-page .product-feature.is-reversed .product-feature-media {
        justify-self: stretch;
        max-width: none;
        height: clamp(280px, 62vw, 430px);
    }
}

.landing-page #productos {
    scroll-margin-top: 150px;
}

.landing-page .landing-hero {
    background:
        linear-gradient(90deg, rgba(4, 12, 24, .88), rgba(4, 12, 24, .56) 46%, rgba(7, 34, 72, .44)),
        radial-gradient(circle at 76% 18%, rgba(96, 165, 250, .22), transparent 34%),
        linear-gradient(118deg, rgba(2, 7, 18, .98) 0%, rgba(6, 18, 32, .98) 46%, rgba(8, 34, 72, .92) 100%),
        url("/images/hero-porta-roadbook.jpg") center / cover;
}

.landing-page .stage-card {
    border-color: rgba(96, 165, 250, .34);
    box-shadow: 0 34px 90px rgba(0, 0, 0, .42), 0 0 0 1px rgba(255, 255, 255, .035) inset;
}

.landing-page .stage-card img,
.landing-page .product-feature-media img,
.landing-page .product-feature-media video {
    transition: transform .35s ease, filter .35s ease;
}

.landing-page .stage-card:hover img,
.landing-page .product-feature-media:hover img,
.landing-page .product-feature-media:hover video {
    filter: saturate(1.08) contrast(1.04);
    transform: scale(1.025);
}

.landing-page .hero-signal-row span {
    border-color: rgba(96, 165, 250, .34);
    box-shadow: 0 18px 48px rgba(0, 0, 0, .22);
}

.landing-page .product-story {
    padding-top: clamp(74px, 7vw, 118px);
}

.landing-page .product-feature,
.landing-page .product-feature.is-reversed {
    position: relative;
    isolation: isolate;
    background:
        linear-gradient(135deg, rgba(20, 45, 78, .82), rgba(5, 14, 27, .94));
    border-color: rgba(96, 165, 250, .24);
    box-shadow: 0 32px 100px rgba(0, 0, 0, .28), 0 0 0 1px rgba(255, 255, 255, .028) inset;
}

.landing-page .product-feature::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(87, 231, 209, .58), rgba(96, 165, 250, .46), transparent);
    z-index: -1;
}

.landing-page .product-feature-copy .eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 10px;
    background: rgba(87, 231, 209, .08);
    border: 1px solid rgba(87, 231, 209, .18);
    border-radius: 8px;
}

.landing-page .product-feature-media,
.landing-page .product-feature.is-reversed .product-feature-media {
    border: 1px solid rgba(96, 165, 250, .25);
    box-shadow: 0 24px 72px rgba(0, 0, 0, .28);
}

.landing-page .feature-points span {
    border-radius: 8px;
    min-height: 42px;
}

.landing-page .feature-buy-row {
    padding-top: 18px;
    border-top: 1px solid rgba(96, 165, 250, .18);
}

.landing-page .feature-buy-row .btn {
    min-width: 150px;
}

.landing-page .trust-band {
    background:
        linear-gradient(180deg, #f7fbff 0%, #edf6ff 100%);
    border-top: 1px solid rgba(96, 165, 250, .18);
}

.landing-page .trust-grid {
    align-items: stretch;
}

.landing-page .trust-item {
    min-height: 190px;
    padding: clamp(24px, 2.4vw, 34px);
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(47, 125, 246, .18);
    border-top: 5px solid var(--lp-blue);
    border-radius: 8px;
    box-shadow: 0 22px 70px rgba(15, 35, 65, .10);
}

.landing-page .trust-item strong {
    color: #071626;
}

.landing-page .trust-item span {
    color: #415569;
}

@media (max-width: 720px) {
    .landing-page .nav-premium {
        min-height: 88px !important;
    }

    .landing-page .nav-premium nav {
        display: flex !important;
    }

    .landing-page .nav-premium nav a:not(.nav-cta) {
        display: none !important;
    }

    .landing-page .nav-premium .nav-cta {
        display: inline-flex !important;
        min-height: 44px;
    }

    .landing-page .brand-copy small {
        display: none;
    }

    .landing-page .hero-signal-row span {
        min-height: 72px;
    }

    .landing-page .trust-item {
        min-height: 0;
    }
}

body.store-page {
    --store-bg: #020712;
    --store-panel: rgba(12, 26, 46, .82);
    --store-panel-strong: rgba(16, 35, 62, .92);
    --store-line: rgba(96, 165, 250, .22);
    --store-line-strong: rgba(96, 165, 250, .36);
    --store-ink: #f8fbff;
    --store-muted: rgba(226, 239, 255, .72);
    --store-blue: #2f7df6;
    --store-blue-bright: #60a5fa;
    --store-cyan: #57e7d1;
    margin: 0;
    color: var(--store-ink) !important;
    background:
        radial-gradient(circle at 82% 4%, rgba(47, 125, 246, .24), transparent 32%),
        radial-gradient(circle at 14% 18%, rgba(87, 231, 209, .10), transparent 28%),
        linear-gradient(180deg, #020712 0%, #061222 48%, #020712 100%) !important;
    font-family: Inter, "Segoe UI", Arial, sans-serif !important;
}

.store-page a {
    color: inherit;
}

.store-page .container {
    width: min(1480px, calc(100% - 64px)) !important;
}

.store-page header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(4, 12, 24, .92) !important;
    border-bottom: 1px solid var(--store-line) !important;
    backdrop-filter: blur(18px);
}

.store-page .nav {
    min-height: 104px !important;
    gap: 24px;
}

.store-page .brand-lockup {
    gap: 16px;
    color: #fff !important;
    font-size: inherit !important;
}

.store-page .brand-lockup img {
    width: 72px;
    height: 72px;
    border: 1px solid rgba(96, 165, 250, .34);
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 18px 44px rgba(47, 125, 246, .18);
}

.store-page .brand-copy {
    gap: 4px;
}

.store-page .brand-copy strong,
.store-page h1,
.store-page h2,
.store-page .section-title,
.store-page .total,
.store-page .order-number {
    font-family: Rajdhani, "Arial Narrow", Inter, sans-serif;
    letter-spacing: 0 !important;
}

.store-page .brand-copy strong {
    color: #fff;
    font-size: clamp(30px, 2.8vw, 44px);
    line-height: .9;
}

.store-page .brand-copy small {
    color: var(--store-cyan);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.store-page nav {
    gap: 12px;
}

.store-page nav a,
.store-page .back {
    min-height: 44px;
    padding: 10px 13px;
    color: rgba(232, 242, 255, .80) !important;
    border-radius: 8px;
}

.store-page nav a:hover,
.store-page .back:hover {
    color: #fff !important;
    background: rgba(96, 165, 250, .12);
}

.store-page main {
    min-height: calc(100vh - 104px);
}

.store-page main.container,
.store-page .catalog-hero {
    padding-top: clamp(42px, 5vw, 76px);
    padding-bottom: clamp(64px, 7vw, 104px);
}

.store-page h1,
.store-page .section-title {
    max-width: 980px;
    margin: 0 0 16px;
    color: #fff !important;
    font-size: clamp(50px, 5.8vw, 92px) !important;
    line-height: .88;
}

.store-page h2 {
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(28px, 2.8vw, 44px);
    line-height: 1;
}

.store-page h3 {
    color: #fff;
}

.store-page p,
.store-page .muted,
.store-page .section-text,
.store-page .lead {
    color: var(--store-muted) !important;
}

.store-page .eyebrow {
    color: var(--store-cyan) !important;
    letter-spacing: .16em;
}

.store-page .section-head {
    align-items: flex-end;
    margin-bottom: clamp(24px, 3vw, 42px);
}

.store-page .btn,
.store-page .btn-primary,
.store-page .nav-cta {
    background: var(--store-blue) !important;
    color: #fff !important;
    border: 0 !important;
    box-shadow: 0 18px 42px rgba(47, 125, 246, .32);
}

.store-page .btn:hover,
.store-page .btn-primary:hover {
    background: #1d63d8 !important;
}

.store-page .btn-secondary,
.store-page .back {
    background: rgba(96, 165, 250, .08) !important;
    border: 1px solid var(--store-line) !important;
    box-shadow: none;
}

.store-page .btn-danger {
    background: rgba(236, 72, 72, .18) !important;
    color: #ffd7d7 !important;
    border: 1px solid rgba(248, 113, 113, .30) !important;
}

.store-page .card,
.store-page .summary-box,
.store-page .method,
.store-page .delivery-option,
.store-page .pickup-note,
.store-page .note,
.store-page .product-buy,
.store-page .technical-panel {
    color: var(--store-ink) !important;
    background:
        linear-gradient(135deg, rgba(20, 45, 78, .82), rgba(5, 14, 27, .94)) !important;
    border: 1px solid var(--store-line) !important;
    border-radius: 8px !important;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .28), 0 0 0 1px rgba(255, 255, 255, .025) inset;
}

.store-page .tag,
.store-page .point {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    min-height: 32px;
    padding: 7px 10px;
    color: var(--store-cyan) !important;
    background: rgba(87, 231, 209, .09) !important;
    border: 1px solid rgba(87, 231, 209, .18) !important;
    border-radius: 8px !important;
    font-weight: 900;
}

.store-page .price,
.store-page .total,
.store-page .order-number {
    color: var(--store-blue-bright) !important;
}

.store-page .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2vw, 28px);
}

.store-page .product-card {
    overflow: hidden;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.store-page .product-card:hover {
    transform: translateY(-4px);
    border-color: var(--store-line-strong) !important;
    box-shadow: 0 34px 100px rgba(0, 0, 0, .36);
}

.store-page .product-card .media {
    height: clamp(250px, 24vw, 360px);
    background: rgba(3, 10, 20, .82) !important;
    border: 0 !important;
    border-bottom: 1px solid var(--store-line) !important;
    border-radius: 0 !important;
    padding: clamp(10px, 1.4vw, 18px);
}

.store-page .media img,
.store-page .media video,
.store-page .product-media img,
.store-page .product-media video,
.store-page .gallery-main img,
.store-page .gallery-main video,
.store-page .gallery-thumb img,
.store-page .gallery-thumb video {
    transition: transform .35s ease, filter .35s ease;
}

.store-page .product-card:hover .media img,
.store-page .product-card:hover .media video,
.store-page .gallery-thumb:hover img,
.store-page .gallery-thumb:hover video {
    filter: saturate(1.08) contrast(1.04);
    transform: scale(1.035);
}

.store-page .product-card .media img,
.store-page .product-card .media video,
.store-page .gallery-main img,
.store-page .gallery-main video,
.store-page .gallery-thumb img,
.store-page .gallery-thumb video {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    object-position: center;
}

.store-page .product-card:hover .media img,
.store-page .product-card:hover .media video,
.store-page .gallery-thumb:hover img,
.store-page .gallery-thumb:hover video {
    transform: none;
}

.store-page .product-card .body {
    padding: 24px;
}

.store-page .product-card h2,
.store-page .product-card h3 {
    color: #fff;
    font-size: clamp(28px, 2.4vw, 38px);
}

.store-page .store-product {
    grid-template-columns: minmax(440px, 1fr) minmax(380px, .78fr);
    gap: clamp(28px, 3.2vw, 54px);
    padding: clamp(44px, 5vw, 76px) 0;
}

.store-page .product-buy {
    padding: clamp(24px, 2.5vw, 34px);
    top: 128px;
}

.store-page .gallery-main,
.store-page .media,
.store-page .product-media {
    color: var(--store-muted) !important;
    background: rgba(3, 10, 20, .80) !important;
    border: 1px solid var(--store-line) !important;
    border-radius: 8px !important;
    box-shadow: 0 24px 72px rgba(0, 0, 0, .28);
}

.store-page .gallery-main {
    min-height: 0;
    aspect-ratio: 16 / 11;
    padding: clamp(12px, 1.6vw, 22px);
}

.store-page .gallery-caption {
    margin: 14px 0 0;
    color: var(--store-muted) !important;
}

.store-page .gallery-thumbs {
    grid-template-columns: repeat(auto-fit, minmax(86px, 1fr));
}

.store-page .gallery-thumb {
    background: rgba(12, 26, 46, .82) !important;
    border: 1px solid var(--store-line) !important;
    border-radius: 8px;
    padding: 6px;
}

.store-page .gallery-thumb.is-active {
    outline: 3px solid rgba(96, 165, 250, .34);
    border-color: var(--store-blue-bright) !important;
}

.store-page .section-text,
.store-page .product-buy .section-text {
    max-width: 760px;
    font-size: clamp(18px, 1.35vw, 22px);
    line-height: 1.55;
}

.store-page .product-description,
.store-page .purchase-note,
.store-page .alert-card,
.store-page .buy-panel {
    background: rgba(3, 10, 20, .34) !important;
    border: 1px solid var(--store-line) !important;
    border-radius: 8px !important;
}

.store-page .purchase-note {
    color: var(--store-muted) !important;
}

.store-page .buy-panel {
    box-shadow: none;
}

.store-page .variant {
    border-color: var(--store-line) !important;
}

.store-page table {
    color: var(--store-ink);
    border-collapse: collapse;
}

.store-page th {
    color: rgba(226, 239, 255, .62) !important;
    border-bottom: 1px solid var(--store-line) !important;
}

.store-page td {
    border-bottom: 1px solid rgba(96, 165, 250, .13) !important;
}

.store-page input,
.store-page select,
.store-page textarea {
    width: 100%;
    color: var(--store-ink) !important;
    background: rgba(2, 7, 18, .78) !important;
    border: 1px solid var(--store-line) !important;
    border-radius: 8px !important;
}

.store-page input:focus,
.store-page select:focus,
.store-page textarea:focus {
    outline: 3px solid rgba(96, 165, 250, .18);
    border-color: var(--store-blue-bright) !important;
}

.store-page label {
    color: rgba(226, 239, 255, .72) !important;
}

.store-page .grid {
    gap: clamp(20px, 2.5vw, 34px);
}

.store-page .delivery-option {
    transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

.store-page .delivery-option:hover {
    transform: translateY(-2px);
    border-color: var(--store-line-strong) !important;
}

.store-page .delivery-option input {
    width: auto;
}

.store-page .item,
.store-page .summary-row,
.store-page .row {
    border-color: var(--store-line) !important;
}

.store-page hr {
    border: 0;
    border-top: 1px solid var(--store-line) !important;
}

.store-page .technical-panel {
    grid-template-columns: minmax(0, .95fr) minmax(340px, 1fr);
    margin-bottom: clamp(58px, 6vw, 92px);
}

.store-page .spec-grid div {
    background: rgba(96, 165, 250, .10);
    border-color: rgba(96, 165, 250, .22);
}

.store-page .spec-grid dt {
    color: rgba(226, 239, 255, .56);
}

.store-page .spec-grid dd {
    color: #fff;
}

.store-page .lead {
    max-width: 900px;
    font-size: clamp(18px, 1.45vw, 24px);
}

.store-page .note {
    margin-top: 24px;
}

.store-page .empty {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 12px;
    color: #ffd7d7;
    background: rgba(236, 72, 72, .12);
    border: 1px solid rgba(248, 113, 113, .28);
    border-radius: 8px;
}

.store-page footer {
    background: rgba(4, 12, 24, .96) !important;
    border-top: 1px solid var(--store-line) !important;
}

.store-page .footer-row {
    color: var(--store-muted);
}

.sentinel-page > .container {
    width: min(760px, calc(100% - 48px)) !important;
    padding: clamp(44px, 6vw, 76px) 0;
}

.sentinel-page .card {
    padding: clamp(24px, 3vw, 36px);
}

.sentinel-page h1 {
    font-size: clamp(42px, 5vw, 70px) !important;
}

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

    .store-page .store-product,
    .store-page .grid,
    .store-page .technical-panel {
        grid-template-columns: 1fr;
    }

    .store-page .product-buy {
        position: static;
    }
}

@media (max-width: 760px) {
    .store-page .container {
        width: min(100% - 28px, 1480px) !important;
    }

    .store-page .nav {
        min-height: 92px !important;
        align-items: center;
    }

    .store-page .brand-lockup img {
        width: 58px;
        height: 58px;
    }

    .store-page .brand-copy strong {
        font-size: 25px;
    }

    .store-page .brand-copy small {
        display: none;
    }

    .store-page nav {
        display: flex !important;
    }

    .store-page nav a {
        min-height: 36px;
        padding: 8px 9px;
        font-size: 13px;
    }

    .store-page h1,
    .store-page .section-title {
        font-size: clamp(42px, 13vw, 62px) !important;
    }

    .store-page .product-grid {
        grid-template-columns: 1fr;
    }

    .store-page .section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .store-page .gallery-main {
        aspect-ratio: 4 / 3;
    }

    .store-page table,
    .store-page thead,
    .store-page tbody,
    .store-page tr,
    .store-page th,
    .store-page td {
        display: block;
    }

    .store-page th {
        display: none;
    }

    .store-page td {
        padding: 10px 0 !important;
    }

    .store-page .btns,
    .store-page .summary,
    .store-page .row,
    .store-page .summary-row {
        align-items: stretch;
    }

    .store-page .btn,
    .store-page .btn-primary,
    .store-page .btn-secondary {
        width: 100%;
    }
}

/* Final storefront refinements: brand asset, stock messaging, and mobile fit. */
.landing-page .brand-lockup img,
.store-page .brand-lockup img {
    object-fit: contain !important;
    background: #111;
    border-color: rgba(203, 171, 28, .55) !important;
}

.availability-pill,
.availability-inline {
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
    align-items: center;
    min-height: 34px;
    padding: 8px 11px;
    color: #dff7ff;
    background: rgba(47, 125, 246, .16);
    border: 1px solid rgba(96, 165, 250, .34);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.2;
}

.availability-inline {
    margin-top: 8px;
    font-size: 13px;
}

.product-card .availability-pill {
    margin: 2px 0 14px;
}

.landing-page .feature-buy-row {
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.landing-page .feature-buy-row .availability-pill {
    color: #eaf7ff;
    background: rgba(87, 231, 209, .10);
    border-color: rgba(87, 231, 209, .25);
}

@media (max-width: 760px) {
    html,
    body {
        overflow-x: hidden;
    }

    .landing-page .nav-premium,
    .store-page .nav {
        min-height: auto !important;
        padding: 10px 0;
        gap: 10px;
    }

    .landing-page .brand-lockup,
    .store-page .brand-lockup {
        min-width: 0;
        gap: 10px;
    }

    .landing-page .brand-lockup img,
    .store-page .brand-lockup img {
        flex: 0 0 54px;
        width: 54px !important;
        height: 54px !important;
    }

    .landing-page .brand-copy strong,
    .store-page .brand-copy strong {
        font-size: clamp(22px, 7vw, 29px) !important;
        line-height: .95;
        white-space: normal;
    }

    .store-page .nav {
        align-items: center;
        flex-wrap: wrap;
    }

    .store-page nav {
        width: 100%;
        justify-content: flex-start;
        gap: 6px;
        overflow-x: auto;
        padding-bottom: 2px;
        scrollbar-width: none;
    }

    .store-page nav::-webkit-scrollbar {
        display: none;
    }

    .store-page nav a {
        flex: 0 0 auto;
        min-height: 36px;
        padding: 8px 10px;
        font-size: 12px;
        white-space: nowrap;
    }

    .store-page main.container,
    .store-page .catalog-hero {
        padding-top: 26px;
    }

    .store-page .product-buy,
    .store-page .buy-panel,
    .store-page .technical-panel {
        padding: 20px;
    }

    .store-page .variant {
        align-items: flex-start;
        gap: 12px;
    }

    .store-page .variant-price {
        align-items: flex-end;
        text-align: right;
    }

    .availability-pill,
    .availability-inline {
        font-size: 13px;
    }
}
