/* continua.st */
/* Colors: #2C3440, #E8DDD0, #5B6B7A, #F5F0E8, #7A9B8A, #1A2028, #3A4A58, #A0B0B8, #D0C8B8, #0F1518 */

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

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    background: #F5F0E8;
    color: #2C3440;
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    background: #F5F0E8;
    position: relative;
    overflow: hidden;
}

.continuum-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #7A9B8A 20%, #7A9B8A 80%, transparent);
    opacity: 0.4;
}

.hero-title {
    font-family: 'Lora', serif;
    font-weight: 700;
    font-size: clamp(3rem, 10vw, 6rem);
    color: #2C3440;
    position: relative;
    z-index: 2;
    opacity: 0;
    animation: fadeIn 1.5s ease forwards;
}

@keyframes fadeIn { to { opacity: 1; } }

.hero-sub {
    font-weight: 300;
    font-size: 17px;
    color: #5B6B7A;
    margin-top: 16px;
    position: relative;
    z-index: 2;
    opacity: 0;
    animation: fadeIn 1s 0.8s ease forwards;
}

.section {
    padding: 100px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #F5F0E8;
}

.section-alt { background: #E8DDD0; }

.section-title {
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: clamp(2rem, 5vw, 3rem);
    color: #2C3440;
    margin-bottom: 20px;
}

.section-text {
    font-weight: 300;
    font-size: 17px;
    color: #5B6B7A;
    max-width: 600px;
    margin-bottom: 40px;
}

.spectrum-bar {
    max-width: 500px;
    width: 100%;
}

.spectrum-gradient {
    height: 8px;
    border-radius: 4px;
    background: linear-gradient(90deg, #2C3440, #7A9B8A, #D0C8B8);
    margin-bottom: 12px;
}

.spectrum-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #5B6B7A;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.field-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    max-width: 700px;
    width: 100%;
}

.field-item {
    padding: 24px;
    border: 1px solid #D0C8B8;
    text-align: left;
    transition: border-color 0.3s ease;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s ease;
}

.field-item.visible { opacity: 1; transform: translateY(0); }
.field-item:hover { border-color: #7A9B8A; }

.field-item h3 {
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 18px;
    color: #2C3440;
    margin-bottom: 8px;
}

.field-item p { font-size: 14px; color: #5B6B7A; }

.site-footer {
    text-align: center;
    padding: 40px;
    background: #1A2028;
    color: #3A4A58;
    font-size: 13px;
}

@media (max-width: 768px) {
    .section { padding: 60px 24px; }
    .field-list { grid-template-columns: 1fr; }
}
