* {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong {
    font-weight: 700;
}

p,
ul,
ol {
    font-weight: 400;
}

@media (prefers-color-scheme: light) {
    :root {
        --primary: #FFFFFF;
        --secondary: #2B2C2D;
        --loader: linear-gradient(-45deg, #FFD7D7 0%, #F0EEFF 27.08%, #FFFFFF 54.78%, #F2E2FF 78.12%, #FFFDD9 100%);
        --translucent-low: rgba(43, 44, 45, 0.08);
        --translucent-high: rgba(11, 27, 43, 0.04);
    }
}

@media (prefers-color-scheme: dark) {
    :root {
        --primary: #363636;
        --secondary: #D5D5D5;
        --loader: linear-gradient(133.77deg, #2B2B2B 0%, #3C3C3C 27.08%, #504E4E 54.78%, #414141 78.12%, #525252 100%);
        --translucent-low: rgba(213, 213, 213, 0.08);
        --translucent-high: rgba(213, 213, 213, 0.04);
    }
}

* {
    box-sizing: border-box;
}

*:focus {
    outline: none;
}

body {
    margin: 0;
    background-color: var(--primary);
}

.cl-header {
    width: 1600px;
    max-width: 100%;
    padding: 32px;
    margin: 0 auto;
}

.cl-header header {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
}

.cl-header span:nth-child(2) {
    justify-self: end;
}

.cl-header .logo {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary);
}

.links a {
    font-size: 16px;
    color: var(--secondary);
    text-decoration: none;
    padding: 0 8px;
}

.links a:hover {
    text-decoration: underline;
}

.hero {
    width: 1140px;
    max-width: 100%;
    padding: 16px;
    margin: 88px auto 108px auto;
    text-align: center;
}

h1 {
    color: var(--secondary);
    font-size: clamp(32px, 8vw, 72px);
    letter-spacing: -1px;
    margin: 0 0 32px 0;
}

.cta {
    display: inline-block;
    background-color: var(--secondary);
    color: var(--primary);
    padding: 20px 48px;
    font-size: clamp(16px, 3vw, 24px);
    text-decoration: none;
    border-radius: 8px;
    transition: opacity cubic-bezier(0, 0.2, 0.4, 1) .08s;
}

.cta:hover {
    opacity: .86;
}

.cl-cover {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

.cover {
    position: relative;
    width: 100%;
    padding-top: 67.5%;
    height: 0;
    overflow: hidden;
}

.cover img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.cl-section {
    width: 1600px;
    max-width: 100%;
    padding: 32px;
    margin: 72px auto;
}

.subhead {
    text-align: center;
    width: 720px;
    max-width: 100%;
    margin: 0 auto;
}

h2 {
    color: var(--secondary);
    font-size: clamp(32px, 8vw, 72px);
    letter-spacing: -1px;
    margin: 0;
}

p {
    color: var(--secondary);
    font-size: clamp(20px, 4vw, 32px);
    letter-spacing: -1px;
    margin: 12px 0 0 0;
    opacity: .64;
}

.widget {
    width: 440px;
    margin: 24px auto 64px auto;
    background: var(--translucent-low);
    display: grid;
    grid-template-columns: repeat(5, auto);
    grid-gap: 12px;
    justify-content: center;
    padding: 16px;
    border-radius: 12px;
}

.widget span {
    font-size: clamp(16px, 3vw, 24px);
    color: var(--secondary);
    justify-self: center;
    position: relative;
    cursor: pointer;
}

.widget span:after {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--secondary);
    position: absolute;
    opacity: 0;
    bottom: -6px;
    left: 50%;
    margin-left: -2px;
}

.widget span.active:after {
    opacity: 1;
}

.cl-preview {
    width: 1364px;
    max-width: 100%;
    margin: 0 auto;
}

.preview {
    width: 100%;
    padding-top: 40.46%;
    height: 0;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}


.preview.loader {
    background: var(--loader);
    background-size: 600% 100%;
    background-position: 0 0;
    animation: loader .8s ease-out alternate infinite;
}

.preview.loader img {
    opacity: 0;
}

.preview img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 1;
    transition: opacity cubic-bezier(0, 0.2, 0.4, 1) .08s;
}

@keyframes loader {
    0% {
        background-position: 0 0;
    }

    0% {
        background-position: 100% 0%;
    }
}

.cl-dynamic {
    width: 1364px;
    max-width: 100%;
    margin: 32px auto 0 auto;
}

.dynamic {
    position: relative;
    width: 100%;
    padding-top: 32.25%;
    background-image: url("images/3d_angles.webp");
    background-size: cover;
    animation: framegame 2s steps(1) infinite;
}

.png .dynamic {
    background-image: url("images/3d_angles.png");
}

@keyframes framegame {

    0%,
    20% {
        background-position-y: 0;
    }

    20%,
    40% {
        background-position-y: 25%;
    }

    40%,
    60% {
        background-position-y: 50%;
    }

    60%,
    80% {
        background-position-y: 75%;
    }

    80%,
    100% {
        background-position-y: 100%;
    }
}

.cl-fill {
    background: var(--translucent-high);
    padding: 70px 0 120px 0;
}

.cl-fill .cl-section {
    margin: 0 auto;
}

.prototypes {
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(3, 375px);
    grid-gap: 48px;
}

.prototypes span {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 216.53%;
    overflow: hidden;
}

.prototypes span img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.cl-figma {
    text-align: center;
    margin-top: 88px;
}

.cl-figma svg {
    display: inline-block;
}

.cl-figma .cta {
    margin: 32px 0 0 0;
    transition: opacity cubic-bezier(0, 0.2, 0.4, 1) .08s;
}

.cl-figma .cta:hover {
    opacity: .86;
}

.cl-callout {
    width: 1300px;
    max-width: 100%;
    margin: 0 auto;
}

.callout {
    width: 100%;
    padding-top: 55.38%;
    height: 0;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.callout img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.cl-explorer {
    margin: 24px auto 56px auto;
}

.cl-explorer .cta {
    margin: 32px 0 0 0;
    transition: opacity cubic-bezier(0, 0.2, 0.4, 1) .08s;
}

.cl-explorer .cta:hover {
    opacity: .86;
}

.separator {
    font-size: 44px;
    text-align: center;
    color: var(--secondary);
}

.cl-social {
    margin: 72px auto;
    padding: 32px;
}

.social {
    text-align: center;
    margin-bottom: 24px;
}

.social-ct {
    width: 96px;
    height: 96px;
    display: inline-block;
    background-image: url("images/social-sprite.svg");
    background-color: var(--translucent-high);
    border-radius: 16px;
    margin: 0 8px;
}

.social-ct.tw {
    background-position: 0 0;
}

.social-ct.in {
    background-position: -96px 0;
}

.social-ct.ln {
    background-position: -192px 0;
}

.cl-footnote {
    width: 1600px;
    max-width: 100%;
    padding: 0px 32px;
    margin: 0 auto;
}

.cl-footnote .sep {
    width: 100%;
    height: 2px;
    background-color: var(--secondary);
}

.copy {
    text-align: center;
    padding: 48px 0 120px 0;
}

.copy p,
.copy a {
    opacity: 1;
    color: var(--secondary);
    font-size: 14px;
    margin: 2px 0;
    padding: 0;
    color: var(--secondary);
}

.copy a {
    text-decoration: underline;
}

@media only screen and (max-width:1400px) {
    .hero {
        margin: 56px auto 72px auto;
    }
}

@media only screen and (max-width:1260px) {
    .prototypes {
        grid-gap: 32px;
        grid-template-columns: repeat(3, 280px);
    }
}

@media only screen and (max-width:980px) {
    .prototypes {
        grid-gap: 24px;
        grid-template-columns: repeat(2, 280px);
    }
}

@media only screen and (max-width:767px) {

    .cl-section,
    .cl-header,
    .hero,
    .cl-footnote {
        padding: 16px;
    }

    .cl-header header {
        grid-template-columns: auto;
    }

    .cl-header span:nth-child(1) {
        justify-self: center;
        margin-bottom: 16px;
    }

    .cl-header span:nth-child(2) {
        justify-self: center;
    }

    h1 {
        margin: 0 0 24px 0;
    }

    .prototypes {
        grid-gap: 24px;
        grid-template-columns: repeat(2, 200px);
    }

    .copy {
        padding: 48px 0 48px 0;
    }
}

@media only screen and (max-width:480px) {
    .widget {
        width: 100%;
    }

    .widget span {
        font-weight: 600;
    }

    .prototypes {
        padding: 16px;
        grid-gap: 24px;
        grid-template-columns: repeat(2, 1fr);
    }

    .cl-fill {
        padding: 32px 0 48px 0;
    }

    .cl-figma {
        margin-top: 56px;
    }

    .cl-social {
        margin: 24px auto;
    }

    .social-ct {
        width: 72px;
        height: 72px;
        background-size: 216px 72px;
    }

    .social-ct.in {
        background-position: -72px 0;
    }

    .social-ct.ln {
        background-position: -144px 0;
    }

    .widget {
        margin: 24px auto 32px auto;
    }

    .copy p {
        display: inline;
    }
}