:root {
    --bg: #090b10;
    --bg-soft: #10141d;
    --card: #141a25;
    --text: #ebf1ff;
    --muted: #9ba7bd;
    --line: #273248;
    --primary: #6dff88;
    --primary-dark: #4fd86b;
    --accent: #6ea8ff;
    --radius: 16px
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: "Manrope", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden
}

/* Keep first paint lightweight, then enable effects after load+idle */
.perf-init .starfield {
    display: none
}

.perf-init .topbar {
    backdrop-filter: none;
    background: #090b10
}

.toast-host {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px
}

.toast-host.is-open {
    display: flex
}

.toast-backdrop {
    position: absolute;
    inset: 0;
    background: rgb(4 6 12 / .72);
    backdrop-filter: blur(10px);
    border: none;
    padding: 0
}

.toast {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    width: min(640px, 100%);
    padding: 26px 24px 22px;
    border-radius: 22px;
    border: 1px solid rgb(255 255 255 / .16);
    background: linear-gradient(165deg, rgb(22 28 42 / .98), rgb(12 16 24 / .98));
    backdrop-filter: blur(14px);
    box-shadow: 0 28px 100px rgb(0 0 0 / .6);
    animation: toastIn 160ms ease-out
}

@keyframes toastIn {
    from {
        transform: translateY(10px) scale(.99);
        opacity: 0
    }

    to {
        transform: translateY(0) scale(1);
        opacity: 1
    }
}

.toast-icon {
    width: 74px;
    height: 74px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    font-size: 2.1rem;
    line-height: 1;
    border: 1px solid rgb(255 255 255 / .14);
    background: rgb(255 255 255 / .06);
    color: #c8d4ea
}

.toast-title {
    font-family: "Sora", sans-serif;
    font-weight: 800;
    letter-spacing: -.02em;
    font-size: clamp(1.35rem, 4vw, 2rem);
    line-height: 1.12;
    margin: 0
}

.toast-msg {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    white-space: pre-wrap
}

.toast-action {
    margin-top: 6px;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 14px;
    border: 1px solid rgb(255 255 255 / .16);
    background: rgb(28 36 51 / .95);
    color: #e8f0ff;
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-size: .9rem;
    cursor: pointer;
    transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease, transform 0.15s ease
}

.toast-action:hover,
.toast-action:focus-visible {
    border-color: rgb(109 255 136 / .55);
    color: var(--primary);
    background: rgb(32 42 58 / .98);
    outline: none
}

.toast-action:active {
    transform: translateY(1px)
}

.toast--success {
    border-color: rgb(109 255 136 / .28)
}

.toast--success .toast-title {
    font-size: clamp(1.15rem, 3vw, 1.6rem)
}

.toast--success .toast-icon {
    border-color: rgb(109 255 136 / .28);
    background: rgb(109 255 136 / .1);
    color: var(--primary)
}

.toast--warning {
    border-color: rgb(110 168 255 / .28)
}

.toast--warning .toast-icon {
    border-color: rgb(110 168 255 / .28);
    background: rgb(110 168 255 / .12);
    color: var(--accent)
}

.toast--error {
    border-color: rgb(255 255 255 / .18)
}

.toast--error .toast-icon {
    border-color: rgb(255 255 255 / .18);
    background: rgb(255 96 96 / .1);
    color: #ff9a9a
}

.container {
    width: min(1120px, 92%);
    margin: 0 auto
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(12px);
    background: rgb(9 11 16 / .75);
    border-bottom: 1px solid rgb(255 255 255 / .08)
}

.topbar-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}

.topbar-head {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    min-height: 72px
}

.brand {
    font-family: "Sora", sans-serif;
    font-weight: 800;
    letter-spacing: .3px;
    font-size: 1.15rem;
    position: relative;
    padding: 6px 10px;
    border-radius: 12px;
    isolation: isolate;
    text-shadow: 0 0 14px rgb(109 255 136 / .16), 0 0 28px rgb(110 168 255 / .08)
}

.brand::before {
    content: "";
    position: absolute;
    inset: -6px -10px;
    border-radius: 14px;
    background: radial-gradient(circle at 30% 40%, rgb(109 255 136 / .18), transparent 55%), radial-gradient(circle at 70% 60%, rgb(110 168 255 / .12), transparent 58%);
    filter: blur(10px);
    opacity: .85;
    z-index: -1;
    pointer-events: none
}

.brand span {
    color: var(--primary)
}

a.brand {
    text-decoration: none;
    color: inherit
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 0;
    margin-left: auto;
    padding: 0;
    border: none;
    border-radius: 12px;
    background: rgb(255 255 255 / .06);
    color: var(--text);
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s ease
}

.nav-toggle:hover {
    background: rgb(255 255 255 / .1)
}

.nav-toggle-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 22px
}

.nav-toggle-line {
    display: block;
    height: 2px;
    width: 100%;
    border-radius: 1px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
    transform-origin: center
}

.topbar.is-nav-open .nav-toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.topbar.is-nav-open .nav-toggle-line:nth-child(2) {
    opacity: 0
}

.topbar.is-nav-open .nav-toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

.nav {
    display: flex;
    gap: 20px;
    align-items: center
}

.nav a {
    color: var(--muted);
    text-decoration: none;
    font-weight: 600;
    font-size: .94rem;
    transition: color 0.2s ease
}

.nav button {
    color: var(--muted);
    background: none;
    border: none;
    padding: 0;
    font-weight: 700;
    font-size: .94rem;
    cursor: pointer;
    font-family: inherit;
    transition: color 0.2s ease
}

.nav a:hover {
    color: var(--text)
}

.nav button:hover,
.nav button:focus-visible {
    color: var(--text);
    outline: none
}

.hero {
    padding: 88px 0 64px
}

.starfield {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
    background: radial-gradient(circle at 20% 15%, rgb(109 255 136 / .14), transparent 34%), radial-gradient(circle at 80% 5%, rgb(110 168 255 / .12), transparent 32%), #06080f
}

.star-layer {
    position: absolute;
    inset: -55%;
    background-repeat: repeat;
    will-change: transform;
    transform-origin: center
}

.star-layer.layer1 {
    background-image: radial-gradient(1.3px 1.3px at 10px 20px, rgb(255 255 255 / .95), transparent 60%), radial-gradient(1.3px 1.3px at 55px 70px, rgb(255 255 255 / .82), transparent 60%), radial-gradient(1.3px 1.3px at 90px 35px, rgb(255 255 255 / .78), transparent 60%), radial-gradient(1.3px 1.3px at 140px 110px, rgb(255 255 255 / .78), transparent 60%), radial-gradient(1.3px 1.3px at 170px 45px, rgb(255 255 255 / .72), transparent 60%), radial-gradient(1.3px 1.3px at 210px 130px, rgb(255 255 255 / .82), transparent 60%);
    background-size: 220px 220px;
    opacity: .76;
    animation: starForwardSlow 42s linear infinite
}

.star-layer.layer2 {
    background-image: radial-gradient(1.4px 1.4px at 15px 25px, rgb(255 255 255 / .98), transparent 60%), radial-gradient(1.4px 1.4px at 60px 120px, rgb(255 255 255 / .9), transparent 60%), radial-gradient(1.5px 1.5px at 95px 45px, rgb(110 168 255 / .9), transparent 60%), radial-gradient(1.5px 1.5px at 140px 170px, rgb(255 255 255 / .86), transparent 60%), radial-gradient(1.4px 1.4px at 180px 60px, rgb(255 255 255 / .86), transparent 60%), radial-gradient(1.5px 1.5px at 230px 150px, rgb(110 168 255 / .82), transparent 60%);
    background-size: 260px 260px;
    opacity: .64;
    animation: starBackwardMid 26s linear infinite
}

.star-layer.layer3 {
    background-image: radial-gradient(1.6px 1.6px at 20px 25px, rgb(255 255 255), transparent 60%), radial-gradient(1.6px 1.6px at 85px 35px, rgb(109 255 136), transparent 60%), radial-gradient(1.6px 1.6px at 125px 85px, rgb(255 255 255 / .95), transparent 60%), radial-gradient(1.6px 1.6px at 165px 135px, rgb(255 255 255 / .95), transparent 60%), radial-gradient(1.6px 1.6px at 205px 40px, rgb(255 255 255 / .93), transparent 60%), radial-gradient(1.6px 1.6px at 245px 100px, rgb(109 255 136 / .88), transparent 60%);
    background-size: 280px 280px;
    opacity: .8;
    animation: starForwardFast 17s linear infinite
}

.star-layer.layer4 {
    background-image: radial-gradient(1.3px 1.3px at 18px 32px, rgb(255 255 255 / .86), transparent 60%), radial-gradient(1.3px 1.3px at 38px 88px, rgb(255 255 255 / .8), transparent 60%), radial-gradient(1.3px 1.3px at 72px 142px, rgb(255 255 255 / .74), transparent 60%), radial-gradient(1.3px 1.3px at 124px 72px, rgb(110 168 255 / .66), transparent 60%), radial-gradient(1.3px 1.3px at 164px 174px, rgb(255 255 255 / .8), transparent 60%), radial-gradient(1.3px 1.3px at 206px 96px, rgb(255 255 255 / .72), transparent 60%);
    background-size: 200px 200px;
    opacity: .58;
    animation: starBackwardSlow 38s linear infinite
}

@media (prefers-reduced-motion: reduce) {
    .star-layer {
        animation: none !important
    }
}

@keyframes starForwardSlow {
    from {
        transform: translate3d(0, 0, 0) scale(1)
    }

    to {
        transform: translate3d(0, 160px, 0) scale(1.17)
    }
}

@keyframes starBackwardMid {
    from {
        transform: translate3d(0, 0, 0) scale(1.2)
    }

    to {
        transform: translate3d(0, -150px, 0) scale(1)
    }
}

@keyframes starForwardFast {
    from {
        transform: translate3d(0, -40px, 0) scale(.92)
    }

    to {
        transform: translate3d(0, 220px, 0) scale(1.24)
    }
}

@keyframes starBackwardSlow {
    from {
        transform: translate3d(0, 70px, 0) scale(1.18)
    }

    to {
        transform: translate3d(0, -120px, 0) scale(1)
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: center
}

.hero-content {
    max-width: 940px;
    margin: 0 auto;
    text-align: center
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgb(109 255 136 / .3);
    color: var(--primary);
    font-size: .82rem;
    font-weight: 700;
    margin-bottom: 16px;
    background: rgb(109 255 136 / .08)
}

.hero-title {
    font-family: "Segoe UI", "Manrope", sans-serif;
    font-weight: 800;
    line-height: 1.03;
    letter-spacing: -.7px;
    font-size: clamp(2.1rem, 6vw, 4.7rem);
    margin-bottom: 16px;
    text-wrap: balance
}

.hero-title-line {
    display: block
}

.highlight {
    color: var(--primary)
}

.kick {
    color: var(--primary);
    font-weight: 700
}

.sub {
    color: var(--muted);
    max-width: 65ch;
    margin: 0 auto 22px;
    font-size: 1.04rem
}

.hero-points {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px
}

.hero-points span {
    border: 1px solid rgb(255 255 255 / .16);
    background: rgb(15 20 32 / .66);
    color: #d9e6ff;
    border-radius: 999px;
    padding: 5px 11px;
    font-size: .8rem;
    font-weight: 700
}

.quick-start {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding: 10px;
    border: 1px solid rgb(255 255 255 / .12);
    background: rgb(20 26 37 / .72);
    border-radius: 14px;
    width: min(100%, 760px);
    margin: 0 auto
}

.quick-start input {
    flex: 1 1 280px;
    min-height: 48px;
    border: 1px solid var(--line);
    background: #0f1420;
    color: var(--text);
    border-radius: 10px;
    padding: 0 14px;
    font-size: .95rem;
    outline: none;
    transition: border-color 0.2s ease
}

.quick-start input:focus {
    border-color: var(--accent)
}

.quick-start button {
    min-height: 48px;
    border: none;
    border-radius: 10px;
    padding: 0 20px;
    font-weight: 800;
    font-size: .93rem;
    cursor: pointer;
    color: #0a1219;
    background: linear-gradient(180deg, var(--primary), var(--primary-dark));
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 8px 22px rgb(109 255 136 / .25)
}

.quick-start button:hover {
    transform: translateY(-1px)
}

.hint {
    margin-top: 10px;
    color: #8c98ac;
    font-size: .85rem;
    text-align: center
}

section {
    padding: 62px 0
}

/* Render only visible sections first to improve FCP/LCP */
main>section:not(.hero) {
    content-visibility: auto;
    contain-intrinsic-size: 1px 900px
}

.section-head {
    text-align: center;
    margin-bottom: 28px
}

.section-head h2 {
    font-family: "Sora", sans-serif;
    font-size: clamp(1.65rem, 3.4vw, 2.5rem);
    margin-bottom: 8px;
    letter-spacing: -.3px
}

.section-head p {
    color: var(--muted);
    max-width: 68ch;
    margin: 0 auto
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px
}

.feature {
    background: var(--card);
    border: 1px solid rgb(255 255 255 / .08);
    border-radius: 14px;
    padding: 18px
}

.feature h4 {
    font-family: "Sora", sans-serif;
    font-size: 1rem;
    margin-bottom: 8px
}

.feature p {
    color: var(--muted);
    font-size: .92rem
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px
}

.step {
    padding: 18px;
    border-radius: 14px;
    background: var(--bg-soft);
    border: 1px solid var(--line)
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgb(110 168 255 / .18);
    color: #dce9ff;
    font-weight: 800;
    font-size: .88rem;
    margin-bottom: 10px
}

.step h4 {
    font-family: "Sora", sans-serif;
    margin-bottom: 6px;
    font-size: 1rem
}

.step p {
    color: var(--muted);
    font-size: .9rem
}

.pricing {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px
}

.plan {
    border-radius: 15px;
    border: 1px solid rgb(255 255 255 / .1);
    background: var(--card);
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative
}

.plan.popular {
    border-color: rgb(109 255 136 / .45);
    box-shadow: 0 12px 26px rgb(109 255 136 / .13)
}

.plan.free {
    border-color: rgb(110 168 255 / .38);
    background: linear-gradient(160deg, rgb(110 168 255 / .08), var(--card))
}

.badge-free {
    width: fit-content;
    position: absolute;
    top: 12px;
    right: 12px;
    left: auto;
    font-size: .73rem;
    font-weight: 800;
    color: #0a1219;
    background: var(--accent);
    border-radius: 999px;
    padding: 4px 10px
}

.badge-popular {
    width: fit-content;
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: .73rem;
    font-weight: 800;
    color: #07200d;
    background: var(--primary);
    border-radius: 999px;
    padding: 4px 10px
}

.badge-special {
    width: fit-content;
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: .73rem;
    font-weight: 800;
    color: #eef4ff;
    background: linear-gradient(120deg, #7be8ff, #9a8bff 55%, #6dff88);
    border-radius: 999px;
    padding: 4px 10px;
    text-shadow: 0 1px 2px rgb(10 14 24 / .45);
    box-shadow: 0 0 0 1px rgb(255 255 255 / .22), 0 8px 18px rgb(122 191 255 / .35)
}

.plan h3 {
    font-family: "Sora", sans-serif;
    font-size: 1.06rem
}

.price {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .35rem .5rem;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -.5px
}

.price-amount {
    line-height: 1
}

.price-meta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .9rem;
    font-weight: 600;
    color: var(--muted);
    line-height: 1;
    transform: translateY(.28em)
}

.plan ul {
    list-style: none;
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-size: .9rem
}

.plan ul li::before {
    content: "• ";
    color: var(--primary)
}

.plan>a {
    margin-top: auto;
    text-align: center;
    text-decoration: none;
    background: #1c2433;
    border: 1px solid #2f3c57;
    color: #dbe7ff;
    border-radius: 10px;
    min-height: 42px;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: .9rem
}

.plan.popular>a {
    background: linear-gradient(180deg, var(--primary), var(--primary-dark));
    border-color: #fff0;
    color: #08110d
}

.plan.free>a {
    background: linear-gradient(180deg, rgb(110 168 255 / .95), #4d8be8);
    border-color: #fff0;
    color: #081018
}

.plan.free>a:hover {
    filter: brightness(1.06)
}

.plan.special {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(260px, 1fr) auto;
    grid-template-areas:
        "badge badge"
        "title price"
        "list cta";
    align-items: start;
    gap: 10px 20px;
    border-color: rgb(126 184 255 / .58);
    background: linear-gradient(155deg, rgb(126 184 255 / .12), rgb(154 139 255 / .08) 45%, var(--card));
    box-shadow: 0 0 0 1px rgb(126 184 255 / .2), 0 14px 32px rgb(122 191 255 / .2), 0 0 34px rgb(154 139 255 / .18);
    animation: specialPulse 2.6s ease-in-out infinite
}

.pricing .plan.special .badge-special {
    grid-area: badge;
    position: static;
    justify-self: start;
    margin-bottom: 2px
}

.pricing .plan.special h3 {
    grid-area: title;
    margin: 0
}

.pricing .plan.special .price {
    grid-area: price;
    justify-self: end
}

.pricing .plan.special ul {
    grid-area: list;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px 14px;
    margin: 0
}

.plan.special .price-amount {
    text-shadow: 0 0 12px rgb(126 184 255 / .35), 0 0 24px rgb(154 139 255 / .26)
}

.pricing .plan.special>a {
    grid-area: cta;
    align-self: end;
    min-width: 220px;
    border: 1px solid rgb(125 208 255 / .62);
    background: linear-gradient(180deg, rgb(25 40 63 / .98), rgb(16 25 43 / .98));
    color: #dff0ff;
    text-shadow: none;
    letter-spacing: .01em;
    box-shadow: inset 0 0 0 1px rgb(255 255 255 / .06), 0 10px 24px rgb(90 180 255 / .22)
}

.plan.special>a:hover {
    border-color: rgb(125 228 255 / .9);
    background: linear-gradient(180deg, rgb(28 48 74 / .99), rgb(18 31 52 / .99));
    color: #f2fbff;
    box-shadow: inset 0 0 0 1px rgb(125 228 255 / .25), 0 12px 28px rgb(90 180 255 / .34)
}

@keyframes specialPulse {

    0%,
    100% {
        box-shadow: 0 0 0 1px rgb(126 184 255 / .2), 0 14px 32px rgb(122 191 255 / .2), 0 0 28px rgb(154 139 255 / .14)
    }

    50% {
        box-shadow: 0 0 0 1px rgb(126 184 255 / .34), 0 18px 36px rgb(122 191 255 / .3), 0 0 42px rgb(154 139 255 / .26)
    }
}

.pricing-note {
    margin-top: 16px;
    border: 1px solid rgb(255 255 255 / .1);
    background: rgb(16 20 29 / .72);
    border-radius: 14px;
    padding: 16px;
    scroll-margin-top: 160px
}

.pricing-note h4 {
    font-family: "Sora", sans-serif;
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--text)
}

.pricing-note p {
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.7
}

.compare {
    padding: 58px 0
}

.compare-inner {
    border: 1px solid rgb(255 255 255 / .1);
    border-radius: 18px;
    background: rgb(16 20 29 / .55);
    padding: clamp(22px, 4vw, 34px)
}

.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 18px
}

.compare-card {
    border-radius: 14px;
    border: 1px solid rgb(255 255 255 / .08);
    background: rgb(12 16 24 / .55);
    padding: 18px
}

.compare-card--recommended {
    position: relative;
    isolation: isolate;
    border-color: rgb(109 255 136 / .35);
    background: linear-gradient(165deg, rgb(109 255 136 / .06), rgb(12 16 24 / .65));
    box-shadow: 0 0 0 1px rgb(109 255 136 / .12), 0 12px 40px rgb(109 255 136 / .1), 0 24px 60px rgb(110 168 255 / .06)
}

.compare-card--recommended::before {
    content: "";
    position: absolute;
    inset: -8px -8px -8px -8px;
    border-radius: 18px;
    background: radial-gradient(circle at 20% 30%, rgb(109 255 136 / .22), transparent 58%), radial-gradient(circle at 82% 70%, rgb(110 168 255 / .14), transparent 56%);
    filter: blur(12px);
    opacity: .55;
    z-index: -1;
    pointer-events: none
}

.compare-card--recommended .compare-head h3 {
    text-shadow: 0 0 18px rgb(109 255 136 / .18), 0 0 32px rgb(110 168 255 / .1)
}

.compare-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px
}

.compare-card h3 {
    font-family: "Sora", sans-serif;
    font-size: 1.05rem;
    margin: 0
}

.pill {
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 4px 10px;
    border: 1px solid rgb(255 255 255 / .14);
    color: #c8d4ea;
    background: rgb(255 255 255 / .05);
    white-space: nowrap
}

.pill.good {
    border-color: rgb(109 255 136 / .28);
    background: rgb(109 255 136 / .08);
    color: var(--primary)
}

.compare-card--recommended .pill.good {
    border-color: rgb(109 255 136 / .5);
    background: linear-gradient(180deg, rgb(109 255 136 / .18), rgb(109 255 136 / .08));
    color: var(--primary);
    box-shadow: 0 0 14px rgb(109 255 136 / .22), 0 0 28px rgb(110 168 255 / .1);
    text-shadow: 0 0 12px rgb(109 255 136 / .35)
}

.compare-list {
    list-style: none;
    display: grid;
    gap: 10px;
    margin-top: 10px
}

.compare-item {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 10px;
    align-items: start
}

.compare-icon {
    width: 18px;
    height: 18px;
    border-radius: 6px;
    display: grid;
    place-items: center;
    font-size: .85rem;
    line-height: 1;
    border: 1px solid rgb(255 255 255 / .12);
    background: rgb(255 255 255 / .06);
    color: #c8d4ea
}

.compare-icon.good {
    border-color: rgb(109 255 136 / .28);
    background: rgb(109 255 136 / .08);
    color: var(--primary)
}

.compare-item strong {
    display: block;
    color: var(--text);
    font-weight: 800;
    font-size: .92rem;
    margin-bottom: 2px
}

.compare-item p {
    color: var(--muted);
    font-size: .88rem;
    line-height: 1.6
}

.price-help {
    box-sizing: border-box;
    flex: 0 0 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    min-width: 14px;
    min-height: 14px;
    max-width: 14px;
    max-height: 14px;
    margin: 0;
    padding: 0;
    border-radius: 50%;
    border: 1px solid rgb(255 255 255 / .22);
    background: rgb(255 255 255 / .06);
    font-size: 8px;
    font-weight: 800;
    font-family: system-ui, "Segoe UI", sans-serif;
    line-height: 1;
    text-decoration: none;
    color: var(--muted);
    overflow: hidden;
    transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease
}

.price-help:hover,
.price-help:focus-visible {
    color: var(--primary);
    border-color: rgb(109 255 136 / .45);
    background: rgb(109 255 136 / .12);
    outline: none
}

.cta {
    margin: 26px 0 62px;
    border-radius: 18px;
    padding: 28px;
    text-align: center;
    border: 1px solid rgb(110 168 255 / .28);
    background: linear-gradient(130deg, rgb(110 168 255 / .14), rgb(109 255 136 / .12))
}

.cta h3 {
    font-family: "Sora", sans-serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    margin-bottom: 8px
}

.cta p {
    color: #d7e3f8;
    margin-bottom: 14px
}

.cta a {
    display: inline-grid;
    place-items: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 800;
    color: #07130a;
    background: linear-gradient(180deg, var(--primary), var(--primary-dark))
}

#packageModal {
    z-index: 1000
}

.modal.legal-modal {
    z-index: 1010
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s ease, visibility 0.22s ease
}

.modal.is-open {
    opacity: 1;
    visibility: visible
}

.modal.is-processing .modal-panel {
    filter: blur(6px);
    opacity: .75;
    transform: scale(.995);
    transition: filter 0.15s ease, opacity 0.15s ease, transform 0.15s ease
}

.modal.is-processing .modal-close,
.modal.is-processing .modal-backdrop {
    pointer-events: none
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgb(4 6 12 / .72);
    backdrop-filter: blur(10px);
    border: none;
    padding: 0;
    cursor: pointer
}

.modal-panel {
    position: relative;
    z-index: 1;
    width: min(920px, 100%);
    max-height: min(90vh, 720px);
    overflow-y: auto;
    border-radius: 18px;
    border: 1px solid rgb(255 255 255 / .12);
    background: linear-gradient(165deg, rgb(22 28 42 / .98), rgb(12 16 24 / .98));
    box-shadow: 0 28px 80px rgb(0 0 0 / .55);
    padding: clamp(20px, 4vw, 28px);
    scrollbar-width: thin;
    scrollbar-color: rgb(109 255 136 / .55) rgb(255 255 255 / .06)
}

.modal-processing {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    place-items: center;
    padding: 18px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s ease, visibility 0.18s ease
}

.modal.is-processing .modal-processing {
    opacity: 1;
    visibility: visible;
    pointer-events: auto
}

.modal-processing-card {
    width: min(520px, 100%);
    border-radius: 16px;
    border: 1px solid rgb(255 255 255 / .16);
    background: rgb(10 13 20 / .72);
    backdrop-filter: blur(12px);
    box-shadow: 0 24px 80px rgb(0 0 0 / .55);
    padding: 18px 18px 16px;
    display: grid;
    gap: 10px;
    text-align: center
}

.modal-processing-title {
    font-family: "Sora", sans-serif;
    font-weight: 800;
    letter-spacing: -.02em
}

.modal-processing-sub {
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.55
}

.modal-processing-cancel {
    margin-top: 6px;
    min-height: 40px;
    border-radius: 11px;
    border: 1px solid rgb(255 255 255 / .16);
    background: rgb(28 36 51 / .95);
    color: #e8f0ff;
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-size: .85rem;
    cursor: pointer;
    transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease, transform 0.15s ease
}

.modal-processing-cancel:hover,
.modal-processing-cancel:focus-visible {
    border-color: rgb(109 255 136 / .55);
    color: var(--primary);
    background: rgb(32 42 58 / .98);
    outline: none
}

.modal-processing-cancel:active {
    transform: translateY(1px)
}

.spinner {
    width: 44px;
    height: 44px;
    margin: 4px auto 0;
    border-radius: 999px;
    border: 3px solid rgb(255 255 255 / .16);
    border-top-color: rgb(109 255 136 / .9);
    animation: spin 0.9s linear infinite
}

@keyframes spin {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

.modal-panel::-webkit-scrollbar {
    width: 10px
}

.modal-panel::-webkit-scrollbar-track {
    margin: 10px 0;
    background: rgb(255 255 255 / .05);
    border-radius: 999px
}

.modal-panel::-webkit-scrollbar-thumb {
    border-radius: 999px;
    border: 2px solid rgb(14 18 28 / .95);
    background: linear-gradient(180deg, rgb(109 255 136 / .5), rgb(110 168 255 / .45));
    box-shadow: 0 0 12px rgb(109 255 136 / .15)
}

.modal-panel::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgb(109 255 136 / .75), rgb(110 168 255 / .65))
}

.modal-panel::-webkit-scrollbar-corner {
    background: #fff0
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid rgb(255 255 255 / .15);
    background: rgb(255 255 255 / .06);
    color: var(--text);
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background 0.15s ease, border-color 0.15s ease
}

.modal-close:hover {
    background: rgb(255 255 255 / .1);
    border-color: rgb(255 255 255 / .28)
}

.modal-panel h2 {
    font-family: "Sora", sans-serif;
    font-size: clamp(1.25rem, 3.2vw, 1.65rem);
    margin-bottom: 6px;
    padding-right: 44px;
    letter-spacing: -.02em
}

.modal-user {
    color: var(--muted);
    font-size: .92rem;
    margin-bottom: 18px
}

.modal-user strong {
    color: var(--primary);
    font-weight: 700
}

.modal-panel--packages {
    width: min(980px, 100%);
    max-height: min(92vh, 760px);
    padding: clamp(22px, 4vw, 36px);
    background: radial-gradient(ellipse 100% 80% at 50% -20%, rgb(109 255 136 / .09), transparent 50%), radial-gradient(ellipse 80% 60% at 100% 50%, rgb(110 168 255 / .06), transparent 45%), linear-gradient(168deg, rgb(22 28 42 / .99), rgb(10 13 20 / .99))
}

.modal-hero {
    margin-bottom: 4px
}

.modal-panel--packages h2 {
    margin-bottom: 4px
}

.modal-lead {
    margin: 0 0 20px;
    padding-right: 40px;
    font-size: .92rem;
    color: var(--muted);
    line-height: 1.45
}

.modal-packages {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px
}

@media (min-width:900px) {
    .modal-packages {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 16px
    }
}

.modal-pack {
    position: relative;
    border-radius: 16px;
    border: 1px solid rgb(255 255 255 / .12);
    background: linear-gradient(165deg, rgb(24 31 48 / .92), rgb(14 18 28 / .94));
    padding: 0;
    display: flex;
    flex-direction: column;
    text-align: left;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease
}

.modal-pack::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: linear-gradient(90deg, rgb(255 255 255 / .25), rgb(255 255 255 / .08));
    opacity: .9
}

.modal-pack:hover {
    border-color: rgb(255 255 255 / .2)
}

.modal-pack:not(.popular):hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgb(0 0 0 / .35)
}

.modal-pack-inner {
    padding: 16px 16px 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    min-height: 100%
}

.modal-pack-pill {
    align-self: flex-start;
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 999px;
    border: 1px solid rgb(255 255 255 / .14);
    background: rgb(255 255 255 / .06);
    color: #c8d4e8
}

.modal-pack-pill--trial {
    border-color: rgb(110 168 255 / .45);
    background: rgb(110 168 255 / .14);
    color: #b8d4ff
}

.modal-pack-pill--popular {
    border-color: rgb(109 255 136 / .45);
    background: rgb(109 255 136 / .12);
    color: var(--primary)
}

.modal-pack-pill--muted {
    border-color: rgb(255 255 255 / .1);
    color: var(--muted);
    letter-spacing: .06em
}

.modal-pack-name {
    font-family: "Sora", sans-serif;
    font-size: 1.28rem;
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1.12;
    margin: 4px 0 0;
    color: var(--text)
}

.grecaptcha-badge {
    visibility: hidden
}

.modal-pack-name span {
    font-weight: 700;
    color: var(--muted);
    font-size: .88em
}

.modal-pack-desc {
    margin: 0;
    font-size: .82rem;
    color: var(--muted);
    line-height: 1.35
}

.modal-price-row {
    margin-top: 6px;
    padding-top: 12px;
    border-top: 1px solid rgb(255 255 255 / .08);
    display: flex;
    flex-direction: column;
    gap: 2px
}

.modal-price-main {
    font-size: 1.62rem;
    font-weight: 800;
    letter-spacing: -.04em;
    color: var(--text);
    line-height: 1
}

.modal-price-note {
    font-size: .78rem;
    font-weight: 600;
    color: var(--muted)
}

.modal-pack.popular {
    border-color: rgb(109 255 136 / .5);
    box-shadow: 0 0 0 1px rgb(109 255 136 / .12), 0 20px 48px rgb(109 255 136 / .14);
    transform: translateY(-1px)
}

.modal-pack.popular::before {
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 1
}

.modal-pack.popular:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 0 1px rgb(109 255 136 / .2), 0 24px 56px rgb(109 255 136 / .18)
}

.modal-pack.free {
    border-color: rgb(110 168 255 / .38);
    background: linear-gradient(165deg, rgb(30 40 62 / .95), rgb(16 24 42 / .92))
}

.modal-pack.free::before {
    background: linear-gradient(90deg, #7eb8ff, #4d8be8);
    opacity: 1
}

.modal-pack.free .modal-buy {
    background: linear-gradient(180deg, rgb(120 180 255 / .98), #3d7ad4);
    color: #061018;
    border: none
}

.modal-pack.free .modal-buy:hover {
    filter: brightness(1.08)
}

.modal-pack .modal-buy {
    margin-top: auto;
    width: 100%;
    min-height: 44px;
    border: none;
    border-radius: 11px;
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-size: .85rem;
    cursor: pointer;
    color: #08110d;
    background: linear-gradient(180deg, var(--primary), var(--primary-dark));
    padding: 0 14px;
    box-shadow: 0 6px 18px rgb(109 255 136 / .22);
    transition: filter 0.15s ease, transform 0.15s ease
}

.modal-pack .modal-buy:active {
    transform: translateY(1px)
}

.modal-pack:not(.popular):not(.free) .modal-buy {
    background: rgb(28 36 51 / .95);
    color: #e8f0ff;
    border: 1px solid rgb(255 255 255 / .14);
    box-shadow: 0 6px 20px rgb(0 0 0 / .25)
}

.modal-pack:not(.popular):not(.free) .modal-buy:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgb(32 42 58 / .98)
}

.modal-pack.popular .modal-buy {
    box-shadow: 0 8px 22px rgb(109 255 136 / .35)
}

.modal-pack.popular .modal-buy:hover {
    filter: brightness(1.06)
}

.modal-pack.special {
    grid-column: 1 / -1;
    border-color: rgb(126 184 255 / .6);
    background: linear-gradient(165deg, rgb(38 50 74 / .96), rgb(24 29 46 / .94));
    box-shadow: 0 0 0 1px rgb(126 184 255 / .22), 0 18px 42px rgb(122 191 255 / .22), 0 0 30px rgb(154 139 255 / .16)
}

.modal-pack.special::before {
    height: 4px;
    background: linear-gradient(90deg, #8bc7ff, #8f98ff, #6dff88);
    opacity: 1
}

.modal-pack.special .modal-pack-pill {
    border-color: rgb(126 184 255 / .55);
    background: rgb(126 184 255 / .16);
    color: #dbe8ff
}

.modal-pack.special .modal-buy {
    border: 1px solid rgb(125 208 255 / .62);
    background: linear-gradient(180deg, rgb(25 40 63 / .98), rgb(16 25 43 / .98));
    color: #dff0ff;
    text-shadow: none;
    letter-spacing: .01em;
    box-shadow: inset 0 0 0 1px rgb(255 255 255 / .06), 0 10px 24px rgb(90 180 255 / .24)
}

.modal-pack.special .modal-buy:hover {
    border-color: rgb(125 228 255 / .9);
    background: linear-gradient(180deg, rgb(28 48 74 / .99), rgb(18 31 52 / .99));
    color: #f2fbff;
    box-shadow: inset 0 0 0 1px rgb(125 228 255 / .25), 0 12px 28px rgb(90 180 255 / .34)
}

.modal-footnote {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgb(255 255 255 / .08);
    font-size: .84rem;
    color: var(--muted);
    text-align: center
}

.modal-footnote a {
    color: var(--accent);
    font-weight: 600
}

footer {
    border-top: 1px solid rgb(255 255 255 / .09);
    padding: 22px 0 26px;
    color: #8a96ac;
    font-size: .9rem;
    text-align: center
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    justify-content: center;
    align-items: center
}

.footer-legal button {
    background: none;
    border: none;
    padding: 0;
    color: var(--accent);
    font-family: inherit;
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px
}

.footer-legal button:hover,
.footer-legal button:focus-visible {
    color: var(--primary);
    outline: none
}

.modal-panel--legal {
    width: min(720px, 100%);
    max-height: min(88vh, 760px)
}

.modal-panel--legal>h2 {
    font-family: "Sora", sans-serif;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-bottom: 4px;
    padding-right: 44px;
    letter-spacing: -.02em
}

.legal-updated {
    font-size: .82rem;
    color: var(--muted);
    margin-bottom: 12px
}

.legal-prose {
    color: var(--muted);
    font-size: .88rem;
    line-height: 1.72
}

.legal-prose h3 {
    font-family: "Sora", sans-serif;
    font-size: .98rem;
    color: var(--text);
    margin: 1.15rem 0 .45rem
}

.legal-prose h3:first-of-type {
    margin-top: 0
}

.legal-prose p {
    margin-bottom: .65rem
}

.legal-prose ul {
    margin: .4rem 0 .65rem 1.2rem
}

.legal-prose li {
    margin-bottom: .35rem
}

.legal-prose strong {
    color: #c8d4ea
}

.modal-panel--orders {
    width: min(640px, 100%);
    max-height: min(92vh, 800px);
    padding: 0;
    background: radial-gradient(ellipse 100% 60% at 50% -10%, rgb(110 168 255 / .07), transparent 50%), linear-gradient(168deg, rgb(18 23 36 / .99), rgb(10 13 20 / .99));
    overflow: hidden;
    display: flex;
    flex-direction: column
}

.orders-header {
    padding: 22px 24px 0;
    position: relative;
    z-index: 2
}

.orders-header h2 {
    font-family: "Sora", sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -.03em;
    margin: 0 0 2px;
    padding-right: 44px
}

.orders-header-sub {
    color: var(--muted);
    font-size: .84rem;
    margin: 0
}

.orders-notices {
    margin-top: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px
}

.orders-notice {
    border-radius: 12px;
    padding: 10px 11px;
    border: 1px solid rgb(255 255 255 / .14);
    background: linear-gradient(160deg, rgb(25 31 46 / .75), rgb(14 18 28 / .8));
    display: grid;
    gap: 4px
}

.orders-notice-title {
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 800
}

.orders-notice-text {
    font-size: .78rem;
    line-height: 1.45
}

.orders-notice--time {
    border-color: rgb(110 168 255 / .36);
    box-shadow: inset 0 0 0 1px rgb(110 168 255 / .08)
}

.orders-notice--time .orders-notice-title {
    color: #b7d5ff
}

.orders-notice--time .orders-notice-text {
    color: #d6e7ff
}

.orders-notice--save {
    border-color: rgb(109 255 136 / .36);
    box-shadow: inset 0 0 0 1px rgb(109 255 136 / .08)
}

.orders-notice--save .orders-notice-title {
    color: #9dffba
}

.orders-notice--save .orders-notice-text {
    color: #d5f8df
}

.orders-notice--support {
    grid-column: 1 / -1
}

.orders-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px;
    scrollbar-width: thin;
    scrollbar-color: rgb(109 255 136 / .4) rgb(255 255 255 / .04)
}

.orders-body::-webkit-scrollbar {
    width: 8px
}

.orders-body::-webkit-scrollbar-track {
    background: rgb(255 255 255 / .03);
    border-radius: 999px
}

.orders-body::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgb(109 255 136 / .35)
}

.orders-list {
    list-style: none;
    display: grid;
    gap: 12px;
    margin: 0
}

.orders-card {
    position: relative;
    border: 1px solid rgb(255 255 255 / .1);
    border-radius: 14px;
    background: linear-gradient(165deg, rgb(22 28 44 / .8), rgb(12 16 24 / .85));
    padding: 16px;
    display: grid;
    gap: 10px;
    transition: border-color .2s ease
}

.orders-card:hover {
    border-color: rgb(255 255 255 / .18)
}

.orders-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px
}

.orders-card-id {
    font-family: "Sora", sans-serif;
    font-size: .82rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: .02em;
    word-break: break-all
}

.orders-card-badge {
    flex-shrink: 0;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px
}

.orders-card-badge--active {
    border: 1px solid rgb(109 255 136 / .35);
    background: rgb(109 255 136 / .1);
    color: var(--primary)
}

.orders-card-badge--stopped {
    border: 1px solid rgb(255 160 80 / .35);
    background: rgb(255 160 80 / .1);
    color: #ffb870
}

.orders-card-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 16px
}

.orders-card-field {
    display: flex;
    flex-direction: column;
    gap: 1px
}

.orders-card-label {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgb(155 167 189 / .7)
}

.orders-card-value {
    font-size: .88rem;
    font-weight: 600;
    color: var(--text)
}

.orders-card-delivery {
    display: grid;
    gap: 6px;
    padding-top: 4px
}

.orders-card-delivery-head {
    display: inline-flex;
    align-items: center;
    gap: 6px
}

.orders-help-wrap {
    position: relative;
    display: inline-flex;
    align-items: center
}

.orders-help-tip {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 1px solid rgb(155 167 189 / .45);
    background: rgb(155 167 189 / .12);
    color: rgb(221 229 245 / .95);
    font-size: .68rem;
    font-weight: 800;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: help;
    padding: 0
}

.orders-help-tip:hover,
.orders-help-tip:focus-visible {
    border-color: rgb(109 255 136 / .55);
    color: #d9ffe4;
    background: rgb(109 255 136 / .18);
    outline: none
}

.orders-help-popover {
    position: absolute;
    z-index: 20;
    left: calc(100% - 22px);
    bottom: calc(100% + 10px);
    transform: translateX(0) translateY(4px);
    width: min(300px, 72vw);
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgb(109 255 136 / .3);
    background: linear-gradient(180deg, rgb(16 23 36 / .98), rgb(10 15 24 / .98));
    color: rgb(226 236 255 / .95);
    font-size: .74rem;
    line-height: 1.45;
    letter-spacing: .01em;
    box-shadow: 0 10px 28px rgb(0 0 0 / .35);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .16s ease, transform .16s ease, visibility .16s ease
}

.orders-help-popover::after {
    content: "";
    position: absolute;
    left: 14px;
    top: 100%;
    width: 10px;
    height: 10px;
    transform: rotate(45deg);
    border-right: 1px solid rgb(109 255 136 / .3);
    border-bottom: 1px solid rgb(109 255 136 / .3);
    background: rgb(10 15 24 / .98)
}

.orders-help-wrap:hover .orders-help-popover,
.orders-help-wrap:focus-within .orders-help-popover {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) translateY(0)
}

.orders-help-row {
    display: grid;
    grid-template-columns: 14px 1fr;
    align-items: start;
    gap: 6px;
    line-height: 1.45
}

.orders-help-row+.orders-help-row {
    margin-top: 6px
}

.orders-help-star {
    color: rgb(109 255 136 / .95);
    font-size: .76rem;
    line-height: 1.2;
    transform: translateY(1px)
}

.orders-delivery-select {
    min-height: 36px;
    border-radius: 10px;
    border: 1px solid rgb(255 255 255 / .16);
    background: rgb(12 16 24 / .85);
    color: var(--text);
    font-family: "Manrope", sans-serif;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .02em;
    padding: 0 10px
}

.orders-delivery-select:focus {
    outline: none;
    border-color: rgb(109 255 136 / .45);
    box-shadow: 0 0 0 2px rgb(109 255 136 / .12)
}

.orders-delivery-select:disabled {
    opacity: .55;
    cursor: not-allowed
}

.orders-card-actions {
    display: flex;
    gap: 8px;
    padding-top: 8px;
    border-top: 1px solid rgb(255 255 255 / .07)
}

.orders-btn {
    flex: 1;
    min-height: 38px;
    border-radius: 10px;
    border: none;
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-size: .82rem;
    cursor: pointer;
    transition: filter .15s ease, transform .15s ease
}

.orders-btn:active {
    transform: translateY(1px)
}

.orders-btn:disabled {
    opacity: .5;
    cursor: not-allowed
}

.orders-btn--start {
    background: linear-gradient(180deg, var(--primary), var(--primary-dark));
    color: #07130a;
    box-shadow: 0 4px 14px rgb(109 255 136 / .2)
}

.orders-btn--start:hover:not(:disabled) {
    filter: brightness(1.08)
}

.orders-btn--stop {
    background: rgb(255 96 96 / .15);
    border: 1px solid rgb(255 96 96 / .3);
    color: #ff9a9a
}

.orders-btn--stop:hover:not(:disabled) {
    background: rgb(255 96 96 / .25);
    border-color: rgb(255 96 96 / .5)
}

.orders-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
    padding: 40px 20px;
    color: var(--muted)
}

.orders-empty-icon {
    font-size: 2.2rem;
    opacity: .5
}

.orders-empty-text {
    font-size: .92rem;
    line-height: 1.5
}

.orders-footer {
    padding: 14px 24px 18px;
    border-top: 1px solid rgb(255 255 255 / .08);
    display: grid;
    gap: 10px
}

.orders-footer-label {
    font-size: .8rem;
    font-weight: 700;
    color: #c8d4ea;
    text-transform: uppercase;
    letter-spacing: .06em
}

.orders-footer-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

.orders-footer input {
    flex: 1 1 220px;
    min-height: 42px;
    border: 1px solid var(--line);
    background: #0c1018;
    color: var(--text);
    border-radius: 11px;
    padding: 0 14px;
    font-size: .88rem;
    font-family: inherit;
    outline: none;
    transition: border-color .2s ease
}

.orders-footer input:focus {
    border-color: var(--accent)
}

.orders-footer-btn {
    min-height: 42px;
    border-radius: 11px;
    border: 1px solid rgb(255 255 255 / .14);
    background: rgb(28 36 51 / .95);
    color: #e8f0ff;
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-size: .82rem;
    padding: 0 16px;
    cursor: pointer;
    transition: border-color .15s ease, color .15s ease, background .15s ease
}

.orders-footer-btn:hover {
    border-color: rgb(109 255 136 / .5);
    color: var(--primary);
    background: rgb(32 42 58 / .98)
}

.orders-footer-btn:disabled {
    opacity: .5;
    cursor: not-allowed
}

.orders-footer-btn--accent {
    border-color: rgb(110 168 255 / .35);
    background: rgb(110 168 255 / .12);
    color: var(--accent)
}

.orders-footer-btn--accent:hover {
    border-color: rgb(110 168 255 / .6);
    background: rgb(110 168 255 / .2);
    color: #dce9ff
}

.seo-viewers {
    padding: 56px 0
}

.seo-viewers-inner {
    border: 1px solid rgb(255 255 255 / .1);
    border-radius: 18px;
    background: rgb(16 20 29 / .55);
    padding: clamp(22px, 4vw, 34px)
}

.seo-viewers .section-head {
    margin-bottom: 22px;
    text-align: center
}

.seo-title {
    font-family: "Sora", sans-serif;
    font-weight: 800;
    margin: 0 auto;
    max-width: 44rem;
    display: block;
    text-align: center
}

.seo-title-primary {
    font-size: clamp(2rem, 6vw, 3.25rem);
    line-height: 1.06;
    letter-spacing: -.04em;
    color: var(--text);
    text-wrap: balance;
    display: block
}

.seo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px
}

.seo-card {
    border-radius: 14px;
    border: 1px solid rgb(255 255 255 / .08);
    background: rgb(12 16 24 / .55);
    padding: 18px
}

.seo-card h3 {
    font-family: "Sora", sans-serif;
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--text)
}

.seo-card p {
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.7
}

.seo-highlight {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgb(109 255 136 / .22);
    background: rgb(109 255 136 / .06);
    font-size: .9rem;
    color: #d5e2f5;
    line-height: 1.65
}

.seo-highlight strong {
    color: var(--primary);
    font-weight: 700
}

.trust-metrics {
    padding: 58px 0
}

.trust-metrics-inner {
    border: 1px solid rgb(109 255 136 / .2);
    border-radius: 18px;
    background: linear-gradient(160deg, rgb(109 255 136 / .06), rgb(12 16 24 / .72));
    padding: clamp(22px, 4vw, 34px)
}

.trust-metrics-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px
}

.trust-metric-card {
    border-radius: 14px;
    border: 1px solid rgb(255 255 255 / .09);
    background: rgb(10 14 22 / .58);
    padding: 16px;
    text-align: center
}

.trust-metric-label {
    display: block;
    font-size: .78rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .07em;
    font-weight: 800
}

.trust-metric-value {
    display: block;
    margin-top: 8px;
    font-family: "Sora", sans-serif;
    font-weight: 800;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    color: var(--primary);
    line-height: 1.1
}

.showcase {
    padding: 10px 0 26px
}

.showcase-inner {
    border: 1px solid rgb(255 255 255 / .1);
    border-radius: 18px;
    background: rgb(16 20 29 / .55);
    padding: clamp(16px, 3vw, 24px);
    display: grid;
    gap: 12px
}

.showcase-text {
    color: var(--muted);
    font-size: .93rem;
    line-height: 1.65
}

.showcase-video-wrap {
    position: relative;
    border-radius: 14px;
    overflow: hidden
}

.showcase-video {
    width: 100%;
    display: block;
    border-radius: 14px;
    border: 1px solid rgb(255 255 255 / .12);
    background: #05070c
}

.showcase-play-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: none;
    background: linear-gradient(160deg, rgb(5 8 15 / .56), rgb(6 10 16 / .72));
    backdrop-filter: blur(2px);
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease
}

.showcase-play-overlay.is-loading {
    cursor: progress
}

.showcase-play-overlay::before {
    content: "";
    position: absolute;
    inset: -30%;
    background: radial-gradient(circle at 50% 50%, rgb(109 255 136 / .26), transparent 42%), radial-gradient(circle at 60% 45%, rgb(110 168 255 / .2), transparent 48%);
    filter: blur(24px);
    animation: showcaseGlow 3.2s ease-in-out infinite
}

.showcase-play-overlay.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none
}

.showcase-play-cta {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 130px;
    min-height: 56px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid rgb(109 255 136 / .55);
    background: linear-gradient(180deg, rgb(20 32 44 / .95), rgb(11 20 31 / .95));
    color: var(--primary);
    font-family: "Sora", sans-serif;
    font-size: .95rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    box-shadow: 0 0 0 1px rgb(109 255 136 / .18), 0 8px 28px rgb(109 255 136 / .24), 0 0 28px rgb(110 168 255 / .2);
    animation: showcasePulse 1.8s ease-in-out infinite
}

.showcase-play-overlay.is-loading .showcase-play-cta {
    min-width: 170px;
    animation: none
}

@keyframes showcaseGlow {

    0%,
    100% {
        transform: scale(1);
        opacity: .7
    }

    50% {
        transform: scale(1.08);
        opacity: 1
    }
}

@keyframes showcasePulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 1px rgb(109 255 136 / .18), 0 8px 28px rgb(109 255 136 / .24), 0 0 28px rgb(110 168 255 / .2)
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 1px rgb(109 255 136 / .36), 0 10px 34px rgb(109 255 136 / .35), 0 0 36px rgb(110 168 255 / .3)
    }
}

@media (max-width:980px) {
    .hero-grid {
        grid-template-columns: 1fr
    }

    .feature-grid,
    .steps {
        grid-template-columns: 1fr 1fr
    }

    .pricing {
        grid-template-columns: 1fr 1fr
    }

    .seo-grid {
        grid-template-columns: 1fr
    }

    .compare-grid {
        grid-template-columns: 1fr
    }

    .trust-metrics-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width:700px) {

    /* Mobile GPUs struggle with layered animated backgrounds */
    .starfield {
        display: none
    }

    /* Expensive blur on scroll hurts mobile paint/composite time */
    .topbar {
        backdrop-filter: none;
        background: #090b10
    }

    .plan.special,
    .showcase-play-overlay::before,
    .showcase-play-cta {
        animation: none !important
    }

    .topbar-inner {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        min-height: 0
    }

    .topbar-head {
        width: 100%;
        min-height: 72px;
        box-sizing: border-box;
        justify-content: space-between
    }

    .brand {
        flex-shrink: 0
    }

    .nav-toggle {
        display: inline-flex;
        margin-left: 0
    }

    .nav {
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
        padding: 6px 0 10px;
        margin-top: 0;
        border-top: 1px solid rgb(255 255 255 / .08)
    }

    .topbar.is-nav-open .nav {
        display: flex
    }

    .nav a {
        font-size: .94rem;
        padding: 12px 2px;
        border-bottom: 1px solid rgb(255 255 255 / .06)
    }

    .nav button {
        width: 100%;
        text-align: left;
        font-size: .94rem;
        padding: 12px 2px;
        border-bottom: 1px solid rgb(255 255 255 / .06);
        color: var(--muted)
    }

    .nav a:last-child {
        border-bottom: none
    }

    .nav button:last-child {
        border-bottom: none
    }

    .quick-start {
        flex-direction: column;
        align-items: stretch
    }

    .quick-start input {
        flex: 1 1 auto;
        width: 100%;
        min-width: 0
    }

    .quick-start button {
        width: 100%
    }

    .feature-grid,
    .steps {
        grid-template-columns: 1fr
    }

    .pricing {
        grid-template-columns: 1fr
    }

    .hero {
        padding-top: 68px
    }

    .modal-packages {
        grid-template-columns: 1fr
    }

    .orders-notices {
        grid-template-columns: 1fr
    }

    .trust-metrics-grid {
        grid-template-columns: 1fr
    }
}

@media (max-width:900px) {
    .pricing .plan.special {
        grid-template-columns: 1fr;
        grid-template-areas:
            "badge"
            "title"
            "price"
            "list"
            "cta";
        gap: 10px
    }

    .pricing .plan.special .price {
        justify-self: start
    }

    .pricing .plan.special ul {
        grid-template-columns: 1fr
    }

    .pricing .plan.special>a {
        min-width: 0;
        width: 100%
    }
}