/* ================================================
   RUIDO BLANCO - STUDIO DIALECT INSPIRED REDESIGN
   Dark minimalist aesthetic with refined typography
   ================================================ */

/* =====================================
   1. CSS VARIABLES & COLOR PALETTE
   ===================================== */
:root {
    /* Studio Dialect Color Palette - Inverted */
    --color-dark: #ffffff;
    --color-background: #d8d8d8;
    --color-charcoal: #f5f5f5;
    --color-light-gray: #333333;
    --color-neon-lime: #dfff00;
    --color-purple: #7c3aed;
    --color-purple-bright: #a855f7;
    --color-white: #000000;
    --color-black: #000000;
    --color-border: rgba(0, 0, 0, 0.1);

    /* Typography Scale */
    --font-main: 'Space Mono', 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    --font-mono:  'Geist Mono', 'Space Mono', 'Courier New', monospace;

    /* Responsive Font Sizes (using vw for fluidity) */
    --text-xs: clamp(0.75rem, 0.7292vw, 1rem);
    --text-sm: clamp(0.875rem, 0.9vw, 1.125rem);
    --text-base: clamp(1rem, 1.2vw, 1.25rem);
    --text-lg: clamp(1.25rem, 1.8vw, 2rem);
    --text-xl: clamp(1.5rem, 2.5vw, 3rem);
    --text-2xl: clamp(2rem, 4vw, 5rem);
    --text-3xl: clamp(3rem, 6vw, 8rem);
    --text-hero: clamp(4rem, 10vw, 12rem);

    /* Spacing Scale */
    --space-xs: clamp(0.5rem, 1vw, 1rem);
    --space-sm: clamp(1rem, 2vw, 2rem);
    --space-md: clamp(2rem, 3vw, 4rem);
    --space-lg: clamp(3rem, 4vw, 6rem);
    --space-xl: clamp(4rem, 6vw, 8rem);

    /* Animation Timing */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =====================================
   2. IMPORT GEIST FONTS
   ===================================== */
@import url('https://fonts.googleapis.com/css2?family=Geist:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Geist+Mono:wght@400;500;600&display=swap');

/* =====================================
   3. BASE RESETS & DARK BACKGROUND
   ===================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-dark) !important;
    color: var(--color-light-gray) !important;
    font-family: var(--font-main) !important;
    font-size: var(--text-base);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* =====================================
   4. TYPOGRAPHY ENHANCEMENTS
   ===================================== */
h1, h2, h3, h4, h5, h6 {
    color: var(--color-black) !important;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0;
}

h1 {
    font-size: var(--text-hero);
    font-weight: 700;
}

h2 {
    font-size: var(--text-3xl);
    font-weight: 700;
}

h3 {
    font-size: var(--text-2xl);
    font-weight: 600;
}

h4 {
    font-size: var(--text-xl);
    font-weight: 600;
}

h5 {
    font-size: var(--text-lg);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

p {
    color: var(--color-light-gray);
    line-height: 1.7;
    margin-bottom: var(--space-sm);
}

a {
    color: var(--color-black);
    text-decoration: none;
    transition: color var(--transition-base);
}

a:hover {
    color: var(--color-purple-bright);
}

/* Monospace elements */
code, pre, .mono {
    font-family: var(--font-mono);
}

/* =====================================
   5. LOADER ENHANCEMENT
   ===================================== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #1a1a1a;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader--hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.loader__title {
    font-family: var(--font-mono);
    font-size: var(--text-sm);
    color: #ffffff;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.loader__graphic {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
}

.loader__graphic_icon {
    width: 16px;
    height: 16px;
    background-color: #ffffff;
    border-radius: 50%;
    animation: loaderPulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.loader__graphic_icon.icon_2 {
    animation-delay: 0.2s;
}

.loader__graphic_icon.icon_3 {
    animation-delay: 0.4s;
}

@keyframes loaderPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.6;
    }
}

.loader__bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-border);
}

.loader__progress {
    height: 100%;
    background-color: #ffffff;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.loader__pct {
    position: absolute;
    bottom: var(--space-sm);
    right: var(--space-sm);
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    color: #d2d2d2;
}

/* =====================================
   6. CORNER CROSSES & INTERFACE
   ===================================== */
.cross-icon {
    position: fixed;
    width: 20px;
    height: 20px;
    z-index: 100;
    pointer-events: none;
}

.cross-icon::before,
.cross-icon::after {
    content: '';
    position: absolute;
    background-color: rgba(255, 255, 255, 0.3);
    transition: background-color var(--transition-base);
}

.nav-corners.scrolled ~ .cross-icon::before,
.nav-corners.scrolled ~ .cross-icon::after {
    background-color: var(--color-border);
}

.cross-icon::before {
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.cross-icon::after {
    width: 1px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.cross-top-left {
    top: var(--space-sm);
    left: var(--space-sm);
}

.cross-top-right {
    top: var(--space-sm);
    right: var(--space-sm);
}

.cross-bottom-left {
    bottom: var(--space-sm);
    left: var(--space-sm);
}

.cross-bottom-right {
    bottom: var(--space-sm);
    right: var(--space-sm);
}

/* =====================================
   7. NAVIGATION CORNERS
   ===================================== */
.nav-corners {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
    mix-blend-mode: difference;
    filter: contrast(3) brightness(1.5) grayscale(1);
}

.nav-corner {
    position: absolute;
    pointer-events: auto;
    display: flex;
    gap: var(--space-md);
    font-family: var(--font-mono);
    font-size: var(--text-base);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.nav-corner a {
    color: #ffffff;
    padding: 0.5rem;
    border-bottom: 1px solid transparent;
}

.nav-corner a:hover {
    color: var(--color-purple-bright);
    border-bottom-color: var(--color-purple-bright);
}

.nav-corner.top-left {
    top: 1.5rem;
    left: var(--space-md);
}

.nav-corner.top-right {
    top: 1.5rem;
    right: var(--space-md);
    gap: var(--space-md);
    align-items: center;
}

.brand-link {
    font-weight: 700 !important;
    font-size: var(--text-lg) !important;
}

/* Header Coordinates */
.header-coordinates {
    display: flex;
    gap: var(--space-md);
    font-family: var(--font-mono);
    font-size: 14px;
    color: #ffffff;
    letter-spacing: 0.05em;
}

.header-coordinates span {
    white-space: nowrap;
    color: inherit;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    gap: var(--space-md);
}

/* Mobile Menu Button - Hidden by default */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    cursor: pointer;
    padding: 12px;
    z-index: 10002;
    position: fixed;
    mix-blend-mode: normal !important;
    filter: none !important;
    isolation: isolate;
    border-radius: 4px;
    backdrop-filter: blur(10px);
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #ffffff !important;
    transition: all 0.3s ease;
    display: block;
    border-radius: 2px;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.mobile-menu-btn.active {
    background: rgba(0, 0, 0, 0.8);
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background-color: #ffffff !important;
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background-color: #ffffff !important;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: transparent;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: none;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    text-align: left;
    padding: var(--space-xl);
    margin-bottom: var(--space-lg);
    margin-left: var(--space-sm);
}

.mobile-menu-link {
    font-family: var(--font-mono);
    font-size: var(--text-xl);
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    display: inline-block;
    width: fit-content;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    filter: blur(0px);
    transition: none;
}

.mobile-menu-link.animate {
    animation: pixelateSlideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.mobile-menu-link.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
    transition: color 0.3s ease, border-bottom-color 0.3s ease, transform 0.3s ease;
}

.mobile-menu-link.visible:hover {
    color: var(--color-purple-bright);
    border-bottom-color: var(--color-purple-bright);
    transform: translateX(10px);
}

@keyframes pixelateSlideUp {
    0% {
        opacity: 0;
        transform: translateY(80px) scale(0.8);
        filter: blur(25px) contrast(0.3) brightness(0.5);
        text-shadow:
            5px 5px 0px rgba(255, 255, 255, 0.3),
            -5px -5px 0px rgba(255, 255, 255, 0.3),
            10px 0px 0px rgba(255, 255, 255, 0.2),
            -10px 0px 0px rgba(255, 255, 255, 0.2);
    }
    20% {
        opacity: 0.2;
        transform: translateY(60px) scale(0.85);
        filter: blur(20px) contrast(0.4) brightness(0.6);
        text-shadow:
            8px 8px 0px rgba(255, 255, 255, 0.25),
            -8px -8px 0px rgba(255, 255, 255, 0.25);
    }
    40% {
        opacity: 0.4;
        transform: translateY(40px) scale(0.9);
        filter: blur(15px) contrast(0.5) brightness(0.7);
        text-shadow:
            6px 6px 0px rgba(255, 255, 255, 0.2),
            -6px -6px 0px rgba(255, 255, 255, 0.2);
    }
    60% {
        opacity: 0.7;
        transform: translateY(20px) scale(0.95);
        filter: blur(8px) contrast(0.7) brightness(0.85);
        text-shadow:
            3px 3px 0px rgba(255, 255, 255, 0.15),
            -3px -3px 0px rgba(255, 255, 255, 0.15);
    }
    80% {
        opacity: 0.9;
        transform: translateY(5px) scale(0.98);
        filter: blur(3px) contrast(0.9) brightness(0.95);
        text-shadow:
            1px 1px 0px rgba(255, 255, 255, 0.1),
            -1px -1px 0px rgba(255, 255, 255, 0.1);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0) contrast(1) brightness(1);
        text-shadow: none;
    }
}

/* =====================================
   8. HERO SECTION
   ===================================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl) var(--space-md);
    position: relative;
    overflow: hidden;
    background-color: #1a1a1a;
}

.hero__title {
    font-size: var(--text-hero);
    font-weight: 700;
    line-height: 0.9;
    text-align: center;
    color: #ffffff !important;
    margin-bottom: var(--space-md);
    letter-spacing: -0.04em;
    position: relative;
    z-index: 2;
}

.hero__graphic {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    z-index: 2;
}

.hero__graphic_icon {
    width: 12px;
    height: 12px;
    background-color: #ffffff;
    border-radius: 50%;
    animation: heroPulse 2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.hero__graphic_icon.icon_2 {
    animation-delay: 0.3s;
}

@keyframes heroPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

.hero__subtitle {
    font-family: var(--font-mono);
    font-size: var(--text-sm);
    color: #d2d2d2;
    text-align: center;
    letter-spacing: 0.08em;
    line-height: 1.8;
    max-width: 600px;
    z-index: 2;
    opacity: 0.9;
}

.hero__spiral-crosses {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    opacity: 0.05;
    pointer-events: none;
}

.hero__spiral-crosses .cross-icon::before,
.hero__spiral-crosses .cross-icon::after {
    background-color: rgba(255, 255, 255, 0.1);
}

/* =====================================
   9. SPLIT SECTION (Studio Dialect Style)
   ===================================== */
.split-section {
    min-height: 130vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: var(--color-background);
    padding: 80px 60px;
    gap: var(--space-xl);
}

.split-section__left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
}

.split-section__title {
    font-size: clamp(3rem, 6vw, 7rem);
    font-weight: 700;
    line-height: 0.95;
    color: #000000 !important;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.03em;
    position: relative;
}

.split-section__content {
    max-width: 500px;
}

.split-section__content p {
    font-size: var(--text-base);
    color: #333333;
    line-height: 1.7;
    margin-bottom: var(--space-md);
    position: relative;
}

.split-section__cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: var(--space-md);
    padding-bottom: 0.25rem;
    border-bottom: 1px solid #000000;
    position: relative;
    transition: color var(--transition-base),
                border-bottom-color var(--transition-base),
                transform var(--transition-base);
}

.split-section__cta:hover {
    color: var(--color-purple-bright);
    border-bottom-color: var(--color-purple-bright);
    transform: translateX(4px);
}

.split-section__cta .arrow {
    transition: transform var(--transition-base);
}

.split-section__cta:hover .arrow {
    transform: translateX(4px);
}

.split-section__right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
}

.split-section__visual {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-section__placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-purple-bright) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Video Styles */
.split-section__video {
    width: 100%;
    height: 70%;
    max-height: 80vh;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    position: relative;
}

/* Video Glitch Reveal Effect */
.split-section__visual {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
}

.split-section__visual canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    z-index: 10;
    pointer-events: none;
    object-fit: cover;
}

.split-section__placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 50px 50px;
}

/* Responsive */
@media (max-width: 968px) {
    .split-section {
        grid-template-columns: 1fr;
        padding: var(--space-lg) var(--space-md);
        gap: 0;
    }

    .split-section__title {
        font-size: clamp(2.5rem, 10vw, 5rem);
    }

    .split-section__left {
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .split-section__right {
        min-height: 400px;
        padding: 0;
        margin-top: -2rem;
    }

    .split-section__visual {
        margin-top: 0;
        padding-top: 0;
    }

    .split-section__video {
        height: 60%;
        max-height: 60vh;
    }
}

/* =====================================
   10. BODY CONTENT
   ===================================== */
.home-body {
    padding: var(--space-xl) var(--space-md);
    max-width: 1400px;
    margin: 0 auto;
}

.home-body__main {
    margin-bottom: var(--space-xl);
    text-align: center;
}

.home-body__text {
    font-size: var(--text-xl);
    color: var(--color-black);
    font-weight: 400;
    line-height: 1.4;
    max-width: 900px;
    margin: 0 auto;
}

/* =====================================
   11. HORIZONTAL WORK SECTION
   ===================================== */
#work-wrapper {
    width: 100%;
    overflow: hidden;
}

.horizontal-scroll-container {
    display: flex;
    flex-wrap: nowrap;
    will-change: transform;
}

.work-panel {
    min-width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: var(--space-xl);
    background-color: #fafafa;
    border-left: 1px solid var(--color-border);
    transition: background-color var(--transition-base);
}

.work-panel:hover {
    background-color: #ffffff;
}

.work-panel a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.work-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform var(--transition-slow);
    border-radius: 8px;
}

.work-panel:hover .work-image {
    transform: scale(1.02);
}

.kinetic-header {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--color-black);
    letter-spacing: -0.02em;
}

/* Work panel text overlays */
.work-panel h3 {
    font-size: var(--text-2xl) !important;
    color: var(--color-black) !important;
    margin-bottom: var(--space-xs);
    text-shadow: 0 2px 20px rgba(255, 255, 255, 0.8);
}

.work-panel p {
    font-family: var(--font-mono);
    font-size: var(--text-sm);
    color: var(--color-purple-bright);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 0 10px var(--color-purple);
}

/* =====================================
   12. FOOTER
   ===================================== */
.footer {
    background-color: var(--color-background);
    padding: var(--space-xl) var(--space-md);
    border-top: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

.footer__content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.footer__links h5 {
    font-size: var(--text-xs);
    color: var(--color-light-gray);
    margin-bottom: var(--space-sm);
    font-weight: 600;
}

.footer__link-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.footer__link-list a {
    font-size: var(--text-sm);
    color: var(--color-black);
    transition: all var(--transition-base);
    display: inline-block;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}

.footer__link-list a:hover {
    color: var(--color-purple-bright);
    border-bottom-color: var(--color-purple-bright);
    transform: translateX(4px);
}

.footer__giant-head {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    pointer-events: none;
    z-index: 1;
}

.footer__giant-head-text {
    font-size: 10vw;
    font-weight: 900;
    line-height: 0.8;
    opacity: 0.05;
    text-align: center;
    color: var(--color-black);
    user-select: none;
}

.footer__bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-border);
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    color: var(--color-light-gray);
}

/* =====================================
   12. RESPONSIVE BREAKPOINTS
   ===================================== */
@media (max-width: 768px) {
    :root {
        --text-hero: clamp(3rem, 12vw, 6rem);
        --text-3xl: clamp(2rem, 8vw, 4rem);
        --text-2xl: clamp(1.5rem, 6vw, 3rem);
    }

    .nav-corner.top-left,
    .nav-corner.top-right {
        top: 2.5rem;
    }

    .nav-corner.top-left {
        left: var(--space-sm);
    }

    .nav-corner.top-right {
        right: var(--space-sm);
        flex-direction: row;
        gap: var(--space-xs);
    }

    /* Hide coordinates in mobile */
    .header-coordinates {
        display: none;
    }

    /* Hide desktop navigation in mobile */
    .desktop-nav {
        display: none;
    }

    /* Show mobile menu button */
    .mobile-menu-btn {
        display: flex;
        position: fixed;
        top: 2.5rem;
        right: var(--space-sm);
    }

    .hero {
        padding: var(--space-lg) var(--space-sm);
    }

    .hero__title {
        font-size: clamp(3rem, 12vw, 5rem);
    }

    .work-panel {
        min-width: 100vw;
        padding: var(--space-md);
    }

    .footer__links {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .footer__bottom-bar {
        flex-direction: column;
        gap: var(--space-xs);
        text-align: center;
    }
}

/* =====================================
   13. UTILITY CLASSES
   ===================================== */
.text-neon {
    color: var(--color-neon-lime) !important;
}

.text-white {
    color: var(--color-white) !important;
}

.text-gray {
    color: var(--color-light-gray) !important;
}

.mono {
    font-family: var(--font-mono) !important;
}

.uppercase {
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* =====================================
   14. CUSTOM CURSOR (OPTIONAL)
   ===================================== */
#cursorDot {
    position: fixed;
    width: 8px;
    height: 8px;
    background-color: var(--color-purple-bright);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease;
    box-shadow: 0 0 10px var(--color-purple);
}

#cursorDot.active {
    transform: translate(-50%, -50%) scale(2);
    background-color: transparent;
    border: 1px solid var(--color-purple-bright);
    box-shadow: 0 0 20px var(--color-purple);
}


/* Hide default cursor on interactive elements */
body.loaded a,
body.loaded button,
body.loaded .work-panel {
    cursor: none;
}

/* =====================================
   15. SMOOTH ANIMATIONS
   ===================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* Stagger children animations */
.stagger-children > * {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.stagger-children > *:nth-child(1) { animation-delay: 0.1s; }
.stagger-children > *:nth-child(2) { animation-delay: 0.2s; }
.stagger-children > *:nth-child(3) { animation-delay: 0.3s; }
.stagger-children > *:nth-child(4) { animation-delay: 0.4s; }
.stagger-children > *:nth-child(5) { animation-delay: 0.5s; }

/* =====================================
   16. TOOLS RIBBON SECTION
   ===================================== */
.tools-ribbon-section {
    background-color: var(--color-background);
    padding: 60px 0;
    overflow: hidden;
    border-top: 1px solid var(--color-border);
}

.tools-ribbon-header {
    text-align: center;
    margin-bottom: 40px;
}

.tools-ribbon-title {
    font-family: var(--font-mono);
    font-size: var(--text-sm);
    font-weight: 600;
    color: #666666;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.tools-ribbon-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.tools-ribbon-track {
    display: flex;
    gap: 60px;
    animation: scrollLogos 30s linear infinite;
    width: fit-content;
}

.tool-logo {
    flex-shrink: 0;
    width: 180px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.tool-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.8);
    transition: all var(--transition-base);
}

.tool-logo:hover img {
    filter: grayscale(100%) brightness(1);
    transform: scale(1.1);
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.tools-ribbon-track:hover {
    animation-play-state: paused;
}

/* Responsive */
@media (max-width: 968px) {
    .tools-ribbon-section {
        padding: 40px 0;
    }

    .tools-ribbon-track {
        gap: 40px;
    }

    .tool-logo {
        width: 140px;
        height: 70px;
        padding: 8px;
    }

    .tools-ribbon-title {
        font-size: var(--text-xs);
    }
}

/* =====================================
   17. PROJECTS SHOWCASE SECTION (Stacked Cards)
   ===================================== */
.projects-showcase-section {
    min-height: 100vh;
    background-color: #1a1a1a;
    padding: 80px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.projects-showcase-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

.projects-showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
    padding: 0;
    margin-left: -20px;
}

.projects-showcase-title {
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 700;
    color: #ffffff !important;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.projects-view-all {
    font-family: var(--font-mono);
    font-size: var(--text-sm);
    color: #ffffff;
    text-decoration: none;
    padding: 16px 32px;
    border: 2px solid #ffffff;
    transition: all var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.projects-view-all:hover {
    background-color: #ffffff;
    color: #000000;
    transform: translateY(-2px);
}

.projects-stack {
    position: relative;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 2000px;
}

.project-stack-card {
    position: absolute;
    width: 450px;
    height: 700px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.project-stack-card[data-position="1"] {
    transform: translateX(-550px) translateY(0) rotate(-8deg) scale(0.95);
    z-index: 1;
}

.project-stack-card[data-position="2"] {
    transform: translateX(-275px) translateY(-20px) rotate(-4deg) scale(0.97);
    z-index: 2;
}

.project-stack-card[data-position="3"] {
    transform: translateX(0) translateY(-30px) rotate(0deg) scale(1);
    z-index: 3;
}

.project-stack-card[data-position="4"] {
    transform: translateX(275px) translateY(-20px) rotate(4deg) scale(0.97);
    z-index: 2;
}

.project-stack-card[data-position="5"] {
    transform: translateX(550px) translateY(0) rotate(8deg) scale(0.95);
    z-index: 1;
}

.project-stack-card[data-position="1"]:hover {
    transform: translateX(-550px) translateY(-80px) rotate(0deg) scale(1.05) !important;
    z-index: 10 !important;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.7);
}

.project-stack-card[data-position="2"]:hover {
    transform: translateX(-275px) translateY(-100px) rotate(0deg) scale(1.05) !important;
    z-index: 10 !important;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.7);
}

.project-stack-card[data-position="3"]:hover {
    transform: translateX(0) translateY(-110px) rotate(0deg) scale(1.05) !important;
    z-index: 10 !important;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.7);
}

.project-stack-card[data-position="4"]:hover {
    transform: translateX(275px) translateY(-100px) rotate(0deg) scale(1.05) !important;
    z-index: 10 !important;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.7);
}

.project-stack-card[data-position="5"]:hover {
    transform: translateX(550px) translateY(-80px) rotate(0deg) scale(1.05) !important;
    z-index: 10 !important;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.7);
}

.project-stack-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.project-stack-card:hover .project-stack-image {
    transform: scale(1.05);
}

.project-stack-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: #ffffff;
    padding: 30px;
    font-size: var(--text-lg);
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.project-stack-card:hover .project-stack-label {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1400px) {
    .projects-showcase-section {
        padding: 60px 0;
    }

    .projects-showcase-header {
        padding: 0 var(--space-md);
        margin-bottom: 40px;
    }

    .projects-stack {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding: 20px;
        height: auto;
    }

    .project-stack-card {
        position: relative;
        width: 100%;
        max-width: 400px;
        height: 450px;
        transform: none;
    }

    .project-stack-card[data-position="1"],
    .project-stack-card[data-position="2"],
    .project-stack-card[data-position="3"],
    .project-stack-card[data-position="4"],
    .project-stack-card[data-position="5"] {
        transform: none;
        position: relative;
    }

    /* Disable desktop hover effects */
    .project-stack-card[data-position="1"]:hover,
    .project-stack-card[data-position="2"]:hover,
    .project-stack-card[data-position="3"]:hover,
    .project-stack-card[data-position="4"]:hover,
    .project-stack-card[data-position="5"]:hover {
        transform: none !important;
        z-index: unset !important;
    }

    .project-stack-label {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 968px) {
    .projects-showcase-section {
        padding: 60px 0;
    }

    .projects-showcase-header {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        padding: 0 var(--space-md);
        margin-bottom: 40px;
        margin-left: 0;
    }

    .projects-showcase-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .projects-stack {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 25px;
        padding: 20px 15px;
        height: auto;
    }

    .project-stack-card {
        position: relative;
        width: 100%;
        max-width: 350px;
        height: 400px;
        transform: none;
    }

    .project-stack-card[data-position="1"],
    .project-stack-card[data-position="2"],
    .project-stack-card[data-position="3"],
    .project-stack-card[data-position="4"],
    .project-stack-card[data-position="5"] {
        transform: none;
        position: relative;
    }

    /* Disable desktop hover effects */
    .project-stack-card[data-position="1"]:hover,
    .project-stack-card[data-position="2"]:hover,
    .project-stack-card[data-position="3"]:hover,
    .project-stack-card[data-position="4"]:hover,
    .project-stack-card[data-position="5"]:hover {
        transform: none !important;
        z-index: unset !important;
    }

    .project-stack-label {
        opacity: 1;
        transform: translateY(0);
    }

    .projects-view-all {
        font-size: var(--text-xs);
        padding: 12px 24px;
    }
}

/* ==========================================
   BLOG/NEWS SECTION
   ========================================== */

.blog-section {
    background-color: var(--color-background);
    padding: 80px 60px;
    position: relative;
}

.blog-container {
    max-width: 100%;
    margin: 0;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: clamp(40px, 28vw, 900px);
    align-items: start;
}

.blog-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    min-height: 600px;
}

.blog-title {
    font-family: var(--font-mono);
    font-size: 120px;
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.02em;
    color: #111;
    margin: 0;
}

.blog-view-all {
    font-family: var(--font-mono);
    font-size: var(--text-sm);
    color: #111;
    text-decoration: none;
    padding: 16px 32px;
    border: 2px solid #111;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.blog-view-all:hover {
    background-color: #111;
    color: var(--color-background);
}

.blog-view-all .arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.blog-view-all:hover .arrow {
    transform: translateX(5px);
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.blog-post {
    display: flex;
    gap: 32px;
    text-decoration: none;
    color: #111;
    transition: transform 0.3s ease;
}

.blog-post:hover {
    transform: translateX(10px);
}

.blog-post-image {
    width: 280px;
    height: 200px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    background-color: #333;
}

.blog-post-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.blog-post-category {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #666;
}

.blog-post-date {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    color: #888;
    letter-spacing: 0.02em;
}

.blog-post-title {
    font-family: var(--font-main);
    font-size: var(--text-sm);
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    color: #111;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .blog-section {
        padding: 80px 0;
    }

    .blog-container {
        padding: 0 40px;
        grid-template-columns: 300px 1fr;
        gap: clamp(32px, 6vw, 80px);
    }

    .blog-title {
        font-size: 90px;
    }

    .blog-header {
        min-height: 500px;
    }

    .blog-grid {
        gap: 40px;
    }

    .blog-post-image {
        width: 240px;
        height: 180px;
    }

    .blog-post-title {
        font-size: 24px;
    }
}

@media (max-width: 968px) {
    .blog-section {
        padding: 60px 0;
    }

    .blog-container {
        padding: 0 24px;
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .blog-header {
        min-height: auto;
        gap: 32px;
    }

    .blog-title {
        font-size: 60px;
    }

    .blog-view-all {
        margin-top: 0;
        padding: 12px 24px;
        font-size: var(--text-xs);
    }

    .blog-grid {
        gap: 32px;
    }

    .blog-post {
        flex-direction: column;
        gap: 20px;
    }

    .blog-post:hover {
        transform: translateY(-5px);
    }

    .blog-post-image {
        width: 100%;
        height: 240px;
    }

    .blog-post-content {
        gap: 12px;
    }

    .blog-post-title {
        font-size: 22px;
    }
}

/* ==========================================
   FOOTER - STUDIO DIALECT STYLE
   ========================================== */

.footer-dialect {
    background-color: var(--color-background);
    padding: 80px 60px 40px;
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

/* Header with large email */
.footer-dialect__header {
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-dialect__email {
    font-family: var(--font-main);
    font-size: clamp(22px, 5vw, 90px);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: #111;
    margin: 0 0 30px 0;
}

.footer-dialect__copy-btn {
    font-family: var(--font-mono);
    font-size: var(--text-sm);
    color: #fff;
    text-decoration: none;
    padding: 14px 28px;
    background-color: #111;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.footer-dialect__copy-btn:hover {
    background-color: #333;
    color: #fff;
}

.footer-dialect__copy-btn .arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.footer-dialect__copy-btn:hover .arrow {
    transform: translateX(5px);
}

/* Tagline */
.footer-dialect__tagline {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 700;
    color: #111;
    margin: 0 0 60px 0;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1;
}

/* Main Grid */
.footer-dialect__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    position: relative;
    z-index: 1;
}

/* Links Section */
.footer-dialect__links {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-dialect__link-group {
    display: flex;
    gap: 80px;
}

.footer-dialect__link-group h5 {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    font-weight: 700;
    color: #111;
    margin: 0;
    min-width: 120px;
    letter-spacing: 0.05em;
}

.footer-dialect__link-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-dialect__link-list a,
.footer-dialect__link-list span {
    font-family: var(--font-mono);
    font-size: var(--text-sm);
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-dialect__link-list a:hover {
    color: #111;
}

/* Video Container - Background */
.footer-dialect__video-container {
    position: absolute;
    top: 50%;
    right: 15%;
    transform: translateY(-50%);
    width: 650px;
    height: 550px;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.footer-dialect__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 0.9;
}

.footer-dialect__video-overlay {
    display: none;
}

/* CTA Section */
.footer-dialect__cta {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    text-align: right;
}

.footer-dialect__cta span {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    color: #111;
    letter-spacing: 0.05em;
}

.footer-dialect__cta-arrow {
    font-size: 24px;
    color: #111;
    text-decoration: none;
    margin-top: 8px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.footer-dialect__cta-arrow:hover {
    transform: translateX(5px);
}

/* Bottom Bar */
.footer-dialect__bottom {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
}

.footer-dialect__bottom span {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    color: #666;
}

/* Responsive */
@media (max-width: 1200px) {
    .footer-dialect {
        padding: 60px 40px 30px;
    }

    .footer-dialect__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-dialect__video-container {
        width: 400px;
        height: 500px;
        right: 3%;
    }

    .footer-dialect__cta {
        position: relative;
        align-items: flex-start;
        text-align: left;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .footer-dialect {
        padding: 40px 20px 20px;
        min-height: auto;
    }

    .footer-dialect__email {
        font-size: clamp(22px, 4vw, 28px);
    }

    .footer-dialect__link-group {
        flex-direction: column;
        gap: 16px;
    }

    .footer-dialect__link-group h5 {
        min-width: auto;
    }

    .footer-dialect__video-container {
        width: 240px;
        height: 280px;
        right: 0;
        opacity: 0.5;
    }

    .footer-dialect__tagline {
        font-size: var(--text-base);
        margin-bottom: 40px;
    }
}

/* ==========================================
   BLOG PAGE STYLES
   ========================================== */

.blog-page {
    background-color: var(--color-background);
    min-height: 100vh;
}

/* Blog Page Header */
.blog-page-header {
    padding: 180px 30px 60px;
    background-color: var(--color-background);
}

.blog-page-header__content {
    max-width: 1800px;
    margin: 0 auto;
}

.blog-page-title {
    font-family: var(--font-mono);
    font-size: clamp(80px, 15vw, 200px);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.03em;
    color: #111;
    margin: 0 0 30px 0;
}

.blog-page-subtitle {
    font-family: var(--font-mono);
    font-size: var(--text-base);
    color: #555;
    max-width: 500px;
    line-height: 1.6;
}

/* Blog Grid Section */
.blog-page-grid-section {
    padding: 0 30px 80px;
    background-color: var(--color-background);
}

.blog-page-container {
    max-width: 1800px;
    margin: 0 auto;
}

/* Featured Post */
.blog-featured-post {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    text-decoration: none;
    color: #111;
    transition: transform 0.3s ease;
}

.blog-featured-post:hover {
    transform: translateY(-5px);
}

.blog-featured-image {
    height: 450px;
    background-size: cover;
    background-position: center;
    background-color: #333;
}

.blog-featured-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.blog-featured-tag {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #111;
    background-color: #111;
    color: var(--color-background);
    padding: 6px 12px;
    display: inline-block;
    width: fit-content;
}

.blog-featured-date {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    color: #666;
    letter-spacing: 0.05em;
}

.blog-featured-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
    color: #111;
}

.blog-featured-excerpt {
    font-family: var(--font-mono);
    font-size: var(--text-sm);
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* Blog Posts Grid */
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.blog-card {
    text-decoration: none;
    color: #111;
    padding: 30px;
    border: 1px solid rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    background-color: transparent;
}

.blog-card:hover {
    background-color: #111;
    color: var(--color-background);
    border-color: #111;
}

.blog-card:hover .blog-card-category,
.blog-card:hover .blog-card-date {
    color: #888;
}

.blog-card:hover .blog-card-title {
    color: var(--color-background);
}

.blog-card-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.blog-card-category {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #666;
    transition: color 0.3s ease;
}

.blog-card-date {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    color: #888;
    transition: color 0.3s ease;
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    color: #111;
    transition: color 0.3s ease;
}

/* Responsive Blog Page */
@media (max-width: 1200px) {
    .blog-page-header {
        padding: 150px 25px 60px;
    }

    .blog-page-grid-section {
        padding: 0 25px 60px;
    }

    .blog-featured-post {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .blog-featured-image {
        height: 350px;
    }

    .blog-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .blog-page-header {
        padding: 120px 20px 40px;
    }

    .blog-page-grid-section {
        padding: 0 20px 40px;
    }

    .blog-featured-image {
        height: 250px;
    }

    .blog-featured-content {
        gap: 15px;
    }

    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-card {
        padding: 20px;
    }
}


/* ==========================================
   BLOG ARTICLE PAGE STYLES
   ========================================== */


.blog-article-page {
    background-color: var(--color-background); /* Blanco puro del root */
    padding-top: 60px; /* Espacio para el nav fixed */
}

/* Header del Artículo */
.blog-article-header {
    padding: var(--space-xl) var(--space-md);
    border-bottom: 1px solid var(--color-border);
    max-width: 1400px;
    margin: 0 auto;
}

.blog-article-back {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-light-gray);
    display: inline-block;
    margin-bottom: var(--space-md);
    transition: color var(--transition-base);
}

.blog-article-back:hover {
    color: var(--color-purple-bright);
}

.blog-article-category {
    display: block;
    font-family: var(--font-mono);
    font-size: var(--text-sm);
    color: var(--color-purple-bright);
    font-weight: 700;
    margin-bottom: var(--space-xs);
    text-transform: uppercase;
}

.blog-article-title {
    font-size: var(--text-2xl); /* Fluido segun tu escala */
    line-height: 1.05;
    margin-bottom: var(--space-sm);
    color: var(--color-black) !important;
}

.blog-article-date {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    color: var(--color-light-gray);
    text-transform: uppercase;
}

/* Cuerpo del Contenido */
.blog-article-content {
    max-width: 900px; /* Lectura optimizada */
    margin: 0 auto;
    padding: var(--space-lg) var(--space-md);
}

.blog-article-body h2 {
    font-size: var(--text-lg);
    margin: var(--space-md) 0 var(--space-sm);
    border-left: 4px solid var(--color-purple-bright);
    padding-left: 20px;
}

.blog-article-body h3 {
    font-size: var(--text-base);
    margin: var(--space-md) 0 var(--space-sm);
    border-left: 4px solid var(--color-purple-bright);
    padding-left: 20px;
}

.blog-article-body p {
    font-size: var(--text-base);
    margin-bottom: var(--space-sm);
    color: var(--color-light-gray);
}

.blog-article-body ul {
    margin-bottom: var(--space-md);
    padding-left: var(--space-md);
}

.blog-article-body li {
    font-family: var(--font-main);
    margin-bottom: 10px;
    color: var(--color-light-gray);
}

/* Imágenes dentro del artículo */
.blog-article-image {
    margin: var(--space-lg) 0;
    width: 100%;
}

.blog-article-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    filter: grayscale(20%); /* Toque sutil de estilo */
    transition: filter var(--transition-base);
}

.blog-article-image img:hover {
    filter: grayscale(0%);
}

.blog-article-image figcaption {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    color: #888;
    margin-top: 15px;
    text-align: center;
}

/* CTA al final del post */
.blog-article-cta {
    background-color: var(--color-background);
    padding: var(--space-md);
    margin-top: var(--space-xl);
    text-align: center;
    border-radius: 2px;
}

.blog-article-cta p {
    font-family: var(--font-mono);
    font-weight: 700;
    color: var(--color-black);
}

.blog-article-cta-btn {
    display: inline-block;
    background-color: var(--color-black);
    color: #ffffff !important;
    padding: 16px 32px;
    font-family: var(--font-mono);
    font-size: var(--text-sm);
    text-transform: uppercase;
    margin-top: 15px;
    transition: all var(--transition-base);
}

.blog-article-cta-btn:hover {
    background-color: var(--color-purple-bright);
    transform: translateY(-2px);
}