:root {
    --bg1: #0b0b0c;
    --bg2: #101114;
    --mint: #b9f1e4;
    --mintDeep: #6ed8c7;
    --pink: #ffa8c5;
    --pinkDeep: #ff6fa6;
    --sprinkleBlue: #7cc4ff;
    --sprinkleYellow: #ffd877;
    --sprinklePurple: #c5a4ff;
    --card: rgba(255, 255, 255, .05);
    --border: rgba(255, 255, 255, .12);
    --text: #ffffff;
    --muted: rgba(255, 255, 255, .78);
    --shadow: 0 20px 40px rgba(0, 0, 0, .35);
}

* {
    box-sizing: border-box
}

html,
body {
    margin: 0
}

body {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, Roboto;
    color: var(--text);
}

.bg {
    background:
        radial-gradient(900px 600px at 10% -10%, rgba(255, 168, 197, .12), transparent 60%),
        radial-gradient(800px 500px at 105% 0%, rgba(185, 241, 228, .12), transparent 60%),
        linear-gradient(180deg, var(--bg1), var(--bg2));
    min-height: 100svh;
}

/* Layout */
.container {
    max-width: 1180px;
    margin-inline: auto;
    padding: 24px 20px 64px
}

.grid {
    display: grid;
    gap: 32px
}

.hero {
    grid-template-columns: 1fr;
    align-items: center
}

@media (min-width:900px) {
    .hero {
        grid-template-columns: 1.2fr .8fr
    }
}

.row {
    display: flex;
    align-items: center
}

.gap {
    gap: 12px
}

.col {
    display: flex;
    flex-direction: column;
    gap: 16px
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 20px;
    background: rgba(0, 0, 0, .35);
    backdrop-filter: saturate(1.2) blur(10px);
    border-bottom: 1px solid var(--border);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text)
}

.brand-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, .18)
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1
}

.brand-text strong {
    font-weight: 800
}

.brand-text span {
    font-size: 12px;
    color: var(--mint)
}

.nav {
    display: flex;
    flex-wrap: wrap;
    gap: 6px
}

.nav-link {
    color: rgba(255, 255, 255, .86);
    text-decoration: none;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: 12px;
    border: 1px solid transparent
}

.nav-link:hover {
    background: rgba(255, 255, 255, .1)
}

.nav-link.is-active {
    background: rgba(255, 255, 255, .2);
    border-color: var(--border)
}

/* Mobile burger */
#nav-toggle {
    display: none
}

.burger {
    display: none;
    width: 38px;
    height: 34px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .08);
    position: relative;
    cursor: pointer
}

.burger::before,
.burger::after {
    content: \"\";
    position: absolute;
    left: 8px;
    right: 8px;
    height: 2px;
    background: rgba(255, 255, 255, .85);
    top: 12px;
    box-shadow: 0 8px 0 rgba(255, 255, 255, .85)
}

@media (max-width:820px) {
    .burger {
        display: block
    }

    .nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 64px;
        padding: 12px 20px;
        background: rgba(0, 0, 0, .95);
        border-bottom: 1px solid var(--border);
        display: none
    }

    #nav-toggle:checked~.nav {
        display: flex
    }
}

/* Text + helpers */
h1 {
    font-size: 42px;
    line-height: 1.05;
    margin: 0
}

@media (min-width:900px) {
    h1 {
        font-size: 64px
    }
}

h3 {
    margin: .2em 0 .4em;
    font-size: 22px
}

.page-title {
    font-size: 36px;
    margin: 10px 0 22px
}

.muted {
    color: var(--muted)
}

.pill {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    font-weight: 700;
    background: #00000099;
    border: 1px solid var(--border);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 14px
}

.pill::before {
    content: \"\";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--mintDeep)
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 14px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    background: linear-gradient(180deg, rgba(255, 255, 255, .15), rgba(255, 255, 255, .06));
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transform: translateZ(0);
    transition: transform .05s ease, background .2s ease
}

.btn:hover {
    background: rgba(255, 255, 255, .22)
}

.btn:active {
    transform: scale(.98)
}

.btn.small {
    padding: 10px 14px;
    font-size: 14px
}

.btn.ghost {
    background: rgba(255, 255, 255, .08)
}

.mint {
    color: var(--mintDeep)
}

.pink {
    color: var(--pinkDeep)
}

/* Cards */
.cards-3 {
    display: grid;
    gap: 18px;
    grid-template-columns: 1fr
}

@media (min-width:900px) {
    .cards-3 {
        grid-template-columns: repeat(3, 1fr)
    }
}

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 18px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(8px)
}

.card.price .tag {
    display: inline-block;
    font-weight: 800;
    margin-bottom: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #00000099;
    border: 1px solid var(--border)
}

.card.price .tag.pink {
    background: rgba(255, 111, 166, .18)
}

.card.price .tag.blue {
    background: rgba(124, 196, 255, .18)
}

.price-amount {
    font-size: 36px;
    font-weight: 800
}

.price-amount span {
    font-size: 14px;
    color: var(--muted)
}

.list {
    padding-left: 18px
}

.list li {
    margin: 6px 0
}

/* Hero right block */
.logo-card {
    position: relative;
    display: grid;
    place-items: center;
    aspect-ratio: 1/1;
    width: min(80vw, 320px);
    margin-inline: auto;
    border-radius: 30px;
    background: var(--card);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    overflow: hidden
}

.logo-card img {
    width: 60%;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, .45))
}

.glow {
    position: absolute;
    inset: -8px;
    background: conic-gradient(from 90deg, rgba(255, 111, 166, .25), rgba(124, 196, 255, .25), rgba(110, 216, 199, .25), rgba(255, 216, 119, .25), rgba(255, 111, 166, .25));
    filter: blur(24px)
}

.badges {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    text-align: center
}

.badges span {
    background: #00000066;
    border: 1px solid var(--border);
    padding: 8px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 12px
}

/* CTA */
.cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px
}

/* Footer */
.site-footer {
    display: grid;
    gap: 18px;
    grid-template-columns: 1fr;
    border-top: 1px solid var(--border);
    padding: 26px 20px
}

.site-footer.small {
    text-align: center
}

@media (min-width:900px) {
    .site-footer {
        grid-template-columns: 1.4fr .8fr .8fr
    }
}

.site-footer h4 {
    margin: 0 0 6px
}