/* Nusaraia pitch deck — layout blocks driven by 21-step workflow (not Qore defaults) */
p,
.s-sub_title,
.deck-pos-table_p,
.pillar-desc,
.comp-verdict,
.deck-platform-card_sub,
.deck-platform-card_value p {
    font-family: "Poppins", sans-serif;
}

.pt-0 {
    padding-top: 0;
}

.box-icon-text .icon lottie-player,
lottie-player {
    opacity: 0.6;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.box-icon-text:hover .icon lottie-player {
    opacity: 1;
}

/* --- Brand Marquee Styles (Subtle Greyscale & 50px Height) --- */
.infiniteSlide_brand {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 18px 0;
}

.image-brand {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    min-width: auto !important;
    height: 56px;
    padding: 0 5px !important;
}

.image-brand img {
    height: 50px !important;
    max-height: 50px !important;
    width: auto !important;
    max-width: 220px !important;
    display: block !important;
    object-fit: contain !important;
    opacity: 0.65 !important;
    filter: grayscale(100%) !important;
    transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.image-brand:hover img {
    opacity: 0.95 !important;
    filter: grayscale(0%) brightness(1.15) !important;
}

/* --- Technical Blueprint & Illustration frames (Seamless pitch-black fade & 100% Uncropped) --- */
.deck-mock-illustration {
    position: relative;
    /* border: 1px solid rgba(255, 255, 255, 0.08); */
    background: #000000;
    overflow: hidden;
    width: 100%;
    margin: 0px 0;
}

.deck-mock-illustration::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.65) 80%, #000000 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, transparent 15%, transparent 85%, #000000 100%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, transparent 15%, transparent 85%, #000000 100%);
    z-index: 1;
}

.deck-mock-illustration img,
.deck-mock-illustration video {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    display: block;
}

/* --- Hero Particles layer (always float on top of all elements) --- */
.hero-particles {
    z-index: 20 !important;
    pointer-events: none !important;
}

.deck-mock-illustration.is-wide,
.deck-mock-illustration.is-panoramic,
.deck-mock-illustration.is-square {
    aspect-ratio: auto;
}

.deck-mock-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    padding: 4px 10px;
    font-family: "Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    pointer-events: none;
}

/* --- Interactive Video Stage with Hover Play/Pause Control --- */
.deck-video-interactive-wrap {
    position: relative;
    cursor: pointer;
}

.deck-video-ctrl-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.92);
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 68, 85, 0.6);
    background: rgba(8, 10, 15, 0.85);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    color: #f4f7f5;
    font-family: "Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.12em;
    cursor: pointer;
    box-shadow: 0 0 25px rgba(255, 68, 85, 0.35), inset 0 0 12px rgba(255, 68, 85, 0.15);
    transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.deck-video-interactive-wrap:hover .deck-video-ctrl-btn,
.deck-video-interactive-wrap.is-paused .deck-video-ctrl-btn {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.deck-video-ctrl-btn:hover {
    border-color: #ff4455;
    background: rgba(255, 68, 85, 0.25);
    box-shadow: 0 0 35px rgba(255, 68, 85, 0.65), inset 0 0 15px rgba(255, 68, 85, 0.3);
    color: #ffffff;
}

.deck-video-ctrl-btn .ctrl-icon-wrap {
    display: flex;
    align-items: center;
    color: #ff4455;
}

.deck-video-ctrl-btn:hover .ctrl-icon-wrap {
    color: #ffffff;
}

/* Background Ambient Illustration Layer */
.deck-section-bg-art {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.deck-section-bg-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.22;
    mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 0) 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 0) 80%);
}

/* Consistent 48px top spacing for all sections whose main content begins with a section title under the divider line */
.sect-main>.container>.sect-title:first-child,
.section-platform>.sect-main>.container>.sect-title,
.section-gateway>.sect-main>.container>.sect-title,
#stack>.sect-main>.container>.sect-title,
.section-hardware>.sect-main>.container>.sect-title,
.section-security>.sect-main>.container>.sect-title,
.section-datacenter>.sect-main>.container>.sect-title,
.section-team>.sect-main>.container>.sect-title,
.section-apps>.sect-main>.container>.sect-title,
.section-gtm>.sect-main>.container>.sect-title,
.section-model>.sect-main>.container>.sect-title,
.section-roadmap>.sect-main>.container>.sect-title,
.section-funding>.sect-main>.container>.sect-title,
.section-moats>.sect-main>.container>.sect-title,
.section-kpis>.sect-main>.container>.sect-title,
.section-faqs>.sect-main>.container>.sect-title,
.section-cta>.sect-main>.container>.sect-title {
    padding-top: 48px;
}

/* --- Positioning (step 4) — 2-col shift + 2x2 map --- */
.section-positioning {
    position: relative;
    overflow: hidden;
    background: #000000;
}

.deck-positioning-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.deck-positioning-backdrop-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-top: -250px;
    opacity: 1;
    transform: scale(0.5);
    pointer-events: none;
}

.deck-positioning-video-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 35%, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.72) 65%, #000000 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.6) 65%, #000000 100%);
    pointer-events: none;
    z-index: 1;
}

.section-positioning .hero-particles {
    position: absolute;
    inset: 0;
    top: 0;
    z-index: 20 !important;
    pointer-events: none !important;
    background-image: url("../images/section/star-sky.webp");
    background-repeat: repeat-y;
    background-position: center;
    animation: moveUp 60s linear infinite;
    mix-blend-mode: screen;
}

.section-positioning .sect-header,
.section-positioning .sect-tagline,
.section-positioning .sect-main,
.section-positioning .sect-bottom,
.section-positioning .br-line {
    position: relative;
    z-index: 2;
}

.section-positioning .sect-main {
    padding-top: 48px;
    padding-bottom: 56px;
}

.section-positioning .sect-title {
    margin-bottom: 0;
}

.section-positioning .sect-title .s-title {
    font-size: clamp(24px, 3.4vw, 42px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.12;
    text-transform: uppercase;
    color: #f4f7f5;
}

.section-positioning .sect-title .s-sub_title {
    margin-top: 14px;
    font-size: clamp(13px, 1.2vw, 16px);
    color: rgba(255, 255, 255, 0.65);
    max-width: 680px;
    line-height: 1.5;
}

.section-positioning .sect-title .s-title_top {
    font-family: "Mono", monospace;
    font-size: clamp(14px, 1.8vw, 20px);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.35;
    white-space: normal;
    word-break: break-word;
}

.sect-title .text-change_wrap {
    display: inline-flex;
    max-width: 100%;
    position: relative;
    margin-top: 6px;
}

.sect-title .text-change_rotating {
    display: inline-block;
    color: rgba(244, 247, 245, 0.62);
    -webkit-text-fill-color: rgba(244, 247, 245, 0.62);
    font-family: "Mono", monospace;
    font-size: clamp(16px, 2.1vw, 24px);
    font-weight: 100;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 1.35;
    white-space: normal;
    word-break: break-word;
}

.section-positioning .sect-title .s-title_muted {
    display: block;
    margin-top: 8px;
    font-family: "Mono", monospace;
    font-size: clamp(15px, 2vw, 24px);
    font-weight: 100;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: rgba(244, 247, 245, 0.58);
    -webkit-text-fill-color: rgba(244, 247, 245, 0.58);
    background: none;
    white-space: normal;
    line-height: 1.35;
}

/* --- Section Positioning 2-Column Grid (1 : 1) --- */
.deck-pos-2col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: stretch;
    margin-top: 250px;
    position: relative;
    padding: 40px;
}

@media (min-width: 1024px) {
    .deck-pos-2col {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

.deck-pos-table-card {
    border: 0;
    border-radius: 0;
    background: transparent;
    margin-top: 0;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
}

.deck-pos-table_intro {
    margin-bottom: 18px;
}

.deck-pos-table_h4 {
    margin: 0 0 6px;
    font-family: "Rajdhani", sans-serif;
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #f4f7f5;
}

.deck-pos-table_p {
    margin: 0;
    margin-bottom: 20px;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.62);
}

.deck-comp-card_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.deck-comp-card_title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}

.deck-comp-card_dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ff4455;
    box-shadow: 0 0 8px #ff4455;
    animation: blinkGlow 2s infinite ease-in-out;
}

.deck-comp-card_tag {
    font-family: "Mono", monospace;
    font-size: 9px;
    letter-spacing: 0.1em;
    color: rgba(255, 68, 85, 0.9);
}

.deck-comp-table_wrap {
    overflow-x: auto;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.2);
    margin-bottom: 12px;
    margin-top: 0;
}

.deck-comp-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    font-family: "Mono", monospace;
    font-size: 11px;
}

.deck-comp-table thead tr {
    background: rgba(255, 255, 255, 0.04);
}

.deck-comp-table th {
    padding: 10px 6px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.04);
    white-space: nowrap;
}

.deck-comp-table th:last-child {
    border-right: 0;
}

.deck-comp-table th.th-provider {
    text-align: left;
    padding-left: 14px;
}

.deck-comp-table th.th-sovereign {
    color: rgba(255, 68, 85, 0.95);
    background: rgba(255, 68, 85, 0.08);
    border-left: 1px solid rgba(255, 68, 85, 0.25);
}

.deck-comp-table td {
    padding: 9px 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    border-right: 1px solid rgba(255, 255, 255, 0.04);
    vertical-align: middle;
}

.deck-comp-table td:last-child {
    border-right: 0;
}

.deck-comp-table td.td-provider {
    text-align: left;
    padding-left: 14px;
    font-family: "Rajdhani", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    white-space: nowrap;
}

/* Icon Variants */
.comp-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-style: normal;
}

.comp-icon.is-check {
    color: #10b981;
    font-weight: 800;
    font-size: 13px;
}

.comp-icon.is-warn {
    color: #f59e0b;
    font-weight: 700;
    font-size: 11px;
}

.comp-icon.is-dash {
    color: rgba(255, 255, 255, 0.25);
    font-size: 12px;
}

/* Nusaraia Highlighted Row */
.deck-comp-table tbody tr.row-nusaraia {
    background: linear-gradient(90deg, rgb(255 255 255 / 18%) 0%, rgb(255 255 255 / 8%) 100%);
}

.deck-comp-table tbody tr.row-nusaraia td {}

.nusaraia-brand {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.nusaraia-brand strong {
    font-family: "Rajdhani", sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.04em;
}

.nusaraia-badge {
    font-family: "Mono", monospace;
    font-size: 7.5px;
    font-weight: 700;
    color: #ffffff;
    background: #ff4455;
    padding: 1px 5px;
    border-radius: 3px;
    letter-spacing: 0.06em;
}

.comp-icon.is-highlight {
    color: #10b981;
    font-weight: 900;
    font-size: 14px;
    border: 1px solid #10b981;
    background: transparent;
    height: 20px;
    width: 20px;
    border-radius: 20px;
}

.comp-icon.is-lead {
    font-size: 15px;
    transform: scale(1.15);
}

/* Footer & Legend */
.deck-comp-card_footer {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 2px;
}

.comp-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-family: "Mono", monospace;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.55);
    padding: 4px 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comp-legend span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.comp-verdict {
    margin: 0;
    font-size: 11px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.75);
    padding: 8px 12px;
    background: rgba(255, 68, 85, 0.06);
    border: 1px solid rgba(255, 68, 85, 0.2);
    border-radius: 6px;
}

.comp-verdict strong {
    color: #f4f7f5;
}

/* Right Column (1): 4 Pillars Stack */
.deck-pos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 0;
    height: 100%;
}

@media (min-width: 640px) and (max-width: 1023px) {
    .deck-pos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.deck-pos-pillar {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(12, 14, 22, 0.28) 45%, rgba(6, 8, 14, 0.35) 100%);
    backdrop-filter: blur(10px) saturate(190%);
    -webkit-backdrop-filter: blur(10px) saturate(190%);
    padding: 13px 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: border-color 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.deck-pos-pillar:hover {
    border-color: rgba(255, 255, 255, 0.32);
    transform: translateY(-3px);
}

.deck-pos-pillar_head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pillar-num {
    font-family: "Mono", monospace;
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 68, 85, 0.9);
}

.pillar-shift-tag {
    font-family: "Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
}

.pillar-shift-tag .shift-arrow {
    color: #ff4455;
    font-weight: 700;
    margin: 0 4px;
}

.pillar-title {
    margin: 0 0 4px;
    font-family: "Rajdhani", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #f4f7f5;
    line-height: 24px;
}

.pillar-desc {
    margin: 0;
    font-size: 12px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.6);
    flex: 1;
}

.deck-pos-split,
.deck-shift,
.deck-map,
.deck-bento {
    max-width: 100%;
    box-sizing: border-box;
}

.deck-map_note {
    margin: 12px 0 0;
    font-size: 12px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.45);
}

/* Bento competitive lens + thesis (Framer-style grid) */
.deck-bento {
    margin-top: 48px;
    display: grid;
    grid-template-columns: 1fr;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #050505;
    overflow: hidden;
}

@media (min-width: 768px) {
    .deck-bento {
        grid-template-columns: 1fr 1fr;
    }

    .deck-bento_cell {
        border-right: 1px solid rgba(255, 255, 255, 0.08);
    }

    .deck-bento_cell:nth-child(2n) {
        border-right: 0;
    }

    .deck-bento_cell--thesis {
        grid-column: 1 / -1;
        border-right: 0;
        min-height: 280px;
    }
}

@media (min-width: 1100px) {
    .deck-bento {
        grid-template-columns: 1fr 1fr 1.15fr;
        grid-template-rows: auto auto;
    }

    .deck-bento_cell {
        border-right: 1px solid rgba(255, 255, 255, 0.08);
    }

    .deck-bento_cell:nth-child(2n) {
        border-right: 1px solid rgba(255, 255, 255, 0.08);
    }

    .deck-bento_cell--thesis {
        grid-column: 3;
        grid-row: 1 / span 2;
        border-right: 0;
        border-bottom: 0;
        min-height: 0;
    }

    .deck-bento_cell:nth-child(4),
    .deck-bento_cell:nth-child(5) {
        border-bottom: 0;
    }
}

.deck-bento_cell {
    position: relative;
    padding: 22px 22px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    min-height: 0;
}

.deck-bento_cell:last-child {
    border-bottom: 0;
}

.deck-bento_title {
    margin: 0 0 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Mono", monospace;
    font-size: 12px;
    letter-spacing: 0.04em;
    color: rgba(244, 247, 245, 0.88);
}

.deck-bento_title span {
    color: rgba(255, 255, 255, 0.35);
    font-size: 14px;
    line-height: 1;
    transition: transform 0.25s ease, color 0.25s ease;
}

.deck-bento_cell:hover .deck-bento_title span {
    color: rgba(255, 68, 85, 0.9);
    transform: translateX(3px);
}

.deck-bento_panel {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.015) 100%);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.deck-bento_row {
    padding: 14px 16px;
}

.deck-bento_row+.deck-bento_row {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.deck-bento_row span {
    display: block;
    margin-bottom: 5px;
    font-family: "Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.32);
}

.deck-bento_row p {
    margin: 0;
    font-size: 13px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.55);
}

.deck-bento_row.is-hot {
    background: rgba(255, 68, 85, 0.04);
}

.deck-bento_row.is-hot span {
    color: rgba(255, 68, 85, 0.85);
}

.deck-bento_row.is-hot p {
    color: rgba(244, 247, 245, 0.92);
}

.deck-bento_cell--thesis {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px 26px 30px;
    background:
        radial-gradient(ellipse at 70% 30%, rgba(255, 68, 85, 0.06) 0%, transparent 55%),
        radial-gradient(ellipse at 20% 90%, rgba(255, 255, 255, 0.04) 0%, transparent 45%),
        #050505;
}

.deck-bento_stat {
    margin: 8px 0 18px;
    font-size: clamp(28px, 3.4vw, 42px);
    line-height: 1.12;
    font-weight: 500;
    letter-spacing: -0.02em;
    text-transform: none;
    color: #f4f7f5;
}

.deck-bento_stat_sub {
    margin: 0 0 12px;
    font-size: 14px;
    line-height: 1.55;
    color: rgba(244, 247, 245, 0.72);
    max-width: 28rem;
}

.deck-bento_stat_id {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.42);
    max-width: 28rem;
}

@media (max-width: 767px) {

    .deck-shift_head,
    .deck-shift_row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .deck-shift_head span:last-child {
        grid-column: 1;
    }

    .deck-shift_pipe {
        display: none;
    }

    .deck-shift_from {
        opacity: 0.7;
    }

    .deck-map_plot {
        min-height: 220px;
    }

    .deck-bento_cell--thesis {
        order: -1;
    }

    .deck-bento_stat {
        font-size: 26px;
    }
}

/* Kill leftover Qore red-smoke bleed into adjacent sections */
#platform.section-feature>.sect-main>.s-img_item {
    display: none !important;
}

/* --- Platform (step 5) — Scroll-Triggered Frame Animation Absolute Background --- */
#platform {
    position: relative;
    overflow: hidden;
}

#platform .sect-main {
    position: relative;
    min-height: 520px;
}

.deck-platform-canvas-bg {
    position: absolute;
    z-index: -1 !important;
    top: 15%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(94vw, 520px);
    max-width: 580px;
    aspect-ratio: 720 / 1280;
    pointer-events: none;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.95;
    transition: opacity 0.4s ease;
}

.deck-platform-canvas-bg canvas {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.deck-platform-canvas-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 110%;
    background: radial-gradient(ellipse at center, rgba(255, 68, 85, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: -1;
}

@media (max-width: 991px) {
    .deck-platform-canvas-bg {
        width: min(90vw, 420px);
        opacity: 0.85;
    }
}

@media (max-width: 767px) {
    .deck-platform-canvas-bg {
        width: min(90vw, 340px);
        opacity: 0.75;
    }
}

/* --- Platform (step 5) — 1-Row Infinite Horizontal Autoscroll & Manual Drag/Scroll Slider --- */
.deck-platform-slider-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 28px 0 36px;
    overflow: hidden;
}

.deck-platform-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: clamp(50px, 8vw, 120px);
    pointer-events: none;
    z-index: 10;
}

.deck-platform-fade.is-left {
    left: 0;
    background: linear-gradient(to right, #000000 0%, rgba(0, 0, 0, 0) 100%);
}

.deck-platform-fade.is-right {
    right: 0;
    background: linear-gradient(to left, #000000 0%, rgba(0, 0, 0, 0) 100%);
}

.deck-platform-slider-wrap {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 18px 0 24px;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.deck-platform-slider-wrap::-webkit-scrollbar {
    display: none;
}

.deck-platform-slider-wrap.is-dragging {
    cursor: grabbing;
}

.deck-platform-track {
    display: flex;
    gap: 24px;
    width: max-content;
    will-change: transform;
    position: relative;
    z-index: 1;
    padding: 0 24px;
}

.deck-platform-card {
    flex: 0 0 clamp(300px, 28vw, 380px);
    width: clamp(300px, 28vw, 380px);
    min-width: clamp(300px, 28vw, 380px);
    max-width: clamp(300px, 28vw, 380px);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(12, 14, 22, 0.28) 45%, rgba(6, 8, 14, 0.35) 100%);
    backdrop-filter: blur(10px) saturate(190%);
    -webkit-backdrop-filter: blur(10px) saturate(190%);
    padding: 26px 24px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
    user-select: none;
}

.deck-platform-card:hover {
    border-color: rgba(255, 255, 255, 0.32);
    transform: translateY(-6px);
}

.deck-platform-card.is-beachhead {}

.deck-platform-card.is-beachhead:hover {}

.deck-platform-card_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.deck-platform-card_num {
    font-family: "Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.45);
}

.deck-platform-card.is-beachhead .deck-platform-card_num {
    color: rgba(255, 68, 85, 0.9);
}

.deck-platform-card_badge {
    font-family: "Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.7);
}

.deck-platform-card_badge.is-highlight {
    border-color: rgba(255, 68, 85, 0.5);
    background: rgba(255, 68, 85, 0.12);
    color: #ff4455;
    font-weight: 600;
}

.deck-platform-card_title {
    margin: 0 0 4px;
    font-family: "Rajdhani", sans-serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #f4f7f5;
}

.deck-platform-card_sub {
    margin: 0 0 18px;
    font-size: 13px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.55);
}

.deck-platform-card_section-label {
    font-family: "Mono", monospace;
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 8px;
    display: block;
}

.deck-platform-card_caps {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.deck-platform-card_caps li {
    position: relative;
    padding-left: 14px;
    font-size: 12.5px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.72);
}

.deck-platform-card_caps li::before {
    content: "▫";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 10px;
    color: rgba(255, 68, 85, 0.7);
}

.deck-platform-card_value {
    margin-top: auto;
    padding: 12px 14px;
    border-left: 2px solid rgba(255, 68, 85, 0.7);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 0 4px 4px 0;
}

.deck-platform-card_value-label {
    font-family: "Mono", monospace;
    font-size: 9px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ff4455;
    display: block;
    margin-bottom: 4px;
}

.deck-platform-card_value p {
    margin: 0;
    font-size: 12px;
    line-height: 1.45;
    color: rgba(244, 247, 245, 0.85);
}

/* --- Beachhead AI Gateway (step 6) --- */
.section-gateway {
    position: relative;
    isolation: isolate;
}

.deck-gateway-grid {
    display: grid;
    gap: 28px;
    margin-top: 36px;
}

@media (min-width: 992px) {
    .deck-gateway-grid {
        grid-template-columns: 1.05fr 0.95fr;
        align-items: center;
        padding: 30px;
        padding-bottom: 0;
    }
}

.deck-gateway-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    padding: 24px;
    height: 100%;
}

.deck-gateway-codebox {
    margin-top: 0px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: #08080c;
    border-radius: 12px;
    overflow: hidden;
}

.deck-gateway-codehead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-family: "Mono", monospace;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.55);
}

.deck-gateway-codehead .badge-live {
    color: #ff4455;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.deck-gateway-codehead .badge-live::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ff4455;
    box-shadow: 0 0 8px #ff4455;
}

.deck-gateway-codebody {
    padding: 16px 18px;
    margin: 0;
    font-family: "Mono", monospace;
    font-size: 12px;
    line-height: 1.6;
    color: #cbd5e1;
    overflow-x: auto;
}

.deck-gateway-codebody .c-keyword {
    color: #f472b6;
}

.deck-gateway-codebody .c-string {
    color: #f4f4f5;
}

.deck-gateway-codebody .c-comment {
    color: #71717a;
}

.deck-gateway-codebody .c-prop {
    color: #e4e4e7;
}

.deck-gateway-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.2s ease;
}

.deck-gateway-item:last-child {
    border-bottom: 0;
}

.deck-gateway-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.deck-gateway-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border: 1px solid rgb(88 88 88 / 50%);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Mono", monospace;
    font-size: 12px;
    font-weight: 700;
    color: #ff4455;
    margin-top: 3px;
}

.deck-gateway-text h4 {
    margin: 0 0 4px;
    font-family: "Rajdhani", sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #f4f7f5;
    text-transform: uppercase;
}

.deck-gateway-text p {
    margin: 0;
    font-size: 12.5px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.6);
}

.deck-gateway-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 20px;
    padding: 30px;
    padding-top: 0;
}

@media (min-width: 768px) {
    .deck-gateway-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.deck-gateway-statbox {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.35);
    padding: 16px;
    border-radius: 12px;
}

.deck-gateway-statbox .stat-label {
    font-family: "Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #dc3545;
    display: block;
    margin-bottom: 6px;
}

.deck-gateway-statbox .stat-title {
    font-family: "Rajdhani", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #f4f7f5;
    margin: 0 0 4px;
    text-transform: uppercase;
}

.deck-gateway-statbox .stat-desc {
    font-size: 13px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

/* ==========================================================================
   ADVANCED REFERENCE PATTERNS (Orbit, Cascade, Focal Cards, Radar)
   ========================================================================== */

/* --- Category Filter Pills (Ref 1 & 5) --- */
.deck-cat-pills {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: 60px 0 28px;
    padding: 0 30px;
    justify-content: center;
}

.deck-pill-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    padding: 6px 16px;
    border-radius: 999px;
    font-family: "Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.deck-pill-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    color: #f4f7f5;
}

.deck-pill-btn.is-active {
    background: rgba(255, 68, 85, 0.15);
    border-color: rgba(255, 68, 85, 0.6);
    color: #ff4455;
    font-weight: 600;
}

/* --- Orbit & Node Hub (Ref 1 & 3) --- */
.deck-orbit-hub {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: radial-gradient(circle at center, rgba(255, 68, 85, 0.04) 0%, rgba(0, 0, 0, 0.6) 70%);
    padding: 36px 24px;
    margin-bottom: 24px;
    display: grid;
    gap: 24px;
    align-items: center;
}

@media (min-width: 992px) {
    .deck-orbit-hub {
        grid-template-columns: 1fr 1.2fr 1fr;
    }
}

.deck-orbit-center {
    text-align: center;
    position: relative;
}

.deck-orbit-center img {
    max-height: 220px;
    object-fit: contain;
    border-radius: 8px;
    filter: drop-shadow(0 0 25px rgba(255, 68, 85, 0.15));
}

/* --- Glass Node Card for Immersive Gateway Stage --- */
.deck-glass-node-card {
    background: rgba(8, 9, 12, 0.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    padding: 18px 20px;
    border-radius: 4px;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.deck-glass-node-card:hover {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(12, 13, 18, 0.92);
    transform: translateY(-2px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85);
}

.deck-glass-node-card.is-active {
    border-color: rgba(255, 68, 85, 0.45);
    background: linear-gradient(180deg, rgba(255, 68, 85, 0.08) 0%, rgba(8, 9, 12, 0.85) 100%);
}

.deck-node-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.deck-orbit-node {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.4);
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    transition: all 0.2s ease;
}

.deck-orbit-node:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.04);
}

.deck-orbit-node.is-active {
    border-color: rgba(255, 68, 85, 0.4);
    background: rgba(255, 68, 85, 0.04);
}

.deck-orbit-node-title {
    margin: 0;
    font-family: "Rajdhani", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #f4f7f5;
    text-transform: uppercase;
}

.deck-orbit-node-tag {
    font-family: "Mono", monospace;
    font-size: 9.5px;
    color: rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   SIDE-BY-SIDE DUAL STAGE: 3D MODEL (LEFT) + ARCH PLANES (RIGHT) (Step 7)
   ========================================================================== */
.deck-arch-dual-stage {
    display: grid;
    gap: 24px;
    align-items: stretch;
    margin: 36px 0 40px;
    padding: 30px;
}

@media (min-width: 992px) {
    .deck-arch-dual-stage {
        grid-template-columns: 2fr 1fr;
        gap: 28px;

    }
}

.deck-arch-left-col {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.deck-arch-visual-box {
    position: relative;
    border: none;
    background: radial-gradient(circle at center, rgba(255, 68, 85, 0.04) 0%, rgba(2, 3, 5, 0.98) 80%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    height: 100%;
}

.deck-arch-visual-box .deck-mock-badge {
    top: auto;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    border-radius: 4px;
}

.deck-arch-img-stage {
    position: relative;
    height: 100%;
    max-height: 100%;
    aspect-ratio: 708 / 742;
    display: flex;
    align-items: center;
    justify-content: center;
}

.deck-arch-left-img {
    width: 95%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.deck-arch-beacon-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.deck-hud-beacon-node {
    position: absolute;
    top: var(--pin-y);
    left: var(--pin-x);
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    pointer-events: auto;
    z-index: 6;
    transition: transform 0.25s ease;
}

.deck-beacon-label {
    font-family: "Mono", monospace;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.95);
    background: rgba(8, 10, 14, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 2.5px solid #ff4455;
    padding: 3px 9px;
    border-radius: 2px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.75);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(8px) scale(0.92);
    transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s;
    pointer-events: none;
    position: absolute;
    left: 100%;
    margin-left: 8px;
}

.deck-beacon-label.is-red {
    color: #ff4455;
    border-color: rgba(255, 68, 85, 0.6);
    background: rgba(255, 68, 85, 0.15);
}

.deck-hud-beacon-node:hover .deck-beacon-label,
.deck-hud-beacon-node.is-active .deck-beacon-label {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) scale(1);
    pointer-events: auto;
    border-color: #ff4455;
    background: linear-gradient(90deg, rgba(255, 68, 85, 0.25) 0%, rgba(8, 10, 14, 0.98) 100%);
    box-shadow: 0 0 16px rgba(255, 68, 85, 0.45), 0 8px 24px rgba(0, 0, 0, 0.85);
}

/* Numbered Circle Beacon Pin */
.deck-beacon-circle {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(6, 8, 12, 0.94);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.8), inset 0 0 8px rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
    flex-shrink: 0;
}

.deck-beacon-num {
    font-family: "Mono", monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #f4f7f5;
    line-height: 1;
    transition: color 0.2s ease;
}

.deck-hud-beacon-node.is-accent .deck-beacon-circle {
    border-color: rgba(255, 68, 85, 0.7);
    background: rgba(255, 68, 85, 0.15);
}

.deck-hud-beacon-node.is-accent .deck-beacon-num {
    color: #ff4455;
}

/* Hover / Active State */
.deck-hud-beacon-node:hover .deck-beacon-circle,
.deck-hud-beacon-node.is-active .deck-beacon-circle {
    transform: scale(1.18);
    border-color: #ff4455;
    background: #ff4455;
    box-shadow: 0 0 20px #ff4455, 0 0 35px rgba(255, 68, 85, 0.75);
}

.deck-hud-beacon-node:hover .deck-beacon-num,
.deck-hud-beacon-node.is-active .deck-beacon-num {
    color: #ffffff;
}

.deck-beacon-ring {
    position: absolute;
    width: 38px;
    height: 38px;
    left: -7.5px;
    top: -7.5px;
    border-radius: 50%;
    border: 1.5px solid #ff4455;
    animation: beaconSonar 2.2s infinite ease-out;
    opacity: 0.8;
    pointer-events: none;
}

@keyframes beaconSonar {
    0% {
        transform: scale(0.4);
        opacity: 1;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.deck-hud-beacon-node:hover .deck-beacon-core,
.deck-hud-beacon-node.is-active .deck-beacon-core {
    transform: scale(1.35);
    background: #ff4455;
    box-shadow: 0 0 16px #ff4455, 0 0 30px rgba(255, 68, 85, 0.9);
}

/* Right Column: 6 Planes in compact 1-Column Stack */
.deck-arch-right-col {
    width: 100%;
}

.deck-arch-planes-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr;
    height: 100%;
}

.deck-arch-planes-grid .deck-plane-card,
.deck-plane-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.025);
    padding: 10px 15px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border-radius: 12px;
}

.deck-arch-planes-grid .deck-plane-card:hover,
.deck-arch-planes-grid .deck-plane-card.is-active-highlight,
.deck-plane-card:hover,
.deck-plane-card.is-active-highlight {
    border-color: rgb(255 68 85 / 30%) !important;
    transform: translateY(-2px);
}

.deck-arch-planes-grid .deck-plane-card .deck-plane-head,
.deck-plane-card .deck-plane-head {
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.deck-arch-planes-grid .deck-plane-card .deck-plane-title,
.deck-plane-card .deck-plane-title {
    font-size: 15px;
    margin: 0 0 2px;
    line-height: normal;
    font-family: "Rajdhani", sans-serif;
    font-weight: 700;
    color: #f4f7f5;
    text-transform: uppercase;
}

.deck-arch-planes-grid .deck-plane-card .deck-plane-desc,
.deck-plane-card .deck-plane-desc {
    font-size: 12px;
    line-height: 1.4;
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
}

.deck-plane-mini-badge {
    font-family: "Mono", monospace;
    font-size: 8.5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.04);
    padding: 2px 6px;
    border-radius: 2px;
}

.deck-plane-mini-badge.is-red {
    color: #ff4455;
    background: rgba(255, 68, 85, 0.12);
}

/* Mobile & Tablet Fallback */
@media (max-width: 991px) {
    .deck-arch-overlay-col {
        position: relative;
        left: auto !important;
        right: auto !important;
        padding: 12px 16px;
        gap: 10px;
    }

    .deck-arch-overlay-col.is-left,
    .deck-arch-overlay-col.is-right {
        align-items: stretch;
    }

    .deck-arch-label-item {
        justify-content: space-between;
    }

    .deck-arch-overlay-container {
        flex-direction: column;
    }
}



/* --- Staggered Cascade Metrics (Ref 7) --- */
.deck-cascade-grid {
    display: grid;
    gap: 16px;
    margin-top: 36px;
}

@media (min-width: 768px) {
    .deck-cascade-grid {
        grid-template-columns: repeat(3, 1fr);
        align-items: end;
    }
}

.deck-cascade-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.25s ease;
}

.deck-cascade-card:nth-child(1) {
    min-height: 220px;
}

.deck-cascade-card:nth-child(2) {
    min-height: 260px;
}

.deck-cascade-card:nth-child(3) {
    min-height: 300px;
}

.deck-cascade-card:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.035);
    transform: translateY(-4px);
}

.deck-cascade-val {
    font-family: "Rajdhani", sans-serif;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #f4f7f5;
    margin: 0 0 8px;
    line-height: 1;
}

.deck-cascade-val.is-red {
    color: #ff4455;
}

.deck-cascade-label {
    margin: 0 0 6px;
    font-family: "Rajdhani", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #f4f7f5;
    text-transform: uppercase;
}

.deck-cascade-desc {
    margin: 0;
    font-size: 12px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.55);
}

/* --- High-Contrast Focal Card Strip (Ref 6) --- */
.deck-focal-strip {
    display: grid;
    gap: 20px;
    margin-top: 36px;
}

@media (min-width: 992px) {
    .deck-focal-strip {
        grid-template-columns: 1fr 1.15fr 1fr;
        align-items: stretch;
    }
}

.deck-focal-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.25s ease;
}

.deck-focal-card.is-active-glow {
    border-color: rgba(255, 68, 85, 0.5);
    background: linear-gradient(180deg, rgba(255, 68, 85, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    box-shadow: 0 0 30px rgba(255, 68, 85, 0.1);
}

/* --- Radial Threat Radar HUD (Ref 7) --- */
.deck-radar-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 100%;
    width: 100%;
}

.deck-radar-box .deck-mock-illustration {
    position: relative;
    flex: 1 1 0%;
    min-height: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 8px 0 0;
    background: transparent;
}

.deck-radar-box .deck-mock-illustration::after {
    display: none;
}

.deck-radar-box .deck-mock-illustration img,
.deck-radar-box .deck-mock-illustration canvas,
#security-displacement-canvas,
#roadmap-displacement-canvas {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    display: block;
    pointer-events: auto;
}

#roadmap-canvas-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1377 / 768;
    max-height: none;
    border: none;
    border-radius: 0;
    background: transparent;
    overflow: hidden;
    margin: 0;
}

.deck-radar-ring {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 1px dashed rgba(255, 68, 85, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: radarPulse 4s infinite linear;
    margin-bottom: 20px;
}

.deck-radar-ring::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.deck-radar-ring::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 68, 85, 0.2);
    border: 1px solid #ff4455;
}

@keyframes radarPulse {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.deck-radar-val {
    font-family: "Rajdhani", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #f4f7f5;
    margin: 0;
}

.deck-radar-label {
    font-family: "Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ff4455;
    margin-top: 4px;
}

/* --- Interactive Split Chapter Accordion (Ref 8) --- */
.deck-chapter-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
}

.deck-chapter-item {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.025);
    padding: 10px 15px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border-radius: 12px;
    flex: 1;
}

.deck-chapter-item:hover,
.deck-chapter-item.is-open {
    border-color: rgb(255 68 85 / 30%) !important;
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.04);
}

.deck-chapter-item.is-open {}

.deck-chapter-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2px;
}

.deck-chapter-num {
    font-family: "Mono", monospace;
    font-size: 11px;
    color: #ff4455;
    margin-right: 8px;
}

.deck-chapter-num .text-white {
    color: #f4f7f5;
}

.deck-chapter-title {
    font-family: "Rajdhani", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #f4f7f5;
    margin: 0;
    text-transform: uppercase;
}

.deck-chapter-body {
    margin: 0;
    font-size: 12px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.6);
}

/* --- Architecture / stack diagram area (steps 7–9) --- */
.deck-arch-planes {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
}

@media (min-width: 768px) {
    .deck-arch-planes {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .deck-arch-planes {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Legacy .deck-arch-planes fallback (unified into .deck-arch-planes-grid) */

.deck-plane-tag {
    font-family: "Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.deck-plane-title {
    margin: 0 0 8px;
    font-family: "Rajdhani", sans-serif;
    font-size: 19px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #f4f7f5;
}

.deck-plane-desc {
    margin: 0;
    font-size: 12.5px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.65);
}

/* 5-Stage Request Flow */
.deck-flow-wrap {
    margin-top: 40px;
    padding: 28px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.35);
}

.deck-flow-title {
    margin: 0 0 20px;
    font-family: "Mono", monospace;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #f4f7f5;
    display: flex;
    align-items: center;
    gap: 8px;
}

.deck-flow-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

@media (min-width: 992px) {
    .deck-flow-steps {
        grid-template-columns: repeat(5, 1fr);
        gap: 12px;
    }
}

.deck-flow-step {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    padding: 16px 14px;
    display: flex;
    flex-direction: column;
}

.deck-flow-step_num {
    font-family: "Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.1em;
    color: #ff4455;
    margin-bottom: 4px;
    display: block;
}

.deck-flow-step_title {
    font-family: "Rajdhani", sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #f4f7f5;
    margin: 0 0 6px;
    text-transform: uppercase;
}

.deck-flow-step_desc {
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.55);
}

.deck-flow-step_out {
    margin-top: auto;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-family: "Mono", monospace;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.35;
}

.deck-flow-step_out strong {
    color: rgba(255, 255, 255, 0.75);
}

.deck-stack-wrap {
    display: grid;
    gap: 24px;
}

@media (min-width: 992px) {
    .deck-stack-wrap.has-sidebar {
        grid-template-columns: 1fr 340px;
        align-items: start;
    }
}

.deck-layer-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.deck-layer-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

.deck-layer-item .layer-num {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
}

/* --- Hardware / spec cards (step 8) --- */
.section-hardware {
    position: relative;
    isolation: isolate;
}

/* ==========================================================================
   IMMERSIVE STAGE BACKDROP PATTERN (Large Centerpiece Illustration Behind HUD Cards)
   ========================================================================== */
.section-hardware .sect-title,
.section-hardware .s-sub_title {
    position: relative;
    z-index: 5;
}

.deck-immersive-stage {
    position: relative;
    isolation: isolate;
    padding: 30px 0;
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 640px;
}

.deck-stage-backdrop {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.2);
    width: 100%;
    max-width: 1080px;
    height: 100%;
    max-height: 840px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
    pointer-events: none;
}

.deck-stage-backdrop img,
.deck-stage-backdrop video,
.deck-stage-backdrop-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.95;
    filter: drop-shadow(0 0 50px rgba(0, 0, 0, 0.95));
    pointer-events: none;
}

.deck-stage-backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 30%, rgba(0, 0, 0, 0.7) 80%, #000000 100%);
    pointer-events: none;
}

.deck-stage-overlay-grid {
    position: relative;
    z-index: 5;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 30px;
}

@media (min-width: 992px) {
    .deck-stage-overlay-grid {
        grid-template-columns: 1fr 1fr;
        gap: 240px;
        /* Generous center reveal for the 3D illustration */
        align-items: center;
    }
}

@media (min-width: 1200px) {
    .deck-stage-overlay-grid {
        gap: 40%;
    }
}

.deck-glass-hud-card {
    position: relative;
    z-index: 6;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(12, 14, 22, 0.28) 45%, rgba(6, 8, 14, 0.35) 100%);
    backdrop-filter: blur(10px) saturate(190%);
    -webkit-backdrop-filter: blur(10px) saturate(190%);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    padding: 24px 22px;
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.deck-glass-hud-card:hover {
    border-color: rgba(255, 255, 255, 0.32);
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
}

.deck-stage-center-badge {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 68, 85, 0.5);
    box-shadow: 0 0 25px rgba(255, 68, 85, 0.25);
    padding: 6px 18px;
    border-radius: 999px;
    font-family: "Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.08em;
    color: #f4f7f5;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.deck-hw-grid {
    display: grid;
    gap: 28px;
    margin-top: 36px;
}

@media (min-width: 992px) {
    .deck-hw-grid {
        grid-template-columns: 1.05fr 0.95fr;
        align-items: start;
    }
}

.deck-hw-racks {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.deck-hw-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    padding: 22px 24px;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.deck-hw-card:hover {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.03);
}

.deck-hw-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.deck-hw-rack-title {
    margin: 0;
    font-family: "Rajdhani", sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #f4f7f5;
}

.deck-hw-tag {
    font-family: "Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    padding: 2px 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.4);
}

.deck-hw-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.deck-hw-item {
    border-left: 2px solid rgba(255, 255, 255, 0.15);
    padding-left: 14px;
    transition: border-color 0.2s ease;
}

.deck-hw-item.is-accent {
    border-left-color: rgba(255, 68, 85, 0.7);
}

.deck-hw-item:hover {
    border-left-color: rgba(255, 255, 255, 0.45);
}

.deck-hw-item_title {
    margin: 0 0 3px;
    font-family: "Rajdhani", sans-serif;
    font-size: 15.5px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #f4f7f5;
}

.deck-hw-item_title .badge-spec {
    display: inline-block;
    margin-left: 6px;
    font-family: "Mono", monospace;
    font-size: 9.5px;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.06);
    padding: 1px 6px;
    border-radius: 2px;
}

.deck-hw-item_desc {
    margin: 0;
    font-size: 12px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.55);
}

.deck-hw-metrics {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 36px;
}

@media (min-width: 768px) {
    .deck-hw-metrics {
        grid-template-columns: repeat(4, 1fr);
    }
}

.deck-hw-metric {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.35);
    padding: 18px 16px;
    text-align: left;
}

.deck-hw-metric_val {
    margin: 0 0 4px;
    font-family: "Rajdhani", sans-serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #f4f7f5;
}

.deck-hw-metric_label {
    margin: 0;
    font-family: "Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.deck-disclaimer-strip {
    margin-top: 24px;
    padding: 12px 18px;
    border: 1px dashed rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.015);
    font-family: "Mono", monospace;
    font-size: 10.5px;
    line-height: 1.45;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
}

.deck-disclaimer-strip strong {
    color: rgba(255, 255, 255, 0.7);
}

.deck-spec-card {
    height: 100%;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

.deck-spec-card .spec-tag {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 68, 85, 0.85);
}

.deck-spec-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.deck-spec-list li {
    position: relative;
    padding-left: 14px;
    margin-bottom: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
}

.deck-spec-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.35);
}

/* --- Roadmap phases (step 15) — reuses how-to tabs visually --- */
.deck-phase-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin-top: 12px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
}

/* --- Software & Security (step 9) --- */
.section-security {
    position: relative;
    isolation: isolate;
}

.deck-sec-grid {
    display: grid;
    gap: 28px;
    margin-top: 36px;
    padding: 30px;
}

@media (min-width: 992px) {
    .deck-sec-grid {
        grid-template-columns: 1.05fr 0.95fr;
        align-items: stretch;
    }
}

.deck-sec-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
}

.deck-sec-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.025);
    padding: 10px 15px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border-radius: 12px;
    flex: 1;
}

.deck-sec-card:hover {
    border-color: rgb(255 68 85 / 30%) !important;
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.04);
}

.deck-sec-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2px;
}

.deck-sec-tag {
    font-family: "Mono", monospace;
    font-size: 8.5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.04);
    padding: 2px 6px;
    border-radius: 2px;
}

.deck-sec-tag.is-red {
    color: #ff4455;
    background: rgba(255, 68, 85, 0.1);
}

.deck-sec-title {
    margin: 0 0 2px;
    font-family: "Rajdhani", sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.02em;
    color: #f4f7f5;
    text-transform: uppercase;
}

.deck-sec-desc {
    margin: 0;
    font-size: 12px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.6);
}

/* Jurisdictional SLA Box */
.deck-jurisdiction-box {
    margin-top: 32px;
    border: 1px solid rgba(255, 68, 85, 0.35);
    background: linear-gradient(180deg, rgba(255, 68, 85, 0.04) 0%, rgba(255, 255, 255, 0.015) 100%);
    padding: 24px 26px;
}

.deck-jurisdiction-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.deck-jurisdiction-badge {
    font-family: "Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ff4455;
    padding: 3px 8px;
    border: 1px solid rgba(255, 68, 85, 0.5);
    background: rgba(255, 68, 85, 0.12);
    font-weight: 600;
}

.deck-jurisdiction-title {
    margin: 0;
    font-family: "Rajdhani", sans-serif;
    font-size: 19px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #f4f7f5;
}

.deck-jurisdiction-desc {
    font-size: 14px;
    color: rgb(255 255 255 / 30%);
    font-style: oblique;
    text-align: center;
}

.deck-jurisdiction-grid {
    display: grid;
    gap: 16px;
    margin-top: 14px;
}

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

.deck-jurisdiction-item {
    border-left: 2px solid rgba(255, 68, 85, 0.6);
    padding-left: 12px;
}

.deck-jurisdiction-item h5 {
    margin: 0 0 4px;
    font-family: "Rajdhani", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #f4f7f5;
    text-transform: uppercase;
}

.deck-jurisdiction-item p {
    margin: 0;
    font-size: 12px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.6);
}

/* --- Data Center Blueprint (step 10) --- */
.section-datacenter {
    position: relative;
    isolation: isolate;
}

.deck-dc-grid {
    display: grid;
    gap: 0px;
}

@media (min-width: 992px) {
    .deck-dc-grid {
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
    }
}

.deck-dc-card {
    padding: 30px;
    padding-top: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.deck-dc-card:hover {}

.deck-dc-table-wrap {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
    margin-top: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.deck-dc-table {
    width: 100%;
    height: 100%;
    border-collapse: collapse;
    font-size: 13px;
    flex: 1;
    display: table;
}

.deck-dc-table th {
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-family: "Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    text-align: left;
}

.deck-dc-table th:last-child,
.deck-dc-table td:last-child {
    text-align: right;
}

.deck-dc-table td {
    padding: 9px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    vertical-align: middle;
}

.deck-dc-table tr:last-child td {
    border-bottom: 0;
    font-weight: 600;
    color: #f4f7f5;
    background: rgba(255, 255, 255, 0.02);
}

.deck-dc-table tr:hover td {
    background: rgba(255, 255, 255, 0.025);
}

.deck-dc-table .total-highlight {
    color: #ff4455;
    font-family: "Mono", monospace;
}

.deck-dc-specs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 20px;
}

@media (min-width: 576px) {
    .deck-dc-specs {
        grid-template-columns: repeat(2, 1fr);
    }
}

.deck-dc-spec-box {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.35);
    padding: 14px 16px;
}

.deck-dc-spec-box .dc-label {
    font-family: "Mono", monospace;
    font-size: 9.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    display: block;
    margin-bottom: 4px;
}

.deck-dc-spec-box .dc-val {
    font-family: "Rajdhani", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #f4f7f5;
    margin: 0;
}

/* --- Operating Model / SDM (step 11) --- */
.section-ops {
    position: relative;
    isolation: isolate;
}

.deck-ops-grid {
    display: grid;
    gap: 20px;
    padding: 30px;
}

@media (min-width: 768px) {
    .deck-ops-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .deck-ops-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.deck-team-card {
    padding: 22px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.deck-team-card:hover {
    transform: translateY(-2px);
}

.deck-team-card.is-lead {
    border-color: rgba(255, 68, 85, 0.35);
    background: linear-gradient(180deg, rgba(255, 68, 85, 0.04) 0%, rgba(255, 255, 255, 0.015) 100%);
}

.deck-team-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.deck-team-badge {
    font-family: "Mono", monospace;
    font-size: 9.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.deck-team-badge.is-red {
    color: #ff4455;
}

.deck-team-role {
    margin: 0 0 6px;
    font-family: "Rajdhani", sans-serif;
    font-size: 17px;
    line-height: 20px;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #f4f7f5;
    text-transform: uppercase;
}

.deck-team-fte {
    font-family: "Mono", monospace;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.deck-team-desc {
    margin: 0;
    font-size: 13px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.55);
}

.deck-team-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 14px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.deck-team-skill {
    font-family: "Mono", monospace;
    font-size: 9px;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.04);
    padding: 2px 6px;
    border-radius: 2px;
}

/* Phase 2 scale bar */
.deck-scale-box {
    margin-top: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.35);
    padding: 22px 24px;
}

.deck-scale-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.deck-scale-title {
    margin: 0;
    font-family: "Rajdhani", sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #f4f7f5;
}

.deck-scale-grid {
    display: grid;
    gap: 14px;
}

@media (min-width: 768px) {
    .deck-scale-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.deck-scale-item {
    border-left: 2px solid rgba(255, 255, 255, 0.15);
    padding-left: 12px;
}

.deck-scale-item h5 {
    margin: 0 0 3px;
    font-family: "Rajdhani", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #f4f7f5;
    text-transform: uppercase;
}

.deck-scale-item p {
    margin: 0;
    font-size: 11.5px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.55);
}

/* --- Apps / Marketplace (step 12) --- */
.section-apps {
    position: relative;
    isolation: isolate;
}

.deck-apps-grid {
    display: grid;
    gap: 16px;
    margin-top: 36px;
    padding: 0 30px 30px;
}

@media (min-width: 576px) {
    .deck-apps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .deck-apps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1400px) {
    .deck-apps-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.deck-app-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(12, 14, 22, 0.4) 45%, rgba(6, 8, 14, 0.5) 100%);
    backdrop-filter: blur(12px) saturate(190%);
    -webkit-backdrop-filter: blur(12px) saturate(190%);
    padding: 22px 20px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
    position: relative;
    user-select: none;
    cursor: pointer;
    z-index: 1;
}

.deck-app-card.is-hidden {
    display: none !important;
}

.deck-app-card:hover {
    border-color: rgba(255, 51, 68, 0.75) !important;
    transform: scale(1.05) !important;
    box-shadow: 0 0 25px rgba(255, 51, 68, 0.30), inset 0 0 15px rgba(255, 51, 68, 0.15), 0 25px 50px rgba(0, 0, 0, 0.85) !important;
    z-index: 25 !important;
}

.deck-app-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.deck-app-id {
    font-family: "Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.45);
}

.deck-app-icon {
    font-size: 16px;
    line-height: 1;
    color: #ff4455;
    border: none;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), filter 0.28s ease;
}

.deck-app-card:hover .deck-app-icon {
    transform: scale(1.18);
    filter: drop-shadow(0 0 8px rgba(255, 68, 85, 0.65));
}

.deck-app-title {
    margin: 0 0 3px;
    font-family: "Rajdhani", sans-serif;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #f4f7f5;
    text-transform: uppercase;
}

.deck-app-cat {
    font-family: "Mono", monospace;
    font-size: 9.5px;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.deck-app-desc {
    margin: 0;
    font-size: 13px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.55);
}

.deck-app-footer {
    margin-top: 14px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: "Mono", monospace;
    font-size: 9.5px;
    color: rgba(255, 255, 255, 0.4);
}

.target-user,
.deck-app-footer .target-user {
    line-height: 16px;
    margin-left: 10px;
    color: #ffffff;
}

/* --- Funding / KPI split (steps 16–18) --- */
.deck-funding-bar {
    display: flex;
    height: 8px;
    margin: 20px 0 28px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
}

.deck-funding-bar span {
    display: block;
    height: 100%;
}

.deck-kpi-grid .box-icon-text .title {
    font-size: 28px;
    line-height: 1.1;
    margin-bottom: 4px;
}

.deck-kpi-grid .box-icon-text .sub-title {
    font-size: 12px;
}

/* --- GTM segment strip (step 13) --- */
.section-gtm {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.deck-gtm-video-stage {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: -100px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 450px;
    z-index: -1;
    pointer-events: none;
}

.deck-gtm-backdrop {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.deck-gtm-backdrop-video {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    mix-blend-mode: screen;
    mask-image: radial-gradient(circle at 50% 45%, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 96%);
    -webkit-mask-image: radial-gradient(circle at 50% 45%, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 96%);
}

.deck-gtm-grid {
    display: grid;
    gap: 20px;
    margin-top: -150px;
    position: relative;
    z-index: 5;
    padding: 30px;
}

@media (min-width: 768px) {
    .deck-gtm-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .deck-gtm-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991px) {
    .deck-gtm-video-stage {
        min-height: 340px;
        margin: 20px auto 0;
    }

    .deck-gtm-grid {
        margin-top: -50px;
    }
}

@media (max-width: 767px) {
    .deck-gtm-video-stage {
        min-height: 260px;
    }

    .deck-gtm-grid {
        margin-top: -20px;
    }
}

.deck-gtm-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(12, 14, 22, 0.28) 45%, rgba(6, 8, 14, 0.35) 100%);
    backdrop-filter: blur(10px) saturate(190%);
    -webkit-backdrop-filter: blur(10px) saturate(190%);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
    user-select: none;
}

.deck-gtm-card:hover {
    border-color: rgba(255, 255, 255, 0.32);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.deck-gtm-card.is-featured {
    border-color: rgba(255, 68, 85, 0.4);
    background: linear-gradient(145deg, rgba(255, 68, 85, 0.1) 0%, rgba(18, 12, 16, 0.35) 45%, rgba(6, 8, 14, 0.4) 100%);
}

.deck-gtm-card.is-featured:hover {
    border-color: rgba(255, 68, 85, 0.65);
    box-shadow: 0 20px 40px rgba(255, 68, 85, 0.15);
}

.deck-gtm-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.deck-gtm-num {
    font-family: "Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.4);
}

.deck-gtm-motion {
    font-family: "Mono", monospace;
    font-size: 9px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ff4455;
    background: rgba(255, 68, 85, 0.1);
    padding: 3px 8px;
    border-radius: 4px;
}

.deck-gtm-title {
    font-family: "Rajdhani", sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #f4f7f5;
    margin: 0 0 6px;
    text-transform: uppercase;
}

.deck-gtm-cycle {
    font-family: "Mono", monospace;
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.deck-gtm-cycle strong {
    color: #f4f7f5;
}

.deck-gtm-body {
    margin-bottom: 16px;
}

.deck-gtm-desc {
    font-size: 12px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 12px;
}

.deck-gtm-cases {
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
    padding-top: 10px;
    margin-top: 10px;
}

.deck-gtm-case-label {
    font-family: "Mono", monospace;
    font-size: 9.5px;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}

.deck-gtm-case-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 11.5px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.7);
}

.deck-gtm-case-list li {
    position: relative;
    padding-left: 14px;
    margin-bottom: 0;
}

.deck-gtm-case-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 3px;
    height: 3px;
    background: rgb(190 0 0 / 60%);
}

.deck-gtm-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 10px;
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: "Mono", monospace;
    font-size: 9.5px;
    color: rgba(255, 255, 255, 0.4);
}

.deck-gtm-footer .target-user {
    color: #f4f7f5;
    font-weight: 500;
}

/* --- Business Model & Revenue Streams (Step 14) --- */
.section-pricing {
    position: relative;
    isolation: isolate;
}

/* --- 3D Roulette Carousel for Business Model Cards --- */
.deck-plan-roulette-container {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0px auto 0;
    perspective: 1600px;
    user-select: none;
}

.deck-plan-roulette-track {
    position: relative;
    width: 100%;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
}

.deck-plan-card {
    position: absolute;
    width: 100%;
    max-width: 440px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.08) 0%, rgb(7 8 10 / 90%) 42%, rgba(6, 8, 14, 0.95) 100%);
    backdrop-filter: blur(28px) saturate(190%);
    -webkit-backdrop-filter: blur(28px) saturate(190%);
    padding: 30px 26px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 480px;
    box-sizing: border-box;
    cursor: pointer;
    transform-origin: center center;
    transition: transform 0.65s cubic-bezier(0.2, 0.9, 0.3, 1.15),
        opacity 0.5s ease,
        filter 0.5s ease,
        box-shadow 0.5s ease,
        border-color 0.4s ease,
        background 0.4s ease;
    will-change: transform, opacity, filter;
}

/* Corner Micro Pin Dots (as in reference image) */
.deck-card-corner {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.65);
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
    pointer-events: none;
}

.deck-card-corner.tl {
    top: 12px;
    left: 12px;
}

.deck-card-corner.tr {
    top: 12px;
    right: 12px;
}

.deck-card-corner.bl {
    bottom: 12px;
    left: 12px;
}

.deck-card-corner.br {
    bottom: 12px;
    right: 12px;
}

/* 3D Roulette States */
.deck-plan-card.pos-center {
    transform: translate3d(0, 0, 90px) scale(1.05);
    z-index: 10;
    opacity: 1;
    filter: blur(0);
    border-color: rgba(255, 255, 255, 0.28);
    box-shadow: 0 35px 80px -15px rgba(0, 0, 0, 0.92),
        0 0 45px rgba(255, 255, 255, 0.08),
        inset 0 1px 1px rgba(255, 255, 255, 0.3);
    cursor: default;
}

.deck-plan-card.pos-center.is-featured {
    box-shadow: 0 35px 80px -15px rgba(0, 0, 0, 0.95),
        0 0 50px rgba(255, 68, 85, 0.25),
        inset 0 1px 1px rgba(255, 68, 85, 0.4);
}

.deck-plan-card.pos-left {
    transform: translate3d(-64%, 0, -40px) scale(0.88) rotateY(14deg);
    z-index: 4;
    opacity: 0.5;
    filter: blur(1px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}

.deck-plan-card.pos-left:hover {
    opacity: 0.8;
    filter: blur(0);
    transform: translate3d(-64%, 0, -10px) scale(0.91) rotateY(10deg);
}

.deck-plan-card.pos-right {
    transform: translate3d(64%, 0, -40px) scale(0.88) rotateY(-14deg);
    z-index: 4;
    opacity: 0.5;
    filter: blur(1px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}

.deck-plan-card.pos-right:hover {
    opacity: 0.8;
    filter: blur(0);
    transform: translate3d(64%, 0, -10px) scale(0.91) rotateY(-10deg);
}

/* Roulette Navigation Dots (Top of Cards) */
.deck-plan-roulette-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 0;
    margin-bottom: 32px;
}

.deck-plan-nav-dot {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 7px 18px;
    color: rgba(255, 255, 255, 0.55);
    font-family: "Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.06em;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
}

.deck-plan-nav-dot .dot-num {
    color: #ff4455;
    font-weight: 700;
}

.deck-plan-nav-dot:hover {
    border-color: rgba(255, 255, 255, 0.35);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.deck-plan-nav-dot.is-active {
    background: rgba(255, 68, 85, 0.14);
    border-color: #ff4455;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(255, 68, 85, 0.3);
}

@media (max-width: 991px) {
    .deck-plan-roulette-track {
        height: 540px;
    }

    .deck-plan-card {
        max-width: 380px;
    }

    .deck-plan-card.pos-left {
        transform: translate3d(-46%, 0, -50px) scale(0.84) rotateY(10deg);
    }

    .deck-plan-card.pos-right {
        transform: translate3d(46%, 0, -50px) scale(0.84) rotateY(-10deg);
    }
}

@media (max-width: 575px) {
    .deck-plan-roulette-track {
        height: 530px;
    }

    .deck-plan-card {
        max-width: 300px;
        padding: 24px 20px 20px;
        min-height: 460px;
    }

    .deck-plan-card.pos-left {
        transform: translate3d(-28%, 0, -60px) scale(0.78) rotateY(8deg);
    }

    .deck-plan-card.pos-right {
        transform: translate3d(28%, 0, -60px) scale(0.78) rotateY(-8deg);
    }
}

.deck-plan-head {
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.deck-plan-stream {
    font-family: "Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 6px;
    display: block;
}

.deck-plan-title {
    font-family: "Rajdhani", sans-serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #f4f7f5;
    margin: 0 0 8px;
    text-transform: uppercase;
}

.deck-plan-unit-box {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.deck-plan-unit {
    font-family: "Rajdhani", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #f4f7f5;
    letter-spacing: 0.01em;
}

.deck-plan-margin {
    font-family: "Mono", monospace;
    font-size: 9.5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ff4455;
    background: rgba(255, 68, 85, 0.12);
    border: 1px solid rgba(255, 68, 85, 0.3);
    padding: 3px 8px;
    border-radius: 4px;
}

.deck-plan-desc {
    font-size: 12.5px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 16px;
}

.deck-plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.deck-plan-feature-item {
    font-size: 12px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.75);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.deck-plan-feature-item::before {
    content: "■";
    font-size: 8px;
    color: #ff4455;
    margin-top: 3px;
}

.deck-plan-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 12px;
    margin-top: auto;
    font-family: "Mono", monospace;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.45);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.deck-plan-footer strong {
    color: #f4f7f5;
}

/* --- Unit Economics & Margin Strip --- */
.deck-econ-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 36px;
    padding: 0 30px;
}

@media (min-width: 768px) {
    .deck-econ-strip {
        grid-template-columns: repeat(4, 1fr);
    }
}

.deck-econ-box {
    padding: 18px 16px;
}

.deck-econ-label {
    font-family: "Mono", monospace;
    font-size: 9.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    display: block;
    margin-bottom: 4px;
}

.deck-econ-val {
    font-family: "Rajdhani", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #f4f7f5;
    margin: 0 0 3px;
    text-transform: uppercase;
}

.deck-econ-desc {
    font-size: 11.5px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

/* --- Strategic 3-Phase Roadmap (Step 15) --- */
.section-roadmap {
    position: relative;
    isolation: isolate;
}

.deck-roadmap-grid {
    display: grid;
    gap: 20px;
    padding: 0 30px 30px;
}

@media (min-width: 992px) {
    .deck-roadmap-grid {
        grid-template-columns: repeat(3, 1fr);
        align-items: stretch;
    }
}

.deck-roadmap-card {
    padding: 26px 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.25s ease;
    position: relative;
}

.deck-roadmap-card:hover {
    transform: translateY(-4px);
}

.deck-roadmap-card.is-active-phase {}

.deck-roadmap-head {
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.deck-roadmap-phase {
    font-family: "Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ff4455;
    display: block;
    margin-bottom: 4px;
}

.deck-roadmap-time {
    font-family: "Mono", monospace;
    font-size: 9.5px;
    letter-spacing: 0.06em;
    padding: 2px 7px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
}

.deck-roadmap-title {
    font-family: "Rajdhani", sans-serif;
    font-size: 21px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #f4f7f5;
    margin: 0 0 8px;
    text-transform: uppercase;
}

.deck-roadmap-goal {
    font-family: "Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.deck-roadmap-goal strong {
    color: #f4f7f5;
}

.deck-roadmap-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.deck-roadmap-list li {
    font-size: 12px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.75);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.deck-roadmap-list li::before {
    content: "■";
    font-size: 7px;
    color: #ff4455;
    margin-top: 4px;
}

.deck-roadmap-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 12px;
    margin-top: 20px;
    font-family: "Mono", monospace;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.45);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.deck-roadmap-footer .status-val {
    color: #f4f7f5;
    font-weight: 600;
}

/* --- Funding & Use of Proceeds (Step 16) --- */
.section-funding {
    position: relative;
    isolation: isolate;
}

.deck-alloc-bar {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 999px;
    display: flex;
    overflow: hidden;
    margin: 28px 0 36px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.deck-alloc-seg {
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
}

.deck-alloc-seg.seg-35 {
    width: 35%;
    background: #ffffff;
}

.deck-alloc-seg.seg-30 {
    width: 30%;
    background: #ff4455;
}

.deck-alloc-seg.seg-15 {
    width: 15%;
    background: rgba(255, 255, 255, 0.65);
}

.deck-alloc-seg.seg-10a {
    width: 10%;
    background: rgba(255, 68, 85, 0.5);
}

.deck-alloc-seg.seg-10b {
    width: 10%;
    background: rgba(255, 255, 255, 0.3);
}

/* --- Section Funding (Step 16) — Infinite Horizontal Autoscroll Slider --- */
.deck-funding-slider-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 28px 0 36px;
    overflow: hidden;
}

.deck-funding-slider-wrap {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 12px 0 20px;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.deck-funding-slider-wrap::-webkit-scrollbar {
    display: none;
}

.deck-funding-slider-wrap.is-dragging {
    cursor: grabbing;
}

.deck-funding-track {
    display: flex;
    gap: 20px;
    width: max-content;
    will-change: transform;
    position: relative;
    z-index: 1;
    padding: 0 30px;
}

.deck-funding-card {
    flex: 0 0 clamp(280px, 24vw, 340px);
    width: clamp(280px, 24vw, 340px);
    min-width: clamp(280px, 24vw, 340px);
    max-width: clamp(280px, 24vw, 340px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.025);
    border-radius: 12px;
    padding: 14px 16px !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 6px;
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.deck-funding-card:hover {
    border-color: rgba(255, 68, 85, 0.3) !important;
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-3px);
}

.deck-funding-card.is-accent {
    border-color: rgba(255, 68, 85, 0.35);
    background: linear-gradient(180deg, rgba(255, 68, 85, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.deck-funding-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2px;
}

.deck-funding-pct {
    font-family: "Rajdhani", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    color: #f4f7f5;
}

.deck-funding-card.is-accent .deck-funding-pct {
    color: #ff4455;
}

.deck-funding-cat {
    font-family: "Mono", monospace;
    font-size: 8.5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.04);
    padding: 2px 6px;
    border-radius: 2px;
    width: fit-content;
}

.deck-funding-card.is-accent .deck-funding-cat {
    color: #ff4455;
    background: rgba(255, 68, 85, 0.1);
}

.deck-funding-title {
    margin: 0 0 2px;
    font-family: "Rajdhani", sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.02em;
    color: #f4f7f5;
    text-transform: uppercase;
}

.deck-funding-desc {
    margin: 0;
    font-size: 12px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.6);
}

.deck-funding-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 6px;
    margin-top: 4px;
    font-family: "Mono", monospace;
    font-size: 9.5px;
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* --- Section Funding 2-Column Split: Illustration (Left) + Vertical Econ Strip (Right) --- */
.deck-funding-split-grid {
    display: grid;
    gap: 24px;
    margin-top: 20px;
    padding: 30px;
}

@media (min-width: 992px) {
    .deck-funding-split-grid {
        grid-template-columns: 1.4fr 1fr;
        align-items: stretch;
    }
}

.deck-funding-visual-col {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.deck-funding-visual-col .deck-mock-illustration {
    position: relative;
    width: 100%;
    height: 100%;
    flex: 1 1 0%;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    overflow: hidden;
}

.deck-funding-visual-col .deck-mock-illustration img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.deck-funding-econ-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
}

.deck-funding-econ-col .deck-econ-box {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.025);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    flex: 1;
}

.deck-funding-econ-col .deck-econ-box:hover {
    border-color: rgba(255, 68, 85, 0.3) !important;
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-2px);
}

.deck-econ-box-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2px;
}

.deck-funding-econ-col .deck-econ-label {
    font-family: "Mono", monospace;
    font-size: 8.5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.04);
    padding: 2px 6px;
    border-radius: 2px;
    margin: 0;
}

.deck-funding-econ-col .deck-econ-val {
    font-family: "Rajdhani", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ff4455;
    margin: 0;
    text-transform: uppercase;
}

.deck-funding-econ-col .deck-econ-desc {
    margin: 0;
    font-size: 12px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.6);
}

/* --- Risks & Defensive Moats (Step 17) --- */
.section-moat {
    position: relative;
    isolation: isolate;
}

.deck-moat-grid {
    display: grid;
    gap: 28px;
    margin-top: 32px;
}

@media (min-width: 992px) {
    .deck-moat-grid {
        grid-template-columns: repeat(2, 1fr);
        align-items: start;
    }
}

.deck-moat-col-title {
    font-family: "Rajdhani", sans-serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #f4f7f5;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.deck-moat-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.deck-risk-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    padding: 16px 18px;
    transition: all 0.25s ease;
}

.deck-risk-card:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.04);
}

.deck-risk-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.deck-risk-title {
    font-family: "Rajdhani", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #f4f7f5;
    margin: 0;
    text-transform: uppercase;
}

.deck-risk-badge {
    font-family: "Mono", monospace;
    font-size: 9px;
    letter-spacing: 0.06em;
    padding: 2px 6px;
    background: rgba(255, 68, 85, 0.15);
    border: 1px solid rgba(255, 68, 85, 0.3);
    color: #ff4455;
    border-radius: 2px;
}

.deck-risk-desc {
    font-size: 11.5px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.55);
    margin: 0 0 8px;
}

.deck-risk-mitigation {
    background: rgba(0, 0, 0, 0.4);
    border-left: 2px solid #ff4455;
    padding: 6px 10px;
    font-size: 11.5px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.85);
}

.deck-risk-mitigation strong {
    color: #ff4455;
    font-family: "Mono", monospace;
    font-size: 9.5px;
    letter-spacing: 0.06em;
    display: block;
    margin-bottom: 2px;
}

.deck-fortress-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    padding: 16px 18px;
    transition: all 0.25s ease;
}

.deck-fortress-card:hover {
    border-color: rgba(255, 68, 85, 0.45);
    background: linear-gradient(180deg, rgba(255, 68, 85, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.deck-fortress-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.deck-fortress-num {
    font-family: "Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.08em;
    color: #ff4455;
}

.deck-fortress-title {
    font-family: "Rajdhani", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #f4f7f5;
    margin: 0;
    text-transform: uppercase;
}

.deck-fortress-desc {
    font-size: 11.5px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* --- Investor KPIs & Scorecard (Step 18) --- */
.section-kpi {
    position: relative;
    isolation: isolate;
}

.deck-kpi-grid {
    display: grid;
    gap: 20px;
    margin-top: 32px;
    padding: 30px;
}

@media (min-width: 768px) {
    .deck-kpi-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .deck-kpi-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.deck-kpi-card {
    border: 1px solid transparent;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.25s ease;
}

.deck-kpi-card:hover {
    border-color: rgba(255, 68, 85, 0.3);
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-4px);
}

.deck-kpi-card.is-accent {
    border-color: rgba(255, 68, 85, 0.4);
    background: linear-gradient(180deg, rgba(255, 68, 85, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    box-shadow: 0 0 30px rgba(255, 68, 85, 0.08);
}

.deck-kpi-card.is-accent:hover {
    border-color: rgba(255, 68, 85, 0.65);
}

.deck-kpi-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.deck-kpi-dim {
    font-family: "Mono", monospace;
    font-size: 9.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.deck-kpi-type {
    font-family: "Mono", monospace;
    font-size: 9px;
    letter-spacing: 0.06em;
    padding: 2px 6px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
}

.deck-kpi-main-val {
    font-family: "Rajdhani", sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.1;
    color: #f4f7f5;
    margin: 0 0 4px;
    letter-spacing: 0.01em;
}

.deck-kpi-card.is-accent .deck-kpi-main-val {
    color: #ff4455;
}

.deck-kpi-main-label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.deck-kpi-submetrics {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 12px;
}

.deck-kpi-subitem {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.65);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.deck-kpi-subitem strong {
    color: #f4f7f5;
    font-family: "Mono", monospace;
    font-size: 11px;
}

/* --- Frequently Asked Questions (Step 19) --- */
.section-faq {
    position: relative;
    isolation: isolate;
}

.deck-faq-grid {
    display: grid;
    gap: 20px;
    margin-top: 32px;
}

@media (min-width: 992px) {
    .deck-faq-grid {
        grid-template-columns: repeat(2, 1fr);
        align-items: stretch;
    }
}

.deck-faq-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: all 0.25s ease;
}

.deck-faq-card:hover {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-3px);
}

.deck-faq-q {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.deck-faq-q-tag {
    font-family: "Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.08em;
    color: #ff4455;
    background: rgba(255, 68, 85, 0.12);
    border: 1px solid rgba(255, 68, 85, 0.3);
    padding: 2px 7px;
    border-radius: 2px;
}

.deck-faq-title {
    font-family: "Rajdhani", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
    color: #f4f7f5;
    margin: 0;
    letter-spacing: 0.01em;
}

.deck-faq-a {
    font-size: 12.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 12px;
}

/* --- Investment & Strategic Alliance (Step 20) --- */
.section-cta {
    position: relative;
    isolation: isolate;
}

.deck-channel-grid {
    display: grid;
    gap: 16px;
    margin: 32px 0 40px;
}

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

.deck-channel-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.25s ease;
}

.deck-channel-card:hover {
    border-color: rgba(255, 68, 85, 0.45);
    background: linear-gradient(180deg, rgba(255, 68, 85, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    transform: translateY(-4px);
}

.deck-channel-tag {
    font-family: "Mono", monospace;
    font-size: 9.5px;
    letter-spacing: 0.08em;
    color: #ff4455;
    margin-bottom: 8px;
    display: block;
}

.deck-channel-title {
    font-family: "Rajdhani", sans-serif;
    font-size: 19px;
    font-weight: 600;
    color: #f4f7f5;
    margin: 0 0 10px;
    text-transform: uppercase;
}

.deck-channel-desc {
    font-size: 12px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

.deck-form-wrap {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 32px 24px;
    border-radius: 4px;
    max-width: 860px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .deck-form-wrap {
        padding: 40px 36px;
    }
}

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

@media (min-width: 768px) {
    .deck-form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.deck-form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.deck-form-field.is-full {
    grid-column: 1 / -1;
}

.deck-form-label {
    font-family: "Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.deck-form-input,
.deck-form-select,
.deck-form-textarea {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    padding: 12px 14px;
    font-size: 13px;
    border-radius: 2px;
    outline: none;
    transition: all 0.2s ease;
    width: 100%;
}

.deck-form-input:focus,
.deck-form-select:focus,
.deck-form-textarea:focus {
    border-color: #ff4455;
    box-shadow: 0 0 12px rgba(255, 68, 85, 0.2);
}

.deck-form-select option {
    background: #0d0f12;
    color: #ffffff;
}

.deck-form-btn {
    width: 100%;
    padding: 16px 24px;
    background: #ff4455;
    color: #ffffff;
    border: none;
    font-family: "Rajdhani", sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 2px;
}

.deck-form-btn:hover {
    background: #ff2233;
    box-shadow: 0 0 25px rgba(255, 68, 85, 0.4);
    transform: translateY(-2px);
}

.deck-form-notice {
    margin-top: 20px;
    font-size: 11px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.45);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 16px;
}

/* --- Illustrative disclaimer --- */
.deck-illus-note {
    margin-top: 12px;
    font-size: 11px;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.38);
    font-style: italic;
}

.section-pricing .sect-title {
    padding-bottom: 40px;
}

/* --- Header Navigation Menu Hacker & Mono Typography --- */
.menu-indicator {
    display: none !important;
}

.main-nav_menu {
    gap: 20px !important;
}

.main-nav_menu .menu-item {
    display: inline-flex;
    align-items: center;
    background: transparent !important;
}

.main-nav_menu .menu-item::before {
    display: none !important;
}

.main-nav_menu .item-link {
    font-family: "Mono", monospace !important;
    font-size: 11px !important;
    line-height: 16px !important;
    font-weight: 500 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    color: #ffffff !important;
    opacity: 0.5 !important;
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    padding: 6px 6px !important;
    transition: opacity 0.25s ease, color 0.25s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer;
}

.main-nav_menu .item-link .hacker-text_transform {
    font-family: "Mono", monospace !important;
    font-size: 11px !important;
    letter-spacing: 0.08em !important;
    color: #ffffff !important;
    display: inline-block !important;
    white-space: nowrap !important;
}

/* Hover state: 100% opacity */
.main-nav_menu .item-link:hover,
.main-nav_menu .menu-item:hover .item-link {
    opacity: 1 !important;
    color: #ffffff !important;
    background: transparent !important;
}

/* Active state: 100% opacity */
.main-nav_menu .item-link.active,
.main-nav_menu .menu-item.active .item-link,
.main-nav_menu .item-link.active .hacker-text_transform {
    opacity: 1 !important;
    color: #ffffff !important;
    background: transparent !important;
}

/* ==========================================================================
   DEVICE & ORIENTATION GATE OVERLAY
   (Strictly Desktop & Tablet Landscape Viewport Enforcement)
   ========================================================================== */
.deck-device-gate-overlay {
    display: none;
}

@media (orientation: portrait),
(max-width: 899px),
(max-height: 499px) {
    .deck-device-gate-overlay {
        display: flex !important;
        position: fixed !important;
        inset: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        height: 100dvh !important;
        background: #030406 !important;
        background: radial-gradient(circle at 50% 40%, #0c1018 0%, #020305 100%) !important;
        z-index: 2147483647 !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 24px !important;
        box-sizing: border-box !important;
        overflow-y: auto !important;
    }

    .deck-gate-bg-video {
        position: absolute;
        inset: 0;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        z-index: 0;
        pointer-events: none;
        opacity: 1;
    }

    .deck-gate-video-backdrop {
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 50% 50%, rgba(3, 4, 6, 0.4) 0%, rgba(2, 3, 5, 0.88) 100%);
        z-index: 1;
        pointer-events: none;
    }

    .deck-gate-container {
        max-width: 480px;
        width: 100%;
        margin: auto;
        padding: 36px 24px;
        text-align: center;
        position: relative;
        z-index: 2;
    }

    .deck-gate-logo-wrap {
        position: relative;
        display: inline-block;
        margin-bottom: 24px;
    }

    .deck-gate-logo {
        height: 30px;
        width: auto;
        display: block;
        filter: grayscale(1) brightness(1.15);
        position: relative;
        z-index: 2;
        animation: gateLogoGlitch 3.8s infinite;
    }

    .deck-gate-logo-wrap::before,
    .deck-gate-logo-wrap::after {
        content: "";
        position: absolute;
        inset: 0;
        background: url("../images/logo/logo.svg") no-repeat center / contain;
        filter: grayscale(1) brightness(1.4);
        pointer-events: none;
        opacity: 0;
        z-index: 1;
    }

    .deck-gate-logo-wrap::before {
        animation: gateGlitchTop 3.8s infinite cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .deck-gate-logo-wrap::after {
        animation: gateGlitchBot 3.8s infinite reverse cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    @keyframes gateLogoGlitch {

        0%,
        80%,
        100% {
            transform: translate(0, 0) skew(0deg);
            filter: grayscale(1) brightness(1.15);
        }

        82% {
            transform: translate(-2px, 1px) skew(-2deg);
            filter: grayscale(1) drop-shadow(2px 0 0 rgba(255, 255, 255, 0.5)) brightness(1.3);
        }

        84% {
            transform: translate(2px, -1px) skew(2deg);
            filter: grayscale(1) drop-shadow(-2px 0 0 rgba(255, 255, 255, 0.5)) brightness(1.25);
        }

        86% {
            transform: translate(-1px, -1px) skew(0deg);
            filter: grayscale(1) brightness(1.4);
        }

        88% {
            transform: translate(1px, 2px) skew(1deg);
            filter: grayscale(1) drop-shadow(1px -1px 0 rgba(255, 255, 255, 0.6));
        }

        90% {
            transform: translate(0, 0) skew(0deg);
            filter: grayscale(1) brightness(1.15);
        }
    }

    @keyframes gateGlitchTop {

        0%,
        80%,
        100% {
            opacity: 0;
            clip-path: inset(0 0 0 0);
            transform: translate(0);
        }

        82% {
            opacity: 0.85;
            clip-path: inset(10% 0 55% 0);
            transform: translate(-3px, -1px);
        }

        84% {
            opacity: 0.9;
            clip-path: inset(45% 0 20% 0);
            transform: translate(3px, 1px);
        }

        87% {
            opacity: 0.7;
            clip-path: inset(65% 0 10% 0);
            transform: translate(-2px, 2px);
        }

        90% {
            opacity: 0;
            clip-path: inset(0 0 0 0);
            transform: translate(0);
        }
    }

    @keyframes gateGlitchBot {

        0%,
        80%,
        100% {
            opacity: 0;
            clip-path: inset(0 0 0 0);
            transform: translate(0);
        }

        83% {
            opacity: 0.85;
            clip-path: inset(50% 0 15% 0);
            transform: translate(3px, -2px);
        }

        85% {
            opacity: 0.9;
            clip-path: inset(20% 0 45% 0);
            transform: translate(-3px, 1px);
        }

        88% {
            opacity: 0.75;
            clip-path: inset(35% 0 30% 0);
            transform: translate(2px, 2px);
        }

        90% {
            opacity: 0;
            clip-path: inset(0 0 0 0);
            transform: translate(0);
        }
    }

    .deck-gate-title {
        font-family: "Mono", monospace !important;
        font-size: 13.5px;
        font-weight: 500;
        line-height: 1.6;
        color: #a1a1aa;
        letter-spacing: 0.05em;
        margin: 0;
        word-break: break-word;
        text-align: center;
        display: inline-block;
        max-width: 440px;
        text-transform: uppercase;
    }
}

/* ==========================================================================
   LARGE DISPLAY & ULTRAWIDE PROPORTIONAL SCALING (1920x1080, 2560x1440, 4K)
   Calibrates the entire presentation layout scale to match 1440x800 baseline
   ========================================================================== */
@media (min-width: 1680px) and (max-width: 2199px) {
    #wrapper {
        zoom: 1.333;
    }
}

@media (min-width: 2200px) and (max-width: 3199px) {
    #wrapper {
        zoom: 1.777;
    }
}

@media (min-width: 3200px) {
    #wrapper {
        zoom: 2.666;
    }
}