/* Home Page - Zinc Theme */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --zinc-50: #fafafa;
    --zinc-100: #f4f4f5;
    --zinc-200: #e4e4e7;
    --zinc-300: #d4d4d8;
    --zinc-400: #a1a1aa;
    --zinc-500: #71717a;
    --zinc-600: #52525b;
    --zinc-700: #3f3f46;
    --zinc-800: #27272a;
    --zinc-900: #18181b;
    --blue-500: #3b82f6;
    --teal-500: #14b8a6;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, var(--zinc-100) 0%, var(--zinc-200) 100%);
    color: var(--zinc-900);
    min-height: 100vh;
    padding: 20px;
    line-height: 1.6;
}

.home-container {
    max-width: 1200px;
    margin: 0 auto;
}

.home-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 60px 20px 40px;
}

.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--zinc-900);
    color: var(--teal-500);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--teal-500);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.home-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--zinc-900);
}

.home-title .accent {
    color: var(--zinc-600);
}

.home-subtitle {
    font-size: 1.25rem;
    color: var(--zinc-600);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.assessment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.assessment-card {
    background: white;
    border: 2px solid var(--zinc-300);
    border-radius: 16px;
    padding: 40px;
    text-decoration: none;
    color: var(--zinc-900);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.assessment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: all 0.3s ease;
}

.manipulation-card::before {
    background: var(--blue-500);
}

.coercive-card::before {
    background: var(--teal-500);
}

.assessment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--zinc-400);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.card-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--zinc-900);
}

.card-description {
    font-size: 1rem;
    color: var(--zinc-600);
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-meta {
    font-size: 0.875rem;
    color: var(--zinc-500);
    font-style: italic;
}

.card-arrow {
    position: absolute;
    bottom: 40px;
    right: 40px;
    font-size: 2rem;
    color: var(--zinc-400);
    transition: all 0.3s ease;
}

.assessment-card:hover .card-arrow {
    transform: translateX(8px);
    color: var(--zinc-600);
}

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

.feature-card {
    background: white;
    border: 1px solid var(--zinc-300);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--zinc-900);
}

.feature-text {
    font-size: 0.95rem;
    color: var(--zinc-600);
    line-height: 1.5;
}

.home-footer {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--zinc-300);
}

.footer-text {
    font-size: 0.95rem;
    color: var(--zinc-600);
}

.footer-text strong {
    color: var(--zinc-900);
}

@media (max-width: 768px) {
    .home-title {
        font-size: 2.5rem;
    }

    .home-subtitle {
        font-size: 1rem;
    }

    .assessment-options {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .card-arrow {
        bottom: 30px;
        right: 30px;
    }
}
