:root {
    --background: #070b0e;
    --background-soft: #0d1216;
    --panel: #11181d;
    --panel-light: #172128;
    --text: #f4f5f6;
    --text-muted: #aab3ba;
    --accent: #ff7a00;
    --accent-light: #ffad55;
    --accent-dark: #b84c00;
    --border: rgba(255, 255, 255, 0.1);
    --shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--background);
    color: var(--text);
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    line-height: 1.6;
}

body.modal-open {
    overflow: hidden;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    font: inherit;
}

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

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border);
    background: rgba(7, 11, 14, 0.86);
    backdrop-filter: blur(18px);
}

.nav-container {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 800;
}

.brand-logo {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    box-shadow: 0 8px 24px rgba(255, 122, 0, 0.2);
}

.navigation {
    display: flex;
    align-items: center;
    gap: 26px;
    color: var(--text-muted);
    font-size: 0.94rem;
}

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

.nav-button {
    padding: 10px 16px;
    border: 1px solid rgba(255, 122, 0, 0.48);
    border-radius: 8px;
    color: var(--text) !important;
}

.mobile-menu-button {
    display: none;
    padding: 9px 13px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: transparent;
    color: var(--text);
    cursor: pointer;
}

.hero {
    min-height: calc(100vh - 74px);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0;
    isolation: isolate;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: -3;
    background:
        url("assets/av_headerBg.png")
        center / cover
        no-repeat;
    opacity: 0.42;
    transform: scale(1.01);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(
            90deg,
            rgba(7, 11, 14, 0.99) 0%,
            rgba(7, 11, 14, 0.9) 45%,
            rgba(7, 11, 14, 0.48) 100%
        ),
        linear-gradient(
            180deg,
            rgba(7, 11, 14, 0.2),
            var(--background)
        );
}

.hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 700px;
    height: 700px;
    top: -300px;
    right: -120px;
    border-radius: 50%;
    background: rgba(255, 122, 0, 0.2);
    filter: blur(120px);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.72fr;
    align-items: center;
    gap: 80px;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--accent-light);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(3rem, 6vw, 5.8rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.hero h1 span {
    display: block;
    color: var(--accent-light);
}

.hero-description {
    max-width: 690px;
    margin: 28px 0 0;
    color: var(--text-muted);
    font-size: 1.08rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 9px;
    font-weight: 800;
    transition:
        transform 160ms ease,
        background-color 160ms ease,
        border-color 160ms ease,
        box-shadow 160ms ease;
}

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

.button-primary {
    background:
        linear-gradient(
            135deg,
            var(--accent),
            var(--accent-light)
        );
    color: #1a1008;
    box-shadow: 0 14px 30px rgba(255, 122, 0, 0.24);
}

.button-primary:hover {
    box-shadow: 0 18px 38px rgba(255, 122, 0, 0.32);
}

.button-secondary {
    border-color: var(--border);
    background: rgba(255, 255, 255, 0.035);
}

.button-light {
    background: var(--text);
    color: #121416;
}

.hero-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 25px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.hero-notes span::before {
    content: "✓";
    margin-right: 7px;
    color: var(--accent-light);
    font-weight: 900;
}

.hero-product {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.075),
            rgba(255, 255, 255, 0.018)
        );
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.hero-logo {
    width: min(100%, 380px);
    border-radius: 22%;
    filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.45));
}

.hero-product-copy {
    text-align: center;
}

.hero-product-copy strong {
    display: block;
    font-size: 1.35rem;
}

.hero-product-copy span {
    color: var(--text-muted);
    font-size: 0.94rem;
}

.section {
    padding: 110px 0;
}

.section-dark {
    border-block: 1px solid var(--border);
    background: var(--background-soft);
}

.section-heading {
    max-width: 700px;
    margin-bottom: 50px;
}

.section-heading h2,
.creator-panel h2,
.download-panel h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.section-heading > p:last-child,
.creator-panel p,
.download-panel > p {
    color: var(--text-muted);
}

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

.feature-card {
    min-height: 250px;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.04),
            rgba(255, 255, 255, 0.012)
        );
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background-color 180ms ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 122, 0, 0.38);
}

.feature-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 122, 0, 0.4);
    border-radius: 10px;
    color: var(--accent-light);
    font-size: 0.75rem;
    font-weight: 900;
}

.feature-card h3 {
    margin: 0 0 10px;
    font-size: 1.18rem;
}

.feature-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.screenshot-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.screenshot-card {
    position: relative;
    overflow: hidden;
    min-height: 330px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--panel);
    color: var(--text);
    cursor: zoom-in;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.screenshot-card-wide {
    grid-column: 1 / -1;
    min-height: 520px;
}

.screenshot-card img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    transition:
        transform 260ms ease,
        filter 260ms ease;
}

.screenshot-card span {
    position: absolute;
    left: 18px;
    bottom: 18px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(7, 11, 14, 0.82);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(12px);
    font-size: 0.86rem;
    font-weight: 800;
}

.screenshot-card:hover img {
    transform: scale(1.025);
    filter: brightness(1.05);
}

.creator-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 50px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background:
        linear-gradient(
            140deg,
            rgba(255, 122, 0, 0.08),
            rgba(255, 255, 255, 0.025)
        );
}

.creator-panel > div {
    max-width: 720px;
}

.download-section {
    padding: 40px 0 110px;
}

.download-panel {
    position: relative;
    overflow: hidden;
    padding: 80px 30px;
    border-radius: 22px;
    background:
        linear-gradient(
            135deg,
            rgba(255, 122, 0, 0.98),
            rgba(255, 173, 85, 0.95)
        );
    color: #19110b;
    text-align: center;
}

.download-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 20% 0%,
            rgba(255, 255, 255, 0.4),
            transparent 38%
        );
    pointer-events: none;
}

.download-panel > * {
    position: relative;
}

.download-logo {
    width: 96px;
    margin: 0 auto 20px;
    border-radius: 20px;
    box-shadow: 0 18px 38px rgba(80, 30, 0, 0.24);
}

.download-panel .eyebrow,
.download-panel > p {
    color: rgba(25, 17, 11, 0.74);
}

.site-footer {
    padding: 40px 0;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 13px;
}

.footer-brand img {
    width: 46px;
    height: 46px;
    border-radius: 11px;
}

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

.footer-content p {
    margin: 4px 0 0;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

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

.image-modal {
    width: min(94vw, 1500px);
    max-height: 92vh;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #05080a;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.72);
}

.image-modal::backdrop {
    background: rgba(0, 0, 0, 0.84);
    backdrop-filter: blur(8px);
}

.image-modal img {
    width: 100%;
    max-height: 92vh;
    object-fit: contain;
}

.modal-close {
    position: fixed;
    top: 18px;
    right: 22px;
    z-index: 2;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: rgba(7, 11, 14, 0.84);
    color: #fff;
    cursor: pointer;
    font-size: 1.8rem;
    line-height: 1;
}

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

    .hero-copy {
        text-align: center;
    }

    .hero-description {
        margin-inline: auto;
    }

    .hero-actions,
    .hero-notes {
        justify-content: center;
    }

    .hero-product {
        width: min(100%, 560px);
        margin-inline: auto;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .creator-panel {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 760px) {
    .mobile-menu-button {
        display: inline-flex;
    }

    .navigation {
        position: absolute;
        top: 74px;
        left: 0;
        right: 0;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding: 14px 20px 22px;
        border-bottom: 1px solid var(--border);
        background: rgba(7, 11, 14, 0.98);
    }

    .navigation.is-open {
        display: flex;
    }

    .navigation a {
        padding: 12px 0;
    }

    .navigation .nav-button {
        margin-top: 8px;
        padding: 11px 14px;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(calc(100% - 24px), var(--container));
    }

    .hero {
        padding: 74px 0;
    }

    .hero h1 {
        font-size: clamp(2.7rem, 14vw, 4.4rem);
    }

    .feature-grid,
    .screenshot-gallery {
        grid-template-columns: 1fr;
    }

    .screenshot-card,
    .screenshot-card-wide {
        grid-column: auto;
        min-height: 260px;
    }

    .creator-panel {
        padding: 32px 24px;
    }

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

    .footer-links {
        align-items: flex-start;
    }
}


.community-section {
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border);
    background:
        radial-gradient(
            circle at 12% 18%,
            rgba(255, 122, 0, 0.12),
            transparent 34%
        ),
        var(--background);
}

.community-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
    gap: 70px;
}

.community-copy h2 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.community-copy > p:last-of-type {
    max-width: 720px;
    margin-top: 24px;
    color: var(--text-muted);
    font-size: 1.02rem;
}

.community-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.community-actions span {
    max-width: 390px;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.exchange-panel {
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.012)
        );
    box-shadow: var(--shadow);
}

.exchange-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    align-items: flex-start;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 13px;
    background: rgba(7, 11, 14, 0.48);
}

.exchange-number {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border: 1px solid rgba(255, 122, 0, 0.42);
    border-radius: 10px;
    color: var(--accent-light);
    font-size: 0.74rem;
    font-weight: 900;
}

.exchange-step strong {
    display: block;
    margin-top: 1px;
    font-size: 1rem;
}

.exchange-step p {
    margin: 5px 0 0;
    color: var(--text-muted);
    font-size: 0.86rem;
}

.exchange-arrow {
    padding: 5px 0;
    color: var(--accent-light);
    text-align: center;
    font-size: 1.25rem;
    font-weight: 900;
}

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

@media (max-width: 640px) {
    .community-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .exchange-panel {
        padding: 18px;
    }

    .exchange-step {
        padding: 16px;
    }
}

.discord-button{
    background:#5865F2;
    color:white;
    min-width:250px;
    white-space:nowrap;
    box-shadow:0 12px 28px rgba(88,101,242,.35);
}

.discord-button:hover{
    background:#6975f5;
}
