/* RESET & FONTS */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

/* GLOW BACKGROUNDS */
.glow-bg-1 {
    position: fixed; top: -20%; left: -20%; width: 60vw; height: 60vw;
    background: #9333ea; filter: blur(180px); opacity: 0.15; border-radius: 50%; z-index: -1;
}
.glow-bg-2 {
    position: fixed; bottom: -20%; right: -20%; width: 60vw; height: 60vw;
    background: #2563eb; filter: blur(180px); opacity: 0.15; border-radius: 50%; z-index: -1;
}

/* LAYOUT */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; text-align: center; }

/* NAVBAR */
nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 40px; max-width: 1200px; margin: 0 auto;
}
.logo { font-family: 'Archivo Black', sans-serif; font-size: 1.2rem; letter-spacing: -1px; }
.nav-btn {
    text-decoration: none; color: #a1a1aa; font-weight: 700; font-size: 0.9rem; transition: 0.3s;
}
.nav-btn:hover { color: #fff; }

/* HERO */
.hero { padding: 100px 0 60px; }
.tag { color: #cae81a; font-weight: 700; letter-spacing: 2px; font-size: 0.9rem; display: block; margin-bottom: 20px; }
h1 {
    font-family: 'Archivo Black', sans-serif; font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; text-transform: uppercase;
}
.subtitle { color: #a1a1aa; font-size: 1.2rem; max-width: 600px; margin: 0 auto 40px; }

/* BUTTONS */
.main-cta {
    display: inline-block; background: #cae81a; color: #000; padding: 18px 40px;
    font-family: 'Archivo Black', sans-serif; font-size: 1.2rem; text-decoration: none;
    text-transform: uppercase; border-radius: 8px; transition: 0.3s;
    box-shadow: 0 10px 30px rgba(202, 232, 26, 0.2);
}
.main-cta:hover { transform: scale(1.05); background: #b4d017; box-shadow: 0 15px 40px rgba(202, 232, 26, 0.3); }

.secondary-btn {
    display: inline-block; border: 2px solid #334155; color: #fff; padding: 15px 30px;
    font-family: 'Archivo Black', sans-serif; text-decoration: none; text-transform: uppercase;
    border-radius: 8px; transition: 0.3s; width: 100%;
}
.secondary-btn:hover { border-color: #fff; background: #1e293b; }

.micro-copy { margin-top: 15px; font-size: 0.85rem; color: #52525b; }

/* FEATURES */
.features { padding: 80px 0; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.card {
    background: rgba(24, 24, 27, 0.6); border: 1px solid #27272a; padding: 30px; border-radius: 16px; text-align: left;
}
.active-card { border-color: #cae81a; background: rgba(202, 232, 26, 0.05); }
.card h3 { font-family: 'Archivo Black', sans-serif; margin-bottom: 15px; font-size: 1.5rem; }
.card p { color: #a1a1aa; font-size: 1rem; }

/* PRICING */
.pricing { padding: 80px 0; }
.pricing h2 { font-family: 'Archivo Black', sans-serif; font-size: 2.5rem; margin-bottom: 50px; }
.pricing-grid { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
.price-card {
    background: #0f172a; border: 1px solid #334155; padding: 40px; border-radius: 20px; width: 350px; position: relative;
}
.price-card.pro { border: 2px solid #cae81a; transform: scale(1.05); }
.best-value {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    background: #cae81a; color: #000; font-weight: bold; padding: 5px 15px; border-radius: 20px; font-size: 0.8rem;
}
.price { font-family: 'Archivo Black', sans-serif; font-size: 3rem; margin: 20px 0 5px; }
.period { color: #71717a; margin-bottom: 30px; font-size: 0.9rem; }
.price-card ul { list-style: none; text-align: left; margin-bottom: 30px; }
.price-card li { margin-bottom: 10px; color: #e4e4e7; border-bottom: 1px solid #1e293b; padding-bottom: 10px; }
.full-width { width: 100%; text-align: center; }

/* FOOTER */
footer { padding: 50px 0; color: #52525b; font-size: 0.9rem; margin-top: 50px; border-top: 1px solid #18181b; }

/* MOBILE */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .nav-btn { display: none; } /* Semplifichiamo su mobile */
    nav { justify-content: center; }
}
