* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Outfit', sans-serif;
}

body {
    min-height: 100vh;
    background: radial-gradient(circle at 50% 0%, #ffffff 0%, #edf2f8 52%, #e2e8f0 100%);
    color: #0f172a;
    padding: 1.2rem;
}

.page-wrap {
    max-width: 1180px;
    margin: 0 auto;
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.6rem;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.brand-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: #06b6d4;
}

.brand-text {
    font-weight: 800;
    color: #0f172a;
    font-size: 1.2rem;
}

nav {
    display: inline-flex;
    gap: 10px;
}

.nav-link {
    text-decoration: none;
    border: 1px solid rgba(15, 23, 42, 0.22);
    border-radius: 10px;
    color: #0f172a;
    padding: 8px 12px;
    font-weight: 600;
    background: #fff;
}

.hero {
    text-align: center;
    margin-bottom: 1.8rem;
}

.eyebrow {
    color: #dc2626;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

h1 {
    font-size: clamp(1.6rem, 4vw, 2.7rem);
    margin-bottom: 0.55rem;
}

.hero p {
    color: #475569;
    max-width: 760px;
    margin: 0 auto;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.plan-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.15);
    border-radius: 16px;
    padding: 1.1rem;
}

.plan-card.featured {
    border-color: rgba(37, 99, 235, 0.4);
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.14);
    background: #fef9e7;
}

.plan-card h2 {
    font-size: 1.45rem;
    margin-bottom: 0.45rem;
}

.price {
    font-size: 1.9rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
}

.price span {
    font-size: 0.92rem;
    font-weight: 600;
    color: #475569;
}

.desc {
    color: #475569;
    margin-bottom: 0.8rem;
}

ul {
    list-style: none;
    display: grid;
    gap: 0.45rem;
}

li {
    color: #1e293b;
    font-size: 0.95rem;
    padding-left: 1rem;
    position: relative;
}

li::before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    left: 0;
    top: 0.52rem;
    background: #0ea5e9;
}

@media (max-width: 960px) {
    .plans-grid {
        grid-template-columns: 1fr;
    }
}

.site-footer {
    margin-top: 1.2rem;
    text-align: center;
    color: #475569;
    font-size: 0.86rem;
    padding-bottom: 0.6rem;
}

.site-footer a {
    color: #0f4fa8;
    text-decoration: none;
    margin: 0 10px;
    font-weight: 600;
}

.site-footer a:hover {
    text-decoration: underline;
}
