:root {
    --bg: #080610;
    --bg-raised: #0d0b18;
    --surface: rgba(255, 255, 255, 0.032);
    --surface-hover: rgba(157, 78, 221, 0.085);
    --border: rgba(255, 255, 255, 0.08);
    --border-accent: rgba(157, 78, 221, 0.32);
    --accent: #9d4edd;
    --accent-light: #c084fc;
    --text: #eee8f8;
    --text-muted: #8c829e;
    --font-display: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'DM Sans', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    color: var(--text);
    background-color: var(--bg);
    background-image:
        radial-gradient(circle at 50% 0%, rgba(157, 78, 221, 0.08), transparent 34%),
        linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
    background-size: auto, 64px 64px, 64px 64px;
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
}

.page-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    min-height: 68px;
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 0 5%;
    background: rgba(8, 6, 16, 0.94);
    border-bottom: 1px solid var(--border);
}

.brand {
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
}

.brand em {
    color: var(--accent-light);
    font-style: normal;
}

.page-nav nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin: 0 auto;
}

.page-nav nav a {
    color: var(--text-muted);
    font-size: 0.86rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.page-nav nav a:hover,
.page-nav nav a[aria-current="page"] {
    color: var(--text);
}

.nav-cta,
.button-primary,
.button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 11px;
    font-family: var(--font-display);
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.nav-cta,
.button-primary {
    color: #fff;
    background: var(--accent);
}

.nav-cta {
    flex-shrink: 0;
    padding: 9px 20px;
    font-size: 0.85rem;
}

.button-primary,
.button-secondary {
    padding: 13px 24px;
}

.button-secondary {
    border: 1px solid var(--border-accent);
    background: rgba(255, 255, 255, 0.025);
}

.nav-cta:hover,
.button-primary:hover,
.button-secondary:hover {
    transform: translateY(-2px);
}

.button-secondary:hover {
    border-color: var(--accent-light);
}

main {
    overflow: hidden;
}

.page-hero,
.section,
.cta-panel,
.page-footer-inner {
    width: min(1120px, 90%);
    margin-inline: auto;
}

.page-hero {
    position: relative;
    isolation: isolate;
    padding: 110px 0 86px;
    text-align: center;
}

.page-hero::before {
    position: absolute;
    z-index: -1;
    top: -68px;
    left: 50%;
    width: min(820px, 95vw);
    height: 420px;
    background: radial-gradient(ellipse at center, rgba(157, 78, 221, 0.13), transparent 68%);
    content: "";
    pointer-events: none;
    transform: translateX(-50%);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 26px;
    padding: 9px 16px;
    color: var(--accent-light);
    border: 1px solid var(--border-accent);
    border-radius: 999px;
    background: rgba(157, 78, 221, 0.08);
    font-family: var(--font-display);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-light);
    box-shadow: 0 0 12px rgba(192, 132, 252, 0.6);
    content: "";
}

h1,
h2,
h3 {
    font-family: var(--font-display);
}

h1 {
    max-width: 900px;
    margin: 0 auto;
    font-size: clamp(2.65rem, 6.8vw, 5.7rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.055em;
}

h1 span,
.accent-text {
    color: var(--accent-light);
}

.lead {
    max-width: 720px;
    margin: 28px auto 0;
    color: var(--text-muted);
    font-size: clamp(1.03rem, 1.7vw, 1.24rem);
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.section {
    padding: 84px 0;
    border-top: 1px solid var(--border);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 36px;
}

.section-heading.center {
    margin-inline: auto;
    text-align: center;
}

.kicker {
    display: inline-flex;
    align-items: center;
    margin-bottom: 16px;
    padding: 7px 11px;
    color: var(--accent-light);
    border: 1px solid rgba(157, 78, 221, 0.23);
    border-radius: 999px;
    background: rgba(157, 78, 221, 0.07);
    font-family: var(--font-display);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.section-heading p,
.card p,
.prose p,
.prose li,
.faq-item p {
    color: var(--text-muted);
    line-height: 1.7;
}

.section-heading p {
    margin-top: 15px;
    font-size: 1.04rem;
}

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

.card-grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
    position: relative;
    overflow: hidden;
    min-height: 222px;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.014)),
        var(--surface);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
    transition: transform 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
}

.card:hover {
    border-color: rgba(192, 132, 252, 0.28);
    background-color: var(--surface-hover);
    transform: translateY(-4px);
}

.card::after {
    position: absolute;
    right: -90px;
    bottom: -110px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(157, 78, 221, 0.09);
    filter: blur(28px);
    content: "";
    pointer-events: none;
}

.card-number,
.icon-mark {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: var(--accent-light);
    border: 1px solid var(--border-accent);
    background: rgba(157, 78, 221, 0.11);
    font-family: var(--font-display);
    font-weight: 800;
}

.card-number {
    width: 42px;
    height: 42px;
    border-radius: 12px;
}

.icon-mark {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.icon-mark svg {
    width: 22px;
    height: 22px;
    color: var(--accent-light);
    fill: none !important;
    stroke: var(--accent-light) !important;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.icon-mark svg path,
.icon-mark svg line,
.icon-mark svg polyline,
.icon-mark svg rect,
.icon-mark svg circle {
    fill: none !important;
    stroke: inherit;
}

.card h2,
.card h3,
.card p,
.card ul {
    position: relative;
    z-index: 1;
}

.card h3 {
    margin-bottom: 10px;
    font-size: 1.18rem;
    font-weight: 800;
    line-height: 1.25;
}

.card p + p {
    margin-top: 12px;
}

.check-list {
    display: grid;
    gap: 12px;
    margin-top: 22px;
    list-style: none;
}

.check-list li {
    display: grid;
    grid-template-columns: 19px minmax(0, 1fr);
    gap: 10px;
    line-height: 1.5;
}

.check-list li::before {
    color: var(--accent-light);
    font-weight: 800;
    content: "✓";
}

.prose {
    max-width: 820px;
}

.prose h2 {
    margin: 48px 0 14px;
    font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.prose h2:first-child {
    margin-top: 0;
}

.prose p + p,
.prose ul {
    margin-top: 15px;
}

.prose ul {
    display: grid;
    gap: 10px;
    padding-left: 20px;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    max-width: 880px;
    margin-inline: auto;
}

.price-card {
    display: flex;
    flex-direction: column;
    min-height: 470px;
    padding: 34px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: var(--surface);
}

.price-card.featured {
    border-color: var(--border-accent);
    background: rgba(157, 78, 221, 0.065);
}

.price-card h2 {
    font-size: 1.35rem;
}

.price {
    margin: 20px 0 8px;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.price small {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0;
}

.price-card .check-list {
    margin-bottom: 28px;
}

.price-card .button-primary,
.price-card .button-secondary {
    margin-top: auto;
}

.faq-list {
    display: grid;
    gap: 12px;
    max-width: 880px;
    margin-inline: auto;
}

.faq-item {
    padding: 24px 26px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--surface);
}

.faq-item h2 {
    margin-bottom: 10px;
    font-size: 1.12rem;
    line-height: 1.35;
    letter-spacing: -0.02em;
}

.cta-panel {
    margin-top: 64px;
    margin-bottom: 84px;
    padding: 58px 5%;
    text-align: center;
    border: 1px solid var(--border-accent);
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.14), rgba(255, 255, 255, 0.025));
}

.cta-panel h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.cta-panel p {
    max-width: 620px;
    margin: 16px auto 26px;
    color: var(--text-muted);
    line-height: 1.7;
}

.page-footer {
    border-top: 1px solid var(--border);
}

.page-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 30px 0;
    color: var(--text-muted);
    font-size: 0.84rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 18px;
}

.footer-links a {
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--text);
}

@media (max-width: 900px) {
    .page-nav nav {
        display: none;
    }

    .page-nav {
        justify-content: space-between;
    }

    .card-grid,
    .card-grid.two {
        grid-template-columns: 1fr;
    }

    .card {
        min-height: 0;
    }
}

@media (max-width: 640px) {
    .page-nav {
        gap: 14px;
        padding-inline: 20px;
    }

    .nav-cta {
        padding-inline: 14px;
        font-size: 0.78rem;
    }

    .page-hero {
        padding: 82px 0 62px;
    }

    h1 {
        font-size: clamp(2.4rem, 13vw, 4rem);
    }

    .section {
        padding: 62px 0;
    }

    .card,
    .price-card {
        padding: 24px;
    }

    .price-grid {
        grid-template-columns: 1fr;
    }

    .price-card {
        min-height: 0;
    }

    .page-footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        transition-duration: 0.01ms !important;
    }
}
