:root {
    --bg: #050a14;
    --card: rgba(255,255,255,.04);
    --border: rgba(96,165,250,.18);
    --text: #ffffff;
    --muted: #cbd5e1;
    --blue-light: #60a5fa;
}

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

body {
    background: var(--bg);
    color: var(--text);
    font-family: "Work Sans", Arial, sans-serif;
}

a {
    color: var(--blue-light);
    text-decoration: none;
}

.container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

.jin-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;

    background: rgba(5,10,20,.72);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand img {
    width: 104px;
    height: 104px;
    object-fit: contain;
}

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

.nav-links a {
    font-weight: 700;
    color: #e5e7eb;
    transition: .25s ease;
}

.nav-links a:hover {
    color: var(--blue-light);
    text-shadow: 0 0 18px rgba(96,165,250,.6);
}

.legal-hero {
    min-height: 45vh;
    display: flex;
    align-items: center;
    padding-top: 130px;

    background:
        radial-gradient(circle at 72% 38%, rgba(23,93,220,.35), transparent 34%),
        linear-gradient(180deg, rgba(4,10,20,.86), rgba(4,10,20,1));
}

.hero-badge {
    display: inline-block;
    padding: 9px 16px;
    margin-bottom: 20px;

    border: 1px solid rgba(96,165,250,.7);
    border-radius: 999px;

    background: rgba(23,93,220,.16);
    color: #9cc7ff;

    font-weight: 700;
    box-shadow: 0 0 25px rgba(23,93,220,.32);
}

.legal-hero h1 {
    font-size: clamp(2.8rem, 8vw, 6rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    margin-bottom: 18px;
    text-shadow: 0 0 40px rgba(23,93,220,.4);
}

.legal-hero p {
    color: var(--muted);
    font-size: 1.2rem;
}

.legal-section {
    padding: 90px 0;

    background:
        radial-gradient(circle at 15% 20%, rgba(23,93,220,.14), transparent 30%),
        var(--bg);
}

.legal-container {
    width: min(950px, 92%);
    margin: 0 auto;
}

.legal-card {
    margin-bottom: 28px;
    padding: 34px;

    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;

    box-shadow: 0 0 40px rgba(23,93,220,.13);
    backdrop-filter: blur(12px);
}

.legal-card h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 18px;
}

.legal-card p {
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-card p:last-child {
    margin-bottom: 0;
}

.footer {
    background: #030712;
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 60px 0 25px;
}

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

.footer h3 {
    font-size: 1rem;
    color: white;
    margin-bottom: 14px;
}

.footer p,
.footer a {
    color: var(--muted);
}

.footer a:hover {
    color: var(--blue-light);
}

.copyright {
    text-align: center;
    color: #94a3b8;
    margin-top: 40px;
    font-size: .95rem;
}

@media (max-width: 900px) {
    .navbar-brand img {
        width: 82px;
        height: 82px;
    }

    .nav-links {
        gap: 18px;
        font-size: .95rem;
    }

    .legal-hero {
        text-align: center;
        padding-top: 140px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .nav-container {
        flex-direction: column;
        gap: 8px;
        padding-bottom: 12px;
    }

    .navbar-brand img {
        width: 72px;
        height: 72px;
    }

    .nav-links {
        gap: 16px;
    }

    .legal-hero {
        padding-top: 165px;
    }

    .legal-section {
        padding: 60px 0;
    }

    .legal-card {
        padding: 22px;
        border-radius: 20px;
    }

    .legal-card p {
        font-size: 1rem;
    }
}

.footer,
.footer * {
    font-weight: 400 !important;
}

.footer h3 {
    font-weight: 700 !important;
}

.footer p,
.footer a {
    font-size: 1rem !important;
    line-height: 1.6 !important;
}

.footer p {
    line-height: 1.8;
}

.footer a {
    display: inline-block;
    margin-bottom: 6px;
}
