﻿:root {
    --bg: #04050f;
    --bg-alt: #0a0c1f;
    --text: #f4f5fb;
    --muted: #c4c6d4;
    --accent: #ff6b9c;
    --accent-2: #5cf0d8;
    --stroke: rgba(255, 255, 255, 0.08);
    --card: rgba(8, 10, 25, 0.65);
    --radius: 1.25rem;
    --shadow: 0 20px 60px rgba(5, 6, 15, 0.55);
    font-family: 'Space Grotesk', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    background: radial-gradient(circle at 20% 20%, rgba(92, 240, 216, 0.15), transparent 45%),
        radial-gradient(circle at 80% 0, rgba(255, 107, 156, 0.12), transparent 45%),
        var(--bg);
    color: var(--text);
    line-height: 1.6;
    padding: 0 1.5rem 4rem;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.blurred-sphere {
    position: fixed;
    width: 420px;
    height: 420px;
    filter: blur(120px);
    opacity: 0.45;
    z-index: -1;
}

.sphere--one {
    top: -120px;
    left: -120px;
    background: var(--accent);
}

.sphere--two {
    bottom: -180px;
    right: -120px;
    background: var(--accent-2);
}

.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 0 4rem;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0 2rem;
}

.logo {
    font-weight: 700;
    font-size: 1.35rem;
    display: inline-flex;
    align-items: center;
    gap: 0;
    line-height: 1;
}

.logo__mark {
    height: 64px;
    width: auto;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: var(--muted);
}

.nav__menu a {
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav__menu a:hover {
    color: var(--text);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 0.35rem;
    background: transparent;
    border: none;
    cursor: pointer;
}

.nav__toggle span {
    width: 26px;
    height: 2px;
    background: var(--text);
}

.hero__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    align-items: center;
}

.hero__content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    line-height: 1.15;
}

.eyebrow {
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: var(--accent-2);
    margin-bottom: 0.85rem;
}

.lead {
    color: var(--muted);
    margin-bottom: 1.75rem;
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    transition: transform 0.2s ease, background 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn--primary {
    background: linear-gradient(135deg, var(--accent), #fe9365);
    color: #04050f;
}

.btn--secondary {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.06);
}

.btn--ghost {
    border-color: transparent;
    color: var(--muted);
}

.hero__chips {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.chip {
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.45rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    color: var(--muted);
}

.hero__showcase {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.showcase-card {
    background: var(--card);
    border: 1px solid var(--stroke);
    border-radius: var(--radius);
    padding: 1.75rem;
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
}

.showcase-card ul {
    list-style: disc;
    padding-left: 1.25rem;
    color: var(--muted);
    margin: 1rem 0;
}

.link-arrow {
    color: var(--accent-2);
    font-weight: 600;
}

.card--stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.25rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
}

main {
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    margin-top: 4rem;
}

.section__header {
    max-width: 720px;
    margin-bottom: 2rem;
}

.section__header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.75rem;
}

.cards-grid,
.assets-grid,
.testimonials {
    display: grid;
    gap: 1.5rem;
}

.cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.game-feature {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.game-feature__meta {
    background: rgba(4, 5, 15, 0.65);
    border: 1px solid var(--stroke);
    border-radius: var(--radius);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.game-feature__meta ul {
    list-style: disc;
    padding-left: 1.25rem;
    color: var(--muted);
}

.card {
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid var(--stroke);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card__media {
    height: 320px;
    background-size: cover;
    background-position: center;
}

.card__body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.card__body ul li {
    color: var(--muted);
}

.card footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.tag {
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.8rem;
    color: var(--muted);
}

.tag--success {
    color: var(--accent-2);
    border-color: var(--accent-2);
}

.section--accent {
    background: linear-gradient(135deg, rgba(92, 240, 216, 0.1), rgba(255, 107, 156, 0.08));
    padding: 3rem;
    border-radius: var(--radius);
    border: 1px solid var(--stroke);
}

.assets-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.asset {
    background: rgba(4, 5, 15, 0.6);
    border: 1px solid var(--stroke);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.asset__media {
    width: 100%;
    height: 180px;
    border-radius: calc(var(--radius) - 0.5rem);
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.asset ul li {
    color: var(--muted);
}

.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.timeline article {
    padding: 1.75rem;
    border-radius: var(--radius);
    border: 1px solid var(--stroke);
    background: rgba(4, 5, 15, 0.55);
}

.timeline__step {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
}

.section--contrast {
    background: #05071a;
    padding: 3rem;
    border-radius: var(--radius);
    border: 1px solid var(--stroke);
}

.testimonials {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.testimonials article {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: calc(var(--radius) - 0.3rem);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.section--contact {
    margin-top: 4rem;
}

.contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    background: rgba(4, 5, 15, 0.7);
    border: 1px solid var(--stroke);
    border-radius: var(--radius);
    padding: 2.5rem;
}

.contact__intro ul {
    margin: 1rem 0;
    padding-left: 1.25rem;
}

.contact__intro ul li {
    list-style: disc;
    color: var(--muted);
}

.contact__info {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.contact__info a {
    color: var(--accent-2);
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact__form label {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-weight: 500;
}

.contact__form input,
.contact__form select,
.contact__form textarea {
    background: rgba(8, 10, 25, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.85rem;
    padding: 0.85rem;
    color: var(--text);
    font: inherit;
}

.contact__form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 2.25rem;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%235CF0D8' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.85rem center;
    background-size: 12px;
}

.contact__form select::-ms-expand {
    display: none;
}

.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
    outline: 2px solid var(--accent-2);
    border-color: transparent;
}

.form__status {
    min-height: 1.4rem;
    font-size: 0.9rem;
    color: var(--muted);
}

.form__status.is-success {
    color: var(--accent-2);
}

.form__status.is-error {
    color: var(--accent);
}

.footer {
    max-width: 1200px;
    margin: 4rem auto 0;
    padding: 2rem 0;
    border-top: 1px solid var(--stroke);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
    color: var(--muted);
}

.footer__links {
    display: flex;
    gap: 1.5rem;
}

.footer__legal {
    width: 100%;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 960px) {
    .hero__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    body {
        padding: 0 1rem 3rem;
    }

    .nav__menu {
        position: absolute;
        top: 70px;
        right: 1.25rem;
        background: rgba(4, 5, 15, 0.95);
        border-radius: var(--radius);
        border: 1px solid var(--stroke);
        padding: 1rem 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        min-width: 220px;
        transform: scale(0.95);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .nav__menu.is-open {
        opacity: 1;
        transform: scale(1);
        pointer-events: auto;
    }

    .nav__toggle {
        display: inline-flex;
    }

    .nav {
        position: relative;
    }

    .btn--ghost {
        display: none;
    }

    .section--accent,
    .section--contrast {
        padding: 2rem;
    }
}
