/* Enchaid - Custom Styles (loaded with Tailwind CDN) */
html {
    overflow-x: hidden;
    width: 100%;
    scroll-behavior: smooth;
}

body {
    background-color: #F9F8F6;
    color: #111111;
    overflow-x: hidden;
    font-family: 'JetBrains Mono', monospace;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
}

.grid-bg {
    background-size: 40px 40px;
    mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}

#features .grid {
    min-width: 0;
}
#features .feature-card {
    min-width: 0;
    overflow-wrap: break-word;
}

.card-hover {
    transition: all 0.3s ease;
    border-radius: 0;
}
.card-hover:hover {
    transform: translateY(-4px);
    border-color: #111111;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.1);
}

.btn-primary {
    background-color: #111111;
    color: white;
    transition: all 0.2s;
    border-radius: 0;
}
.btn-primary:hover {
    background-color: #FF4D00;
    transform: scale(1.02);
}

.faq-item {
    border-bottom: 1px solid #E5E5E5;
}
.faq-question {
    cursor: pointer;
    transition: all 0.3s ease;
}
.faq-question:hover {
    color: #FF4D00;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}
.faq-answer.active {
    max-height: 300px;
}
.faq-icon {
    transition: transform 0.3s ease;
}
.faq-icon.rotated {
    transform: rotate(180deg);
}
