/*
    Universe Creator
    Default Website Theme
*/

:root {
    --bg: #03070c;
    --bg-alt: #07111d;
    --panel: #0a1725;
    --panel-border: #173b59;

    --text: #f4f8fb;
    --muted: #b3c3d1;

    --cyan: #35c8ff;
    --blue: #1f78ff;
    --orange: #ff7a18;
    --gold: #ffc35a;

    --max-width: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 17px;
    line-height: 1.7;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

.wrap {
    width: min(92%, var(--max-width));
    margin: 0 auto;
}

.site-header {
    background: #02060a;
    border-bottom: 1px solid #12324d;
}

.header-row {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.brand img {
    width: 54px;
    height: 54px;
    border-radius: 12px;
}

.brand strong,
.brand span {
    display: block;
}

.brand strong {
    font-size: 19px;
}

.brand span {
    margin-top: 2px;
    color: var(--muted);
    font-size: 13px;
    letter-spacing: 1px;
}

.nav {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.nav a {
    padding: 8px 10px;
    color: #d5e3ee;
    text-decoration: none;
    border-radius: 6px;
}

.nav a:hover {
    background: #0b1b2b;
    color: var(--cyan);
}

.hero {
    position: relative;
    min-height: 690px;
    display: flex;
    align-items: center;
    background:
        url("../images/hero.png")
        center center / cover
        no-repeat;
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(1, 5, 9, 0.96) 0%,
            rgba(1, 5, 9, 0.82) 42%,
            rgba(1, 5, 9, 0.30) 76%,
            rgba(1, 5, 9, 0.16) 100%
        );
}

.hero-inner {
    position: relative;
    z-index: 1;
    padding: 90px 0;
}

.hero-copy {
    max-width: 700px;
}

.kicker {
    margin: 0 0 12px;
    color: var(--cyan);
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 24px;
    font-size: clamp(48px, 7vw, 86px);
    line-height: 1.02;
}

h1 span {
    color: var(--orange);
}

h2 {
    max-width: 900px;
    margin-bottom: 34px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.1;
}

h3 {
    margin-bottom: 12px;
    font-size: 24px;
}

.lead {
    max-width: 670px;
    color: #dce8f0;
    font-size: 20px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.button {
    display: inline-block;
    padding: 12px 18px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
}

.primary {
    background: var(--orange);
    border-color: var(--gold);
    color: #160900;
}

.secondary {
    background: #0a2034;
    border-color: #2d8bc2;
    color: #c9efff;
}

.button:hover {
    filter: brightness(1.08);
}

.disabled {
    opacity: 0.55;
    pointer-events: none;
}

.section {
    padding: 88px 0;
}

.alt {
    background: var(--bg-alt);
    border-top: 1px solid #102a41;
    border-bottom: 1px solid #102a41;
}

.two-column,
.three-column {
    display: grid;
    gap: 24px;
}

.two-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.three-column {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.panel,
.brand-panel,
.download-card,
pre {
    border: 1px solid var(--panel-border);
    border-radius: 12px;
    background: var(--panel);
}

.panel,
.download-card {
    padding: 28px;
}

.panel p,
.brand-panel p,
.download-card p,
.build-grid > div p {
    color: var(--muted);
}

.panel p:last-child,
.brand-panel p:last-child,
.download-card p:last-child {
    margin-bottom: 0;
}

.brand-panel {
    padding: 28px;
    text-align: center;
}

.brand-panel img {
    width: 270px;
    margin: 0 auto 24px;
    border-radius: 22%;
}

ol {
    margin-bottom: 0;
    padding-left: 24px;
    color: var(--muted);
}

ol li + li {
    margin-top: 8px;
}

.build-grid {
    align-items: start;
}

pre {
    margin: 0;
    padding: 24px;
    overflow-x: auto;
    color: #d8f2ff;
    font-size: 15px;
    line-height: 1.6;
}

.faq {
    display: grid;
    gap: 12px;
}

.faq details {
    border: 1px solid var(--panel-border);
    border-radius: 10px;
    background: var(--panel);
}

.faq summary {
    padding: 18px 20px;
    cursor: pointer;
    font-weight: bold;
}

.faq details p {
    padding: 0 20px 20px;
    margin: 0;
    color: var(--muted);
}

.download-card > span {
    display: block;
    margin-bottom: 10px;
    color: var(--cyan);
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.download-card .button {
    margin-top: 12px;
}

footer {
    background: #010407;
    border-top: 1px solid #102a41;
}

.footer-row {
    min-height: 110px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #8195a7;
    font-size: 14px;
}

.footer-row strong,
.footer-row span {
    display: block;
}

.footer-row strong {
    color: var(--text);
}

@media (max-width: 900px) {
    .header-row {
        padding: 16px 0;
        align-items: flex-start;
        flex-direction: column;
    }

    .two-column,
    .three-column {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 600px;
        background-position: 60% center;
    }
}

@media (max-width: 600px) {
    body {
        font-size: 16px;
    }

    .nav {
        width: 100%;
    }

    .nav a {
        padding-left: 0;
        padding-right: 14px;
    }

    .hero-shade {
        background: rgba(1, 5, 9, 0.78);
    }

    .section {
        padding: 64px 0;
    }

    .footer-row {
        padding: 28px 0;
        align-items: flex-start;
        flex-direction: column;
    }
}
