.fc-hero {
    position: relative;
    min-height: clamp(400px, 60vh, 600px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: clamp(80px, 12vh, 140px) clamp(20px, 4vw, 40px) clamp(40px, 6vh, 80px);
    overflow: hidden;
    z-index: 2;
}

.fc-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.fc-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(197, 165, 114, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(197, 165, 114, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.fc-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.fc-badge {
    display: inline-block;
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(218, 165, 32, 0.2);
    padding: 6px 20px;
    border-radius: 4px;
    margin-bottom: 28px;
    background: rgba(218, 165, 32, 0.04);
}

.fc-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.1;
}

.fc-subtitle {
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(1rem, 1.8vw, 1.4rem);
    color: var(--sandstone);
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.fc-tagline {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.fc-hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Terminal Mockup */
.fc-terminal-section {
    padding: clamp(30px, 4vw, 60px) 20px;
    position: relative;
    z-index: 2;
}

.fc-terminal {
    max-width: 800px;
    margin: 0 auto;
    background: #0c0c12;
    border: 1px solid rgba(218, 165, 32, 0.15);
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 80px rgba(218, 165, 32, 0.03),
        inset 0 1px 0 rgba(218, 165, 32, 0.08);
}

.fc-terminal-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(218, 165, 32, 0.08);
}

.fc-terminal-dots {
    display: flex;
    gap: 6px;
}

.fc-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.fc-dot-red { background: #e74c3c; }
.fc-dot-yellow { background: #f1c40f; }
.fc-dot-green { background: #2ecc71; }

.fc-terminal-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    color: var(--text-secondary);
    flex: 1;
    text-align: center;
    letter-spacing: 0.5px;
}

.fc-terminal-body {
    padding: 20px 24px;
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(0.75rem, 1vw, 0.88rem);
    line-height: 1.8;
    color: var(--text-secondary);
}

.fc-terminal-line {
    margin-bottom: 4px;
    white-space: pre;
}

.fc-prompt {
    color: var(--gold);
    font-weight: 600;
}

.fc-cmd {
    color: var(--text-primary);
}

.fc-output {
    color: rgba(232, 224, 212, 0.6);
}

.fc-highlight {
    color: var(--text-primary);
}

.fc-accent {
    color: var(--gold);
}

.fc-success {
    color: #2ecc71;
}

.fc-cursor {
    color: var(--gold);
    animation: cursorBlink 1s step-end infinite;
}

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

/* Sections */
.fc-section {
    padding: clamp(60px, 8vw, 100px) clamp(20px, 4vw, 40px);
    position: relative;
    z-index: 2;
}

.fc-section-inner {
    max-width: var(--content-max, 1200px);
    margin: 0 auto;
}

.fc-section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 16px;
}

.fc-section-desc {
    text-align: center;
    color: var(--text-secondary);
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto clamp(32px, 5vw, 48px);
}

/* Features */
.fc-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 24px;
}

.fc-feature-card {
    background: linear-gradient(145deg, rgba(18, 18, 26, 0.95), rgba(10, 10, 15, 0.98));
    border: 1px solid rgba(197, 165, 114, 0.08);
    border-radius: 12px;
    padding: clamp(24px, 3vw, 36px);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.fc-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fc-feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(197, 165, 114, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.fc-feature-card:hover::before {
    opacity: 1;
}

.fc-feature-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 16px;
}

.fc-feature-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.fc-feature-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Roles */
.fc-roles-section {
    padding: clamp(40px, 6vw, 80px) clamp(20px, 4vw, 40px);
    position: relative;
    z-index: 2;
}

.fc-roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
}

.fc-role {
    display: flex;
    flex-direction: column;
    padding: 16px 20px;
    background: rgba(18, 18, 26, 0.6);
    border: 1px solid rgba(197, 165, 114, 0.06);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.fc-role:hover {
    border-color: rgba(218, 165, 32, 0.15);
    background: rgba(218, 165, 32, 0.04);
}

.fc-role-name {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 4px;
}

.fc-role-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Tech Stack */
.fc-stack-section {
    padding: clamp(40px, 6vw, 80px) clamp(20px, 4vw, 40px);
    position: relative;
    z-index: 2;
}

.fc-stack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(160px, 100%), 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.fc-stack-item {
    text-align: center;
    padding: 24px 16px;
    background: rgba(18, 18, 26, 0.6);
    border: 1px solid rgba(197, 165, 114, 0.06);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.fc-stack-item:hover {
    border-color: rgba(218, 165, 32, 0.15);
    transform: translateY(-2px);
}

.fc-stack-icon {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 12px;
}

.fc-stack-item h4 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.fc-stack-item p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Installation */
.fc-install-section {
    padding: clamp(40px, 6vw, 80px) clamp(20px, 4vw, 40px);
    position: relative;
    z-index: 2;
}

.fc-install-box {
    background: rgba(18, 18, 26, 0.8);
    border: 1px solid rgba(197, 165, 114, 0.1);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.fc-install-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(197, 165, 114, 0.06);
}

.fc-install-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fc-copy-btn {
    background: rgba(218, 165, 32, 0.1);
    border: 1px solid rgba(218, 165, 32, 0.2);
    border-radius: 6px;
    color: var(--gold);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    padding: 6px 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fc-copy-btn:hover {
    background: rgba(218, 165, 32, 0.2);
}

.fc-install-code {
    padding: 20px;
    overflow-x: auto;
}

.fc-install-code pre {
    margin: 0;
}

.fc-install-code code {
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(0.75rem, 1vw, 0.88rem);
    line-height: 1.7;
    color: var(--text-secondary);
    white-space: pre;
}

.fc-install-comment {
    color: rgba(197, 165, 114, 0.35);
}

/* Philosophy */
.fc-philosophy-section {
    padding: clamp(40px, 6vw, 80px) clamp(20px, 4vw, 40px);
    position: relative;
    z-index: 2;
}

.fc-philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.fc-philo-card {
    padding: 28px 24px;
    background: rgba(18, 18, 26, 0.6);
    border: 1px solid rgba(197, 165, 114, 0.06);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.fc-philo-card:hover {
    border-color: rgba(218, 165, 32, 0.12);
}

.fc-philo-icon {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 14px;
}

.fc-philo-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.fc-philo-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* More Section */
.fc-more-section {
    padding: clamp(40px, 6vw, 80px) clamp(20px, 4vw, 40px);
    position: relative;
    z-index: 2;
}

.fc-more-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.fc-more-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 24px;
    background: rgba(18, 18, 26, 0.8);
    border: 1px solid rgba(197, 165, 114, 0.08);
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.fc-more-card:hover {
    border-color: rgba(218, 165, 32, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.fc-more-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 14px;
}

.fc-more-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.fc-more-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Mobile */
@media (max-width: 900px) {
    .fc-roles-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

@media (max-width: 600px) {
    .fc-features-grid {
        grid-template-columns: 1fr;
    }

    .fc-stack-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fc-philosophy-grid {
        grid-template-columns: 1fr;
    }

    .fc-more-grid {
        grid-template-columns: 1fr;
    }
}
