/* WealthIQ — Compiled CSS (from style.scss) */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

:root {
    --gold: #f5a623;
    --indigo: #7c3aed;
    --teal: #00c896;
    --text2: #9999bb
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: #07070f;
    color: #eeeef8;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased
}

a {
    color: inherit;
    text-decoration: none
}

img {
    display: block;
    max-width: 100%
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
    background: none
}

ul {
    list-style: none
}

/* Progress Bar */
#progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, #f5a623, #fa8c16);
    z-index: 9999;
    transition: width .1s linear
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.section {
    padding: 88px 0
}

.section-head {
    text-align: center;
    margin-bottom: 52px
}

.section-head h2 {
    font-size: clamp(1.8rem, 5vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -.04em
}

.section-head .section-sub {
    color: #9999bb;
    margin-top: 10px;
    max-width: 520px;
    margin-inline: auto
}

.section-eyebrow {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #f5a623;
    margin-bottom: 12px
}

/* Gradient text */
.grad-gold {
    background: linear-gradient(135deg, #f5a623, #fa8c16);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.grad-indigo {
    background: linear-gradient(135deg, #c4b5fd, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.grad-teal {
    background: linear-gradient(135deg, #5eead4, #00c896);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

/* Badges */
.badge-finance,
.badge-tech,
.badge-crypto {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 100px
}

.badge-finance {
    background: rgba(245, 166, 35, .14);
    color: #f5a623;
    border: 1px solid rgba(245, 166, 35, .22)
}

.badge-tech {
    background: rgba(124, 58, 237, .14);
    color: #c4b5fd;
    border: 1px solid rgba(124, 58, 237, .22)
}

.badge-crypto {
    background: rgba(0, 200, 150, .14);
    color: #00c896;
    border: 1px solid rgba(0, 200, 150, .22)
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    transition: transform .2s ease, box-shadow .2s ease;
    cursor: pointer
}

.btn-primary {
    background: linear-gradient(135deg, #f5a623, #d4891a);
    color: #000
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(245, 166, 35, .4)
}

.btn-ghost {
    background: #111125;
    color: #eeeef8;
    border: 1px solid rgba(255, 255, 255, .13)
}

.btn-ghost:hover {
    background: #181830;
    transform: translateY(-2px)
}

.btn-nav {
    background: linear-gradient(135deg, #f5a623, #d4891a);
    color: #000;
    font-size: 14px;
    font-weight: 700;
    padding: 9px 18px;
    border-radius: 14px
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 166, 35, .35)
}

/* Fade-in animation */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .45s ease, transform .45s ease
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0)
}

/* ─── HEADER ─── */
#site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(7, 7, 15, .82);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    transition: box-shadow .2s ease
}

#site-header.scrolled {
    box-shadow: 0 4px 32px rgba(0, 0, 0, .5)
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s ease
}

.nav-logo:hover {
    transform: scale(1.02)
}


.nav-links {
    display: flex;
    align-items: center;
    gap: 2px
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    color: #9999bb;
    transition: background .18s ease, color .18s ease
}

.nav-link:hover,
.nav-link.active {
    background: #111125;
    color: #eeeef8
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: 8px;
    align-items: center;
    justify-content: center
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #eeeef8;
    border-radius: 2px;
    transition: transform .2s ease, opacity .2s ease
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.hamburger.active span:nth-child(2) {
    opacity: 0
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(7, 7, 15, .97);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    padding: 10px 16px 18px
}

.mobile-menu.open {
    display: block
}

.mob-link {
    display: block;
    padding: 13px 10px;
    font-size: 15px;
    font-weight: 500;
    color: #9999bb;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    transition: color .18s ease
}

.mob-link:hover {
    color: #eeeef8
}

.mob-link:last-child {
    border: none
}

.mob-cta {
    margin-top: 8px;
    background: linear-gradient(135deg, #f5a623, #d4891a) !important;
    color: #000 !important;
    font-weight: 700 !important;
    border-radius: 14px !important;
    text-align: center !important;
    border: none !important;
    padding: 13px 10px !important
}

/* ─── HERO ─── */
.hero {
    position: relative;
    padding: 80px 0 100px;
    overflow: hidden;
    text-align: center
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: .13
}

.orb-gold {
    width: 520px;
    height: 520px;
    background: #f5a623;
    top: -180px;
    left: -120px;
    animation: floatA 9s ease-in-out infinite
}

.orb-indigo {
    width: 420px;
    height: 420px;
    background: #7c3aed;
    top: -100px;
    right: -100px;
    animation: floatB 11s ease-in-out infinite
}

.orb-teal {
    width: 320px;
    height: 320px;
    background: #00c896;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    animation: floatA 13s ease-in-out infinite reverse
}

@keyframes floatA {

    0%,
    100% {
        transform: translateY(0) scale(1)
    }

    50% {
        transform: translateY(-30px) scale(1.04)
    }
}

@keyframes floatB {

    0%,
    100% {
        transform: translateY(0) scale(1)
    }

    50% {
        transform: translateY(20px) scale(.96)
    }
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%)
}

.hero-content {
    position: relative;
    z-index: 1
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: #f5a623;
    background: rgba(245, 166, 35, .1);
    border: 1px solid rgba(245, 166, 35, .2);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 24px
}

.eyebrow-dot {
    width: 7px;
    height: 7px;
    background: #f5a623;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    flex-shrink: 0
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(245, 166, 35, .6)
    }

    50% {
        box-shadow: 0 0 0 6px rgba(245, 166, 35, 0)
    }
}

.hero-title {
    font-size: clamp(2.4rem, 8vw, 4.8rem);
    font-weight: 900;
    letter-spacing: -.04em;
    line-height: 1.1;
    margin-bottom: 20px
}

.hero-sub {
    font-size: clamp(.95rem, 2.5vw, 1.15rem);
    color: #9999bb;
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.75
}

.hero-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    flex-wrap: wrap
}

.stat {
    text-align: center;
    padding: 0 32px
}

.stat-num {
    font-size: 1.9rem;
    font-weight: 800;
    letter-spacing: -.04em
}

.stat-label {
    font-size: 13px;
    color: #9999bb;
    margin-top: 3px
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, .13)
}

/* ─── AD UNITS ─── */
.ad-unit {
    background: #0c0c1a;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 14px;
    overflow: hidden;
    position: relative
}

.ad-label {
    font-size: 10px;
    color: #55556a;
    text-align: center;
    padding: 4px 0 2px;
    text-transform: uppercase;
    letter-spacing: .08em
}

.ad-hero {
    margin: 36px auto 0;
    max-width: 750px
}

.ad-mid {
    margin: 40px 0
}

.ad-multiplex {
    margin: 0 0 40px
}

/* ─── TICKER ─── */
.ticker-wrap {
    overflow: hidden;
    background: #0c0c1a;
    border-top: 1px solid rgba(255, 255, 255, .07);
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    padding: 10px 0
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: ticker 35s linear infinite
}

@keyframes ticker {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

.tick {
    font-size: 13px;
    font-weight: 500;
    color: #9999bb;
    padding: 0 28px;
    white-space: nowrap;
    border-right: 1px solid rgba(255, 255, 255, .07)
}

.tick-bull {
    color: #22c55e
}

.tick-bear {
    color: #ef4444
}

/* ─── CATEGORIES ─── */
.categories {
    background: #07070f
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    /* Increased gap for better desktop breathing room */
    max-width: 1100px;
    margin: 0 auto;
}

.cat-card {
    position: relative;
    padding: 48px 32px 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
}

.cat-card .cat-glow {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    filter: blur(70px);
    opacity: .07;
    bottom: -80px;
    right: -60px;
    pointer-events: none;
    transition: opacity .3s ease
}

.cat-card .cat-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 16px;
    line-height: 1
}

.cat-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px
}

.cat-card p {
    font-size: 14px;
    color: #9999bb;
    line-height: 1.7;
    margin-bottom: 20px
}

.cat-articles {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #55556a;
    margin-bottom: 16px
}

.cat-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    padding: 9px 20px;
    border-radius: 14px
}

.cat-card:hover {
    transform: translateY(-7px)
}

.cat-card:hover .cat-glow {
    opacity: .14
}

.cat-finance {
    background: linear-gradient(135deg, rgba(245, 166, 35, .07), rgba(245, 166, 35, .02));
    border-color: rgba(245, 166, 35, .14)
}

.cat-finance .cat-cta {
    background: rgba(245, 166, 35, .13);
    color: #f5a623
}

.cat-finance:hover {
    border-color: rgba(245, 166, 35, .28);
    box-shadow: 0 12px 40px rgba(245, 166, 35, .13)
}

.cat-tech {
    background: linear-gradient(135deg, rgba(124, 58, 237, .07), rgba(124, 58, 237, .02));
    border-color: rgba(124, 58, 237, .14)
}

.cat-tech .cat-cta {
    background: rgba(124, 58, 237, .13);
    color: #c4b5fd
}

.cat-tech:hover {
    border-color: rgba(124, 58, 237, .28);
    box-shadow: 0 12px 40px rgba(124, 58, 237, .13)
}

.cat-crypto {
    background: linear-gradient(135deg, rgba(0, 200, 150, .07), rgba(0, 200, 150, .02));
    border-color: rgba(0, 200, 150, .14)
}

.cat-crypto .cat-cta {
    background: rgba(0, 200, 150, .13);
    color: #00c896
}

.cat-crypto:hover {
    border-color: rgba(0, 200, 150, .28);
    box-shadow: 0 12px 40px rgba(0, 200, 150, .13)
}

/* ─── ARTICLES SECTION ─── */
.articles-section {
    background: #0c0c1a
}

.articles-block {
    margin-bottom: 70px
}

.block-head {
    margin-bottom: 36px
}

.block-label {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 100px;
    margin-bottom: 12px
}

.block-label-finance {
    background: rgba(245, 166, 35, .14);
    color: #f5a623;
    border: 1px solid rgba(245, 166, 35, .22)
}

.block-label-tech {
    background: rgba(124, 58, 237, .14);
    color: #c4b5fd;
    border: 1px solid rgba(124, 58, 237, .22)
}

.block-label-crypto {
    background: rgba(0, 200, 150, .14);
    color: #00c896;
    border: 1px solid rgba(0, 200, 150, .22)
}

.block-title {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -.04em;
    margin-bottom: 8px
}

.block-sub {
    font-size: 15px;
    color: #9999bb
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.acard {
    background: #07070f;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 20px;
    overflow: hidden;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    display: flex;
    flex-direction: column
}

.acard:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .6);
    border-color: rgba(255, 255, 255, .13)
}

.acard-thumb {
    height: 180px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat
}

.thumb-finance {
    background: linear-gradient(135deg, #1a0d00, #2d1800, #3f2300)
}

.thumb-tech {
    background: linear-gradient(135deg, #08001e, #14003a, #1c0050)
}

.thumb-crypto {
    background: linear-gradient(135deg, #00180e, #00281a, #003a26)
}

.thumb-emoji {
    font-size: 4rem;
    opacity: .35;
    user-select: none
}

.acard-badge {
    position: absolute;
    bottom: 12px;
    left: 12px
}

.acard-time {
    position: absolute;
    bottom: 12px;
    right: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, .45);
    background: rgba(0, 0, 0, .5);
    padding: 3px 8px;
    border-radius: 6px
}

.acard-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column
}

.acard-body h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.45;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.acard-body p {
    font-size: 14px;
    color: #9999bb;
    line-height: 1.65;
    flex: 1;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.acard-footer {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.acard-date {
    font-size: 14px;
    color: #55556a
}

.acard-cta {
    font-size: 14px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 8px;
    transition: transform .18s ease
}

.acard-cta:hover {
    transform: translateX(3px)
}

.cta-finance {
    background: rgba(245, 166, 35, .1);
    color: #f5a623
}

.cta-tech {
    background: rgba(124, 58, 237, .1);
    color: #c4b5fd
}

.cta-crypto {
    background: rgba(0, 200, 150, .1);
    color: #00c896
}

/* ─── TRUST SECTION ─── */
.trust-section {
    background: #07070f
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.trust-card {
    background: #0c0c1a;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 20px;
    padding: 28px 22px;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .6);
    border-color: rgba(255, 255, 255, .13)
}

.trust-img-wrapper {
    width: 68px;
    height: 68px;
    margin-bottom: 20px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    padding: 3px;
    background: linear-gradient(135deg, #f5a623, #d4891a);
    box-shadow: 0 4px 14px rgba(245, 166, 35, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #0c0c1a;
    transition: transform 0.4s ease;
}

.trust-card:hover .trust-img-wrapper {
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.4);
}

.trust-card:hover .trust-img-wrapper img {
    transform: scale(1.1);
}

.trust-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px
}

.trust-card p {
    font-size: 14px;
    color: #9999bb;
    line-height: 1.65
}

/* ─── APP BANNER ─── */
.app-banner {
    background: #0c0c1a;
    border-top: 1px solid rgba(255, 255, 255, .07);
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    padding: 80px 0
}

.app-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px
}

.app-banner-text h2 {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -.04em;
    margin-bottom: 12px
}

.app-banner-text p {
    color: #9999bb;
    font-size: 15px
}

.app-features {
    margin-top: 18px
}

.app-features li {
    font-size: 14px;
    color: #9999bb;
    padding: 5px 0
}

.app-mockup {
    width: 280px;
    background: #111125;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .5)
}

.mockup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: #181830;
    font-size: 14px;
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 255, 255, .07)
}

.mockup-header span:last-child {
    color: #f5a623;
    font-weight: 800
}

.mockup-task {
    padding: 18px 16px
}

.task-label {
    font-size: 11px;
    font-weight: 700;
    color: #55556a;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 6px
}

.task-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px
}

.task-desc {
    font-size: 13px;
    color: #9999bb;
    line-height: 1.6;
    margin-bottom: 14px
}

.task-btn {
    background: linear-gradient(135deg, #f5a623, #d4891a);
    color: #000;
    font-size: 13px;
    font-weight: 700;
    padding: 9px 16px;
    border-radius: 10px;
    text-align: center;
    cursor: pointer
}

.mockup-code-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(245, 166, 35, .06);
    border-top: 1px solid rgba(245, 166, 35, .12);
    font-size: 13px;
    font-weight: 600;
    color: #f5a623
}

/* ─── NEWSLETTER ─── */
.newsletter-section {
    background: #07070f
}

.newsletter-box {
    position: relative;
    overflow: hidden;
    background: #0c0c1a;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 28px;
    padding: 60px 48px;
    text-align: center
}

.nl-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none
}

.nl-glow-1 {
    width: 300px;
    height: 300px;
    background: #f5a623;
    opacity: .07;
    top: -80px;
    left: -60px
}

.nl-glow-2 {
    width: 300px;
    height: 300px;
    background: #7c3aed;
    opacity: .07;
    bottom: -80px;
    right: -60px
}

.nl-content {
    position: relative
}

.nl-content h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    letter-spacing: -.03em
}

.nl-form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap
}

.nl-input {
    flex: 1;
    min-width: 220px;
    padding: 13px 18px;
    background: #07070f;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 14px;
    color: #eeeef8;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color .2s ease
}

.nl-input:focus {
    border-color: #f5a623
}

.nl-input::placeholder {
    color: #55556a
}

.nl-btn {
    flex-shrink: 0
}

.nl-note {
    font-size: 12px;
    color: #55556a;
    margin-top: 12px
}

/* ─── FOOTER ─── */
.footer {
    background: #0c0c1a;
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding-top: 60px
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px
}

.footer-tagline {
    font-size: 13px;
    color: #9999bb;
    margin-bottom: 20px;
    max-width: 220px;
    line-height: 1.6
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 8px
}

.fsocial {
    width: 36px;
    height: 36px;
    background: #111125;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9999bb;
    transition: all .3s ease;
    text-decoration: none;
}

/* Base Hover */
.fsocial:hover {
    transform: translateY(-3px);
    color: #fff;
}

/* X / Twitter */
.fsocial:nth-child(1):hover {
    background: #000;
    border-color: rgba(255, 255, 255, .3);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.15);
}

/* LinkedIn */
.fsocial:nth-child(2):hover {
    background: #0077b5;
    border-color: #0077b5;
    box-shadow: 0 5px 20px rgba(0, 119, 181, 0.4);
}

/* Facebook */
.fsocial:nth-child(3):hover {
    background: #1877f2;
    border-color: #1877f2;
    box-shadow: 0 5px 20px rgba(24, 119, 242, 0.4);
}

/* YouTube */
.fsocial:nth-child(4):hover {
    background: #ff0000;
    border-color: #ff0000;
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.4);
}

/* Instagram */
.fsocial:nth-child(5):hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
    box-shadow: 0 5px 20px rgba(220, 39, 67, 0.4);
}

.footer-col h5 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #eeeef8;
    margin-bottom: 14px
}

.footer-col ul li {
    margin-bottom: 8px
}

.footer-col ul li a {
    font-size: 13px;
    color: #55556a;
    transition: color .18s ease
}

.footer-col ul li a:hover {
    color: #f5a623
}

.footer-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, .07);
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    padding: 20px 0
}

.footer-disclaimer p {
    font-size: 12px;
    color: #55556a;
    line-height: 1.7
}

.footer-disclaimer strong {
    color: #9999bb
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    font-size: 13px;
    color: #55556a;
    flex-wrap: wrap;
    gap: 12px
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 20px
}

.footer-bottom-links a {
    font-size: 13px;
    color: #55556a;
    transition: color .18s ease
}

.footer-bottom-links a:hover {
    color: #9999bb
}

/* ─── TOAST ─── */
.toast {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: #111125;
    border: 1px solid rgba(255, 255, 255, .13);
    color: #eeeef8;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 100px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .4);
    z-index: 9999;
    opacity: 0;
    transition: transform .3s ease, opacity .3s ease
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1
}

/* ─── RESPONSIVE ─── */
@media(max-width:900px) {
    .nav-links {
        display: none
    }

    .hamburger {
        display: flex
    }

    .btn-nav {
        display: none
    }

    .cat-grid {
        grid-template-columns: 1fr
    }

    .articles-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .app-banner-content {
        flex-direction: column;
        gap: 40px
    }

    .footer-top {
        grid-template-columns: 1fr 1fr
    }

    .stat {
        padding: 12px 20px
    }

    .stat-divider {
        display: none
    }
}

@media(max-width:600px) {
    .section {
        padding: 60px 0
    }

    .hero {
        padding: 60px 0 80px
    }

    .articles-grid {
        grid-template-columns: 1fr
    }

    .trust-grid {
        grid-template-columns: 1fr
    }

    .footer-top {
        grid-template-columns: 1fr
    }

    .newsletter-box {
        padding: 40px 20px
    }

    .nl-input {
        min-width: 0;
        width: 100%
    }

    .nl-btn {
        width: 100%
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px
    }
}

/* ─── ARTICLE PAGE ─── */
.article-page {
    padding: 80px 0;
    max-width: 850px;
    margin: 0 auto;
}

.article-page h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, #fff 0%, #aab 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 600px) {
    .article-page h1 {
        font-size: 18px !important;
        line-height: 1.2;
    }
}

.article-page .article-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    row-gap: 10px;
    color: #55556a;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

@media (max-width: 600px) {
    .article-page .article-meta {
        font-size: 13px;
        gap: 12px;
        row-gap: 8px;
        margin-bottom: 25px;
    }
}

.article-page .article-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.article-page .article-hero-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 30px;
    margin-bottom: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

@media (max-width: 600px) {
    .article-page .article-hero-img {
        height: 280px;
    }
}

.article-page .article-content p {
    font-size: 1.25rem;
    color: #d1d1e9;
    line-height: 1.9;
    margin-bottom: 30px;
    font-weight: 400;
}

@media (max-width: 600px) {
    .article-page .article-content p {
        font-size: 14px;
        line-height: 1.6;
    }
}

.article-page .article-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 60px 0 25px;
    color: #fff;
    letter-spacing: -0.02em;
}

@media (max-width: 600px) {
    .article-page .article-content h2 {
        font-size: 18px !important;
        margin: 35px 0 15px;
    }
}

.article-page .article-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 40px 0 20px;
    color: #f5a623;
}

@media (max-width: 600px) {
    .article-page .article-content h3 {
        font-size: 18px !important;
        margin: 30px 0 12px;
    }
}

.article-page .article-content ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.article-page .article-content li {
    font-size: 1.2rem;
    color: #d1d1e9;
    line-height: 1.8;
    margin-bottom: 15px;
    position: relative;
    list-style: none;
    padding-left: 25px;
}

@media (max-width: 600px) {
    .article-page .article-content li {
        font-size: 14px;
        line-height: 1.6;
    }
}

.article-page .article-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #f5a623;
    font-weight: 700;
}

.article-page .article-content .highlight-box {
    background: rgba(245, 166, 35, 0.05);
    border-left: 4px solid #f5a623;
    padding: 30px;
    border-radius: 0 20px 20px 0;
    margin: 40px 0;
    font-style: italic;
    font-size: 1.3rem;
    color: #fff;
}

.timer-box {
    background: rgba(12, 12, 26, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 25px 20px;
    text-align: center;
    margin: 30px 0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.timer-box.active {
    border-color: rgba(245, 166, 35, 0.3);
    box-shadow: 0 0 30px rgba(245, 166, 35, 0.05);
}

.timer-box.top-gate {
    margin-top: 0;
    margin-bottom: 40px;
    border-radius: 12px;
}

.timer-box .timer-text {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
    opacity: 0.9;
}

.timer-box .timer-count {
    font-size: 2.5rem;
    font-weight: 900;
    color: #f5a623;
    display: block;
    margin: 10px 0;
    text-shadow: 0 0 20px rgba(245, 166, 35, 0.3);
}

.timer-box .btn-timer-trigger {
    background: linear-gradient(135deg, #f5a623 0%, #ff8c00 100%);
    color: #000;
    font-weight: 800;
    padding: 12px 30px;
    font-size: 0.9rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 25px rgba(255, 140, 0, 0.2);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.timer-box .btn-timer-trigger:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(255, 140, 0, 0.3);
}

.timer-box .scroll-hint {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #f5a623;
    font-weight: 700;
    animation: pulseText 1.5s infinite;
    display: none;
}

@keyframes pulseText {
    0% {
        opacity: 0.6;
        transform: scale(0.99);
    }

    50% {
        opacity: 1;
        transform: scale(1.01);
    }

    100% {
        opacity: 0.6;
        transform: scale(0.99);
    }
}

.promo-box {
    background: rgba(7, 7, 15, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 200, 150, 0.2);
    border-radius: 20px;
    padding: 35px 20px;
    text-align: center;
    margin: 60px auto;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.promo-box .promo-label {
    color: #00c896;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.promo-box .promo-code {
    display: inline-block;
    font-size: 2.8rem;
    font-weight: 950;
    letter-spacing: 8px;
    color: #fff;
    margin: 20px 0;
    padding: 15px 40px;
    background: rgba(0, 200, 150, 0.08);
    border-radius: 12px;
    border: 1.5px solid rgba(0, 200, 150, 0.15);
    box-shadow: inset 0 0 30px rgba(0, 200, 150, 0.05), 0 10px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 600px) {
    .promo-box .promo-code {
        font-size: 2rem;
        padding: 10px 20px;
        letter-spacing: 4px;
    }
}

.article-content table {
    width: 100%;
    font-size: 14px;
    border-collapse: collapse;
}

@media (max-width: 600px) {
    .article-content table {
        font-size: 12px;
    }
}

.article-content th,
.article-content td {
    padding: 10px 12px;
}

#unlock-btn-container {
    padding: 40px 0;
    display: none;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.btn-unlock {
    background: linear-gradient(135deg, #fff 0%, #eee 100%);
    color: #000;
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 800;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.btn-unlock:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.15);
}

.btn-unlock svg {
    width: 20px;
    height: 20px;
}

/* Live Pulse Dot */
.live-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #00c896;
    border-radius: 50%;
    margin: 0 8px;
    box-shadow: 0 0 0 0 rgba(0, 200, 150, 0.7);
    animation: livePulse 1.5s infinite;
    vertical-align: middle;
}

@keyframes livePulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 200, 150, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(0, 200, 150, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 200, 150, 0);
    }
}

/* --- AdSense Professional Layout Fix (Medium) --- */
.ad-unit {
    width: 100%;
    margin: 50px auto;
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Removed overflow:hidden to prevent clipping */
}

.ad-label {
    font-size: 11px;
    color: #55556a;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    font-weight: 600;
}

/* Medium Balanced Sizes for Desktop/Laptop */
@media (min-width: 992px) {
    .ad-hero {
        max-width: 970px;
        /* Fits Super Leaderboard */
        min-height: 150px;
        /* Ample breathing room */
    }

    .ad-mid {
        max-width: 850px;
        min-height: 300px;
        /* Fits Medium/Large Rectangles comfortably */
    }

    .ad-multiplex {
        max-width: 1200px;
        min-height: 500px;
        /* Plenty of space for multi-row grids */
    }
}

@media (max-width: 768px) {
    .ad-unit {
        margin: 25px auto;
        padding: 8px 4px;
        /* Minimal side padding to allow ad to take full container width */
        width: calc(100% + 10px);
        /* Slightly wider to feel cohesive with container padding */
        margin-left: -5px;
    }
}