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

html {
    scroll-behavior: smooth;
}

body {
    background: #f5f6f8;
    color: #111318;
    font-family: "Montserrat", sans-serif;
    overflow-x: hidden;
}

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


/* =========================
   Background
========================= */

.background-glow {
    position: fixed;
    width: 650px;
    height: 650px;

    top: -300px;
    right: -180px;

    background: rgba(63, 116, 255, 0.08);
    filter: blur(100px);

    border-radius: 50%;

    pointer-events: none;
    z-index: -1;
}


/* =========================
   Header
========================= */

.header {
    position: fixed;

    top: 24px;
    left: 50%;

    transform: translateX(-50%);

    width: calc(100% - 64px);
    max-width: 1400px;

    height: 72px;

    display: flex;
    align-items: center;

    padding: 0 10px 0 22px;

    background: rgba(231, 233, 237, 0.88);

    border: 1px solid rgba(0, 0, 0, 0.05);

    backdrop-filter: blur(20px);

    border-radius: 100px;

    z-index: 100;
}


.logo {
    width: 120px;

    display: flex;
    align-items: center;
}

.logo img {
    width: 100%;
    height: auto;

    display: block;
}


.navigation {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 4px;

    margin: auto;
}

.navigation a {
    position: relative;

    padding: 11px 15px;

    border-radius: 50px;

    font-size: 12px;
    font-weight: 600;

    color: #777b83;

    transition:
        color 0.25s ease,
        background 0.25s ease;
}

.navigation a:hover,
.navigation a.active {
    color: #111318;
    background: rgba(255, 255, 255, 0.75);
}


.contact-button {
    padding: 13px 21px;

    background: #111318;
    color: white;

    border-radius: 50px;

    font-size: 12px;
    font-weight: 600;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.contact-button:hover {
    transform: translateY(-2px);
    background: #252a35;
}


/* =========================
   Hero
========================= */

.hero {
    position: relative;

    min-height: 100vh;

    max-width: 1400px;

    margin: 0 auto;

    padding:
        190px 7vw
        100px;

    display: flex;
    align-items: center;

    overflow: hidden;
}


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

    max-width: 800px;
}


.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 27px;

    color: #777d88;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.16em;
}


.status-dot {
    width: 7px;
    height: 7px;

    background: #3d73ff;

    border-radius: 50%;

    box-shadow: 0 0 0 5px rgba(61, 115, 255, 0.10);
}


.hero h1 {
    font-family: "Syne", sans-serif;

    font-size: clamp(65px, 8.5vw, 140px);

    line-height: 0.88;

    letter-spacing: -0.065em;

    font-weight: 700;
}


.hero h1 span {
    display: block;

    color: transparent;

    -webkit-text-stroke: 1.5px #111318;
}


.hero-description {
    max-width: 530px;

    margin-top: 42px;

    color: #6c717b;

    font-size: 15px;

    line-height: 1.8;
}


.hero-actions {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-top: 32px;
}


.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;

    padding: 15px 21px;

    border-radius: 50px;

    font-size: 12px;
    font-weight: 600;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}


.primary-button {
    background: #111318;
    color: white;
}

.primary-button:hover {
    transform: translateY(-3px);
    background: #26354f;
}


.primary-button span {
    font-size: 16px;
}


.secondary-button {
    border: 1px solid #d8dbe0;
    color: #333840;
    background: rgba(255, 255, 255, 0.5);
}

.secondary-button:hover {
    transform: translateY(-3px);
    background: white;
}


/* =========================
   Hero Decoration
========================= */

.hero-decoration {
    position: absolute;

    right: 1vw;
    bottom: 8%;

    width: 430px;
    height: 430px;

    opacity: 0.8;
}


.circle {
    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(17, 19, 24, 0.08);
}


.circle-large {
    inset: 0;

    background:
        radial-gradient(
            circle at center,
            rgba(59, 108, 255, 0.08),
            transparent 67%
        );
}


.circle-medium {
    width: 270px;
    height: 270px;

    left: 80px;
    top: 80px;

    border-color: rgba(59, 108, 255, 0.15);
}


.circle-small {
    width: 105px;
    height: 105px;

    left: 162px;
    top: 162px;

    background: #111318;

    box-shadow:
        0 0 80px rgba(55, 99, 255, 0.25);
}


.decoration-text {
    position: absolute;

    right: 10px;
    top: 175px;

    font-family: "Syne", sans-serif;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.12em;

    text-align: right;
}


.decoration-text span {
    color: #8b9099;

    font-family: "Montserrat", sans-serif;

    font-size: 8px;
}


.scroll-indicator {
    position: absolute;

    bottom: 50px;
    left: 7vw;

    display: flex;
    align-items: center;
    gap: 10px;

    color: #8a8f97;

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 0.1em;
    text-transform: uppercase;
}


.scroll-indicator span {
    width: 28px;
    height: 1px;

    background: #b8bcc3;
}


/* =========================
   Intro
========================= */

.intro {
    max-width: 1400px;

    margin: 0 auto;

    padding: 170px 7vw 110px;

    display: grid;

    grid-template-columns: 220px 1fr;

    gap: 80px;
}


.section-label {
    color: #898e97;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.14em;
}


.section-label span {
    margin-right: 14px;

    color: #3d73ff;
}


.intro-content {
    max-width: 850px;
}


.intro h2 {
    font-family: "Syne", sans-serif;

    font-size: clamp(42px, 5vw, 76px);

    line-height: 1;

    letter-spacing: -0.05em;
}


.intro h2 em {
    color: #7c828c;

    font-style: normal;
}


.intro p {
    max-width: 600px;

    margin-top: 35px;

    color: #777c85;

    font-size: 15px;

    line-height: 1.9;
}


/* =========================
   Services
========================= */

.services {
    max-width: 1400px;

    margin: 0 auto;

    padding: 0 7vw 170px;
}


.service-card {
    position: relative;

    min-height: 300px;

    padding: 45px 45px 40px;

    display: grid;

    grid-template-columns: 100px 80px 1fr;

    align-items: start;

    gap: 30px;

    border-top: 1px solid #dfe1e5;

    transition:
        padding 0.35s ease,
        background 0.35s ease;
}


.service-card:last-child {
    border-bottom: 1px solid #dfe1e5;
}


.service-card:hover {
    padding-left: 55px;

    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,0.8),
            rgba(255,255,255,0)
        );
}


.service-number {
    color: #9ca1aa;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.1em;
}


.service-icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #111318;
    color: white;

    font-size: 18px;

    transition:
        transform 0.35s ease,
        background 0.35s ease;
}


.service-card:hover .service-icon {
    transform: rotate(8deg) scale(1.08);

    background: #3d73ff;
}


.service-content h3 {
    font-family: "Syne", sans-serif;

    font-size: clamp(36px, 4vw, 60px);

    line-height: 1;

    letter-spacing: -0.05em;
}


.service-content p {
    max-width: 520px;

    margin-top: 20px;

    color: #7b8089;

    font-size: 14px;

    line-height: 1.8;
}


.service-link {
    display: inline-block;

    margin-top: 25px;

    color: #3d73ff;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.1em;
    text-transform: uppercase;
}


/* =========================
   Statement
========================= */

.statement {
    max-width: 1400px;

    margin: 0 auto;

    padding: 70px 7vw 190px;

    text-align: center;
}


.statement-line {
    width: 1px;
    height: 90px;

    margin: 0 auto 50px;

    background: #d8dbe0;
}


.statement h2 {
    max-width: 900px;

    margin: 0 auto;

    font-family: "Syne", sans-serif;

    font-size: clamp(42px, 6vw, 88px);

    line-height: 0.98;

    letter-spacing: -0.06em;
}


.statement h2 span {
    display: block;

    color: #7c828c;
}


.statement p {
    margin-top: 30px;

    color: #8a8f97;

    font-size: 13px;
}


/* =========================
   Footer
========================= */

footer {
    background: #111318;

    color: white;

    padding: 120px 7vw 35px;
}


.footer-top {
    max-width: 1400px;

    margin: 0 auto;

    padding-bottom: 130px;

    display: flex;

    justify-content: space-between;
    align-items: flex-end;

    gap: 50px;
}


.footer-label {
    margin-bottom: 20px;

    color: #777d88;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.15em;
}


.footer-top h2 {
    font-family: "Syne", sans-serif;

    font-size: clamp(52px, 7vw, 100px);

    line-height: 0.9;

    letter-spacing: -0.06em;
}


.footer-top h2 span {
    color: #6f9aff;
}


.footer-button {
    flex-shrink: 0;

    padding: 17px 25px;

    border-radius: 50px;

    background: white;
    color: #111318;

    font-size: 11px;
    font-weight: 700;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}


.footer-button:hover {
    transform: translateY(-3px);

    background: #6f9aff;
    color: white;
}


.footer-bottom {
    max-width: 1400px;

    margin: 0 auto;

    padding-top: 30px;

    border-top: 1px solid rgba(255,255,255,0.1);

    display: grid;

    grid-template-columns: 1fr 1fr 1fr;

    align-items: center;

    color: #727782;

    font-size: 10px;
}


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

    gap: 5px;
}


.footer-brand strong {
    color: white;

    font-family: "Syne", sans-serif;

    font-size: 15px;

    letter-spacing: 0.04em;
}


.footer-location {
    text-align: center;
}


.footer-copy {
    text-align: right;
}


/* =========================
   Responsive
========================= */

@media (max-width: 1000px) {

    .navigation a:nth-child(2),
    .navigation a:nth-child(3) {
        display: none;
    }

    .hero-decoration {
        opacity: 0.35;
        right: -150px;
    }

    .intro {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .service-card {
        grid-template-columns: 60px 70px 1fr;
    }
}


@media (max-width: 700px) {

    .header {
        width: calc(100% - 24px);
        top: 12px;

        height: 62px;

        padding-left: 16px;
    }

    .logo {
        width: 90px;
    }

    .navigation {
        display: none;
    }

    .contact-button {
        margin-left: auto;
    }

    .hero {
        min-height: 850px;

        padding:
            150px 24px
            100px;
    }

    .hero h1 {
        font-size: 64px;
    }

    .hero-decoration {
        right: -210px;
        bottom: 80px;

        transform: scale(0.7);
    }

    .scroll-indicator {
        left: 24px;
        bottom: 35px;
    }

    .intro {
        padding: 120px 24px 80px;
    }

    .services {
        padding: 0 24px 100px;
    }

    .service-card {
        min-height: auto;

        padding: 35px 0;

        grid-template-columns: 45px 1fr;

        gap: 20px;
    }

    .service-card:hover {
        padding-left: 0;
    }

    .service-icon {
        grid-column: 1;
        grid-row: 1;
    }

    .service-number {
        display: none;
    }

    .service-content {
        grid-column: 2;
    }

    .service-content h3 {
        font-size: 39px;
    }

    .statement {
        padding: 40px 24px 130px;
    }

    footer {
        padding: 90px 24px 30px;
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;

        padding-bottom: 90px;
    }

    .footer-bottom {
        grid-template-columns: 1fr;

        gap: 20px;

        text-align: left;
    }

    .footer-location,
    .footer-copy {
        text-align: left;
    }
}
