:root {
    --black: #05080d;
    --navy: #09111e;
    --card: #0f1b2d;
    --line: rgba(255, 255, 255, .12);
    --text: #f6f7fb;
    --muted: #aeb8c6;
    --gold: #f5b400;
    --gold2: #ffd36a;
    --cyan: #25d6f2;
    --green: #20d07a
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter, system-ui, sans-serif;
    color: var(--text);
    background: radial-gradient(circle at 72% 8%, rgba(245, 180, 0, .18), transparent 32%), radial-gradient(circle at 4% 30%, rgba(37, 214, 242, .08), transparent 28%), linear-gradient(180deg, #05080d, #08101b 48%, #05070b);
    overflow-x: hidden
}

.noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: .06;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="120" height="120"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency=".8" numOctaves="3" stitchTiles="stitch"/></filter><rect width="120" height="120" filter="url(%23n)" opacity=".4"/></svg>');
    z-index: 1
}

a {
    text-decoration: none;
    color: inherit
}

img {
    max-width: 100%;
    display: block
}

.container {
    width: min(1140px, 92%);
    margin: auto
}

.section {
    padding: 88px 0
}

.nav {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(5, 8, 13, .72);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line)
}

.nav-inner {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.logo {
    font-weight: 900
}

.logo span {
    color: var(--gold)
}

nav {
    display: flex;
    gap: 24px;
    align-items: center
}

nav a {
    color: #dbe2ec;
    font-weight: 700;
    font-size: 14px
}

.nav-cta {
    padding: 10px 16px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--gold2), var(--gold));
    color: #05080d !important
}

.hero {
    padding-top: 72px
}

.hero-grid,
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center
}

.badge,
.eyebrow {
    display: inline-flex;
    color: var(--cyan);
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 18px
}

.badge {
    padding: 10px 14px;
    border: 1px solid rgba(37, 214, 242, .22);
    border-radius: 999px;
    background: rgba(37, 214, 242, .06)
}

h1,
h2,
h3,
p {
    margin-top: 0
}

h1,
h2 {
    font-family: 'Playfair Display', serif;
    letter-spacing: -.055em
}

h1 {
    font-size: clamp(52px, 7.5vw, 92px);
    line-height: .92;
    margin-bottom: 24px
}

h2 {
    font-size: clamp(36px, 4.6vw, 62px);
    line-height: 1.02;
    margin-bottom: 18px
}

h3 {
    font-size: 22px;
    margin-bottom: 8px
}

p {
    color: var(--muted);
    line-height: 1.75;
    font-size: 17px
}

.lead {
    font-size: 20px;
    color: #dce4ef
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 30px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 24px;
    border-radius: 14px;
    font-weight: 900
}

.primary {
    background: linear-gradient(180deg, var(--gold2), var(--gold));
    color: #070b12;
    box-shadow: 0 22px 60px rgba(245, 180, 0, .24)
}

.ghost {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .04)
}

.big {
    min-height: 64px;
    font-size: 18px
}

.trust,
.secure {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 22px
}

.trust span,
.secure span {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .04);
    border-radius: 999px;
    padding: 8px 12px;
    color: #dce4ef;
    font-size: 13px
}

.hero-media,
.media-card {
    border: 1px solid rgba(245, 180, 0, .28);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .45)
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 46px
}

.stats div,
.bonus,
.step,
.audience-grid span,
.offer-box,
.guarantee-box,
details,
.problem-card {
    border: 1px solid var(--line);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .025));
    box-shadow: 0 20px 60px rgba(0, 0, 0, .18)
}

.stats div {
    padding: 22px;
    text-align: center
}

.stats strong {
    display: block;
    color: var(--gold2);
    font-size: 42px
}

.stats span {
    color: var(--muted)
}

.problem {
    background: rgba(255, 255, 255, .025);
    border-block: 1px solid var(--line)
}

.problem-card {
    padding: 34px
}

.bad {
    padding: 20px;
    border-radius: 16px;
    background: rgba(245, 80, 80, .08);
    border: 1px solid rgba(245, 80, 80, .22);
    font-weight: 800
}

.bad span {
    color: #ff5d5d;
    margin-right: 10px
}

.arrow {
    text-align: center;
    color: var(--gold);
    font-size: 34px;
    margin: 16px
}

.bad-result {
    color: #fff;
    font-weight: 800
}

.reverse {
    grid-template-columns: .95fr 1.05fr
}

.checks {
    list-style: none;
    padding: 0;
    margin: 22px 0
}

.checks li {
    margin: 12px 0;
    color: #e9eef6
}

.checks li:before {
    content: '✓';
    color: var(--green);
    font-weight: 900;
    margin-right: 10px
}

.section-head {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 42px
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
}

.bonus {
    padding: 24px;
    transition: .25s
}

.bonus:hover,
.step:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 180, 0, .38)
}

.bonus b {
    color: var(--gold2);
    font-size: 14px
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.step {
    padding: 28px;
    text-align: center
}

.step span {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: #05080d;
    font-weight: 900;
    margin-bottom: 16px
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px
}

.audience-grid span {
    padding: 18px;
    font-weight: 800;
    text-align: center
}

.table-wrap {
    overflow: auto;
    border-radius: 24px;
    border: 1px solid var(--line)
}

table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, .04)
}

th,
td {
    padding: 18px;
    border-bottom: 1px solid var(--line);
    text-align: left
}

th {
    color: var(--gold2)
}

td:first-child {
    font-weight: 900;
    color: #fff
}

td:nth-child(2) {
    color: #ffb2b2
}

td:nth-child(3) {
    color: #b8ffd7
}

.mockup-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px
}

.mockup-strip img {
    border-radius: 22px;
    border: 1px solid var(--line)
}

.guarantee-box {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 34px;
    align-items: center;
    padding: 42px;
    background: radial-gradient(circle at 10% 30%, rgba(245, 180, 0, .20), transparent 30%), linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03))
}

.seal {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, var(--gold2), var(--gold));
    color: #06090f;
    box-shadow: 0 26px 70px rgba(245, 180, 0, .28);
    border: 8px solid rgba(255, 255, 255, .08)
}

.seal strong {
    font-size: 54px;
    line-height: .8
}

.seal span {
    font-weight: 900
}

.offer-box {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 34px;
    padding: 44px
}

.price span {
    display: block;
    color: #8d99aa;
    text-decoration: line-through
}

.price strong {
    display: block;
    color: var(--gold2);
    font-size: 52px;
    letter-spacing: -.06em
}

.offer-includes {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(0, 0, 0, .22)
}

.offer-includes li {
    margin: 12px 0;
    color: #e6ecf5
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px
}

details {
    padding: 20px
}

summary {
    cursor: pointer;
    font-weight: 900
}

.final {
    text-align: center
}

.final-box {
    padding: 54px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: radial-gradient(circle at 50% 0%, rgba(245, 180, 0, .16), transparent 42%), rgba(255, 255, 255, .035)
}

footer {
    border-top: 1px solid var(--line);
    padding: 30px 0
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px
}

footer p {
    font-size: 13px;
    margin: 0
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .75s ease, transform .75s ease
}

.reveal.show {
    opacity: 1;
    transform: none
}

.delay-1 {
    transition-delay: .12s
}

.delay-2 {
    transition-delay: .24s
}

@media(max-width:920px) {
    nav a:not(.nav-cta) {
        display: none
    }

    .hero-grid,
    .split,
    .reverse,
    .offer-box,
    .guarantee-box {
        grid-template-columns: 1fr
    }

    .stats,
    .bonus-grid,
    .steps-grid,
    .audience-grid,
    .mockup-strip,
    .faq-grid {
        grid-template-columns: 1fr 1fr
    }

    .section {
        padding: 64px 0
    }

    .seal {
        margin: auto
    }

    .footer-inner {
        flex-direction: column
    }
}

@media(max-width:560px) {

    .stats,
    .bonus-grid,
    .steps-grid,
    .audience-grid,
    .mockup-strip,
    .faq-grid {
        grid-template-columns: 1fr
    }

    h1 {
        font-size: 54px
    }

    .btn {
        width: 100%
    }

    .offer-box,
    .guarantee-box {
        padding: 28px
    }

    .nav-inner {
        height: 64px
    }
}