/* gabricode — mobile-first home experience (≤1023px) */

@media (max-width: 1023px) {
    body.home-mobile-active {
        -webkit-tap-highlight-color: transparent;
    }

    .home-main {
        overflow-x: clip;
    }

    /* —— Hero: compact, no dead earth scroll —— */
    .home-main .earth-scroll-container {
        min-height: auto;
    }

    .home-main .hero-earth-hero.hero-nexus-stage {
        min-height: auto !important;
        height: auto !important;
        padding: calc(env(safe-area-inset-top, 0px) + 5.25rem) 1.15rem 2.25rem;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
    }

    .home-main .earth-scroll-spacer--travel,
    .home-main .earth-scroll-spacer--hold {
        display: none !important;
        height: 0 !important;
        min-height: 0 !important;
    }

    .home-main .earth-target-section {
        display: none !important;
    }

    /* Mobile hero globe — Three.js Earth (matches desktop) */
    .hero-mobile-visual {
        display: block;
        position: relative;
        width: min(88vw, 21.5rem);
        height: min(88vw, 21.5rem);
        margin: 0 auto 1.35rem;
        pointer-events: none;
    }

    .hero-mobile-globe {
        position: relative;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .hero-mobile-globe__canvas {
        display: block;
        width: 100%;
        height: 100%;
        border-radius: 50%;
    }

    /* Three.js active: hide CSS rings — desktop has no decorative rings */
    .hero-mobile-globe--three .hero-mobile-visual__ring,
    .hero-mobile-globe--three .hero-mobile-visual__ring--2 {
        display: none;
    }

    .hero-mobile-globe--three .hero-mobile-visual__glow {
        inset: -22%;
        background: radial-gradient(
            circle,
            rgba(14, 116, 233, 0.22) 0%,
            rgba(59, 130, 246, 0.08) 38%,
            transparent 68%
        );
        opacity: 0.9;
        animation: none;
        filter: blur(2px);
    }

    html.theme-light .hero-mobile-globe--three .hero-mobile-visual__glow {
        background: radial-gradient(
            circle,
            rgba(8, 145, 178, 0.18) 0%,
            rgba(124, 58, 237, 0.06) 40%,
            transparent 68%
        );
    }

    .hero-mobile-globe--three .hero-mobile-globe__canvas {
        filter: drop-shadow(0 0 28px rgba(37, 99, 235, 0.28))
            drop-shadow(0 8px 32px rgba(0, 0, 0, 0.35));
    }

    html.theme-light .hero-mobile-globe--three .hero-mobile-globe__canvas {
        filter: drop-shadow(0 0 24px rgba(8, 145, 178, 0.2))
            drop-shadow(0 6px 24px rgba(15, 23, 42, 0.12));
    }

    .hero-mobile-visual__ring {
        position: absolute;
        inset: -2%;
        border-radius: 50%;
        border: 1px solid rgba(103, 232, 249, 0.28);
        animation: mobileOrbSpin 18s linear infinite;
        z-index: 2;
        pointer-events: none;
    }

    .hero-mobile-visual__ring--2 {
        inset: 6%;
        border-color: rgba(123, 47, 247, 0.22);
        animation-direction: reverse;
        animation-duration: 24s;
    }

    .hero-mobile-visual__glow {
        position: absolute;
        inset: -12%;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(0, 242, 254, 0.14), transparent 68%);
        animation: mobileOrbGlow 6s ease-in-out infinite alternate;
        z-index: 0;
    }

    @keyframes mobileOrbSpin {
        to { transform: rotate(360deg); }
    }

    @keyframes mobileOrbGlow {
        0% { opacity: 0.55; transform: scale(0.96); }
        100% { opacity: 1; transform: scale(1.06); }
    }

    .home-main .hero-title-premium {
        font-size: clamp(1.55rem, 7.4vw, 2.35rem) !important;
        line-height: 1.12 !important;
        margin-bottom: 0.85rem !important;
    }

    .home-main .hero-title-line--duo {
        text-wrap: pretty;
    }

    .home-main .hero-lead {
        max-width: none;
        font-size: 0.98rem;
        line-height: 1.62;
        margin-bottom: 1.1rem !important;
        text-wrap: pretty;
        overflow: visible;
        overflow-wrap: break-word;
    }

    /* Subtitle accent: no gradient box — solid readable cyan */
    body.corporate-ui .home-main .hero-lead .hero-word-accent,
    .home-main .hero-lead .hero-word-accent {
        display: inline !important;
        padding: 0 !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        background: none !important;
        background-image: none !important;
        background-size: auto !important;
        -webkit-background-clip: border-box !important;
        background-clip: border-box !important;
        color: #7dd3fc !important;
        -webkit-text-fill-color: #7dd3fc !important;
        animation: none !important;
        filter: none !important;
        font-weight: 600 !important;
    }

    html.theme-light .home-main .hero-lead .hero-word-accent {
        color: #0e7490 !important;
        -webkit-text-fill-color: #0e7490 !important;
    }

    .home-main .hero-copy--premium {
        text-align: left;
        margin-inline: 0;
    }

    .home-main .hero-eyebrow {
        justify-content: flex-start;
    }

    .home-main .hero-lead {
        margin-inline: 0;
    }

    .home-main .hero-cta-row--premium {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.55rem;
        width: 100%;
        max-width: none;
        margin-inline: 0;
    }

    .home-main .hero-cta-row--premium a {
        width: 100%;
        min-height: 3rem;
    }

    .home-main .hero-metrics {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.4rem;
        width: 100%;
        max-width: none;
        margin: 0.85rem 0 0;
        padding-top: 0;
        border-top: none;
    }

    .home-main .hero-metrics-divider {
        display: none;
    }

    .home-main .hero-metrics > span:not(.hero-metrics-divider) {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
        padding: 0.6rem 0.75rem;
        font-size: 0.72rem;
        line-height: 1.4;
        text-align: left;
        border-radius: 0.65rem;
        border: 1px solid rgba(148, 163, 184, 0.18);
        background: rgba(255, 255, 255, 0.03);
    }

    .home-main .hero-metrics em {
        font-size: 0.78rem;
        font-style: normal;
        font-weight: 600;
        color: #e2e8f0;
        flex-shrink: 0;
    }

    html.theme-light .home-main .hero-metrics > span:not(.hero-metrics-divider) {
        background: rgba(8, 145, 178, 0.05);
        border-color: rgba(8, 145, 178, 0.14);
    }

    html.theme-light .home-main .hero-metrics em {
        color: var(--lt-ink) !important;
    }

    /* —— Company intro: open layout, no silver box —— */
    .home-main .company-intro-stage {
        min-height: auto;
        padding: 1.75rem 0 1.85rem;
        align-items: stretch;
    }

    .home-main .company-intro-stage.mobile-reveal .company-intro-head,
    .home-main .company-intro-stage.mobile-reveal .company-intro-capabilities {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .home-main .company-intro-readability-veil {
        display: block !important;
        opacity: 0.62;
    }

    html.theme-light .home-main .company-intro-readability-veil {
        opacity: 0.78 !important;
    }

    .home-main .company-intro-code-rain {
        opacity: 0.38;
    }

    html.theme-light .home-main .company-intro-code-rain {
        opacity: 0.32 !important;
    }

    .home-main .company-intro-glass-card,
    .home-main .company-intro-glass-card--side {
        border-radius: 1rem;
    }

    .home-main .company-intro-glass-card__surface {
        margin: 0;
        padding: 1.15rem 1rem;
        border-radius: 1rem;
        background: rgba(6, 10, 22, 0.82) !important;
        backdrop-filter: blur(18px) saturate(1.2) !important;
        -webkit-backdrop-filter: blur(18px) saturate(1.2) !important;
        border: 1px solid rgba(103, 232, 249, 0.2) !important;
        box-shadow:
            0 10px 32px rgba(0, 0, 0, 0.22),
            inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
        overflow: hidden;
    }

    .home-main .company-intro-glass-card__surface::before {
        display: block !important;
    }

    html.theme-light .home-main .company-intro-glass-card__surface {
        background: rgba(255, 255, 255, 0.86) !important;
        border-color: rgba(8, 145, 178, 0.2) !important;
        box-shadow:
            0 8px 28px rgba(15, 23, 42, 0.07),
            inset 0 1px 0 rgba(255, 255, 255, 0.95) !important;
    }

    .home-main .company-intro-head {
        max-width: none;
        text-align: left;
    }

    .home-main .company-intro-eyebrow {
        justify-content: flex-start;
    }

    .home-main .company-intro-actions {
        justify-content: stretch;
    }

    .home-main .company-intro-title {
        font-size: clamp(1.35rem, 6.2vw, 1.85rem);
        line-height: 1.22;
        margin-bottom: 0.85rem;
    }

    .home-main .company-intro-title > span {
        display: block;
        text-wrap: pretty;
    }

    .home-main .company-intro-title__silver {
        animation: none !important;
        background: none !important;
        background-image: none !important;
        -webkit-background-clip: border-box !important;
        background-clip: border-box !important;
        color: #e2e8f0 !important;
        -webkit-text-fill-color: #e2e8f0 !important;
        filter: none !important;
        margin-bottom: 0.35rem;
    }

    html.theme-light .home-main .company-intro-title__silver {
        color: var(--lt-ink) !important;
        -webkit-text-fill-color: var(--lt-ink) !important;
    }

    .home-main .company-intro-title__main {
        text-wrap: pretty;
        word-break: normal;
        overflow-wrap: anywhere;
        animation: none !important;
        background: none !important;
        background-image: none !important;
        -webkit-background-clip: border-box !important;
        background-clip: border-box !important;
        color: #e8eef4 !important;
        -webkit-text-fill-color: #e8eef4 !important;
        text-shadow: none !important;
        filter: none !important;
    }

    html.theme-light .home-main .company-intro-title__main {
        color: var(--lt-ink) !important;
        -webkit-text-fill-color: var(--lt-ink) !important;
    }

    .home-main .company-intro-title__main .brand-wordmark--inline,
    .home-main .company-intro-title__main .brand-wordmark--split {
        display: inline !important;
        white-space: normal !important;
    }

    .home-main .company-intro-lead {
        font-size: 0.9rem;
        max-width: none;
        margin-bottom: 1.1rem;
    }

    .home-main .company-intro-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.55rem;
    }

    .home-main .company-intro-btn {
        width: 100%;
        justify-content: center;
        white-space: normal;
        text-align: center;
    }

    .home-main .company-intro-layout {
        display: flex;
        flex-direction: column;
        gap: 1.35rem;
    }

    .home-main .company-intro-capabilities__list {
        border-top: none;
    }

    .home-main .company-intro-capabilities__item {
        grid-template-columns: 2.35rem minmax(0, 1fr);
        gap: 0.75rem;
        padding: 0.65rem 0;
        border-bottom-color: rgba(148, 163, 184, 0.12);
    }

    .home-main .company-intro-capabilities__icon {
        flex-shrink: 0;
        width: 2.35rem;
        height: 2.35rem;
        margin-top: 0;
        border-radius: 0.65rem;
        border: 1px solid rgba(103, 232, 249, 0.28);
        background: rgba(8, 145, 178, 0.14);
        color: #67e8f9;
    }

    .home-main .company-intro-capabilities__icon svg {
        width: 1.15rem !important;
        height: 1.15rem !important;
        display: block;
        filter: none !important;
        stroke: currentColor;
    }

    html.theme-light .home-main .company-intro-capabilities__icon {
        color: var(--brand-turquoise-deep) !important;
        background: var(--brand-turquoise-muted) !important;
        border-color: rgba(8, 145, 178, 0.22) !important;
    }

    .home-main .company-intro-capabilities__copy strong {
        font-size: 0.88rem;
    }

    .home-main .company-intro-capabilities__copy span {
        font-size: 0.8rem;
        line-height: 1.45;
    }

    /* —— Motion strip: premium slider —— */
    .home-main .motion-strip-section--premium {
        padding-bottom: 1rem !important;
    }

    .home-main .motion-strip-premium {
        padding-inline: 0;
    }

    .home-main .motion-strip-premium__header {
        margin-bottom: 0.7rem;
    }

    .home-main .motion-strip-shell--premium {
        border-radius: 0 !important;
        padding: 0.75rem 0 !important;
    }

    .home-main .motion-strip-track--premium {
        display: flex !important;
        flex-wrap: nowrap !important;
        width: max-content !important;
        max-width: none !important;
        gap: 0.5rem !important;
        padding-inline: 0.85rem;
        position: relative;
        z-index: 1;
        will-change: transform;
        animation: stripSlide 32s linear infinite !important;
    }

    .home-main .motion-strip-chip {
        font-size: 0.66rem;
        letter-spacing: 0.09em;
        padding: 0.5rem 0.85rem;
    }

    .home-main .motion-strip-fade {
        width: 2.25rem;
    }

    .home-main .motion-strip-section .mobile-stagger > * {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    /* —— Shorter sections (less vertical scroll) —— */
    .home-main .services-faq-stage {
        min-height: auto !important;
        align-items: stretch !important;
        padding: 1.65rem 0 1.85rem !important;
    }

    .home-main .services-faq-inner {
        min-height: auto !important;
        justify-content: flex-start;
    }

    .home-main .services-faq-layout {
        gap: 1.25rem;
    }

    .home-main .problem-stack-section,
    .home-main .problem-stack-stage,
    .home-main .problem-stack-layout {
        min-height: auto !important;
    }

    .home-main .problem-stack-section {
        padding-bottom: 1.5rem !important;
    }

    .home-main .pb-14 {
        padding-bottom: 1.25rem !important;
    }

    .home-main .pb-16 {
        padding-bottom: 1.5rem !important;
    }

    .home-main .pb-20 {
        padding-bottom: 1.75rem !important;
    }

    .home-main .pb-24 {
        padding-bottom: 2rem !important;
    }

    /* —— Problem stack: swipeable hint cards —— */
    .home-main .problem-stack-section {
        padding-inline: 1rem;
        margin-inline: 0.65rem;
        border-radius: 1.1rem;
    }

    html.theme-light .home-main .problem-stack-section {
        padding: 1.35rem 1rem 1.5rem !important;
    }

    .home-main .problem-stack-copy h2 {
        font-size: clamp(1.45rem, 6.5vw, 2rem) !important;
        line-height: 1.15;
    }

    .home-main .problem-stack-copy p {
        font-size: 0.92rem;
    }

    .home-main .services-faq-wave-canvas {
        opacity: 0.55 !important;
    }

    /* Problem cards: first visible, swipe right for more */
    .home-main .problem-stack-layout {
        position: relative;
        overflow: visible;
    }

    .home-main .problem-stack-deck-shell {
        position: relative;
        overflow: visible;
        margin-top: 1rem;
    }

    .home-main .problem-stack-deck-arrow {
        display: grid;
        place-items: center;
        position: absolute;
        top: 50%;
        z-index: 6;
        width: 2.2rem;
        height: 2.2rem;
        padding: 0;
        border: 1px solid rgba(103, 232, 249, 0.32);
        border-radius: 999px;
        background: linear-gradient(155deg, rgba(12, 16, 28, 0.94) 0%, rgba(6, 9, 18, 0.9) 100%);
        color: #a5f3fc;
        box-shadow:
            0 8px 22px rgba(2, 6, 23, 0.38),
            inset 0 1px 0 rgba(255, 255, 255, 0.1),
            0 0 18px rgba(124, 58, 237, 0.12);
        cursor: pointer;
        transform: translateY(-50%);
        transition:
            opacity 0.28s ease,
            transform 0.28s ease,
            border-color 0.28s ease,
            box-shadow 0.28s ease;
        -webkit-tap-highlight-color: transparent;
    }

    .home-main .problem-stack-deck-arrow svg {
        width: 1rem;
        height: 1rem;
        filter: drop-shadow(0 0 6px rgba(103, 232, 249, 0.35));
    }

    .home-main .problem-stack-deck-arrow--prev {
        left: -0.35rem;
    }

    .home-main .problem-stack-deck-arrow--next {
        right: -0.35rem;
    }

    .home-main .problem-stack-deck-arrow:active:not(.is-disabled) {
        transform: translateY(-50%) scale(0.94);
    }

    .home-main .problem-stack-deck-arrow.is-disabled {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .home-main .problem-stack-deck-arrow--next:not(.is-disabled) {
        animation: problemDeckArrowNudge 2.6s ease-in-out infinite;
    }

    html.theme-light .home-main .problem-stack-deck-arrow {
        border-color: rgba(8, 145, 178, 0.34);
        background: linear-gradient(155deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.96) 100%);
        color: var(--brand-turquoise-deep);
        box-shadow:
            0 6px 18px rgba(15, 23, 42, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 1),
            0 0 14px rgba(124, 58, 237, 0.08);
    }

    html.theme-light .home-main .problem-stack-deck-arrow svg {
        filter: drop-shadow(0 0 4px rgba(8, 145, 178, 0.2));
    }

    .home-main .problem-stack-deck {
        display: flex !important;
        flex-wrap: nowrap !important;
        grid-template-columns: unset !important;
        gap: 0.65rem !important;
        width: 100% !important;
        min-height: auto !important;
        margin-top: 0 !important;
        padding: 0.1rem 0.15rem 0.55rem !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory !important;
        scroll-padding-inline: 0.15rem;
        overscroll-behavior-x: contain;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        perspective: none !important;
        touch-action: pan-x pan-y;
    }

    .home-main .problem-stack-deck::-webkit-scrollbar {
        display: none;
    }

    .home-main .problem-stack-card {
        position: relative !important;
        inset: auto !important;
        flex: 0 0 calc(100% - 0.35rem) !important;
        min-width: calc(100% - 0.35rem) !important;
        max-width: calc(100% - 0.35rem) !important;
        min-height: auto !important;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        border-left: 2px solid rgba(0, 242, 254, 0.35);
        transition: box-shadow 0.3s ease;
        box-shadow:
            0 20px 44px rgba(15, 23, 42, 0.14),
            0 6px 16px rgba(15, 23, 42, 0.07),
            inset 0 1px 0 rgba(255, 255, 255, 0.95);
    }

    html.theme-light .home-main .problem-stack-card {
        box-shadow:
            0 22px 48px rgba(15, 23, 42, 0.16),
            0 8px 20px rgba(15, 23, 42, 0.08),
            inset 0 1px 0 rgba(255, 255, 255, 1) !important;
    }

    .home-main .problem-stack-card:active {
        box-shadow: 0 8px 20px rgba(2, 8, 23, 0.28);
    }

    @keyframes problemDeckArrowNudge {
        0%, 100% {
            transform: translateY(-50%) translateX(0);
            box-shadow:
                0 8px 22px rgba(2, 6, 23, 0.38),
                inset 0 1px 0 rgba(255, 255, 255, 0.1),
                0 0 18px rgba(124, 58, 237, 0.12);
        }
        50% {
            transform: translateY(-50%) translateX(3px);
            box-shadow:
                0 8px 22px rgba(2, 6, 23, 0.38),
                inset 0 1px 0 rgba(255, 255, 255, 0.1),
                0 0 22px rgba(8, 145, 178, 0.22);
        }
    }

    /* —— Cyber: vertical stack, not horizontal marathon —— */
    .home-main .cyber-trigger {
        padding-inline: 0.85rem !important;
        min-height: auto !important;
    }

    .home-main .cyber-panel {
        min-height: auto !important;
        height: auto !important;
        border-radius: 1rem !important;
        padding: 1rem 0.85rem 0.95rem !important;
    }

    .home-main .cyber-panel-hero,
    .home-main .cyber-panel-inner {
        overflow: hidden;
        max-width: 100%;
        min-width: 0;
    }

    .home-main .cyber-panel-copy {
        min-width: 0;
        max-width: 100%;
    }

    .home-main .cyber-panel-title {
        font-size: clamp(1.12rem, 5.2vw, 1.42rem) !important;
        line-height: 1.28 !important;
        margin-bottom: 0.45rem !important;
        text-wrap: pretty;
        overflow-wrap: break-word;
        word-break: normal;
    }

    .home-main .cyber-panel-lead {
        font-size: 0.82rem !important;
        line-height: 1.55 !important;
        text-wrap: pretty;
        overflow-wrap: break-word;
        max-width: 100%;
    }

    .home-main .cyber-panel .gradient-heading {
        background: none !important;
        background-image: none !important;
        -webkit-background-clip: border-box !important;
        background-clip: border-box !important;
        color: #ecfdf5 !important;
        -webkit-text-fill-color: #ecfdf5 !important;
        animation: none !important;
    }

    html.theme-light .home-main .cyber-panel .gradient-heading {
        color: var(--lt-ink) !important;
        -webkit-text-fill-color: var(--lt-ink) !important;
    }

    .home-main .cyber-card-lane {
        position: relative;
        width: 100%;
        max-width: 100%;
        overflow: hidden !important;
        margin-inline: 0;
        padding-inline: 0;
    }

    .home-main .cyber-card-lane::before {
        content: "";
        position: absolute;
        right: 0;
        top: 2.25rem;
        bottom: 0.35rem;
        width: 2.5rem;
        pointer-events: none;
        z-index: 3;
        background: linear-gradient(270deg, rgba(0, 14, 7, 0.94) 0%, transparent 100%);
    }

    html.theme-light .home-main .cyber-card-lane::before {
        background: linear-gradient(270deg, rgba(240, 253, 250, 0.96) 0%, transparent 100%);
    }

    .home-main .cyber-finger-hud {
        font-size: 0.62rem;
        letter-spacing: 0.14em;
        padding: 0.45rem 0.65rem;
        border-radius: 0.55rem;
        background: rgba(16, 185, 129, 0.1);
        border: 1px solid rgba(52, 211, 153, 0.25);
    }

    /* —— Cyber chips: horizontal slider (Zero Trust, Threat Modeling, …) —— */
    .home-main .cyber-panel-chips-shell {
        position: relative;
        overflow: hidden;
        margin-top: 0.65rem;
        margin-inline: -0.15rem;
        padding-block: 0.15rem;
    }

    .home-main .cyber-panel-chips-shell::after {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        z-index: 2;
        background: linear-gradient(
            90deg,
            rgba(0, 14, 7, 0.95) 0%,
            transparent 10%,
            transparent 90%,
            rgba(0, 14, 7, 0.95) 100%
        );
    }

    html.theme-light .home-main .cyber-panel-chips-shell::after {
        background: linear-gradient(
            90deg,
            rgba(240, 253, 250, 0.96) 0%,
            transparent 10%,
            transparent 90%,
            rgba(240, 253, 250, 0.96) 100%
        );
    }

    .home-main .cyber-panel-chips-track {
        display: flex !important;
        flex-wrap: nowrap !important;
        width: max-content !important;
        max-width: none !important;
        gap: 0.5rem !important;
        padding-inline: 0.35rem;
        animation: cyberChipSlide 26s linear infinite !important;
    }

    .home-main .cyber-panel-chips-track .chip-tag {
        flex: 0 0 auto;
        width: auto !important;
        min-height: 1.85rem;
        white-space: nowrap;
        font-size: 0.64rem;
        padding: 0.35rem 0.62rem;
    }

    .home-main .cyber-card-track {
        display: flex !important;
        flex-wrap: nowrap !important;
        grid-template-columns: unset !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory !important;
        gap: 0.55rem !important;
        padding: 0.1rem 0.15rem 0.55rem !important;
        scroll-padding-inline: 0.15rem;
        overscroll-behavior-x: contain;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        transform: none !important;
        touch-action: pan-x pan-y;
    }

    .home-main .cyber-card-track::-webkit-scrollbar {
        display: none;
    }

    .home-main .cyber-card-item {
        box-sizing: border-box !important;
        width: auto !important;
        flex: 0 0 calc(100% - 0.5rem) !important;
        min-width: calc(100% - 0.5rem) !important;
        max-width: calc(100% - 0.5rem) !important;
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
        padding: 0.8rem 0.72rem !important;
        overflow: visible !important;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .home-main .cyber-card-item .icon-badge {
        width: 2.2rem !important;
        height: 2.2rem !important;
        min-width: 2.2rem !important;
        margin-bottom: 0.45rem !important;
    }

    .home-main .cyber-card-item .icon-badge svg {
        width: 0.95rem !important;
        height: 0.95rem !important;
    }

    .home-main .cyber-card-item p.text-xs {
        font-size: 0.6rem !important;
        letter-spacing: 0.1em !important;
        margin-bottom: 0.3rem !important;
        line-height: 1.3 !important;
    }

    .home-main .cyber-panel {
        overflow: hidden !important;
    }

    .home-main .problem-stack-deck.mobile-stagger > *,
    .home-main .cyber-card-track.mobile-stagger > * {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .home-main .cyber-card-item .text-base,
    .home-main .cyber-card-item p:last-child {
        font-size: 0.8rem !important;
        line-height: 1.52 !important;
        white-space: normal !important;
        text-wrap: pretty !important;
        overflow-wrap: anywhere !important;
        word-break: normal !important;
        max-width: 100% !important;
        margin: 0 !important;
        flex: 1 1 auto !important;
    }

    .home-main .cyber-bottom-cta {
        width: 100%;
        min-height: 2.75rem;
        font-size: 0.88rem;
    }

    .home-main .services-faq-title {
        font-size: clamp(1.35rem, 6.2vw, 1.85rem);
    }

    .home-main .services-faq-item__question {
        font-size: 0.92rem;
        padding: 0.85rem 0.75rem;
    }

    /* —— References: card list with accent —— */
    .home-main .references-orbit-section {
        padding-inline: 1rem;
    }

    .home-main .references-core {
        padding: 1rem 1.1rem 1rem !important;
        overflow: visible !important;
    }

    .home-main .references-core > p.text-xs {
        letter-spacing: 0.14em !important;
        padding-inline: 0.22em !important;
        overflow: visible !important;
    }

    .home-main .references-orbit {
        overflow: visible !important;
    }

    .home-main .reference-node {
        padding: 0.85rem 0.9rem;
        border-left: 3px solid rgba(0, 242, 254, 0.45);
        transition: transform 0.25s ease, border-color 0.25s ease;
    }

    .home-main .reference-node:active {
        transform: translateX(4px);
        border-left-color: rgba(0, 242, 254, 0.85);
    }

    /* —— Blog insight cards: taller tap targets —— */
    .home-main .insight-cover-card {
        min-height: 14.5rem;
        border-radius: 1rem;
    }

    .home-main .insight-cover-card__overlay {
        padding: 1rem 1.05rem 1.1rem;
    }

    .home-main .insight-cover-card h3 {
        font-size: 1.05rem;
    }

    /* —— Section reveal: stagger children, not whole blank section —— */
    .home-main .section-reveal.mobile-reveal {
        opacity: 1;
        transform: none;
    }

    .home-main .mobile-stagger > * {
        opacity: 0;
        transform: translate3d(0, 18px, 0);
        transition:
            opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
            transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .home-main .section-reveal.mobile-reveal.is-visible .mobile-stagger > * {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }

    .home-main .section-reveal.mobile-reveal.is-visible .mobile-stagger > *:nth-child(1) { transition-delay: 0.04s; }
    .home-main .section-reveal.mobile-reveal.is-visible .mobile-stagger > *:nth-child(2) { transition-delay: 0.1s; }
    .home-main .section-reveal.mobile-reveal.is-visible .mobile-stagger > *:nth-child(3) { transition-delay: 0.16s; }
    .home-main .section-reveal.mobile-reveal.is-visible .mobile-stagger > *:nth-child(4) { transition-delay: 0.22s; }
    .home-main .section-reveal.mobile-reveal.is-visible .mobile-stagger > *:nth-child(5) { transition-delay: 0.28s; }
    .home-main .section-reveal.mobile-reveal.is-visible .mobile-stagger > *:nth-child(6) { transition-delay: 0.34s; }

    /* Nav signal pills readable */
    .mobile-nav-signal {
        font-size: 0.62rem !important;
        min-height: 1.85rem !important;
    }

    body.home-mobile-active .advanced-footer {
        min-height: auto;
        padding-top: 2rem;
        padding-bottom: 1.5rem;
    }

    body.home-mobile-active .page-shell {
        padding-top: 4.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-mobile-visual {
        display: none;
    }
}

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

@keyframes cyberChipSlide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 1023px) and (prefers-reduced-motion: reduce) {
    .home-main .mobile-stagger > *,
    .hero-mobile-visual__ring,
    .hero-mobile-visual__glow {
        animation: none !important;
        transition: none !important;
        opacity: 0.5 !important;
        transform: none !important;
    }

    .hero-mobile-globe--three .hero-mobile-globe__canvas {
        filter: none !important;
    }

    .home-main .motion-strip-track--premium {
        animation: none !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch;
        max-width: 100%;
    }

    .home-main .problem-stack-deck-arrow--next:not(.is-disabled) {
        animation: none !important;
    }

    .home-main .motion-strip-chip {
        scroll-snap-align: center;
    }

    .home-main .cyber-panel-chips-shell {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .home-main .cyber-panel-chips-shell::-webkit-scrollbar {
        display: none;
    }

    .home-main .cyber-panel-chips-track {
        animation: none !important;
        width: max-content !important;
    }

    .home-main .cyber-panel-chips-track .chip-tag {
        scroll-snap-align: center;
    }
}
