/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Prevent horizontal overflow on all elements */
*, *::before, *::after {
    max-width: 100%;
}

html {
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* ===== ICON OPTIMIZATION FOR CRISP RENDERING ===== */
i, .fas, .far, .fab, .fal, .fad {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: "liga";
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    vertical-align: baseline;
}

/* Specific icon size optimizations */
.pillar-icon i,
.problem-icon i {
    font-size: 2rem;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.launch-badge i,
.submit-button i,
.cta-button i {
    font-size: 1rem;
    line-height: 1;
}

.fun-fact-icon i {
    font-size: 1.25rem;
    line-height: 1;
}

.checkmark i {
    font-size: 1.5rem;
    line-height: 1;
}

.perk i {
    font-size: 1.1rem;
    line-height: 1;
    width: 1.2rem;
    text-align: center;
}

/* ===== LOGO IMAGE OPTIMIZATION ===== */
.system-logo,
.integration-logos img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: high-quality;
    image-rendering: optimizeQuality;
    image-rendering: smooth;
    object-fit: contain;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0) scale(1.0001);
    -webkit-font-smoothing: subpixel-antialiased;
    -moz-osx-font-smoothing: auto;
    filter: contrast(1.02) brightness(1.01);
}

.system-logo {
    width: 64px;
    height: 64px;
    padding: 6px;
    background: white;
    border-radius: 10px;
    border: 2px solid #e5e7eb;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: optimizeQuality;
    -ms-interpolation-mode: bicubic;
}

/* SVG logo specific optimizations */
.integration-logos img[src$=".svg"],
.system-logo[src$=".svg"] {
    image-rendering: auto;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
}

/* High-quality PNG logos with natural brand colors - no filters needed */

/* Force maximum quality on high DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .system-logo,
    .integration-logos img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: smooth;
        image-rendering: optimizeQuality;
        -webkit-transform: translateZ(0) scale(1);
        transform: translateZ(0) scale(1);
        filter: contrast(1.03) brightness(1.02) saturate(1.05);
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, .hero-headline {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.3; /* Adjust line height for better spacing between lines */
}

.section-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: -0.01em;
}

.highlight {
    background: linear-gradient(135deg, #32B8C6 0%, #21808D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.alethi-gradient {
    background: linear-gradient(135deg, #32B8C6 0%, #21808D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* ===== LAYOUT & CONTAINERS ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

/* Section spacing hierarchy */
section {
    padding: 5rem 0;
}

.hero {
    padding: 8rem 0 2rem 0;
}

.problem {
    padding: 4rem 0 6rem 0;
}

.value-prop {
    padding: 6rem 0 2rem 0;
}

.integration-section {
    padding: 2rem 0 4rem 0;
}

.early-access {
    padding: 6rem 0;
}

.founder-note {
    padding: 5rem 0;
}

/* ===== LOGO & BRANDING ===== */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: #111827;
}

.logo-icon {
    flex-shrink: 0;
}

.name-origin {
    margin-top: 0.5rem;
    margin-left: 2.75rem;
}

.origin-text {
    font-size: 0.875rem;
    color: #6b7280;
    font-style: italic;
}

/* ===== BUTTONS ===== */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: linear-gradient(135deg, #32B8C6 0%, #21808D 100%);
    color: white;
    border: none;
}

.cta-button.secondary {
    background: white;
    color: #21808D;
    border: 2px solid #21808D;
}

.cta-button.secondary:hover {
    background: #21808D;
    color: white;
    transform: translateY(-2px);
}

.submit-button {
    background: linear-gradient(135deg, #32B8C6 0%, #21808D 100%);
    color: white;
    border: none;
    display: inline-flex;
    margin: 0 auto;
    padding: 1.5rem 3rem;
    border-radius: 12px;
    font-size: 1.25rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(33, 128, 141, 0.2);
    font-family: 'Inter', sans-serif;
    align-items: center;
    gap: 0.75rem;
}

.submit-button:hover {
    background: linear-gradient(135deg, #1e6b75 0%, #2a9ba8 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(33, 128, 141, 0.4);
}

.submit-button:active {
    transform: translateY(0);
}

.submit-button i {
    font-size: 1rem;
}

.cta-section form {
    text-align: center;
}

/* Enhanced form styling */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-grid input,
.form-grid select {
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    font-family: 'Inter', sans-serif;
}

.form-grid input:focus,
.form-grid select:focus {
    outline: none;
    border-color: #21808D;
    box-shadow: 0 0 0 3px rgba(33, 128, 141, 0.1);
    transform: translateY(-1px);
}

.form-grid input::placeholder {
    color: #9ca3af;
}

.form-consent {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
}

.form-consent input[type="checkbox"] {
    margin: 0;
    transform: scale(1.3);
    accent-color: #21808D;
    flex-shrink: 0;
}

.form-consent label {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.4;
    cursor: pointer;
}

.waitlist-form h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #111827;
    font-size: 1.75rem;
}


@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-consent {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .success-message {
        padding: 1.5rem;
    }
    
    .success-icon {
        font-size: 2.5rem;
    }
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px 0 rgba(33, 128, 141, 0.35);
}

.cta-button.secondary {
    background: white;
    color: #21808D;
    border: 2px solid #21808D;
}

.cta-button.secondary:hover {
    background: #21808D;
    color: white;
    transform: translateY(-1px);
}

.cta-button.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(33, 128, 141, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

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

.nav-link {
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    position: relative;
}

.nav-link:hover {
    color: #21808D;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #21808D;
    transition: width 0.2s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.header-cta {
    background: linear-gradient(135deg, #32B8C6 0%, #21808D 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.header-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(33, 128, 141, 0.3);
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(33, 128, 141, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(50, 184, 198, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.hero-subheadline {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.launch-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(33, 128, 141, 0.1);
    color: #21808D;
    border-radius: 50px;
    font-weight: 500;
    margin-bottom: 2rem;
    border: 1px solid rgba(33, 128, 141, 0.2);
    text-shadow: 0 0 12px rgba(33, 128, 141, 0.4);
    box-shadow: 0 0 20px rgba(33, 128, 141, 0.1);
}

/* ===== COUNTDOWN TIMER REMOVED =====
/* Countdown styles have been removed as requested */

/* ===== DASHBOARD PREVIEW ===== */
.hero-visual {
    position: relative;
}

.dashboard-preview {
    background: linear-gradient(135deg, rgba(33, 128, 141, 0.05) 0%, rgba(50, 184, 198, 0.08) 100%);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(33, 128, 141, 0.2);
    position: relative;
    overflow: hidden;
    /* Glowing spotlight effect */
    box-shadow: 0 25px 50px -12px rgba(33, 128, 141, 0.25),
                0 0 0 1px rgba(33, 128, 141, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dashboard-preview::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, transparent 30%, rgba(33, 128, 141, 0.03) 70%);
    pointer-events: none;
    z-index: 0;
    animation: spotlightPulse 4s ease-in-out infinite;
}

@keyframes spotlightPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

.dashboard-preview .dashboard-header,
.dashboard-preview .metrics-grid,
.dashboard-preview .alert-banner {
    position: relative;
    z-index: 2;
    width: 100%;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(33, 128, 141, 0.2);
    gap: 2rem;
    min-height: 120px; /* Ensure consistent height */
}

.dashboard-title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    color: #21808D;
    gap: 1rem;
    flex: 1;
    min-height: 100px; /* Accommodate the larger logo */
}

.dashboard-title .alethi-logo {
    filter: drop-shadow(0 4px 8px rgba(33, 128, 141, 0.3));
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.dashboard-title .alethi-logo:hover {
    transform: scale(1.05);
}

.dashboard-title-text {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 2.15rem;
    color: #21808D;
    letter-spacing: -0.025em;
    text-shadow: 0 2px 4px rgba(33, 128, 141, 0.1);
    white-space: nowrap;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #21808D;
    font-weight: 500;
    flex-shrink: 0;
}

.live-dot {
    width: 10px;
    height: 10px;
    background: #21808D;
    border-radius: 50%;
    animation: livePulse 2.75s ease-in-out infinite;
}

@keyframes livePulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.3);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    justify-items: center;
    align-items: start;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.metric-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(33, 128, 141, 0.15);
    text-align: center;
    position: relative;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.15s ease,
                transform 0.12s cubic-bezier(0.4, 0, 0.2, 1);
    /* Enhanced glow effect */
    box-shadow: 0 4px 6px -1px rgba(33, 128, 141, 0.1), 0 2px 4px -1px rgba(33, 128, 141, 0.06);
    width: 100%;
    max-width: 280px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
}

.metric-card.expanded {
    max-width: 100%;
    grid-column: 1 / -1;
    justify-content: flex-start;
    align-items: stretch;
    min-height: auto;
    padding: 1.75rem;
    box-shadow: 0 10px 25px -5px rgba(33, 128, 141, 0.15), 0 8px 10px -6px rgba(33, 128, 141, 0.1);
    order: -1;
    transform: translateY(0);
}

.metric-card.expanded > .metric-label,
.metric-card.expanded > .metric-value,
.metric-card.expanded > .metric-trend {
    width: auto;
    text-align: left;
}

.metric-card.expanded > .metric-label {
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
}

.metric-card.expanded > .metric-value {
    font-size: 2.25rem;
    margin-bottom: 0.125rem;
}

.metric-card.expanded > .metric-trend {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Main content area that stays stable and centered */
.metric-card > .metric-label,
.metric-card > .metric-value,
.metric-card > .metric-trend {
    flex-shrink: 0;
    width: 100%;
}

.metric-card.clickable {
    cursor: pointer;
}

.metric-card.clickable:hover:not(.expanded) {
    border-color: #21808D;
    box-shadow: 0 10px 15px -3px rgba(33, 128, 141, 0.2), 0 4px 6px -2px rgba(33, 128, 141, 0.1);
    transform: translateY(-2px);
}

.metric-card.expanded {
    cursor: default;
}

.metric-card.expanded .drill-down-content {
    cursor: default;
    pointer-events: auto;
}

.drill-down-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #21808D;
    font-size: 0.8rem;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.2s ease;
    animation: bounceUpDown 2s ease-in-out infinite;
    background: rgba(33, 128, 141, 0.05);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transform-origin: center;
}

@keyframes bounceUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

@keyframes trendBounce {
    0% {
        opacity: 0;
        transform: translateY(10px) scale(0.9);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-2px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.metric-card.expanded .drill-down-icon {
    transform: rotate(180deg);
    color: #21808D;
    animation: none;
    background: rgba(33, 128, 141, 0.1);
}

.drill-down-content {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(33, 128, 141, 0.2);
    text-align: left;
    width: 100%;
    /* Ensure hidden initially */
    display: none;
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                max-height 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                margin 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    order: 10; /* Push to bottom */
    flex-shrink: 0;
    max-width: 100%;
}

.metric-card.expanded .drill-down-content {
    /* Show when expanded */
    display: block;
    visibility: visible;
    opacity: 1;
    max-height: 5000px;
    overflow: visible;
    order: 10; /* Keep at bottom */
}

.drill-down-content.show {
    display: block;
    visibility: visible;
    opacity: 1;
    max-height: 5000px;
    overflow: visible;
    order: 10; /* Keep at bottom */
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.drill-down-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #374151;
    font-size: 0.9rem;
}

.drill-down-header i {
    color: #21808D;
}

.drill-down-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.drill-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    background: rgba(33, 128, 141, 0.05);
    border-radius: 6px;
    font-size: 0.85rem;
}

.drill-item i {
    color: #6b7280;
    width: 16px;
    text-align: center;
}

.drill-item span {
    font-weight: 500;
    color: #374151;
    flex: 1;
}

.drill-item small {
    color: #9ca3af;
    font-size: 0.75rem;
}

.data-confidence {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 0.875rem;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    font-size: 0.8rem;
    color: #166534;
    font-weight: 500;
    margin-bottom: 0.875rem;
}

.data-confidence i {
    color: #16a34a;
    font-size: 0.875rem;
}

/* Drill-down sections */
.drill-section {
    margin-bottom: 0.875rem;
    pointer-events: auto;
}

.drill-section-header {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 0.875rem;
    background: rgba(33, 128, 141, 0.06);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    position: relative;
    z-index: 10;
    user-select: none;
    border: none;
    outline: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
    background-color: rgba(33, 128, 141, 0.06);
}

.drill-section-header:hover {
    background: rgba(33, 128, 141, 0.1);
}

.drill-section-header.collapsed {
    cursor: default;
}

.drill-section-header i:first-child {
    color: #21808D;
    font-size: 0.875rem;
    width: 16px;
    text-align: center;
}

.drill-section-header span {
    flex: 1;
}

.drill-section-header strong {
    color: #21808D;
    font-size: 0.875rem;
    margin-right: 0.25rem;
}

.section-toggle {
    color: #6b7280;
    font-size: 0.75rem;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.drill-section-header.expanded .section-toggle {
    transform: rotate(90deg);
}

.drill-section-content {
    display: none;
    padding: 0.625rem 0 0 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.2s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.drill-section-header.expanded + .drill-section-content {
    display: block;
    max-height: 2000px;
    opacity: 1;
    padding: 0.625rem 0 0 0;
}

/* Data rows */
.data-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr auto auto;
    gap: 0.5rem;
    align-items: center;
    padding: 0.625rem 0.875rem;
    background: white;
    border-radius: 6px;
    margin-bottom: 0.375rem;
    font-size: 0.8rem;
    border: 1px solid rgba(33, 128, 141, 0.08);
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
}

.data-row:hover {
    background: rgba(33, 128, 141, 0.03);
    border-color: rgba(33, 128, 141, 0.15);
    transform: translateX(2px);
}

.data-row.total {
    background: rgba(33, 128, 141, 0.05);
    border: 1px solid rgba(33, 128, 141, 0.15);
    font-weight: 600;
    margin-top: 0.5rem;
}

.data-label {
    color: #374151;
    font-weight: 500;
}

.data-desc {
    color: #6b7280;
    font-size: 0.75rem;
    font-style: italic;
}

.data-calc {
    color: #6b7280;
    font-size: 0.75rem;
    font-style: italic;
}

.data-value {
    color: #111827;
    font-weight: 600;
    text-align: right;
}

.data-value.positive {
    color: #059669;
}

.data-value.negative {
    color: #dc2626;
}

.data-value.warning {
    color: #ea580c;
}

.data-source {
    color: #9ca3af;
    font-size: 0.7rem;
    text-align: right;
    background: #f9fafb;
    padding: 0.125rem 0.5rem;
    border-radius: 4px;
}

.data-meta {
    color: #6b7280;
    font-size: 0.7rem;
    text-align: right;
}

.data-variance {
    color: #059669;
    font-size: 0.75rem;
    font-weight: 600;
}

.data-row-simple {
    padding: 0.375rem 0.875rem;
    text-align: center;
}

/* Team member rows */
.team-member-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0.875rem;
    background: white;
    border-radius: 6px;
    margin-bottom: 0.5rem;
    border: 1px solid rgba(33, 128, 141, 0.08);
    gap: 1rem;
    transition: all 0.2s ease;
}

.team-member-row:hover {
    background: rgba(33, 128, 141, 0.03);
    border-color: rgba(33, 128, 141, 0.15);
    transform: translateX(2px);
}

.member-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.member-name {
    font-weight: 600;
    color: #111827;
    font-size: 0.85rem;
}

.member-role {
    font-size: 0.7rem;
    color: #6b7280;
}

.member-stats {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.member-hours {
    font-size: 0.8rem;
    color: #374151;
    font-weight: 500;
}

.member-utilization {
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.25rem 0.625rem;
    border-radius: 4px;
    min-width: 42px;
    text-align: center;
}

.member-utilization.high {
    background: #d1fae5;
    color: #065f46;
}

.member-utilization.neutral {
    background: #e0f2fe;
    color: #075985;
}

.member-utilization.low {
    background: #fee2e2;
    color: #991b1b;
}

.member-variance {
    font-size: 0.75rem;
    font-weight: 600;
    min-width: 45px;
    text-align: right;
}

.member-variance.above {
    color: #059669;
}

.member-variance.below {
    color: #dc2626;
}

/* Insight notes */
.insight-note {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 0.875rem;
    background: #fef3c7;
    border: 1px solid #fde68a;
    border-radius: 6px;
    font-size: 0.75rem;
    color: #92400e;
    margin-top: 0.5rem;
}

.insight-note i {
    color: #f59e0b;
    font-size: 0.875rem;
}

/* Margin summary */
.margin-summary {
    margin-top: 1rem;
    padding-top: 0.875rem;
    border-top: 2px solid rgba(33, 128, 141, 0.15);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.625rem 0.875rem;
    background: rgba(33, 128, 141, 0.05);
    border-radius: 8px;
}

.summary-label {
    font-weight: 600;
    color: #374151;
    font-size: 0.875rem;
}

.summary-value {
    font-weight: 700;
    font-size: 1rem;
    color: #111827;
}

.summary-value.positive {
    color: #059669;
}

.summary-value.negative {
    color: #dc2626;
}

/* Project sections for detailed project breakdown */
.project-section {
    margin-bottom: 1.5rem;
    border: 1px solid rgba(33, 128, 141, 0.15);
    border-radius: 12px;
    background: rgba(33, 128, 141, 0.02);
    overflow: hidden;
    pointer-events: auto;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(33, 128, 141, 0.08) 0%, rgba(50, 184, 198, 0.06) 100%);
    border-bottom: 1px solid rgba(33, 128, 141, 0.1);
    transition: background 0.3s ease;
}

.project-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: #111827;
    font-size: 0.95rem;
}

.project-title i {
    color: #21808D;
    font-size: 1.1rem;
}

.project-metrics {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.project-margin {
    font-size: 1.1rem;
    font-weight: 700;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    min-width: 60px;
    text-align: center;
}

.project-margin.positive {
    background: #d1fae5;
    color: #065f46;
}

.project-margin.neutral {
    background: #e0f2fe;
    color: #075985;
}

.project-margin.negative {
    background: #fee2e2;
    color: #991b1b;
}

.project-revenue {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
}

.project-utilization {
    font-size: 1.1rem;
    font-weight: 700;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    min-width: 60px;
    text-align: center;
    margin-right: 1rem;
}

.project-utilization.high {
    background: #d1fae5;
    color: #065f46;
}

.project-utilization.neutral {
    background: #e0f2fe;
    color: #075985;
}

.project-utilization.low {
    background: #fee2e2;
    color: #991b1b;
}

.project-hours {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
}

.project-details {
    padding: 0.75rem;
    background: white;
}

.metric-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.4;
    width: 100%;
    height: 2.45em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.metric-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.25rem;
    font-variant-numeric: tabular-nums;
    text-align: center;
    line-height: 2rem;
    width: 100%;
}

.metric-trend {
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.4s ease;
    text-align: center;
    margin-top: 0;
    padding-top: 0.25rem;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    line-height: 0.875rem;
}

.metric-trend.pos.highlight {
    background: linear-gradient(135deg, #32B8C6 0%, #21808D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.alethi-gradient {
    background: linear-gradient(135deg, #32B8C6 0%, #21808D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.metric-trend.positive {
    color: #059669;
    font-weight: 600;
}

.metric-trend.negative {
    color: #dc2626;
    font-weight: 600;
}

.alert-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: #fee2e2;
    border: 1px solid #f87171;
    border-radius: 8px;
    color: #dc2626;
    font-size: 0.875rem;
    font-weight: 500;
    /* Warning pulse effect */
    animation: alertPulse 2s ease-in-out infinite;
    box-shadow: 0 4px 6px -1px rgba(220, 38, 38, 0.1), 0 2px 4px -1px rgba(220, 38, 38, 0.06);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

@keyframes alertPulse {
    0%, 100% {
        box-shadow: 0 4px 6px -1px rgba(220, 38, 38, 0.1), 0 2px 4px -1px rgba(220, 38, 38, 0.06);
    }
    50% {
        box-shadow: 0 8px 15px -3px rgba(220, 38, 38, 0.2), 0 4px 6px -2px rgba(220, 38, 38, 0.1);
    }
}

/* ===== WAITLIST FORM ===== */
.cta-section {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-weight: 600;
    color: #374151;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.form-input {
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease;
    background: white;
}

.form-input:focus {
    outline: none;
    border-color: #21808D;
    box-shadow: 0 0 0 3px rgba(33, 128, 141, 0.1);
    transform: translateY(-1px);
}

.form-error {
    color: #ef4444;
    font-size: 0.8rem;
    min-height: 1.2rem;
    margin-top: 0.25rem;
}

.form-input.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-consent {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.consent-checkbox {
    margin: 0;
    transform: scale(1.3);
    accent-color: #21808D;
    flex-shrink: 0;
    cursor: pointer;
}

.consent-label {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.4;
    cursor: pointer;
}

.button-loader {
    display: none;
}

.submit-button.loading .button-text,
.submit-button.loading .button-icon {
    display: none;
}

.submit-button.loading .button-loader {
    display: inline-block;
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.button-subtext {
    text-align: center;
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 1rem;
    font-weight: 500;
    letter-spacing: 0.025em;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #21808D;
    border-color: #21808D;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 12px;
    font-weight: bold;
}

/* ===== PROBLEM SECTION ===== */
.problem {
background: #f9fafb;
}

.problem-content {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
max-width: 800px;
margin: 0 auto;
}

.problem-intro {
font-size: 1.25rem;
color: #374151;
margin-bottom: 2rem;
font-weight: 500;
    margin-bottom: 2rem;
    font-weight: 500;
}

.problem-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 600px;
}

.problem-point {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    padding: 0.5rem 0;
}

.problem-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Individual problem icon colors */
.problem-point:nth-child(1) .problem-icon {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%); /* Red for Finance */
}

.problem-point:nth-child(2) .problem-icon {
    background: linear-gradient(135deg, #ea580c 0%, #f97316 100%); /* Orange for Time tracking */
}

.problem-point:nth-child(3) .problem-icon {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%); /* Green for CRM */
}

.problem-point:nth-child(4) .problem-icon {
    background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%); /* Purple for PM tools */
}

.problem-point:nth-child(5) .problem-icon {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%); /* Dark gray for Excel */
}

.problem-description {
    font-size: 1rem;
    color: #374151;
    line-height: 1.6;
}

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

.fragmented-stack {
    margin-bottom: 2rem;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.system-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    justify-items: center;
}

.system-logo {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    padding: 10px;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.system-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-color: #dc2626;
}

.chaos-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #dc2626;
    font-weight: 600;
    font-size: 0.875rem;
}

.arrow-down {
    font-size: 2rem;
    color: #6b7280;
    margin: 2rem 0;
}

.alethi-solution {
    padding: 2rem;
    background: white;
    border-radius: 16px;
    border: 2px solid #21808D;
    box-shadow: 0 10px 15px -3px rgba(33, 128, 141, 0.1);
}

.alethi-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: #21808D;
    margin-bottom: 1rem;
}

.solution-tagline {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
}

/* ===== LIVE DATA SYNC SECTION ===== */
.data-sync {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 1rem 0 5rem 0;
}

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

.sync-description {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 3rem;
    font-style: italic;
}

.integration-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.source-systems {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    width: 120px;
}

.reconciliation-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: white;
    border: 2px solid #f59e0b;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}

.reconciliation-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

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

.reconciliation-label .main-label {
    display: block;
    font-weight: 700;
    color: #111827;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.reconciliation-label .sub-label {
    display: block;
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 500;
}

.intelligence-output {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

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

.output-labels .main-label {
    display: block;
    font-weight: 700;
    color: #21808D;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.output-labels .sub-label {
    display: block;
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 500;
}

.flow-arrow-large {
    color: #21808D;
    font-size: 1.5rem;
    animation: slideLeftRight 2s ease-in-out infinite;
}

@keyframes slideLeftRight {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(8px);
    }
}

.flow-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    text-align: center;
}

.flow-logo {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    border: 2px solid #e5e7eb;
    padding: 8px;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    display: block;
    margin: 0 auto;
}

.flow-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.alethi-flow-logo {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 2px solid #21808D;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(33, 128, 141, 0.2);
}

.system-status {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #16a34a;
    width: 100%;
    min-height: 24px;
}

.system-status i {
    color: #16a34a;
    font-size: 1rem;
}

.alethi-status {
    color: #21808D;
}

.alethi-status i {
    color: #21808D;
}

.flow-arrow {
    color: #21808D;
    font-size: 1.25rem;
    animation: pulse 2s infinite;
}

.sync-indicators {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.sync-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    border: 1px solid #d1fae5;
    border-radius: 8px;
    color: #16a34a;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.sync-status i {
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.review-queue {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    border: 1px solid #fed7aa;
    border-radius: 8px;
    color: #ea580c;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: relative;
}

.queue-badge {
    background: #ea580c;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    min-width: 20px;
    text-align: center;
}

/* ===== VALUE PROPOSITION SECTION ===== */
.value-prop {
    background: white;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.pillar {
    text-align: center;
    padding: 2rem;
}

.pillar-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

/* Individual pillar icon colors */
.pillar:nth-child(1) .pillar-icon {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%); /* Green for Profitability (money/profit) */
}

.pillar:nth-child(2) .pillar-icon {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%); /* Red for Volatility (alerts/warnings) */
}

.pillar:nth-child(3) .pillar-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%); /* Blue for Visual Dashboards (charts/analytics) */
}

.pillar-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #111827;
}

.pillar-description {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
}

.result-statement {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    background: #f0fdf4;
    border-radius: 16px;
    border: 1px solid #bbf7d0;
    margin-bottom: 2rem;
}

.checkmark {
    width: 32px;
    height: 32px;
    background: #21808D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

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

.fun-fact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 4rem;
    padding: 0.75rem 1.25rem;
    background: #f0f9ff;
    border: 1px solid #e0f2fe;
    border-radius: 8px;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.fun-fact-icon {
    color: #f59e0b;
    font-size: 1rem;
    flex-shrink: 0;
}

.fun-fact-text {
    font-size: 0.875rem;
    color: #374151;
    white-space: nowrap;
}

.fun-fact-text em {
    color: #21808D;
    font-weight: 600;
}

/* ===== PROOF OF DEPTH SECTION ===== */
.proof-depth {
    background: #f9fafb;
}

.differentiators {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.differentiator {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.differentiator:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.diff-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Individual differentiator icon colors */
.differentiator:nth-child(1) .diff-icon {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%); /* Deep Blue for Database (data/structure) */
}

.differentiator:nth-child(2) .diff-icon {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%); /* Green for Reconciliation (balance/harmony) */
}

.differentiator:nth-child(3) .diff-icon {
    background: linear-gradient(135deg, #ea580c 0%, #f97316 100%); /* Orange for Science/Metrics (research/analysis) */
}

.differentiator:nth-child(4) .diff-icon {
    background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%); /* Purple for Integration (connectivity/tech) */
}

.differentiator:nth-child(5) .diff-icon {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%); /* Dark Gray for Trust/Security (solid/reliable) */
}

.diff-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #111827;
}

.diff-content p {
    color: #6b7280;
    line-height: 1.6;
}

.integration-banner {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
}

.banner-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 2rem;
}

.integration-logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem 2rem;
    justify-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 1rem;
}

.integration-logos img {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    border: 2px solid #e5e7eb;
    padding: 6px;
    background: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    position: relative;
    /* Force browser to use highest quality scaling */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: optimizeQuality;
    -ms-interpolation-mode: bicubic;
}

.integration-logos img:hover {
    transform: translateY(-4px) scale(1.05);
    border-color: #21808D;
    box-shadow: 0 8px 25px rgba(33, 128, 141, 0.2);
}

/* Enhanced tooltip styling */
.integration-logos img[title]:hover::after {
    content: attr(title);
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(17, 24, 39, 0.95);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: tooltipFadeIn 0.2s ease;
}

.integration-logos img[title]:hover::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid rgba(17, 24, 39, 0.95);
    z-index: 1001;
    animation: tooltipFadeIn 0.2s ease;
}

@keyframes tooltipFadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(4px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* ===== EARLY ACCESS SECTION ===== */
.early-access {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    color: white;
}

.early-access .section-headline {
    color: white;
}

.early-access-subtext {
    text-align: center;
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 3rem;
}

.perks-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.perk {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.perk i {
    color: #14b8a6;
    font-size: 1.25rem;
    width: 24px;
    flex-shrink: 0;
}

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

/* ===== SOCIAL PROOF SECTION ===== */
.social-proof {
    background: white;
}

.social-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.testimonial {
    padding: 3rem;
    background: #f9fafb;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: -12px;
    left: 3rem;
    width: 24px;
    height: 24px;
    background: #21808D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.875rem;
}

.testimonial blockquote {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    color: #6b7280;
    font-weight: 500;
}

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

.sharing-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #111827;
}

.sharing-section p {
    color: #6b7280;
    margin-bottom: 2rem;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: white;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
}

.share-button:hover {
    border-color: #21808D;
    color: #21808D;
    transform: translateY(-1px);
}

.share-button.linkedin:hover {
    border-color: #0077b5;
    color: #0077b5;
}

.share-button.twitter:hover {
    border-color: #1da1f2;
    color: #1da1f2;
}

/* ===== FOUNDER NOTE SECTION ===== */
.founder-note {
    background: #f9fafb;
}

.founder-message {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    max-width: 800px;
    margin: 0 auto;
}

.founder-avatar {
    flex-shrink: 0;
}

.avatar-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #32B8C6 0%, #21808D 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.founder-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #21808D;
    box-shadow: 0 4px 12px rgba(33, 128, 141, 0.2);
}

.name-origin {
    font-size: 1rem;
    color: #21808D;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f0f9ff;
    border-left: 4px solid #21808D;
    border-radius: 0 8px 8px 0;
}

.founder-text blockquote {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #374151;
    font-style: italic;
    margin-bottom: 2rem;
}

.founder-signature {
    color: #6b7280;
}

.signature-line {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.founder-contact a {
    color: #21808D;
    text-decoration: none;
    font-weight: 500;
}

.founder-contact a:hover {
    text-decoration: underline;
}

/* ===== FOOTER ===== */
.footer {
    background: #111827;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 1rem;
}

.tagline {
    color: #d1d5db;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.launch-info {
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: #14b8a6;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    font-size: 0.875rem;
    color: #9ca3af;
}

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    margin: 1rem;
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: #14b8a6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.modal-content h3 {
    margin-bottom: 1rem;
    color: #111827;
}

.modal-content p {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Card hover effects */
.metric-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.cta-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 35px -5px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

/* Logo hover effect */
.logo:hover .logo-icon {
    transform: rotate(5deg) scale(1.05);
    transition: transform 0.3s ease;
}

/* Problem point hover */
.problem-point:hover {
    transform: translateX(5px);
    transition: transform 0.2s ease;
}

.problem-point:hover .problem-icon {
    animation: pulse 0.6s ease;
}

/* ===== SOLUTION ARROW SECTION ===== */
.solution-arrow {
    padding: 2rem 0 1rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
}

.arrow-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
}

.large-arrow {
    animation: bounceArrow 2s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(33, 128, 141, 0.2));
}

.arrow-text {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    color: #21808D;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.9;
}

@keyframes bounceArrow {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

/* Responsive symmetry improvements */
@media (max-width: 768px) {
    .dashboard-header {
        flex-direction: column;
        gap: 1rem;
        min-height: auto;
        text-align: center;
    }

    .dashboard-title {
        justify-content: center;
        text-align: center;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 400px;
    }

    .metric-card {
        max-width: 100%;
        min-height: 180px;
    }
    
    .metric-card.expanded {
        grid-column: 1;
        order: -1;
    }
    
    .data-row {
        grid-template-columns: 1fr;
        gap: 0.375rem;
        padding: 0.625rem;
    }

    .data-row .data-label {
        font-weight: 600;
    }

    .data-row .data-desc,
    .data-row .data-calc,
    .data-row .data-value,
    .data-row .data-source,
    .data-row .data-meta,
    .data-row .data-variance {
        text-align: left;
        justify-self: start;
    }
    
    .team-member-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .member-stats {
        width: 100%;
        justify-content: space-between;
    }
    
    .drill-section-header {
        font-size: 0.8rem;
        padding: 0.625rem;
    }
    
    .drill-section-header strong {
        font-size: 0.8rem;
    }

    .project-header {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
        padding: 0.875rem;
    }

    .project-metrics {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }

    .project-margin,
    .project-revenue,
    .project-utilization,
    .project-hours {
        font-size: 0.9rem;
    }

    .project-details {
        padding: 0.5rem;
    }

    .alert-banner {
        max-width: 100%;
        padding: 0.75rem 1rem;
    }

    .dashboard-preview {
        max-width: 100%;
        padding: 1.5rem;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .metrics-grid {
        max-width: 700px;
        gap: 1rem;
    }

    .metric-card {
        max-width: 220px;
        min-height: 180px;
    }
}

/* ===== BOUNCING LIGHTBULB ===== */
.bounce-lightbulb {
    display: inline-block;
    animation: lightbulbBounce 2s ease-in-out infinite;
}

@keyframes lightbulbBounce {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-4px);
    }
}

/* ===== BOUNCING TICKS ===== */
.bounce-tick {
    display: inline-block;
    animation: tickBounce 1.5s ease-in-out infinite;
}

.bounce-tick:nth-child(1) { animation-delay: 0s; }
.bounce-tick:nth-child(2) { animation-delay: 0.2s; }
.bounce-tick:nth-child(3) { animation-delay: 0.4s; }
.bounce-tick:nth-child(4) { animation-delay: 0.6s; }

@keyframes tickBounce {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-3px);
    }
}

/* ===== BOUNCING BUTTONS ===== */
.bounce-button {
    animation: buttonBounce 2.5s ease-in-out infinite;
}

@keyframes buttonBounce {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-2px);
    }
}

/* ===== BOUNCING ALERT ===== */
.bounce-alert {
    animation: alertBounce 2s ease-in-out infinite;
}

@keyframes alertBounce {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-3px);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .hero {
        padding: 6rem 0 2rem 0;
    }
    
    .problem, .early-access {
        padding: 4rem 0;
    }
    
    /* Header mobile */
    .header-content {
        padding: 0.75rem 0;
        flex-wrap: nowrap;
        overflow: hidden;
    }
    
    .nav {
        display: none;
    }
    
    .header-cta {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        white-space: nowrap;
        min-width: 0;
        flex-shrink: 1;
    }
    
    /* Form mobile */
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cta-section {
        padding: 1.5rem;
        margin: 0 0.5rem;
        max-width: calc(100vw - 1rem);
        box-sizing: border-box;
    }
    
    /* Dashboard mobile */
    .dashboard-preview {
        transform: scale(0.9);
        margin: 1rem 0;
        max-width: 100%;
        overflow-x: auto;
    }
    
    .metrics-grid {
        gap: 0.75rem;
    }
    
    .metric-card {
        padding: 1rem;
    }
    
    .metric-value {
        font-size: 1.5rem;
    }
    
    .value-prop {
        padding: 4rem 0 1.5rem 0;
    }
    
    .integration-section {
        padding: 1.5rem 0 3rem 0;
    }
    
    .founder-note {
        padding: 4rem 0;
    }
    
    .fun-fact {
        margin-top: 3rem;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        max-width: 95%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .fun-fact-text {
        white-space: normal;
        text-align: center;
        line-height: 1.4;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .problem-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .social-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .founder-message {
        flex-direction: column;
        text-align: center;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .differentiators {
        grid-template-columns: 1fr;
    }
    
    .perks-list {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    /* Countdown styles removed */
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .share-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .integration-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem 0.5rem;
        max-width: 100%;
        padding: 0.5rem;
        overflow-x: hidden;
    }
    
    .integration-logos img {
        width: 56px;
        height: 56px;
        padding: 10px;
    }
    
    /* Integration flow mobile fixes */
    .integration-flow {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .source-systems {
        width: 100%;
        max-width: 300px;
    }
    
    .flow-arrow-large {
        transform: rotate(90deg);
    }
    
    .sync-indicators {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .sync-status,
    .review-queue {
        max-width: 90%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2rem;
    }
    
    .section-headline {
        font-size: 1.75rem;
    }
    
    .dashboard-preview {
        padding: 1rem;
        transform: scale(0.85);
    }
    
    .cta-section {
        padding: 1rem;
        margin: 0 0.25rem;
    }
    
    .container {
        padding: 0 0.75rem;
    }
    
    .header-cta {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .fun-fact {
        padding: 0.5rem;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
        max-width: calc(100vw - 1rem);
    }
    
    .integration-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem 0.5rem;
    }
    
    .integration-flow {
        padding: 0 0.5rem;
    }
    
    .reconciliation-step {
        padding: 1rem;
    }
    
    .testimonial {
        padding: 2rem;
    }
    
    .modal-content {
        padding: 2rem;
    }
}
