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

body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
    color: #f5f7fb;
    background: radial-gradient(circle at top, #111820 0%, #05070b 55%, #020308 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.landing {
    background-image:
        radial-gradient(circle at top left, rgba(0, 255, 140, 0.25), transparent 60%),
        radial-gradient(circle at bottom right, rgba(0, 140, 255, 0.15), transparent 65%),
        linear-gradient(145deg, #05070b 0%, #020308 50%, #05070b 100%);
    background-blend-mode: screen, normal, normal;
}

.legal-page {
    background-image:
        radial-gradient(circle at top, rgba(0, 255, 140, 0.18), transparent 55%),
        linear-gradient(165deg, #05070b 0%, #020308 60%, #05070b 100%);
    background-blend-mode: screen, normal;
}

.top-nav {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-mark {
    width: 32px;
    height: 32px;
    border-radius: 12px;
    background: radial-gradient(circle at 20% 0%, #2cff90 0%, #009e45 40%, #004422 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: #05070b;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-title {
    font-weight: 600;
    font-size: 16px;
}

.logo-subtitle {
    font-size: 12px;
    opacity: 0.8;
}

.nav-links {
    display: flex;
    gap: 14px;
}

.nav-link {
    text-decoration: none;
    font-size: 14px;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #e2e6f3;
    background: rgba(5, 7, 11, 0.7);
    backdrop-filter: blur(16px);
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.nav-link:hover {
    background: rgba(15, 246, 144, 0.14);
    border-color: rgba(15, 246, 144, 0.5);
}

.nav-link.active {
    background: linear-gradient(135deg, #1de38f, #0cb76b);
    color: #05070b;
}

/* Layout */

.main-content {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 10px 20px 80px;
    flex: 1;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
    gap: 30px;
    align-items: center;
    margin-top: 10px;
    padding: 24px 22px;
    border-radius: 26px;
    background: radial-gradient(circle at top left, rgba(0, 255, 160, 0.18), transparent 55%),
                linear-gradient(145deg, rgba(7, 10, 18, 0.95), rgba(5, 8, 14, 0.98));
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-text h1 {
    font-size: 32px;
    letter-spacing: 0.01em;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #d2d8ea;
}

.hero-domain {
    font-size: 13px;
    opacity: 0.9;
}

.hero-screens {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: flex-end;
}

.screen-card {
    background: radial-gradient(circle at top, rgba(0, 255, 140, 0.2), transparent 60%),
                rgba(4, 7, 13, 0.96);
    border-radius: 32px;
    padding: 10px 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.75);
    max-width: 210px;
}

.screen-card img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 26px;
}

.screen-card figcaption {
    margin-top: 8px;
    font-size: 12px;
    text-align: center;
    color: #c9d1eb;
}

.info-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.info-card {
    padding: 18px 18px 20px;
    border-radius: 24px;
    background: rgba(7, 10, 18, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
}

.info-card h2 {
    font-size: 18px;
    margin-bottom: 8px;
}

.info-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #d0d6ea;
    margin-bottom: 6px;
}

.support-card {
    margin-top: 26px;
    padding: 18px 18px 20px;
    border-radius: 24px;
    background: radial-gradient(circle at top, rgba(0, 255, 160, 0.18), transparent 65%),
                rgba(7, 11, 18, 0.97);
    border: 1px solid rgba(27, 255, 170, 0.5);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.75);
}

.support-card h2 {
    font-size: 18px;
    margin-bottom: 8px;
}

.support-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #d8def0;
    margin-bottom: 6px;
}

.support-card a {
    color: #34f3a0;
    text-decoration: none;
}

.support-card a:hover {
    text-decoration: underline;
}

/* Legal pages */

.legal h1 {
    font-size: 26px;
    margin-bottom: 14px;
}

.legal p {
    font-size: 14px;
    line-height: 1.7;
    color: #d4daec;
    margin-bottom: 10px;
}

.legal-list {
    margin-top: 10px;
    list-style: none;
    counter-reset: legal-counter;
}

.legal-list > li {
    counter-increment: legal-counter;
    margin-bottom: 16px;
    padding: 16px 16px 18px;
    border-radius: 22px;
    background: rgba(6, 9, 15, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.65);
}

.legal-list > li h2 {
    font-size: 18px;
    margin-bottom: 6px;
}

.legal-list > li h2::before {
    content: counter(legal-counter) ". ";
}

.legal-list ul {
    margin-left: 18px;
    margin-bottom: 8px;
    list-style: disc;
}

.legal-list li ul li {
    font-size: 14px;
    line-height: 1.6;
    color: #d4daec;
}

/* Bottom navigation */

.bottom-nav {
    width: 100%;
    padding: 14px 0 18px;
    display: flex;
    justify-content: center;
    gap: 10px;
    background: radial-gradient(circle at top, rgba(0, 255, 160, 0.2), transparent 65%),
                rgba(2, 3, 7, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.bottom-button {
    min-width: 120px;
    text-align: center;
    text-decoration: none;
    font-size: 13px;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #f5f7fb;
    background: rgba(5, 8, 13, 0.96);
    backdrop-filter: blur(16px);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.bottom-button:hover {
    background: linear-gradient(135deg, #19e28b, #0fbf73);
    border-color: transparent;
    color: #05070b;
    transform: translateY(-1px);
}

/* Responsive */

@media (max-width: 860px) {
    .hero {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-screens {
        justify-content: center;
    }

    .top-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .nav-links {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}

@media (max-width: 540px) {
    .main-content {
        padding-inline: 14px;
    }

    .hero {
        padding: 18px 14px;
    }

    .screen-card {
        max-width: 180px;
    }

    .logo-title {
        font-size: 15px;
    }

    .logo-subtitle {
        font-size: 11px;
    }
}
