        @font-face {
            font-family: 'Open Sans Regular';
            font-style: normal;
            font-weight: 400;
            src: url('chrome-extension://gkkdmjjodidppndkbkhhknakbeflbomf/fonts/open_sans/open-sans-v18-latin-regular.woff');
        }

        @font-face {
            font-family: 'Open Sans Bold';
            font-style: normal;
            font-weight: 800;
            src: url('chrome-extension://gkkdmjjodidppndkbkhhknakbeflbomf/fonts/open_sans/OpenSans-Bold.woff');
        }

        @font-face {
            font-family: 'Open Sans ExtraBold';
            font-style: normal;
            font-weight: 800;
            src: url('chrome-extension://gkkdmjjodidppndkbkhhknakbeflbomf/fonts/open_sans/open-sans-v18-latin-800.woff');
        }


        body {
            margin: 0;
            padding: 0;
            min-height: 100vh;
            position: relative;
        }

        body::before {
            content: "";
            position: fixed;
            inset: 0;
            background-image: url('../images/bg.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            z-index: -1;
            filter: brightness(0.7) contrast(1.1);
        }

        body::after {
            content: "";
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.3);
            z-index: -1;
            pointer-events: none;
        }

        .landing {
            position: relative;
            min-height: 100vh;
            overflow: hidden;
            background: #07090de5;
            color: #e6e8ef;
            font-family: "Cairo", "Segoe UI", system-ui, -apple-system, sans-serif;
        }

        .bg-glow {
            position: absolute;
            top: -20%;
            left: 50%;
            transform: translateX(-50%);
            width: 900px;
            height: 900px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(99, 102, 241, .25), rgba(56, 189, 248, .08) 40%, transparent 70%);
            filter: blur(20px);
            pointer-events: none;
        }

        .copy-email {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            padding: 8px 12px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .copy-email:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: scale(1.03);
        }

        .copy-email .c-ic {
            font-size: 1.3em;
            transition: transform 0.3s;
        }

        .copy-email:hover .c-ic {
            transform: scale(1.2);
        }

        .wrap {
            position: relative;
            z-index: 1;
            max-width: 1100px;
            margin: 0 auto;
            padding: 28px 22px 60px;
        }

        .top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 48px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            letter-spacing: .5px;
        }

        .logo-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: linear-gradient(135deg, #818cf8, #38bdf8);
            box-shadow: 0 0 14px #818cf8;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 14px;
            border-radius: 999px;
            background: rgba(129, 140, 248, .1);
            border: 1px solid rgba(129, 140, 248, .3);
            color: #c7d0ff;
            font-size: 13px;
        }

        .pulse {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #818cf8;
            box-shadow: 0 0 0 0 rgba(129, 140, 248, .7);
            animation: pulse 1.8s infinite;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(129, 140, 248, .6);
            }

            70% {
                box-shadow: 0 0 0 10px rgba(129, 140, 248, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(129, 140, 248, 0);
            }
        }

        .hero {
            text-align: center;
            padding: 20px 0 40px;
        }

        .eyebrow {
            text-transform: uppercase;
            letter-spacing: 3px;
            font-size: 12px;
            color: #8b93a7;
            margin: 0 0 12px;
        }

        .title {
            font-size: clamp(38px, 6vw, 50px);
            margin: 0 0 14px;
            font-weight: 800;
            line-height: 1.1;
        }

        .grad {
            background: linear-gradient(120deg, #818cf8, #38bdf8, #a78bfa);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .role {
            font-size: clamp(16px, 2vw, 20px);
            color: #c3c9d6;
            margin: 0 0 10px;
        }

        .hl {
            color: #a5b4fc;
            font-weight: 600;
        }

        .lede {
            max-width: 640px;
            margin: 8px auto 32px;
            color: #8b93a7;
            line-height: 1.9;
            font-size: 15px;
        }

        .countdown {
            display: flex;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
            margin: 8px 0 28px;
        }

        .cd-cell {
            min-width: 88px;
            padding: 16px 10px;
            background: rgba(255, 255, 255, .03);
            border: 1px solid rgba(255, 255, 255, .06);
            border-radius: 14px;
            backdrop-filter: blur(6px);
        }

        .cd-val {
            font-size: 30px;
            font-weight: 700;
            background: linear-gradient(180deg, #fff, #a5b4fc);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-variant-numeric: tabular-nums;
        }

        .cd-lbl {
            margin-top: 4px;
            font-size: 12px;
            color: #8b93a7;
        }

        .progress {
            position: relative;
            max-width: 420px;
            margin: 0 auto;
            height: 8px;
            border-radius: 999px;
            background: rgba(255, 255, 255, .06);
            overflow: hidden;
        }

        @keyframes shimmer {
            from {
                width: 60%;
            }

            to {
                width: 70%;
            }
        }

        .progress-lbl {
            position: absolute;
            inset: auto 0 -22px;
            text-align: center;
            font-size: 12px;
            color: #8b93a7;
        }

        .grid {
            display: grid;
            gap: 16px;
            margin: 60px 0 40px;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        }

        .card {
            position: relative;
            padding: 22px;
            background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .02));
            border: 1px solid rgba(255, 255, 255, .07);
            border-radius: 18px;
            transition: transform .25s ease, border-color .25s ease;
        }

        .card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 10%;
            right: 10%;
            height: 1px;
            background-image: linear-gradient(90deg, transparent, #a78bfa9e, #ffffff73, transparent);
        }

        .card:hover {
            transform: translateY(-3px);
            border-color: rgba(129, 140, 248, .35);
        }

        .card h3 {
            margin: 0 0 14px;
            font-size: 15px;
            color: #c7d0ff;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .card h3::before {
            content: "";
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: linear-gradient(135deg, #818cf8, #38bdf8);
        }

        .chips {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .chips li {
            padding: 6px 12px;
            font-size: 13px;
            background: rgba(129, 140, 248, .08);
            border: 1px solid rgba(129, 140, 248, .18);
            border-radius: 999px;
            color: #dbe0f5;
        }

        .list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            gap: 12px;
            font-size: 14px;
            color: #c3c9d6;
        }

        .list li {
            display: flex;
            align-items: baseline;
            gap: 10px;
            line-height: 1.6;
        }

        .dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #38bdf8;
            flex: 0 0 auto;
        }

        .year {
            display: inline-block;
            font-size: 11px;
            color: #8b93a7;
            padding: 2px 8px;
            background: rgba(255, 255, 255, .04);
            border-radius: 6px;
            margin-left: 8px;
        }

        .foot {
            margin-top: 24px;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, .06);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
        }

        .contact {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
        }

        .c-item {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 16px;
            font-size: 13px;
            color: #c3c9d6;
            text-decoration: none;
            background: rgba(255, 255, 255, .03);
            border: 1px solid rgba(255, 255, 255, .07);
            border-radius: 12px;
            transition: all .2s ease;
        }

        .c-item:hover {
            color: #fff;
            border-color: rgba(129, 140, 248, .4);
            background: rgba(129, 140, 248, .08);
        }

        .c-ic {
            color: #818cf8;
        }

        .copy {
            font-size: 12px;
            color: #6b7285;
            margin: 0;
        }