/* ========================================
   SYNAPTIC PULSE - LOCAL STYLES
   100% Offline - No External Dependencies
   ======================================== */

/* ----------------------------------------
   FONT FACE DECLARATIONS (Local)
   ---------------------------------------- */
@font-face {
    font-family: 'Inter';
    src: url('../assets/fonts/inter-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../assets/fonts/inter-medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../assets/fonts/inter-bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../assets/fonts/inter-black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Rajdhani';
    src: url('../assets/fonts/rajdhani-bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ----------------------------------------
   CSS VARIABLES - DESIGN TOKENS
   ---------------------------------------- */
:root {
    /* Colors */
    --bg-deepest: #06131b;
    --bg-dark: #0a2130;
    --bg-card: #0b2230;
    --bg-light: #f5f7f8;
    --bg-card-light: #173d52;
    
    --accent-cyan: #67e8f9;
    --accent-purple: #8b5cf6;
    --accent-cyan-transparent: rgba(103, 232, 249, 0.2);
    --accent-cyan-subtle: rgba(103, 232, 249, 0.1);
    
    --text-primary: #eff8ff;
    --text-secondary: rgba(222, 240, 248, 0.82);
    --text-muted: rgba(137, 181, 205, 0.82);
    --text-dark: #06131b;
    
    --border-subtle: rgba(103, 232, 249, 0.28);
    --border-card: rgba(103, 232, 249, 0.16);
    --border-card-light: rgba(103, 232, 249, 0.2);
    
    /* Typography */
    --font-heading: 'Rajdhani', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding-desktop: 110px;
    --section-padding-tablet: 84px;
    --section-padding-mobile: 64px;
    --container-padding: 48px;
    --container-padding-mobile: 18px;
    
    /* Borders */
    --radius-pill: 999px;
    --radius-card: 28px;
    --radius-card-sm: 24px;
    --radius-card-xs: 20px;
    
    /* Shadows */
    --shadow-glow: 0 0 40px rgba(103, 232, 249, 0.15);
    --shadow-card: 0px 20px 60px 0px rgba(0, 0, 0, 0.22);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
}

/* ----------------------------------------
   RESET & BASE STYLES
   ---------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-deepest);
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul,
ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
}

:focus-visible {
    outline: 2px solid var(--accent-cyan);
    outline-offset: 2px;
}

/* ----------------------------------------
   LAYOUT & CONTAINERS
   ---------------------------------------- */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: var(--section-padding-desktop) 0;
    position: relative;
}

.text-center {
    text-align: center;
}

/* ----------------------------------------
   SECTION HEADERS
   ---------------------------------------- */
.section-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent-cyan);
    margin-bottom: 16px;
}

.section-title {
    font-size: 46px;
    font-weight: 700;
    line-height: 1.05;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.section-title--dark {
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 18px;
    line-height: 1.65;
    color: var(--text-secondary);
}

/* ----------------------------------------
   SECTION 01: HERO
   ---------------------------------------- */
.hero {
    background: linear-gradient(135deg, #06131b 0%, #0a2130 58%, #11122a 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 56px 48px 88px;
}

.hero-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    max-width: 1180px;
    width: 100%;
    margin: 0 auto;
}

.hero-logo {
    width: 180px;
    height: auto;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 56px;
    max-width: 1180px;
    margin: 0 auto;
    flex: 1;
}

.hero-text {
    flex: 1;
    max-width: 640px;
}

.hero-label {
    display: inline-block;
    border: 1px solid rgba(103, 232, 249, 0.22);
    background-color: rgba(103, 232, 249, 0.08);
    border-radius: var(--radius-pill);
    padding: 8px 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent-cyan);
    margin-bottom: 24px;
}

.hero-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.65;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-media {
    flex: 1;
    max-width: 483px;
}

.hero-video-container {
    border: 1px solid rgba(103, 232, 249, 0.26);
    border-radius: 34px;
    padding: 10px;
    background: linear-gradient(135deg, rgba(103, 232, 249, 0.14) 0%, rgba(9, 32, 45, 0.78) 44%, rgba(3, 10, 14, 0.92) 100%);
}

.hero-video {
    width: 100%;
    border-radius: 24px;
    display: block;
}

.hero-footer {
    max-width: 1180px;
    width: 100%;
    margin: 40px auto 0;
    padding-top: 22px;
    border-top: 1px solid rgba(137, 181, 205, 0.28);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-footer-text {
    font-size: 11px;
    font-weight: 500;
    color: rgba(230, 246, 255, 0.66);
}

.hero-footer-year {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

/* ----------------------------------------
   BUTTONS
   ---------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 22px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn:hover {
    transform: scale(1.02);
}

.btn:active {
    transform: scale(0.98);
}

.btn--primary {
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-purple) 100%);
    color: var(--text-dark);
}

.btn--secondary {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
}

.btn-icon {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.btn--secondary .btn-icon {
    stroke: var(--accent-cyan);
}

/* Card icon SVG - inherit color from parent */
.card-icon svg {
    stroke: currentColor;
}

/* ----------------------------------------
   SECTION 02: THE GAP
   ---------------------------------------- */
.gap {
    background-color: var(--bg-dark);
}

.gap-content {
    display: flex;
    gap: 56px;
    align-items: flex-start;
    max-width: 1180px;
    margin: 0 auto;
}

.gap-left {
    flex: 0.9;
}

.gap-right {
    flex: 1;
}

.gap-divider {
    height: 1px;
    background: linear-gradient(90deg, var(--accent-cyan) 0%, transparent 100%);
    margin: 22px 0;
}

.gap-image {
    border-radius: 28px;
    border: 1px solid rgba(103, 232, 249, 0.2);
    overflow: hidden;
    height: 650px;
}

.gap-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gap-narrative {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.gap-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 24px;
}

/* ----------------------------------------
   CARD COMPONENT (reusable)
   ---------------------------------------- */
.card {
    background-color: var(--bg-card-light);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-card-sm);
    padding: 24px;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.card-icon {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(103, 232, 249, 0.22);
    background-color: rgba(103, 232, 249, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
}

.card-icon svg,
.card-icon img {
    width: 20px;
    height: 20px;
}

.card-title {
    font-size: 25px;
    font-weight: 700;
    color: #f2fbff;
}

.card-text {
    font-size: 15px;
    line-height: 1.55;
    color: rgba(235, 248, 255, 0.76);
}

/* ----------------------------------------
   SECTION 03: PLATFORM
   ---------------------------------------- */
.platform {
    background-color: var(--bg-light);
}

.platform-content {
    display: flex;
    gap: 56px;
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
}

.platform-text {
    flex: 1;
}

.platform-title {
    font-size: 46px;
    font-weight: 700;
    line-height: 1.05;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.platform-title span {
    font-size: 38px;
}

.platform-subtitle {
    font-size: 18px;
    line-height: 1.65;
    color: rgba(6, 19, 27, 0.76);
}

.platform-cards {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    border: 1px solid rgba(6, 19, 27, 0.12);
    border-radius: 32px;
    padding: 20px;
    background-color: white;
}

.platform-cards .card {
    background-color: var(--bg-card-light);
}

/* ----------------------------------------
   SECTION 06: SIGNAL PATHWAY
   ---------------------------------------- */
.signal-pathway {
    background-color: var(--bg-deepest);
}

.signal-steps {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-top: 36px;
}

.signal-step {
    background-color: var(--bg-card);
    border: 1px solid var(--border-card-light);
    border-radius: var(--radius-card-xs);
    padding: 20px;
    text-align: center;
    flex: 1;
    min-width: 140px;
}

.signal-step-number {
    display: block;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.signal-step-label {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--text-primary);
}

/* ----------------------------------------
   SECTION 07: PILOT OPPORTUNITY
   ---------------------------------------- */
.pilot-opportunity {
    background: linear-gradient(180deg, #0a2130 0%, #06131b 100%);
}

.pilot-opportunity-content {
    display: flex;
    gap: 56px;
    align-items: flex-start;
    max-width: 1180px;
    margin: 0 auto;
}

.pilot-opportunity-text {
    flex: 1;
}

.pilot-opportunity-image {
    flex: 1;
    border: 1px solid rgba(103, 232, 249, 0.18);
    border-radius: 32px;
    overflow: hidden;
	display: flex;
	justify-content: center;
    align-items: center;
}

.pilot-opportunity-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ----------------------------------------
   SECTION 09: PILOT PATHWAY (CRITICAL - DESKTOP)
   ---------------------------------------- */
.pilot-pathway {
    background-color: var(--bg-light);
}

.pilot-pathway-header {
    text-align: center;
    max-width: 880px;
    margin: 0 auto 38px;
}

.pilot-pathway-header .section-label {
    color: rgb(11, 111, 130);
}

.pilot-pathway-header .section-title {
    color: var(--text-dark);
}

/* CONTENEDOR CRÍTICO - Desktop: horizontal */
.pilot-pathway-cards {
    display: flex;
    flex-direction: row;
    gap: 14px;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

.pilot-pathway-card {
    flex: 1 1 0%;
    min-width: 0;
    background-color: var(--bg-card);
    border: 1px solid var(--border-card-light);
    border-radius: var(--radius-card-xs);
    padding: 20px;
    text-align: center;
}

.pilot-pathway-card-text {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--text-primary);
}

/* ----------------------------------------
   SECTION 08: MUTUAL VALUE
   ---------------------------------------- */
.mutual-value {
    background-color: var(--bg-deepest);
}

.mutual-value-header {
    text-align: center;
    max-width: 880px;
    margin: 0 auto 38px;
}

.mutual-value-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1180px;
    margin: 0 auto;
}

.mutual-value-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(103, 232, 249, 0.18);
    border-radius: var(--radius-card);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.mutual-value-card-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent-cyan);
}

.mutual-value-card-title {
    font-size: 31px;
    font-weight: 700;
    line-height: 1.05;
    color: #f1fbff;
}

.mutual-value-card-text {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(230, 246, 255, 0.76);
}

/* ----------------------------------------
   SECTION 10: CONTACT
   ---------------------------------------- */
.contact {
    background: linear-gradient(135deg, #06131b 0%, #0a2130 55%, #151338 100%);
    text-align: center;
}

.contact-header {
    max-width: 960px;
    margin: 0 auto 30px;
}

.contact-subtitle {
    max-width: 720px;
    margin: 0 auto 30px;
    font-size: 18px;
    line-height: 1.65;
    color: var(--text-secondary);
}

.contact-ctas {
    display: flex;
    gap: 14px;
    justify-content: center;
}

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

/* ----------------------------------------
   BREAKPOINT: Tablet (810px - 1199px)
   ---------------------------------------- */
@media (max-width: 1199px) and (min-width: 810px) {
    .hero {
        padding: 36px 32px 84px;
    }
    
    .hero-logo {
        width: 160px;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 34px;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-media {
        max-width: 100%;
    }
    
    .hero-video-container {
        border-radius: 32px;
    }
    
    .section-title {
        font-size: 38px;
    }
    
    .gap-content {
        flex-direction: column;
        gap: 34px;
    }
    
    .gap-image {
        height: 360px;
    }
    
    .platform-content {
        flex-direction: column;
        gap: 34px;
    }
    
    .platform-title {
        font-size: 38px;
    }
    
    .signal-steps {
        flex-wrap: wrap;
    }
    
    .signal-step {
        flex: 1 1 calc(50% - 7px);
        min-width: auto;
    }
    
    .pilot-opportunity-content {
        flex-direction: column;
        gap: 34px;
    }
    
    .pilot-opportunity-image {
        height: 430px;
    }
    
    .mutual-value-card-title {
        font-size: 26px;
    }
}

/* ----------------------------------------
   BREAKPOINT: Mobile (< 768px)
   CRITICAL: Pilot Pathway Cards Fix
   ---------------------------------------- */
@media (max-width: 768px) {
    .container {
        padding: 0 var(--container-padding-mobile);
    }
    
    .section {
        padding: var(--section-padding-mobile) 0;
    }
    
    /* Hero Mobile */
    .hero {
        padding: 24px 18px 56px;
        gap: 28px;
    }
    
    .hero-top-bar {
        flex-direction: column;
        gap: 6px;
        align-items: flex-start;
        padding-bottom: 0;
    }
    
    .hero-logo {
        width: 150px;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 24px;
    }
    
    .hero-label {
        padding: 7px 10px;
        font-size: 10px;
    }
    
    .hero-title {
        font-size: 22px;
    }
    
    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-video-container {
        border-radius: 24px;
        padding: 8px;
    }
    
    .hero-footer {
        align-items: flex-end;
        padding-top: 18px;
    }
    
    /* Section Headers Mobile */
    .section-title {
        font-size: 31px;
    }
    
    /* Gap Section Mobile */
    .gap-content {
        flex-direction: column;
        gap: 26px;
    }
    
    .gap-image {
        height: 250px;
        border-radius: 22px;
    }
    
    .gap-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    /* Platform Mobile */
    .platform-content {
        flex-direction: column;
        gap: 26px;
    }
    
    .platform-title {
        font-size: 38px;
    }
    
    .platform-title span {
        font-size: 38px;
    }
    
    .platform-cards {
        grid-template-columns: 1fr;
        border-radius: 26px;
        padding: 16px;
    }
    
    /* Signal Pathway Mobile */
    .signal-steps {
        flex-direction: column;
        gap: 12px;
    }
    
    .signal-step {
        width: 100%;
    }
    
    /* Pilot Opportunity Mobile */
    .pilot-opportunity-content {
        flex-direction: column;
        gap: 26px;
    }
    
    .pilot-opportunity-image {
        height: 280px;
        border-radius: 26px;
    }
    
    /* ========================================
       SECTION 09: PILOT PATHWAY - MOBILE FIX
       CRITICAL: Cards must stack vertically
       ======================================== */
    
    .pilot-pathway-header .section-title {
        font-size: 28px;
    }
    
    /* CAMBIO CLAVE: De horizontal a vertical */
    /* El flex: none !important es CRÍTICO - sin esto las cards colapsan */
    .pilot-pathway-cards {
        flex-direction: column !important;
        gap: 12px;
    }
    
    .pilot-pathway-card {
        flex: none !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }
    
    /* Mutual Value Mobile */
    .mutual-value-cards {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .mutual-value-card {
        padding: 24px;
    }
    
    .mutual-value-card-title {
        font-size: 24px;
    }
    
    /* Contact Mobile */
    .contact-ctas {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
}

/* ----------------------------------------
   EXTRA SMALL SCREENS (< 480px)
   ---------------------------------------- */
@media (max-width: 480px) {
    .section-title {
        font-size: 26px;
    }
    
    .platform-title,
    .pilot-pathway-header .section-title {
        font-size: 24px;
    }
    
    .card-title {
        font-size: 22px;
    }
    
    .mutual-value-card-title {
        font-size: 22px;
    }
    
    /* Back to Top Button - Mobile adjustment */
    .back-to-top {
        bottom: 16px;
        right: 16px;
        width: 44px;
        height: 44px;
    }
}

/* ========================================
   BACK TO TOP BUTTON
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(103, 232, 249, 0.15);
    border: 1px solid var(--accent-cyan);
    color: var(--accent-cyan);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent-cyan);
    color: var(--text-dark);
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(103, 232, 249, 0.3);
}
.sp=benefits {
    list-style-type: disc;
    padding=left: 24px;
}

.sp-benefits li {
    display: list-item
}