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

body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
    background: radial-gradient(ellipse at 50% 20%, #020617 0%, #020617 30%, #020617 100%);
    color: #f5f5f7;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Nav (same style as index) */
.nav {
    max-width: 1120px;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 6px;
}

.logo-mark {
    font-size: 18px;
    color: #5ac8fa;
}

.logo-text {
    font-weight: 600;
    letter-spacing: 0.08em;
    font-size: 14px;
}

.nav-links a {
    margin-left: 18px;
    font-size: 14px;
    color: #a1a1aa;
    transition: color 0.18s ease;
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-links a.active {
    color: #ffffff;
}

/* Hero */
.pricing-hero {
    max-width: 1120px;
    margin: 40px auto 20px;
    padding: 0 20px;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 11px;
    color: #9ca3af;
    margin-bottom: 10px;
}

.pricing-hero h1 {
    font-size: 34px;
    margin-bottom: 10px;
}

.subcopy {
    font-size: 15px;
    color: #d4d4d8;
    max-width: 480px;
}

/* Pricing Grid */
.pricing-grid {
    max-width: 1120px;
    margin: 30px auto 40px;
    padding: 0 20px 10px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.card {
    background: radial-gradient(circle at top, rgba(148,163,184,0.14), rgba(24,24,27,0.96));
    border-radius: 20px;
    padding: 20px 18px 18px;
    border: 1px solid rgba(39,39,42,0.9);
    box-shadow:
        0 22px 40px rgba(0,0,0,0.55),
        0 0 0 1px rgba(82,82,91,0.28);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.card h2 {
    font-size: 16px;
    font-weight: 600;
}

.plan-label {
    font-size: 13px;
    color: #a5b4fc;
}

.price {
    font-size: 26px;
    font-weight: 600;
    margin-top: 4px;
}

.card .badge {
    font-size: 11px;
    align-self: flex-start;
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(34,197,94,0.18);
    color: #bbf7d0;
}

.card ul {
    list-style: none;
    margin-top: 8px;
    margin-bottom: 14px;
    padding-left: 0;
    font-size: 13px;
    color: #d4d4d8;
}

.card ul li + li {
    margin-top: 4px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 9px 18px;
    font-size: 13px;
    border: 1px solid rgba(255,255,255,0.18);
    color: #f5f5f7;
    background: transparent;
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.1s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn.primary {
    background: #007aff;
    border-color: #007aff;
}

.highlighted {
    border-color: rgba(96,165,250,0.8);
    box-shadow:
        0 24px 50px rgba(37,99,235,0.45),
        0 0 0 1px rgba(96,165,250,0.7);
    position: relative;
    transform: translateY(-4px);
}

/* Footer */
.site-footer {
    max-width: 1120px;
    margin: 0 auto 16px;
    padding: 12px 20px;
    font-size: 12px;
    color: #71717a;
    border-top: 1px solid rgba(39,39,42,0.9);
}

/* Responsive */
@media (max-width: 960px) {
    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
}

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