:root{
    color-scheme: light dark;
    --ad-bg:#f4f8f6;
    --ad-bg-2:#eef7f2;
    --ad-surface:#ffffff;
    --ad-surface-2:#f8fbf9;
    --ad-text:#10231c;
    --ad-muted:#5f736b;
    --ad-line:rgba(15,118,79,.14);
    --ad-green:#0f9f6e;
    --ad-green-strong:#087554;
    --ad-green-soft:#e7f8f1;
    --ad-blue:#2563eb;
    --ad-blue-soft:#edf4ff;
    --ad-gold:#b7791f;
    --ad-gold-soft:#fff7df;
    --ad-danger:#b42318;
    --ad-danger-soft:#fff0ee;
    --ad-shadow:0 22px 65px rgba(22,54,42,.11);
    --ad-radius-xl:30px;
    --ad-radius-lg:22px;
    --ad-radius-md:16px;
}

@media (prefers-color-scheme: dark){
    :root{
        --ad-bg:#040c10;
        --ad-bg-2:#07151c;
        --ad-surface:#0b1c24;
        --ad-surface-2:#0e252e;
        --ad-text:#f5faf8;
        --ad-muted:#aabbb5;
        --ad-line:rgba(148,163,184,.16);
        --ad-green:#29d99f;
        --ad-green-strong:#7bf0c8;
        --ad-green-soft:rgba(41,217,159,.11);
        --ad-blue:#60a5fa;
        --ad-blue-soft:rgba(96,165,250,.10);
        --ad-gold:#f6c453;
        --ad-gold-soft:rgba(246,196,83,.10);
        --ad-danger:#fb8a7f;
        --ad-danger-soft:rgba(251,138,127,.10);
        --ad-shadow:0 26px 75px rgba(0,0,0,.35);
    }
}

*,
*::before,
*::after{box-sizing:border-box}

html{scroll-behavior:smooth}

.anm-ad-landing{
    position:relative;
    min-height:100vh;
    overflow:hidden;
    color:var(--ad-text);
    background:
        radial-gradient(circle at 92% 0%, color-mix(in srgb, var(--ad-green) 14%, transparent), transparent 29%),
        radial-gradient(circle at 5% 30%, color-mix(in srgb, var(--ad-blue) 8%, transparent), transparent 26%),
        linear-gradient(180deg,var(--ad-bg-2),var(--ad-bg));
}

.anm-ad-landing__wrap{
    width:min(1180px,calc(100% - 30px));
    margin:0 auto;
}

.anm-ad-hero{
    position:relative;
    overflow:hidden;
    display:grid;
    grid-template-columns:minmax(0,1.25fr) minmax(300px,.75fr);
    gap:clamp(24px,5vw,54px);
    align-items:center;
    padding:clamp(28px,6vw,68px);
    border:1px solid var(--ad-line);
    border-radius:var(--ad-radius-xl);
    background:
        radial-gradient(circle at top right, color-mix(in srgb, var(--ad-green) 13%, transparent), transparent 38%),
        var(--ad-surface);
    box-shadow:var(--ad-shadow);
}

.anm-ad-hero__copy{
    position:relative;
    z-index:2;
    text-align:center;
}

.anm-ad-kicker{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 12px;
    border:1px solid color-mix(in srgb, var(--ad-green) 28%, transparent);
    border-radius:999px;
    background:var(--ad-green-soft);
    color:var(--ad-green-strong);
    font-size:12px;
    font-weight:900;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.anm-ad-hero h1{
    max-width:780px;
    margin:20px 0 16px;
    font-size:clamp(2.35rem,6.5vw,5.4rem);
    line-height:.98;
    letter-spacing:-.055em;
}

.anm-ad-hero h1 span{color:var(--ad-green)}

.anm-ad-hero__lead{
    max-width:760px;
    margin:0;
    color:var(--ad-muted);
    font-size:clamp(16px,2vw,19px);
    line-height:1.78;
}

.anm-ad-hero__chips{
    display:flex;
    flex-wrap:wrap;
    gap:9px;
    margin-top:24px;
}

.anm-ad-hero__chips span{
    padding:9px 12px;
    border:1px solid var(--ad-line);
    border-radius:12px;
    background:var(--ad-surface-2);
    color:var(--ad-text);
    font-size:13px;
    font-weight:760;
}

.anm-ad-price{
    position:relative;
    z-index:2;
    padding:26px;
    border:1px solid color-mix(in srgb, var(--ad-green) 25%, transparent);
    border-radius:24px;
    background:linear-gradient(145deg,var(--ad-green-soft),var(--ad-surface));
    text-align:center;
}

.anm-ad-price small{
    display:block;
    color:var(--ad-muted);
    font-size:12px;
    font-weight:800;
    letter-spacing:.07em;
    text-transform:uppercase;
}

.anm-ad-price strong{
    display:block;
    margin:8px 0 1px;
    color:var(--ad-green-strong);
    font-size:clamp(2.6rem,6vw,4.4rem);
    letter-spacing:-.05em;
}

.anm-ad-price p{
    margin:15px 0 0;
    padding-top:15px;
    border-top:1px solid var(--ad-line);
    color:var(--ad-muted);
    font-size:13px;
    line-height:1.65;
}

.anm-ad-login-box{
    margin-top:18px;
    padding:18px;
    border:1px solid color-mix(in srgb, var(--ad-gold) 26%, transparent);
    border-radius:18px;
    background:var(--ad-gold-soft);
}

.anm-ad-login-box strong{
    display:block;
    color:var(--ad-text);
    font-size:15px;
}

.anm-ad-login-box p{
    margin:7px 0 0;
    color:var(--ad-muted);
    font-size:13px;
    line-height:1.6;
}

.anm-ad-section-heading{
    max-width:760px;
    margin:52px auto 22px;
    text-align:center;
}

.anm-ad-section-heading span{
    color:var(--ad-green-strong);
    font-size:12px;
    font-weight:900;
    letter-spacing:.1em;
    text-transform:uppercase;
}

.anm-ad-section-heading h2{
    margin:8px 0 10px;
    font-size:clamp(1.9rem,4vw,3rem);
    letter-spacing:-.035em;
}

.anm-ad-section-heading p{
    margin:0;
    color:var(--ad-muted);
    line-height:1.72;
}

.anm-ad-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:16px;
}

.anm-ad-card{
    min-width:0;
    padding:23px;
    border:1px solid var(--ad-line);
    border-radius:var(--ad-radius-lg);
    background:var(--ad-surface);
    box-shadow:var(--ad-shadow);
}

.anm-ad-card__icon{
    display:grid;
    place-items:center;
    width:48px;
    height:48px;
    margin-bottom:16px;
    border-radius:15px;
    background:var(--ad-green-soft);
    font-size:22px;
}

.anm-ad-card h3{
    margin:0 0 8px;
    font-size:1.08rem;
}

.anm-ad-card p{
    margin:0;
    color:var(--ad-muted);
    font-size:14px;
    line-height:1.7;
}

.anm-ad-process{
    display:grid;
    gap:12px;
    counter-reset:adstep;
}

.anm-ad-process__item{
    position:relative;
    display:grid;
    grid-template-columns:54px minmax(0,1fr);
    gap:15px;
    align-items:start;
    padding:19px;
    border:1px solid var(--ad-line);
    border-radius:18px;
    background:var(--ad-surface);
    box-shadow:var(--ad-shadow);
}

.anm-ad-process__item::before{
    counter-increment:adstep;
    content:counter(adstep);
    display:grid;
    place-items:center;
    width:48px;
    height:48px;
    border-radius:15px;
    background:linear-gradient(135deg,var(--ad-green),color-mix(in srgb,var(--ad-green) 70%,#064e3b));
    color:#032117;
    font-weight:950;
}

.anm-ad-process__item h3{
    margin:2px 0 6px;
    font-size:1.04rem;
}

.anm-ad-process__item p{
    margin:0;
    color:var(--ad-muted);
    line-height:1.68;
}

.anm-ad-placement{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:14px;
}

.anm-ad-slot{
    position:relative;
    overflow:hidden;
    padding:24px 21px;
    border:1px solid var(--ad-line);
    border-radius:20px;
    background:var(--ad-surface);
    box-shadow:var(--ad-shadow);
}

.anm-ad-slot b{
    display:inline-flex;
    padding:6px 10px;
    border-radius:999px;
    background:var(--ad-green-soft);
    color:var(--ad-green-strong);
    font-size:12px;
}

.anm-ad-slot h3{margin:14px 0 7px}

.anm-ad-slot p{
    margin:0;
    color:var(--ad-muted);
    font-size:14px;
    line-height:1.65;
}

.anm-ad-requirements{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
}

.anm-ad-requirement-panel{
    padding:24px;
    border:1px solid var(--ad-line);
    border-radius:22px;
    background:var(--ad-surface);
    box-shadow:var(--ad-shadow);
}

.anm-ad-requirement-panel h3{margin:0 0 14px}

.anm-ad-list{
    display:grid;
    gap:11px;
    margin:0;
    padding:0;
    list-style:none;
}

.anm-ad-list li{
    position:relative;
    padding:13px 14px 13px 44px;
    border:1px solid var(--ad-line);
    border-radius:14px;
    background:var(--ad-surface-2);
    color:var(--ad-muted);
    font-size:14px;
    line-height:1.62;
}

.anm-ad-list li::before{
    content:"✓";
    position:absolute;
    left:13px;
    top:13px;
    display:grid;
    place-items:center;
    width:22px;
    height:22px;
    border-radius:50%;
    background:var(--ad-green-soft);
    color:var(--ad-green-strong);
    font-size:12px;
    font-weight:950;
}

.anm-ad-list--avoid li::before{
    content:"!";
    background:var(--ad-danger-soft);
    color:var(--ad-danger);
}

.anm-ad-policy{
    margin-top:18px;
    border:1px solid var(--ad-line);
    border-radius:20px;
    overflow:hidden;
    background:var(--ad-surface);
    box-shadow:var(--ad-shadow);
}

.anm-ad-policy summary{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    padding:18px 20px;
    cursor:pointer;
    font-weight:900;
}

.anm-ad-policy summary small{
    color:var(--ad-muted);
    font-weight:700;
}

.anm-ad-policy__content{
    padding:0 20px 22px;
    color:var(--ad-muted);
    line-height:1.72;
    white-space:normal;
}

.anm-ad-refund-note{
    margin-top:16px;
    padding:18px;
    border:1px solid color-mix(in srgb, var(--ad-gold) 28%, transparent);
    border-radius:18px;
    background:var(--ad-gold-soft);
    color:var(--ad-muted);
    line-height:1.68;
}

.anm-ad-refund-note strong{color:var(--ad-text)}

.anm-ad-cta{
    margin-top:28px;
    padding:clamp(26px,5vw,48px);
    border:1px solid color-mix(in srgb, var(--ad-green) 27%, transparent);
    border-radius:var(--ad-radius-xl);
    background:
        radial-gradient(circle at top right,color-mix(in srgb,var(--ad-green) 13%,transparent),transparent 36%),
        var(--ad-surface);
    box-shadow:var(--ad-shadow);
    text-align:center;
}

.anm-ad-cta h2{
    margin:0;
    font-size:clamp(1.9rem,4vw,3.1rem);
    letter-spacing:-.04em;
}

.anm-ad-cta p{
    max-width:760px;
    margin:11px auto 0;
    color:var(--ad-muted);
    line-height:1.72;
}

.anm-ad-cta__auth{
    max-width:720px;
    margin:20px auto 0;
    padding:15px;
    border:1px solid var(--ad-line);
    border-radius:15px;
    background:var(--ad-surface-2);
    color:var(--ad-muted);
    font-size:13px;
    line-height:1.6;
}

.anm-ad-cta__auth strong{color:var(--ad-text)}

.anm-ad-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    min-height:54px;
    margin-top:20px;
    padding:0 24px;
    border:0;
    border-radius:15px;
    background:linear-gradient(135deg,var(--ad-green),color-mix(in srgb,var(--ad-green) 72%,#064e3b));
    color:#032117;
    font-size:15px;
    font-weight:950;
    text-decoration:none;
    box-shadow:0 16px 34px color-mix(in srgb,var(--ad-green) 20%,transparent);
    transition:transform .18s ease,box-shadow .18s ease,filter .18s ease;
}

.anm-ad-button:hover,
.anm-ad-button:focus-visible{
    transform:translateY(-2px);
    filter:brightness(1.03);
    outline:none;
}

.anm-ad-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:46px;
    margin-top:12px;
    padding:0 17px;
    border:1px solid var(--ad-line);
    border-radius:13px;
    background:var(--ad-surface-2);
    color:var(--ad-text);
    font-size:13px;
    font-weight:850;
    text-decoration:none;
}

@media(max-width:960px){
    .anm-ad-hero{grid-template-columns:1fr}
    .anm-ad-price{max-width:560px}
    .anm-ad-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
    .anm-ad-placement{grid-template-columns:1fr}
}

@media(max-width:700px){
    .anm-ad-landing__wrap{
        width:min(100% - 20px,1180px);
    }

    .anm-ad-hero{
        padding:25px 17px;
        border-radius:22px;
    }

    .anm-ad-hero h1{
        font-size:clamp(2.15rem,12vw,3.35rem);
        line-height:1.02;
    }

    .anm-ad-hero__lead{
        font-size:15px;
        line-height:1.72;
    }

    .anm-ad-grid,
    .anm-ad-requirements{
        grid-template-columns:1fr;
    }

    .anm-ad-card,
    .anm-ad-requirement-panel{
        padding:18px 16px;
        border-radius:18px;
    }

    .anm-ad-process__item{
        grid-template-columns:44px minmax(0,1fr);
        gap:12px;
        padding:15px;
    }

    .anm-ad-process__item::before{
        width:40px;
        height:40px;
        border-radius:13px;
    }

    .anm-ad-section-heading{
        margin-top:40px;
        padding:0 5px;
    }

    .anm-ad-button,
    .anm-ad-secondary{
        width:100%;
    }

    .anm-ad-policy summary{
        align-items:flex-start;
        flex-direction:column;
        gap:4px;
    }
}

@media(max-width:390px){
    .anm-ad-hero__chips{display:grid}
    .anm-ad-hero__chips span{width:100%}
    .anm-ad-price{padding:20px 16px}
}


/* ============================================================
   ADVERTISE PAGE — SHARED SHORTCUT NAVIGATION COMPATIBILITY
============================================================ */
.anm-ad-shortcuts{
    width:100%;
    margin:0 0 14px;
}

.anm-ad-shortcuts .anm-page-shortcut.is-current-section{
    border-color:rgba(250,204,21,.70);
    background:linear-gradient(145deg,#0b6b4f,#15966d);
    color:#fff;
    box-shadow:0 7px 18px rgba(21,150,109,.22);
}

#advert-overview,
#advert-process,
#advert-placement,
#advert-requirements,
#advert-refunds,
#advert-start{
    scroll-margin-top:145px;
}

@media (prefers-color-scheme: light){
    .anm-ad-shortcuts{
        border-color:var(--ad-line);
        background:linear-gradient(145deg,#ffffff,#eaf7f0);
        box-shadow:0 10px 28px rgba(22,54,42,.10);
    }

    .anm-ad-shortcuts .anm-page-shortcut{
        border-color:var(--ad-line);
        background:rgba(255,255,255,.88);
        color:var(--ad-text);
    }

    .anm-ad-shortcuts .anm-page-shortcut__icon{
        background:linear-gradient(145deg,#dff7ec,#c8efdc);
        color:#087554;
    }

    .anm-ad-shortcuts .anm-page-shortcut:hover,
    .anm-ad-shortcuts .anm-page-shortcut:focus-visible,
    .anm-ad-shortcuts .anm-page-shortcut.is-current-section{
        border-color:rgba(15,159,110,.42);
        background:var(--ad-green-soft);
        color:var(--ad-green-strong);
    }
}

@media(max-width:700px){
    .anm-ad-shortcuts{
        margin-bottom:10px;
    }
}

@media(prefers-reduced-motion:reduce){
    html{scroll-behavior:auto}
    *,
    *::before,
    *::after{transition:none!important}
}