@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Manrope:wght@500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #111827;
    background:
        radial-gradient(circle at 15% 5%, #eef2ff 0, transparent 30%),
        radial-gradient(circle at 90% 15%, #ecfeff 0, transparent 25%),
        #ffffff;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

::selection {
    background: #6d5dfc;
    color: white;
}


/* NAVBAR */

.navbar {
    width: min(1180px, calc(100% - 40px));
    height: 76px;

    position: fixed;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 24px;

    background: rgba(255,255,255,.76);
    backdrop-filter: blur(18px);

    border: 1px solid rgba(20,20,40,.08);
    border-radius: 20px;

    box-shadow: 0 15px 50px rgba(20,20,50,.08);

    z-index: 1000;
}

.logo,
.footer-logo {
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -1px;
}

.logo span,
.footer-logo span {
    color: #6d5dfc;
    margin-left: 5px;
}

nav {
    display: flex;
    gap: 34px;
}

nav a {
    font-size: 14px;
    font-weight: 600;
    color: #596174;
    transition: .25s;
}

nav a:hover {
    color: #6d5dfc;
}

.nav-button {
    background: #111827;
    color: white;

    padding: 13px 19px;
    border-radius: 12px;

    font-size: 13px;
    font-weight: 700;

    transition: .3s;
}

.nav-button:hover {
    transform: translateY(-2px);
    background: #6d5dfc;
}


/* HERO */

.hero {
    min-height: 100vh;

    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;

    width: min(1180px, calc(100% - 40px));
    margin: auto;

    padding: 150px 0 90px;

    position: relative;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .35;
    z-index: -1;
}

.glow-one {
    width: 400px;
    height: 400px;
    background: #8b7cff;
    left: -250px;
    top: 180px;
}

.glow-two {
    width: 350px;
    height: 350px;
    background: #6ee7f9;
    right: -200px;
    bottom: 80px;
}

.badge {
    display: inline-flex;
    align-items: center;

    padding: 9px 14px;

    background: #f5f3ff;
    color: #6655e8;

    border: 1px solid #e5e0ff;
    border-radius: 100px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: .3px;

    margin-bottom: 25px;
}

.hero h1 {
    font-family: 'Manrope', sans-serif;

    font-size: clamp(48px, 6vw, 78px);
    line-height: .98;
    letter-spacing: -4px;

    max-width: 700px;
}

.hero h1 span,
.section-heading h2 span,
.about-content h2 span,
.contact-section h2 span {
    color: #6d5dfc;
}

.hero-content > p {
    max-width: 590px;

    font-size: 18px;
    line-height: 1.75;

    color: #697386;

    margin: 28px 0;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.primary-button,
.secondary-button {
    padding: 16px 22px;
    border-radius: 13px;

    font-size: 14px;
    font-weight: 700;

    transition: .3s;
}

.primary-button {
    color: white;
    background: #111827;

    box-shadow: 0 12px 30px rgba(17,24,39,.15);
}

.primary-button span {
    margin-left: 8px;
}

.primary-button:hover {
    background: #6d5dfc;
    transform: translateY(-3px);
}

.secondary-button {
    border: 1px solid #e2e5ec;
    background: rgba(255,255,255,.7);
}

.secondary-button:hover {
    border-color: #b8b0ff;
    transform: translateY(-3px);
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.hero-features div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-features strong {
    color: #6d5dfc;
}

.hero-features span {
    color: #788195;
    font-size: 12px;
    font-weight: 600;
}


/* HERO BROWSER */

.hero-visual {
    perspective: 1200px;
}

.browser-card {
    background: rgba(255,255,255,.82);

    border: 1px solid rgba(100,90,200,.15);
    border-radius: 22px;

    box-shadow:
        0 40px 100px rgba(58,46,120,.15),
        0 5px 20px rgba(0,0,0,.04);

    overflow: hidden;

    transform: rotateY(-5deg) rotateX(2deg);
    transition: .5s;
}

.browser-card:hover {
    transform: rotateY(0) rotateX(0) translateY(-7px);
}

.browser-top {
    height: 55px;

    display: flex;
    align-items: center;

    padding: 0 18px;

    border-bottom: 1px solid #edf0f5;

    position: relative;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d9dce5;
}

.browser-url {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);

    background: #f5f6fa;
    color: #9aa1af;

    padding: 7px 35px;
    border-radius: 7px;

    font-size: 9px;
}

.browser-content {
    min-height: 460px;

    padding: 70px 55px;

    background:
        radial-gradient(circle at 80% 20%, rgba(109,93,252,.18), transparent 35%),
        linear-gradient(135deg, #fbfbff, #f5f8ff);

    position: relative;
}

.mini-badge {
    color: #6d5dfc;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
}

.browser-content h2 {
    font-family: 'Manrope';
    font-size: 45px;
    line-height: 1.05;
    letter-spacing: -2px;
}

.browser-content h2 span {
    color: #6d5dfc;
}

.browser-content p {
    color: #7d8495;
    line-height: 1.6;
    margin: 20px 0;
    max-width: 250px;
}

.fake-button {
    display: inline-block;

    padding: 12px 18px;

    background: #111827;
    color: white;

    border-radius: 9px;

    font-size: 10px;
    font-weight: 700;
}

.floating-card {
    position: absolute;

    padding: 13px 17px;

    background: rgba(255,255,255,.85);
    backdrop-filter: blur(15px);

    border: 1px solid rgba(255,255,255,.9);
    border-radius: 13px;

    box-shadow: 0 15px 35px rgba(40,40,80,.12);

    font-size: 9px;
    font-weight: 800;

    animation: float 4s ease-in-out infinite;
}

.floating-card span {
    color: #6d5dfc;
    margin-right: 5px;
}

.card-one {
    right: 20px;
    top: 80px;
}

.card-two {
    right: 50px;
    bottom: 55px;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}


/* GENERAL SECTION */

.section {
    width: min(1180px, calc(100% - 40px));
    margin: auto;

    padding: 120px 0;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 55px;
}

.eyebrow {
    display: block;

    color: #6d5dfc;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;

    margin-bottom: 15px;
}

.section-heading h2,
.about-content h2 {
    font-family: 'Manrope';

    font-size: clamp(36px, 4vw, 55px);
    line-height: 1.05;
    letter-spacing: -2.5px;
}

.section-heading p {
    color: #7c8495;
    margin-top: 17px;
}


/* SERVICES */

.service-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
}

.service-card {
    min-height: 300px;

    padding: 35px;

    background: rgba(255,255,255,.75);

    border: 1px solid #eaecf2;
    border-radius: 22px;

    position: relative;

    transition: .35s;
}

.service-card:hover {
    transform: translateY(-8px);

    border-color: #cec8ff;

    box-shadow: 0 25px 60px rgba(70,60,140,.1);
}

.service-card.featured {
    background:
        radial-gradient(circle at 90% 10%, rgba(109,93,252,.13), transparent 35%),
        white;
}

.popular {
    position: absolute;
    right: 20px;
    top: 20px;

    color: #6d5dfc;
    background: #f3f1ff;

    padding: 7px 10px;
    border-radius: 100px;

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;
}

.service-icon {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    background: #f2f0ff;
    color: #6d5dfc;

    border-radius: 13px;

    font-size: 20px;

    margin-bottom: 50px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.service-card p {
    color: #7a8293;
    line-height: 1.65;
    font-size: 14px;
}

.learn-more {
    display: inline-block;

    color: #6d5dfc;

    margin-top: 25px;

    font-size: 12px;
    font-weight: 700;
}


/* PROJECTS */

.work-section {
    border-top: 1px solid #eff0f4;
}

.project-grid {
    display: grid;
    grid-template-columns: 1.4fr .8fr;
    gap: 20px;
}

.project-card {
    border-radius: 24px;
    overflow: hidden;

    border: 1px solid #e9ebf1;

    background: white;

    position: relative;
}

.project-number {
    position: absolute;
    top: 22px;
    left: 22px;

    z-index: 2;

    font-size: 10px;
    font-weight: 800;

    color: white;

    background: rgba(0,0,0,.18);
    backdrop-filter: blur(10px);

    padding: 7px 10px;
    border-radius: 100px;
}

.project-placeholder {
    min-height: 370px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(circle at 30% 30%, #8d82ff, transparent 30%),
        radial-gradient(circle at 70% 70%, #61dce8, transparent 30%),
        #151629;

    color: white;
}

.project-placeholder span {
    font-size: 12px;
    letter-spacing: 5px;
}

.project-placeholder strong {
    font-family: 'Manrope';
    font-size: clamp(35px,5vw,60px);
    letter-spacing: -3px;
}

.project-info {
    padding: 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.project-info h3 {
    margin-bottom: 5px;
}

.project-info p {
    color: #8990a0;
    font-size: 11px;
}

.project-arrow {
    font-size: 25px;
}

.coming-soon {
    min-height: 470px;

    display: flex;
    align-items: flex-end;

    padding: 40px;

    background:
        radial-gradient(circle at 70% 20%, rgba(109,93,252,.18), transparent 35%),
        #f7f7fb;
}

.coming-soon span {
    color: #6d5dfc;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
}

.coming-soon h3 {
    font-family: 'Manrope';

    font-size: 28px;
    letter-spacing: -1.3px;

    margin: 12px 0 25px;
}

.coming-soon a {
    font-size: 12px;
    font-weight: 800;
}


/* ABOUT */

.about-box {
    padding: 60px;

    border-radius: 30px;

    color: white;

    background:
        radial-gradient(circle at 85% 20%, rgba(109,93,252,.6), transparent 30%),
        #11131f;

    position: relative;
    overflow: hidden;
}

.about-label {
    color: rgba(255,255,255,.1);

    font-family: 'Manrope';
    font-size: clamp(50px, 9vw, 130px);
    font-weight: 800;

    white-space: nowrap;

    position: absolute;
    bottom: -20px;
    left: -10px;
}

.about-content {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.about-content h2 {
    color: white;
}

.about-text {
    color: #aeb4c5;

    font-size: 15px;
    line-height: 1.8;
}

.about-text p + p {
    margin-top: 20px;
}


/* CONTACT */

.contact-section {
    width: min(1180px, calc(100% - 40px));
    margin: 80px auto;

    padding: 120px 30px;

    text-align: center;

    border-radius: 35px;

    background: #fafaff;
    border: 1px solid #eeeeF6;

    position: relative;
    overflow: hidden;
}

.contact-glow {
    position: absolute;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    background: rgba(109,93,252,.14);
    filter: blur(100px);

    left: 50%;
    top: 0;

    transform: translate(-50%,-50%);
}

.contact-section > *:not(.contact-glow) {
    position: relative;
}

.contact-section h2 {
    font-family: 'Manrope';

    font-size: clamp(45px, 6vw, 75px);
    line-height: 1;
    letter-spacing: -4px;
}

.contact-section > p {
    color: #7d8494;

    max-width: 520px;

    margin: 25px auto 30px;

    line-height: 1.7;
}

.contact-button {
    display: inline-block;

    padding: 17px 25px;

    background: #111827;
    color: white;

    border-radius: 13px;

    font-size: 13px;
    font-weight: 800;

    transition: .3s;
}

.contact-button:hover {
    transform: translateY(-4px);
    background: #6d5dfc;
}

.contact-details {
    margin-top: 35px;

    display: flex;
    justify-content: center;
    gap: 15px;

    color: #8b91a0;

    font-size: 12px;
}


/* FOOTER */

footer {
    width: min(1180px, calc(100% - 40px));
    margin: auto;

    padding: 30px 0 50px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    border-top: 1px solid #eceef2;

    color: #818898;

    font-size: 11px;
}


/* RESPONSIVE */

@media (max-width: 900px) {

    nav {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero h1 {
        letter-spacing: -3px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .project-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

}

@media (max-width: 600px) {

    .navbar {
        width: calc(100% - 20px);
        top: 10px;
        padding: 0 14px;
    }

    .logo {
        font-size: 16px;
    }

    .nav-button {
        padding: 11px 13px;
        font-size: 11px;
    }

    .hero {
        width: calc(100% - 30px);
        padding-top: 130px;
    }

    .hero h1 {
        font-size: 48px;
        letter-spacing: -3px;
    }

    .hero-features {
        flex-wrap: wrap;
    }

    .browser-content {
        padding: 55px 30px;
    }

    .browser-content h2 {
        font-size: 37px;
    }

    .section {
        width: calc(100% - 30px);
        padding: 85px 0;
    }

    .about-box {
        padding: 40px 25px;
    }

    .contact-section {
        width: calc(100% - 20px);
        padding: 90px 20px;
    }

    .contact-section h2 {
        letter-spacing: -3px;
    }

    .contact-details {
        flex-direction: column;
    }

    .contact-details span {
        display: none;
    }

    footer {
        width: calc(100% - 30px);

        flex-direction: column;
        gap: 15px;

        text-align: center;
    }

}

/* CONTACT FORM */

.contact-header {
    max-width: 700px;
    margin: 0 auto 60px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 70px;

    max-width: 1000px;
    margin: auto;

    text-align: left;
}

.contact-info {
    padding-top: 15px;
}

.contact-small {
    color: #6d5dfc;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.contact-info h3 {
    font-family: 'Manrope', sans-serif;

    font-size: 36px;
    line-height: 1.1;
    letter-spacing: -2px;

    margin: 18px 0;
}

.contact-info > p {
    color: #7d8494;

    font-size: 14px;
    line-height: 1.8;

    margin-bottom: 40px;
}

.contact-item {
    padding: 18px 0;

    border-top: 1px solid #e5e7ee;

    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-item span {
    color: #9ba1af;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;

    text-transform: uppercase;
}

.contact-item a {
    font-size: 13px;
    font-weight: 700;

    transition: .2s;
}

.contact-item a:hover {
    color: #6d5dfc;
}


/* FORM */

.contact-form {
    padding: 35px;

    background: rgba(255,255,255,.85);

    border: 1px solid #e6e8ef;
    border-radius: 22px;

    box-shadow: 0 25px 70px rgba(40,40,80,.07);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;

    margin-bottom: 18px;
}

.form-group label {
    margin-bottom: 8px;

    color: #3e4655;

    font-size: 11px;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 14px 15px;

    font-family: inherit;
    font-size: 13px;

    color: #202633;
    background: #fafbfc;

    border: 1px solid #e2e5eb;
    border-radius: 10px;

    outline: none;

    transition: .25s;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background: white;

    border-color: #8b7dfc;

    box-shadow: 0 0 0 4px rgba(109,93,252,.08);
}

.submit-button {
    width: 100%;

    border: none;

    padding: 16px 20px;

    background: #111827;
    color: white;

    border-radius: 11px;

    font-family: inherit;
    font-size: 12px;
    font-weight: 800;

    cursor: pointer;

    transition: .3s;
}

.submit-button span {
    margin-left: 7px;
}

.submit-button:hover {
    background: #6d5dfc;
    transform: translateY(-2px);

    box-shadow: 0 12px 30px rgba(109,93,252,.2);
}

.form-note {
    margin-top: 12px;

    color: #a0a6b3;

    text-align: center;

    font-size: 9px;
}

@media (max-width: 600px) {

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 25px 18px;
    }

    .contact-info h3 {
        font-size: 30px;
    }

}