@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700&display=swap");

:root {
    color-scheme: dark;
    --bg: #0a0b0f;
    --surface: rgba(17, 19, 26, .82);
    --surface-strong: #11131a;
    --line: rgba(255, 255, 255, .09);
    --line-soft: rgba(255, 255, 255, .055);
    --text: #f3f4f6;
    --muted: #999faa;
    --muted-2: #6e7480;
    --warm: #d9a066;
    --violet: #8f8ae8;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
}

html {
    background: var(--bg);
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    background:
        linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px),
        var(--bg);
    background-size: 46px 46px;
    color: var(--text);
    font-family: "DM Sans", sans-serif;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at center, transparent 20%, rgba(10, 11, 15, .6) 100%);
}

.ambient {
    position: fixed;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(115px);
    pointer-events: none;
    opacity: .12;
}

.ambient-one {
    top: -180px;
    left: -130px;
    background: var(--violet);
}

.ambient-two {
    right: -170px;
    bottom: -210px;
    background: var(--warm);
}

.shell {
    position: relative;
    z-index: 1;
    width: min(1120px, calc(100% - 48px));
    min-height: 100vh;
    margin: 0 auto;
    display: grid;
    grid-template-rows: auto 1fr auto;
}

.topbar {
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line-soft);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--text);
    font-family: "Manrope", sans-serif;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
}

.brand-mark {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: rgba(255, 255, 255, .035);
    font-size: 14px;
}

.live-status {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #aeb3bc;
    font-size: 13px;
}

.live-dot,
.pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--warm);
    box-shadow: 0 0 0 0 rgba(217, 160, 102, .28);
    animation: pulse 2.4s infinite;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
    gap: clamp(48px, 8vw, 110px);
    align-items: center;
    padding: 80px 0 90px;
}

.hero-copy {
    animation: rise .75s cubic-bezier(.2, .7, .2, 1) both;
}

.kicker {
    margin: 0 0 18px;
    color: var(--warm);
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

h1 {
    max-width: 730px;
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(46px, 7vw, 78px);
    line-height: .99;
    letter-spacing: -.055em;
    font-weight: 700;
}

.intro {
    max-width: 620px;
    margin: 26px 0 0;
    color: var(--muted);
    font-size: clamp(16px, 2vw, 19px);
    line-height: 1.7;
}

.progress-wrap {
    max-width: 560px;
    margin-top: 42px;
}

.progress-meta {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 12px;
    color: #8f959f;
    font-size: 13px;
}

.progress-track {
    height: 5px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, .07);
}

.progress-bar {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--warm), #e7bd8d);
    transition: width 1.2s cubic-bezier(.2, .8, .2, 1);
}

.work-card {
    position: relative;
    overflow: hidden;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .018));
    box-shadow: 0 24px 80px rgba(0, 0, 0, .24);
    backdrop-filter: blur(16px);
    animation: cardIn .85s .12s cubic-bezier(.2, .7, .2, 1) both;
}

.work-card::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    right: -85px;
    top: -85px;
    border-radius: 50%;
    background: var(--warm);
    filter: blur(70px);
    opacity: .08;
}

.work-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line-soft);
}

.tiny-label {
    color: #7f8590;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.work-line {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 10px;
    padding: 19px 0;
    border-bottom: 1px solid var(--line-soft);
}

.work-line:last-child {
    border-bottom: 0;
    padding-bottom: 2px;
}

.work-index {
    color: #5f6570;
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    padding-top: 3px;
}

.work-line strong,
.work-line span {
    display: block;
}

.work-line strong {
    color: #e9eaed;
    font-size: 15px;
    font-weight: 600;
}

.work-line div span {
    margin-top: 5px;
    color: #858b96;
    font-size: 13px;
    line-height: 1.45;
}

.footer {
    min-height: 82px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--line-soft);
    color: #666c76;
    font-size: 12px;
}

.footer-separator {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #484d55;
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cardIn {
    from {
        opacity: 0;
        transform: translateY(22px) scale(.985);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(217, 160, 102, .28);
    }

    65% {
        box-shadow: 0 0 0 7px rgba(217, 160, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(217, 160, 102, 0);
    }
}

@media (max-width: 820px) {
    .shell {
        width: min(100% - 34px, 1120px);
    }

    .topbar {
        height: 78px;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 62px 0 70px;
    }

    h1 {
        font-size: clamp(43px, 12vw, 68px);
    }

    .work-card {
        max-width: 560px;
    }
}

@media (max-width: 520px) {
    body {
        background-size: 34px 34px;
    }

    .live-status {
        font-size: 12px;
    }

    .hero {
        padding-top: 50px;
    }

    .intro {
        font-size: 16px;
    }

    .work-card {
        padding: 20px;
        border-radius: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
