/* Global Variables - Orange Primary Theme */
:root {
    /* Momentum Orange - PRIMARY */
    --primary: #F97316;
    --primary-light: #FDBA74;
    --primary-dark: #EA580C;
    --primary-bg: #1F2633;
    --primary-bg-light: #2A3441;
    
    /* Intelligence Blue - ACCENT */
    --accent-blue: #2563EB;
    --accent-blue-light: #60A5FA;
    --accent-blue-dark: #1d4ed8;
    
    /* Performance Green - SUCCESS */
    --success: #5FD32A;
    --success-dark: #1F7A5A;
    
    /* Backgrounds */
    --bg-dark: #020617;
    --bg-medium: #0F172A;
    --bg-light: #1e293b;
    
    /* Legacy compatibility */
    --blue-primary: #2563EB;
    --blue-secondary: #60A5FA;
    --blue-dark: #020617;
    --blue-light: #101629;
    --green-secondary: #5FD32A;
    --orange-primary: #F97316;
    --orange-secondary: #FDBA74;
}

/* Navigation */
.landing-nav {
    background: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(249, 115, 22, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #cbd5e1;
    text-decoration: none;
}

.nav-link:hover {
    color: var(--primary-light);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-image {
    height: 80px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-light) 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(96, 165, 250, 0.1) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(249, 115, 22, 0.2);
    border: 1px solid var(--primary);
    border-radius: 50px;
    color: var(--primary-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    outline: none !important;
}

.hero-title:focus,
.hero-title:focus-visible {
    outline: none !important;
}

.hero-title-accent {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #94a3b8;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    margin-top: 2rem;
}

/* Stats Card - Matching Reference HTML */
.stats-card {
    position: relative;
    background: #1F2633;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
}

.stats-grid-top {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

/* Glow effects */
.glow-orange::before {
    content: '';
    position: absolute;
    top: -1rem;
    right: -1rem;
    width: 6rem;
    height: 6rem;
    background: rgba(249, 115, 22, 0.2);
    border-radius: 50%;
    filter: blur(3rem);
    pointer-events: none;
    z-index: -1;
}

.glow-orange::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: -1rem;
    width: 8rem;
    height: 8rem;
    background: rgba(253, 186, 116, 0.2);
    border-radius: 50%;
    filter: blur(3rem);
    pointer-events: none;
    z-index: -1;
}

.glow-orange {
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.15),
                0 0 40px rgba(249, 115, 22, 0.1),
                0 0 60px rgba(249, 115, 22, 0.05);
}

.glow-orange:hover {
    box-shadow: 0 0 25px rgba(249, 115, 22, 0.2),
                0 0 50px rgba(249, 115, 22, 0.15),
                0 0 75px rgba(249, 115, 22, 0.1);
}

/* Mini stat boxes */
.mini-stat-box {
    background: #111827;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1rem;
}

.mini-stat-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: #9CA3AF;
    margin-bottom: 0.25rem;
}

.mini-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.mini-stat-change {
    font-size: 0.75rem;
    color: #FDBA74;
}

/* Sector performance chart container */
.sector-chart-container {
    background: #111827;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
}

.sector-chart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.sector-chart-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
}

.sector-chart-subtitle {
    font-size: 0.75rem;
    color: #9CA3AF;
}

/* Bar chart */
.sector-bars {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    height: 8rem;
}

.sector-bar {
    flex: 1;
    background: linear-gradient(to top, #F97316 0%, #FDBA74 100%);
    border-radius: 4px 4px 0 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.sector-bar:hover {
    background: linear-gradient(to top, #EA580C 0%, #F97316 100%);
}

/* Sections */
.section {
    padding: 4rem 0;
    background: #0F172A;
}

.section-dark {
    background: #0F172A;
}

.section-light {
    background: #0F172A;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: -0.5px;
}

.section-title-highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #94a3b8;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

/* Telemetry Section Cards */
.telemetry-stat-card {
    background: #1F2633;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.telemetry-stat-card:hover {
    border-color: rgba(249, 115, 22, 0.4);
    transform: translateY(-2px);
}

.telemetry-stat-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #9CA3AF;
    margin-bottom: 0.5rem;
}

.telemetry-stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.telemetry-stat-delta {
    font-size: 0.875rem;
    color: #FDBA74;
}

.telemetry-stat-subtitle {
    font-size: 0.875rem;
    color: #9CA3AF;
}

/* Large Comparison Card */
.telemetry-comparison-card {
    background: #1F2633;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.telemetry-comparison-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.telemetry-comparison-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.telemetry-graph-section {
    margin-bottom: 1.5rem;
}

.telemetry-graph-labels {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.telemetry-graph-container {
    background: #111827;
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 1rem;
    height: 8rem;
}

.telemetry-line-graph {
    width: 100%;
    height: 100%;
}

.telemetry-delta-section {
    margin-top: auto;
}

.telemetry-delta-bars {
    display: flex;
    height: 2rem;
    align-items: center;
    gap: 1px;
}

.telemetry-delta-bar {
    flex: 1;
    border-radius: 999px;
}

.telemetry-delta-bar-red {
    background: rgba(239, 68, 68, 0.5);
}

.telemetry-delta-bar-orange {
    background: #F97316;
}

/* Experience Stats Card */
.experience-stats-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #1F2633;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.experience-glow-top {
    position: absolute;
    right: -1rem;
    top: -1rem;
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.2);
    filter: blur(3rem);
}

.experience-glow-bottom {
    position: absolute;
    left: -1rem;
    bottom: -1rem;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    background: rgba(253, 186, 116, 0.2);
    filter: blur(3rem);
}

.experience-content {
    position: relative;
    z-index: 1;
}

.experience-main-stat {
    text-align: center;
    margin-bottom: 1.5rem;
}

.experience-main-value {
    font-size: 3.75rem;
    font-weight: 700;
    color: #F97316;
    margin-bottom: 1rem;
}

.experience-main-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #9CA3AF;
}

.experience-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.experience-stat-box {
    background: #111827;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
}

.experience-stat-box-wide {
    grid-column: span 2;
}

.experience-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.experience-stat-label {
    font-size: 0.75rem;
    color: #9CA3AF;
}

.experience-banner {
    background: linear-gradient(to right, rgba(249, 115, 22, 0.2), rgba(253, 186, 116, 0.2));
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
}

.experience-banner-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
    margin: 0;
}

.experience-text-block {
    margin-bottom: 2rem;
}

.experience-text-title {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.experience-text-content {
    color: #9CA3AF;
    line-height: 1.7;
}

/* Feature Cards */
.feature-card {
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--bg-light) 100%);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15), 0 16px 32px rgba(0,0,0,0.12), 0 0 30px rgba(249, 115, 22, 0.3);
}

.feature-card-auto-height {
    height: auto;
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.feature-description {
    color: #cbd5e1;
    line-height: 1.6;
}

.feature-description-spaced {
    margin-bottom: 1.5rem;
}

.feature-quote {
    color: #64748B;
    font-style: italic;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list-item {
    color: #cbd5e1;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list-bullet {
    position: absolute;
    left: 0;
    color: var(--green-secondary);
}

/* Telemetry Images */
.telemetry-image-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(249, 115, 22, 0.3);
    background: #1e293b;
    margin-bottom: 0;
    transition: all 0.3s ease;
}

.telemetry-image-container:hover {
    border-color: rgba(249, 115, 22, 0.6);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15), 0 0 30px rgba(249, 115, 22, 0.2);
    transform: translateY(-4px);
}

.telemetry-image {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    padding: 1rem;
    background: rgba(15, 23, 42, 0.8);
    color: #94a3b8;
    font-size: 0.9rem;
    text-align: center;
    border-top: 1px solid rgba(37, 99, 235, 0.2);
}

/* Pricing Cards */
.pricing-card {
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--bg-light) 100%);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 20px;
    padding: 3rem 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15), 0 16px 32px rgba(0,0,0,0.12), 0 0 30px rgba(249, 115, 22, 0.3);
}

.pricing-card-featured {
    border: 2px solid var(--primary);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.2);
}

.pricing-card-featured:hover {
    border-color: var(--primary-light);
    box-shadow: 0 12px 32px rgba(249, 115, 22, 0.3);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: linear-gradient(to right, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
    white-space: nowrap;
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.pricing-description {
    color: #9CA3AF;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.pricing-price-small {
    font-size: 1.5rem;
    font-weight: 400;
    color: #9CA3AF;
}

.pricing-price-custom {
    font-size: 2.5rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-feature {
    color: #D1D5DB;
    margin-bottom: 0.75rem;
    padding-left: 0;
    position: relative;
    font-size: 0.875rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

/* CTA Section */
.cta-section {
    background: #0F172A;
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(249, 115, 22, 0.2);
}

.cta-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(249, 115, 22, 0.5), transparent);
    margin-bottom: 3rem;
}

.cta-divider-bottom {
    margin-top: 3rem;
    margin-bottom: 0;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    margin-top: 2rem;
}

.cta-trust-text {
    color: rgba(255, 255, 255, 0.9);
    margin-top: 2rem;
    text-align: center;
    font-weight: 500;
}

/* Buttons */
.btn-primary {
    background: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
}

.btn-secondary {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(249, 115, 22, 0.1);
    border-color: var(--primary-light);
    transform: translateY(-2px);
}

.cta-button-primary {
    background: var(--primary) !important;
    color: white !important;
    padding: 1rem 2.5rem !important;
    font-weight: 700 !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3) !important;
    transition: all 0.3s ease !important;
    text-transform: none !important;
}

.cta-button-primary:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.5) !important;
}

.cta-button-secondary {
    border: 2px solid var(--primary) !important;
    color: var(--primary) !important;
    padding: 1rem 2.5rem !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    background: transparent !important;
    transition: all 0.3s ease !important;
    text-transform: none !important;
}

.cta-button-secondary:hover {
    background: rgba(249, 115, 22, 0.1) !important;
    border-color: var(--primary-light) !important;
    transform: translateY(-2px) !important;
}

.btn-pricing-team {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Footer */
.footer {
    background: #0F172A;
    border-top: 1px solid rgba(37, 99, 235, 0.2);
    padding: 3rem 0 1.5rem;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-image {
    height: 40px;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer-description {
    color: #94a3b8;
    max-width: 400px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-link {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--blue-secondary);
}

.footer-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.footer-copyright {
    text-align: center;
    color: #64748B;
    padding-top: 1.5rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(37, 99, 235, 0.1);
}

/* Grid Spacing */
.grid-spacing-standard {
    margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 960px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .pricing-price {
        font-size: 2.5rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-white {
    color: white;
}

.text-gray {
    color: #9CA3AF;
}

.text-orange {
    color: var(--primary);
}

.text-orange-light {
    color: #FDBA74;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.z-1 {
    position: relative;
    z-index: 1;
}

/* Custom Carousel Styles */
.custom-carousel {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 12px;
    background: var(--bg-light);
}

.carousel-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
    cursor: grab;
}

.carousel-track:active {
    cursor: grabbing;
}

.carousel-slide {
    flex: 0 0 100%;
    min-width: 100%;
    height: 100%;
    padding: 2rem;
    box-sizing: border-box;
}

.carousel-content {
    height: 100%;
}

/* Navigation Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(249, 115, 22, 0.9);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.carousel-arrow:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow-prev {
    left: 1rem;
}

.carousel-arrow-next {
    right: 1rem;
}

/* Bullet Navigation */
.carousel-bullets {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.carousel-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-bullet:hover {
    background: rgba(249, 115, 22, 0.6);
    border-color: var(--primary);
}

.carousel-bullet.active {
    background: var(--primary);
    border-color: var(--primary);
    width: 32px;
    border-radius: 6px;
}

/* Responsive */
@@media (max-width: 768px) {
    .custom-carousel {
        height: auto;
        min-height: 500px;
    }
    
    .carousel-slide {
        padding: 1rem;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
    }
    
    .carousel-arrow-prev {
        left: 0.5rem;
    }
    
    .carousel-arrow-next {
        right: 0.5rem;
    }
}
