/* RESET */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#070d1e;
    color:white;
    font-family:'Inter', sans-serif;
	max-width:100%;
    overflow-x:hidden;
}
img,
div,
section{
    max-width:100%;
}

/* =========================
   MOBILE DEFAULTS
========================= */


/* ==================
=======
   NAVIGATION
========================= */

.top-nav{
    width:100%;
    position:fixed;
    top:0;
    left:0;
    z-index:999;
    background:rgba(2,8,23,0.92);
    backdrop-filter:blur(10px);
    border-bottom:1px solid rgba(255,255,255,0.05);
}

.nav-container{
    width:100%;
    max-width:1280px;
    margin:0 auto;
    padding:18px 20px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    position:relative;
}

.logo-wrap{
    display:flex;
    align-items:center;
    gap:14px;
    text-decoration:none;
}

.logo-box{
    width:42px;
    height:42px;
    background:#ecc051;
    display:flex;
    align-items:center;
    justify-content:center;
    color:black;
    font-weight:700;
}

.logo-text{
    color:white;
    font-size:28px;
    font-family:'Playfair Display', serif;
}

.nav-links{
    display:flex;
    gap:40px;
}

.nav-links a{
    color:#f5f2eb;
    text-decoration:none;
}

.cta-button{
    background:#ecc051;
    color:black;
    padding:14px 24px;
    text-decoration:none;
	font-weight:700;
}

.mobile-toggle{
    display:none;
    background:none;
    border:none;
    color:white;
    font-size:32px;
    cursor:pointer;
}

.mobile-menu{
    display:none;
    flex-direction:column;
    padding:20px;
    background:#020817;
}

.mobile-menu.active{
    display:flex;
}

.mobile-menu a{
    color:white;
    text-decoration:none;
    padding:12px 0;
}



/* =========================
   HERO SECTION
========================= */

/* HERO SECTION */

.hero{
    position:relative;

    overflow:hidden;

    background:#020817;

    min-height:100vh;
	padding:60px 0px 20px; !important
    display:flex;
    align-items:center;
    justify-content:center;
}

/* KEEP CONTENT ABOVE BACKGROUND */

.hero-content{
    position:relative;

    z-index:5;

    width:100%;
    max-width:1200px;

    margin:auto;

    padding:90px 40px 20px;

    text-align:center;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

/* BACKGROUND IMAGE */

.hero::before{
    content:'';

    position:absolute;
    inset:0;
	
	background-image: url('/wp-content/themes/generatepress/assets/hero-abstract-oxL2O4Bj.png');

    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;

    opacity:0.40;

    mix-blend-mode:screen;

    filter:
        brightness(1.05)
        contrast(1.08)
        blur(1px);

    pointer-events:none;

    z-index:1;
}

/* DARK OVERLAY */

.hero::after{
    content:'';

    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to bottom,
        rgba(2,8,23,0.35),
        rgba(2,8,23,0.72)
    );

    z-index:2;
}

/* SMALL BADGE */

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 22px;
    border-radius:999px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    margin-bottom:20px;
    color:#d4af37;
    font-size:14px;
    letter-spacing:2px;
    text-transform:uppercase;
    font-weight:600;
}

.hero-badge::before{
    content:none;
}

/* MAIN TITLE */

.hero-title{
    font-family:'Playfair Display', serif;
    font-size:72px;
    line-height:0.95em;
    font-weight:500;
    margin-bottom:10px;
    color:white;
}

/* GOLD TEXT */

.hero-subtitle{
    font-family:'Playfair Display', serif;
    font-style:italic;
    color:#d4af37;
    font-size:72px;
    line-height:1.02em;
    font-weight:400;
    margin-bottom:42px;
}

/* PARAGRAPH */

.hero-description{
    max-width:820px;
    margin:0 auto;
    color:#9ca3af;
    font-size:20px;
    line-height:1.7em;
}

.hero-sub-link{
    text-align:center;
    margin-top:26px;

    color:#9ca3af;
    font-size:16px;
    line-height:1.6;
}

.hero-sub-link a{
    color:#d4af37;
    text-decoration:none;
    transition:opacity .25s ease;
}

.hero-sub-link a:hover{
    opacity:.8;
}

/* BUTTONS */

.hero-buttons{
    margin-top:50px;
    display:flex;
    justify-content:center;
    gap:24px;
    flex-wrap:wrap;
}

.primary-btn{
    background:#d4af37;
    color:black;
    padding:18px 34px;
    text-decoration:none;
    font-weight:700;
    transition:0.3s;
}

.secondary-btn{
    border:1px solid rgba(255,255,255,0.15);
    color:white;
    padding:18px 34px;
    text-decoration:none;
    font-weight:600;
    background:rgba(255,255,255,0.03);
    transition:0.3s;
}

.primary-btn:hover,
.secondary-btn:hover{
    transform:translateY(-3px);
}

/* =========================
   FEATURES SECTION
========================= */

.features {
    padding:60px 60px;
    max-width:1280px;
    margin:auto;
	border-top:1px solid rgba(212,175,55,0.18);
    box-shadow:0 -1px 12px rgba(212,175,55,0.06);
	
}

.section-title{
    text-align:center;
    font-size:60px;
    margin-bottom:80px;
    font-family:'Playfair Display', serif;
    font-weight:500;
}

.features-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.feature-card{
    background:rgba(255,255,255,0.03);
    border:1px solid rgba(255,255,255,0.06);
    padding:40px;
    transition:0.3s;
}

.feature-card:hover{
    transform:translateY(-6px);
    border-color:rgba(212,175,55,0.3);
}

.feature-number{
    color:#d4af37;
    font-size:14px;
    letter-spacing:2px;
    margin-bottom:20px;
    text-transform:uppercase;
}

.feature-title{
    font-size:28px;
    margin-bottom:18px;
    font-family:'Playfair Display', serif;
}

.feature-text{
    color:#9ca3af;
    line-height:1.7em;
}



/* =========================================
   MOBILE NAVIGATION
========================================= */



/* =========================================
   TABLET
========================================= */

@media(max-width:1100px){

    .features-grid{
        grid-template-columns:1fr;
    }

    .system-grid{
        grid-template-columns:1fr;
    }

    .pricing-container{
        grid-template-columns:1fr;
    }
}



/* =========================================
   SMALL MOBILE
========================================= */

@media(max-width:600px){

    .hero-title{
        font-size:40px;
    }

    .hero-subtitle{
        font-size:34px;
    }

    .section-title,
    .roadmap-title,
    .system-title,
    .features-title,
    .pricing-title,
    .faq-title,
    .final-cta-title{
        font-size:36px !important;
    }

    .roadmap-text,
    .system-description,
    .features-subtitle,
    .pricing-text,
    .faq-answer p,
    .final-cta-text{
        font-size:17px !important;
    }

    .feature-card,
    .pricing-card{
        padding:24px;
    }

    .pricing-button,
    .final-cta-button{
        width:100%;
    }
}



/* =========================
   ROADMAP SECTION
========================= */

.roadmap-section{
    width:100%;
    background:#020817;
   border-top:1px solid rgba(212,175,55,0.18);
    box-shadow:0 -1px 12px rgba(212,175,55,0.06);
    padding:60px 30px;
    position:relative;
    overflow:hidden;
}

/* subtle glow */

.roadmap-section::before{
    content:'';
    position:absolute;
    width:100%;
    height:700px;
    background:
    radial-gradient(circle,
    rgba(212,175,55,0.08),
    transparent 70%);
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    pointer-events:none;
}

/* CONTENT */

.roadmap-content{
    max-width:600px;
    margin:auto;
    text-align:center;
    position:relative;
    z-index:2;
}

/* TITLE */

.roadmap-title{
    color:white;
    font-family:'Playfair Display', serif;
    font-size:36px;
    line-height:1.05em;
    font-weight:500;
    margin-bottom:40px;
    letter-spacing:-1px;
}

/* TEXT */

.roadmap-text{
    color:#9ca3af;
    font-size:20px;
    line-height:1.8em;
    max-width:950px;
    margin:auto;
    font-family:'Inter', sans-serif;
}



@media(max-width:600px){

    .roadmap-title{
        font-size:42px;
    }

    .roadmap-text{
        font-size:18px;
        line-height:1.7em;
    }
}



/* =========================
   SYSTEM SECTION
========================= */

.system-section{
    width:100%;
    background:#020817;
    padding:40px 40px;
    position:relative;
    overflow:hidden;
	border-top:1px solid rgba(212,175,55,0.18);
    box-shadow:0 -1px 12px rgba(212,175,55,0.06);
}

/* GRID */

.system-grid{
    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;

    align-items:center;
}

/* LEFT SIDE */

.system-content{
    max-width:650px;
}

/* TITLE */

.system-title{
    font-size:72px;
    line-height:1em;

    color:white;

    font-family:'Playfair Display', serif;
    font-weight:500;

    margin-bottom:30px;
}

/* DESCRIPTION */

.system-description{
    font-size:24px;
    line-height:1.7em;

    color:#9ca3af;

    margin-bottom:60px;

    max-width:620px;
}

/* STEP ITEM */

.step-item{
    display:flex;
    align-items:flex-start;
    gap:24px;

    margin-bottom:24px;
}

/* ICON */

.step-icon{
    width:54px;
    height:54px;

    min-width:54px;

    border-radius:50%;

    background:
    rgba(255,255,255,0.04);

    border:
    1px solid rgba(255,255,255,0.08);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#d4af37;

    font-size:20px;
}

/* TEXT */

.step-text h3{
    color:white;

    font-size:36px;
    font-weight:500;

    margin-bottom:8px;

    font-family:'Playfair Display', serif;
}

.step-text p{
    color:#9ca3af;

    font-size:22px;
    line-height:1.6em;
}

/* IMAGE */

.system-image{
    position:relative;
}

.system-image img{
    width:100%;
    display:block;

    border-radius:2px;

    box-shadow:
    0 40px 120px rgba(0,0,0,0.55);
}

/* RESPONSIVE */

@media(max-width:1100px){

    .system-grid{
        grid-template-columns:1fr;
    }

    .system-content{
        max-width:100%;
    }

    .system-title{
        font-size:58px;
    }
}

@media(max-width:700px){

    .system-section{
        padding:80px 24px;
    }

    .system-title{
        font-size:46px;
    }

    .system-description{
        font-size:20px;
    }

    .step-text h3{
        font-size:30px;
    }

    .step-text p{
        font-size:18px;
    }
}


/* =========================
   FEATURES SECTION
========================= */

.features-section{
    width:100%;
    background:#020817;

    padding:40px 40px;

    position:relative;
    overflow:hidden;
	border-top:1px solid rgba(212,175,55,0.18);
    box-shadow:0 -1px 12px rgba(212,175,55,0.06);
}

/* subtle glow */

.features-section::before{
    content:'';

    position:absolute;

    width:100%;
    height:600px;

    background:
    radial-gradient(circle,
    rgba(212,175,55,0.06),
    transparent 70%);

    top:50%;
    left:50%;

    transform:translate(-50%,-50%);

    pointer-events:none;
}

/* HEADER */

.features-header{
    text-align:center;

    max-width:100%;

    margin:20px auto 20px;

    position:relative;
    z-index:2;
}

/* TITLE */

.features-title{
    color:white;

    font-size:72px;
    line-height:1em;

    font-family:'Playfair Display', serif;
    font-weight:500;

    margin-bottom:20px;
}

/* SUBTITLE */

.features-subtitle{
    color:#9ca3af;

    font-size:24px;
    line-height:1.7em;
}

/* GRID */

.features-grid{
    max-width:1400px;
	padding:40px 20px;
    margin:auto;

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:36px;

    position:relative;
    z-index:2;
}

/* CARD */

.feature-card{
    background:
    rgba(255,255,255,0.02);

    border:
    1px solid rgba(255,255,255,0.06);

    padding:20px;

    border-radius:6px;

    transition:0.3s ease;
}

/* hover */

.feature-card:hover{
    transform:translateY(-6px);

    border-color:
    rgba(212,175,55,0.18);

    background:
    rgba(255,255,255,0.03);
}

/* ICON */

.feature-icon{
    width:52px;
    height:52px;

    border-radius:10px;

    background:
    rgba(212,175,55,0.08);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#d4af37;

    font-size:22px;

    margin-bottom:28px;
}

/* CARD TITLE */

.feature-card h3{
    color:white;

    font-size:38px;
    line-height:1.1em;

    margin-bottom:18px;

    font-family:'Playfair Display', serif;
    font-weight:500;
}

/* CARD TEXT */

.feature-card p{
    color:#9ca3af;

    font-size:22px;
    line-height:1.7em;
}

/* RESPONSIVE */

@media(max-width:1100px){

    .features-grid{
        grid-template-columns:1fr;
    }

    .features-title{
        font-size:56px;
    }
}

@media(max-width:700px){

    .features-section{
        padding:40px 24px;
    }

    .features-title{
        font-size:44px;
    }

    .features-subtitle{
        font-size:20px;
    }

    .feature-card h3{
        font-size:32px;
    }

    .feature-card p{
        font-size:18px;
    }

}


/* =========================
   PRICING SECTION
========================= */

.pricing-section{
    position:relative;

    width:100%;

    

    background:#020817;

    overflow:hidden;
	
	border-top:1px solid rgba(212,175,55,0.18);
    box-shadow:0 -1px 12px rgba(212,175,55,0.06);
}

/* BACKGROUND IMAGE */

.pricing-bg{
    position:absolute;
    inset:0;

    background-image: url('/wp-content/themes/generatepress/assets/gold-texture.jpg');

    background-size:cover;
    background-position:center;

    opacity:0.18;

    mix-blend-mode:screen;

    pointer-events:none;
}

/* CONTAINER */

.pricing-container{
    position:relative;
    z-index:2;

    max-width:1200px;

    margin:auto;

    background:
    rgba(4,10,28,0.88);

    border:
    1px solid rgba(255,255,255,0.08);

    border-radius:24px;

    padding:60px;

    display:grid;

    grid-template-columns:
    1.4fr 420px;

    gap:70px;

    align-items:center;

    backdrop-filter:blur(12px);

    box-shadow:
    0 30px 120px rgba(0,0,0,0.45);
}

/* LEFT CONTENT */

.pricing-title{
    color:white;

    font-size:72px;
    line-height:1em;

    margin-bottom:26px;

    font-family:'Playfair Display', serif;
    font-weight:500;
}

.pricing-text{
    color:#9ca3af;

    font-size:24px;
    line-height:1.7em;

    margin-bottom:42px;

    max-width:620px;
}

/* FEATURES */

.pricing-features{
    list-style:none;
}

.pricing-features li{
    color:#cbd5e1;

    font-size:22px;

    margin-bottom:24px;

    position:relative;

    padding-left:34px;
}

/* GOLD CHECK */

.pricing-features li::before{
    content:'✓';

    position:absolute;

    left:0;
    top:0;

    color:#d4af37;

    font-weight:700;
}

/* =========================
   CARD
========================= */

.pricing-card{
    background:
    rgba(255,255,255,0.03);

    border:
    1px solid rgba(255,255,255,0.06);

    border-radius:18px;

    padding:50px 42px;

    text-align:center;
}

/* LABEL */

.pricing-label{
    color:#9ca3af;

    font-size:14px;

    letter-spacing:2px;

    margin-bottom:26px;

    font-weight:600;
}

/* PRICE */

.price-wrap{
    display:flex;

    align-items:flex-end;
    justify-content:center;

    margin-bottom:34px;
}

.price{
    color:white;

    font-size:88px;
    line-height:1em;

    font-family:'Playfair Display', serif;
}

.per-month{
    color:#9ca3af;

    font-size:24px;

    margin-bottom:14px;
}

/* BUTTON */

.pricing-button{
    display:block;

    width:100%;

    background:#d4af37;

    color:black;

    padding:18px 24px;

    text-decoration:none;

    font-size:20px;
    font-weight:600;

    border-radius:4px;

    transition:0.3s ease;

    margin-bottom:24px;
}

.pricing-button:hover{
    transform:translateY(-2px);

    background:#e0bb4a;
}

/* CANCEL */

.cancel-text{
    color:#9ca3af;

    font-size:16px;
}

/* PACKS */

.aston-packs{
    margin-top:40px;
    margin-bottom:80px;
}

.packs-heading{
    text-align:center;
    margin-bottom:40px;
}

.packs-subtitle{
    color:#d4af37;
    letter-spacing:2px;
    font-size:20px;
    font-weight:600;
    margin-bottom:10px;
}

.packs-description{
    color:#9ca3af;
    font-size:16px;
}

.packs-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.pack-card{
    background:#07152f;
    border:1px solid rgba(212,175,55,0.15);
    border-radius:18px;
    padding:32px;
    transition:all .25s ease;
}

.pack-card:hover{
    transform:translateY(-4px);
    border-color:rgba(212,175,55,0.35);
}

.pack-label{
    color:#9ca3af;
    font-size:12px;
    letter-spacing:2px;
    margin-bottom:18px;
    font-weight:600;
}

.pack-price{
    margin-bottom:12px;
}

.pack-price .price{
    font-size:52px;
    color:#ffffff;
    font-weight:700;
}

.pack-price .type{
    color:#9ca3af;
    font-size:15px;
    margin-left:6px;
}

.pack-interactions{
    color:#d4af37;
    font-size:18px;
    font-weight:600;
    margin-bottom:24px;
}

.pack-text{
    color:#c7cedb;
    line-height:1.7;
    min-height:70px;
}

.pack-button{
    display:block;
    text-align:center;
    padding:14px;
    border-radius:10px;
    border:1px solid rgba(212,175,55,0.2);
    color:#ffffff;
    text-decoration:none;
    margin-top:24px;
    transition:all .25s ease;
}

.pack-button:hover{
    background:#d4af37;
    color:#06142f;
}

.featured-pack{
    border-color:#d4af37;
}

.featured-button{
    background:#d4af37;
    color:#06142f;
    font-weight:600;
}

.featured-button:hover{
    opacity:.9;
}

@media(max-width:900px){

    .packs-grid{
        grid-template-columns:1fr;
    }

    .pack-card{
        padding:26px;
    }

    .pack-price .price{
        font-size:42px;
    }
}



/* =========================
   RESPONSIVE
========================= */

@media(max-width:1100px){

    .pricing-container{
        grid-template-columns:1fr;

        text-align:center;
    }

    .pricing-text{
        margin-left:auto;
        margin-right:auto;
    }

    .pricing-features{
        display:inline-block;
        text-align:left;
    }
}

@media(max-width:700px){

    .pricing-section{
        padding:40px 24px;
    }

    .pricing-container{
        padding:40px 28px;
    }

    .pricing-title{
        font-size:48px;
    }

    .pricing-text{
        font-size:20px;
    }

    .pricing-features li{
        font-size:18px;
    }

    .price{
        font-size:66px;
    }

    .pricing-card{
        padding:38px 28px;
    }
}


.footer-socials {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    border-radius: 12px;

    background: #0b1d46;
    color: #d4af37;

    border: 1px solid rgba(212,175,55,0.25);

    transition: all 0.25s ease;
}

.footer-socials a:hover {
    background: #d4af37;
    color: #06142f;

    transform: translateY(-2px);

    box-shadow: 0 6px 18px rgba(212,175,55,0.25);
}

.footer-socials svg {
    width: 18px;
    height: 18px;
}



/* =========================
   FAQ SECTION
========================= */

.faq-section{
    position:relative;

    width:100%;

    background:#020817;

    padding:60px 40px;

    overflow:hidden;
	
	border-top:1px solid rgba(212,175,55,0.18);
    box-shadow:0 -1px 12px rgba(212,175,55,0.06);
}

/* GOLD TEXTURE */

.faq-bg{
    position:absolute;
    inset:0;

    background:
    radial-gradient(circle at bottom,
    rgba(212,175,55,0.08),
    transparent 50%);

    pointer-events:none;
}

/* CONTAINER */

.faq-container{
    position:relative;
    z-index:2;
	width:100%;
    max-width:100%;
    min-width:0;
    margin:auto;
}

/* TITLE */

.faq-title{
    text-align:center;

    color:white;

    font-size:72px;
    line-height:1em;

    margin-bottom:90px;

    font-family:'Playfair Display', serif;
    font-weight:500;
}

.faq-subtext{
    text-align:center;
    margin-top:18px;
    margin-bottom:50px;

    color:#9ca3af;
    font-size:16px;
    line-height:1.6;
}

.faq-subtext a{
    color:#d4af37;
    text-decoration:none;
    transition:opacity .25s ease;
}

.faq-subtext a:hover{
    opacity:.8;
}

/* FAQ LIST */

.faq-list{
    border-top:
    1px solid rgba(255,255,255,0.06);
}

/* ITEM */

.faq-item{
    border-bottom:
    1px solid rgba(255,255,255,0.06);
}

/* QUESTION BUTTON */

.faq-question{
    width:100%;

    background:none;
    border:none;

    padding:34px 0;

    display:flex;
    align-items:center;
    justify-content:space-between;

    cursor:pointer;

    color:white;

    font-size:34px;
    line-height:1.3em;

    text-align:left;

    font-family:'Playfair Display', serif;
    font-weight:500;
}

/* ICON */

.faq-icon{
    color:#9ca3af;

    font-size:24px;

    margin-left:30px;

    transition:0.3s ease;
}

/* ANSWER */

.faq-answer{
    max-height:0;

    overflow:hidden;

    transition:
    max-height 0.35s ease,
    padding-bottom 0.35s ease;

    padding-bottom:0;
}

/* OPEN STATE */

.faq-item.active .faq-answer{
    max-height:300px;

    padding-bottom:34px;
}

.faq-item.active .faq-icon{
    color:#d4af37;
}

/* ANSWER TEXT */

.faq-answer p{
    color:#9ca3af;

    font-size:24px;
    line-height:1.8em;

    max-width:850px;

    padding-right:40px;
}

/* RESPONSIVE */

@media(max-width:700px){

    .faq-section{
        padding:90px 24px;
    }

    .faq-title{
        font-size:46px;

        margin-bottom:60px;
    }

    .faq-question{
        font-size:24px;

        padding:28px 0;
    }

    .faq-answer p{
        font-size:18px;
    }
}


/* =========================
   FINAL CTA SECTION
========================= */

.final-cta{
    position:relative;

    width:100%;

    overflow:hidden;

    padding:40px 24px;

    background:#b18d33;
}

/* BACKGROUND IMAGE */

.final-cta-bg{
    position:absolute;
    inset:0;

    background-image:
    url("assets/texture-gold-Df6DlE7Z.png");

    background-size:cover;
    background-position:center;

    opacity:0.35;

    mix-blend-mode:overlay;

    pointer-events:none;
}

/* CONTENT */

.final-cta-content{
    position:relative;
    z-index:2;

    max-width:500px;

    margin:auto;

    text-align:center;
}

/* TITLE */

.final-cta-title{
    color:#050816;

    font-size:82px;
    line-height:0.95em;

    margin-bottom:30px;

    font-family:'Playfair Display', serif;
    font-weight:500;
}

/* TEXT */

.final-cta-text{
    color:#111827;

    font-size:28px;
    line-height:1.7em;

    max-width:500px;

    margin:
    0 auto 50px auto;
}

/* BUTTON */

.final-cta-button{
    display:inline-block;

    background:#020817;

    color:white;

    text-decoration:none;

    padding:22px 42px;

    border-radius:4px;

    font-size:20px;
    font-weight:600;

    transition:0.3s ease;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.25);
}

.final-cta-button:hover{
    transform:translateY(-2px);

    background:#0b1226;
}

/* =========================
   FOOTER
========================= */

.footer{
    background:#070d1e;

    border-top:
    1px solid rgba(255,255,255,0.06);

    padding:36px 40px;
}

/* FOOTER CONTAINER */

.footer-container{
    max-width:1400px;

    margin:auto;

    display:flex;

    align-items:center;
    justify-content:space-between;

    gap:20px;
}

/* LOGO */

.footer-logo{
    display:flex;

    align-items:center;

    gap:14px;

    color:white;

    font-size:20px;
    font-weight:600;

    font-family:'Playfair Display', serif;
}

/* GOLD BOX */

.footer-logo-box{
    width:36px;
    height:36px;

    background:#d4af37;

    color:black;

    display:flex;

    align-items:center;
    justify-content:center;

    font-weight:700;

    font-size:18px;
}

/* COPYRIGHT */

.footer-copy{
    color:#9ca3af;

    font-size:16px;
}
/* =========================
   CLEAN MOBILE NAV FIX
========================= */

.mobile-toggle{
    display:none;
    background:none;
    border:none;
    color:white;
    font-size:32px;
    cursor:pointer;
    line-height:1;
    flex-shrink:0;
}

.mobile-menu{
    display:none;
    flex-direction:column;
    gap:18px;
    padding:24px 20px;
    background:#020817;
    border-top:1px solid rgba(255,255,255,0.08);
}

.mobile-menu.active{
    display:flex;
}

.mobile-menu a{
    color:white;
    text-decoration:none;
    font-size:18px;
}

.mobile-cta{
    background:#d4af37;
    color:black !important;
    padding:14px 20px;
    text-align:center;
    font-weight:700;
}

@media(max-width:1200px){

    html,
    body{
        overflow-x:hidden;
        width:100%;
    }

    .nav-links,
    .cta-button{
        display:none;
    }

    .mobile-toggle{
        display:block;
    }

    .nav-container{
        width:100%;
        max-width:100%;
        padding:18px 20px;
        display:flex;
        align-items:center;
        justify-content:space-between;
        gap:16px;
    }

    .logo-wrap{
        max-width:75%;
        min-width:0;
    }

    .logo-text{
        font-size:22px;
        white-space:nowrap;
    }

    img{
        max-width:100%;
        height:auto;
    }

    .hero,
    .system-section,
    .features-section,
    .pricing-section,
    .faq-section,
    .roadmap-section{
        overflow:hidden;
    }
/* =========================
   FINAL MOBILE FIXES
========================= */

@media(max-width:900px){

    html,
    body{
        overflow-x:hidden !important;
        max-width:100% !important;
    }

    body *{
        max-width:100%;
    }

    .top-nav{
        overflow:visible !important;
    }

    .nav-container{
        width:100% !important;
        max-width:100% !important;

        padding:18px 16px !important;

        overflow:visible !important;
    }

    .logo-wrap{
        max-width:calc(100% - 70px) !important;
    }

    .logo-text{
        font-size:20px !important;
    }

    .mobile-toggle{
        position:relative !important;

        top:auto !important;
        right:auto !important;

        width:auto !important;
        height:auto !important;

        padding:0 !important;
        margin:0 !important;

        border:none !important;
        background:none !important;

        color:white !important;

        font-size:34px !important;

        display:flex !important;
        align-items:center;
        justify-content:center;
    }

    /* Prevent sections from pushing page sideways */

    section,
    div,
    img{
        max-width:100% !important;
    }

    .hero-content,
    .system-grid,
    .features-grid,
    .pricing-container,
    .faq-container,
    .roadmap-content,
    .footer-container{
        width:100% !important;
        max-width:100% !important;
    }

    .hero-title,
    .hero-subtitle,
    .system-title,
    .features-title,
    .pricing-title,
    .faq-title,
    .roadmap-title,
    .final-cta-title{
        overflow-wrap:anywhere;
    }
	/* =========================
   GLOBAL MOBILE OVERFLOW FIX
========================= */

@media(max-width:900px){

    html,
    body{
        width:100% !important;
        max-width:100% !important;
        overflow-x:hidden !important;
        position:relative;
    }

    body{
        overflow-x:hidden !important;
    }

    *{
        max-width:100%;
        box-sizing:border-box;
    }

    img,
    video,
    iframe{
        max-width:100% !important;
        height:auto !important;
    }

    .hero,
    .hero-content,
    .system-section,
    .system-grid,
    .features-section,
    .features-grid,
    .pricing-section,
    .pricing-container,
    .faq-section,
    .faq-container,
    .roadmap-section,
    .roadmap-content,
    .footer,
    .footer-container{
        width:100% !important;
        max-width:100% !important;
        overflow:hidden !important;
    }

    .mobile-toggle{
        display:flex !important;
        align-items:center;
        justify-content:center;

        font-size:34px !important;

        width:44px !important;
        height:44px !important;

        flex-shrink:0 !important;

        margin-left:auto !important;

        position:relative !important;
        right:0 !important;
    }

    .nav-container{
        width:100% !important;
        max-width:100% !important;

        padding-left:16px !important;
        padding-right:16px !important;

        overflow:hidden !important;
    }

    .logo-wrap{
        min-width:0 !important;
        max-width:calc(100% - 60px) !important;
    }

    .logo-text{
        font-size:20px !important;
    }
}
}
}

/* ========================================
   BLOG POSTS
======================================== */

body.single-post{
    background:#020617 !important;
}

/* LAYOUT */

body.single-post #primary{
    width:100% !important;
    max-width:100% !important;
    margin:0 auto !important;
    float:none !important;
}

body.single-post .site-main{
    width:100% !important;
    max-width:1000px !important;

    margin:0 auto !important;

    background:#020617 !important;

    padding-top:20px !important;
    padding-left:20px !important;
    padding-right:20px !important;
}

body.single-post .inside-article{
    background:transparent !important;

    max-width:900px !important;

    margin:0 auto !important;

    padding:80px 20px 60px !important;
}

/* REMOVE HUGE TOP GAP */

body.single-post .site-content{
    padding-top:0 !important;
}

body.single-post .entry-header{
    margin-top:0 !important;
    padding-top:0 !important;
}

/* TITLE */

body.single-post .entry-title{
    display:block !important;

    color:#ffffff !important;

    font-family:'Playfair Display', serif !important;

    font-size:72px !important;
    line-height:1.05em !important;
    font-weight:500 !important;

    margin-bottom:30px !important;
}

/* META */

body.single-post .entry-meta{
    margin-bottom:40px !important;
}

body.single-post .entry-meta,
body.single-post .entry-meta a{
    color:#9ca3af !important;
    font-size:18px !important;
}

body.single-post .entry-meta a{
    color:#d4af37 !important;
}

/* CONTENT */

body.single-post .entry-content,
body.single-post .entry-content p,
body.single-post .entry-content li{
    color:#d1d5db !important;

    font-family:'Inter', sans-serif !important;

    font-size:22px !important;
    line-height:1.8 !important;
}

/* HEADINGS */

body.single-post h2,
body.single-post h3,
body.single-post h4{
    color:#ffffff !important;

    font-family:'Playfair Display', serif !important;
}

body.single-post h2{
    font-size:48px !important;

    margin-top:80px !important;
    margin-bottom:24px !important;

    line-height:1.1em !important;
}

body.single-post h3{
    font-size:36px !important;
}

/* LISTS */

body.single-post ul{
    padding-left:30px !important;
}

body.single-post li{
    margin-bottom:14px !important;
}

/* LINKS */

body.single-post a{
    color:#d4af37 !important;
}


/* ========================================
   MOBILE BLOG FIXES
======================================== */

@media(max-width:768px){

    /* MAIN LAYOUT */

    body.single-post .site-main{
        width:100% !important;
        max-width:100% !important;

        padding-top:20px !important;
        padding-left:16px !important;
        padding-right:16px !important;

        margin:0 auto !important;
    }

    body.single-post .inside-article{
        width:100% !important;
        max-width:100% !important;

        padding:40 0 50px !important;

        margin:0 auto !important;
    }

    /* TITLE */

    body.single-post .entry-header{
        display:block !important;

        margin-top:0 !important;
        padding-top:0 !important;
    }

    body.single-post .entry-title{
        display:block !important;

        font-size:34px !important;
        line-height:1.12em !important;

        letter-spacing:-1px !important;

        color:#ffffff !important;

        font-family:'Playfair Display', serif !important;
        font-weight:500 !important;

        word-break:normal !important;
        overflow-wrap:normal !important;

        max-width:100% !important;

        margin-top:10px !important;
        margin-bottom:20px !important;
    }

    /* META */

    body.single-post .entry-meta{
        font-size:16px !important;

        margin-bottom:30px !important;
    }

    /* BODY TEXT */

    body.single-post .entry-content,
    body.single-post .entry-content p,
    body.single-post .entry-content li{
        font-size:20px !important;
        line-height:1.8 !important;
    }

    /* HEADINGS */

    body.single-post h2{
        font-size:34px !important;
        line-height:1.15em !important;

        margin-top:50px !important;
        margin-bottom:20px !important;
    }

    body.single-post h3{
        font-size:28px !important;
        line-height:1.2em !important;
    }

    /* LISTS */

    body.single-post ul{
        padding-left:22px !important;
    }

    /* IMAGES */

    body.single-post img{
        max-width:100% !important;
        height:auto !important;
    }
}
/* FORCE BLOG TITLE TO SHOW */

body.single-post .entry-header{
    display:block !important;
}

body.single-post .entry-title{
    display:block !important;
    visibility:visible !important;
    opacity:1 !important;
}
/* ARTICLES PAGE LAYOUT */

.page-id-222 .inside-article,
.page-id-285 .inside-article {
    padding-top: 120px !important;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 60px; !important;
    padding-right: 60px;
}

/* MOVE COLUMNS CLOSER TOGETHER */

.page-id-222 .wp-block-columns {
    gap: 30px !important;
    align-items: flex-start;
}

/* ADD SPACE UNDER IMAGES */

.page-id-222 .wp-block-image {
    margin-bottom: 25px !important;
}

/* KEEP CONTENT AWAY FROM EDGES */

.page-id-222 .entry-content,
.page-id-285 .entry-content {
    max-width: 1400px;
    margin: 0 auto;
}

/* MOBILE */

@media(max-width:768px){

    .page-id-222 .inside-article,
	.page-id-285 .inside-article {
        padding-top: 80px !important;
        padding-left: 60px; !important;
        padding-right: 20px;
    }

    .page-id-222 .wp-block-columns,
	.page-id-285 .wp-block-columns {
        gap: 40px !important;
    }

    .page-id-222 .wp-block-image,
	.page-id-285 .wp-block-image {
        margin-bottom: 20px !important;
    }

}

/* MOBILE SECTION DIVIDER */

.section-divider{
    position:relative;
}

.section-divider:before{
    content:"";
    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:1px;

    background:linear-gradient(
        to right,
        transparent,
        rgba(212,175,55,0.35),
        transparent
    );
}

@media(max-width:768px){

    .section-divider:before{
        height:2px;

        background:linear-gradient(
            to right,
            transparent,
            rgba(212,175,55,0.5),
            transparent
        );
    }

}

.footer-contact-link{
    text-align:center;
    margin-top:20px;
}

.footer-contact-link a{
    color:#d4a62a;
    text-decoration:none;
    font-weight:600;
    font-size:16px;
    transition:0.3s ease;
}

.footer-contact-link a:hover{
    color:#ffffff;
}

.entry-meta .byline,
.author,
.posted-by {
    display:none !important;
}

.entry-date,
.posted-on,
.post-date {
    display: none !important;
}

.article-category-grid a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    margin-bottom: 12px;
    transition: all .2s ease;
}

.article-category-grid a:hover {
    color: #d4af37;
    transform: translateX(4px);
}

@media (max-width:768px){

    .entry-content {
        padding-left: 20px;
        padding-right: 20px;
    }

}

/* Category archive pages mobile  and desktop fix */
@media (max-width: 768px) {

    body.archive .site-main,
    body.archive .inside-article,
    body.archive .entry-content,
    body.archive .entry-summary {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
        box-sizing: border-box;
    }

    body.archive .post-image img {
        width: 100% !important;
        height: auto !important;
    }

}

@media (min-width: 769px) {

    body.archive.category .site-main {
        max-width: 1200px;
        margin: 0 auto;
    }

    body.archive.category .inside-article {
        padding-left: 30px;
        padding-right: 30px;
    }

}

/* Post title links */
body.archive.category a.read-more {
    color: #d4af37 !important;
    text-decoration: none !important;
}

/* Category tags under excerpts */
body.archive.category .cat-links a {
    color: #d4af37 !important;
    text-decoration: none !important;
}

/* Hide category header completely */
body.archive.category .page-header {
    display: none;
}