main {
    #containers {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        align-items: center;
        justify-items: center;
        padding: 5.5rem 0 3rem;

        #hro-cont {
            .text-second-solg {
                color: var(--gen-pink-500);
            }

            .text-third-solg {
                color: var(--gen-blue-400);
            }

            >button {
                background: var(--gradient-primary);
                border-radius: 10px;
                padding: 10px;
                display: inline-flex;
                align-items: center;
                box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;

                span {
                    color: #fefefe;
                    margin: 0 5px;
                }

                .bi-arrow-down-circle {
                    position: relative;
                    top: 2px;
                }
            }

            >p {
                margin: 16px 0 32px 0;
            }

            >h1 {
                position: relative;
                margin: 16px 0;
                line-height: 4rem;
                font-size: clamp(2.25rem, 1.5vw + 3.6vw, 3rem);
                max-width: fit-content;
                padding-right: 20px;
                width: fit-content;
                font-weight: 900;
                white-space: nowrap;
                overflow: hidden;
                text-shadow: var(--gen-text-shadow) 0px 3px 2px;
            }

            >h1::after {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                bottom: 0;
                right: 0;

                background-color: var(--gen-body-bg);
                border-left: 5px solid var(--gen-mouse);
                will-change: transform;
                animation:
                    typing 10.3s steps(50) infinite,
                    blink 0.75s step-end infinite;
            }

            >h2 {
                font-size: clamp(1.25rem, 0.5vw + 1.5vw, 1.5rem);
            }
        }

        #hro-media {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;

            .hro-orbit-system {
                position: relative;
                width: 100%;
                max-width: 500px;
                aspect-ratio: 1/1;
                display: flex;
                justify-content: center;
                align-items: center;
                animation: system-float 6s ease-in-out infinite;
            }

            .hro-orbit {
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                border-radius: 50%;
                border: 1px dashed rgba(160, 174, 192, 0.3);
                border-width: 1.5px;
                pointer-events: none;
            }

            .orbit-inner {
                width: 75%;
                height: 75%;
                animation: orbit-rotate 25s linear infinite reverse;
            }

            .orbit-outer {
                width: 100%;
                height: 100%;
                animation: orbit-rotate 40s linear infinite;
            }

            .hro-char-container {
                position: relative;
                z-index: 10;
                width: 50%;
                height: auto;

                img {
                    width: 100%;
                    height: auto;
                    display: block;
                    filter: drop-shadow(0 0 30px rgba(236, 72, 153, 0.4));
                    animation: char-float 3s ease-in-out infinite;
                }
            }

            .orbit-dot {
                position: absolute;
                width: 14px;
                height: 14px;
                border-radius: 50%;
                filter: blur(2px);
                box-shadow: 0 0 15px 5px currentColor;
                animation: dot-pulse 2s ease-in-out infinite alternate;
            }

            .dot-green {
                background-color: #4ade80;
                color: #4ade80;
                top: 0;
                left: 50%;
                transform: translate(-50%, -50%);
            }

            .dot-yellow {
                background-color: #facc15;
                color: #facc15;
                bottom: 0;
                left: 50%;
                transform: translate(-50%, 50%);
            }

            .dot-blue {
                background-color: #3b82f6;
                color: #3b82f6;
                top: 50%;
                left: 0;
                transform: translate(-50%, -50%);
            }

            .dot-pink {
                background-color: #D66D75;
                color: #D66D75;
                top: 50%;
                right: 0;
                transform: translate(50%, -50%);
            }

            @keyframes orbit-rotate {
                0% {
                    transform: translate(-50%, -50%) rotate(0deg);
                }

                100% {
                    transform: translate(-50%, -50%) rotate(360deg);
                }
            }

            @keyframes system-float {

                0%,
                100% {
                    transform: translateY(0);
                }

                50% {
                    transform: translateY(-10px);
                }
            }

            @keyframes char-float {

                0%,
                100% {
                    transform: translateY(0);
                }

                50% {
                    transform: translateY(-15px);
                }
            }

            @keyframes dot-pulse {
                0% {
                    transform: translate(-50%, -50%) scale(1);
                    opacity: 0.8;
                }

                100% {
                    transform: translate(-50%, -50%) scale(1.4);
                    opacity: 1;
                }
            }

            .dot-yellow {
                animation-name: dot-pulse-yellow;
            }

            .dot-pink {
                animation-name: dot-pulse-pink;
            }

            @keyframes dot-pulse-yellow {
                0% {
                    transform: translate(-50%, 50%) scale(1);
                    opacity: 0.8;
                }

                100% {
                    transform: translate(-50%, 50%) scale(1.4);
                    opacity: 1;
                }
            }

            @keyframes dot-pulse-pink {
                0% {
                    transform: translate(50%, -50%) scale(1);
                    opacity: 0.8;
                }

                100% {
                    transform: translate(50%, -50%) scale(1.4);
                    opacity: 1;
                }
            }
        }
    }

    #achv {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        text-align: center;
        margin: 64px 0;
        scroll-margin-top: 5rem;

        .figr {
            font-size: 37px;
            font-weight: 700;
            background: var(--gradient-primary);
            text-shadow: #ffa387 0px 0px 2rem;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 48px;
            margin-bottom: 8px;
        }
    }

    #purp {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;

        .ic-cad {
            border-radius: 10px;
            width: 33px;
            height: 33px;
        }

        .ic-cad-tn {
            background: #f7b2bece;
        }

        .ic-cad-sm {
            background: #6cb2eb5a;
        }

        .ic-cad-pos {
            position: relative;
            right: -5.5px;
        }

        .bord-cad-tn {
            border: 1px solid #f7b2bd;
        }

        .bord-cad-sm {
            border: 1px solid #6cb2eb5a;
        }

        .card-soft {
            background: var(--gen-purp);
            border-radius: 16px;
            padding: 24px;
            box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 48px -42px;

            h3 {
                display: flex;
                align-items: center;
                font-size: 16px;
                font-weight: inherit;
                margin-bottom: 25px;

                span {
                    display: inline-flex;
                    align-items: center;
                }

                span:first-child {
                    margin-right: 8px;
                }
            }
        }
    }

    #activities {
        .h-act {
            h3 {
                font-size: 1.825rem;
                font-weight: 700;
                margin-bottom: 8px;
            }

            p {
                font-size: 15px;
            }
        }

        .cards {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;

            .act-cad {
                position: relative;
                background: #fff;
                border-radius: 30px;
                box-shadow: 0 20px 40px -28px rgba(0, 0, 0, 0.1);
                overflow: hidden;
                transition: transform 0.3s ease, box-shadow 0.3s ease;
                display: flex;
                flex-direction: column;
                border: none;
                padding: 0;
                cursor: pointer;
            }

            .act-cad:hover {
                transform: translateY(-10px);
                box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.15);
            }

            .act-cad-image {
                position: relative;
                aspect-ratio: 3/2;
                /* height: 280px; */
                width: 100%;
                overflow: hidden;
            }

            .act-cad-image::before {
                content: '';
                position: absolute;
                bottom: 15px;
                left: 50%;
                transform: translateX(-50%);
                width: 44px;
                height: 44px;
                background: rgba(255, 255, 255, 0.25);
                backdrop-filter: blur(8px);
                -webkit-backdrop-filter: blur(8px);
                border: 1px solid rgba(255, 255, 255, 0.5);
                border-radius: 50%;
                z-index: 20;
                background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='white' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M7.776 5.553a.5.5 0 0 1 .448 0l6 3a.5.5 0 1 1-.448.894L8 6.56 2.224 9.447a.5.5 0 1 1-.448-.894z'/%3E%3C/svg%3E");
                background-position: center;
                background-repeat: no-repeat;
                transition: all 0.5s ease;
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
                pointer-events: none;
                animation: arrow-bounce 2s infinite ease-in-out;
            }

            .act-cad:hover .act-cad-image::before {
                opacity: 0;
                transform: translateX(-50%) translateY(-20px);
            }

            .act-cad-image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: transform 0.5s ease;
            }

            .act-cad:hover .act-cad-image img {
                transform: scale(1.05);
            }

            .act-cad-image::after {
                content: '';
                position: absolute;
                inset: 0;
                opacity: 0.9;
                mix-blend-mode: multiply;
            }

            .category-badge {
                position: absolute;
                top: 24px;
                left: 24px;
                background: rgba(255, 255, 255, 0.9);
                color: #0ea5e9;
                padding: 6px 16px;
                border-radius: 20px;
                font-size: 0.8rem;
                font-weight: 700;
                text-transform: uppercase;
                z-index: 10;
                box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            }

            .act-cad-content {
                position: absolute;
                bottom: 0;
                left: 0;
                width: 100%;
                background: rgba(255, 255, 255, 0.85);
                backdrop-filter: blur(12px);
                -webkit-backdrop-filter: blur(12px);
                border-top: 1px solid rgba(255, 255, 255, 0.6);
                padding: 0 32px;
                z-index: 25;
                border-top-left-radius: 30px;
                border-top-right-radius: 30px;
                min-height: 145px;
                display: flex;
                flex-direction: column;
                justify-content: center;
                transform: translateY(100%);
                transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
                opacity: 0;
                box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.05);
            }

            .act-cad:hover .act-cad-content {
                transform: translateY(0);
                opacity: 1;
            }

            .act-cad h3 {
                font-size: 1.5rem;
                font-weight: 800;
                margin: 24px 0 16px 0;
                line-height: 1.3;
                color: #1e293b;
                text-align: center;
            }

            .act-cad .desc-cont {
                font-size: 1rem;
                color: #64748b;
                line-height: 1.6;
                display: -webkit-box;
                -webkit-line-clamp: 3;
                line-clamp: 3;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }

            .act-cad-footer {
                display: flex;
                align-items: center;
                gap: 12px;
                padding-top: 24px;
                border-top: 1px solid #f1f5f9;
            }

            .author-icon {
                width: 48px;
                height: 48px;
                border-radius: 50%;
                overflow: hidden;
                background: #cbd5e1;
            }

            .author-icon img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

            .author-info {
                display: flex;
                flex-direction: column;
                gap: 2px;
                text-align: left;
            }

            .author-name {
                font-weight: 700;
                color: #334155;
                font-size: 0.95rem;
            }

            .author-role {
                font-size: 0.8rem;
                color: #94a3b8;
            }
        }
    }

    #teams {
        .h-tems {
            h3 {
                font-size: 1.825rem;
                font-weight: 700;
                margin-bottom: 8px;
            }

            p {
                font-size: 15px;
            }
        }

        #teams-track {
            padding: 11px 0;
        }

        #info-tems {
            .mems {
                width: 100%;
                height: max-content;
                padding: 24px;
                border-radius: 20px;
                background: #fff5f5;
                background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
                box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
                transition: transform 0.3s ease, box-shadow 0.3s ease;

                &:hover {
                    transform: translateY(-5px);
                }

                .lo-mems {
                    object-fit: cover;
                    border: 4px solid #ffffff;
                    border-radius: 50%;
                    margin-bottom: 16px;
                    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
                }

                h4 {
                    font-size: 20px;
                    margin-bottom: 4px;
                    color: #1e293b;
                }

                .pos-mems {
                    margin-bottom: 12px;
                    color: #ef4444;
                    font-weight: 700;
                    letter-spacing: 0.5px;
                }

                .i-mems {
                    text-align: center;
                    padding-bottom: 24px;
                    border-bottom: 1px solid rgba(239, 68, 68, 0.1);
                }

                .des-mems {
                    font-size: 14px;
                    color: #64748b;
                }

                >.spec-mems {
                    text-align: center;
                    margin-top: 17px;

                    h4 {
                        font-size: 15px;
                        margin: 12px 0 8px 0;
                    }

                    .tag-des-mems {
                        display: inline-block;
                        background: linear-gradient(135deg, #ef4444, #ff8a65);
                        color: #ffffff;
                        border-radius: 20px;
                        padding: 8px 20px;
                        font-size: 0.85rem;
                        font-weight: 600;
                        box-shadow: 0 4px 12px rgba(239, 68, 68, 0.25);
                        transition: all 0.3s ease;
                        text-transform: uppercase;
                    }

                    .tag-des-mems:hover {
                        transform: translateY(-2px);
                        box-shadow: 0 6px 16px rgba(239, 68, 68, 0.35);
                        background: linear-gradient(135deg, #dc2626, #ef4444);
                    }
                }
            }
        }
    }

    #partners {
        .h-partn {
            h3 {
                font-size: 1.825rem;
                font-weight: 700;
                margin-bottom: 8px;

                .text-second-partn {
                    color: var(--gen-blue-400);
                }
            }

            p {
                font-size: 15px;
            }
        }

        #info-partn {
            text-align: center;

            .partns {
                border-radius: 12px;
                transition: border-color 0.3s ease;
                width: 100%;
                border-radius: 12px;
                background: linear-gradient(145deg, #F0F7FF, #ffffff);
                padding: 24px;

                .lo-partns {
                    background: var(--gen-white);
                    object-fit: contain;
                    border: 4px solid #7AB2D3;
                    border-radius: 50%;
                    margin-bottom: 16px;
                }
            }

            h4 {
                font-size: 18px;
                margin-bottom: 8px;
            }

            p {
                font-size: 14px;
            }
        }
    }

    #c-act {
        text-align: center;
        padding: 45px 15px;
        border-radius: 16px;
        background: #F4F5F0;
        color: #334155;

        h2 {
            font-size: 1.875rem;
            font-weight: 700;
            margin-bottom: 16px;
            color: #1e293b;
        }

        p {
            margin-bottom: 32px;
            color: #64748b;
        }

        .m-act {
            width: 100%;
            max-width: 540px;
            height: auto;
            margin: 0 auto;
            background: #ffffff;
            border-radius: 20px;
            box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(0, 0, 0, 0.05);
            padding: 40px;

            >form {
                display: grid;
                gap: 24px;

                .des-e {
                    display: flex;
                    align-items: center;
                    margin-bottom: 8px;

                    span {
                        color: #df6b6b;
                        font-weight: 600;
                        font-size: 14px;

                        svg {
                            position: relative;
                            top: 2.7px;
                            margin-right: 8px;
                        }
                    }
                }

                #fom-e,
                #des-e {
                    display: flex;
                    flex-direction: column;

                    input,
                    textarea {
                        background: #f8fafc;
                        border: 1px solid #e2e8f0;
                        border-radius: 8px;
                        padding: 12px 16px;
                        font-size: 14px;
                        color: #334155;
                        outline: none;
                        transition: all 0.2s ease;
                        box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;

                        &::placeholder {
                            color: #94a3b8;
                        }

                        &:focus {
                            background: #fff;
                            border-color: #df6b6b;
                            box-shadow: 0 0 0 3px rgba(223, 107, 107, 0.15);
                        }
                    }

                    textarea {
                        min-height: 100px;
                        resize: none;
                    }
                }

                button {
                    background: #df6b6b;
                    border: none;
                    border-radius: 12px;
                    padding: 12px 24px;
                    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    gap: 8px;
                    font-size: 14px;
                    font-weight: 500;
                    color: #ffffff;
                    transition: all 0.2s ease;
                    margin-top: 8px;

                    &:hover {
                        transform: translateY(-1px);
                        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
                    }
                }

            }

            #comitm {
                margin-top: 24px;
                text-align: center;

                p {
                    font-size: 13px;
                    margin-bottom: 6px;
                    color: #5f6cafec;
                    font-weight: 500;
                }
            }
        }
    }
}

@media (max-width: 768px) {
    main {
        & #achv {
            grid-template-columns: repeat(2, 1fr);
        }

        & #purp {
            grid-template-columns: repeat(1, 1fr);
        }

        #activities .cards {
            grid-template-columns: repeat(1, 1fr);
        }

        #containers {
            padding-bottom: 2rem;
            grid-template-columns: 1fr;
            gap: 5rem;
        }
    }
}

@keyframes orbit-rotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes system-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes char-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes dot-pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 1;
    }
}

.dot-yellow {
    animation-name: dot-pulse-yellow !important;
}

.dot-pink {
    animation-name: dot-pulse-pink !important;
}

@keyframes dot-pulse-yellow {
    0% {
        transform: translate(-50%, 50%) scale(1);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, 50%) scale(1.4);
        opacity: 1;
    }
}

@keyframes dot-pulse-pink {
    0% {
        transform: translate(50%, -50%) scale(1);
        opacity: 0.8;
    }

    100% {
        transform: translate(50%, -50%) scale(1.4);
        opacity: 1;
    }
}

@keyframes arrow-bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-6px);
    }
}