:root {
    --color-bg: #000000;
    --color-surface: #0a0a0a;
    --color-surface-2: #111111;
    --color-text: #FFFFFF;
    --color-text-dim: #888888;
    --color-accent: #C41E2A;
    --color-accent-glow: rgba(196, 30, 42, 0.3);
    --color-green: #00ff88;
    --font-heading: 'Outfit', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    --spacing-unit: 1rem;
    --radius: 16px;
    --transition: cubic-bezier(0.19, 1, 0.22, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1;
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 0.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

p {
    color: var(--color-text-dim);
    font-size: 1.125rem;
    font-weight: 400;
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: background-color 0.4s, padding 0.4s;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 30px;
    width: auto;
}

.logo-text {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--color-text);
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links a {
    color: var(--color-text-dim);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-links a:hover {
    color: var(--color-text);
}

.menu-toggle {
    display: none;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    letter-spacing: 1px;
}

/* ========== HERO ========== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.55) 40%, rgba(0,0,0,0.92) 100%);
}

.hero-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.hero-content {
    max-width: 900px;
    z-index: 2;
}

.hero-logo {
    width: 80px;
    height: auto;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: logoReveal 1.5s var(--transition) 0.3s forwards;
    filter: drop-shadow(0 0 30px var(--color-accent-glow));
}

@keyframes logoReveal {
    from { opacity: 0; transform: scale(0.8) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: textReveal 1.2s var(--transition) 0.6s forwards;
    letter-spacing: -0.03em;
}

.hero-content h1 .accent {
    background: linear-gradient(135deg, var(--color-accent), #ff4757);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--color-text-dim);
    max-width: 1000px;
    margin: 0 auto 3rem;
    opacity: 0;
    animation: textReveal 1.2s var(--transition) 0.9s forwards;
    line-height: 1.8;
}

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

.scramble-text {
    font-family: 'Share Tech Mono', monospace;
    color: var(--color-green);
    font-weight: 400;
    font-size: 0.85em;
    letter-spacing: 0.02em;
    transition: text-shadow 0.4s;
}

.scramble-text.scrambling {
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.5), 0 0 20px rgba(0, 255, 136, 0.2);
}

@keyframes textReveal {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-scroll {
    opacity: 0;
    animation: textReveal 1.2s var(--transition) 1.4s forwards;
}

.hero-scroll a {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--color-text-dim);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.hero-scroll a:hover { color: var(--color-text); }

.scroll-chevron {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--color-text-dim);
    border-bottom: 2px solid var(--color-text-dim);
    transform: rotate(45deg);
    animation: chevronBounce 2s ease-in-out infinite;
}

@keyframes chevronBounce {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(45deg) translateY(6px); }
}

/* ========== ABOUT STATEMENT — REDESIGNED ========== */
.about-statement {
    padding: 8rem 4rem 5rem;
    background: var(--color-bg);
    border-top: 1px solid rgba(255,255,255,0.04);
}

.about-inner {
    max-width: 1240px;
    margin: 0 auto;
}

/* Two-column grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

/* ---- LEFT COLUMN ---- */
.about-left {}

.about-experience-block {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.about-exp-number {
    font-family: 'Outfit', sans-serif;
    font-size: 12rem;
    font-weight: 800;
    line-height: 0.82;
    color: var(--color-accent);
    letter-spacing: -8px;
    flex-shrink: 0;
    text-shadow: 0 0 60px rgba(196, 30, 42, 0.25);
}

.about-exp-text {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding-top: 0;
}

.about-exp-unit {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1;
}

.about-exp-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.38);
    line-height: 1.7;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ---- LATIN AMERICA BADGE — animated ---- */
.about-latam-badge {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #fff;
    padding: 0.4rem 0.9rem;
    margin-top: 0.35rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-accent), #e63946);
    box-shadow:
        0 0 18px rgba(196, 30, 42, 0.35),
        0 0 40px rgba(196, 30, 42, 0.15);
    animation: badgePulse 2.8s ease-in-out infinite;
}

/* Sweeping light shimmer across the badge */
.about-latam-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255,255,255,0.25) 50%,
        transparent 100%
    );
    animation: badgeShimmer 3.5s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow:
            0 0 18px rgba(196, 30, 42, 0.35),
            0 0 40px rgba(196, 30, 42, 0.15);
    }
    50% {
        box-shadow:
            0 0 24px rgba(196, 30, 42, 0.5),
            0 0 60px rgba(196, 30, 42, 0.25),
            0 0 80px rgba(196, 30, 42, 0.1);
    }
}

@keyframes badgeShimmer {
    0% { left: -100%; }
    60% { left: 150%; }
    100% { left: 150%; }
}

.about-copy {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    line-height: 1.85;
    color: rgba(255,255,255,0.55);
    font-weight: 300;
}

.about-copy strong {
    color: #fff;
    font-weight: 600;
}

/* ---- RIGHT COLUMN: HOVER-EXPAND PILLARS ---- */
.about-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 0.5rem;
}

.about-pillar {
    padding: 1.6rem 1.8rem;
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 6px;
    background: rgba(255,255,255,0.015);
    transition: 
        background 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease,
        transform 0.35s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Red left accent bar */
.about-pillar::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--color-accent);
    border-radius: 0 3px 3px 0;
    transform: translateY(-50%);
    transition: height 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.about-pillar:hover {
    background: rgba(255,255,255,0.03);
    border-color: rgba(196, 30, 42, 0.2);
    box-shadow: 
        0 8px 32px rgba(0,0,0,0.3),
        0 0 0 1px rgba(196, 30, 42, 0.08),
        inset 0 1px 0 rgba(255,255,255,0.04);
    transform: translateX(6px);
}

.about-pillar:hover::before {
    height: 60%;
}

.pillar-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0;
    letter-spacing: -0.2px;
    line-height: 1.2;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.about-pillar:hover .pillar-title {
    color: rgba(255,255,255,0.95);
}

/* Collapsible body — hidden by default */
.pillar-body {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: 
        max-height 0.5s cubic-bezier(0.19, 1, 0.22, 1),
        opacity 0.4s ease 0.05s,
        margin-top 0.4s ease;
    margin-top: 0;
}

.about-pillar:hover .pillar-body {
    max-height: 200px;
    opacity: 1;
    margin-top: 0.85rem;
}

.pillar-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    font-weight: 300;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-exp-number { font-size: 6rem; }
    .pillar-title { font-size: 1.15rem; }
}

/* Keep old .btn-radar as fallback for any other pages */
.btn-radar {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
    padding: 1.1rem 3rem;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    color: #ffffff;
    background: transparent;
    border: 1px solid var(--color-text-dim);
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s var(--transition);
    isolation: isolate;
}
.btn-radar:hover {
    background: rgba(0, 255, 136, 0.08);
    border-color: rgba(0, 255, 136, 0.5);
}
.btn-radar-text { position: relative; z-index: 2; }
.btn-radar-sweep { display: none; }
.btn-radar-ping { display: none; }



/* ========== STATS BAR ========== */
.stats-section {
    padding: 4rem 4rem 10rem;
    background: var(--color-surface);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse 600px 400px at 10% 50%, rgba(196, 30, 42, 0.04) 0%, transparent 70%),
        radial-gradient(ellipse 400px 300px at 90% 20%, rgba(196, 30, 42, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

/* Pixel Flag */
.pixel-flag {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    z-index: 0;
    pointer-events: none;
}

.pixel-flag .px {
    border-radius: 2px;
    opacity: 0;
    pointer-events: auto;
    transition: opacity 0.4s, box-shadow 0.4s;
}

.pixel-flag .px.red {
    background: var(--color-accent);
    opacity: var(--px-opacity, 0);
    box-shadow: 
        0 0 var(--px-glow, 0px) var(--color-accent),
        0 0 calc(var(--px-glow, 0px) * 2) rgba(196, 30, 42, 0.4);
}

.pixel-flag .px.white {
    background: #ffffff;
    opacity: 0.04;
    box-shadow: none;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stats-header {
    margin-bottom: 3.5rem;
    text-align: left;
}

.stats-headline {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.stats-headline .accent {
    background: linear-gradient(135deg, var(--color-accent), #ff4757);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-subtext {
    font-size: 1.1rem;
    color: var(--color-text-dim);
    font-weight: 400;
    letter-spacing: 0.02em;
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: border-color 0.4s, background 0.4s, box-shadow 0.4s, transform 0.4s var(--transition);
    position: relative;
}

.stat-item:hover {
    border-color: rgba(196, 30, 42, 0.25);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 8px 32px rgba(196, 30, 42, 0.08), 0 0 0 1px rgba(196, 30, 42, 0.1);
    transform: translateY(-4px);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--color-text);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.stat-number .accent {
    color: var(--color-accent);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--color-text-dim);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    line-height: 1.5;
}

.stats-source {
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.stats-source a {
    color: var(--color-text-dim);
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    text-decoration: none;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.stats-source a:hover { opacity: 1; }

/* ========== PRODUCTS SECTION ========== */
.products-section {
    padding: 10rem 4rem;
}

.section-header {
    margin-bottom: 4rem;
    max-width: 800px;
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    line-height: 1.1;
    background: linear-gradient(180deg, #FFFFFF 0%, #a8a8a8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 0.5rem;
}

.section-eyebrow {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.section-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--color-accent);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px var(--color-accent), 0 0 20px var(--color-accent);
    animation: alertPulse 2s infinite;
}

@keyframes alertPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--color-surface);
    border: 1px solid rgba(255,255,255,0.06);
    transition: transform 0.5s var(--transition), border-color 0.4s, box-shadow 0.4s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,255,255,0.12);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 40px var(--color-accent-glow);
}

.product-card-img {
    height: 320px;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s var(--transition);
    position: relative;
}

.product-card-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, var(--color-surface), transparent);
}

.product-card:hover .product-card-img {
    transform: scale(1.05);
}

.product-card-content {
    padding: 1.5rem 2rem 2rem;
}

.product-card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-card-content p {
    font-size: 0.95rem;
    color: var(--color-text-dim);
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: gap 0.3s var(--transition), color 0.3s;
}

.card-link:hover {
    gap: 1rem;
    color: var(--color-accent);
}

.card-link .arrow {
    transition: transform 0.3s var(--transition);
    font-size: 1.1rem;
}

/* ========== VISION / MISSION ========== */
.vision-section {
    padding: 10rem 4rem 4rem;
    background: var(--color-surface);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.vision-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 4rem;
    align-items: start;
}

.vision-block h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 2rem;
}

.vision-block p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--color-text-dim);
}

.vision-divider {
    width: 1px;
    height: 100%;
    min-height: 200px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.15), transparent);
}

/* ========== INSIGHTS / BLOG ========== */
.insights-section {
    padding: 10rem 4rem;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.insight-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--color-surface);
    border: 1px solid rgba(255,255,255,0.06);
    transition: transform 0.5s var(--transition), border-color 0.4s;
    cursor: pointer;
}

.insight-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,255,255,0.12);
}

.insight-card-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.insight-card-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, var(--color-surface), transparent);
}

.insight-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(196, 30, 42, 0.85);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border-radius: 4px;
    z-index: 2;
    backdrop-filter: blur(4px);
}

.insight-card-body {
    padding: 1.5rem 2rem 2rem;
}

.insight-date {
    font-size: 0.75rem;
    color: var(--color-text-dim);
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.insight-card-body h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
    text-transform: none;
}

.insight-card-body p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    color: var(--color-text-dim);
}

/* ========== CTA SECTION ========== */
.cta-section {
    padding: 8rem 4rem;
    text-align: center;
    position: relative;
    background: linear-gradient(180deg, var(--color-bg) 0%, #0d0507 50%, var(--color-bg) 100%);
    border-top: 1px solid rgba(196, 30, 42, 0.15);
    border-bottom: 1px solid rgba(196, 30, 42, 0.15);
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.15rem;
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 3rem;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--color-accent);
    color: white;
    border: 2px solid var(--color-accent);
}

.btn-primary:hover {
    background: #a3181f;
    box-shadow: 0 0 30px var(--color-accent-glow);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--color-text);
    border: 2px solid rgba(255,255,255,0.2);
}

.btn-outline:hover {
    border-color: var(--color-text);
    background: rgba(255,255,255,0.05);
    transform: translateY(-2px);
}

/* ========== FOOTER ========== */
footer {
    padding: 6rem 4rem 3rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    background: var(--color-surface);
}

.footer-main {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand img {
    height: 28px;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--color-text-dim);
    max-width: 320px;
}

.footer-col h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-col a {
    display: block;
    color: var(--color-text-dim);
    text-decoration: none;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--color-text);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--color-text-dim);
}

.footer-bottom .footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-bottom .footer-legal a {
    color: var(--color-text-dim);
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.3s;
}

.footer-bottom .footer-legal a:hover {
    color: var(--color-text);
}

/* ========== SHARED ANIMATIONS ========== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s var(--transition), transform 1s var(--transition);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s var(--transition), transform 1s var(--transition);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.zoom-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 1.2s var(--transition), transform 1.2s var(--transition);
}

.zoom-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* stagger children */
.stagger-children .fade-in:nth-child(1) { transition-delay: 0s; }
.stagger-children .fade-in:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .fade-in:nth-child(3) { transition-delay: 0.2s; }
.stagger-children .fade-in:nth-child(4) { transition-delay: 0.3s; }
.stagger-children .fade-in:nth-child(5) { transition-delay: 0.4s; }
.stagger-children .fade-in:nth-child(6) { transition-delay: 0.5s; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .products-grid,
    .insights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .vision-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .vision-divider {
        width: 80px;
        height: 1px;
        min-height: 0;
        margin: 0 auto;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    }
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .hero, .products-section, .about-statement, .vision-section, .insights-section, .cta-section, .stats-section, footer {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .navbar {
        padding: 1.25rem 1.5rem;
    }
    .products-grid,
    .insights-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .stat-item {
        padding: 1.5rem 0.5rem;
    }
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .hero-content h1 {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }
    .about-statement {
        padding: 6rem 1.5rem;
    }
    .products-section,
    .insights-section {
        padding: 6rem 1.5rem;
    }
    .vision-section {
        padding: 6rem 1.5rem 3rem;
    }
    .stats-section {
        padding: 3rem 1.5rem 6rem;
    }
}

/* ========== RADAR SCROLL RULER ========== */
.scroll-ruler {
    position: fixed;
    top: 0;
    right: 0;
    width: 32px;
    height: 100vh;
    z-index: 9999;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 0;
}

.scroll-ruler-tick {
    width: 14px;
    height: 1.5px;
    background: rgba(0, 255, 136, 0.25);
    margin-left: auto;
    margin-right: 6px;
    border-radius: 1px;
    transition: background 0.3s ease, width 0.3s ease, box-shadow 0.3s ease;
}

.scroll-ruler-tick.major {
    width: 20px;
    background: rgba(0, 255, 136, 0.4);
}

.scroll-ruler-tick.active-near {
    background: rgba(0, 255, 136, 0.6);
    box-shadow: 0 0 4px rgba(0, 255, 136, 0.3);
}

.scroll-ruler-tick.active-near.major {
    background: rgba(0, 255, 136, 0.8);
    box-shadow: 0 0 6px rgba(0, 255, 136, 0.4);
}

.scroll-ruler-thumb {
    position: absolute;
    right: 4px;
    top: 20px;
    pointer-events: none;
    transition: top 0.18s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    z-index: 2;
}

.scroll-ruler-thumb::before {
    content: '›';
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #00ff88;
    line-height: 1;
    text-shadow:
        0 0 8px rgba(0, 255, 136, 0.7),
        0 0 16px rgba(0, 255, 136, 0.4);
    animation: chevronPulse 2s ease-in-out infinite;
}

@keyframes chevronPulse {
    0%, 100% {
        opacity: 0.85;
        text-shadow:
            0 0 8px rgba(0, 255, 136, 0.7),
            0 0 16px rgba(0, 255, 136, 0.4);
    }
    50% {
        opacity: 1;
        text-shadow:
            0 0 12px rgba(0, 255, 136, 0.9),
            0 0 24px rgba(0, 255, 136, 0.5),
            0 0 40px rgba(0, 255, 136, 0.2);
    }
}

@media (max-width: 768px) {
    .scroll-ruler {
        display: none;
    }
}

/* ========== LATEST NEWS SECTION ========== */
.news-section {
    padding: 10rem 4rem;
    background: var(--color-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    position: relative;
    overflow: hidden;
}

.news-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse 600px 400px at 90% 50%, rgba(196, 30, 42, 0.04) 0%, transparent 70%),
        radial-gradient(ellipse 400px 300px at 10% 20%, rgba(0, 255, 136, 0.02) 0%, transparent 60%);
    pointer-events: none;
}

.news-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.news-header {
    margin-bottom: 4rem;
    max-width: 800px;
}

.news-intro-sub {
    font-size: 1.1rem;
    color: var(--color-text-dim);
    margin-top: 0.5rem;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: stretch;
}

/* Tactical HUD Image Column */
.news-visual-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tactical-hud-frame {
    position: relative;
    padding: 1.5rem;
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: border-color 0.4s var(--transition), box-shadow 0.4s var(--transition);
}

.tactical-hud-frame:hover {
    border-color: rgba(196, 30, 42, 0.3);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.9),
        0 0 30px var(--color-accent-glow);
}

/* Corners */
.hud-corner {
    position: absolute;
    width: 16px;
    height: 16px;
    border-color: var(--color-accent);
    border-style: solid;
    border-width: 0;
    transition: all 0.4s var(--transition);
}

.hud-corner.top-left {
    top: -1px;
    left: -1px;
    border-top-width: 3px;
    border-left-width: 3px;
    border-top-left-radius: 4px;
}

.hud-corner.top-right {
    top: -1px;
    right: -1px;
    border-top-width: 3px;
    border-right-width: 3px;
    border-top-right-radius: 4px;
}

.hud-corner.bottom-left {
    bottom: -1px;
    left: -1px;
    border-bottom-width: 3px;
    border-left-width: 3px;
    border-bottom-left-radius: 4px;
}

.hud-corner.bottom-right {
    bottom: -1px;
    right: -1px;
    border-bottom-width: 3px;
    border-right-width: 3px;
    border-bottom-right-radius: 4px;
}

.tactical-hud-frame:hover .hud-corner {
    width: 22px;
    height: 22px;
    border-color: var(--color-green);
}

/* Inner elements */
.hud-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #000;
}

.hud-main-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: grayscale(15%) contrast(105%);
    transition: transform 0.6s var(--transition), filter 0.4s var(--transition);
}

.tactical-hud-frame:hover .hud-main-img {
    transform: scale(1.02);
    filter: grayscale(0%) contrast(100%);
}

/* Telemetry info texts */
.hud-telemetry-top,
.hud-telemetry-bottom {
    display: flex;
    justify-content: space-between;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    color: var(--color-text-dim);
}

.hud-telemetry-top {
    margin-bottom: 0.85rem;
}

.hud-telemetry-bottom {
    margin-top: 0.85rem;
}

.telemetry-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.glow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
    animation: pulseDot 1.5s ease-in-out infinite alternate;
}

.glow-dot.red {
    background: var(--color-accent);
    box-shadow: 0 0 8px var(--color-accent);
}

.glow-dot.green {
    background: var(--color-green);
    box-shadow: 0 0 8px var(--color-green);
}

@keyframes pulseDot {
    0% { opacity: 0.4; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1.2); }
}

/* Animations overlay */
.hud-scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.03), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.03));
    background-size: 100% 4px, 6px 100%;
    z-index: 2;
    pointer-events: none;
    opacity: 0.45;
}

.hud-radar-sweep {
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, transparent, rgba(0, 255, 136, 0.05) 70%, rgba(0, 255, 136, 0.15) 99%, var(--color-green) 100%);
    z-index: 3;
    pointer-events: none;
    animation: radarSweep 5s linear infinite;
}

@keyframes radarSweep {
    0% { top: -50%; }
    100% { top: 100%; }
}

.hud-crosshair {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 44px;
    height: 44px;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 50%;
    pointer-events: none;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s var(--transition), border-color 0.4s;
}

.hud-crosshair::before,
.hud-crosshair::after {
    content: '';
    position: absolute;
    background: rgba(0, 255, 136, 0.35);
}

.hud-crosshair::before {
    width: 8px;
    height: 1px;
}

.hud-crosshair::after {
    width: 1px;
    height: 8px;
}

.tactical-hud-frame:hover .hud-crosshair {
    transform: translate(-50%, -50%) rotate(90deg);
    border-color: rgba(0, 255, 136, 0.7);
}

/* News Content Column */
.news-content-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.news-badge-container {
    display: flex;
}

.news-badge {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.4rem 0.9rem;
    border-radius: 4px;
    display: inline-block;
}

.news-badge.red {
    background: rgba(196, 30, 42, 0.12);
    color: #ff4757;
    border: 1px solid rgba(196, 30, 42, 0.3);
    box-shadow: 0 0 15px rgba(196, 30, 42, 0.1);
}

.news-badge.green {
    background: rgba(0, 255, 136, 0.08);
    color: var(--color-green);
    border: 1px solid rgba(0, 255, 136, 0.25);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.1);
}

.news-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.5vw, 2.3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.015em;
    color: var(--color-text);
}

.news-lead {
    font-size: 1.05rem;
    color: var(--color-text-dim);
    line-height: 1.7;
}

/* Pillars list */
.news-pillars {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin: 0.25rem 0;
}

.news-item-pillar {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.25rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(255, 255, 255, 0.01);
    transition: border-color 0.3s var(--transition), background 0.3s var(--transition), transform 0.3s var(--transition);
}

.news-item-pillar:hover {
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    transform: translateX(6px);
}

.news-item-pillar .pillar-icon {
    font-size: 1.35rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
}

.news-item-pillar .pillar-text h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.25rem;
}

.news-item-pillar .pillar-text p {
    font-size: 0.9rem;
    color: var(--color-text-dim);
    line-height: 1.5;
    margin-bottom: 0;
}

/* Quote Block */
.news-quote-block {
    position: relative;
    padding: 1.5rem 2rem;
    border-left: 3px solid var(--color-accent);
    background: rgba(196, 30, 42, 0.03);
    border-radius: 0 8px 8px 0;
    border-top: 1px solid rgba(196, 30, 42, 0.08);
    border-right: 1px solid rgba(196, 30, 42, 0.08);
    border-bottom: 1px solid rgba(196, 30, 42, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin: 0.5rem 0;
}

.news-quote-block .quote-text {
    font-family: var(--font-body);
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.98rem;
    line-height: 1.65;
    margin-bottom: 0.75rem;
}

.news-quote-block .quote-author {
    display: flex;
    flex-direction: column;
}

.news-quote-block .author-name {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-text);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-quote-block .author-title {
    color: var(--color-text-dim);
    font-size: 0.75rem;
}

/* Press Sources */
.news-sources {
    margin-top: 2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text-dim);
    line-height: 1.6;
}

.news-sources .sources-label {
    font-weight: 500;
    color: var(--color-text-dim);
    margin-right: 0.35rem;
}

.news-sources .source-link {
    color: var(--color-text);
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: rgba(255, 255, 255, 0.2);
    transition: color 0.3s ease, text-decoration-color 0.3s ease;
}

.news-sources .source-link:hover {
    color: var(--color-green);
    text-decoration-color: var(--color-green);
}

.news-sources .source-separator {
    color: rgba(255, 255, 255, 0.15);
    margin: 0 0.5rem;
}

/* Metadata Readout styling */
.news-meta-readout {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.85rem;
    margin: 0.5rem 0 1.5rem 0;
    padding: 0.6rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    width: max-content;
    max-width: 100%;
}

.news-meta-readout .meta-item {
    color: var(--color-text-dim);
    display: flex;
    align-items: center;
}

.news-meta-readout .meta-item .label {
    color: var(--color-accent);
    margin-right: 0.35rem;
}

.news-meta-readout .meta-item .green-check {
    color: var(--color-green);
    font-weight: bold;
    margin-left: 0.35rem;
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.6);
}

/* Responsive */
@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    .tactical-hud-frame {
        max-width: 650px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .news-section {
        padding: 6rem 1.5rem;
    }
    .news-grid {
        gap: 2.5rem;
    }
}

/* Desktop HUD Frame stretch matching right text height */
@media (min-width: 1025px) {
    .news-visual-col {
        display: flex;
        flex-direction: column;
    }
    .tactical-hud-frame {
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    .hud-image-wrapper {
        flex: 1;
        min-height: 250px;
    }
    .hud-main-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
