:root {
    --bg: #050a14;
    --bg-soft: #0b1220;
    --card: rgba(255,255,255,.04);
    --border: rgba(96,165,250,.18);
    --text: #ffffff;
    --muted: #cbd5e1;
    --blue: #175ddc;
    --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 {
    text-decoration: none;
}

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

/* NAVBAR */

.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;
    justify-content: space-between;
    align-items: center;
}

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

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

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

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

/* HERO */

.hero {
    min-height: 100vh;

    display: flex;
    align-items: center;

    background:
        radial-gradient(circle at 70% 45%, rgba(23,93,220,.35), transparent 35%),
        linear-gradient(
            90deg,
            rgba(4,10,20,.98) 0%,
            rgba(4,10,20,.84) 40%,
            rgba(4,10,20,.36) 100%
        ),
        url("/assets/img/background/vaultwarden-hero.png");

    background-size: cover;
    background-position: center;
}

.hero-content {
    max-width: 650px;
}

.hero-badge {
    display: inline-block;

    padding: 10px 18px;
    margin-bottom: 25px;

    border-radius: 999px;

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

    background: rgba(23,93,220,.16);

    color: #9cc7ff;

    box-shadow: 0 0 25px rgba(23,93,220,.35);
}

.hero h1 {
    font-size: clamp(3rem,8vw,6rem);

    font-weight: 900;

    line-height: .95;

    margin-bottom: 20px;

    text-shadow: 0 0 40px rgba(23,93,220,.4);
}

.hero-text {
    color: var(--muted);

    font-size: 1.2rem;

    line-height: 1.8;

    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-price {
    margin-bottom: 30px;

    color: #d1d5db;

    font-size: 1.1rem;
}

.hero-price strong {
    color: #60a5fa;

    font-size: 1.5rem;
    font-weight: 800;

    text-shadow: 0 0 20px rgba(96,165,250,.5);
}

/* BUTTONS */

.btn {
    display: inline-block;

    padding: 14px 26px;

    border-radius: 12px;

    font-weight: 700;

    transition: .25s ease;
}

.btn-primary {
    color: white;

    background: linear-gradient(
        135deg,
        #175ddc,
        #3b82f6
    );

    box-shadow: 0 0 25px rgba(23,93,220,.45);
}

.btn-primary:hover {
    transform: translateY(-2px);

    box-shadow: 0 0 35px rgba(23,93,220,.65);
}

.btn-outline {
    border: 1px solid rgba(96,165,250,.8);

    color: #9cc7ff;

    background: rgba(23,93,220,.08);
}

.btn-outline:hover {
    background: #175ddc;
    color: white;
}

/* CONTENT */

.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;

    font-size: clamp(2rem,5vw,4rem);
}

.security-box,
.feature-card,
.contact-box {
    background: var(--card);

    border: 1px solid var(--border);

    border-radius: 20px;

    box-shadow: 0 0 35px rgba(23,93,220,.12);

    backdrop-filter: blur(12px);
}

.security-box {
    padding: 40px;
}

.security-box h2 {
    margin-bottom: 20px;
}

.security-box p {
    color: var(--muted);
    margin-bottom: 15px;
    line-height: 1.8;
}

.feature-grid {
    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 20px;
}

.feature-card {
    padding: 30px;
}

.feature-card h3 {
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--muted);
}

.contact-box {
    text-align: center;
    padding: 50px;
}

.contact-box h2 {
    margin-bottom: 20px;
}

.contact-box p {
    color: var(--muted);
    margin-bottom: 30px;
}

/* MOBILE */

@media(max-width:900px){

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

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

    .nav-links{
        gap:18px;
    }

}

@media(max-width:600px){

    .nav-container{
        flex-direction:column;
        gap:10px;
        padding-bottom:10px;
    }

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

    .hero{
        text-align:center;
    }

    .hero-buttons{
        justify-content:center;
        flex-wrap:wrap;
    }

    .section{
        padding:60px 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: #cbd5e1;
}

.footer a:hover {
    color: #60a5fa;
}

.copyright {
    text-align: center;

    color: #94a3b8;

    margin-top: 40px;

    font-size: .95rem;
}

@media (max-width: 900px) {

    .footer-grid {
        grid-template-columns: 1fr;

        text-align: center;
    }

}

.pricing-box {
    max-width: 650px;

    margin: 0 auto;

    text-align: center;

    padding: 50px;

    background: rgba(255,255,255,.04);

    border: 1px solid rgba(96,165,250,.25);

    border-radius: 24px;

    backdrop-filter: blur(14px);

    box-shadow:
        0 0 40px rgba(23,93,220,.18),
        0 0 80px rgba(23,93,220,.08);
}

.pricing-badge {
    display: inline-block;

    padding: 10px 18px;

    border-radius: 999px;

    background: rgba(23,93,220,.15);

    border: 1px solid rgba(96,165,250,.4);

    color: #9cc7ff;

    margin-bottom: 20px;

    font-weight: 700;
}

.pricing-price {
    font-size: 4rem;

    font-weight: 900;

    color: #60a5fa;

    margin: 20px 0;

    text-shadow: 0 0 25px rgba(96,165,250,.4);
}

.pricing-price span {
    font-size: 1.2rem;

    color: #cbd5e1;

    font-weight: 500;
}

.pricing-list {
    list-style: none;

    margin: 35px 0;

    padding: 0;
}

.pricing-list li {
    padding: 10px 0;

    color: #d1d5db;
}

.pricing-list li::before {
    content: "✓ ";

    color: #60a5fa;

    font-weight: 800;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.faq-item {
    padding: 30px;

    background: rgba(255,255,255,.04);

    border: 1px solid rgba(96,165,250,.15);

    border-radius: 20px;

    backdrop-filter: blur(12px);

    box-shadow: 0 0 30px rgba(23,93,220,.12);
}

.faq-item h3 {
    margin-bottom: 14px;

    font-size: 1.2rem;

    color: #fff;
}

.faq-item p {
    color: #cbd5e1;

    line-height: 1.7;
}

@media (max-width: 800px) {

    .faq-grid {
        grid-template-columns: 1fr;
    }

}

.hero-buttons i {
    margin-right: 8px;
    font-size: 1.1rem;
}

.price-note {
    margin-top: 10px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.legal-note {
    margin-top: 12px;
    font-size: 0.9rem;
    color: #93c5fd;
}

.legal-note a {
    color: #60a5fa;
    text-decoration: none;
    font-weight: 700;
}

.legal-note a:hover {
    text-decoration: underline;
}

.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;
}
