.projects-page {
    max-width: 1120px;
    padding-top: 90px
}

.project-hero {
    padding: 25px 0 90px;
    border-bottom: 1px solid #303030
}

.kicker,
.project-type {
    font: 11px monospace;
    letter-spacing: .08em;
    color: #8e8e8e
}

.project-hero h1 {
    margin: 22px 0;
    font-size: clamp(55px, 8vw, 105px);
    line-height: .85;
    letter-spacing: -.08em
}

.project-hero h1 span {
    font-size: .38em;
    font-weight: 400;
    color: #70d8f8;
    letter-spacing: -.04em
}

.project-hero>p:last-child {
    color: #aaa;
    font-size: 15px
}

.projects-list {
    padding: 65px 0
}

.project-card {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    min-height: 420px;
    margin-bottom: 75px;
    border: 1px solid #303030;
    border-radius: 20px;
    overflow: hidden;
    background: #151515
}

.project-visual {
    position: relative;
    padding: 25px;
    overflow: hidden
}

.project-visual>span {
    font: 11px monospace;
    position: relative;
    z-index: 2
}

.project-visual strong {
    position: absolute;
    left: 28px;
    bottom: 24px;
    z-index: 2;
    font-size: clamp(32px, 4vw, 55px);
    line-height: .78;
    letter-spacing: -.08em
}

.project-copy {
    padding: 38px;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.project-copy h2 {
    margin: 14px 0;
    font-size: 29px;
    letter-spacing: -.06em
}

.description {
    color: #aaa;
    line-height: 1.8;
    max-width: 330px
}

.meta {
    border-top: 1px solid #303030;
    padding-top: 19px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: 11px;
    color: #aaa
}

.meta a {
    color: #70d8f8;
    text-decoration: none;
    font-size: 13px
}

.blue .project-visual {
    background: #a9cadc
}

.finance .chart {
    position: absolute;
    inset: 20% 14%;
    border-left: 1px solid rgba(0, 0, 0, .25);
    border-bottom: 1px solid rgba(0, 0, 0, .25);
    display: flex;
    align-items: end;
    gap: 9%
}

.chart i {
    width: 11%;
    background: #2a5a77;
    border-radius: 5px 5px 0 0
}

.chart i:nth-child(1) {
    height: 25%
}

.chart i:nth-child(2) {
    height: 48%
}

.chart i:nth-child(3) {
    height: 40%
}

.chart i:nth-child(4) {
    height: 72%
}

.chart i:nth-child(5) {
    height: 90%
}

.chart b {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 65%;
    background: #d9edf5;
    clip-path: polygon(0 70%, 23% 40%, 42% 58%, 63% 15%, 76% 45%, 100% 0, 100% 100%, 0 100%);
    opacity: .8
}

.coral .project-visual {
    background: #f17a57;
    color: #1e2039
}

.shop .orb {
    position: absolute;
    width: 48%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #f8e1ad;
    right: 18%;
    top: 23%;
    box-shadow: inset 25px -20px #d54d55
}

.violet .project-visual {
    background: #25243a;
    color: #b9f869
}

.rings {
    position: absolute;
    inset: 16%;
    display: grid;
    place-items: center
}

.rings i {
    position: absolute;
    width: 100%;
    height: 34%;
    border: 1px solid #b9f869;
    border-radius: 50%;
    transform: rotate(35deg)
}

.rings i:nth-child(2) {
    transform: rotate(95deg)
}

.rings i:nth-child(3) {
    transform: rotate(155deg)
}

.rings b {
    font: 100px Georgia
}

.orbit strong {
    font-size: 35px
}

.project-contact {
    text-align: center;
    border-top: 1px solid #303030;
    padding: 85px 0 35px
}

.project-contact p {
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.1;
    letter-spacing: -.06em
}

.project-contact a {
    color: #70d8f8;
    text-decoration: none;
    font-size: 18px
}

@media(max-width:800px) {
    .projects-page {
        padding-top: 50px
    }

    .project-hero {
        padding-bottom: 55px
    }

    .project-card {
        grid-template-columns: 1fr;
        margin-bottom: 38px
    }

    .project-visual {
        min-height: 290px
    }

    .project-copy {
        min-height: 270px;
        padding: 28px
    }

    .project-hero h1 {
        font-size: 60px
    }

    .side-nav {
        display: none
    }
}