/* Minimal Black & White Design - Apple x Palantir Aesthetic */

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

:root {
    /* Minimal Color Palette */
    --black: #000000;
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;

    /* Transitions */
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
    background: var(--white);
    color: var(--black);
    line-height: 1.6;
    font-weight: 400;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography Scale */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition-smooth);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-bottom-color: var(--gray-300);
    box-shadow: var(--shadow-sm);
}

.header .container {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
}

.logo {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    color: var(--black);
    text-decoration: none;
    transition: var(--transition-fast);
}

.logo:hover {
    opacity: 0.7;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: var(--white);
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-content {
    text-align: left;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    font-weight: 500;
    margin-bottom: 16px;
    display: block;
}

.hero-main {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--black);
    display: block;
    margin-bottom: 24px;
    word-spacing: normal;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 480px;
}

/* Dynamic Hero Visual */
.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*
BACKUP OF ORIGINAL ANIMATION - REVERT TO THIS IF NEEDED:
Original data-stream, dataFlow keyframes, and brainPulse animations backed up here.
To revert: restore the original @keyframes and .data-stream styles.
*/

.data-flow-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.data-stream {
    position: absolute;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--black), transparent);
    border-radius: 2px;
    opacity: 0.7;
}

.stream-1 {
    top: 25%;
    left: 0;
    animation: dataFlow1 3s ease-in-out infinite;
}

.stream-2 {
    top: 50%;
    left: 0;
    animation: dataFlow2 3s ease-in-out infinite 0.5s;
}

.stream-3 {
    top: 75%;
    left: 0;
    animation: dataFlow3 3s ease-in-out infinite 1s;
}

@keyframes dataFlow1 {
    0%, 100% { transform: translateX(0) scaleX(1); opacity: 0.3; }
    50% { transform: translateX(120px) scaleX(1.5); opacity: 1; }
}

@keyframes dataFlow2 {
    0%, 100% { transform: translateX(0) scaleX(1); opacity: 0.3; }
    50% { transform: translateX(130px) scaleX(1.3); opacity: 1; }
}

@keyframes dataFlow3 {
    0%, 100% { transform: translateX(0) scaleX(1); opacity: 0.3; }
    50% { transform: translateX(110px) scaleX(1.4); opacity: 1; }
}

.ai-brain {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
}


.brain-core {
    width: 100%;
    height: 100%;
    border: 3px solid var(--black);
    border-radius: 50%;
    position: relative;
    background: var(--white);
}

.brain-core::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 2px solid var(--gray-400);
    border-radius: 50%;
}

@keyframes brainGlow {
    0% {
        box-shadow:
            inset 0 2px 4px rgba(0, 0, 0, 0.1),
            0 4px 12px rgba(0, 0, 0, 0.15);
    }
    100% {
        box-shadow:
            inset 0 2px 4px rgba(0, 0, 0, 0.1),
            0 6px 20px rgba(0, 0, 0, 0.2),
            0 0 0 1px rgba(0, 0, 0, 0.05);
    }
}

.brain-core::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 2px solid var(--gray-400);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.05), transparent 70%);
    animation: innerPulse 2s ease-in-out infinite;
}

@keyframes innerPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
}

.brain-pulse {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid var(--black);
    border-radius: 50%;
    opacity: 0;
    animation: brainPulse 2s ease-in-out infinite;
}


@keyframes brainPulse {
    0% { transform: scale(0.8); opacity: 0; }
    50% { transform: scale(1.2); opacity: 0.6; }
    100% { transform: scale(1.6); opacity: 0; }
}

.insight-output {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 140px;
}

.output-graph {
    width: 100%;
    height: 60px;
    background: var(--gray-100);
    border-radius: 6px;
    border: 1px solid var(--gray-200);
    position: relative;
    margin-bottom: 12px;
    overflow: hidden;
}

.output-graph::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 8px;
    height: 70%;
    background: var(--black);
    border-radius: 2px 2px 0 0;
    animation: barGrow 2s ease-out infinite;
}

.output-graph::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 30%;
    width: 8px;
    height: 85%;
    background: var(--black);
    border-radius: 2px 2px 0 0;
    animation: barGrow 2s ease-out infinite 0.2s;
}

@keyframes barGrow {
    0%, 60% { transform: scaleY(0); }
    100% { transform: scaleY(1); }
}

.output-metric {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--black);
    text-align: center;
    padding: 8px;
    background: var(--gray-50);
    border-radius: 6px;
    border: 1px solid var(--gray-200);
    animation: fadeInMetric 2s ease-out infinite;
}

@keyframes fadeInMetric {
    0%, 70% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    background: var(--black);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    background: var(--gray-800);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

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

.cta-button.large {
    padding: 16px 40px;
    font-size: 1.125rem;
}

/* Problem Section */
.problem-section {
    padding: 120px 0;
    background: var(--gray-50);
}

.problem-statement {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.problem-statement h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--black);
    margin-bottom: 60px;
    letter-spacing: -0.025em;
}

.problem-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: var(--transition-smooth);
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.problem-description {
    font-size: 1.25rem;
    color: var(--gray-600);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.problem-description strong {
    color: var(--black);
    font-weight: 700;
}

/* How It Works */
.how-it-works {
    padding: 120px 0;
    background: var(--white);
}

.how-it-works h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 80px;
    color: var(--black);
    letter-spacing: -0.025em;
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.step-item {
    text-align: center;
    padding: 40px 20px;
    border-radius: 12px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    transition: var(--transition-smooth);
    position: relative;
}

.step-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    position: relative;
    border-radius: 50%;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--black);
}

.step-item p {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.step-connector {
    width: 60px;
    height: 2px;
    background: var(--gray-300);
    position: relative;
}

.step-connector::after {
    content: '';
    position: absolute;
    right: -6px;
    top: -4px;
    width: 0;
    height: 0;
    border-left: 8px solid var(--gray-300);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

/* Step Icons */
.icon-data-ingest {
    position: relative;
    width: 100%;
    height: 100%;
}

.data-points {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
}

.data-points::before,
.data-points::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
}

.data-points::before {
    top: 0;
    left: 0;
    animation: dataPoint1 2s ease-in-out infinite;
}

.data-points::after {
    bottom: 0;
    right: 0;
    animation: dataPoint2 2s ease-in-out infinite 0.5s;
}

@keyframes dataPoint1 {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

@keyframes dataPoint2 {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

.icon-ai-analysis {
    position: relative;
    width: 100%;
    height: 100%;
}

.neural-network {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid var(--white);
    border-radius: 50%;
}

.neural-network::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid var(--white);
    border-radius: 50%;
    animation: neuralPulse 1.5s ease-in-out infinite;
}

@keyframes neuralPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

.icon-insights {
    position: relative;
    width: 100%;
    height: 100%;
}

.insight-bars {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: flex-end;
    gap: 3px;
}

.insight-bars::before,
.insight-bars::after {
    content: '';
    background: var(--white);
    border-radius: 1px;
    animation: insightBars 1.5s ease-in-out infinite;
}

.insight-bars::before {
    width: 4px;
    height: 70%;
    animation-delay: 0s;
}

.insight-bars::after {
    width: 4px;
    height: 90%;
    animation-delay: 0.3s;
}

@keyframes insightBars {
    0%, 100% { opacity: 0.5; transform: scaleY(0.7); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* Social Proof */
.social-proof {
    padding: 120px 0;
    background: var(--gray-50);
    text-align: center;
}

.credibility-content h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--black);
    letter-spacing: -0.025em;
}

.advisor-quote {
    max-width: 800px;
    margin: 0 auto 80px;
    padding: 40px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.advisor-quote blockquote {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--black);
    margin-bottom: 24px;
    font-style: italic;
}

.advisor-quote cite {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
    font-style: normal;
}

.backed-by h3 {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.logo-placeholder {
    padding: 16px 24px;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--gray-200);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    transition: var(--transition-fast);
    text-decoration: none;
    display: inline-block;
    width: 280px;
    text-align: center;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-placeholder:hover {
    background: var(--gray-50);
    transform: translateY(-2px);
    color: var(--black);
    border-color: var(--gray-300);
    box-shadow: var(--shadow-md);
}

/* Dashboard Sections */
.dashboards {
    padding: 120px 0;
    background: var(--gray-50);
}

.dashboard-section {
    margin-bottom: 160px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.dashboard-section.reverse {
    grid-template-columns: 1.2fr 1fr;
}

.dashboard-section.reverse .dashboard-content {
    order: 2;
}

.dashboard-content h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--black);
}

.dashboard-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.6;
    font-weight: 400;
}

.dashboard-preview {
    background: var(--white);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
    transition: var(--transition-smooth);
}

.dashboard-preview:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.dashboard-card {
    background: var(--white);
    border-radius: 8px;
    padding: 32px;
    min-height: 400px;
    position: relative;
}

.dashboard-header {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-200);
    color: var(--black);
}

/* Chart Styles */
.chart-container {
    margin-bottom: 32px;
}

.chart-title {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bar-chart {
    display: flex;
    gap: 12px;
    align-items: flex-end;
    height: 140px;
    margin-bottom: 24px;
    padding: 0 8px;
}

.bar {
    flex: 1;
    background: var(--black);
    border-radius: 2px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    transition: var(--transition-smooth);
}

.bar:hover {
    background: var(--gray-700);
    transform: scaleY(1.05);
}

.bar.your-trial {
    background: var(--gray-800);
}

.bar-label {
    color: var(--white);
    font-weight: 500;
    font-size: 0.75rem;
    text-align: center;
    padding: 0 4px;
    line-height: 1.2;
}

/* Success Metrics */
.success-metrics {
    margin-bottom: 32px;
}

.metric-title {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--gray-700);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.metric-item {
    display: grid;
    grid-template-columns: 120px 1fr 60px 120px;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    padding: 8px 0;
}

.metric-item span:first-child {
    font-size: 0.875rem;
    color: var(--gray-700);
    font-weight: 500;
}

.progress-bar {
    height: 6px;
    background: var(--gray-200);
    border-radius: 3px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: var(--black);
    border-radius: 3px;
    transition: var(--transition-slow);
    transform-origin: left;
    animation: progressFill 1.5s ease-out forwards;
}

@keyframes progressFill {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

.percentage {
    font-weight: 600;
    font-size: 0.875rem;
    text-align: right;
    color: var(--black);
}

.status-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-align: right;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Tables */
.comparison-table {
    margin-top: 32px;
}

.table-header {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--gray-700);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 12px 16px;
    text-align: left;
    font-size: 0.875rem;
    border-bottom: 1px solid var(--gray-200);
}

th {
    font-weight: 600;
    color: var(--gray-700);
    background: var(--gray-50);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.75rem;
}

td {
    color: var(--gray-700);
}

.export-btn {
    margin-top: 16px;
    padding: 8px 16px;
    background: var(--gray-100);
    border: 1px solid var(--gray-300);
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
    color: var(--gray-700);
}

.export-btn:hover {
    background: var(--gray-200);
}

/* Regulatory Assessment */
.assessment-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 32px;
}

.compliance-score {
    text-align: center;
    flex-shrink: 0;
}

.score-circle {
    width: 120px;
    height: 120px;
    margin: 0 auto 16px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-ring {
    transform: rotate(-90deg);
    position: absolute;
}

.progress-ring-bg {
    stroke: var(--gray-200);
}

.progress-ring-fill {
    stroke: var(--black);
    stroke-linecap: round;
    transition: stroke-dashoffset 1s ease-in-out;
}

.score-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--black);
    z-index: 10;
    position: relative;
}

.score-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.critical-issues {
    flex: 1;
}

.issues-header {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--gray-700);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.issues-stack {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.issue-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-radius: 6px;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    transition: var(--transition-fast);
}

.issue-item:hover {
    background: var(--gray-200);
}

.issue-item.high {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.issue-item.medium {
    background: var(--gray-700);
    color: var(--white);
    border-color: var(--gray-700);
}

.issue-item.low {
    background: var(--gray-200);
    color: var(--gray-800);
    border-color: var(--gray-300);
}

.issue-number {
    font-size: 1.25rem;
    font-weight: 700;
}

/* Assessment List */
.assessment-list {
    border-top: 1px solid var(--gray-200);
    padding-top: 24px;
}

.list-header {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--gray-700);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.assessment-item {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    padding: 16px;
    background: var(--gray-50);
    border-radius: 8px;
    border: 1px solid var(--gray-200);
    transition: var(--transition-fast);
}

.assessment-item:hover {
    background: var(--gray-100);
    border-color: var(--gray-300);
}

.item-status {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 0.75rem;
}

.item-status.complete {
    background: var(--black);
    color: var(--white);
}

.item-status.warning {
    background: var(--gray-400);
    color: var(--white);
}

.item-content {
    flex: 1;
}

.item-title {
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 0.875rem;
    color: var(--black);
}

.item-desc {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 4px;
}

.item-meta {
    font-size: 0.75rem;
    color: var(--gray-500);
    font-style: italic;
}

/* AI Recommendations */
.ai-content {
    padding: 24px;
}

.recommendation-header {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 24px;
    text-align: center;
}

.recommendation-list {
    max-height: 400px;
    overflow-y: auto;
}

.recommendation-item {
    padding: 24px;
    background: var(--gray-50);
    border-radius: 8px;
    margin-bottom: 16px;
    border: 1px solid var(--gray-200);
    transition: var(--transition-fast);
}

.recommendation-item:hover {
    background: var(--gray-100);
    border-color: var(--gray-300);
}

.rec-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.rec-badge.high {
    background: var(--black);
    color: var(--white);
}

.rec-badge.medium {
    background: var(--gray-600);
    color: var(--white);
}

.rec-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--black);
}

.rec-desc {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 12px;
    line-height: 1.5;
}

.rec-meta {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-bottom: 16px;
    font-style: italic;
}

.rec-values {
    background: var(--white);
    padding: 16px;
    border-radius: 6px;
    margin-bottom: 16px;
    border: 1px solid var(--gray-200);
}

.current-value, .suggested-value {
    font-size: 0.875rem;
    margin-bottom: 8px;
    color: var(--gray-600);
}

.current-value strong, .suggested-value strong {
    color: var(--black);
    font-weight: 600;
}

.rec-impact {
    font-size: 0.875rem;
    margin-bottom: 16px;
    color: var(--gray-700);
}

.impact-tag {
    display: inline-block;
    padding: 2px 6px;
    background: var(--gray-200);
    border-radius: 3px;
    font-weight: 500;
    font-size: 0.75rem;
}

.rec-actions {
    display: flex;
    gap: 12px;
}

.action-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--gray-300);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 0.875rem;
}

.action-btn.accept:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.action-btn.reject:hover {
    background: var(--gray-700);
    color: var(--white);
    border-color: var(--gray-700);
}

/* Mission Section */
.mission {
    padding: 120px 0;
    text-align: center;
    background: var(--white);
}

.motto-container {
    max-width: 800px;
    margin: 0 auto;
}

.motto-title {
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: var(--black);
    margin-bottom: 24px;
}

.motto-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 60px;
}

/* Partners section within mission */
.partners-section {
    text-align: center;
    margin-top: 60px;
}

.partners-section h3 {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    text-align: center;
    background: var(--gray-50);
}

.contact h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.025em;
    color: var(--black);
}

.contact p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: var(--white);
    margin: 8% auto;
    padding: 48px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: var(--shadow-xl);
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 24px;
    font-weight: 300;
    cursor: pointer;
    color: var(--gray-500);
    transition: var(--transition-fast);
}

.close:hover {
    color: var(--black);
}

.modal h2 {
    margin-bottom: 12px;
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--black);
}

.modal-subtitle {
    margin-bottom: 32px;
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.5;
}

#contactForm {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

#contactForm input,
#contactForm textarea {
    padding: 16px;
    border: 1px solid var(--gray-300);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-fast);
    background: var(--white);
}

#contactForm input:focus,
#contactForm textarea:focus {
    outline: none;
    border-color: var(--black);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

#contactForm textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    margin-bottom: 8px;
}

.footer-info p {
    color: var(--gray-400);
    font-size: 0.875rem;
}

.footer-location {
    color: var(--gray-400);
    font-size: 0.875rem;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--gray-800);
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-400);
    font-size: 0.875rem;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

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

    .hero-main {
        font-size: clamp(1.875rem, 8vw, 2.5rem);
        margin-bottom: 16px;
    }

    .hero-visual {
        height: 300px;
    }

    .problem-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-item {
        padding: 30px 20px;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .step-connector {
        display: none;
    }

    .logos {
        gap: 20px;
    }

    .logo-placeholder {
        padding: 12px 16px;
        font-size: 0.75rem;
        width: 240px;
        min-height: 48px;
    }

    .advisor-quote {
        padding: 30px 20px;
    }

    .advisor-quote blockquote {
        font-size: 1.25rem;
    }

    .dashboard-section {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 80px;
    }

    .dashboard-section.reverse {
        display: flex;
        flex-direction: column;
    }

    .dashboard-section.reverse .dashboard-content {
        order: 1 !important;
    }

    .dashboard-section.reverse .dashboard-preview {
        order: 2 !important;
    }

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

    .dashboard-content h2 {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .dashboard-preview {
        padding: 20px;
    }

    .dashboard-card {
        padding: 24px;
        min-height: 300px;
    }

    .assessment-content {
        flex-direction: column;
        gap: 24px;
    }

    .metric-item {
        grid-template-columns: 1fr;
        gap: 8px;
        text-align: center;
    }

    .bar-chart {
        height: 120px;
        gap: 8px;
    }

    .bar {
        min-width: 40px;
    }

    .bar-label {
        font-size: 0.6875rem;
    }

    .modal-content {
        margin: 5% auto;
        padding: 32px 24px;
        width: 95%;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
}

/* Smooth scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-400);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gray-600);
}

/* Selection */
::selection {
    background: var(--black);
    color: var(--white);
}