:root {
    --bg: #FFFFFF;
    --ink: #0F172A;
    --muted: rgba(15,23,42,.72);
    --muted2: rgba(15,23,42,.56);
    --accent: #D18B2C;
    --accentBg: rgba(209,139,44,.14);
    --card: rgba(15,23,42,.03);
    --border: rgba(15,23,42,.10);
}

* {
    box-sizing: border-box
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    background: var(--bg);
    color: var(--ink);
    font-family: Poppins,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

a {
    color: var(--ink);
    text-decoration: none
}

    a:hover {
        text-decoration: underline
    }

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 14px 18px 12px;
}

.content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Topbar */
.topbar {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 6px 2px 10px;
}

.topbar__brand {
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
    font-weight: 900;
    letter-spacing: -0.4px;
    font-size: 18px;
}

.topbar__dot {
    color: var(--accent)
}

.topbar__name {
    color: var(--ink)
}

.topbar__nav {
    display: flex;
    gap: 14px;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.topbar__link {
    color: rgba(15,23,42,.68);
    font-size: 13px;
    font-weight: 700;
}

    .topbar__link:hover {
        text-decoration: none;
        color: var(--ink);
    }

.topbar__cta {
    display: flex;
    align-items: center;
}

/* Layout shell */
.shell {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    text-align: center;
    padding: 8px 12px 18px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 16px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .1px;
    border: 1px solid rgba(15,23,42,.14);
    text-decoration: none;
}

    .btn:hover {
        text-decoration: none
    }

.btn--sm {
    height: 38px;
    padding: 0 14px;
    font-size: 13px
}

.btn--primary {
    background: #0F172A;
    border-color: #0F172A;
    color: #fff;
}

    .btn--primary:hover {
        background: #1C2436;
        border-color: #1C2436;
    }

.btn--ghost {
    background: transparent;
    color: rgba(15,23,42,.74);
}

    .btn--ghost:hover {
        background: rgba(15,23,42,.03);
        color: var(--ink);
    }

/* Hero */
.hero {
    padding: 12px 8px 8px;
}

.hero__logo {
    width: min(520px,84vw);
    height: auto;
    display: block;
    margin: 0 auto -10px;
    background: transparent;
    filter: drop-shadow(0 18px 28px rgba(15,23,42,.10));
}

.hero__title {
    font-size: clamp(44px,7.6vw,84px);
    font-weight: 900;
    margin: 6px 0 0;
    letter-spacing: -1px;
}

.hero__dot {
    color: var(--accent)
}

.hero__sub {
    margin: 10px auto 0;
    max-width: 820px;
    font-size: 17px;
    line-height: 1.7;
    color: var(--muted);
}

.hero__pills {
    margin-top: 14px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.pill {
    border: 1px solid rgba(15,23,42,.10);
    background: rgba(15,23,42,.02);
    padding: 9px 12px;
    border-radius: 999px;
    color: rgba(15,23,42,.64);
    font-size: 13px;
    font-weight: 700;
}

.hero__cta {
    margin-top: 14px;
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero__micro {
    margin: 10px auto 0;
    color: rgba(15,23,42,.56);
    font-size: 13px;
    font-weight: 700;
}

.hero__micro2 {
    margin-top: 6px
}

/* Sections */
.section {
    margin-top: 28px;
    text-align: left;
}

.section__title {
    margin: 0;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.3px;
}

.section__sub {
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.75;
    max-width: 860px;
    font-weight: 600;
}

/* Feature grid */
.grid {
    margin-top: 14px;
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2,minmax(0,1fr));
}

.tile {
    border: 1px solid rgba(15,23,42,.10);
    background: rgba(15,23,42,.024);
    border-radius: 14px;
    padding: 15px 16px;
}

    .tile h3 {
        margin: 0 0 6px;
        font-size: 15px;
        font-weight: 900;
    }

    .tile p {
        margin: 0;
        color: var(--muted);
        line-height: 1.65;
        font-size: 14.5px;
        font-weight: 600;
    }

/* Split card */
.splitCard {
    margin-top: 14px;
    border: 1px solid rgba(15,23,42,.10);
    background: rgba(15,23,42,.024);
    border-radius: 16px;
    padding: 16px;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 16px;
}

.splitCard__title {
    margin: 0 0 8px;
    font-weight: 900;
    font-size: 15px;
}

.splitCard__text {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
    font-weight: 600;
}

.list {
    border: 1px solid rgba(15,23,42,.10);
    background: rgba(255,255,255,.78);
    border-radius: 14px;
    padding: 10px;
}

.list__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 7px;
    color: rgba(15,23,42,.70);
    font-size: 13px;
    font-weight: 800;
}

    .list__item + .list__item {
        border-top: 1px solid rgba(15,23,42,.06);
    }

.dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 0 3px var(--accentBg);
    flex: 0 0 auto;
}

/* Steps */
.steps {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.step {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    border: 1px solid rgba(15,23,42,.10);
    background: rgba(15,23,42,.022);
    border-radius: 14px;
    padding: 12px 14px;
}

.step__n {
    width: 30px;
    height: 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    background: rgba(209,139,44,.14);
    border: 1px solid rgba(209,139,44,.22);
    color: rgba(15,23,42,.84);
    flex: 0 0 auto;
}

.step__t {
    font-weight: 900;
    margin: 0;
    color: rgba(15,23,42,.88);
}

.step__d {
    margin-top: 2px;
    color: var(--muted);
    font-weight: 600;
    line-height: 1.65;
}

/* Pricing */
.pricing {
    margin-top: 14px;
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2,minmax(0,1fr));
}

.priceCard {
    border: 1px solid rgba(15,23,42,.10);
    background: rgba(15,23,42,.024);
    border-radius: 16px;
    padding: 16px;
    position: relative;
}

.priceCard__title {
    margin: 0;
    font-size: 15px;
    font-weight: 900;
}

.priceCard__price {
    margin: 10px 0 0;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.2px;
}

.priceCard__meta {
    margin: 6px 0 0;
    color: rgba(15,23,42,.62);
    font-weight: 700;
    font-size: 13px;
}

.priceCard__list {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: rgba(15,23,42,.72);
    font-size: 13px;
    line-height: 1.55;
    font-weight: 700;
}

.check__mark {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(15,23,42,.06);
    color: rgba(15,23,42,.78);
    flex: 0 0 auto;
}

.priceCard--pro {
    border-color: rgba(15,23,42,.14);
    background: rgba(15,23,42,.018);
}

.priceCard__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 12px;
    font-weight: 900;
    color: rgba(15,23,42,.72);
    background: rgba(209,139,44,.14);
    border: 1px solid rgba(209,139,44,.25);
    padding: 6px 10px;
    border-radius: 999px;
}

.priceCard__cta {
    margin-top: 14px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.priceCard__fine {
    margin: 10px 0 0;
    color: rgba(15,23,42,.56);
    font-size: 12px;
    font-weight: 600;
}

/* Final CTA */
.section--last {
    margin-top: 26px
}

.finalCta {
    border: 1px solid rgba(15,23,42,.10);
    background: rgba(15,23,42,.018);
    border-radius: 16px;
    padding: 18px 16px;
}

.finalCta__title {
    margin: 0;
    font-size: 18px;
    font-weight: 900;
}

.finalCta__sub {
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.7;
    font-weight: 600;
}

.finalCta__cta {
    margin-top: 12px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.finalCta__fine {
    margin: 10px 0 0;
    color: rgba(15,23,42,.56);
    font-size: 12px;
    font-weight: 600;
}

/* Footer */
.footer {
    padding: 18px 0 6px;
    text-align: center;
}

.footer__links {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 8px;
}

    .footer__links a {
        color: var(--muted2);
        font-size: 12px;
        font-weight: 700;
    }

.footer__meta {
    color: var(--muted2);
    font-size: 12px;
    margin-top: 4px;
    font-weight: 600;
}

.footer__meta2 {
    margin-top: 6px
}

@media (max-width:900px) {
    .pricing {
        grid-template-columns: 1fr
    }
}

@media (max-width:760px) {
    .grid {
        grid-template-columns: 1fr
    }

    .splitCard {
        grid-template-columns: 1fr
    }

    .topbar__nav {
        display: none
    }
}
