/* Base */
:root {
    --bg: #0b1120;
    --bg-soft: #111827;
    --bg-card: rgba(15, 23, 42, 0.88);
    --bg-card-strong: rgba(15, 23, 42, 0.96);
    --text: #e5edf9;
    --muted: #96a6c4;
    --line: rgba(148, 163, 184, 0.18);
    --line-strong: rgba(148, 163, 184, 0.28);
    --accent: #01a1fb;
    --accent-deep: #0047bc;
    --accent-soft: rgba(1, 161, 251, 0.18);
    --accent-2: #56c3ff;
    --success: #22c55e;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
    --radius: 0px;
    --radius-sm: 0px;
    --shell: 1200px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 12% 18%, rgba(1, 161, 251, 0.24), transparent 30%),
        radial-gradient(circle at 85% 10%, rgba(0, 71, 188, 0.24), transparent 26%),
        linear-gradient(180deg, #08111f 0%, #070f1b 100%);
    min-height: 100vh;
    line-height: 1.6;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: -120px;
    padding: 0.875rem 1rem;
    background: #ffffff;
    color: #111827;
    border-radius: 0;
    z-index: 3000;
}

.skip-link:focus {
    top: 16px;
}

.shell {
    width: min(calc(100% - 2rem), var(--shell));
    margin-inline: auto;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.75rem;
    border: 1px solid var(--line);
    border-radius: 0;
    background: rgba(15, 23, 42, 0.65);
    color: #c7d3ea;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.section {
    padding: 5.5rem 0;
}

.section-alt {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 2rem;
}

.section-heading h2,
.hero-copy h1,
.download-hero h1 {
    margin: 0.9rem 0 1rem;
    line-height: 1.05;
    letter-spacing: -0.03em;
    font-size: clamp(2rem, 4vw, 4.3rem);
}

.section-heading p,
.hero-text,
.release-description,
.docs-card p,
.footer-copy,
.empty-state,
.notice {
    color: var(--muted);
}

.narrow {
    max-width: 760px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 2000;
    backdrop-filter: blur(18px);
    background: rgba(7, 12, 22, 0.74);
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.nav-shell {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.brand-logo {
    inline-size: 2.75rem;
    block-size: auto;
    flex: 0 0 auto;
    filter: drop-shadow(0 10px 22px rgba(1, 161, 251, 0.26));
}


.brand-text {
    font-size: 1.18rem;
    line-height: 1;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.site-nav a {
    color: #cad6eb;
    padding: 0.55rem 0.85rem;
    border-radius: 0;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    outline: none;
}

/* Hero */
.hero-section {
    padding: 4.5rem 0 4rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.02fr 1.1fr;
    gap: 2rem;
    align-items: center;
}

.hero-copy h1 {
    max-width: 12ch;
}

.hero-text {
    max-width: 60ch;
    font-size: 1.075rem;
}

.hero-actions,
.inline-actions,
.release-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.5rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.25rem;
    padding: 0.9rem 1.25rem;
    border-radius: 0;
    border: 1px solid transparent;
    font-weight: 700;
    transition: transform 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
    outline: none;
}

.button-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
    box-shadow: 0 14px 36px rgba(1, 161, 251, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
    box-shadow: 0 16px 42px rgba(1, 161, 251, 0.38);
}

.button-secondary {
    color: #fff;
    border-color: rgba(86, 195, 255, 0.22);
    background: rgba(1, 161, 251, 0.09);
}

.button-secondary:hover,
.button-secondary:focus-visible,
.button-tertiary:hover,
.button-tertiary:focus-visible {
    border-color: rgba(86, 195, 255, 0.28);
    background: rgba(1, 161, 251, 0.14);
}

.button-tertiary {
    color: #dbe6f7;
    border-color: rgba(86, 195, 255, 0.2);
    background: transparent;
}

.release-pills {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.pill-card,
.feature-card,
.release-card,
.docs-card,
.download-panel {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--bg-card);
    box-shadow: var(--shadow);
}

.pill-card {
    padding: 1rem 1.1rem;
    display: grid;
    gap: 0.18rem;
}

.pill-label,
.release-kind {
    color: #86d7ff;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pill-card strong {
    font-size: 1.1rem;
}

.pill-card span:last-child {
    color: var(--muted);
    font-size: 0.92rem;
}

.hero-shot {
    position: relative;
    padding-top: 1.5rem;
    max-width: 760px;
    justify-self: end;
    width: 100%;
}

.shot-badge,
.floating-download {
    position: absolute;
    z-index: 2;
    border-radius: 0;
    backdrop-filter: blur(12px);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28);
}

.shot-badge {
    top: 0;
    right: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(9, 16, 29, 0.82);
    border: 1px solid var(--line);
    color: #dce6f6;
    font-weight: 600;
}

.floating-download {
    left: 1.5rem;
    top: 1.8rem;
    padding: 0.9rem 1.15rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
    color: #fff;
    font-weight: 800;
}

.screenshot {
    width: 100%;
    height: auto;
    aspect-ratio: 1121 / 646;
    object-fit: contain;
    border-radius: 0;
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: 0 36px 90px rgba(0, 0, 0, 0.4);
    background: rgba(7, 12, 22, 0.9);
}

/* Cards and sections */
.feature-grid,
.release-grid,
.docs-grid,
.footer-grid {
    display: grid;
    gap: 1.25rem;
}

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

.feature-card,
.docs-card {
    padding: 1.4rem;
}

.feature-card h3,
.release-card h3,
.download-panel h2,
.docs-card h2 {
    margin-top: 0.4rem;
    margin-bottom: 0.75rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
    font-size: 1.45rem;
}

.feature-card p,
.release-card p,
.download-panel p,
.docs-card p {
    margin: 0;
}

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

.release-card,
.download-panel {
    padding: 1.5rem;
}

.release-card-top,
.download-panel-head {
    margin-bottom: 1rem;
}

.release-meta {
    margin-top: 0.25rem;
    color: #b3c0d8;
}

.dot-sep {
    margin-inline: 0.4rem;
    color: #6d7a93;
}

.release-description {
    min-height: 4.8rem;
}

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

.notice {
    margin-top: 1.2rem;
    padding: 1rem 1.15rem;
    border-radius: 0;
    border: 1px solid rgba(234, 179, 8, 0.25);
    background: rgba(234, 179, 8, 0.08);
}

.asset-list-wrapper {
    margin-top: 1.4rem;
    overflow-x: auto;
}

.asset-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 420px;
}

.asset-table th,
.asset-table td {
    padding: 0.9rem 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--line);
}

.asset-table th {
    color: #d4e0f2;
    font-size: 0.92rem;
    font-weight: 700;
}

.asset-table td {
    color: #b5c3db;
}

.asset-table a {
    color: #fff;
    font-weight: 600;
}

.asset-table a:hover,
.asset-table a:focus-visible {
    color: #86d7ff;
    outline: none;
}

.empty-state {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.04);
    border: 1px dashed var(--line-strong);
}

.download-hero {
    padding: 4.5rem 0 1.5rem;
}

/* Footer */
.site-footer {
    padding: 2.25rem 0 3rem;
    border-top: 1px solid var(--line);
    background: rgba(6, 10, 18, 0.65);
}

.footer-grid {
    grid-template-columns: 1.3fr 0.9fr 0.9fr;
    align-items: start;
}

.footer-brand-wrap {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.55rem;
}

.footer-logo {
    inline-size: 2.5rem;
    block-size: auto;
    filter: drop-shadow(0 8px 18px rgba(1, 161, 251, 0.22));
}

.footer-brand {
    font-size: 1.1rem;
    font-weight: 800;
}

.footer-copy {
    max-width: 52ch;
    margin: 0;
}

.footer-links {
    display: grid;
    gap: 0.6rem;
}

.footer-links a,
.footer-meta {
    color: #c6d2e6;
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: #fff;
    outline: none;
}

.footer-meta {
    display: grid;
    gap: 0.45rem;
    font-size: 0.95rem;
}

.sr-only {
    position: absolute;
    inline-size: 1px;
    block-size: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    white-space: nowrap;
    border: 0;
    clip-path: inset(50%);
}

/* Responsive */
@media (max-width: 1040px) {
    .hero-grid,
    .feature-grid,
    .release-grid,
    .docs-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy h1 {
        max-width: none;
    }

    .hero-shot {
        justify-self: stretch;
        max-width: none;
    }

    .shot-badge {
        right: auto;
        left: 1rem;
    }

    .floating-download {
        top: 4.8rem;
    }
}

@media (max-width: 720px) {
    .nav-shell {
        padding-block: 0.9rem;
        align-items: flex-start;
        flex-direction: column;
    }

    .site-nav {
        width: 100%;
        gap: 0.5rem;
    }

    .site-nav a {
        padding-inline: 0;
    }

    .hero-section,
    .download-hero {
        padding-top: 3rem;
    }

    .hero-actions,
    .release-actions,
    .inline-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .button {
        width: 100%;
    }

    .release-pills {
        grid-template-columns: 1fr;
    }

    .shot-badge,
    .floating-download {
        position: static;
        display: inline-flex;
        margin-bottom: 0.9rem;
    }
}


.support-note {
    margin-top: 1rem;
    color: #c3d1e7;
    font-size: 0.95rem;
}

.package-card {
    max-width: 820px;
}

.package-card h2 {
    margin-bottom: 0.75rem;
}

[hidden] {
    display: none !important;
}

.button-compact {
    min-height: 2.75rem;
    padding: 0.7rem 1rem;
}

.addon-hero code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
    font-size: 0.95em;
    padding: 0.15rem 0.4rem;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.06);
}

.addons-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.search-field {
    flex: 1 1 420px;
}

.search-field input {
    width: 100%;
    min-height: 3.4rem;
    padding: 0.9rem 1rem;
    border-radius: 0;
    border: 1px solid var(--line-strong);
    background: rgba(8, 15, 29, 0.84);
    color: var(--text);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.search-field input::placeholder {
    color: #8194b6;
}

.search-field input:focus-visible {
    outline: 2px solid rgba(86, 195, 255, 0.55);
    outline-offset: 2px;
}

.addons-toolbar-meta {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
    color: var(--muted);
}

.addon-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

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

.addon-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.35rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(12, 20, 36, 0.94), rgba(8, 14, 27, 0.94));
    box-shadow: var(--shadow);
}

.addon-card-compact {
    gap: 0.85rem;
}

.addon-card-top h2,
.addon-card-top h3 {
    margin: 0.55rem 0 0;
    line-height: 1.15;
}

.addon-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.mini-badge {
    display: inline-flex;
    align-items: center;
    min-height: 1.9rem;
    padding: 0.25rem 0.65rem;
    border-radius: 0;
    border: 1px solid rgba(86, 195, 255, 0.22);
    background: rgba(1, 161, 251, 0.12);
    color: #d8e8ff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.mini-badge-muted {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--line);
    color: #bfd0ea;
}

.addon-path,
.addon-meta-row,
.addon-description {
    color: var(--muted);
}

.addon-path {
    margin: 0.3rem 0 0;
    font-size: 0.92rem;
}

.addon-description {
    margin: 0;
}

.addon-meta-row {
    margin-top: auto;
    font-size: 0.92rem;
}

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

.section-cta {
    margin-top: 1.5rem;
}

@media (max-width: 1100px) {
    .addon-grid,
    .addon-grid-compact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .addon-grid,
    .addon-grid-compact {
        grid-template-columns: 1fr;
    }
}

.hero-visual .button, .hero-visual .hero-meta, .hero-visual .hero-floating-cta, .hero-media .hero-meta, .hero-shot .hero-meta{display:none!important;}


.addon-disclaimer {
    max-width: 760px;
    margin-top: 1.25rem;
    padding: 1rem 1.1rem;
    border: 1px solid var(--line-strong);
    background: rgba(255, 255, 255, 0.04);
    color: var(--muted);
}
