/* ===================================
   RESET & BASE STYLES
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Dark Mode Palette - Financial/Security Platform Aesthetic */
    --bg-primary: #0B0E14;
    --bg-secondary: #151922;
    --bg-tertiary: #1a1f2e;
    --bg-surface: #1e2433;
    
    --text-primary: #E6EDF3;
    --text-secondary: #8B949E;
    --text-tertiary: #6E7681;
    
    --accent-primary: #58A6FF;
    --accent-success: #3FB950;
    --accent-warning: #D29922;
    --accent-critical: #F85149;
    
    --border-primary: rgba(240, 246, 252, 0.1);
    --border-subtle: rgba(240, 246, 252, 0.05);
    
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    height: auto;
    min-height: 100%;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow: visible;
    position: relative;
    width: 100%;
    max-width: 100vw;
    height: auto;
    min-height: 100%;
}

/* ===================================
   ANIMATED GRID BACKGROUND
   =================================== */

.grid-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background-image: 
        linear-gradient(rgba(88, 166, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(88, 166, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridPulse 12s ease-in-out infinite;
}

/* Radial glow overlay for depth */
.grid-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(88, 166, 255, 0.08) 0%, transparent 50%);
    animation: glowPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.5; }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* ===================================
   SCROLL REVEAL ANIMATIONS
   =================================== */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delays for children */
.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.stagger-children.active > *:nth-child(1) { transition-delay: 0ms; }
.stagger-children.active > *:nth-child(2) { transition-delay: 100ms; }
.stagger-children.active > *:nth-child(3) { transition-delay: 200ms; }
.stagger-children.active > *:nth-child(4) { transition-delay: 300ms; }
.stagger-children.active > *:nth-child(5) { transition-delay: 400ms; }
.stagger-children.active > *:nth-child(6) { transition-delay: 500ms; }

.stagger-children.active > * {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   LIVE DATA ANIMATIONS
   =================================== */

/* Subtle pulse for live indicators */
@keyframes livePulse {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(88, 166, 255, 0.4);
    }
    50% { 
        box-shadow: 0 0 0 8px rgba(88, 166, 255, 0);
    }
}

.live-indicator {
    animation: livePulse 2s ease-in-out infinite;
}

/* Data value shimmer effect */
@keyframes dataShimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.data-shimmer {
    background: linear-gradient(90deg, 
        var(--text-primary) 0%, 
        var(--accent-primary) 50%, 
        var(--text-primary) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    animation: dataShimmer 3s linear infinite;
}

/* Breathing glow for active elements */
@keyframes breathingGlow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(88, 166, 255, 0.1),
                    0 4px 16px rgba(0, 0, 0, 0.3);
    }
    50% { 
        box-shadow: 0 0 30px rgba(88, 166, 255, 0.2),
                    0 4px 20px rgba(0, 0, 0, 0.4);
    }
}

.breathing-glow {
    animation: breathingGlow 4s ease-in-out infinite;
}

/* Status indicator dot animation */
@keyframes statusPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-success);
    animation: statusPulse 2s ease-in-out infinite;
    display: inline-block;
    margin-right: 8px;
}

.status-dot.warning {
    background: var(--accent-warning);
}

.status-dot.critical {
    background: var(--accent-critical);
}

/* ===================================
   FLOATING ELEMENTS ANIMATIONS
   =================================== */

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
}

.float {
    animation: float 6s ease-in-out infinite;
}

.float-slow {
    animation: floatSlow 8s ease-in-out infinite;
}

/* Particle-like floating elements */
@keyframes particleFloat {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    25% { 
        transform: translate(10px, -20px) scale(1.1);
        opacity: 0.6;
    }
    50% { 
        transform: translate(-5px, -30px) scale(1);
        opacity: 0.4;
    }
    75% { 
        transform: translate(-15px, -15px) scale(0.9);
        opacity: 0.5;
    }
}

/* ===================================
   CONNECTION LINE ANIMATIONS
   =================================== */

@keyframes flowLine {
    0% { 
        stroke-dashoffset: 100%;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% { 
        stroke-dashoffset: 0%;
        opacity: 0;
    }
}

@keyframes dataPulseHorizontal {
    0% { 
        left: 0;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% { 
        left: 100%;
        opacity: 0;
    }
}

/* Connecting line between elements */
.connection-line {
    position: relative;
    overflow: hidden;
}

.connection-line::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 6px;
    height: 6px;
    background: var(--accent-primary);
    border-radius: 50%;
    transform: translateY(-50%);
    animation: dataPulseHorizontal 3s ease-in-out infinite;
    box-shadow: 0 0 10px var(--accent-primary);
}

/* ===================================
   CARD HOVER ENHANCEMENTS
   =================================== */

.hover-lift {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.4s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(88, 166, 255, 0.15) inset;
    border-color: rgba(88, 166, 255, 0.3);
}

/* Gradient border animation on hover */
.gradient-border {
    position: relative;
    background: var(--bg-secondary);
}

.gradient-border::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, 
        var(--accent-primary) 0%, 
        transparent 50%, 
        var(--accent-primary) 100%);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gradient-border:hover::before {
    opacity: 0.5;
}

/* ===================================
   TEXT ANIMATIONS
   =================================== */

/* Typewriter-style text reveal */
@keyframes typeReveal {
    from { 
        clip-path: inset(0 100% 0 0);
    }
    to { 
        clip-path: inset(0 0 0 0);
    }
}

.type-reveal {
    animation: typeReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Gradient text animation */
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.animated-gradient-text {
    background: linear-gradient(135deg, 
        var(--text-primary) 0%, 
        var(--accent-primary) 25%, 
        var(--text-primary) 50%,
        var(--accent-primary) 75%,
        var(--text-primary) 100%);
    background-size: 400% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 8s ease infinite;
}

/* ===================================
   COUNTER ANIMATIONS
   =================================== */

.counter {
    display: inline-block;
    font-variant-numeric: tabular-nums;
}

/* Number change effect */
@keyframes numberPop {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.number-update {
    animation: numberPop 0.3s ease;
}

/* ===================================
   PROBLEM CARD BORDER ANIMATION
   =================================== */

@keyframes borderGlow {
    0%, 100% { 
        border-left-color: var(--accent-critical);
        box-shadow: -4px 0 20px rgba(248, 81, 73, 0.2);
    }
    50% { 
        border-left-color: rgba(248, 81, 73, 0.7);
        box-shadow: -4px 0 30px rgba(248, 81, 73, 0.3);
    }
}

.problem-card-animated {
    animation: borderGlow 3s ease-in-out infinite;
}

/* ===================================
   SUCCESS INDICATOR ANIMATIONS
   =================================== */

@keyframes successPulse {
    0%, 100% { 
        border-left-color: var(--accent-success);
        box-shadow: -4px 0 20px rgba(63, 185, 80, 0.2);
    }
    50% { 
        border-left-color: rgba(63, 185, 80, 0.7);
        box-shadow: -4px 0 30px rgba(63, 185, 80, 0.3);
    }
}

.success-card-animated {
    animation: successPulse 3s ease-in-out infinite;
}

/* ===================================
   LOADING/PROCESSING ANIMATIONS
   =================================== */

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-primary);
    border-top-color: var(--accent-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes processingDots {
    0%, 20% { content: '.'; }
    40% { content: '..'; }
    60%, 100% { content: '...'; }
}

/* ===================================
   ICON ANIMATIONS
   =================================== */

@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.icon-bounce:hover {
    animation: iconBounce 0.5s ease;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.icon-pulse {
    animation: iconPulse 2s ease-in-out infinite;
}

/* ===================================
   REDUCED MOTION SUPPORT
   =================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-scale {
        opacity: 1;
        transform: none;
    }
    
    .stagger-children > * {
        opacity: 1;
        transform: none;
    }
}

/* ===================================
   NAVIGATION
   =================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(11, 14, 20, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 3rem;
    width: auto;
    display: block;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* Navigation Menu Links */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.625rem 1rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nav-menu li a:hover {
    color: var(--text-primary);
    background: rgba(88, 166, 255, 0.08);
}

.nav-menu li a.active {
    color: var(--accent-primary);
    background: rgba(88, 166, 255, 0.1);
}

/* Dropdown Navigation */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 0.625rem;
    transition: transform 0.2s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: rgba(21, 25, 34, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-primary);
    border-radius: 8px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    z-index: 1001;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 0;
}

.dropdown-menu li a:hover {
    color: var(--text-primary);
    background: rgba(88, 166, 255, 0.12);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-signin {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s ease;
}

.nav-signin:hover {
    color: var(--text-primary);
}

.nav-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.nav-cta {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    padding: 0.625rem 1.25rem;
    border: 1px solid var(--border-primary);
    border-radius: 6px;
    transition: all 0.3s ease;
    background: rgba(88, 166, 255, 0.05);
    white-space: nowrap;
}

.nav-cta:hover {
    background: rgba(88, 166, 255, 0.15);
    border-color: var(--accent-primary);
    transform: translateY(-1px);
}

.nav-scarcity {
    font-size: 0.625rem;
    color: var(--accent-warning);
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: 1px solid var(--border-primary);
    border-radius: 6px;
    cursor: pointer;
    padding: 0;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 1.25rem;
    height: 2px;
    background: var(--text-secondary);
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hide mobile-only items on desktop */
.nav-menu .mobile-only {
    display: none;
}

/* Add space for fixed nav */
body {
    padding-top: 4.5rem;
}

/* ===================================
   TYPOGRAPHY & LAYOUT
   =================================== */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 4rem;
}

.section-subtitle em {
    font-style: italic;
    color: var(--text-tertiary);
}

.section-subtitle strong {
    font-weight: 600;
    color: var(--accent-primary);
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 0 6rem;
    position: relative;
    overflow: hidden;
}

/* Ambient floating orbs in hero */
.hero::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(88, 166, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatSlow 12s ease-in-out infinite;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 30%;
    right: 5%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatSlow 15s ease-in-out infinite reverse;
    pointer-events: none;
}

.hero-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-headline {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
    color: var(--text-primary);
    opacity: 0;
    animation: heroFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subheadline {
    font-size: 1.375rem;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 900px;
    margin: 0 auto 4rem;
    font-weight: 400;
    opacity: 0;
    animation: heroFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

/* Hero CTA animations */
.hero-cta-wrapper {
    opacity: 0;
    animation: heroFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

/* Animated gradient text for CTAs */
.gradient-text-animate {
    background: linear-gradient(135deg, var(--text-primary), var(--accent-primary), var(--accent-secondary, #8B5CF6), var(--text-primary));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientTextShift 8s ease infinite;
}

@keyframes gradientTextShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Dashboard Preview */
.dashboard-preview {
    max-width: 1000px;
    margin: 0 auto 3rem;
    position: relative;
}

.dashboard-preview::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 140%;
    background: radial-gradient(ellipse at center, rgba(26, 29, 35, 0.8) 0%, rgba(11, 14, 20, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

.dashboard-card {
    background: linear-gradient(135deg, rgba(30, 36, 51, 0.95) 0%, rgba(21, 25, 34, 0.98) 100%);
    border: 1px solid transparent;
    border-image: linear-gradient(135deg, rgba(88, 166, 255, 0.2) 0%, rgba(88, 166, 255, 0.05) 100%) 1;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6),
                0 0 0 1px rgba(88, 166, 255, 0.1) inset;
    position: relative;
    backdrop-filter: blur(10px);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-subtle);
}

.dashboard-label {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--text-tertiary);
    text-transform: uppercase;
}

.dashboard-status {
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.375rem 0.875rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dashboard-status.at-risk {
    background: rgba(248, 81, 73, 0.1);
    color: var(--accent-critical);
    border: 1px solid rgba(248, 81, 73, 0.2);
    box-shadow: 0 0 20px rgba(248, 81, 73, 0.15);
}

.dashboard-metrics {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.metric-primary {
    text-align: center;
}

.metric-label {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.metric-value {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    transition: all 0.3s ease;
}

.metric-value.financial {
    color: var(--accent-warning);
}

.metric-value.warning {
    color: var(--accent-critical);
}

.metric-sublabel {
    font-size: 0.8125rem;
    color: var(--text-tertiary);
}

.metric-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.metric-secondary {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-subtle);
    text-align: center;
}

.metric-secondary .metric-value {
    font-size: 2rem;
    transition: all 0.3s ease;
}

.dashboard-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-info {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.calculation-time {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    background: rgba(63, 185, 80, 0.1);
    border: 1px solid rgba(63, 185, 80, 0.3);
    border-radius: 4px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--accent-success);
    animation: fadeInSlide 0.4s ease;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.simulate-btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    background: rgba(88, 166, 255, 0.1);
    border: 1px solid var(--accent-primary);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.simulate-btn:hover:not(:disabled) {
    background: rgba(88, 166, 255, 0.2);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(88, 166, 255, 0.3);
}

.simulate-btn:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.simulate-btn:active:not(:disabled) {
    transform: translateY(0);
}

/* Simulation Dialog */
.simulation-dialog {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.simulation-dialog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.simulation-dialog-content {
    position: relative;
    background: var(--bg-surface);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.simulation-dialog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid var(--border-subtle);
}

.simulation-dialog-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.close-dialog {
    background: none;
    border: none;
    color: var(--text-tertiary);
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.close-dialog:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.simulation-dialog-description {
    padding: 1rem 2rem;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.simulation-options {
    padding: 1rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.simulation-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.simulation-option:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-primary);
}

.simulation-option[data-selected="true"] {
    background: rgba(88, 166, 255, 0.1);
    border-color: var(--accent-primary);
}

.simulation-option[data-selected="true"] .option-icon {
    filter: grayscale(0);
    transform: scale(1.1);
}

.option-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    filter: grayscale(1);
    opacity: 0.6;
    transition: all 0.2s ease;
}

.simulation-option:hover .option-icon {
    filter: grayscale(0);
    opacity: 1;
}

.option-content {
    flex: 1;
}

.option-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.option-description {
    font-size: 0.8125rem;
    color: var(--text-tertiary);
}

.option-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-primary);
    padding: 0.25rem 0.75rem;
    background: rgba(88, 166, 255, 0.1);
    border-radius: 4px;
}

.simulation-option:not([data-selected="true"]) .option-value {
    color: var(--text-tertiary);
    background: transparent;
}

.simulation-dialog-footer {
    padding: 1.5rem 2rem 2rem;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    border-top: 1px solid var(--border-subtle);
}

.cancel-simulation {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--bg-secondary);
    border: 1px solid var(--border-primary);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cancel-simulation:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.run-simulation {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--bg-primary);
    background: var(--accent-primary);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.run-simulation:hover {
    background: #6CB8FF;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(88, 166, 255, 0.3);
}

.hero-cta-wrapper {
    margin-top: 3rem;
}

.cta-button {
    display: inline-block;
    padding: 1.125rem 2.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--bg-primary);
    background: var(--accent-primary);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(88, 166, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 166, 255, 0.4);
    background: #6CB8FF;
}

.cta-button.secondary {
    background: var(--bg-secondary);
    color: var(--accent-primary);
    border: 2px solid var(--accent-primary);
    box-shadow: none;
}

.cta-button.secondary:hover {
    background: rgba(88, 166, 255, 0.1);
    color: var(--accent-primary);
    border-color: #6CB8FF;
}

.cta-subtext {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    margin-top: 1rem;
}

/* ===================================
   STATUS QUO GAP SECTION
   =================================== */

.status-quo-gap {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

.comparison-card {
    background: linear-gradient(135deg, rgba(30, 36, 51, 0.6) 0%, rgba(21, 25, 34, 0.8) 100%);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.comparison-card:hover {
    border-color: rgba(88, 166, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(88, 166, 255, 0.1) inset;
}

.comparison-label {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 2rem;
}

.comparison-label.noise {
    background: rgba(248, 81, 73, 0.1);
    color: var(--accent-critical);
    border: 1px solid rgba(248, 81, 73, 0.2);
}

.comparison-label.signal {
    background: rgba(63, 185, 80, 0.1);
    color: var(--accent-success);
    border: 1px solid rgba(63, 185, 80, 0.2);
}

.comparison-image {
    margin-bottom: 2rem;
    border-radius: 8px;
    overflow: hidden;
}

/* Jira Mock */
.jira-mock {
    background: #f4f5f7;
    padding: 1.5rem;
    border-radius: 8px;
    min-height: 350px;
    position: relative;
}

.jira-mock::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(0.5px);
    border-radius: 8px;
    pointer-events: none;
}

.jira-header {
    margin-bottom: 1.5rem;
}

.jira-title {
    font-size: 1rem;
    font-weight: 600;
    color: #172b4d;
}

.jira-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.jira-column {
    background: #ebecf0;
    padding: 0.75rem;
    border-radius: 4px;
}

.jira-column-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: #5e6c84;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.jira-card {
    background: white;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    border-radius: 4px;
    font-size: 0.8125rem;
    color: #172b4d;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    opacity: 0.9;
}

/* Risk Dashboard Mock */
.risk-dashboard {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-primary);
    min-height: 350px;
}

.risk-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-subtle);
}

.risk-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.375rem 0.75rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.risk-badge.critical {
    background: rgba(248, 81, 73, 0.15);
    color: var(--accent-critical);
    border: 1px solid rgba(248, 81, 73, 0.3);
    box-shadow: 0 0 16px rgba(248, 81, 73, 0.2);
}

.risk-status {
    font-size: 0.8125rem;
    color: var(--text-tertiary);
}

.risk-metrics-compact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.risk-metric {
    background: var(--bg-tertiary);
    padding: 1rem;
    border-radius: 6px;
    text-align: center;
}

.risk-metric-label {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    display: block;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.risk-metric-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
}

.risk-metric-value.critical {
    color: var(--accent-critical);
}

.risk-metric-value.warning {
    color: var(--accent-warning);
}

.risk-signals {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.risk-signal-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    padding: 0.5rem;
    background: var(--bg-tertiary);
    border-radius: 4px;
}

.risk-icon {
    font-size: 1rem;
}

.comparison-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    text-align: center;
}

.comparison-description em {
    color: var(--text-tertiary);
    font-style: italic;
}

.comparison-description strong {
    color: var(--accent-primary);
    font-weight: 600;
}

/* ===================================
   PRODUCT SHOWCASE SECTION
   =================================== */

.product-showcase {
    padding: 8rem 0;
    background: var(--bg-primary);
}

.pillar {
    margin-bottom: 8rem;
}

.pillar:last-child {
    margin-bottom: 0;
}

.pillar-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.pillar.reverse .pillar-content {
    direction: rtl;
}

.pillar.reverse .pillar-text,
.pillar.reverse .pillar-visual {
    direction: ltr;
}

.pillar-text h3 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.pillar-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.pillar-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pillar-features li {
    font-size: 1rem;
    color: var(--text-secondary);
    padding-left: 2rem;
    position: relative;
}

.pillar-features li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: 600;
}

/* Forecast Card */
.forecast-card {
    background: linear-gradient(135deg, rgba(30, 36, 51, 0.6) 0%, rgba(21, 25, 34, 0.8) 100%);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(88, 166, 255, 0.05) inset;
}

.forecast-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-subtle);
}

.forecast-label {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--text-tertiary);
    text-transform: uppercase;
}

.forecast-trend {
    font-size: 0.875rem;
    color: var(--accent-critical);
    font-weight: 500;
}

.forecast-gauge {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.gauge-container {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--bg-secondary);
    border-radius: 8px;
}

.gauge-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-critical);
    margin-bottom: 0.5rem;
}

.gauge-value.confidence {
    color: var(--accent-warning);
}

.gauge-label {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.forecast-detail {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 8px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-size: 0.875rem;
}

.detail-label {
    color: var(--text-tertiary);
    font-weight: 500;
}

.detail-value {
    color: var(--text-secondary);
    text-align: right;
    max-width: 60%;
}

/* Simulator Card */
.simulator-card {
    background: linear-gradient(135deg, rgba(30, 36, 51, 0.6) 0%, rgba(21, 25, 34, 0.8) 100%);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(88, 166, 255, 0.05) inset;
}

.simulator-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-subtle);
}

.simulator-title {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--text-tertiary);
    text-transform: uppercase;
}

.scenario-comparison {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.comparison-scenarios {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.scenario {
    flex: 1;
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-subtle);
}

.scenario.mitigated {
    border-color: var(--accent-success);
    background: rgba(63, 185, 80, 0.05);
    position: relative;
}

.scenario.mitigated:hover {
    box-shadow: 0 0 20px rgba(63, 185, 80, 0.3);
}

.scenario-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.scenario-metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
}

.scenario-metric:last-child {
    margin-bottom: 0;
}

.metric-name {
    font-size: 0.875rem;
    color: var(--text-tertiary);
}

.metric-val {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.metric-val.warning {
    color: var(--accent-critical);
}

.metric-val.success {
    color: var(--accent-success);
}

.scenario-action {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-subtle);
    font-size: 0.8125rem;
    color: var(--accent-success);
    font-weight: 500;
}

.scenario-arrow {
    font-size: 2rem;
    color: var(--text-tertiary);
}

/* Risk Drivers Card */
.risk-drivers-card {
    background: linear-gradient(135deg, rgba(30, 36, 51, 0.6) 0%, rgba(21, 25, 34, 0.8) 100%);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(88, 166, 255, 0.05) inset;
}

.drivers-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-subtle);
}

.drivers-title {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--text-tertiary);
    text-transform: uppercase;
}

.drivers-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.driver-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--bg-secondary);
    border-radius: 8px;
    border: 1px solid var(--border-subtle);
}

.driver-item.critical {
    border-left: 3px solid var(--accent-critical);
    box-shadow: 0 0 16px rgba(248, 81, 73, 0.15);
}

.driver-item.warning {
    border-left: 3px solid var(--accent-warning);
    box-shadow: 0 0 16px rgba(210, 153, 34, 0.12);
}

.driver-item.normal {
    border-left: 3px solid var(--accent-success);
}

.driver-icon {
    font-size: 1.5rem;
}

.driver-content {
    flex: 1;
}

.driver-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.driver-impact {
    font-size: 0.8125rem;
    color: var(--text-tertiary);
}

.driver-score {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.375rem 0.75rem;
    border-radius: 4px;
    background: var(--bg-tertiary);
    color: var(--text-secondary);
}

/* ===================================
   PILOT OFFER SECTION
   =================================== */

.pilot-offer {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.pilot-scope {
    text-align: center;
    font-size: 1rem;
    color: var(--text-secondary);
    margin: -2rem auto 3rem;
    max-width: 800px;
    font-style: italic;
}

.offer-card {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(30, 36, 51, 0.6) 0%, rgba(21, 25, 34, 0.8) 100%);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(88, 166, 255, 0.08) inset;
}

.offer-content {
    padding: 2rem 3rem;
}

.offer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.offer-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.icon {
    font-size: 1.25rem;
    font-weight: 600;
    flex-shrink: 0;
}

.icon.check {
    color: var(--accent-success);
}

.icon.cross {
    color: var(--text-tertiary);
}

.offer-list .text {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.offer-pricing {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.price-display {
    text-align: center;
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: 8px;
    border: 1px solid var(--border-primary);
}

.price-value {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
}

.price-period {
    font-size: 1rem;
    color: var(--text-tertiary);
    display: block;
    margin-top: 0.5rem;
}

.guarantee-box {
    background: rgba(63, 185, 80, 0.05);
    border: 1px solid rgba(63, 185, 80, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: 0 0 20px rgba(63, 185, 80, 0.1);
}

.guarantee-icon {
    font-size: 1.5rem;
}

.guarantee-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.guarantee-text strong {
    color: var(--accent-success);
}

/* ===================================
   WHY TOOLS FAIL SECTION
   =================================== */

.why-tools-fail {
    padding: 8rem 0;
    background: var(--bg-primary);
}

.why-urgency {
    text-align: center;
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--accent-warning);
    font-weight: 500;
    max-width: 800px;
    margin: -1rem auto 3rem;
    padding: 1rem 2rem;
    background: rgba(210, 153, 34, 0.08);
    border: 1px solid rgba(210, 153, 34, 0.2);
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(210, 153, 34, 0.1);
}

.why-content {
    max-width: 900px;
    margin: 0 auto;
}

.why-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.why-item:hover {
    border-color: var(--border-primary);
    transform: translateX(8px);
}

.why-icon {
    font-size: 1.5rem;
    color: var(--accent-warning);
    flex-shrink: 0;
}

.why-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.why-emphasis {
    text-align: center;
    padding: 3rem;
    background: var(--bg-surface);
    border: 2px solid var(--accent-primary);
    border-radius: 12px;
}

.why-emphasis p {
    font-size: 1.125rem;
    color: var(--text-tertiary);
    margin-bottom: 0.75rem;
}

.why-emphasis h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-primary);
}

/* ===================================
   SOCIAL PROOF SECTION
   =================================== */

.social-proof {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.founder-card {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(30, 36, 51, 0.6) 0%, rgba(21, 25, 34, 0.8) 100%);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(88, 166, 255, 0.05) inset;
}

.founder-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    background: rgba(88, 166, 255, 0.1);
    color: var(--accent-primary);
    border: 1px solid rgba(88, 166, 255, 0.3);
    border-radius: 6px;
    margin-bottom: 2rem;
}

.founder-statement {
    font-size: 1.875rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.founder-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.founder-location {
    font-size: 1.125rem;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* ===================================
   WHO THIS IS FOR SECTION
   =================================== */

.who-this-is-for {
    padding: 8rem 0;
    background: var(--bg-primary);
}

.two-column-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.for-card {
    background: linear-gradient(135deg, rgba(30, 36, 51, 0.6) 0%, rgba(21, 25, 34, 0.8) 100%);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(88, 166, 255, 0.05) inset;
}

.for-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.for-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.for-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.for-list .text {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* ===================================
   FINAL CTA SECTION
   =================================== */

.final-cta {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.form-qualifier {
    text-align: center;
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.assessment-form {
    background: linear-gradient(135deg, rgba(30, 36, 51, 0.6) 0%, rgba(21, 25, 34, 0.8) 100%);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(88, 166, 255, 0.08) inset;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-primary);
    border-radius: 6px;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-tertiary);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: var(--bg-tertiary);
}

.form-group textarea {
    resize: vertical;
    font-family: var(--font-sans);
}

.radio-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.75rem;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.75rem 1.25rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-primary);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.radio-option:hover {
    background: var(--bg-tertiary);
    border-color: var(--accent-primary);
}

.radio-option input[type="radio"] {
    margin: 0;
    cursor: pointer;
    width: 1rem;
    height: 1rem;
    accent-color: var(--accent-primary);
}

.radio-label {
    font-size: 0.9375rem;
    color: var(--text-primary);
    cursor: pointer;
}

.radio-option:has(input[type="radio"]:checked) {
    background: rgba(88, 166, 255, 0.1);
    border-color: var(--accent-primary);
}

.assessment-form .cta-button {
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.form-subtext {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    text-align: center;
    margin-top: 1rem;
}

/* Next Step Section */
.next-step-section {
    margin-top: 3rem;
}

.next-step-card {
    background: rgba(63, 185, 80, 0.05);
    border: 1px solid rgba(63, 185, 80, 0.3);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
}

.next-step-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-success);
    margin-bottom: 2rem;
}

.next-step-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 1rem;
}

.calendly-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--bg-primary);
    background: var(--accent-primary);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.calendly-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 166, 255, 0.4);
}

/* Option Checkboxes */
.option-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    text-align: left;
}

.option-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    cursor: pointer;
    padding: 1.25rem;
    border: 1px solid var(--border-primary);
    border-radius: 8px;
    transition: all 0.3s ease;
    background: var(--bg-secondary);
}

.option-checkbox:hover {
    border-color: var(--accent-success);
    background: rgba(63, 185, 80, 0.05);
}

.option-checkbox input[type="checkbox"] {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.125rem;
    cursor: pointer;
    accent-color: var(--accent-success);
    flex-shrink: 0;
}

.checkbox-label {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--text-primary);
    flex: 1;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-subtle);
}

.footer-content {
    text-align: center;
    margin-bottom: 1.5rem;
}

.footer-tagline {
    font-size: 0.875rem;
    color: var(--text-tertiary);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-subtle);
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--text-tertiary);
}

/* ===================================
   AUDIENCE BADGE
   =================================== */

.audience-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    background: rgba(88, 166, 255, 0.1);
    color: var(--accent-primary);
    border: 1px solid rgba(88, 166, 255, 0.3);
    border-radius: 6px;
    margin-bottom: 2rem;
}

/* ===================================
   COST OF DRIFT TABLE (Finance Page)
   =================================== */

.cost-drift {
    padding: 8rem 0;
    background: var(--bg-primary);
}

.drift-table-wrapper {
    max-width: 1100px;
    margin: 0 auto 3rem;
    overflow-x: auto;
}

.drift-table {
    width: 100%;
    border-collapse: collapse;
    background: linear-gradient(135deg, rgba(30, 36, 51, 0.6) 0%, rgba(21, 25, 34, 0.8) 100%);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    overflow: hidden;
}

.drift-table thead {
    background: var(--bg-secondary);
}

.drift-table th {
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--border-subtle);
}

.drift-table td {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    color: var(--text-secondary);
}

.drift-table tbody tr {
    border-bottom: 1px solid var(--border-subtle);
    transition: all 0.2s ease;
}

.drift-table tbody tr:last-child {
    border-bottom: none;
}

.drift-table tbody tr:hover {
    background: rgba(88, 166, 255, 0.05);
}

.drift-table tbody tr.high-risk {
    background: rgba(248, 81, 73, 0.08);
}

.drift-table tbody tr.high-risk:hover {
    background: rgba(248, 81, 73, 0.12);
}

.drift-table tbody tr.critical-risk {
    background: rgba(248, 81, 73, 0.12);
}

.drift-table tbody tr.critical-risk:hover {
    background: rgba(248, 81, 73, 0.15);
}

.drift-table td strong {
    color: var(--text-primary);
    font-weight: 600;
}

.drift-insight {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(63, 185, 80, 0.05);
    border: 1px solid rgba(63, 185, 80, 0.2);
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(63, 185, 80, 0.1);
}

.insight-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.insight-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-success);
    margin-bottom: 0.5rem;
}

.insight-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ===================================
   VALUE PROPOSITION GRID
   =================================== */

.value-prop {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: linear-gradient(135deg, rgba(30, 36, 51, 0.6) 0%, rgba(21, 25, 34, 0.8) 100%);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    border-color: rgba(88, 166, 255, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.value-icon-svg {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1.5rem;
    color: var(--accent-primary);
    opacity: 0.8;
}

.value-icon-svg svg {
    width: 100%;
    height: 100%;
}

.value-card h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ===================================
   ANTI-BULLSHIT DASHBOARD (CEO Page)
   =================================== */

.anti-bullshit {
    padding: 8rem 0;
    background: var(--bg-primary);
}

.traditional-content,
.motionode-content {
    padding: 2rem;
    min-height: 300px;
}

.status-update,
.data-analysis {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-subtle);
}

.status-header,
.analysis-header {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-text {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.status-note,
.signal-note {
    font-size: 0.8125rem;
    color: var(--text-tertiary);
    font-style: italic;
    margin-top: 1rem;
}

.signal-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    margin-bottom: 0.75rem;
    background: var(--bg-tertiary);
    border-radius: 6px;
    border-left: 3px solid var(--text-tertiary);
}

.signal-item.warning {
    border-left-color: var(--accent-warning);
    background: rgba(210, 153, 34, 0.05);
}

.signal-item.critical {
    border-left-color: var(--accent-critical);
    background: rgba(248, 81, 73, 0.05);
}

.signal-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* ===================================
   BOARD REPORTING (CEO Page)
   =================================== */

.board-reporting {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.report-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: linear-gradient(135deg, rgba(30, 36, 51, 0.6) 0%, rgba(21, 25, 34, 0.8) 100%);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(88, 166, 255, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-icon-svg {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1.5rem;
    color: var(--accent-primary);
    opacity: 0.8;
}

.feature-icon-svg svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ===================================
   EARLY CTA SECTION
   =================================== */

.early-cta {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.early-cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.early-cta-headline {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.early-cta-subtext {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* ===================================
   WHAT MOTIONODE IS SECTION
   =================================== */

.what-motionode-is {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.clarity-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.clarity-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.clarity-text:last-child {
    margin-bottom: 0;
}

/* ===================================
   WHY ONE PROJECT SECTION
   =================================== */

.why-one-project {
    padding: 8rem 0;
    background: var(--bg-primary);
}

.why-one-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.why-one-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.why-one-text:last-child {
    margin-bottom: 0;
}

/* ===================================
   WHAT HAPPENS AFTER SECTION
   =================================== */

.what-happens-after {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.after-pilot-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.after-pilot-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.after-pilot-quote {
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--accent-primary);
    font-style: italic;
    margin: 2rem 0;
    font-weight: 500;
}

.after-pilot-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.after-pilot-list li {
    font-size: 1.125rem;
    color: var(--text-secondary);
    padding-left: 2rem;
    position: relative;
}

.after-pilot-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: 600;
    font-size: 1.5rem;
}

.after-pilot-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.step-number {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    color: var(--accent-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h3 {
    font-size: 1.5rem;
    margin: 0 0 0.75rem 0;
    color: var(--text-primary);
}

.step-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.after-pilot-closing {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(88, 166, 255, 0.05);
    border: 1px solid rgba(88, 166, 255, 0.2);
    border-radius: 8px;
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--accent-primary);
    font-weight: 500;
    text-align: center;
}

/* ===================================
   FINAL CLOSE SECTION
   =================================== */

.final-close-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.final-close-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.final-close-text:last-child {
    margin-bottom: 0;
}

.founder-byline {
    font-size: 0.9375rem;
    color: var(--text-tertiary);
    font-style: italic;
    margin: 2rem auto 2rem;
    max-width: 700px;
    text-align: center;
}

/* ===================================
   PILOT INTRO SECTION
   =================================== */

.pilot-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.pilot-intro-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.pilot-intro-text:last-child {
    margin-bottom: 0;
}

.pilot-intro-single {
    max-width: 800px;
    margin: -1rem auto 3rem;
    text-align: center;
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.offer-header {
    text-align: center;
    padding: 2rem 2rem 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
}

.offer-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
}

.offer-price-anchor {
    font-size: 0.9375rem;
    color: var(--text-tertiary);
    font-style: italic;
    margin: 0;
}

.offer-cta-section {
    text-align: center;
    padding: 2rem 2rem 2rem;
    border-top: 1px solid var(--border-subtle);
}

.offer-cta-section .cta-button {
    margin-bottom: 1rem;
}

.offer-cta-section .cta-subtext {
    margin-bottom: 0;
}

/* ===================================
   RESOURCE CONCENTRATION (VP Page)
   =================================== */

.resource-concentration {
    padding: 8rem 0;
    background: var(--bg-primary);
}

.concentration-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.concentration-card {
    background: linear-gradient(135deg, rgba(30, 36, 51, 0.6) 0%, rgba(21, 25, 34, 0.8) 100%);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    overflow: hidden;
}

.concentration-card.critical {
    border-color: rgba(248, 81, 73, 0.3);
    box-shadow: 0 0 20px rgba(248, 81, 73, 0.15);
}

.concentration-card.warning {
    border-color: rgba(210, 153, 34, 0.3);
    box-shadow: 0 0 20px rgba(210, 153, 34, 0.12);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-subtle);
}

.card-icon {
    font-size: 1.5rem;
}

.card-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-tertiary);
}

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-subtle);
}

.stat-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    font-weight: 500;
}

.stat-value {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    text-align: right;
    max-width: 60%;
}

.stat-value.critical {
    color: var(--accent-critical);
    font-weight: 600;
}

.stat-value.warning {
    color: var(--accent-warning);
    font-weight: 600;
}

.stat-value.success {
    color: var(--accent-success);
    font-weight: 600;
}

/* ===================================
   HEADCOUNT SIMULATOR (VP Page)
   =================================== */

.headcount-simulator-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.simulator-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.simulator-feature {
    background: linear-gradient(135deg, rgba(30, 36, 51, 0.6) 0%, rgba(21, 25, 34, 0.8) 100%);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
}

.feature-number {
    position: absolute;
    top: -1rem;
    left: 2rem;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--accent-primary);
    color: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 700;
}

.simulator-feature h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.simulator-feature p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Simulator Card Hero Variant */
.simulator-card-hero {
    background: linear-gradient(135deg, rgba(30, 36, 51, 0.6) 0%, rgba(21, 25, 34, 0.8) 100%);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.scenario-roi {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-subtle);
    font-size: 0.875rem;
    color: var(--accent-success);
}

/* ===================================
   FIXED-FEE INSURANCE (Agency Page)
   =================================== */

.fixed-fee-insurance {
    padding: 8rem 0;
    background: var(--bg-primary);
}

.insurance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.insurance-card {
    background: linear-gradient(135deg, rgba(30, 36, 51, 0.6) 0%, rgba(21, 25, 34, 0.8) 100%);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.insurance-card:hover {
    transform: translateY(-4px);
    border-color: rgba(88, 166, 255, 0.3);
}

.insurance-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.insurance-icon-svg {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1.5rem;
    color: var(--accent-primary);
    opacity: 0.8;
}

.insurance-icon-svg svg {
    width: 100%;
    height: 100%;
}

.insurance-card h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.insurance-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.insurance-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-subtle);
}

.insurance-stat .stat-label {
    font-size: 0.875rem;
    color: var(--text-tertiary);
}

.insurance-stat .stat-value {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--accent-primary);
}

/* ===================================
   AGENCY RISKS (Agency Page)
   =================================== */

.agency-risks {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.risk-breakdown {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.risk-item {
    display: flex;
    gap: 2rem;
    background: linear-gradient(135deg, rgba(30, 36, 51, 0.6) 0%, rgba(21, 25, 34, 0.8) 100%);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    padding: 2.5rem;
}

.risk-number {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background: var(--accent-primary);
    color: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.risk-content h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.risk-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.risk-content p:last-child {
    margin-bottom: 0;
}

.risk-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

.risk-content em {
    color: var(--accent-warning);
    font-style: normal;
    font-weight: 500;
}

/* Risk Drivers Card Hero Variant */
.risk-drivers-card-hero {
    background: linear-gradient(135deg, rgba(30, 36, 51, 0.6) 0%, rgba(21, 25, 34, 0.8) 100%);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.drivers-status {
    font-size: 0.875rem;
    color: var(--accent-warning);
    font-weight: 500;
}

.driver-margin {
    font-size: 0.8125rem;
    color: var(--accent-warning);
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Dashboard Status Variants */
.dashboard-status.predictable {
    background: rgba(63, 185, 80, 0.1);
    color: var(--accent-success);
    border: 1px solid rgba(63, 185, 80, 0.2);
}

.metric-value.success {
    color: var(--accent-success);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 1024px) {
    .hero-headline {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .comparison-grid,
    .two-column-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pilot-intro-text,
    .pilot-intro-single,
    .why-one-text,
    .after-pilot-text,
    .final-close-text {
        font-size: 1.125rem;
    }
    
    .after-pilot-quote {
        font-size: 1.25rem;
    }
    
    .early-cta-headline {
        font-size: 2rem;
    }
    
    .pillar-content {
        grid-template-columns: 1fr;
    }
    
    .metric-row {
        grid-template-columns: 1fr;
    }
    
    .value-grid,
    .report-features,
    .concentration-cards,
    .simulator-features,
    .insurance-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-row {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .stat-value {
        text-align: left;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    html {
        height: 100%;
        overflow: hidden;
        -webkit-overflow-scrolling: touch;
    }
    
    body {
        overflow-x: hidden;
        overflow-y: scroll;
        padding-top: 4rem;
        height: 100%;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Ensure content can grow beyond viewport */
    body > *:not(.nav):not(.grid-background) {
        position: relative;
    }
    
    .container {
        padding: 0 1.5rem;
        max-width: 100%;
    }
    
    .nav-container {
        padding: 0.75rem 1.5rem;
        flex-wrap: nowrap;
        gap: 1rem;
        justify-content: space-between;
        align-items: center;
        max-width: 100%;
    }
    
    .logo {
        margin: 0;
    }
    
    .logo-img {
        height: 2.5rem;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(11, 14, 20, 0.98);
        border-bottom: 1px solid var(--border-subtle);
        flex-direction: column;
        padding: 1rem;
        gap: 0.25rem;
    }
    
    .nav-menu.active {
        display: flex;
        align-items: center;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
    }
    
    .nav-menu li a {
        display: block;
        padding: 0.875rem 1rem;
        font-size: 1rem;
        text-align: center;
    }
    
    /* Mobile Dropdown - Hide "Product" label but show menu items */
    .nav-dropdown .dropdown-toggle {
        display: none;
    }
    
    .nav-dropdown {
        position: static;
    }
    
    .dropdown-arrow {
        display: none;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        max-height: none;
        overflow: visible;
        transform: none;
        margin-top: 0;
        padding: 0;
        border: none;
        background: transparent;
        box-shadow: none;
        display: block;
    }
    
    .dropdown-menu li {
        width: 100%;
        text-align: center;
    }
    
    .dropdown-menu li a {
        padding: 0.875rem 1rem;
        font-size: 1rem;
        color: var(--text-secondary);
        display: block;
        text-align: center;
    }
    
    .dropdown-menu li a {
        padding-left: 2rem;
        font-size: 0.9375rem;
    }
    
    /* Show mobile-only items in hamburger menu */
    .nav-menu .mobile-only {
        display: list-item;
    }
    
    .nav-right {
        flex-direction: row;
        align-items: center;
        gap: 0.75rem;
        width: auto;
        margin: 0;
    }
    
    /* Hide standalone Sign In on mobile */
    .nav-signin {
        display: none;
    }
    
    .nav-cta-wrapper {
        display: flex;
        flex-direction: row;
        align-items: center;
    }
    
    .nav-cta {
        padding: 0.625rem 1rem;
        font-size: 0.8125rem;
        white-space: nowrap;
    }
    
    .nav-scarcity {
        font-size: 0.625rem;
    }
    
    .hero {
        padding: 4rem 0 4rem;
    }
    
    .audience-badge {
        display: none;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-subheadline {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .pilot-intro-text,
    .pilot-intro-single,
    .why-one-text,
    .after-pilot-text,
    .final-close-text {
        font-size: 1rem;
    }
    
    .after-pilot-quote {
        font-size: 1.125rem;
    }
    
    .early-cta-headline {
        font-size: 1.75rem;
    }
    
    .early-cta {
        padding: 4rem 0;
    }
    
    .after-pilot-closing {
        font-size: 1rem;
        padding: 1.5rem;
    }
    
    .offer-content {
        padding: 1.5rem;
    }
    
    .offer-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .offer-header h3 {
        font-size: 1.375rem;
    }
    
    .offer-cta-section {
        padding: 1.5rem 1.5rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .dashboard-card,
    .offer-card,
    .forecast-card {
        padding: 1.5rem;
    }
    
    .dashboard-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .dashboard-info {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .simulate-btn {
        width: 100%;
    }
    
    .pillar-text h3 {
        font-size: 1.75rem;
    }
    
    .scenario-comparison {
        flex-direction: column;
    }
    
    .comparison-scenarios {
        flex-direction: column;
    }
    
    .scenario-arrow {
        transform: rotate(90deg);
    }
    
    .jira-columns {
        grid-template-columns: 1fr;
    }
    
    .jira-mock,
    .risk-dashboard {
        min-height: 250px;
        padding: 1rem;
    }
    
    .comparison-card {
        padding: 1.5rem;
    }
    
    .jira-card {
        font-size: 0.75rem;
        padding: 0.5rem;
    }
    
    .risk-metrics-compact {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .after-pilot-item {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        text-align: center;
    }
    
    .step-content h3 {
        font-size: 1.25rem;
    }
    
    .step-content p {
        font-size: 1rem;
    }
    
    .feature-row {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .rescue-images-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .execution-overlay {
        position: relative !important;
        bottom: auto !important;
        right: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-top: 1.5rem !important;
    }
    
    .radio-group {
        flex-direction: column;
    }
    
    .simulation-dialog-content {
        margin: 1rem;
    }
    
    .drift-table-wrapper {
        overflow-x: scroll;
    }
    
    .drift-table {
        font-size: 0.875rem;
    }
    
    .drift-table th,
    .drift-table td {
        padding: 1rem;
    }
    
    .drift-insight {
        flex-direction: column;
        padding: 1.5rem;
    }
    
    .risk-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .risk-number {
        align-self: flex-start;
    }
    
    .simulation-dialog-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .simulation-dialog-header h3 {
        font-size: 1.25rem;
    }
    
    .simulation-dialog-description {
        padding: 1rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .simulation-options {
        padding: 1rem 1.5rem;
    }
    
    .simulation-option {
        flex-wrap: wrap;
    }
    
    .option-value {
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
    }
    
    .simulation-dialog-footer {
        padding: 1.5rem;
        flex-direction: column;
    }
    
    .cancel-simulation,
    .run-simulation {
        width: 100%;
    }
    
    /* Operational role cards - stack on mobile */
    .operational-role-card {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
    }
    
    /* Calibration grid - stack on mobile */
    .calibration-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    /* Hero CTA buttons - stack on mobile */
    .hero-cta-wrapper {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-cta-wrapper .cta-button {
        margin-left: 0 !important;
        width: 100%;
        text-align: center;
    }
    
    /* Trust grid - responsive */
    .trust-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    body {
        overflow-x: hidden;
    }
    
    .hero {
        padding: 3rem 0 3rem;
    }
    
    .audience-badge {
        display: none;
    }
    
    .hero-headline {
        font-size: 2rem;
    }
    
    .metric-value {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .price-value {
        font-size: 2.75rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .nav-container {
        justify-content: space-between;
        padding: 1rem;
        max-width: 100%;
    }
    
    .logo {
        margin: 0 auto;
    }
    
    .nav-right {
        width: 100%;
        align-items: center;
        margin: 0 auto;
    }
    
    .nav-cta-wrapper {
        align-items: center;
        width: 100%;
    }
    
    .logo-img {
        height: 3.5rem;
    }
    
    /* Operational role cards - stack on mobile */
    .operational-role-card {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
    }
    
    /* Calibration grid - stack on mobile */
    .calibration-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    /* Hero CTA buttons - stack on mobile */
    .hero-cta-wrapper {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-cta-wrapper .cta-button {
        margin-left: 0 !important;
        width: 100%;
        text-align: center;
    }
    
    /* Trust grid - responsive */
    .trust-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ===================================
   ENHANCED IMAGE PLACEHOLDER
   =================================== */

.image-placeholder {
    position: relative;
    background: linear-gradient(135deg, 
        var(--bg-secondary) 0%, 
        var(--bg-tertiary) 100%);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    overflow: hidden;
}

/* Remove padding and background when video is present */
.image-placeholder:has(video) {
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
}

/* Animated scan line effect - DISABLED */
.image-placeholder::before {
    display: none;
}

@keyframes scanLine {
    0% { 
        top: 0;
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% { 
        top: 100%;
        opacity: 0;
    }
}

/* Corner accents */
.image-placeholder::after {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    width: 24px;
    height: 24px;
    border-left: 2px solid var(--accent-primary);
    border-top: 2px solid var(--accent-primary);
    opacity: 0.4;
    animation: cornerPulse 3s ease-in-out infinite;
}

@keyframes cornerPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Subtle grid pattern inside placeholder */
.image-placeholder {
    background-image: 
        linear-gradient(var(--bg-secondary) 0%, var(--bg-tertiary) 100%),
        linear-gradient(rgba(88, 166, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(88, 166, 255, 0.03) 1px, transparent 1px);
    background-size: 100% 100%, 20px 20px, 20px 20px;
}

/* ===================================
   FEATURE SECTION ENHANCEMENTS
   =================================== */

.two-column-grid {
    position: relative;
}

/* Section divider animation */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--border-primary) 20%, 
        var(--accent-primary) 50%, 
        var(--border-primary) 80%, 
        transparent 100%);
    margin: 0 auto;
    max-width: 800px;
    position: relative;
    overflow: hidden;
}

.section-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(88, 166, 255, 0.5), 
        transparent);
    animation: shimmerLine 3s ease-in-out infinite;
}

@keyframes shimmerLine {
    0% { left: -100%; }
    100% { left: 200%; }
}

/* ===================================
   FOUNDER SECTION ENHANCEMENT
   =================================== */

.guide-grid img {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.guide-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(88, 166, 255, 0.3);
}

/* ===================================
   CTA BUTTON ENHANCEMENTS
   =================================== */

.cta-button {
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

/* ===================================
   PROBLEM CARDS ANIMATION
   =================================== */

[style*="border-left: 4px solid var(--accent-critical)"] {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

[style*="border-left: 4px solid var(--accent-critical)"]:hover {
    transform: translateX(8px);
    box-shadow: -4px 0 20px rgba(248, 81, 73, 0.2);
}

/* ===================================
   NAVIGATION ENHANCEMENTS
   =================================== */

.nav {
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
    background: rgba(11, 14, 20, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* ===================================
   LIST ITEM ANIMATIONS
   =================================== */

li[style*="border-bottom"] {
    position: relative;
    transition: transform 0.3s ease, background 0.3s ease;
}

li[style*="border-bottom"]:hover {
    transform: translateX(8px);
    background: rgba(88, 166, 255, 0.05);
}

/* ===================================
   TROJAN HORSE SECTION
   =================================== */

[style*="linear-gradient(135deg, rgba(59, 130, 246, 0.15)"] {
    position: relative;
    overflow: hidden;
}

[style*="linear-gradient(135deg, rgba(59, 130, 246, 0.15)"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.03), 
        transparent);
    animation: sectionShimmer 8s ease-in-out infinite;
}

@keyframes sectionShimmer {
    0% { left: -100%; }
    50% { left: 200%; }
    100% { left: 200%; }
}
