/* =========================================================
   SONKALEEGM
   MODERN CORPORATE DESIGN
========================================================= */


/* =========================================================
   VARIABLES
========================================================= */

:root {

    --dark: #06111f;
    --dark-2: #0a1a2d;
    --dark-3: #0d223a;

    --blue: #2869d8;
    --blue-light: #5790ed;

    --white: #ffffff;

    --text: #15263a;
    --text-soft: #66778a;

    --background: #f6f8fb;

    --border: #e4e9ef;

    --green: #4dcc8c;

    --shadow:
        0 20px 60px rgba(13, 35, 63, 0.08);

}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: var(--text);

    background: var(--white);

    overflow-x: hidden;

}


button,
a {
    font-family: inherit;
}


button {
    border: none;
}


a {
    color: inherit;
    text-decoration: none;
}


.container {

    width:
        min(
            1180px,
            calc(100% - 48px)
        );

    margin: 0 auto;

}


/* =========================================================
   HEADER
========================================================= */

.header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    height: 78px;

    z-index: 1000;

    background:
        rgba(6, 17, 31, 0.82);

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(18px);

    transition: 0.3s ease;

}


.header.scrolled {

    background:
        rgba(6, 17, 31, 0.97);

    box-shadow:
        0 10px 40px
        rgba(0, 0, 0, 0.18);

}


.header-container {

    height: 100%;

    display: flex;

    align-items: center;

    gap: 35px;

}


/* =========================================================
   LOGO
========================================================= */

.logo-area {

    display: flex;

    align-items: center;

    gap: 12px;

    flex-shrink: 0;

}


.logo-box {

    width: 47px;
    height: 47px;

    overflow: hidden;

    border-radius: 50%;

    background: white;

    border:
        1px solid
        rgba(255,255,255,0.25);

    box-shadow:
        0 4px 20px
        rgba(0,0,0,0.15);

}


.logo-box img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

}


.logo-text strong {

    display: block;

    color: white;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: -0.02em;

}


.logo-text span {

    display: block;

    margin-top: 3px;

    color:
        rgba(255,255,255,0.48);

    font-size: 9px;

}


/* =========================================================
   NAV
========================================================= */

.navigation {

    display: flex;

    align-items: center;

    gap: 30px;

    margin-left: auto;

}


.nav-link {

    position: relative;

    color:
        rgba(255,255,255,0.55);

    font-size: 11px;

    font-weight: 600;

    transition: 0.2s;

}


.nav-link:hover,
.nav-link.active {

    color: white;

}


.nav-link.active::after {

    content: "";

    position: absolute;

    left: 0;
    right: 0;

    bottom: -11px;

    height: 2px;

    border-radius: 5px;

    background:
        var(--blue-light);

}


/* =========================================================
   DISCORD BUTTON
========================================================= */

.discord-button {

    display: flex;

    align-items: center;

    gap: 9px;

    padding: 10px 15px;

    color: white;

    cursor: pointer;

    border-radius: 10px;

    border:
        1px solid
        rgba(255,255,255,0.12);

    background:
        rgba(255,255,255,0.07);

    font-size: 10px;

    font-weight: 700;

    transition: 0.2s;

}


.discord-button:hover {

    background:
        rgba(255,255,255,0.13);

    transform:
        translateY(-1px);

}


.discord-symbol {

    width: 22px;
    height: 22px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 7px;

    color: white;

    background: #5369df;

    font-size: 9px;

    font-weight: 800;

}


/* =========================================================
   MOBILE BUTTON
========================================================= */

.mobile-menu-button {

    display: none;

    width: 42px;
    height: 42px;

    margin-left: auto;

    cursor: pointer;

    border-radius: 10px;

    background:
        rgba(255,255,255,0.07);

}


.mobile-menu-button span {

    display: block;

    width: 17px;
    height: 2px;

    margin: 4px auto;

    border-radius: 5px;

    background: white;

}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu {

    position: fixed;

    top: 88px;

    left: 15px;
    right: 15px;

    z-index: 999;

    display: none;

    padding: 12px;

    border-radius: 17px;

    background:
        rgba(6,17,31,0.98);

    border:
        1px solid
        rgba(255,255,255,0.08);

    box-shadow:
        0 30px 60px
        rgba(0,0,0,0.3);

}


.mobile-menu.show {

    display: block;

}


.mobile-menu a,
.mobile-discord {

    display: block;

    width: 100%;

    padding: 13px;

    text-align: left;

    color:
        rgba(255,255,255,0.7);

    border-radius: 9px;

    background: transparent;

    font-size: 11px;

    cursor: pointer;

}


.mobile-menu a:hover {

    color: white;

    background:
        rgba(255,255,255,0.06);

}


.mobile-discord {

    margin-top: 5px;

    text-align: center;

    color: white;

    background:
        var(--blue);

}


/* =========================================================
   HERO
========================================================= */

.hero {

    position: relative;

    min-height: 820px;

    display: flex;

    align-items: center;

    overflow: hidden;

    color: white;

    background:

        radial-gradient(
            circle at 80% 20%,
            rgba(43,103,215,0.18),
            transparent 32%
        ),

        linear-gradient(
            135deg,
            #06111f 0%,
            #091a2e 55%,
            #06111f 100%
        );

}


.hero-background {

    position: absolute;

    inset: 0;

    pointer-events: none;

}


.hero-light {

    position: absolute;

    border-radius: 50%;

    filter: blur(90px);

}


.light-one {

    width: 450px;
    height: 450px;

    right: -180px;
    top: 100px;

    background:
        rgba(42,105,220,0.13);

}


.light-two {

    width: 300px;
    height: 300px;

    left: -150px;
    bottom: -100px;

    background:
        rgba(27,78,151,0.12);

}


.hero-container {

    position: relative;

    z-index: 2;

    width:
        min(
            1180px,
            calc(100% - 48px)
        );

    margin: 0 auto;

    padding-top: 65px;

    display: grid;

    grid-template-columns:
        1.05fr
        0.95fr;

    align-items: center;

    gap: 80px;

}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {

    max-width: 650px;

}


.hero-label {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 23px;

    padding:
        8px
        11px;

    color:
        #91b5f1;

    border:
        1px solid
        rgba(80,140,230,0.16);

    border-radius: 999px;

    background:
        rgba(66,128,222,0.08);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 0.13em;

}


.status-dot {

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background:
        var(--green);

    box-shadow:
        0 0 0 5px
        rgba(77,204,140,0.09);

}


.separator {

    opacity: 0.4;

}


.hero h1 {

    margin-bottom: 23px;

    color: white;

    font-size:
        clamp(
            48px,
            5.4vw,
            70px
        );

    line-height: 1.02;

    letter-spacing: -0.055em;

    font-weight: 800;

}


.hero h1 span {

    display: block;

    color:
        #82aaf2;

}


.hero-description {

    max-width: 575px;

    color:
        #94a7bd;

    font-size: 14px;

    line-height: 1.8;

}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 30px;

}


.primary-button,
.secondary-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 20px;

    min-height: 45px;

    padding:
        0 16px;

    border-radius: 10px;

    font-size: 10px;

    font-weight: 800;

    cursor: pointer;

    transition: 0.2s;

}


.primary-button {

    color: white;

    background:
        var(--blue);

    box-shadow:
        0 12px 30px
        rgba(40,105,216,0.2);

}


.primary-button:hover {

    background:
        #3678e2;

    transform:
        translateY(-2px);

}


.secondary-button {

    color: white;

    border:
        1px solid
        rgba(255,255,255,0.13);

    background:
        rgba(255,255,255,0.045);

}


.secondary-button:hover {

    background:
        rgba(255,255,255,0.09);

    transform:
        translateY(-2px);

}


/* =========================================================
   SECURITY
========================================================= */

.security-info {

    display: flex;

    align-items: center;

    gap: 11px;

    margin-top: 25px;

}


.security-icon {

    width: 28px;
    height: 28px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 8px;

    color:
        #70d69f;

    background:
        rgba(77,204,140,0.09);

    font-size: 12px;

}


.security-info strong {

    display: block;

    color:
        #dbe5ef;

    font-size: 10px;

}


.security-info span {

    display: block;

    margin-top: 3px;

    color:
        #667b92;

    font-size: 9px;

}


/* =========================================================
   PORTAL CARD
========================================================= */

.portal-card {

    position: relative;

    min-height: 395px;

    overflow: hidden;

    border:
        1px solid
        rgba(255,255,255,0.1);

    border-radius: 25px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.09),
            rgba(255,255,255,0.025)
        );

    box-shadow:
        0 35px 100px
        rgba(0,0,0,0.28);

    backdrop-filter: blur(15px);

}


.portal-card::before {

    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    top: -200px;
    right: -120px;

    border-radius: 50%;

    background:
        rgba(43,106,218,0.16);

    filter: blur(45px);

}


/* WATERMARK */

.portal-watermark {

    position: absolute;

    width: 430px;
    height: 430px;

    right: -180px;
    bottom: -210px;

    object-fit: contain;

    opacity: 0.035;

    filter:
        grayscale(1)
        brightness(2);

}


.portal-card-content {

    position: relative;

    z-index: 2;

    padding: 26px;

}


/* TOP */

.portal-top {

    display: flex;

    align-items: flex-start;

    justify-content: space-between;

}


.portal-small-title {

    display: block;

    margin-bottom: 5px;

    color:
        #7895bd;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 0.16em;

}


.portal-top h2 {

    color: white;

    font-size: 18px;

}


.active-status {

    display: flex;

    align-items: center;

    gap: 6px;

    padding:
        6px
        9px;

    color:
        #82d8aa;

    border-radius: 999px;

    background:
        rgba(77,204,140,0.08);

    font-size: 8px;

    font-weight: 800;

}


.active-status span {

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background:
        var(--green);

}


/* PROFILE */

.portal-profile {

    display: flex;

    align-items: center;

    gap: 13px;

    margin-top: 52px;

}


.profile-avatar {

    width: 52px;
    height: 52px;

    overflow: hidden;

    border-radius: 15px;

    background: white;

    border:
        1px solid
        rgba(255,255,255,0.12);

}


.profile-avatar img {

    width: 100%;
    height: 100%;

    object-fit: cover;

}


.profile-information strong {

    display: block;

    color: white;

    font-size: 12px;

}


.profile-information span {

    display: block;

    margin-top: 4px;

    color:
        #71859c;

    font-size: 9px;

}


/* INFORMATION */

.portal-information {

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 11px;

    margin-top: 42px;

}


.information-box {

    padding: 14px;

    border:
        1px solid
        rgba(255,255,255,0.07);

    border-radius: 13px;

    background:
        rgba(255,255,255,0.035);

}


.information-box span {

    display: block;

    margin-bottom: 5px;

    color:
        #6e829a;

    font-size: 8px;

}


.information-box strong {

    color:
        #dce7f5;

    font-size: 11px;

}


/* FOOTER */

.portal-divider {

    height: 1px;

    margin:
        28px 0 15px;

    background:
        rgba(255,255,255,0.07);

}


.portal-footer {

    display: flex;

    justify-content: space-between;

    color:
        #62768d;

    font-size: 8px;

}


/* =========================================================
   QUICK SECTION
========================================================= */

.quick-section {

    padding:
        105px 0;

    background:
        var(--background);

}


.section-heading {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 38px;

}


.section-label {

    display: block;

    margin-bottom: 9px;

    color:
        var(--blue);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 0.18em;

}


.section-heading h2 {

    color:
        var(--text);

    font-size: 32px;

    letter-spacing: -0.04em;

}


.section-heading p {

    max-width: 430px;

    color:
        var(--text-soft);

    font-size: 11px;

    line-height: 1.7;

}


/* CARDS */

.cards {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 15px;

}


.service-card {

    position: relative;

    min-height: 245px;

    overflow: hidden;

    padding: 23px;

    border:
        1px solid
        var(--border);

    border-radius: 18px;

    background:
        white;

    transition:
        0.25s ease;

}


.service-card:hover {

    transform:
        translateY(-5px);

    border-color:
        #d4dfef;

    box-shadow:
        var(--shadow);

}


.card-top {

    display: flex;

    align-items: flex-start;

    justify-content: space-between;

}


.service-icon {

    width: 43px;
    height: 43px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    color:
        var(--blue);

    background:
        #edf4ff;

    font-size: 10px;

    font-weight: 800;

}


.card-arrow {

    color:
        #a2adba;

    font-size: 15px;

}


.card-content {

    margin-top: 48px;

}


.card-content h3 {

    margin-bottom: 9px;

    color:
        var(--text);

    font-size: 16px;

}


.card-content p {

    max-width: 300px;

    color:
        var(--text-soft);

    font-size: 10px;

    line-height: 1.75;

}


.card-number {

    position: absolute;

    right: 20px;
    bottom: 18px;

    color:
        #edf0f4;

    font-size: 34px;

    font-weight: 800;

}


/* =========================================================
   ABOUT
========================================================= */

.about-section {

    padding:
        120px 0;

    background:
        white;

}


.about-container {

    display: grid;

    grid-template-columns:
        0.75fr
        1.25fr;

    gap: 110px;

}


.about-title h2 {

    margin-top: 15px;

    color:
        var(--text);

    font-size: 47px;

    line-height: 1.02;

    letter-spacing: -0.055em;

}


.about-description {

    max-width: 680px;

    color:
        #4e6073;

    font-size: 15px;

    line-height: 1.9;

}


.about-line {

    width: 100%;

    height: 1px;

    margin:
        35px 0;

    background:
        var(--border);

}


.about-item {

    display: grid;

    grid-template-columns:
        45px
        1fr;

    gap: 15px;

    margin-bottom: 28px;

}


.about-item > span {

    color:
        #94a4b7;

    font-size: 9px;

    font-weight: 800;

}


.about-item h3 {

    color:
        var(--text);

    font-size: 13px;

}


.about-item p {

    max-width: 580px;

    margin-top: 6px;

    color:
        var(--text-soft);

    font-size: 10px;

    line-height: 1.75;

}


/* =========================================================
   CTA
========================================================= */

.cta-section {

    padding:
        70px 0
        100px;

    background:
        white;

}


.cta {

    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;

    gap: 25px;

    padding:
        45px 50px;

    border-radius: 24px;

    background:

        radial-gradient(
            circle at 80% 20%,
            rgba(55,121,230,0.2),
            transparent 30%
        ),

        linear-gradient(
            135deg,
            #071527,
            #0d233c
        );

}


.cta-logo {

    width: 72px;
    height: 72px;

    flex-shrink: 0;

    overflow: hidden;

    border-radius: 50%;

    background: white;

}


.cta-logo img {

    width: 100%;
    height: 100%;

    object-fit: cover;

}


.cta-content {

    flex: 1;

}


.cta-content h2 {

    color: white;

    font-size: 31px;

    line-height: 1.1;

    letter-spacing: -0.04em;

}


.cta-content p {

    margin-top: 9px;

    color:
        #8da2b9;

    font-size: 10px;

    line-height: 1.7;

}


.cta-button {

    display: flex;

    align-items: center;

    gap: 18px;

    min-height: 44px;

    padding:
        0 16px;

    flex-shrink: 0;

    cursor: pointer;

    border-radius: 10px;

    color:
        #14263a;

    background:
        white;

    font-size: 10px;

    font-weight: 800;

    transition: 0.2s;

}


.cta-button:hover {

    transform:
        translateY(-2px);

    background:
        #edf2f8;

}


/* =========================================================
   FOOTER
========================================================= */

.footer {

    padding:
        25px 0;

    border-top:
        1px solid
        var(--border);

    background:
        white;

}


.footer-container {

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.footer-brand {

    display: flex;

    align-items: center;

    gap: 10px;

}


.footer-logo {

    width: 38px;
    height: 38px;

    overflow: hidden;

    border-radius: 50%;

}


.footer-logo img {

    width: 100%;
    height: 100%;

    object-fit: cover;

}


.footer-brand strong {

    display: block;

    color:
        var(--text);

    font-size: 11px;

}


.footer-brand span {

    display: block;

    margin-top: 3px;

    color:
        #8a97a6;

    font-size: 8px;

}


.copyright {

    color:
        #8995a4;

    font-size: 9px;

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {


    .navigation {

        display: none;

    }


    .discord-button {

        display: none;

    }


    .mobile-menu-button {

        display: block;

    }


    .hero {

        padding:
            130px 0
            75px;

    }


    .hero-container {

        grid-template-columns:
            1fr;

        gap: 55px;

    }


    .portal-card {

        max-width: 620px;

    }


    .about-container {

        grid-template-columns:
            1fr;

        gap: 50px;

    }

}


@media (max-width: 760px) {


    .container {

        width:
            calc(100% - 30px);

    }


    .header-container {

        gap: 10px;

    }


    .logo-text span {

        display: none;

    }


    .hero h1 {

        font-size: 44px;

    }


    .hero-description {

        font-size: 12px;

    }


    .cards {

        grid-template-columns:
            1fr;

    }


    .section-heading {

        display: block;

    }


    .section-heading p {

        margin-top: 12px;

    }


    .about-title h2 {

        font-size: 40px;

    }


    .cta {

        display: block;

        padding:
            35px 25px;

    }


    .cta-content {

        margin-top: 20px;

    }


    .cta-content h2 {

        font-size: 28px;

    }


    .cta-button {

        margin-top: 23px;

    }


    .footer-container {

        align-items: flex-start;

        flex-direction: column;

        gap: 15px;

    }

}


@media (max-width: 480px) {


    .hero h1 {

        font-size: 39px;

    }


    .hero-buttons {

        flex-direction: column;

    }


    .primary-button,
    .secondary-button {

        width: 100%;

    }


    .portal-card {

        min-height: 360px;

    }


}