/* /public/css/landing.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

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

body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a2a;
    color: #e0e0ff;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    position: relative;
}

.background-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.1;
    background: radial-gradient(circle at 20% 20%, rgba(102, 126, 234, 0.3), transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(118, 75, 162, 0.3), transparent 40%);
}

.content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, #a7b2f5, #d6c2e8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.h1-logo {
    height: 1.2em; /* Scales with the font size */
    width: auto;
}

.subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.25rem);
    color: #a7b2f5;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.story {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 3rem auto;
    color: #c0c0e0;
}

.story p {
    margin-bottom: 1rem;
}

.cta-button {
    display: inline-block;
    background: #667eea;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.2);
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    background-color: #764ba2;
}

.stats-showcase {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 200px;
    flex: 1; /* Allow items to grow and fill space */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center content vertically */
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
}

.stat-label {
    font-size: 1rem;
    color: #a7b2f5;
}

.test-types-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 0.75rem; /* Space between tags and the label */
}

.test-type-tag {
    background-color: rgba(167, 178, 245, 0.2); /* A lighter version of the label color */
    color: #d6c2e8;
    padding: 0.5rem 1rem;
    border-radius: 20px; /* Pill shape */
    font-weight: 600;
    font-size: 1.1rem;
    align-items: center;
}
