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

:root {
    --bg: #081020;
    --bg2: #101b34;
    --navy: #14284a;
    --navy-light: #1f3d6a;

    --gold: #d8aa3d;
    --gold-light: #ffe08a;
    --gold-dark: #8a5a16;

    --stone: #303946;
    --stone-light: #596474;
    --stone-dark: #151a22;

    --text: #f4ead0;
    --muted: #b9c0cc;

    --max-width: 1120px;
	
	--font-display: "Pixelify Sans", sans-serif;
    --font-body: "Merriweather", serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at top, rgba(37, 67, 120, 0.45), transparent 38rem),
        linear-gradient(180deg, var(--bg2), var(--bg));
    color: var(--text);
    font-family: var(--font-body);
}

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

.site-shell {
    min-height: 100vh;
}

.site-nav {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;

    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;

    color: var(--gold-light);
}

.nav-brand img {
    width: 42px;
    height: 42px;
    image-rendering: pixelated;
}

.nav-links {
    display: flex;
    gap: 18px;
    align-items: center;

    font-family: var(--font-display);
    font-size: 1rem;
}

.nav-links a:hover {
    color: var(--gold-light);
}

.nav-cta {
    padding: 10px 14px;
    border: 2px solid var(--gold);
    background: linear-gradient(180deg, var(--gold-light), var(--gold));
    color: #241704 !important;
    font-weight: 800;
    box-shadow: 0 4px 0 var(--gold-dark);
}

.hero {
    max-width: 900px;
    margin: 0 auto;
    padding: 70px 22px 90px;
    text-align: center;
}

.hero-logo {
    width: min(680px, 94vw);
    image-rendering: pixelated;
    margin-bottom: 18px;
}

.eyebrow {

    font-family: var(--font-display);

    color: var(--gold-light);
    letter-spacing: .15em;
    text-transform: uppercase;
    font-size: .9rem;

}

h1 {
    margin: 12px 0;
    font-size: clamp(2.4rem, 7vw, 5rem);
    line-height: 0.95;
    text-shadow: 4px 4px 0 #000;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin: 0 0 24px;
    color: var(--gold-light);
    text-shadow: 3px 3px 0 #000;
}

h3 {
    color: var(--gold-light);
    margin-top: 0;
}

h1,
h2,
h3 {

    font-family: var(--font-display);
    font-weight: 700;

}

.hero-copy {
    max-width: 680px;
    margin: 20px auto 0;
    color: var(--muted);
    font-size: 1.15rem;
    line-height: 1.7;
}

.hero-actions {
    margin-top: 34px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.button {
    display: inline-block;
    padding: 15px 22px;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 2px solid #000;
    box-shadow: 0 5px 0 #000;
    font-family: var(--font-display);

    letter-spacing: .08em;
    text-transform: uppercase;
}

.button-primary {
    background: linear-gradient(180deg, var(--gold-light), var(--gold));
    color: #251700;
}

.button-secondary {
    background: linear-gradient(180deg, var(--stone-light), var(--stone));
    color: var(--text);
}

.section {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 58px 22px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.stone-card,
.stone-panel {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.08), transparent 30%),
        linear-gradient(180deg, var(--stone), var(--stone-dark));
    border: 3px solid #111;
    outline: 2px solid var(--gold-dark);
    box-shadow: 0 8px 0 #05070b;
    padding: 24px;
}

.stone-card h3 {

    font-family: var(--font-display);

}

.card-icon {
    font-size: 2.4rem;
    margin-bottom: 12px;
}

.stone-card p,
.stone-panel p,
.stone-panel li,
.split-section p {
    color: var(--muted);
    line-height: 1.65;
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: center;
}

.site-footer {
    max-width: var(--max-width);
    margin: 40px auto 0;
    padding: 28px 22px 40px;
    border-top: 1px solid rgba(255,255,255,0.12);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: var(--muted);
}

.site-footer strong {
    color: var(--gold-light);
    display: block;
    margin-bottom: 4px;
}

.footer-links {
    display: flex;
    gap: 18px;
}

.footer-links a:hover {
    color: var(--gold-light);
}

.site-footer strong {

    font-family: var(--font-display);

}

@media (max-width: 760px) {
    .site-nav,
    .site-footer,
    .split-section {
        display: block;
    }

    .nav-links {
        margin-top: 16px;
        flex-wrap: wrap;
    }

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

    .hero {
        padding-top: 42px;
    }
}

.logo-wrapper {
    position: relative;
    display: inline-block;
}

.hero-logo {
    display: block;
    width: min(850px, 95vw);
    image-rendering: pixelated;
}

.logo-subtitle {
    position: absolute;
    left: 50%;
    bottom: 33%;
    transform: translateX(-50%);

    width: 42%;

    text-align: center;

    font-family: var(--font-display);
    font-size: 1rem;

    color: #efd78a;
    letter-spacing: .04em;

    text-shadow: 2px 2px 0 rgba(0,0,0,.85);
}

@media (min-width: 900px) {

    .logo-subtitle {

        bottom: 30%;

        font-size: 1.8rem;

    }

}

.page-main {
    min-height: 70vh;
}

.page-hero {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 70px 22px 34px;
    text-align: center;
}

.page-hero h1 {
    margin-bottom: 16px;
}

.page-hero p {
    color: var(--muted);
    font-size: 1.2rem;
}

.narrow {
    max-width: 820px;
}

.download-panel {
    text-align: center;
}

.download-icon {
    width: 128px;
    height: 128px;
    image-rendering: pixelated;
    margin-bottom: 18px;
}

.install-notes {
    text-align: left;
    margin-top: 34px;
}

.legal-copy h2,
.legal-copy h3 {
    margin-top: 28px;
}

.legal-copy p {
    color: var(--muted);
    line-height: 1.75;
}

.download-hero {
    max-width: 820px;
    margin: 0 auto;
    padding: 76px 22px 46px;
    text-align: center;
}

.download-hero-icon {
    width: 132px;
    height: 132px;
    image-rendering: pixelated;
    margin-bottom: 18px;
}

.download-hero h1 {
    margin: 12px 0 16px;
}

.download-hero-copy {
    max-width: 680px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 1.15rem;
    line-height: 1.65;
}

.version-note {
    margin-top: 20px;
    font-family: var(--font-display);
    color: var(--gold-light);
    letter-spacing: .08em;
}

.alpha-note {
    margin: 22px auto;
    max-width: 620px;
    padding: 16px 18px;
    background: rgba(216, 170, 61, .12);
    border: 2px solid var(--gold-dark);
    color: var(--text);
    line-height: 1.6;
}

.install-card {
    max-width: 760px;
    margin: 34px auto 0;
    padding: 26px;
    background: rgba(21, 26, 34, .82);
    border: 3px solid #000;
    outline: 2px solid var(--gold-dark);
    box-shadow: 0 7px 0 #05070b;
    text-align: left;
}

.install-card h3 {
    text-align: center;
    margin-bottom: 22px;
}

.install-steps {
    display: grid;
    gap: 12px;
}

.install-step {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    align-items: center;
    padding: 12px 14px;
    background: rgba(255, 255, 255, .04);
    border: 2px solid rgba(255, 255, 255, .08);
}

.install-step span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, var(--gold-light), var(--gold));
    color: #241704;
    border: 2px solid #000;
    box-shadow: 0 3px 0 var(--gold-dark);
    font-family: var(--font-display);
}

.install-step p {
    margin: 0;
    color: var(--text);
    line-height: 1.45;
}

.install-help {
    margin: 22px 0 0;
    text-align: center;
    color: var(--gold-light);
    font-weight: 700;
}