:root{
    --gold:#f5b72c;
    --gold-light:#ffd76a;
    --gold-dark:#b87905;

    --black:#050505;
    --black-soft:#0c0c0c;
    --dark:#111111;

    --white:#ffffff;
    --text:#e9e9e9;
    --muted:#a9a9a9;

    --border:#292929;
    --card:#101010;
    --soft:#171717;

    --gold-gradient:linear-gradient(135deg,#b87905,#f5b72c,#ffe083,#d9960b);
    --dark-gradient:linear-gradient(135deg,#050505,#111111,#050505);
}


/* =========================
   GLOBAL
========================= */

*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
    scroll-padding-top:90px;
}

body{
    margin:0;
    font-family:'Poppins',sans-serif;
    background:
        radial-gradient(circle at top,#18120a 0%,#070707 38%,#030303 100%);
    color:var(--text);
    line-height:1.75;
}

a{
    text-decoration:none;
}


/* =========================
   HEADER
========================= */

.site-header{
    position:sticky;
    top:0;
    z-index:999;

    background:rgba(5,5,5,.96);
    border-bottom:1px solid rgba(245,183,44,.25);

    box-shadow:
        0 5px 25px rgba(0,0,0,.65),
        0 1px 0 rgba(245,183,44,.08);
}

.header-inner{
    max-width:1100px;
    min-height:78px;

    margin:auto;
    padding:0 20px;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}


/* =========================
   BRAND
========================= */

.brand{
    color:#fff;
    display:flex;
    align-items:center;
    gap:11px;

    font-size:21px;
    font-weight:800;
    letter-spacing:.2px;
}

.brand img{
    width:46px;
    height:46px;

    object-fit:contain;

    border-radius:12px;

    filter:
        drop-shadow(0 0 8px rgba(245,183,44,.28));
}


/* =========================
   MENU
========================= */

.main-menu{
    display:flex;
    align-items:center;
    gap:4px;

    background:transparent;
}

.main-menu a{
    color:#e8e8e8;

    padding:10px 11px;

    font-size:13px;
    font-weight:500;

    border-radius:9px;

    transition:.25s ease;
}

.main-menu a:hover{
    color:var(--gold-light);

    background:rgba(245,183,44,.08);

    box-shadow:
        inset 0 0 0 1px rgba(245,183,44,.14);
}


/* =========================
   MOBILE MENU BUTTON
========================= */

.menu-toggle{
    display:none;

    width:44px;
    height:40px;

    padding:0;

    border:1px solid rgba(245,183,44,.5);
    border-radius:10px;

    background:#0b0b0b;

    cursor:pointer;
}

.menu-toggle span{
    display:block;

    width:22px;
    height:2px;

    margin:5px auto;

    background:var(--gold);

    border-radius:10px;
}


/* =========================
   CONTAINER
========================= */

.page-container{
    max-width:1100px;

    margin:auto;

    padding:25px 18px 55px;
}


/* =========================
   HERO
========================= */

.hero-section{
    position:relative;

    overflow:hidden;

    background:
        radial-gradient(
            circle at 50% 20%,
            rgba(245,183,44,.13),
            transparent 40%
        ),
        linear-gradient(
            135deg,
            #050505 0%,
            #111111 55%,
            #050505 100%
        );

    border:1px solid rgba(245,183,44,.25);

    border-radius:27px;

    padding:55px 30px;

    margin-bottom:25px;

    box-shadow:
        0 20px 55px rgba(0,0,0,.45),
        inset 0 0 50px rgba(245,183,44,.025);
}


/* gold decorative line */

.hero-section::before{
    content:"";

    position:absolute;

    top:0;
    left:10%;
    right:10%;

    height:1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--gold),
            transparent
        );

    opacity:.8;
}


/* =========================
   HERO CONTENT
========================= */

.hero-content{
    position:relative;

    text-align:center;

    max-width:850px;

    margin:auto;
}


/* =========================
   HERO LOGO
========================= */

.hero-logo{
    display:block;

    width:170px;
    height:170px;

    object-fit:contain;

    margin:0 auto 24px;

    border-radius:28px;

    filter:
        drop-shadow(0 0 20px rgba(245,183,44,.22));
}


/* =========================
   HERO BADGE
========================= */

.hero-badge{
    display:inline-block;

    padding:7px 17px;

    border-radius:30px;

    background:#0c0c0c;

    border:1px solid rgba(245,183,44,.55);

    color:var(--gold-light);

    font-size:12px;

    font-weight:700;

    letter-spacing:.4px;

    margin-bottom:16px;

    box-shadow:
        0 0 15px rgba(245,183,44,.07);
}


/* =========================
   HERO TITLE
========================= */

.hero-content h1{
    margin:0 0 18px;

    font-size:42px;

    line-height:1.2;

    font-weight:800;

    color:#fff;

    letter-spacing:-.5px;
}

.hero-content h1 strong{
    background:var(--gold-gradient);

    -webkit-background-clip:text;
    background-clip:text;

    -webkit-text-fill-color:transparent;
}


/* =========================
   HERO TEXT
========================= */

.hero-text{
    max-width:790px;

    margin:0 auto 27px;

    color:#bcbcbc;

    font-size:15px;
}


/* =========================
   HERO BUTTONS
========================= */

.hero-buttons{
    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:12px;
}


/* =========================
   BUTTONS
========================= */

.btn{
    display:inline-flex;

    align-items:center;
    justify-content:center;

    min-height:46px;

    padding:11px 21px;

    border-radius:12px;

    font-size:14px;

    font-weight:700;

    transition:.25s ease;
}

.btn:hover{
    transform:translateY(-2px);

    box-shadow:
        0 8px 22px rgba(0,0,0,.35);
}


/* Gold primary */

.btn-primary{
    color:#090909;

    background:var(--gold-gradient);

    border:1px solid #f5c64e;

    box-shadow:
        0 5px 18px rgba(245,183,44,.16);
}


/* Dark download */

.btn-download{
    color:#fff;

    background:#101010;

    border:1px solid rgba(245,183,44,.65);
}

.btn-download:hover{
    color:#080808;

    background:var(--gold);
}


/* Outline */

.btn-outline{
    color:var(--gold-light);

    background:transparent;

    border:1px solid rgba(245,183,44,.65);
}

.btn-outline:hover{
    color:#080808;

    background:var(--gold);
}


/* =========================
   HERO NOTE
========================= */

.hero-note{
    margin-top:18px;

    color:#858585;

    font-size:11px;
}


/* =========================
   CONTENT CARD
========================= */

.content-card{
    background:
        linear-gradient(
            145deg,
            rgba(20,20,20,.98),
            rgba(9,9,9,.98)
        );

    border:1px solid var(--border);

    border-radius:22px;

    padding:30px;

    margin-bottom:22px;

    box-shadow:
        0 12px 35px rgba(0,0,0,.28);
}

.content-card:hover{
    border-color:rgba(245,183,44,.22);
}


/* =========================
   SECTION HEADING
========================= */

.section-heading{
    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:16px;
}

.section-number{
    min-width:39px;

    height:39px;

    display:flex;

    align-items:center;
    justify-content:center;

    border-radius:11px;

    color:#090909;

    background:var(--gold-gradient);

    font-size:13px;

    font-weight:800;

    box-shadow:
        0 4px 12px rgba(245,183,44,.13);
}

.section-heading h2{
    margin:0;

    color:#fff;

    font-size:25px;

    line-height:1.35;
}


/* =========================
   TEXT
========================= */

.content-card p{
    margin:10px 0;

    color:#b5b5b5;

    font-size:14px;
}

.content-card h3{
    margin:23px 0 8px;

    color:#f7c84b;

    font-size:18px;
}


/* =========================
   INFO BOX
========================= */

.info-box{
    margin:20px 0;

    padding:17px 18px;

    background:
        linear-gradient(
            135deg,
            rgba(245,183,44,.09),
            rgba(245,183,44,.025)
        );

    border-left:4px solid var(--gold);

    border-radius:12px;

    border-top:1px solid rgba(245,183,44,.12);
    border-right:1px solid rgba(245,183,44,.08);
    border-bottom:1px solid rgba(245,183,44,.08);
}

.info-box p{
    margin:0;

    color:#c5c5c5;
}

.info-box strong{
    color:var(--gold-light);
}


/* =========================
   FEATURE GRID
========================= */

.feature-grid{
    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:17px;

    margin-top:20px;
}

.feature-card{
    background:
        linear-gradient(
            145deg,
            #151515,
            #0b0b0b
        );

    border:1px solid #292929;

    border-radius:17px;

    padding:20px;

    transition:.25s ease;
}

.feature-card:hover{
    border-color:rgba(245,183,44,.55);

    transform:translateY(-3px);

    box-shadow:
        0 12px 28px rgba(0,0,0,.4),
        0 0 18px rgba(245,183,44,.04);
}

.feature-card h3{
    margin:0 0 8px;

    color:#f4c64e;

    font-size:17px;
}

.feature-card p{
    margin:0;

    color:#999;

    font-size:13px;
}


/* =========================
   STEPS
========================= */

.steps-grid{
    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:17px;

    margin-top:20px;
}

.step-box{
    background:#0e0e0e;

    border:1px solid #292929;

    border-radius:17px;

    padding:20px;

    transition:.25s ease;
}

.step-box:hover{
    border-color:rgba(245,183,44,.5);

    box-shadow:
        0 10px 25px rgba(0,0,0,.35);
}

.step-box strong{
    display:block;

    color:var(--gold);

    margin-bottom:8px;

    font-size:14px;
}

.step-box p{
    margin:0;

    color:#999;

    font-size:13px;
}


/* =========================
   KEYWORD TAGS
========================= */

.keyword-list{
    display:flex;

    flex-wrap:wrap;

    gap:9px;

    margin-top:15px;
}

.keyword-list span{
    padding:7px 12px;

    border-radius:30px;

    background:#121212;

    border:1px solid #292929;

    color:#bdbdbd;

    font-size:12px;

    transition:.2s ease;
}

.keyword-list span:hover{
    color:var(--gold-light);

    border-color:rgba(245,183,44,.5);

    background:rgba(245,183,44,.05);
}


/* =========================
   FAQ
========================= */

.faq-item{
    padding:18px 0;

    border-bottom:1px solid #292929;
}

.faq-item:last-child{
    border-bottom:0;
}

.faq-item h3{
    margin:0 0 7px;

    color:#f5c94f;

    font-size:17px;
}

.faq-item p{
    margin:0;

    color:#9f9f9f;

    font-size:14px;
}


/* =========================
   FINAL BUTTONS
========================= */

.final-buttons{
    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:12px;

    margin-top:22px;
}


/* =========================
   FOOTER
========================= */

.site-footer{
    background:
        linear-gradient(
            145deg,
            #080808,
            #030303
        );

    color:#fff;

    padding:42px 20px 20px;

    border-top:1px solid rgba(245,183,44,.2);
}

.footer-inner{
    max-width:1100px;

    margin:auto;
}

.footer-brand{
    color:#f5c84c;

    font-size:21px;

    font-weight:800;

    margin-bottom:12px;
}

.footer-inner p{
    color:#8e8e8e;

    font-size:13px;
}

.footer-links{
    display:flex;

    flex-wrap:wrap;

    gap:10px 18px;

    margin:23px 0;
}

.footer-links a{
    color:#a9a9a9;

    font-size:13px;

    transition:.2s ease;
}

.footer-links a:hover{
    color:var(--gold-light);
}

.footer-bottom{
    border-top:1px solid #202020;

    padding-top:18px;

    color:#6f6f6f;

    font-size:12px;
}


/* =========================
   SCREENSHOTS
========================= */

.screenshot-grid{
    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;

    margin-top:25px;
}

.screenshot-card{
    background:#0e0e0e;

    border:1px solid #292929;

    border-radius:18px;

    padding:12px;

    text-align:center;

    overflow:hidden;

    transition:.25s ease;
}

.screenshot-card:hover{
    border-color:rgba(245,183,44,.5);

    transform:translateY(-3px);
}

.screenshot-card img{
    width:100%;
    height:auto;

    display:block;

    border-radius:13px;

    object-fit:cover;
}


/* =========================
   MOBILE
========================= */

@media(max-width:900px){

    .menu-toggle{
        display:block;
    }

    .main-menu{
        display:none;

        position:absolute;

        left:0;
        right:0;
        top:78px;

        padding:12px 18px 18px;

        flex-direction:column;

        align-items:stretch;

        background:#070707;

        border-bottom:1px solid rgba(245,183,44,.25);

        box-shadow:
            0 15px 30px rgba(0,0,0,.65);
    }

    .main-menu.active{
        display:flex;
    }

    .main-menu a{
        padding:12px 10px;

        border-bottom:1px solid rgba(255,255,255,.06);
    }

    .feature-grid,
    .steps-grid{
        grid-template-columns:repeat(2,1fr);
    }

}


/* =========================
   SMALL MOBILE
========================= */

@media(max-width:700px){

    .page-container{
        padding:15px 12px 35px;
    }

    .hero-section{
        padding:38px 18px;

        border-radius:21px;
    }

    .hero-logo{
        width:120px;
        height:120px;

        margin:0 auto 18px !important;

        border-radius:22px;
    }

    .hero-content h1{
        font-size:29px;
    }

    .hero-text{
        font-size:14px;
    }

    .content-card{
        padding:21px 17px;

        border-radius:18px;
    }

    .section-heading h2{
        font-size:21px;
    }

    .feature-grid,
    .steps-grid{
        grid-template-columns:1fr;
    }

    .screenshot-grid{
        grid-template-columns:1fr;

        gap:18px;
    }

    .btn{
        width:100%;
    }

}


/* =========================
   VERY SMALL DEVICES
========================= */

@media(max-width:400px){

    .header-inner{
        padding:0 13px;
    }

    .brand{
        font-size:18px;
    }

    .brand img{
        width:40px;
        height:40px;
    }

    .hero-content h1{
        font-size:26px;
    }

    .section-heading{
        align-items:flex-start;
    }

}