:root {
    --bg: #07111f;
    --bg2: #0b1728;
    --card: #101d31;
    --card2: #0d1829;
    --line: rgba(255, 255, 255, .10);
    --text: #f8fbff;
    --muted: #aeb8c8;
    --soft: #d7deeb;
    --orange: #f7931a;
    --orange2: #ff6a00;
    --green: #2bd989;
    --red: #ff5a6a;
    --shadow: 0 24px 80px rgba(0, 0, 0, .38);
    --radius: 24px;
    --max: 1200px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    background: radial-gradient(circle at 75% 8%, rgba(247, 147, 26, .18), transparent 30%), radial-gradient(circle at 10% 15%, rgba(30, 101, 255, .12), transparent 26%), var(--bg);
    color: var(--text);
    overflow-x: hidden
}

body:before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .8), transparent 85%)
}

a {
    color: inherit;
    text-decoration: none
}

.container {
    max-width: var(--max);
    margin: auto;
    width: 92%
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(7, 17, 31, .78);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line)
}

.nav {
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: max-content
}

.brand-mark {
    width: 44px;
    height: 44px;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(247, 147, 26, .18))
}

.brand-text {
    font-weight: 900;
    font-size: 28px;
    letter-spacing: -1.2px;
    line-height: 1
}

.brand-text span {
    color: var(--orange)
}

.brand small {
    display: block;
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    color: var(--muted);
    margin-top: 4px
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
    color: #dbe3f1;
    font-weight: 600;
    font-size: 15px
}

.nav-links a {
    position: relative;
    opacity: .9
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
    opacity: 1
}

.nav-links a.active:after,
.nav-links a:hover:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -12px;
    height: 2px;
    background: var(--orange);
    border-radius: 9px
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 14px;
    padding: 14px 22px;
    font-weight: 800;
    border: 1px solid transparent;
    transition: .22s ease;
    cursor: pointer
}

.btn:hover {
    transform: translateY(-2px)
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange), var(--orange2));
    color: #111;
    box-shadow: 0 18px 44px rgba(247, 147, 26, .28)
}

.btn-outline {
    border-color: rgba(247, 147, 26, .45);
    background: rgba(255, 255, 255, .025)
}

.btn-soft {
    background: rgba(255, 255, 255, .07);
    border-color: var(--line)
}

.mobile-toggle {
    display: none;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .06);
    color: #fff;
    border-radius: 12px;
    padding: 10px 12px
}

.hero {
    position: relative;
    padding: 96px 0 70px;
    min-height: calc(100vh - 84px)
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 60px;
    align-items: center
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 15px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    color: #ffc76f;
    font-weight: 700;
    margin-bottom: 24px
}

.hero h1 {
    font-size: clamp(42px, 6vw, 82px);
    line-height: .98;
    letter-spacing: -4px;
    margin: 0 0 24px
}

.hero h1 span {
    color: var(--orange)
}

.lead {
    font-size: 20px;
    line-height: 1.75;
    color: var(--muted);
    max-width: 650px;
    margin: 0 0 34px
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 34px;
    color: #c7d0df
}

.trust-row span {
    display: flex;
    align-items: center;
    gap: 8px
}

.hero-visual {
    position: relative
}

.dash-card {
    position: relative;
    border: 1px solid rgba(247, 147, 26, .35);
    background: linear-gradient(180deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .035));
    border-radius: 30px;
    padding: 18px;
    box-shadow: var(--shadow);
    animation: floaty 5s ease-in-out infinite
}

.dash-inner {
    background: rgba(7, 17, 31, .80);
    border: 1px solid var(--line);
    border-radius: 22px;
    overflow: hidden
}

.dash-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--line)
}

.dash-head strong {
    font-size: 18px
}

.dash-main {
    display: grid;
    grid-template-columns: 170px 1fr
}

.dash-side {
    border-right: 1px solid var(--line);
    padding: 18px 14px;
    color: var(--muted)
}

.dash-side div {
    padding: 12px 14px;
    border-radius: 12px;
    margin-bottom: 6px
}

.dash-side div:first-child {
    background: linear-gradient(135deg, var(--orange), var(--orange2));
    color: #101010;
    font-weight: 900
}

.dash-content {
    padding: 20px
}

.mini-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 16px
}

.mini {
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, .04)
}

.mini span {
    display: block;
    color: var(--muted);
    font-size: 12px
}

.mini b {
    font-size: 21px
}

.invoice-table {
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden
}

.row {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr .8fr;
    gap: 10px;
    padding: 13px 14px;
    border-bottom: 1px solid var(--line);
    font-size: 14px
}

.row:last-child {
    border-bottom: 0
}

.row.head {
    color: #bfc8d7;
    font-weight: 800
}

.pill {
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 900;
    width: max-content
}

.paid {
    background: rgba(43, 217, 137, .16);
    color: var(--green)
}

.pending {
    background: rgba(247, 147, 26, .18);
    color: #ffc16d
}

.expired {
    background: rgba(255, 90, 106, .16);
    color: var(--red)
}

.payment-toast {
    position: absolute;
    right: 30px;
    bottom: -32px;
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(16, 29, 49, .92);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    border-radius: 18px;
    padding: 16px 20px;
    animation: pulseGlow 3s ease-in-out infinite
}

.coin {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--orange), var(--orange2));
    color: #fff;
    font-weight: 900;
    font-size: 22px
}

.orb {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(247, 147, 26, .22), transparent 65%);
    right: -90px;
    bottom: -140px;
    filter: blur(10px);
    z-index: -1
}

.section {
    padding: 90px 0
}

.section-head {
    text-align: center;
    margin-bottom: 50px
}

.kicker {
    color: var(--orange);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    font-size: 13px
}

.section h2 {
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.05;
    letter-spacing: -2px;
    margin: 12px 0 14px
}

.section-head p {
    color: var(--muted);
    font-size: 18px;
    max-width: 720px;
    margin: auto;
    line-height: 1.65
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.feature-card,
.price-card,
.blog-card,
.info-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .032));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: 0 14px 44px rgba(0, 0, 0, .16);
    transition: .25s
}

.feature-card:hover,
.price-card:hover,
.blog-card:hover,
.info-card:hover {
    transform: translateY(-6px);
    border-color: rgba(247, 147, 26, .38)
}

.icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 25px;
    background: rgba(247, 147, 26, .11);
    border: 1px solid rgba(247, 147, 26, .3);
    color: var(--orange);
    margin-bottom: 18px
}

.feature-card h3,
.price-card h3,
.blog-card h3 {
    font-size: 22px;
    margin: 0 0 12px
}

.feature-card p,
.price-card p,
.blog-card p,
.info-card p {
    color: var(--muted);
    line-height: 1.65
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    counter-reset: step
}

.step {
    position: relative;
    padding: 30px;
    background: var(--card2);
    border: 1px solid var(--line);
    border-radius: 22px
}

.step:before {
    counter-increment: step;
    content: "0" counter(step);
    font-size: 42px;
    font-weight: 900;
    color: rgba(247, 147, 26, .35)
}

.step h3 {
    margin: 14px 0 10px
}

.api-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: stretch
}

.code {
    background: #030913;
    border: 1px solid rgba(247, 147, 26, .22);
    border-radius: 24px;
    padding: 28px;
    overflow: auto;
    color: #dfe8f7;
    box-shadow: var(--shadow)
}

.code pre {
    margin: 0;
    white-space: pre-wrap;
    line-height: 1.65
}

.code .orange {
    color: #ffae4a
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.price-card.featured {
    border-color: rgba(247, 147, 26, .55);
    box-shadow: 0 24px 80px rgba(247, 147, 26, .13)
}

.price {
    font-size: 48px;
    font-weight: 900;
    margin: 18px 0
}

.price small {
    font-size: 16px;
    color: var(--muted)
}

.list {
    list-style: none;
    padding: 0;
    margin: 24px 0
}

.list li {
    padding: 10px 0;
    color: #cbd4e2
}

.list li:before {
    content: "✓";
    color: var(--orange);
    font-weight: 900;
    margin-right: 10px
}

.faq {
    max-width: 900px;
    margin: auto
}

.faq details {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .045);
    border-radius: 18px;
    padding: 18px 22px;
    margin-bottom: 14px
}

.faq summary {
    cursor: pointer;
    font-weight: 900
}

.faq p {
    color: var(--muted);
    line-height: 1.65
}

.cta {
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(247, 147, 26, .95), rgba(255, 106, 0, .95));
    color: #111;
    padding: 62px;
    text-align: center;
    position: relative;
    overflow: hidden
}

.cta h2 {
    font-size: 46px;
    margin: 0 0 16px
}

.cta p {
    font-size: 18px;
    color: rgba(0, 0, 0, .72);
    max-width: 700px;
    margin: 0 auto 28px
}

.cta .btn {
    background: #07111f;
    color: #fff
}

.site-footer {
    border-top: 1px solid var(--line);
    padding: 60px 0 28px;
    background: rgba(4, 10, 20, .5)
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr repeat(4, 1fr);
    gap: 30px
}

.footer-grid h4 {
    margin: 0 0 16px
}

.footer-grid a,
.footer-grid p {
    display: block;
    color: var(--muted);
    margin: 10px 0;
    line-height: 1.55
}

.footer-bottom {
    border-top: 1px solid var(--line);
    margin-top: 35px;
    padding-top: 22px;
    color: var(--muted);
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap
}

.page-hero {
    padding: 80px 0 45px;
    text-align: center
}

.page-hero h1 {
    font-size: clamp(40px, 6vw, 70px);
    letter-spacing: -3px;
    margin: 12px 0
}

.page-hero p {
    max-width: 760px;
    margin: auto;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.7
}

.form-wrap {
    max-width: 540px;
    margin: 60px auto;
    background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03));
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 34px
}

.form-group {
    margin-bottom: 18px
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 800
}

.form-control {
    width: 100%;
    padding: 15px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--line);
    color: #fff;
    font-size: 16px
}

.form-control:focus {
    outline: 0;
    border-color: rgba(247, 147, 26, .65)
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.article-date {
    color: var(--orange);
    font-weight: 800;
    font-size: 13px
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px
}

.status-ok {
    color: var(--green);
    font-weight: 900
}

.seo-text {
    max-width: 920px;
    margin: auto;
    color: var(--muted);
    line-height: 1.75
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: .7s ease
}

.reveal.show {
    opacity: 1;
    transform: translateY(0)
}

@keyframes floaty {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-12px)
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 24px 70px rgba(247, 147, 26, .15)
    }

    50% {
        box-shadow: 0 24px 90px rgba(247, 147, 26, .3)
    }
}

@media(max-width:1050px) {
    .nav-links {
        display: none
    }

    .mobile-toggle {
        display: block
    }

    .nav-actions {
        display: none
    }

    .nav.open {
        height: auto;
        align-items: flex-start;
        flex-wrap: wrap;
        padding: 18px 0
    }

    .nav.open .nav-links,
    .nav.open .nav-actions {
        display: flex;
        width: 100%;
        flex-direction: column;
        align-items: flex-start
    }

    .hero-grid,
    .api-block,
    .contact-grid {
        grid-template-columns: 1fr
    }

    .hero {
        padding-top: 70px
    }

    .dash-card {
        max-width: 760px
    }

    .features-grid,
    .pricing-grid,
    .blog-grid,
    .steps,
    .status-grid,
    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:680px) {
    .brand-text {
        font-size: 23px
    }

    .brand small {
        display: none
    }

    .hero h1 {
        letter-spacing: -2px
    }

    .hero-actions .btn {
        width: 100%
    }

    .mini-stats {
        grid-template-columns: 1fr 1fr
    }

    .dash-main {
        grid-template-columns: 1fr
    }

    .dash-side {
        display: none
    }

    .row {
        grid-template-columns: 1fr 1fr;
        font-size: 13px
    }

    .features-grid,
    .pricing-grid,
    .blog-grid,
    .steps,
    .status-grid,
    .footer-grid {
        grid-template-columns: 1fr
    }

    .cta {
        padding: 38px 22px
    }

    .payment-toast {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 16px
    }

    .section {
        padding: 64px 0
    }

    .nav {
        height: 74px
    }

    .brand-mark {
        width: 38px;
        height: 38px
    }
}