:root {
    --primary: #087df5;
    --primary-dark: #034ea2;
    --navy: #071936;
    --navy-2: #0b2147;
    --text: #17243b;
    --muted: #6c7890;
    --light: #f5f8fc;
    --white: #ffffff;
    --border: rgba(7, 25, 54, 0.09);
    --shadow: 0 24px 70px rgba(7, 25, 54, 0.10);
    --radius: 24px;
    --container: 1180px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

.container {
    width: min(100% - 40px, var(--container));
    margin-inline: auto;
}

/* HEADER */
.header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    padding: 18px 0;
    transition: 0.3s ease;
}

.header.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 40px rgba(7, 25, 54, 0.08);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 11px;
}

.brand img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    border-radius: 50%;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-text strong {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 21px;
    letter-spacing: 0.5px;
}

.brand-text span {
    margin-top: 5px;
    font-size: 9px;
    color: var(--muted);
    letter-spacing: 0.5px;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 7px;
}

.nav-link {
    padding: 10px 15px;
    color: #4d5b71;
    font-size: 13px;
    font-weight: 600;
    border-radius: 10px;
    transition: 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-cta {
    margin-left: 8px;
    color: var(--white) !important;
    background: var(--navy);
    padding: 12px 18px;
}

.nav-cta:hover {
    background: var(--primary);
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    color: var(--navy);
    font-size: 22px;
    cursor: pointer;
}

/* GENERAL */
.section {
    position: relative;
    padding: 120px 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.eyebrow span {
    width: 24px;
    height: 2px;
    display: block;
    background: var(--primary);
}

.section-heading {
    max-width: 650px;
    margin-bottom: 60px;
}

.section-heading h2 {
    margin-top: 17px;
    font-family: "Plus Jakarta Sans", sans-serif;
    color: var(--navy);
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.04;
    letter-spacing: -2.5px;
}

.section-heading h2 span,
.future-content h2 span,
.contact-content h2 span {
    color: var(--primary);
}

.section-heading.centered {
    margin-inline: auto;
    text-align: center;
}

.section-heading.centered .eyebrow {
    justify-content: center;
}

.section-heading p {
    max-width: 620px;
    margin: 20px auto 0;
    color: var(--muted);
    line-height: 1.8;
}

/* HERO */
.hero {
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding-top: 130px;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 25%, rgba(8, 125, 245, 0.12), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 70px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    margin: 22px 0;
    max-width: 730px;
    font-family: "Plus Jakarta Sans", sans-serif;
    color: var(--navy);
    font-size: clamp(45px, 6vw, 76px);
    line-height: 1.02;
    letter-spacing: -4px;
}

.hero h1 span {
    color: var(--primary);
}

.hero-content > p {
    max-width: 650px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.85;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    min-height: 50px;
    padding: 0 21px;
    border-radius: 13px;
    font-size: 13px;
    font-weight: 700;
    transition: 0.25s ease;
}

.btn-primary {
    color: var(--white);
    background: var(--primary);
    box-shadow: 0 12px 30px rgba(8, 125, 245, 0.22);
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: var(--primary-dark);
}

.btn-secondary {
    border: 1px solid var(--border);
    background: rgba(255,255,255,.7);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    border-color: rgba(8,125,245,.3);
}

.hero-social {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 35px;
}

.hero-social span {
    margin-right: 3px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
}

.hero-social a {
    display: grid;
    place-items: center;
    width: 35px;
    height: 35px;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--navy);
    background: var(--white);
    transition: 0.25s ease;
}

.hero-social a:hover {
    color: var(--white);
    background: var(--primary);
    transform: translateY(-3px);
}

.hero-visual {
    position: relative;
    min-height: 570px;
    display: grid;
    place-items: center;
}

.logo-card {
    position: relative;
    width: min(430px, 80%);
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
    padding: 50px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.8);
    border-radius: 42px;
    background: rgba(255,255,255,.72);
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
    transform: rotate(2deg);
}

.logo-card img {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 330px;
    object-fit: contain;
}

.card-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(8,125,245,.13);
    filter: blur(45px);
}

.logo-card-bottom {
    position: absolute;
    right: 28px;
    bottom: 25px;
    left: 28px;
    display: flex;
    justify-content: space-between;
    color: #748197;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.floating-card {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 17px;
    border: 1px solid rgba(255,255,255,.8);
    border-radius: 16px;
    background: rgba(255,255,255,.86);
    box-shadow: 0 18px 45px rgba(7,25,54,.12);
    backdrop-filter: blur(16px);
}

.floating-card i {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 11px;
    color: var(--white);
    background: var(--primary);
}

.floating-card div {
    display: flex;
    flex-direction: column;
}

.floating-card strong {
    font-size: 12px;
}

.floating-card span {
    margin-top: 3px;
    color: var(--muted);
    font-size: 10px;
}

.floating-card-one {
    left: 0;
    bottom: 110px;
}

.floating-card-two {
    right: 0;
    top: 115px;
}

.scroll-indicator {
    position: absolute;
    bottom: 25px;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    color: #8b97a9;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transform: translateX(-50%);
}

.scroll-indicator i {
    animation: bounce 1.7s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none;
}

.glow-one {
    top: 25%;
    left: -200px;
    width: 400px;
    height: 400px;
    background: rgba(8,125,245,.035);
}

.glow-two {
    right: -150px;
    bottom: 0;
    width: 450px;
    height: 450px;
    background: rgba(0,64,160,.04);
}

/* ABOUT */
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text .lead {
    margin-bottom: 20px;
    color: var(--navy);
    font-size: 21px;
    line-height: 1.6;
}

.about-text p:not(.lead) {
    margin-top: 15px;
    color: var(--muted);
    line-height: 1.85;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
}

.text-link i {
    transition: 0.2s ease;
}

.text-link:hover i {
    transform: translateX(5px);
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.stat-card {
    min-height: 180px;
    padding: 26px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: #fbfcfe;
    transition: .3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 50px rgba(7,25,54,.08);
}

.stat-icon {
    display: grid;
    place-items: center;
    width: 43px;
    height: 43px;
    margin-bottom: 30px;
    border-radius: 13px;
    color: var(--primary);
    background: #eaf4ff;
}

.stat-card strong {
    display: block;
    color: var(--navy);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 18px;
}

.stat-card span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 11px;
}

/* BUSINESS */
.business {
    background: var(--light);
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 17px;
}

.business-card {
    position: relative;
    min-height: 410px;
    padding: 29px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    transition: .3s ease;
}

.business-card::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: rgba(8,125,245,.04);
}

.business-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(7,25,54,.10);
}

.business-number {
    position: absolute;
    top: 24px;
    right: 25px;
    color: #ccd4df;
    font-size: 11px;
    font-weight: 800;
}

.business-icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin-bottom: 27px;
    border-radius: 16px;
    color: var(--white);
    font-size: 20px;
}

.webgen { background: #087df5; }
.beauty { background: #d36d98; }
.news { background: #17243b; }
.esport { background: #6945d8; }

.business-category {
    color: var(--primary);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.business-card h3 {
    margin: 9px 0 14px;
    color: var(--navy);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 23px;
}

.business-card p {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.8;
}

.business-link {
    position: absolute;
    z-index: 2;
    right: 29px;
    bottom: 29px;
    left: 29px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    color: var(--navy);
    font-size: 10px;
    font-weight: 800;
}

.business-link i {
    color: var(--primary);
}

/* FUTURE */
.future {
    background: var(--navy);
}

.future-box {
    position: relative;
    display: grid;
    grid-template-columns: 1fr .8fr;
    min-height: 500px;
    align-items: center;
    overflow: hidden;
    border-radius: 34px;
    background: linear-gradient(135deg, #0b2147, #06152e);
}

.future-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 85% 50%, rgba(8,125,245,.28), transparent 25%),
        radial-gradient(circle at 15% 80%, rgba(8,125,245,.10), transparent 25%);
}

.future-content {
    position: relative;
    z-index: 2;
    padding: 70px;
}

.future-content .eyebrow {
    color: #62b0ff;
}

.future-content h2 {
    margin-top: 18px;
    color: var(--white);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.03;
    letter-spacing: -3px;
}

.future-content p {
    max-width: 570px;
    margin-top: 20px;
    color: #aab9ce;
    line-height: 1.85;
}

.future-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 30px;
}

.future-tags span {
    padding: 10px 13px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 100px;
    color: #c7d3e4;
    background: rgba(255,255,255,.04);
    font-size: 10px;
    font-weight: 700;
}

.future-tags i {
    margin-right: 5px;
    color: #58aaff;
}

.future-visual {
    position: relative;
    min-height: 450px;
    display: grid;
    place-items: center;
}

.future-icon {
    position: relative;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 130px;
    height: 130px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 35px;
    color: var(--white);
    background: rgba(8,125,245,.25);
    box-shadow: 0 0 70px rgba(8,125,245,.25);
    font-size: 45px;
}

.orbit {
    position: absolute;
    border: 1px solid rgba(94,172,255,.18);
    border-radius: 50%;
}

.orbit-one {
    width: 270px;
    height: 270px;
}

.orbit-two {
    width: 390px;
    height: 390px;
}

/* LEADERSHIP */
.leadership {
    padding: 90px 0;
    background: var(--light);
}

.leadership-card {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 30px 35px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--white);
}

.leader-icon {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 62px;
    height: 62px;
    border-radius: 18px;
    color: var(--white);
    background: var(--navy);
    font-size: 23px;
}

.leadership-card span {
    color: var(--primary);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.leadership-card h2 {
    margin-top: 5px;
    color: var(--navy);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 22px;
}

.leadership-card p {
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
}

/* CONTACT */
.contact {
    background: var(--white);
}

.contact-box {
    position: relative;
    display: grid;
    grid-template-columns: 1fr .5fr;
    align-items: center;
    overflow: hidden;
    min-height: 410px;
    padding: 70px;
    border-radius: 34px;
    background: #f3f7fc;
}

.contact-content {
    position: relative;
    z-index: 2;
}

.contact-content h2 {
    margin-top: 18px;
    color: var(--navy);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(40px, 5vw, 61px);
    line-height: 1.05;
    letter-spacing: -2.5px;
}

.contact-content p {
    max-width: 530px;
    margin-top: 18px;
    color: var(--muted);
    line-height: 1.8;
}

.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 27px;
}

.social-button {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 190px;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--white);
    transition: .25s ease;
}

.social-button:hover {
    transform: translateY(-3px);
    border-color: rgba(8,125,245,.25);
    box-shadow: 0 12px 30px rgba(7,25,54,.08);
}

.social-button > i {
    font-size: 22px;
    color: var(--primary);
}

.social-button div {
    display: flex;
    flex-direction: column;
}

.social-button small {
    color: var(--muted);
    font-size: 9px;
}

.social-button strong {
    margin-top: 2px;
    color: var(--navy);
    font-size: 11px;
}

.contact-mark {
    position: relative;
    display: grid;
    place-items: center;
}

.contact-mark::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(8,125,245,.08);
    filter: blur(10px);
}

.contact-mark img {
    position: relative;
    width: min(280px, 100%);
    opacity: .85;
}

/* FOOTER */
.footer {
    padding: 28px 0;
    color: #aeb9c9;
    background: var(--navy);
}

.footer-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand img {
    width: 37px;
    height: 37px;
    object-fit: contain;
    border-radius: 50%;
}

.footer-brand div {
    display: flex;
    flex-direction: column;
}

.footer-brand strong {
    color: var(--white);
    font-size: 16px;
}

.footer-brand span {
    margin-top: 3px;
    color: #8090a8;
    font-size: 8px;
}

.footer p {
    font-size: 10px;
}

.footer-social {
    display: flex;
    gap: 8px;
}

.footer-social a {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 50%;
    color: #c3cedd;
    transition: .25s ease;
}

.footer-social a:hover {
    color: var(--white);
    background: var(--primary);
}

/* BACK TOP */
.back-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 900;
    display: grid;
    place-items: center;
    width: 43px;
    height: 43px;
    border: 0;
    border-radius: 13px;
    color: var(--white);
    background: var(--navy);
    box-shadow: 0 12px 30px rgba(7,25,54,.18);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: .3s ease;
}

.back-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .75s ease, transform .75s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1050px) {
    .hero-grid {
        gap: 35px;
    }

    .business-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-grid {
        gap: 45px;
    }
}

@media (max-width: 850px) {
    .header {
        padding: 13px 0;
    }

    .menu-toggle {
        display: block;
    }

    .navbar {
        position: absolute;
        top: calc(100% + 10px);
        right: 20px;
        left: 20px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 3px;
        padding: 10px;
        border: 1px solid var(--border);
        border-radius: 18px;
        background: rgba(255,255,255,.96);
        box-shadow: 0 20px 50px rgba(7,25,54,.12);
        backdrop-filter: blur(18px);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: .25s ease;
    }

    .navbar.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-link {
        padding: 13px 14px;
    }

    .nav-cta {
        margin-left: 0;
        text-align: center;
    }

    .hero {
        padding-top: 120px;
    }

    .hero-grid,
    .about-grid,
    .future-box,
    .contact-box {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 460px;
    }

    .logo-card {
        width: min(390px, 75%);
    }

    .floating-card-one {
        left: 5%;
    }

    .floating-card-two {
        right: 5%;
    }

    .about-stats {
        margin-top: 10px;
    }

    .future-content,
    .contact-box {
        padding: 50px;
    }

    .future-visual {
        min-height: 320px;
        padding-bottom: 50px;
    }

    .contact-mark {
        display: none;
    }
}

@media (max-width: 600px) {
    .container {
        width: min(100% - 28px, var(--container));
    }

    .section {
        padding: 85px 0;
    }

    .hero {
        min-height: auto;
        padding-top: 115px;
        padding-bottom: 75px;
    }

    .hero h1 {
        font-size: clamp(41px, 12vw, 57px);
        letter-spacing: -2.8px;
    }

    .hero-content > p {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero-visual {
        min-height: 390px;
    }

    .logo-card {
        width: 83%;
        border-radius: 30px;
        padding: 35px;
    }

    .floating-card {
        padding: 10px;
    }

    .floating-card i {
        width: 33px;
        height: 33px;
        font-size: 13px;
    }

    .floating-card strong {
        font-size: 10px;
    }

    .floating-card span {
        font-size: 8px;
    }

    .floating-card-one {
        left: 0;
        bottom: 70px;
    }

    .floating-card-two {
        right: 0;
        top: 55px;
    }

    .scroll-indicator {
        display: none;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .section-heading h2 {
        font-size: 42px;
        letter-spacing: -2px;
    }

    .about-text .lead {
        font-size: 18px;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }

    .stat-card {
        min-height: 155px;
        padding: 20px;
    }

    .stat-icon {
        margin-bottom: 20px;
    }

    .stat-card strong {
        font-size: 15px;
    }

    .business-grid {
        grid-template-columns: 1fr;
    }

    .business-card {
        min-height: 380px;
    }

    .future-box {
        border-radius: 25px;
    }

    .future-content,
    .contact-box {
        padding: 35px 25px;
    }

    .future-content h2,
    .contact-content h2 {
        font-size: 43px;
        letter-spacing: -2px;
    }

    .future-visual {
        min-height: 260px;
    }

    .orbit-one {
        width: 210px;
        height: 210px;
    }

    .orbit-two {
        width: 300px;
        height: 300px;
    }

    .future-icon {
        width: 100px;
        height: 100px;
        border-radius: 28px;
        font-size: 33px;
    }

    .leadership {
        padding: 60px 0;
    }

    .leadership-card {
        padding: 22px;
    }

    .leadership-card h2 {
        font-size: 17px;
    }

    .contact-buttons {
        flex-direction: column;
    }

    .social-button {
        width: 100%;
    }

    .footer-wrapper {
        flex-direction: column;
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition-duration: .01ms !important;
    }
}
