/* cbdc.studio */
/* Colors: #151B2B, #00E5A0, #C9A84C, #8B95A8, #E05C4A, #0D1220, #1E2640, #2A3350, #F0ECE2, #FFFFFF */

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

body {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    background: #0D1220;
    color: #F0ECE2;
    overflow-x: hidden;
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    background: radial-gradient(ellipse at center, #151B2B 0%, #0D1220 70%);
}

.terminal-prompt {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 14px;
    color: #00E5A0;
    margin-bottom: 30px;
    animation: blink-cursor 1s step-end infinite;
}

@keyframes blink-cursor {
    50% { opacity: 0.5; }
}

.hero-title {
    font-weight: 700;
    font-size: clamp(3rem, 10vw, 7rem);
    color: #FFFFFF;
    opacity: 0;
    animation: fadeIn 1.5s ease forwards;
}

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

.hero-sub {
    font-weight: 400;
    font-size: 16px;
    color: #8B95A8;
    margin-top: 16px;
    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: #0D1220;
}

.section-alt { background: #151B2B; }

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

.section-text {
    font-size: 17px;
    color: #8B95A8;
    max-width: 600px;
    margin-bottom: 40px;
}

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

.module {
    border: 1px solid #1E2640;
    padding: 30px;
    text-align: left;
    transition: border-color 0.3s ease;
}

.module:hover { border-color: #00E5A0; }

.module-icon {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-bottom: 16px;
}

.module h3 {
    font-size: 18px;
    color: #F0ECE2;
    margin-bottom: 8px;
}

.module p {
    font-size: 14px;
    color: #8B95A8;
}

.workflow-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 500px;
    width: 100%;
}

.step {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    border-left: 2px solid #2A3350;
    padding-left: 20px;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.step.visible { opacity: 1; transform: translateX(0); }

.step-num {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 28px;
    color: #C9A84C;
    flex-shrink: 0;
}

.step p { font-size: 15px; color: #8B95A8; }

.closing-text {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 18px;
    color: #00E5A0;
    min-height: 30px;
}

.site-footer {
    text-align: center;
    padding: 40px;
    background: #0D1220;
    color: #1E2640;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
}

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