.title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 5vw, var(--text-2xl));
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-5);
    white-space: pre-line;
    background: linear-gradient(135deg, var(--text) 0%, var(--text) 55%, var(--primary-light) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    color: var(--text-subtle);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: var(--space-6);
    min-height: 1.2em;
}

.subtitle-cursor {
    display: inline-block;
    width: 1px;
    height: 1em;
    background: var(--primary);
    margin-left: 2px;
    vertical-align: text-bottom;
    animation: cursorBlink 1s step-end infinite;
}

.desc {
    font-family: var(--font-sans);
    font-size: var(--text-base);
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 380px;
    margin-bottom: var(--space-8);
}

.footer-text {
    font-family: var(--font-sans);
    font-size: var(--text-xs);
    color: var(--text-subtle);
    letter-spacing: 0.02em;
}