:root {
    --bg: #0f1724;
    --card: #0b1220;
    --glass: rgba(255, 255, 255, 0.04);
    --accent: linear-gradient(90deg, #6ee7b7, #60a5fa);
    --muted: #9aa4b2;
    --glass-2: rgba(255, 255, 255, 0.02);
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
    background: radial-gradient(1200px 400px at 10% 10%, rgba(96, 165, 250, 0.06), transparent),
        radial-gradient(900px 300px at 90% 90%, rgba(110, 231, 183, 0.03), transparent),
        var(--bg);
    color: #e6eef8;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding: 48px 24px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 36px;
}

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

.logo {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, #111827, #0b1220);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(2, 6, 23, 0.6);
}

.logo svg {
    width: 34px;
    height: 34px
}

h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.tag {
    color: var(--muted);
    font-size: 13px
}

nav a {
    color: var(--muted);
    text-decoration: none;
    margin-left: 18px;
    font-weight: 600;
}

nav .btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 10px 14px;
    border-radius: 10px;
}

.hero {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 28px;
    align-items: center;
    margin-bottom: 44px;
}

.card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 8px 30px rgba(2, 6, 23, 0.6);
    border: 1px solid var(--glass-2);
}

.hero h2 {
    font-size: 34px;
    margin: 0 0 12px
}

.hero p {
    color: var(--muted);
    margin: 0 0 18px;
    line-height: 1.5
}

.cta-row {
    display: flex;
    gap: 12px
}

.btn-primary {
    background-image: var(--accent);
    padding: 12px 18px;
    border-radius: 12px;
    color: #061226;
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(96, 165, 250, 0.12);
}

.btn-ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 11px 16px;
    border-radius: 12px;
    color: var(--muted);
    cursor: pointer;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.02);
    color: var(--muted);
    font-weight: 600;
}

.panel {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.panel .stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), transparent);
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.stat strong {
    font-size: 18px
}

.muted {
    color: var(--muted);
    font-size: 13px
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.feature {
    padding: 14px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), transparent);
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.feature h4 {
    margin: 0 0 6px
}

.feature p {
    margin: 0;
    color: var(--muted);
    font-size: 13px
}

.members {
    margin-top: 28px;
    padding: 18px;
    border-radius: 12px;
    background: linear-gradient(90deg, rgba(96, 165, 250, 0.02), rgba(110, 231, 183, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.members small {
    color: var(--muted)
}

footer {
    margin-top: 44px;
    color: var(--muted);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
}

.modal {
    width: 420px;
    background: linear-gradient(180deg, #071025, #071625);
    border-radius: 12px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.modal h3 {
    margin: 0 0 8px
}

.form-row {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

input[type="text"],
input[type="email"] {
    flex: 1;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    background: transparent;
    color: inherit;
}

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

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

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

    header {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }
}

.float {
    animation: floaty 6s ease-in-out infinite
}

@keyframes floaty {
    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-6px)
    }

    100% {
        transform: translateY(0)
    }
}

.specs-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.75);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(8px);
}

.specs-modal {
    background: linear-gradient(180deg, #0b1220, #0f1724);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px 28px;
    width: 90%;
    max-width: 560px;
    color: #e6eef8;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
    overflow-y: auto;
    max-height: 80vh;
    animation: fadeIn 0.25s ease;
}

.specs-modal h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    background: linear-gradient(90deg, #6ee7b7, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.specs-modal h4 {
    margin: 10px 0 6px;
    font-weight: 600;
    color: #9dd5ff;
}

.specs-modal ul {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
}

.specs-modal li {
    font-size: 14px;
    color: #cfd9e6;
    margin-bottom: 4px;
}

.spec-block {
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

#closeSpecs {
    margin-top: 8px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #9aa4b2;
    border-radius: 10px;
    padding: 8px 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

#closeSpecs:hover {
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.98)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}