
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #050505;
    --card: #0b0b0b;
    --card-hover: #101010;
    --white: #ffffff;
    --gray: #8b8b8b;
    --dark-gray: #242424;
    --border: rgba(255,255,255,0.09);
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background:
        radial-gradient(
            circle at 50% -10%,
            rgba(255,255,255,0.08),
            transparent 35%
        ),
        var(--bg);

    color: var(--white);

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    overflow-x: hidden;
}


/* =========================
   NOISE
========================= */

.noise {
    position: fixed;
    inset: 0;

    pointer-events: none;

    opacity: .035;

    z-index: 999;

    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}


/* =========================
   NAVBAR
========================= */

.navbar {
    width: 100%;
    height: 82px;

    padding: 0 7%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid rgba(255,255,255,.07);

    background: rgba(5,5,5,.72);

    backdrop-filter: blur(18px);

    position: relative;
    z-index: 10;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;

    font-size: 16px;
    font-weight: 800;
    letter-spacing: 2px;
}

.brand img {
    width: 38px;
    height: 38px;

    object-fit: cover;

    border-radius: 10px;

    border: 1px solid rgba(255,255,255,.16);
}

.status {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #8e8e8e;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.status-dot {
    width: 6px;
    height: 6px;

    background: white;

    border-radius: 50%;

    box-shadow: 0 0 12px rgba(255,255,255,.8);

    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: .4;
    }

    50% {
        opacity: 1;
    }
}


/* =========================
   HERO
========================= */

.hero {
    text-align: center;

    max-width: 720px;

    margin: 0 auto;

    padding: 105px 20px 70px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 7px 12px;

    border: 1px solid rgba(255,255,255,.1);

    background: rgba(255,255,255,.025);

    border-radius: 999px;

    color: #a5a5a5;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 25px;

    animation: fadeUp .7s ease both;
}

.eyebrow span {
    width: 5px;
    height: 5px;

    background: white;

    border-radius: 50%;

    box-shadow: 0 0 10px white;
}

.hero h1 {
    font-size: clamp(48px, 7vw, 82px);

    line-height: .95;

    letter-spacing: -4px;

    font-weight: 900;

    animation: fadeUp .7s .08s ease both;
}

.hero h1 span {
    color: #777;
}

.hero p {
    max-width: 510px;

    margin: 25px auto 0;

    color: #777;

    font-size: 15px;

    line-height: 1.7;

    animation: fadeUp .7s .16s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================
   PRICING
========================= */

.pricing-grid {
    width: min(1180px, 90%);

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 16px;

    padding-bottom: 110px;
}


/* =========================
   CARD
========================= */

.price-card {
    --mouse-x: 50%;
    --mouse-y: 50%;

    position: relative;

    min-height: 470px;

    padding: 28px;

    overflow: hidden;

    background: linear-gradient(
        145deg,
        #0d0d0d,
        #080808
    );

    border: 1px solid var(--border);

    border-radius: 18px;

    transition:
        transform .18s ease,
        border-color .3s ease,
        background .3s ease;

    animation: cardIn .7s ease both;
}

.price-card:nth-child(1) {
    animation-delay: .1s;
}

.price-card:nth-child(2) {
    animation-delay: .16s;
}

.price-card:nth-child(3) {
    animation-delay: .22s;
}

.price-card:nth-child(4) {
    animation-delay: .28s;
}

@keyframes cardIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* MOUSE LIGHT */

.price-card::before {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    left: var(--mouse-x);
    top: var(--mouse-y);

    transform: translate(-50%, -50%);

    background:
        radial-gradient(
            circle,
            rgba(255,255,255,.11),
            transparent 68%
        );

    opacity: 0;

    pointer-events: none;

    transition: opacity .25s ease;
}

.price-card:hover::before {
    opacity: 1;
}


/* MOVING BORDER */

.price-card::after {
    content: "";

    position: absolute;

    inset: -1px;

    border-radius: 19px;

    padding: 1px;

    background:
        radial-gradient(
            180px circle at var(--mouse-x) var(--mouse-y),
            rgba(255,255,255,.55),
            transparent 70%
        );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;

    mask-composite: exclude;

    opacity: 0;

    pointer-events: none;

    transition: opacity .25s ease;
}

.price-card:hover::after {
    opacity: 1;
}

.price-card:hover {
    border-color: rgba(255,255,255,.18);
}


/* =========================
   POPULAR
========================= */

.popular {
    border-color: rgba(255,255,255,.22);
}

.popular-badge {
    position: absolute;

    top: 16px;
    right: 16px;

    padding: 6px 10px;

    background: white;

    color: black;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1.2px;

    border-radius: 5px;

    transform: rotate(3deg);

    box-shadow:
        0 6px 25px rgba(255,255,255,.08);
}


/* =========================
   CARD CONTENT
========================= */

.card-top {
    position: relative;
    z-index: 2;

    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    min-height: 86px;
}

.plan-name {
    font-size: 21px;

    font-weight: 800;

    letter-spacing: -.5px;
}

.plan-subtitle {
    margin-top: 7px;

    color: #666;

    font-size: 11px;

    letter-spacing: .4px;
}

.price {
    font-size: 43px;

    font-weight: 900;

    letter-spacing: -2px;
}

.price span {
    font-size: 18px;

    color: #777;

    vertical-align: top;

    margin-right: 2px;
}


/* =========================
   DIVIDER
========================= */

.divider {
    height: 1px;

    background: rgba(255,255,255,.08);

    margin: 18px 0 27px;
}


/* =========================
   FEATURES
========================= */

ul {
    position: relative;
    z-index: 2;

    list-style: none;

    display: flex;

    flex-direction: column;

    gap: 16px;
}

li {
    display: flex;

    align-items: center;

    gap: 10px;

    color: #999;

    font-size: 12px;

    line-height: 1.4;
}

.check {
    width: 20px;
    height: 20px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 6px;

    background: rgba(255,255,255,.06);

    border: 1px solid rgba(255,255,255,.08);

    color: white;

    font-size: 10px;
}


/* =========================
   BUTTON
========================= */

.buy-btn {
    position: absolute;

    z-index: 3;

    left: 28px;
    right: 28px;
    bottom: 28px;

    height: 49px;

    border: 1px solid rgba(255,255,255,.12);

    border-radius: 10px;

    background: #fff;

    color: #000;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 1.5px;

    cursor: pointer;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 15px;

    transition:
        transform .2s ease,
        background .2s ease,
        box-shadow .2s ease;
}

.buy-btn span {
    font-size: 17px;

    transition: transform .2s ease;
}

.buy-btn:hover {
    background: #e9e9e9;

    transform: translateY(-2px);

    box-shadow:
        0 10px 35px rgba(255,255,255,.08);
}

.buy-btn:hover span {
    transform: translateX(5px);
}

.buy-btn:active {
    transform: translateY(0) scale(.98);
}


/* =========================
   FOOTER
========================= */

footer {
    width: 90%;

    max-width: 1180px;

    margin: 0 auto;

    padding: 25px 0 35px;

    border-top: 1px solid rgba(255,255,255,.07);

    display: flex;

    justify-content: space-between;

    color: #444;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 1050px) {

    .pricing-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}

@media (max-width: 600px) {

    .navbar {
        height: 70px;

        padding: 0 5%;
    }

    .status {
        font-size: 8px;
    }

    .hero {
        padding:
            75px 20px
            55px;
    }

    .hero h1 {
        font-size: 52px;

        letter-spacing: -3px;
    }

    .hero p {
        font-size: 13px;
    }

    .pricing-grid {
        width: 92%;

        grid-template-columns: 1fr;

        gap: 14px;
    }

    .price-card {
        min-height: 445px;
    }

    footer {
        width: 92%;
    }

}

