:root {
    --bg: #07101f;
    --panel: #0d192d;
    --panel2: #101f39;
    --ink: #f7f9fd;
    --muted: #a9b5c8;
    --line: rgba(255, 255, 255, .1);
    --gold: #ffbd3f;
    --gold2: #ffd66c;
    --green: #49d79a;
    --red: #ff737d;
    --shadow: 0 30px 90px rgba(0, 0, 0, .38);
    --r: 24px;
    --max: 1180px;
    --nav: 74px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    color: var(--ink);
    font-family: 'DM Sans', sans-serif;
    background: radial-gradient(circle at 84% 7%, rgba(255, 189, 63, .11), transparent 24%), radial-gradient(circle at 8% 23%, rgba(70, 106, 255, .08), transparent 23%), linear-gradient(180deg, #07101f, #0a1425 48%, #07101f);
    overflow-x: hidden
}

body.modal-open {
    overflow: hidden
}

a {
    text-decoration: none;
    color: inherit
}

button,
input {
    font: inherit
}

button {
    cursor: pointer
}

.container {
    width: min(var(--max), calc(100% - 40px));
    margin: auto
}

.section {
    padding: 108px 0;
    position: relative
}

.noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: .025;
    z-index: -1;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='.85' numOctaves='4' stitchTiles='stitch' type='fractalNoise'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E")
}

#cursor {
    position: fixed;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 189, 63, .09), transparent 63%);
    z-index: 0;
    mix-blend-mode: screen
}

.section-head {
    max-width: 780px;
    margin-bottom: 46px
}

.kicker {
    color: var(--gold);
    font-weight: 800;
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase
}

.section h2 {
    font: 800 clamp(34px, 4vw, 53px)/1.03 Manrope, sans-serif;
    letter-spacing: -.05em;
    margin: 10px 0 15px
}

.intro {
    font-size: 17px;
    line-height: 1.72;
    color: var(--muted)
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav);
    z-index: 1000;
    border-bottom: 1px solid transparent;
    background: rgba(7, 16, 31, .56);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    transition: .3s
}

header.scrolled {
    background: rgba(7, 16, 31, .91);
    border-color: var(--line)
}

.nav {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px
}

.brand {
    display: flex;
    align-items: center;
    gap: 11px;
    font: 800 14px Manrope, sans-serif;
    letter-spacing: -.02em
}

.brand-mark {
    width: 39px;
    height: 39px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:none !important;
    box-shadow: 0 9px 28px rgba(255, 189, 63, .2);
    overflow: hidden;
    position: relative
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.brand-mark:after { display:none; }



.links {
    display: flex;
    gap: 26px;
    font-size: 13px;
    color: #c2cddd
}

.links a {
    padding: 7px 0;
    position: relative
}

.links a:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: .24s
}

.links a:hover:after {
    transform: scaleX(1)
}

.nav-btn,
.btn {
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 14px;
    min-height: 52px;
    padding: 0 18px;
    transition: .25s
}

.nav-btn {
    min-height: 42px;
    border-radius: 12px;
    background: var(--gold);
    color: #172137;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 10px 28px rgba(255, 189, 63, .13)
}

.nav-btn:hover,
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(255, 189, 63, .24)
}

.hero {
    min-height: 100svh;
    display: grid;
    align-items: center;
    padding: calc(var(--nav) + 45px) 0 65px;
    position: relative
}

.hero:before {
    content: "";
    position: absolute;
    width: 620px;
    height: 620px;
    right: -230px;
    top: 4%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 189, 63, .16), transparent 65%);
    filter: blur(18px);
    animation: glow 7s ease-in-out infinite
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 55px;
    align-items: center
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 189, 63, .22);
    background: rgba(255, 189, 63, .07);
    border-radius: 999px;
    padding: 7px 11px;
    color: var(--gold2);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase
}

.eyebrow i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 7px rgba(73, 215, 154, .09);
    animation: pulse 2s infinite
}

h1 {
    font: 800 clamp(43px, 5.4vw, 78px)/.98 Manrope, sans-serif;
    letter-spacing: -.06em;
    margin: 19px 0
}

.hero h1 .gold {
    color: var(--gold)
}

.hero-copy {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.73;
    max-width: 690px
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 27px
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold2), var(--gold));
    color: #172137;
    font-weight: 800;
    box-shadow: 0 16px 40px rgba(255, 189, 63, .17)
}

.btn-ghost {
    color: #edf2fa;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--line);
    font-weight: 700
}

.btn-ghost:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, .065)
}

.trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    margin-top: 20px;
    color: #9eabc0;
    font-size: 12px
}

.trust-item {
    display: inline-flex;
    gap: 7px;
    align-items: center
}

.check {
    width: 18px;
    height: 18px;
    border-radius: 6px;
    display: grid;
    place-items: center;
    background: rgba(73, 215, 154, .11);
    color: var(--green);
    font-size: 10px;
    font-weight: 900
}

.proofs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 31px
}

.proof {
    padding: 11px 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, .025)
}

.proof strong {
    font: 800 19px Manrope, sans-serif;
    display: block
}

.proof span {
    font-size: 10px;
    color: var(--muted)
}

.book-stage {
    min-height: 600px;
    display: grid;
    place-items: center;
    position: relative;
    perspective: 1200px
}

.orbit {
    position: absolute;
    width: 465px;
    height: 465px;
    border: 1px dashed rgba(255, 189, 63, .16);
    border-radius: 50%;
    animation: spin 24s linear infinite
}

.orbit:before,
.orbit:after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 8px rgba(255, 189, 63, .07)
}

.orbit:before {
    left: 8%;
    top: 28%
}

.orbit:after {
    right: 8%;
    bottom: 21%
}

.book {
    width: min(320px, 74vw);
    position: relative;
    transform-style: preserve-3d;
    animation: bookFloat 5.4s ease-in-out infinite
}

.cover {
    width: 100%;
    display: block;
    border-radius: 7px 13px 13px 7px;
    box-shadow: 35px 44px 90px rgba(0, 0, 0, .45), 0 0 0 1px rgba(255, 255, 255, .08);
    transform: rotateY(-10deg) rotateX(3deg)
}

.spine {
    position: absolute;
    left: -12px;
    top: 4px;
    bottom: 4px;
    width: 16px;
    border-radius: 7px 0 0 7px;
    background: linear-gradient(90deg, #0b1730, #263657);
    transform: rotateY(-10deg) rotateX(3deg)
}

.shadow {
    position: absolute;
    left: 9%;
    right: 4%;
    bottom: -28px;
    height: 55px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .56);
    filter: blur(18px);
    transform: translateZ(-15px)
}



.stats {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, .014);
    padding: 18px 0
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr)
}

.stat {
    text-align: center;
    padding: 20px;
    border-right: 1px solid var(--line)
}

.stat:last-child {
    border-right: 0
}

.stat strong {
    display: block;
    font: 800 34px Manrope, sans-serif
}

.stat span {
    display: block;
    color: var(--muted);
    font-size: 11px;
    margin-top: 6px
}

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px
}

.feature {
    padding: 25px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .015));
    transition: .3s
}

.feature:hover {
    transform: translateY(-7px);
    border-color: rgba(255, 189, 63, .23)
}

.num {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    background: rgba(255, 189, 63, .08);
    color: var(--gold);
    font-weight: 900;
    font-size: 11px
}

.feature h3,
.step h3 {
    font: 800 18px Manrope, sans-serif;
    letter-spacing: -.02em;
    margin: 16px 0 8px
}

.feature p,
.step p {
    margin: 0;
    color: var(--muted);
    font-size: 13.5px;
    line-height: 1.68
}

.split {
    display: grid;
    grid-template-columns: .86fr 1.14fr;
    gap: 54px;
    align-items: center
}

.visual {
    min-height: 470px;
    border: 1px solid var(--line);
    border-radius: 27px;
    background: radial-gradient(circle at 50% 25%, rgba(255, 189, 63, .11), transparent 43%), #0b1628;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden
}

.visual:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 28%, rgba(255, 255, 255, .06) 50%, transparent 70%);
    transform: translateX(-130%);
    animation: sweep 6s ease-in-out infinite
}

.phone {
    width: 245px;
    border-radius: 29px;
    padding: 10px;
    background: #0a1221;
    border: 1px solid rgba(255, 255, 255, .1);
    box-shadow: 0 30px 70px rgba(0, 0, 0, .46);
    transform: rotate(-4deg)
}

.screen {
    min-height: 410px;
    padding: 17px;
    border-radius: 20px;
    background: linear-gradient(#14213a, #0d172a);
    overflow: hidden
}

.bar {
    width: 88px;
    height: 5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    margin: 0 auto 24px
}

.line-g {
    height: 7px;
    width: 75px;
    background: rgba(255, 189, 63, .35);
    border-radius: 999px;
    margin-bottom: 10px
}

.line-big {
    height: 20px;
    width: 90%;
    background: #e9eef6;
    border-radius: 5px;
    margin-bottom: 7px
}

.line-big.s {
    width: 61%
}

.lines {
    display: grid;
    gap: 7px;
    margin-top: 17px
}

.lines span {
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .1)
}

.mini {
    padding: 13px;
    border-radius: 15px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--line);
    margin-top: 21px
}

.mini-pill {
    height: 22px;
    width: 74px;
    border-radius: 999px;
    background: rgba(73, 215, 154, .13)
}

.cta-mini {
    height: 43px;
    border-radius: 11px;
    background: var(--gold);
    margin-top: 19px
}

.callout {
    position: absolute;
    right: 18px;
    top: 22%;
    padding: 13px;
    max-width: 190px;
    border-radius: 15px;
    border: 1px solid var(--line);
    background: rgba(7, 16, 31, .91);
    box-shadow: var(--shadow);
    transform: rotate(5deg)
}

.callout strong {
    display: block;
    font-size: 12px
}

.callout span {
    display: block;
    font-size: 10px;
    line-height: 1.55;
    color: var(--muted);
    margin-top: 4px
}

.benefits {
    display: grid;
    gap: 15px;
    margin-top: 27px
}

.benefit {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 11px
}

.benefit i {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: rgba(255, 189, 63, .09);
    color: var(--gold);
    font-style: normal
}

.benefit strong {
    display: block;
    font-size: 14px
}

.benefit span {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 12.5px;
    line-height: 1.55
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px
}

.step {
    min-height: 215px;
    padding: 27px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, .023);
    position: relative;
    overflow: hidden
}

.step-num {
    position: absolute;
    right: 16px;
    top: 10px;
    color: rgba(255, 189, 63, .15);
    font: 800 59px Manrope, sans-serif
}

.step h3 {
    margin-top: 34px
}

.question {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 16px
}

.qmain {
    min-height: 315px;
    padding: 28px;
    border: 1px solid rgba(255, 189, 63, .14);
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(255, 189, 63, .1), rgba(255, 255, 255, .02))
}

.tag {
    display: inline-flex;
    padding: 6px 9px;
    border-radius: 999px;
    background: rgba(255, 189, 63, .09);
    color: var(--gold2);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em
}

.qmain blockquote {
    font: 800 28px/1.17 Manrope, sans-serif;
    letter-spacing: -.035em;
    margin: 26px 0 19px;
    max-width: 650px
}

.qmain p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65
}

.qlist {
    display: grid;
    gap: 11px
}

.qitem {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, .025)
}

.qicon {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    background: rgba(75, 111, 255, .1);
    color: #98b3ff;
    font-weight: 900
}

.qitem strong {
    font-size: 13px
}

.qitem span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.45
}

.ats-card {
    display:grid;
    grid-template-columns:1.08fr .92fr;
    gap:28px;
    padding:38px;
    border:1px solid rgba(255,189,63,.22);
    border-radius:29px;
    background:radial-gradient(circle at 85% 15%,rgba(255,189,63,.16),transparent 30%),linear-gradient(145deg,#12203a,#0b1729);
    box-shadow:var(--shadow);
    overflow:hidden;
    position:relative
}
.ats-card:before {
    content:"";
    position:absolute;
    inset:auto -120px -170px auto;
    width:380px;
    height:380px;
    border-radius:50%;
    border:1px solid rgba(255,189,63,.11);
    box-shadow:0 0 0 35px rgba(255,189,63,.025),0 0 0 75px rgba(255,189,63,.015)
}
.ats-copy { position:relative; z-index:1 }
.ats-copy h2 { font:800 clamp(31px,4vw,50px)/1.04 Manrope,sans-serif; letter-spacing:-.05em; margin:10px 0 15px }
.gold { color:var(--gold) }
.ats-points { display:grid; gap:13px; margin-top:25px }
.ats-points>div { display:grid; grid-template-columns:22px 1fr; gap:10px; align-items:start }
.ats-points .check { margin-top:2px }
.ats-points span { color:var(--muted); font-size:12.5px; line-height:1.55 }
.ats-points strong { color:var(--ink); font-size:13px }
.ats-note { margin-top:22px; padding:13px 15px; border:1px solid rgba(255,189,63,.12); border-radius:13px; background:rgba(255,189,63,.045); color:#aebbd0; font-size:10.5px; line-height:1.55 }
.ats-visual { min-height:360px; display:grid; place-items:center; position:relative; z-index:1 }
.ats-window { width:min(420px,100%); padding:17px; border:1px solid rgba(255,255,255,.11); border-radius:21px; background:#091426; box-shadow:0 28px 70px rgba(0,0,0,.38); transform:rotate(1.5deg) }
.ats-top { display:flex; align-items:center; gap:6px; padding-bottom:15px; border-bottom:1px solid var(--line); color:#8e9cb1; font-size:9px }
.ats-top span { width:7px; height:7px; border-radius:50%; background:rgba(255,255,255,.15) }
.ats-top strong { margin-left:auto; color:#dce5f2; letter-spacing:.08em; font-size:9px }
.ats-score { display:flex; justify-content:space-between; align-items:center; gap:15px; padding:22px 0 18px }
.ats-score small { display:block; color:#8795a9; font-size:9px; margin-bottom:5px }
.ats-score strong { font:800 18px Manrope,sans-serif }
.score-ring { width:72px; height:72px; border-radius:50%; display:grid; place-items:center; border:7px solid rgba(73,215,154,.18); box-shadow:inset 0 0 0 7px rgba(255,255,255,.025); color:var(--green); font:900 11px Manrope,sans-serif }
.ats-row { display:flex; justify-content:space-between; gap:10px; padding:11px 0; border-top:1px solid rgba(255,255,255,.07); font-size:10.5px; color:#b6c1d1 }
.ats-row b { color:var(--green); font-size:9px; text-transform:uppercase; letter-spacing:.05em }
.testimonials { display:grid; grid-template-columns:repeat(2,1fr); gap:16px }
.testimonial { padding:30px; border:1px solid var(--line); border-radius:22px; background:linear-gradient(180deg,rgba(255,255,255,.035),rgba(255,255,255,.015)); position:relative; overflow:hidden }
.testimonial:before { content:""; position:absolute; width:150px; height:150px; border-radius:50%; right:-70px; top:-80px; background:rgba(255,189,63,.055) }
.quote-mark { color:var(--gold); font:800 55px/1 Georgia,serif; height:38px }
.testimonial p { color:#c3ccda; font-size:13px; line-height:1.72; margin:13px 0 0 }
.testimonial p strong { color:var(--gold2) }
.person { display:flex; align-items:center; gap:12px; margin-top:24px; padding-top:17px; border-top:1px solid var(--line) }
.avatar { width:43px; height:43px; border-radius:13px; display:grid; place-items:center; background:rgba(255,189,63,.09); color:var(--gold); font-weight:900; font-size:11px }
.person strong { display:block; font-size:13px }
.person span { display:block; margin-top:3px; color:var(--muted); font-size:10.5px; line-height:1.45 }
.testimonial-foot { margin-top:17px; padding:20px 22px; border:1px solid rgba(73,215,154,.12); border-radius:17px; background:rgba(73,215,154,.035); display:flex; justify-content:space-between; gap:20px; align-items:center }
.testimonial-foot strong { font:800 16px Manrope,sans-serif }
.testimonial-foot span { color:var(--muted); font-size:11px; line-height:1.5; max-width:580px }
.faq {
    max-width: 860px;
    margin: auto;
    display: grid;
    gap: 10px
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, .022)
}

.faq-btn {
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--ink);
    padding: 19px 20px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
    font-weight: 800
}

.faq-btn span:last-child {
    font-size: 21px;
    color: var(--gold);
    transition: .25s
}

.faq-item.open .faq-btn span:last-child {
    transform: rotate(45deg)
}

.answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s
}

.answer-in {
    padding: 0 20px 20px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65
}

.sell {
    padding: 43px;
    border: 1px solid rgba(255, 189, 63, .18);
    border-radius: 29px;
    background: radial-gradient(circle at 78% 8%, rgba(255, 189, 63, .15), transparent 29%), linear-gradient(145deg, #12203a, #0b1729);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden
}

.sell:after {
    content: "";
    position: absolute;
    right: -110px;
    bottom: -120px;
    width: 310px;
    height: 310px;
    border-radius: 50%;
    border: 1px solid rgba(255, 189, 63, .12);
    box-shadow: 0 0 0 34px rgba(255, 189, 63, .025), 0 0 0 70px rgba(255, 189, 63, .016)
}

.sell-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 30px;
    align-items: center;
    position: relative;
    z-index: 1
}

.sell h2 {
    margin-bottom: 12px
}

.pricebox {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 21px;
    background: rgba(5, 12, 24, .44)
}

.price-top {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: start
}

.label {
    font-size: 11px;
    color: var(--muted)
}

.price {
    font: 800 43px/1 Manrope, sans-serif;
    letter-spacing: -.055em;
    margin-top: 5px
}

.price small {
    font: 700 13px 'DM Sans', sans-serif;
    color: var(--muted);
    letter-spacing: 0
}

.badge-green {
    padding: 7px 9px;
    border-radius: 9px;
    background: rgba(73, 215, 154, .09);
    color: var(--green);
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase
}

.includes {
    border-top: 1px solid var(--line);
    padding-top: 17px;
    margin: 17px 0 19px;
    display: grid;
    gap: 9px
}

.includes div {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 12px;
    color: #dbe4f1
}

.fine {
    font-size: 10px;
    line-height: 1.5;
    color: #74849b;
    margin-top: 10px
}

footer {
    padding: 35px 0 52px;
    color: #77869c;
    font-size: 11px
}

.foot {
    border-top: 1px solid var(--line);
    padding-top: 23px;
    display: flex;
    justify-content: space-between;
    gap: 20px
}

.mobile-buy {
    display: none
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .78s ease, transform .78s cubic-bezier(.2, .75, .2, 1)
}

.reveal.show {
    opacity: 1;
    transform: none
}

.stagger>* {
    opacity: 0;
    transform: translateY(18px)
}

.stagger.show>* {
    animation: child .62s cubic-bezier(.2, .75, .2, 1) forwards
}

.stagger.show>*:nth-child(2) {
    animation-delay: .08s
}

.stagger.show>*:nth-child(3) {
    animation-delay: .16s
}

.stagger.show>*:nth-child(4) {
    animation-delay: .24s
}

.stagger.show>*:nth-child(5) {
    animation-delay: .32s
}

.stagger.show>*:nth-child(6) {
    animation-delay: .4s
}

.modal-bg {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(3, 7, 15, .8);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    opacity: 0;
    visibility: hidden;
    transition: .25s
}

.modal-bg.open {
    opacity: 1;
    visibility: visible
}

.modal {
    width: min(540px, 100%);
    border: 1px solid var(--line);
    border-radius: 23px;
    background: #0d192d;
    box-shadow: 0 35px 100px rgba(0, 0, 0, .5);
    transform: translateY(18px) scale(.98);
    transition: .28s;
    overflow: hidden
}

.modal-bg.open .modal {
    transform: none
}

.modal-head {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 15px;
    padding: 22px;
    border-bottom: 1px solid var(--line)
}

.modal-head h3 {
    margin: 0;
    font: 800 21px Manrope, sans-serif
}

.modal-head p {
    margin: 5px 0 0;
    color: var(--muted);
    font-size: 11px
}

.close {
    width: 34px;
    height: 34px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255, 255, 255, .025);
    color: #d2dbe8;
    font-size: 20px
}

.modal-body {
    padding: 21px 22px 23px
}

.field {
    display: grid;
    gap: 7px;
    margin-bottom: 13px
}

.field label {
    font-size: 11px;
    color: #c0cbdc;
    font-weight: 800
}

.field input {
    height: 48px;
    padding: 0 13px;
    border-radius: 12px;
    background: #0a1426;
    color: var(--ink);
    border: 1px solid var(--line);
    outline: 0
}

.field input:focus {
    border-color: rgba(255, 189, 63, .5);
    box-shadow: 0 0 0 4px rgba(255, 189, 63, .07)
}

.note {
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(73, 215, 154, .12);
    background: rgba(73, 215, 154, .05);
    color: #abdac6;
    font-size: 10.5px;
    line-height: 1.55;
    margin: 8px 0 16px
}

.modal .btn {
    width: 100%
}

@keyframes pulse {
    50% {
    box-shadow: 0 0 0 10px rgba(73, 215, 154, 0)
    }
}

@keyframes glow {
    0%,
    100% {
    transform: translate(0, 0) scale(1)
    }
    50% {
    transform: translate(-30px, 22px) scale(1.06)
    }
}

@keyframes spin {
    to {
    transform: rotate(360deg)
    }
}

@keyframes bookFloat {
    0%,
    100% {
    transform: translateY(0)
    }
    50% {
    transform: translateY(-12px)
    }
}

@keyframes badge {
    0%,
    100% {
    transform: translateY(0)
    }
    50% {
    transform: translateY(-9px)
    }
}

@keyframes sweep {
    0%,
    45% {
    transform: translateX(-130%)
    }
    70%,
    100% {
    transform: translateX(130%)
    }
}

@keyframes child {
    to {
    opacity: 1;
    transform: none
    }
}

@media(max-width:980px) {
    .ats-card { grid-template-columns:1fr }
    .ats-visual { min-height:320px }
    .testimonials { grid-template-columns:1fr }
    .testimonial-foot { display:block }
    .testimonial-foot span { display:block; margin-top:8px }

    .links {
    display: none
    }
    .hero-grid,
    .split,
    .sell-grid,
    .question {
    grid-template-columns: 1fr
    }
    .book-stage {
    min-height: 520px
    }
    .stats-grid {
    grid-template-columns: repeat(2, 1fr)
    }
    .stat:nth-child(2) {
    border-right: 0
    }
    .stat:nth-child(-n+2) {
    border-bottom: 1px solid var(--line)
    }
    .qlist {
    grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:700px) {
    :root {
    --nav: 68px
    }
    header {
    position: static;
    }
    html,
    body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden
    }
    .container {
    width: calc(100% - 28px);
    max-width: 100%;
    min-width: 0
    }
    .nav {
    min-width: 0;
    gap: 10px
    }
    .brand {
    min-width: 0;
    flex: 1
    }
    .brand>span:last-child {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
    }
    .nav-btn {
    flex: 0 0 auto;
    min-width: 0;
    padding: 0 14px;
    white-space: nowrap
    }
    .hero {
    padding: 100px 0 56px
    }
    .hero h1 {
    font-size: clamp(40px, 12.8vw, 61px)
    }
    .hero-copy {
    font-size: 16px
    }
    .actions {
    display: grid;
    grid-template-columns: 1fr
    }
    .btn {
    width: 100%
    }
    .book-stage {
    min-height: 465px
    }
    .orbit {
    width: 360px;
    height: 360px
    }
    .book {
    width: min(285px, 71vw)
    }

    .features,
    .steps,
    .qlist {
    grid-template-columns: 1fr
    }
    .qmain blockquote {
    font-size: 24px
    }
    .sell {
    padding: 27px;
    border-radius: 23px
    }
    .foot {
    display: block
    }
    .foot div+div {
    margin-top: 8px
    }
    .mobile-buy {
    display: flex;
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 1200;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 16px;
    background: rgba(7, 16, 31, .94);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .35);
    align-items: center;
    justify-content: space-between;
    gap: 10px
    }
    .mobile-price-label {
    font-size: 9px;
    color: var(--muted)
    }
    .mobile-price {
    font: 800 16px Manrope, sans-serif
    }
    .mobile-buy .btn {
    width: auto;
    min-height: 42px;
    padding: 0 15px;
    border-radius: 11px
    }
    #cursor {
    display: none
    }
}

@media(max-width:420px) {
    header .container {
    width: calc(100% - 20px)
    }
    .brand {
    gap: 8px
    }
    .brand-mark {
    width: 36px;
    height: 36px;
    flex: 0 0 36px
    }
    .brand>span:last-child {
    display: none
    }
    .nav-btn {
    min-height: 40px;
    padding: 0 13px;
    font-size: 11px
    }
    .hero-grid,
    .split,
    .sell-grid,
    .question,
    .features,
    .steps,
    .qlist {
    min-width: 0
    }
    .reveal,
    .book-stage,
    .visual,
    .sell,
    .pricebox,
    .feature,
    .step,
    .qmain,
    .qitem {
    min-width: 0
    }
    .proof {
    min-width: 0
    }
    .proof strong,
    .proof span,
    .hero-copy,
    .intro,
    .benefit span,
    .feature p,
    .step p {
    overflow-wrap: anywhere
    }
    .orbit {
    max-width: calc(100vw - 28px);
    max-height: calc(100vw - 28px)
    }
}

@media(prefers-reduced-motion:reduce) {
    html {
    scroll-behavior: auto
    }
    *,
    *:before,
    *:after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important
    }
}