@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&family=Space+Mono:wght@400;700&display=swap');

:root {
    --night: #040914;
    --panel: #081426;
    --blue: #27bfff;
    --gold: #e7a746;
    --cream: #f4ead4;
    --muted: #a9b9ca;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--night);
    color: var(--cream);
    font-family: 'Space Mono', monospace;
    line-height: 1.7;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-header {
    position: absolute;
    z-index: 5;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(1180px, calc(100% - 48px));
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0;
    border-bottom: 1px solid rgba(161, 202, 255, .2);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: Cinzel, serif;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.site-header .brand {
    display: flex;
}

.brand img {
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 20px rgba(39, 191, 255, .35);
}

.brand small {
    color: var(--blue);
    font-size: .63em;
    letter-spacing: .18em;
}

nav {
    display: flex;
    align-items: center;
    gap: 30px;
    color: var(--muted);
    font-size: .75rem;
}

nav a:hover {
    color: var(--cream);
}

.header-download {
    border: 1px solid rgba(231, 167, 70, .65);
    color: var(--gold);
    padding: 8px 15px;
}

.hero {
    min-height: 780px;
    min-width: 320px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 0 max(6vw, 32px) 105px;
}

.hero-art {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(3, 8, 19, .85) 0%, rgba(3, 8, 19, .25) 55%, rgba(3, 8, 19, .1)), linear-gradient(0deg, rgba(4, 9, 20, .95), transparent 34%);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
}

.hero-content .eyebrow,
.hero-content .hero-intro {
    display: none;
}

.hero-title {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--blue);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    font-family: Cinzel, Georgia, serif;
    line-height: 1.12;
}

h1 {
    margin: 0;
    font-size: clamp(3rem, 7vw, 6.5rem);
    letter-spacing: -.04em;
}

h2 {
    margin: 0;
    font-size: clamp(2.25rem, 5vw, 4.4rem);
    letter-spacing: -.04em;
}

em {
    color: var(--gold);
    font-style: normal;
}

.hero-intro {
    max-width: 400px;
    color: var(--cream);
    font-size: 1rem;
    margin: 25px 0 28px;
}

.button {
    display: inline-flex;
    gap: 15px;
    align-items: center;
    padding: 13px 20px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.button-gold {
    background: var(--gold);
    color: #18110a;
}

.button-gold:hover {
    background: #f5c46d;
}

.hero-scroll {
    position: absolute;
    z-index: 1;
    right: max(6vw, 32px);
    bottom: 44px;
    color: var(--muted);
    font-size: .65rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

.hero-scroll span {
    color: var(--blue);
    font-size: 1.4rem;
    margin-top: 10px;
}

.section {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 125px 0;
}

.story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.story-copy {
    border-left: 1px solid var(--blue);
    padding-left: 32px;
    color: var(--muted);
    max-width: 520px;
}

.story-copy p:first-child {
    color: var(--cream);
    font-size: 1.05rem;
}

.centered {
    text-align: center;
}

.paths {
    width: 100%;
    max-width: none;
    padding-left: 24px;
    padding-right: 24px;
    background: linear-gradient(180deg, #061021, #08172a);
}

.path-grid {
    width: min(1180px, 100%);
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 55px;
}

.path-card {
    padding: 32px 24px;
    border: 1px solid rgba(109, 176, 231, .2);
    background: rgba(6, 17, 34, .66);
    transition: transform .25s, border-color .25s;
}

.path-card:hover {
    transform: translateY(-6px);
    border-color: var(--blue);
}

.path-icon {
    display: block;
    color: var(--blue);
    font-size: 2rem;
    margin-bottom: 18px;
}

.path-card h3 {
    color: var(--gold);
    font-size: 1.15rem;
}

.path-card p {
    color: var(--muted);
    font-size: .8rem;
}

.download {
    display: grid;
    grid-template-columns: 370px 1fr;
    gap: 90px;
    align-items: center;
}

.download-art {
    aspect-ratio: 1;
    max-width: 370px;
    border: 1px solid rgba(39, 191, 255, .45);
    padding: 12px;
    background: #061022;
    box-shadow: 22px 22px 0 rgba(231, 167, 70, .12);
}

.download-art img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.download-copy {
    max-width: 590px;
}

.download-copy>p:not(.eyebrow) {
    color: var(--muted);
    margin: 25px 0;
}

.download-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.download-button {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 190px;
    padding: 13px 16px;
    border: 1px solid rgba(169, 185, 202, .3);
    background: #0a192d;
    color: var(--cream);
    text-align: left;
    font: inherit;
    cursor: not-allowed;
    opacity: .72;
}

.download-button.is-available {
    cursor: pointer;
    opacity: 1;
    border-color: var(--gold);
}

.download-button.is-available:hover {
    background: #122844;
}

.download-button small {
    display: block;
    color: var(--blue);
    font-size: .58rem;
    text-transform: uppercase;
}

.button-icon {
    color: var(--gold);
    font-size: 1.25rem;
}

.download-button .button-icon {
    display: none;
}

.download-button::before {
    content: '';
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    background: center / contain no-repeat;
}

.download-button:nth-child(1)::before {
    background-image: url('../assets/android.png');
}

.download-button:nth-child(2)::before {
    background-image: url('../assets/windows.png');
}

.auren-card .card-actions button::before {
    content: '';
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    background: center / contain no-repeat;
}

.auren-card .card-actions button:nth-of-type(1)::before {
    background-image: url('../assets/android.png');
}

.auren-card .card-actions button:nth-of-type(2)::before {
    background-image: url('../assets/windows.png');
}

.site-footer {
    width: min(1180px, calc(100% - 48px));
    margin: auto;
    padding: 28px 0;
    border-top: 1px solid rgba(161, 202, 255, .2);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #71849a;
    font-size: .65rem;
}

@media (max-width: 800px) {
    .site-header {
        width: calc(100% - 32px);
        padding: 16px 0;
    }

    nav a:not(.header-download) {
        display: none;
    }

    .hero {
        min-height: 0;
        aspect-ratio: 1794 / 876;
        padding: 0 24px 28px;
    }

    .hero-art {
        object-position: center;
    }

    .hero-overlay {
        background: linear-gradient(90deg, rgba(3, 8, 19, .84), rgba(3, 8, 19, .25)), linear-gradient(0deg, rgba(4, 9, 20, .98), transparent 50%);
    }

    .hero-scroll {
        display: none;
    }

    .section {
        width: calc(100% - 48px);
        padding: 80px 0;
    }

    .story,
    .download {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .path-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 36px;
    }

    .download-art {
        max-width: 250px;
    }

    .site-footer {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .brand {
        font-size: 1rem;
    }

    .header-download {
        padding: 6px 9px;
        font-size: .62rem;
    }

    .hero {
        min-height: 620px;
    }

    .path-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 3.25rem;
    }
}
