@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;900&family=Montserrat:wght@300;400;600;700&display=swap');

:root {
    --bg: #000;
    --white: #fff;
    --accent: #a259ff;
    --gold: #ffcc00;
    --red: #ff0015;
    --radius: 16px;
    --max: 860px
}

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

html {
    scroll-behavior: smooth
}

body {
    background: var(--bg);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
    overflow-x: hidden
}

/* NAV */
.art-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 32px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    position: sticky;
    top: 0;
    background: rgba(0, 0, 0, .92);
    backdrop-filter: blur(12px);
    z-index: 100
}

.nav-logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 1rem;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 1px
}

.nav-logo span {
    color: var(--accent)
}

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

.nav-btn {
    padding: 7px 18px;
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all .25s;
    cursor: pointer;
    border: none;
    font-family: 'Montserrat', sans-serif
}

.nav-btn-ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .2);
    color: rgba(255, 255, 255, .7)
}

.nav-btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent)
}

.nav-btn-primary {
    background: var(--accent);
    color: #fff
}

.nav-btn-primary:hover {
    background: #8a3fff;
    box-shadow: 0 0 20px rgba(162, 89, 255, .4)
}

/* HERO */
.art-hero {
    position: relative;
    width: 100%;
    max-height: 400px;
    overflow: hidden
}

.art-hero img,
.art-hero .hero-gradient {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block
}

.art-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .1) 0%, rgba(0, 0, 0, .85) 100%)
}

.art-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 32px;
    z-index: 2
}

.art-category {
    display: inline-block;
    padding: 5px 16px;
    border-radius: 50px;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px
}

.cat-autoridad {
    background: rgba(255, 204, 0, .9);
    color: #000
}

.cat-trafficker {
    background: rgba(0, 236, 255, .85);
    color: #000
}

.cat-estrategia {
    background: rgba(162, 89, 255, .9);
    color: #fff
}

.cat-mentoria {
    background: rgba(255, 105, 0, .9);
    color: #fff
}

.cat-ceo {
    background: rgba(255, 215, 0, .9);
    color: #000
}

.cat-geo {
    background: rgba(0, 200, 100, .9);
    color: #fff
}

.art-num {
    font-size: .72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .5);
    letter-spacing: 3px;
    margin-bottom: 6px
}

.art-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.4rem);
    font-weight: 900;
    line-height: 1.15;
    max-width: 700px
}

.art-date {
    font-size: .75rem;
    color: rgba(255, 255, 255, .45);
    margin-top: 10px;
    letter-spacing: 1px
}

/* ARTICLE BODY */
.art-body {
    max-width: var(--max);
    margin: 0 auto;
    padding: 50px 24px 80px
}

.art-lead {
    font-size: 1.15rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, .9);
    border-left: 4px solid var(--accent);
    padding-left: 20px;
    margin-bottom: 40px;
    font-weight: 500
}

.art-section {
    margin-bottom: 36px
}

.art-section-label {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px
}

.art-section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white)
}

.art-text {
    font-size: .95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, .75)
}

.art-text+.art-text {
    margin-top: 14px
}

/* Data box */
.data-box {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(162, 89, 255, .2);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius);
    padding: 24px 28px;
    margin: 28px 0
}

.data-box-title {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px
}

.data-box p {
    font-size: .9rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, .7)
}

/* Problem box */
.problem-box {
    background: rgba(255, 0, 21, .05);
    border: 1px solid rgba(255, 0, 21, .2);
    border-left: 4px solid var(--red);
    border-radius: var(--radius);
    padding: 24px 28px;
    margin: 28px 0
}

.problem-box-title {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px
}

.problem-box p {
    font-size: .9rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, .7)
}

/* Quote */
.art-quote {
    border-left: 3px solid var(--gold);
    padding: 16px 24px;
    margin: 28px 0;
    font-style: italic;
    font-size: 1rem;
    color: rgba(255, 255, 255, .8);
    background: rgba(255, 204, 0, .04);
    border-radius: 0 var(--radius) var(--radius) 0
}

/* APA */
.apa-box {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius);
    padding: 24px 28px;
    margin-top: 40px
}

.apa-title {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 14px
}

.apa-ref {
    font-size: .78rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, .35);
    font-style: italic;
    padding-left: 24px;
    text-indent: -24px
}

.apa-ref+.apa-ref {
    margin-top: 8px
}

/* Divider */
.art-divider {
    height: 1px;
    background: rgba(255, 255, 255, .07);
    margin: 40px 0
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(162, 89, 255, .12) 0%, rgba(0, 0, 0, 0) 100%);
    border: 1px solid rgba(162, 89, 255, .2);
    border-radius: 20px;
    padding: 48px 40px;
    text-align: center;
    margin: 60px 0 0
}

.cta-section h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.4rem, 4vw, 2rem);
    font-weight: 900;
    margin-bottom: 12px
}

.cta-section h2 span {
    color: var(--accent)
}

.cta-section p {
    font-size: .95rem;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto
}

.cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap
}

.btn-cta-primary {
    padding: 14px 32px;
    background: var(--accent);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: .85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all .3s
}

.btn-cta-primary:hover {
    background: #8a3fff;
    box-shadow: 0 0 28px rgba(162, 89, 255, .5);
    transform: translateY(-2px)
}

.btn-cta-secondary {
    padding: 14px 32px;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: .85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all .3s
}

.btn-cta-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px)
}

.btn-cta-gold {
    padding: 14px 32px;
    background: var(--gold);
    color: #000;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: .85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all .3s
}

.btn-cta-gold:hover {
    filter: brightness(1.1);
    box-shadow: 0 0 24px rgba(255, 204, 0, .4);
    transform: translateY(-2px)
}

/* Related */
.related-label {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .35);
    margin: 60px 0 20px;
    text-align: center
}

/* Footer */
.art-footer {
    border-top: 1px solid rgba(255, 255, 255, .07);
    text-align: center;
    padding: 32px 20px;
    font-size: .75rem;
    color: rgba(255, 255, 255, .3);
    letter-spacing: 1px
}

.art-footer a {
    color: var(--accent);
    text-decoration: none
}

/* Hero gradient fallback */
.hero-gradient {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem
}

/* Responsive */
@media(max-width:600px) {
    .art-nav {
        padding: 14px 16px
    }

    .art-body {
        padding: 32px 16px 60px
    }

    .cta-section {
        padding: 32px 20px
    }

    .art-hero-content {
        padding: 28px 16px
    }
}