@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');

:root {
    --primary: #AC42FF;
    --secondary: #F15154;
    --accent: #7DEFFF;
    --linear-gradient: linear-gradient(to bottom, var(--secondary), var(--primary));
    --radial-gradient: radial-gradient(100% 115% at 0% 0%, var(--primary) 0%, var(--secondary) 100%);
    --weight-light: 300;
    --weight-regular: 400;
    --weight-medium: 500;
    --weight-semi-bold: 600;
    --weight-bold: 700;
    --body-color: #4B4B4B;
}

html {
    scroll-behavior: smooth;
}

a {
    font-weight: var(--weight-bold);
    color: var(--primary);
    transition: 300ms ease;
    text-decoration: none;
}

a:hover {
    color: rgba(172, 66, 255, 0.5);
}

section {
    margin-bottom: 70px;
}

.content-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f9f9f9;
    position: relative;
    color: var(--body-color);
    background: linear-gradient(to left, #e2e2e2 0%, #e6e6e6 100%);
}

.page-container {
    max-width: 1440px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(30px);
}

h1 {
    font-size: 2rem;
    font-weight: var(--weight-bold);
    margin-bottom: 20px;
}

h2 {
    font-size: 1.75rem;
    font-weight: var(--weight-bold);
    margin-bottom: 1rem;
}

h2.left {
    text-align: left;
    max-width: none;
}

h3 {
    font-size: 1.25rem;
    font-weight: var(--weight-bold);
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1rem;
    font-weight: var(--weight-semi-bold);
    margin-bottom: 0.75rem;
}

@media screen and (min-width: 960px) {
    h1 {
        font-size: 3rem;
        margin-bottom: 30px;
    }

    h2 {
        font-size: 2.25rem;
        margin: 0 auto 2rem auto;
        max-width: 560px;
        text-align: center;
    }

    h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    h4 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
}

.intro-section .text-container {
    padding-right: 10%;
    margin-bottom: 50px;
}

.intro-section .preview-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, .5);
    border-radius: 25px;
    padding: 40px;
}


.intro-section .project-overview {
    display: grid;
    grid-gap: 20px;
    grid-template-areas:
        'small-1 large'
        'small-2 large';
}

.small-1 {
    grid-area: small-1;
}

.small-2 {
    grid-area: small-2;
}

.large {
    grid-area: large;
}

.project {
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 20px 10px 20px;
    text-align: center;
    background: radial-gradient(100% 100% at 4.43% 0.11%, rgba(255, 255, 255, 0.8) 0%, rgba(252, 249, 255, 0.8) 100%);
    box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.05);
    position: relative;
}

.project .tag {
    position: absolute;
    display: flex;
    align-items: center;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: var(--weight-bold);
    font-size: 12px;
    padding: 3px 15px;
    background: radial-gradient(100% 1892.25% at 0% 0%, #AC42FF 0%, #8A24DA 100%);
    color: #fff;
    border-radius: 5px;
}

.tag .icon {
    font-size: 13px;
    margin-right: 4px;
    line-height: 1;
}

.project .tag.red {
    background: radial-gradient(100% 1892.25% at 0% 0%, #F15154 0%, #DA2E31 100%);
}

.project .title {
    margin-top: 10px;
    line-height: 1.4;
    font-size: 12px;
    font-weight: var(--weight-bold);
}

.project svg {
    width: 70px;
    height: 70px;
}

.project .graph {
    position: relative;
    height: 70px;
}

.project .percent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
    font-weight: var(--weight-bold);
    font-size: 14px;
}

.project path {
    width: 70px;
    height: 70px;
    stroke-width: 8;
    stroke-linecap: round;
    stroke: url(#gradient);
    fill: none;
}

.project circle {
    fill: none;
    stroke: #dcdcdc;
    stroke-width: 8;
}

@media screen and (min-width: 890px) {
    .intro-section .intro-container {
        display: flex;
        align-items: center;
    }

    .intro-section .intro-container .text-container {
        flex-grow: 1;
    }

    .intro-section .text-container {
        margin-bottom: 0;
    }

    section {
        margin-bottom: 180px;
    }

    .intro-section .preview-container {
        padding: 110px;
    }

    .project-overview .project-small {
        width: 150px;
        height: 150px;
    }

    .project-overview .project-large {
        width: 150px;
        height: 330px;
    }

    .intro-section .project-overview {
        grid-gap: 30px;
    }
}

.feature-section .feature-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 5rem auto;
}

.feature-section .feature-list {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: start;
    justify-content: center;
    margin-top: 10px;
}

.feature-section .feature-item {
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 20px;
    width: 100%
}

.feature-section .feature-icon {
    background: var(--radial-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-size: 5rem;
}

.feature-section .feature-title {
    margin: 1rem 0;
}

@media screen and (max-width: 750px) {
    .feature-section .feature-list {
        flex-direction: column;
        align-items: center;
    }

    .feature-section .feature-item {
        padding: 1.5rem 0;
    }
}


.team-section .team-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.team-section .team-member {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    text-align: left;
    margin: 3rem 0;
}

.team-section .team-member-title {
    font-size: 14px;
    font-weight: var(--weight-bold);
    display: inline-block;
    padding: 2px 10px;
    text-transform: uppercase;
    background: radial-gradient(100% 1892.25% at 0% 0%, #AC42FF 0%, #8A24DA 100%);
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    color: #fff;
    border-radius: 5px;
}

.team-section .team-member-image {
    margin-right: 3rem;
    border-radius: 50%;
}

@media screen and (max-width: 750px) {
    .team-section .team-member-image {
        margin-right: 0;
        margin-bottom: 3rem;
    }

    .team-section .team-member {
        flex-direction: column;
    }
}

@media screen and (min-width: 960px) {
    .team-section .team-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 5rem auto;
        text-align: center;
    }
}

.contact-section .contact-container {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.contact-section .contact-form {
    margin-top: 2rem;
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.contact-section .submit-button {
    appearance: none;
    border: none;
    margin: 0.5rem;
}

@media screen and (max-width: 600px) {
    .contact-section .contact-form-input {
        flex-direction: column;
        align-items: center;
    }

    .contact-section .contact-fields {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

footer .footer-container {
    padding: 100px 0;
}

footer .footer-copyright {
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

footer .logo {
    margin-bottom: 10px;
}


footer .footer-nav {
    flex: 1 1 100%;
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

footer .footer-nav a {
    padding: 5px 10px;
    color: var(--primary);
    font-weight: var(--weight-bold);
}

.button {
    padding: 14px 50px;
    font-size: 18px;
    font-weight: var(--weight-bold);
    background: radial-gradient(60% 100% at 50% 0%, #D298FF 0.01%, var(--primary) 100%);
    box-shadow: 0px 5px 15px rgba(172, 66, 255, 0.25);
    border-radius: 25px;
    display: inline-block;
    color: #fff;
    transition: 300ms ease;
}

.button:hover {
    box-shadow: 0px 10px 25px rgba(172, 66, 255, 0.35);
    cursor: pointer;
    color: #fff;
    transform: translateY(-5%) scale(1.025);
}

.button:active {
    transform: scale(0.9);
}

section.darker {
    padding: 30px 0;
    color: #f1f1f1;
    background: linear-gradient(180deg, #2E313B 0.01%, #0C0E18 100%);
}

@media screen and (min-width: 960px) {
    section.darker {
        margin: 0 75px;
        padding: 75px 0;
        border-radius: 25px;
    }
}

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

header {
    display: flex;
    align-items: center;
    padding: 20px;
}

nav a {
    color: var(--body-color);
    font-weight: var(--weight-bold);
    margin-left: 40px;
    display: none;
}

.hero-section {
    position: relative;
}

.hero-section .text-container {
    position: relative;
    z-index: 2;
    padding-bottom: 30px;
    font-size: 18px;
}

.hero-section .button-container {
    margin-top: 40px;
}

.hero-section .hero-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-section .preview-container {
    width: 50%;
    display: flex;
    justify-content: center;
    margin: 20px 0;
    padding: 30px 0;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    background: var(--linear-gradient);
}

.hero-section .preview-phone {
    transform: translate(50%, 0%);
    width: 75vw;
}

.preview-phone .inner {
    padding-bottom: 177.77777777778%;
    background: #fff;
    width: 100%;
    border: 7px solid var(--body-color);
    border-radius: 25px;
    box-shadow: 0 0 40px rgba(0, 0, 0, .15);
}

.preview-phone .inner:before {
    content: ' ';
    position: absolute;
    width: 25%;
    height: 20px;
    background: var(--body-color);
    left: 50%;
    top: 2px;
    border-radius: 5px;
    transform: translateX(-50%);
}


@media screen and (min-width: 500px) {
    .hero-section .preview-container {
        right: 0;
        height: 100%;
        width: 40%;
        top: 0;
        border-bottom-left-radius: 50px;
        position: absolute;
        margin: 0;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    .hero-section .preview-phone {
        left: 0;
        top: 50%;
        transform: translate(-20%, -50%);
        position: absolute;
        width: 200px;
    }

    .hero-section .text-container {
        width: 50%;
    }
}

@media screen and (min-width: 860px) {
    nav a {
        display: inline-block;
    }

    header {
        padding-top: 80px;
        padding-left: 90px;
    }

    .hero-section .hero-container {
        height: calc(100vh - 0.5rem);
    }


    .hero-section .preview-phone {
        left: 0;
        transform: translate(-30%, -50%);
        top: 50%;
        width: 300px;
    }

    .hero-section .preview-phone .inner {
        border-width: 10px;
    }

    .hero-section .text-container {
        width: 30%;
        padding-bottom: 160px;
    }
}

@media screen and (min-width: 1480px) {
    body {
        padding: 5rem 0;
    }

    .hero-section .preview-container {
        width: 45%;
    }


    .hero-section .hero-container {
        height: calc(100vh - 6rem);
    }
}

.background-container {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    overflow: hidden;
}

.background-container .bubble {
    width: 400px;
    height: 400px;
    position: absolute;
    filter: blur(200px);
    opacity: 0.75;
}

@media screen and (min-width: 1480px) {
    .background-container .bubble {
        width: 500px;
        height: 500px;
        filter: blur(200px);
    }
}

.bubble.secondary {
    background: var(--secondary);
}

.bubble.primary {
    background: var(--primary);
}

.bubble.accent {
    background: var(--accent);
}

.contact-field {
    position: relative;
    margin: 20px 0 30px 0;
    padding: 0 5px;
    width: 100%;
}

@media screen and (min-width: 640px) {
    .contact-field {
        width: 50%;
    }
}

.contact-field:before {
    content: ' ';
    position: absolute;
    left: 5px;
    top: 10px;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    filter: blur(10px);
}

.contact-field.textarea {
    width: 100%;
}


.contact-form .button-container {
    display: flex;
    width: 100%;
    justify-content: flex-end;
}

label {
    font-size: 16px;
    position: absolute;
    left: 20px;
    font-weight: var(--weight-bold);
    z-index: 20;
    transform: translateY(-50%);

}

textarea {
    resize: none;
}

input,
textarea {
    width: 100%;
    font-size: 16px;
    border: none;
    padding: 20px;
    outline: none;
    border-radius: 15px;
    position: relative;
    display: block;
    border-radius: 15px;
    color: #fff;
    font-weight: var(--weight-regular);
    font-family: 'Poppins', sans-serif;
    background: rgba(255, 255, 255, 0.1);
}