    .container.home-page {
        max-width: none;
        width: 100%;
        margin: 0;
        padding: 0;
        z-index: auto;
        position: static;
    }
    .container.home-page > * { animation: none; }

    .home-hero {
        position: relative;
        isolation: isolate;
        z-index: 0;
        min-height: min(52vh, 420px);
        display: flex;
        align-items: flex-start;
        color: #fff;
        overflow: hidden;
        background:
            linear-gradient(118deg, rgba(16, 42, 67, 0.97) 0%, rgba(16, 42, 67, 0.84) 46%, rgba(11, 110, 153, 0.58) 100%),
            linear-gradient(165deg, #0E2438 0%, #163A52 52%, #0B6E99 100%);
    }
    .home-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        z-index: 0;
        background:
            radial-gradient(ellipse 55% 70% at 92% 12%, rgba(201, 162, 39, 0.2), transparent 58%),
            radial-gradient(ellipse 42% 48% at 8% 88%, rgba(11, 110, 153, 0.32), transparent 62%);
        pointer-events: none;
        animation: home-glow 14s ease-in-out infinite alternate;
    }
    .home-hero::after {
        content: '';
        position: absolute;
        inset: 0;
        z-index: 0;
        opacity: 0.35;
        background-image: repeating-linear-gradient(
            -18deg,
            transparent,
            transparent 28px,
            rgba(255, 255, 255, 0.028) 28px,
            rgba(255, 255, 255, 0.028) 29px
        );
        pointer-events: none;
    }
    .home-hero-sheen {
        position: absolute;
        top: -40%;
        left: -20%;
        width: 55%;
        height: 180%;
        z-index: 0;
        pointer-events: none;
        background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.07) 48%, transparent 62%);
        animation: home-sheen 9s ease-in-out infinite;
    }
    .home-hero-inner {
        position: relative;
        z-index: 1;
        width: 100%;
        max-width: 1280px;
        margin: 0 auto;
        padding: 1.35rem 1.5rem 2.75rem;
    }
    .home-brand {
        font-family: var(--font-brand);
        font-size: clamp(2.35rem, 5.2vw, 3.55rem);
        font-weight: 600;
        letter-spacing: -0.035em;
        line-height: 1.02;
        margin: 0 0 0.85rem;
        max-width: 18ch;
        animation: home-rise 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
    }
    .home-brand-line1 {
        display: block;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }
    .home-brand-line2 {
        display: block;
        margin-top: 0.12em;
        font-size: 0.72em;
        font-weight: 600;
        letter-spacing: 0.02em;
        text-transform: uppercase;
        opacity: 0.95;
    }
    .home-headline {
        font-family: var(--font-ui);
        font-size: clamp(1.02rem, 1.9vw, 1.22rem);
        font-weight: 600;
        max-width: 34rem;
        line-height: 1.4;
        color: rgba(255, 255, 255, 0.94);
        margin: 0 0 0.55rem;
        animation: home-rise 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.06s both;
    }
    .home-support {
        font-size: 0.92rem;
        max-width: 32rem;
        line-height: 1.55;
        color: rgba(255, 255, 255, 0.7);
        margin: 0 0 1.45rem;
        animation: home-rise 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
    }
    .home-cta {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.75rem;
        margin-top: 0.25rem;
        animation: home-rise 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.18s both;
    }
    .home-cta .btn-pin {
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
        padding: 0.7rem 1.25rem;
        font-size: 0.92rem;
        font-weight: 650;
        color: #ffffff;
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.28);
        border-radius: 999px;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        box-shadow: 0 2px 8px rgba(16, 42, 67, 0.15);
        text-decoration: none;
        transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1),
                    background 0.2s ease,
                    border-color 0.2s ease,
                    box-shadow 0.2s ease;
    }
    .home-cta .btn-pin:hover {
        transform: translateY(-2px);
        background: rgba(255, 255, 255, 0.22);
        border-color: rgba(255, 255, 255, 0.6);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        color: #ffffff;
    }
    .home-cta .btn-pin:active {
        transform: scale(0.98);
    }
    .home-cta .btn-pin-arrow {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 1.25rem;
        height: 1.25rem;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.15);
        color: #ffffff;
        transition: transform 0.2s ease, background 0.2s ease;
        flex-shrink: 0;
    }
    .home-cta .btn-pin:hover .btn-pin-arrow {
        transform: translateX(3px);
        background: rgba(255, 255, 255, 0.32);
    }
    .home-cta .btn-ghost {
        background: transparent;
        color: #fff;
        border: 1px solid rgba(255, 255, 255, 0.38);
    }
    .home-cta .btn-ghost:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.6);
    }

    .home-band {
        position: relative;
        z-index: 0;
        background: #f8fafc;
        border-top: 1px solid rgba(16, 42, 67, 0.08);
    }
    .home-band-inner {
        max-width: 1180px;
        margin: 0 auto;
        padding: 2.75rem 1.5rem 4rem;
    }
    .home-band-head {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        gap: 1.25rem;
        flex-wrap: wrap;
        margin-bottom: 1.5rem;
        padding-bottom: 1.15rem;
        border-bottom: 1px solid rgba(16, 42, 67, 0.08);
    }
    .home-band-head h2 {
        font-family: var(--font-brand);
        font-size: clamp(1.55rem, 3vw, 2rem);
        font-weight: 650;
        letter-spacing: -0.025em;
        color: var(--ink);
        margin: 0.2rem 0 0.35rem;
    }
    .home-band-head p {
        margin: 0;
        font-size: 0.92rem;
        color: var(--text-muted);
        max-width: 36rem;
        line-height: 1.5;
    }

    .home-filter-pills {
        display: flex;
        gap: 0.4rem;
        flex-wrap: wrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 0.2rem;
        background: #f1f4f7;
        border-radius: 10px;
    }
    .home-filter-pill {
        border: 1px solid transparent;
        background: transparent;
        color: var(--ink-soft, #243b53);
        font-size: 0.82rem;
        font-weight: 650;
        padding: 0.4rem 0.85rem;
        border-radius: 8px;
        cursor: pointer;
        transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
        white-space: nowrap;
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
        font-family: inherit;
    }
    .home-filter-pill:hover {
        background: #ffffff;
        color: var(--ink);
    }
    .home-filter-pill.is-active {
        background: #ffffff;
        border-color: var(--border, #d5dce3);
        color: var(--signal, #0b6e99);
    }

    .home-featured-card {
        background: #ffffff;
        border: 1px solid var(--border, #d5dce3);
        border-radius: 16px;
        padding: 1.5rem;
        margin-bottom: 1.75rem;
        box-shadow: 0 2px 8px rgba(16, 42, 67, 0.04);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .home-featured-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(16, 42, 67, 0.08);
    }

    .home-carousel {
        position: relative;
        width: 100%;
        margin-bottom: 1.75rem;
        overflow: hidden;
        border-radius: 16px;
    }
    .home-carousel-track {
        display: flex;
        width: 100%;
        transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .home-carousel-slide {
        flex: 0 0 100%;
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        background: #fff;
        border: 1px solid var(--border, #d5dce3);
        border-radius: 16px;
        padding: 1.5rem;
        box-shadow: 0 2px 8px rgba(16, 42, 67, 0.04);
    }
    .home-carousel-nav {
        display: flex; align-items: center; gap: 0.5rem;
        margin-top: 0.75rem;
    }
    .home-carousel-dot {
        width: 8px; height: 8px; border-radius: 50%;
        background: #cbd5e1; border: 0; cursor: pointer;
        transition: background .2s, transform .2s;
        padding: 0;
    }
    .home-carousel-dot.is-active { background: var(--signal, #0b6e99); transform: scale(1.3); }
    .home-carousel-arrow {
        padding: 0.35rem 0.7rem; border: 1px solid #cbd5e1; background: #fff;
        border-radius: 8px; cursor: pointer; font-size: 1rem; color: var(--ink);
        transition: background .15s;
    }
    .home-carousel-arrow:hover { background: #f1f5f9; }

    /* Search Box */
    .home-search {
        display: flex; align-items: center; gap: 0.5rem;
        margin-left: auto;
        position: relative;
    }
    .home-search-input {
        font-family: var(--font-ui);
        font-size: 0.85rem;
        padding: 0.5rem 0.9rem 0.5rem 2.2rem;
        border: 1px solid #cbd5e1;
        border-radius: 999px;
        background: #f8fafc;
        color: var(--ink);
        width: 220px;
        transition: border-color .2s, box-shadow .2s, width .2s;
    }
    .home-search-input:focus {
        outline: 0;
        border-color: var(--signal, #0b6e99);
        box-shadow: 0 0 0 3px rgba(11,110,153,.12);
        width: 280px;
        background: #fff;
    }
    .home-search-icon {
        position: absolute; left: 0.75rem; top: 50%; transform: translateY(-50%);
        color: #94a3b8; pointer-events: none;
    }

    /* Countdown badge */
    .home-countdown {
        display: inline-flex; align-items: center; gap: 0.3rem;
        font-size: 0.72rem; font-weight: 800;
        padding: 0.2rem 0.55rem; border-radius: 999px;
        background: #fef3c7; color: #92400e; border: 1px solid #fde68a;
    }
    .home-countdown.is-today { background: #fef2f2; color: #b91c1c; border-color: #fecaca; }
    .home-countdown.is-past { background: #f1f5f9; color: #64748b; border-color: #e2e8f0; }

    /* Modal detail */
    .home-modal-overlay {
        position: fixed; inset: 0; z-index: 100;
        background: rgba(15,23,42,.55);
        display: flex; align-items: center; justify-content: center;
        padding: 1rem;
        backdrop-filter: blur(2px);
    }
    .home-modal {
        background: #fff; border-radius: 16px;
        max-width: 640px; width: 100%; max-height: 85vh;
        overflow-y: auto;
        box-shadow: 0 28px 70px rgba(15,23,42,.28);
        animation: homeModalIn .25s cubic-bezier(.16,1,.3,1);
    }
    @keyframes homeModalIn {
        from { opacity: 0; transform: translateY(20px) scale(.97); }
        to { opacity: 1; transform: translateY(0) scale(1); }
    }
    .home-modal-head {
        padding: 1.25rem 1.5rem;
        border-bottom: 1px solid #e2e8f0;
        display: flex; justify-content: space-between; align-items: flex-start;
        gap: 1rem;
    }
    .home-modal-body { padding: 1.25rem 1.5rem; }
    .home-modal-foot {
        padding: 1rem 1.5rem;
        border-top: 1px solid #e2e8f0;
        display: flex; gap: 0.6rem; flex-wrap: wrap;
        background: #f8fafc; border-radius: 0 0 16px 16px;
    }
    .home-modal-close {
        border: 0; background: #f1f5f9; border-radius: 8px;
        width: 32px; height: 32px; font-size: 1.2rem; cursor: pointer;
        color: #64748b; transition: background .15s;
        display: grid; place-items: center;
    }
    .home-modal-close:hover { background: #e2e8f0; }

    /* Scroll reveal animation */
    .home-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 24px rgba(16,42,67,.09);
        border-color: #cbd5e1;
    }

    /* News Cards Grid */
    .home-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 1.35rem;
    }
    .home-card {
        display: flex;
        flex-direction: column;
        background: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: 16px;
        padding: 1.35rem;
        text-decoration: none;
        color: inherit;
        box-shadow: 0 2px 8px rgba(16, 42, 67, 0.04);
        transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1),
                    box-shadow 0.2s ease,
                    border-color 0.2s ease;
        position: relative;
    }
    .home-card:hover .home-card-title {
        color: var(--signal, #0b6e99);
    }
    .home-card-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
        flex-wrap: wrap;
        margin-bottom: 0.85rem;
    }
    .home-card-badge {
        font-size: 0.72rem;
        font-weight: 750;
        letter-spacing: 0.02em;
        padding: 0.25rem 0.6rem;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        gap: 0.3rem;
        border: 1px solid transparent;
    }
    .home-card-date {
        font-size: 0.76rem;
        font-weight: 600;
        color: #64748b;
    }
    .home-card-title {
        font-family: var(--font-brand);
        font-size: 1.15rem;
        font-weight: 650;
        letter-spacing: -0.015em;
        line-height: 1.35;
        color: var(--ink);
        margin: 0 0 0.55rem;
        transition: color 0.18s ease;
    }
    .home-card-summary {
        font-size: 0.88rem;
        color: #475569;
        line-height: 1.55;
        margin: 0 0 1.1rem;
        flex: 1;
    }
    .home-card-foot {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 0.65rem;
        padding-top: 0.85rem;
        border-top: 1px solid #f1f5f9;
        margin-top: auto;
        flex-wrap: wrap;
    }
    .home-card-attach {
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
        font-size: 0.76rem;
        font-weight: 700;
        color: #0369a1;
        background: #f0f9ff;
        border: 1px solid #bae6fd;
        padding: 0.22rem 0.55rem;
        border-radius: 6px;
    }
    .home-card-more {
        font-size: 0.82rem;
        font-weight: 750;
        color: var(--signal, #0b6e99);
        display: inline-flex;
        align-items: center;
        gap: 0.25rem;
        margin-left: auto;
    }
    .home-card:hover .home-card-more {
        text-decoration: underline;
    }
    .home-feed-empty {
        padding: 3rem 1rem;
        text-align: center;
        color: var(--text-muted);
        font-size: 0.95rem;
        background: #ffffff;
        border-radius: 16px;
        border: 1px dashed #cbd5e1;
    }

    .home-slideshow {
        position: relative;
        z-index: 0;
        width: 100%;
        background: #0E2438;
        overflow: hidden;
        isolation: isolate;
    }
    .home-slideshow-frame {
        position: relative;
        width: 100%;
        aspect-ratio: 21 / 9;
        max-height: min(56vh, 560px);
        min-height: 220px;
        margin: 0 auto;
        overflow: hidden;
        touch-action: pan-y;
        user-select: none;
        -webkit-user-select: none;
    }
    .home-slideshow-slide {
        position: absolute;
        inset: 0;
        opacity: 0;
        transition: opacity 0.7s ease;
        pointer-events: none;
    }
    .home-slideshow-slide.is-active {
        opacity: 1;
        pointer-events: auto;
        z-index: 1;
    }
    .home-slideshow-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }
    .home-slideshow-fade {
        position: absolute;
        inset: auto 0 0;
        height: 42%;
        z-index: 2;
        background: linear-gradient(to top, rgba(14, 36, 56, 0.72), transparent);
        pointer-events: none;
    }
    .home-slideshow-caption {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 2.15rem;
        z-index: 3;
        padding: 0 1.5rem 0;
        max-width: 1280px;
        margin: 0 auto;
        color: #fff;
        font-size: clamp(0.9rem, 1.6vw, 1.05rem);
        font-weight: 600;
        line-height: 1.4;
        text-shadow: 0 1px 8px rgba(0,0,0,0.35);
    }
    .home-slideshow-nav {
        position: absolute;
        top: 50%;
        z-index: 4;
        transform: translateY(-50%);
        width: 2.5rem;
        height: 2.5rem;
        border-radius: 999px;
        border: 1px solid rgba(255,255,255,0.35);
        background: rgba(14, 36, 56, 0.45);
        color: #fff;
        display: grid;
        place-items: center;
        cursor: pointer;
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        transition: background 0.2s ease, border-color 0.2s ease;
    }
    .home-slideshow-nav:hover,
    .home-slideshow-nav:focus-visible {
        background: rgba(14, 36, 56, 0.72);
        border-color: rgba(255,255,255,0.65);
        outline: none;
    }
    .home-slideshow-nav--prev { left: 0.75rem; }
    .home-slideshow-nav--next { right: 0.75rem; }
    .home-slideshow-dots {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0.7rem;
        z-index: 4;
        display: flex;
        justify-content: center;
        gap: 0.45rem;
        padding: 0 4rem;
        pointer-events: none;
    }
    .home-slideshow-dots button {
        pointer-events: auto;
        width: 0.55rem;
        height: 0.55rem;
        border-radius: 999px;
        border: 0;
        padding: 0;
        background: rgba(255,255,255,0.4);
        cursor: pointer;
        transition: width 0.2s ease, background 0.2s ease;
    }
    .home-slideshow-dots button.is-active {
        width: 1.35rem;
        background: #fff;
    }

    @keyframes home-rise {
        from { opacity: 0; transform: translateY(12px); }
        to { opacity: 1; transform: none; }
    }
    @keyframes home-glow {
        from { opacity: 0.85; }
        to { opacity: 1; }
    }
    @keyframes home-sheen {
        0%, 100% { transform: translateX(0) skewX(-12deg); opacity: 0; }
        40% { opacity: 0.55; }
        70% { transform: translateX(160%) skewX(-12deg); opacity: 0; }
    }

    @media (max-width: 720px) {
        .home-hero-inner { padding: 1.1rem 1.15rem 2.25rem; }
        .home-brand { max-width: none; }
        .home-cta {
            display: flex;
            flex-direction: column;
            align-items: stretch;
            width: 100%;
            gap: 0.55rem;
        }
        .home-cta .btn {
            width: 100%;
            text-align: center;
            justify-content: center;
        }
        .home-band-inner { padding: 2.1rem 1.15rem 3rem; }
        .home-slideshow-frame {
            aspect-ratio: 4 / 3;
            max-height: min(48vh, 420px);
            min-height: 200px;
        }
        .home-slideshow-nav {
            width: 2.15rem;
            height: 2.15rem;
        }
        .home-slideshow-nav--prev { left: 0.45rem; }
        .home-slideshow-nav--next { right: 0.45rem; }
        .home-slideshow-caption {
            padding: 0 1rem;
            font-size: 0.88rem;
            bottom: 2rem;
        }
        .home-slideshow-dots { padding: 0 3.25rem; }
    }

    @media (prefers-reduced-motion: reduce) {
        .home-brand, .home-headline, .home-support, .home-cta,
        .home-feed-item, .home-hero::before, .home-hero-sheen {
            animation: none !important;
        }
        .home-slideshow-slide { transition: none; }
        .home-cta .btn:hover { transform: none; }
    }
