﻿:root {
    --bg: #f6f8fb;
    --fg: #0f1729;
    --muted: #6b7280;
    --border: #e6e8ee;
    --card: #ffffff;
    --primary: hsl(22 100% 62%);
    --primary-2: hsl(16 100% 55%);
    --cta: hsl(25 95% 53%);
    --success: hsl(158 64% 40%);
    --info: hsl(217 91% 60%);
    --marketplace: hsl(258 90% 66%);
    --accent-bg: hsl(22 100% 95%);
    --accent-fg: hsl(22 100% 40%);
    --grad-primary: linear-gradient(135deg, hsl(22 100% 62%), hsl(16 100% 55%));
    --grad-warm: linear-gradient(135deg, hsl(22 100% 62%), hsl(340 90% 60%));
    --grad-creator: linear-gradient(135deg, hsl(22 100% 62%), hsl(258 90% 66%));
    --grad-hero: radial-gradient(ellipse at top, hsl(22 100% 95%) 0%, hsl(210 40% 98%) 60%);
    --grad-cta: linear-gradient(135deg, hsl(25 95% 53%), hsl(340 85% 55%));
    --shadow-card: 0 1px 3px hsl(220 39% 11% / .04), 0 8px 24px -8px hsl(220 39% 11% / .08);
    --shadow-medium: 0 10px 40px -10px hsl(220 39% 11% / .12);
    --shadow-glow: 0 20px 60px -15px hsl(22 100% 62% / .35);
}

* {
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter',system-ui,sans-serif;
    background: var(--bg);
    color: var(--fg);
}

h1, h2, h3, h4, h5 {
    font-weight: 800;
    letter-spacing: -.02em;
}

.text-muted {
    color: var(--muted) !important;
}

.x-small {
    font-size: 11px;
}

.text-gradient {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-primary-pw {
    color: var(--primary);
}

.text-success-pw {
    color: var(--success);
}

.text-info-pw {
    color: var(--info);
}

.text-marketplace-pw {
    color: var(--marketplace);
}

.glass {
    background: rgba(255,255,255,.7);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,.5);
    box-shadow: var(--shadow-card);
    border-radius: 20px;
}

/* ===== Nav ===== */
.pw-nav-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding-top: 16px;
}

.pw-nav {
    padding: 12px 22px;
    border-radius: 18px;
}

.pw-logo {
    text-decoration: none;
    color: var(--fg);
}

.pw-logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--grad-primary);
    color: #fff;
    box-shadow: var(--shadow-glow);
    font-size: 18px;
}

.pw-logo-text {
    font-weight: 800;
    font-size: 20px;
}

.pw-nav-links {
    list-style: none;
    padding: 0;
}

    .pw-nav-links a {
        color: var(--muted);
        text-decoration: none;
        font-weight: 500;
        font-size: 14px;
    }

        .pw-nav-links a:hover {
            color: var(--fg);
        }

.pw-login {
    font-size: 14px;
    font-weight: 500;
    color: rgba(15,23,41,.8);
    text-decoration: none;
    padding: 0 12px;
}

.pw-menu-btn {
    background: transparent;
    border: 0;
    font-size: 22px;
}

.pw-mobile-menu {
    padding: 14px 18px;
    border-radius: 16px;
    display: none;
    flex-direction: column;
    gap: 10px;
}

    .pw-mobile-menu.show {
        display: flex;
    }

    .pw-mobile-menu a {
        color: var(--fg);
        text-decoration: none;
        font-weight: 600;
    }

/* Buttons */
.btn-primary-gradient {
    background: var(--grad-primary);
    color: #fff !important;
    border: 0;
    font-weight: 600;
    border-radius: 12px;
    padding: 10px 18px;
    box-shadow: var(--shadow-glow);
    transition: transform .2s,opacity .2s;
}

    .btn-primary-gradient:hover {
        opacity: .95;
        transform: translateY(-1px);
        color: #fff;
    }

.btn-outline-soft {
    background: rgba(255,255,255,.6);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    border-radius: 12px;
    font-weight: 600;
    color: var(--fg);
}

    .btn-outline-soft:hover {
        background: #fff;
    }

.btn-lg {
    height: 48px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
}

/* ===== Hero ===== */
.pw-hero {
    position: relative;
    overflow: hidden;
    padding: 150px 0 96px;
    background: var(--grad-hero);
}

.pw-h1 {
    font-size: clamp(40px, 6vw, 76px);
    line-height: 1.05;
    font-weight: 800;
}

.pw-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.8);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
}

    .pw-pill .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--success);
        animation: pulse 1.5s infinite;
    }

@keyframes pulse {
    0%,100% {
        opacity: 1
    }

    50% {
        opacity: .4
    }
}

.grid-pattern {
    position: absolute;
    inset: 0;
    opacity: .6;
    pointer-events: none;
    background-image: linear-gradient(rgba(220,225,235,.5) 1px,transparent 1px),linear-gradient(90deg,rgba(220,225,235,.5) 1px,transparent 1px);
    background-size: 48px 48px;
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.blob-1 {
    top: -80px;
    left: -120px;
    width: 380px;
    height: 380px;
    background: hsl(22 100% 62% / .3);
    animation: float 9s ease-in-out infinite;
}

.blob-2 {
    top: 160px;
    right: -120px;
    width: 440px;
    height: 440px;
    background: hsl(258 90% 66% / .2);
    animation: float 6s ease-in-out infinite;
}

.blob-3 {
    bottom: 0;
    left: 33%;
    width: 320px;
    height: 320px;
    background: hsl(25 95% 53% / .2);
    animation: float 9s ease-in-out infinite;
}

.blob-mp-1 {
    top: 80px;
    right: 0;
    width: 320px;
    height: 320px;
    background: hsl(258 90% 66% / .2);
}

.blob-mp-2 {
    bottom: 80px;
    left: 0;
    width: 320px;
    height: 320px;
    background: hsl(22 100% 62% / .2);
}

.blob-dark {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60rem;
    height: 24rem;
    background: hsl(22 100% 62% / .2);
}

@keyframes float {
    0%,100% {
        transform: translate(0,0)
    }

    50% {
        transform: translate(10px,-20px)
    }
}

/* Dashboard mock */
.pw-dash-wrap {
    position: relative;
}

.dash-glow {
    position: absolute;
    inset: -16px;
    background: var(--grad-warm);
    opacity: .2;
    filter: blur(40px);
    border-radius: 28px;
}

    .dash-glow.purple {
        background: var(--grad-creator);
    }

    .dash-glow.warm {
        background: var(--grad-warm);
        opacity: .1;
    }

.pw-dash {
    position: relative;
    padding: 20px;
    border-radius: 24px;
    box-shadow: var(--shadow-medium);
}

    .pw-dash .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
    }

        .pw-dash .dot.red {
            background: rgba(239,68,68,.7);
        }

        .pw-dash .dot.orange {
            background: rgba(249,115,22,.7);
        }

        .pw-dash .dot.green {
            background: rgba(16,185,129,.7);
        }

.avatar-grad {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--grad-primary);
}

.stat-card {
    background: rgba(255,255,255,.85);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 10px;
}

    .stat-card .cap {
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: .05em;
        color: var(--muted);
        font-weight: 600;
    }

    .stat-card .val {
        font-size: 18px;
        font-weight: 800;
    }

    .stat-card .up {
        font-size: 10px;
        color: var(--success);
        font-weight: 600;
    }

.chart-card, .creator-card {
    background: rgba(255,255,255,.85);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px;
}

.av {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-block;
}

.av-pink {
    background: linear-gradient(135deg,#f9a8d4,#fb923c);
}

.av-blue {
    background: linear-gradient(135deg,#60a5fa,var(--marketplace));
}

.badge.bg-accent-pw {
    background: var(--accent-bg);
    color: var(--accent-fg);
    font-size: 10px;
}

.badge.bg-success-soft {
    background: rgba(16,185,129,.1);
    color: var(--success);
    font-size: 11px;
}

.badge.bg-marketplace-soft {
    background: rgba(139,92,246,.15);
    color: var(--marketplace);
}

.float-card {
    position: absolute;
    padding: 12px;
    border-radius: 18px;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.6);
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    gap: 8px;
}

    .float-card .ico {
        width: 32px;
        height: 32px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
    }

    .float-card.f1 {
        left: -32px;
        top: 90px;
        animation: float 6s ease-in-out infinite;
    }

    .float-card.f2 {
        right: -24px;
        bottom: 60px;
        animation: float 9s ease-in-out infinite;
    }

.bg-success-soft {
    background: rgba(16,185,129,.15);
}

.bg-marketplace-soft {
    background: rgba(139,92,246,.15);
}

/* ===== Trust ===== */
.pw-trust {
    padding: 56px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: #fff;
}

.trust-pill {
    padding: 10px 20px;
    border-radius: 999px;
    background: #f1f3f7;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid var(--border);
    transition: .2s;
}

    .trust-pill:hover {
        border-color: rgba(255,122,40,.4);
        color: var(--fg);
    }

/* ===== Sections ===== */
.pw-section {
    padding: 96px 0;
}

.bg-soft {
    background: rgba(240,242,247,.5);
}

.section-head {
    max-width: 780px;
    margin-bottom: 56px;
}

    .section-head .eyebrow {
        display: inline-block;
        padding: 6px 14px;
        border-radius: 999px;
        background: var(--accent-bg);
        color: var(--accent-fg);
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .08em;
        margin-bottom: 16px;
    }

.eyebrow-dark {
    background: rgba(255,122,40,.15);
    color: var(--primary);
}

.pw-h2 {
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.1;
}

/* Feature cards */
.feat-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 28px;
    box-shadow: var(--shadow-card);
    transition: .3s;
    height: 100%;
}

    .feat-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-medium);
    }

.feat-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    margin-bottom: 18px;
    box-shadow: var(--shadow-glow);
}

/* Solutions */
.sol-tab {
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    background: #fff;
    color: rgba(15,23,41,.7);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: .2s;
}

    .sol-tab.active {
        background: var(--grad-primary);
        color: #fff;
        box-shadow: var(--shadow-glow);
        border-color: transparent;
    }

.sol-ico {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--grad-primary);
    color: #fff;
    font-size: 22px;
    box-shadow: var(--shadow-glow);
    margin-bottom: 18px;
}

.sol-bullet {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 0;
    font-weight: 500;
}

    .sol-bullet .chk {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: rgba(16,185,129,.15);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--success);
        flex-shrink: 0;
        font-size: 12px;
        font-weight: bold;
    }

.sol-workspace-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    border-radius: 14px;
    background: rgba(255,255,255,.85);
    border: 1px solid var(--border);
    margin-bottom: 8px;
}

.grad-cta-card {
    background: var(--grad-primary);
    color: #fff;
    padding: 16px;
    border-radius: 16px;
}

/* Marketplace */
.creator-tile {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 18px;
    box-shadow: var(--shadow-card);
    transition: .3s;
    height: 100%;
}

    .creator-tile:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-glow);
    }

.creator-cover {
    height: 112px;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
}

    .creator-cover::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.5), transparent 50%);
    }

.creator-av {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 4px solid #fff;
    position: absolute;
    left: 16px;
    bottom: -20px;
}

.niche-pill {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255,255,255,.92);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
}

.mini-stat {
    background: #f1f3f7;
    padding: 8px;
    border-radius: 10px;
    text-align: center;
}

    .mini-stat .lbl {
        font-size: 10px;
        font-weight: 600;
        color: var(--muted);
    }

    .mini-stat .val {
        font-size: 14px;
        font-weight: 700;
    }

/* Workflow */
.wf-step {
    text-align: center;
}

    .wf-step .ico {
        width: 56px;
        height: 56px;
        border-radius: 18px;
        background: #fff;
        border: 1px solid var(--border);
        box-shadow: var(--shadow-card);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 12px;
        color: var(--primary);
        font-size: 22px;
        position: relative;
        z-index: 2;
    }

    .wf-step .step {
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: .08em;
        color: var(--muted);
        font-weight: 700;
    }

    .wf-step .lbl {
        font-weight: 700;
        font-size: 14px;
    }

.wf-line {
    position: absolute;
    top: 28px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg,var(--primary),var(--cta),var(--marketplace));
    opacity: .3;
}

.wf-task {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    background: rgba(255,255,255,.85);
    border: 1px solid var(--border);
    border-radius: 14px;
    margin-bottom: 8px;
}

    .wf-task .dt {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        margin-right: 10px;
        display: inline-block;
    }

/* Analytics */
.an-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 24px;
    box-shadow: var(--shadow-card);
    transition: .2s;
}

    .an-card:hover {
        box-shadow: var(--shadow-medium);
    }

.an-ico {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: #f1f3f7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.an-bar {
    height: 6px;
    background: #f1f3f7;
    border-radius: 999px;
    overflow: hidden;
}

    .an-bar > div {
        height: 100%;
        background: var(--grad-primary);
        border-radius: 999px;
    }

/* Why dark */
.pw-dark {
    background: var(--fg);
    color: #fff;
}

    .pw-dark .text-muted, .pw-dark .opacity-75 {
        color: rgba(255,255,255,.7) !important;
    }

.why-card {
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 24px;
    padding: 28px;
    transition: .2s;
    height: 100%;
}

    .why-card:hover {
        background: rgba(255,255,255,.1);
    }

.why-ico {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--grad-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 16px;
    box-shadow: var(--shadow-glow);
}

/* Pricing */
.price-card {
    position: relative;
    border-radius: 24px;
    padding: 32px;
    transition: .3s;
    height: 100%;
}

    .price-card.standard {
        background: #fff;
        border: 1px solid var(--border);
        box-shadow: var(--shadow-card);
    }

        .price-card.standard:hover {
            box-shadow: var(--shadow-medium);
        }

    .price-card.featured {
        background: var(--fg);
        color: #fff;
        transform: scale(1.04);
        box-shadow: var(--shadow-glow);
        border: 1px solid rgba(255,122,40,.4);
    }

        .price-card.featured .text-muted {
            color: rgba(255,255,255,.7) !important;
        }

.recommend-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--grad-primary);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 999px;
}

.price-amt {
    font-size: 48px;
    font-weight: 800;
}

.price-feat {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
    margin: 8px 0;
}

    .price-feat i {
        flex-shrink: 0;
        margin-top: 3px;
    }

.price-card.standard .price-feat i {
    color: var(--success);
}

.price-card.featured .price-feat i {
    color: var(--primary);
}

/* CTA */
.cta-banner {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: var(--grad-cta);
    padding: 80px 24px;
    text-align: center;
    box-shadow: var(--shadow-glow);
}

@media (min-width:768px) {
    .cta-banner {
        padding: 96px 40px;
    }
}

.cta-dots {
    position: absolute;
    inset: 0;
    opacity: .2;
    background-image: radial-gradient(circle at 20% 20%, white 1px, transparent 1px),radial-gradient(circle at 80% 80%, white 1px, transparent 1px);
    background-size: 32px 32px;
}

.cta-b1 {
    top: -80px;
    left: -80px;
    width: 280px;
    height: 280px;
    background: rgba(255,255,255,.2);
}

.cta-b2 {
    bottom: -80px;
    right: -80px;
    width: 280px;
    height: 280px;
    background: hsl(258 90% 66% / .3);
}

/* Footer */
.pw-footer {
    background: var(--fg);
    color: #fff;
    padding: 80px 0 40px;
}

    .pw-footer h4 {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .pw-footer a {
        color: rgba(255,255,255,.6);
        text-decoration: none;
        font-size: 14px;
    }

        .pw-footer a:hover {
            color: #fff;
        }

    .pw-footer .pw-input {
        background: rgba(255,255,255,.05);
        border: 1px solid rgba(255,255,255,.1);
        color: #fff;
        border-radius: 12px;
        height: 44px;
    }

        .pw-footer .pw-input::placeholder {
            color: rgba(255,255,255,.4);
        }

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: .2s;
}

    .social-btn:hover {
        background: rgba(255,255,255,.1);
    }

/* animations */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    animation: fadeUp .7s ease-out forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.in-view {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease-out, transform .6s ease-out;
}

    .in-view.shown {
        opacity: 1;
        transform: translateY(0);
    }

.app-card {
    transition: .35s ease;
    border: 1px solid rgba(255,255,255,.4);
}

    .app-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(0,0,0,.08);
    }

.app-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

    .app-icon i {
        color: var(--pw-primary);
    }

.app-showcase {
    position: relative;
    overflow: hidden;
    transition: .35s;
}

    .app-showcase:hover {
        transform: translateY(-10px);
    }

.app-logo {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
}

.creator-app {
    background: linear-gradient(135deg,#10b981,#34d399);
}

.client-app {
    background: linear-gradient(135deg,#FF8C42,#ffb067);
}

.phone-mockup {
    max-width: 220px;
    margin: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,.15));
}

    .phone-mockup img {
        border-radius: 28px;
    }

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .feature-list li {
        margin-bottom: 12px;
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-weight: 500;
    }

    .feature-list i {
        color: #22c55e;
        margin-top: 3px;
    }

.blob-app-1 {
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(255,140,66,.12);
    filter: blur(80px);
    top: 0;
    left: -120px;
}

.blob-app-2 {
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(79,70,229,.10);
    filter: blur(80px);
    bottom: -100px;
    right: -100px;
}

.pw-logo-img {
    height: 48px;
    width: auto;
    display: block;
    transition: .3s;
}

    .pw-logo-img:hover {
        transform: scale(1.03);
    }
