        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html,
        body {
            font-family: 'Inter', system-ui, sans-serif;
            height: 100vh;
            max-height: 100vh;
            background: var(--body-bg);
            color: var(--text-main);
            transition: background 0.3s ease, color 0.3s ease;
            overflow: hidden;
        }

        /* ===== FULL PAGE LAYOUT ===== */
        .page-wrapper {
            display: flex;
            flex-direction: column;
            height: 100vh;
            max-height: 100vh;
            overflow: hidden;
        }

        /* ===== NAV BAR ===== */
        .top-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px clamp(16px, 3vw, 40px);
            background: #ffffff;
            border-bottom: 1px solid #e2e8f0;
            box-shadow: 0 1px 8px rgba(0,0,0,0.07);
            flex-shrink: 0;
            z-index: 100;
        }

        .nav-brand {
            display: flex;
            align-items: center;
            gap: clamp(8px, 1vw, 14px);
            text-decoration: none;
        }

        .nav-brand i {
            font-size: clamp(20px, 2vw, 28px);
            color: #2563eb;
        }

        .nav-brand-info {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .nav-brand-company {
            font-size: 11px;
            font-weight: 600;
            color: #64748b;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .nav-brand-text {
            font-weight: 800;
            font-size: clamp(14px, 1.3vw, 18px);
            letter-spacing: 0.5px;
            color: #2563eb;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: clamp(10px, 1.5vw, 24px);
        }

        .nav-link {
            color: #374151;
            text-decoration: none;
            font-size: clamp(12px, 1vw, 14px);
            font-weight: 600;
            transition: color 0.2s ease;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .nav-link:hover {
            color: #2563eb;
        }

        .btn-login {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: clamp(7px, 1vh, 10px) clamp(14px, 1.5vw, 22px);
            background: #2563eb;
            color: #ffffff;
            border-radius: 8px;
            font-weight: 700;
            font-size: clamp(12px, 0.9vw, 14px);
            text-decoration: none;
            transition: all 0.2s ease;
            box-shadow: 0 3px 12px rgba(37, 99, 235, 0.3);
            white-space: nowrap;
        }

        .btn-login:hover {
            background: #1d4ed8;
            transform: translateY(-1px);
            box-shadow: 0 5px 16px rgba(37, 99, 235, 0.4);
            color: #ffffff;
        }

        /* ===== MAIN CONTENT - Fills remaining space ===== */
        .main-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            min-height: 0;
            padding: clamp(8px, 1.5vh, 20px) clamp(12px, 2vw, 20px);
            gap: clamp(8px, 1.5vh, 20px);
        }

        /* ===== HERO ===== */
        .hero {
            text-align: center;
            flex-shrink: 1;
            min-height: 0;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: clamp(6px, 1vh, 10px) clamp(14px, 2vw, 24px);
            border-radius: 50px;
            background: rgba(76, 201, 240, 0.1);
            border: 1px solid rgba(76, 201, 240, 0.25);
            color: var(--primary);
            font-size: clamp(13px, 1.2vw, 16px);
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: clamp(6px, 1vh, 16px);
            animation: fadeInDown 0.6s ease both;
        }

        .hero h1 {
            font-size: clamp(20px, 3.5vw, 48px);
            font-weight: 900;
            letter-spacing: -1.5px;
            line-height: 1.1;
            margin-bottom: clamp(6px, 1vh, 14px);
            animation: fadeInUp 0.7s ease 0.1s both;
        }

        .hero h1 span {
            color: #2563eb;
        }

        .hero-desc {
            font-size: clamp(11px, 1.1vw, 16px);
            color: var(--text-muted);
            max-width: 560px;
            margin: 0 auto;
            line-height: 1.5;
            font-weight: 400;
            animation: fadeInUp 0.7s ease 0.2s both;
        }

        /* ===== REPORT CARDS ===== */
        .report-section {
            width: 100%;
            max-width: 1100px;
            flex-shrink: 1;
            min-height: 0;
        }

        .section-label {
            text-align: center;
            font-size: clamp(9px, 0.8vw, 12px);
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-bottom: clamp(8px, 1.2vh, 24px);
            opacity: 0.7;
        }

        .report-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: clamp(10px, 1.5vw, 24px);
            animation: fadeInUp 0.8s ease 0.3s both;
        }

        .report-card {
            background: var(--bg-card);
            -webkit-backdrop-filter: blur(16px);
            backdrop-filter: blur(16px);
            border: 1px solid var(--border-glass);
            border-radius: clamp(12px, 1.2vw, 20px);
            padding: clamp(14px, 2vh, 32px) clamp(12px, 1.5vw, 28px);
            text-decoration: none;
            color: var(--text-main);
            display: flex;
            flex-direction: column;
            gap: clamp(6px, 1vh, 14px);
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .report-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            border-radius: 20px 20px 0 0;
            transition: height 0.3s ease;
        }

        .report-card::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 20px;
            opacity: 0;
            transition: opacity 0.35s ease;
        }

        .report-card:hover {
            transform: translateY(-6px);
            border-color: var(--border-glass-hover);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
            color: var(--text-main);
        }

        .report-card:hover::before {
            height: 4px;
        }

        .report-card:hover::after {
            opacity: 1;
        }

        /* Hazard card */
        .card-hazard::before {
            background: linear-gradient(90deg, var(--accent-hazard), #b5179e);
        }

        .card-hazard:hover::after {
            background: radial-gradient(ellipse at top, rgba(247, 37, 133, 0.05) 0%, transparent 70%);
        }

        .card-hazard .card-icon-wrap {
            background: rgba(247, 37, 133, 0.12);
            color: var(--accent-hazard);
        }

        .card-hazard .card-arrow {
            color: var(--accent-hazard);
        }

        .card-hazard:hover {
            box-shadow: 0 20px 60px rgba(247, 37, 133, 0.2);
        }

        /* Near Miss card */
        .card-nearmiss::before {
            background: linear-gradient(90deg, var(--accent-nearmiss), #f3722c);
        }

        .card-nearmiss:hover::after {
            background: radial-gradient(ellipse at top, rgba(248, 150, 30, 0.05) 0%, transparent 70%);
        }

        .card-nearmiss .card-icon-wrap {
            background: rgba(248, 150, 30, 0.12);
            color: var(--accent-nearmiss);
        }

        .card-nearmiss .card-arrow {
            color: var(--accent-nearmiss);
        }

        .card-nearmiss:hover {
            box-shadow: 0 20px 60px rgba(248, 150, 30, 0.2);
        }

        /* Incident card */
        .card-incident::before {
            background: linear-gradient(90deg, var(--accent-incident), #e63946);
        }

        .card-incident:hover::after {
            background: radial-gradient(ellipse at top, rgba(249, 65, 68, 0.05) 0%, transparent 70%);
        }

        .card-incident .card-icon-wrap {
            background: rgba(249, 65, 68, 0.12);
            color: var(--accent-incident);
        }

        .card-incident .card-arrow {
            color: var(--accent-incident);
        }

        .card-incident:hover {
            box-shadow: 0 20px 60px rgba(249, 65, 68, 0.2);
        }

        .card-icon-wrap {
            width: clamp(36px, 3.5vw, 56px);
            height: clamp(36px, 3.5vw, 56px);
            border-radius: clamp(10px, 1vw, 16px);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: clamp(16px, 1.5vw, 24px);
            flex-shrink: 0;
        }

        .card-content {
            flex: 1;
            min-height: 0;
        }

        .card-title {
            font-size: clamp(13px, 1.2vw, 19px);
            font-weight: 800;
            margin-bottom: clamp(4px, 0.5vh, 8px);
            letter-spacing: -0.3px;
        }

        .card-desc {
            font-size: clamp(10px, 0.85vw, 13px);
            color: var(--text-muted);
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .card-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: clamp(2px, 0.3vh, 4px);
            padding-top: clamp(6px, 0.8vh, 14px);
            border-top: 1px solid var(--border-glass);
        }

        .card-cta {
            font-size: clamp(10px, 0.85vw, 13px);
            font-weight: 700;
            letter-spacing: 0.3px;
        }

        .card-arrow {
            font-size: clamp(10px, 0.8vw, 14px);
            transition: transform 0.3s ease;
        }

        .report-card:hover .card-arrow {
            transform: translateX(5px);
        }

        /* ===== INFO STRIP ===== */
        .info-strip {
            width: 100%;
            max-width: 1100px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: clamp(8px, 1vw, 16px);
            animation: fadeInUp 0.8s ease 0.5s both;
            flex-shrink: 0;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: clamp(8px, 0.8vw, 14px);
            padding: clamp(8px, 1vh, 16px) clamp(10px, 1vw, 18px);
            background: var(--bg-card);
            border: 1px solid var(--border-glass);
            border-radius: clamp(8px, 0.8vw, 12px);
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
        }

        .info-icon {
            font-size: clamp(14px, 1.2vw, 20px);
            color: var(--primary);
            flex-shrink: 0;
        }

        .info-text strong {
            display: block;
            font-size: clamp(10px, 0.85vw, 13px);
            font-weight: 700;
            margin-bottom: 2px;
        }

        .info-text span {
            font-size: clamp(9px, 0.7vw, 11.5px);
            color: var(--text-muted);
            line-height: 1.4;
        }

        /* ===== FOOTER ===== */
        .page-footer {
            text-align: center;
            padding: clamp(6px, 0.8vh, 14px) clamp(12px, 2vw, 20px);
            border-top: 1px solid var(--border-glass);
            font-size: clamp(9px, 0.7vw, 12px);
            color: var(--text-muted);
            flex-shrink: 0;
        }

        .page-footer a {
            color: var(--primary);
            text-decoration: none;
        }

        .page-footer a:hover {
            text-decoration: underline;
        }

        /* ===== ANIMATIONS ===== */
        @keyframes pulse-glow {
            from {
                text-shadow: 0 0 10px var(--primary-glow);
            }

            to {
                text-shadow: 0 0 25px var(--primary-glow), 0 0 40px var(--primary-glow);
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-16px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ===== RESPONSIVE: Tablet Portrait ===== */
        @media (max-width: 900px) {
            .report-cards {
                grid-template-columns: repeat(3, 1fr);
                gap: 8px;
            }

            .card-desc {
                -webkit-line-clamp: 2;
                line-clamp: 2;
            }
        }

        /* ===== RESPONSIVE: Mobile Landscape / Small Tablets ===== */
        @media (max-width: 700px) {
            .report-cards {
                grid-template-columns: repeat(3, 1fr);
                gap: 6px;
            }

            .info-strip {
                grid-template-columns: repeat(3, 1fr);
                gap: 6px;
            }

            .info-text span {
                display: none;
            }

            .hero-desc {
                display: none;
            }

            .card-desc {
                -webkit-line-clamp: 2;
                line-clamp: 2;
                font-size: 9px;
            }
        }

        /* ===== RESPONSIVE: Very small screens ===== */
        @media (max-width: 480px) {
            .report-cards {
                grid-template-columns: 1fr;
                gap: 6px;
            }

            .report-card {
                flex-direction: row;
                align-items: center;
                padding: 10px 12px;
                gap: 10px;
            }

            .card-icon-wrap {
                width: 36px;
                height: 36px;
                border-radius: 10px;
                font-size: 15px;
            }

            .card-content {
                flex: 1;
            }

            .card-desc {
                display: none;
            }

            .card-footer {
                display: none;
            }

            .card-title {
                font-size: 13px;
                margin-bottom: 0;
            }

            .info-strip {
                grid-template-columns: repeat(3, 1fr);
                gap: 4px;
            }

            .info-text strong {
                font-size: 9px;
            }

            .info-icon {
                font-size: 12px;
            }

            .info-item {
                padding: 6px 8px;
                gap: 6px;
            }

            .hero-badge {
                display: none;
            }
        }

        /* ===== RESPONSIVE: Very short viewports (landscape phones) ===== */
        @media (max-height: 500px) {
            .hero-badge {
                display: none;
            }

            .hero-desc {
                display: none;
            }

            .hero h1 {
                font-size: clamp(16px, 3vw, 28px);
                margin-bottom: 4px;
            }

            .card-desc {
                -webkit-line-clamp: 1;
                line-clamp: 1;
            }

            .info-text span {
                display: none;
            }

            .main-content {
                gap: 6px;
                padding: 4px 12px;
            }
        }

        @media (max-height: 400px) {
            .info-strip {
                display: none;
            }

            .section-label {
                display: none;
            }
        }
