.about-hero {
    background: var(--dark);
    border-bottom: none;
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.about-hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
        repeating-linear-gradient(
            -55deg, transparent, transparent 40px,
            rgba(255,255,255,.018) 40px,
            rgba(255,255,255,.018) 41px
        );
    pointer-events: none;
}
.about-hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 1rem;
    color: #fff;
    position: relative;
    z-index: 1;
}
.about-hero h1 span { color: var(--primary); }
.about-hero p {
    color: rgba(255,255,255,.55);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.about-content { max-width: 900px; margin: 0 auto; padding: 3rem 2rem; }

.about-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
    transition: box-shadow .2s, border-color .2s;
}
.about-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(249,115,22,.25);
}
.about-card h2 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: .5rem;
}
.about-card h2 .icon-accent { color: var(--primary); }
.about-card p {
    color: var(--text2);
    line-height: 1.8;
    font-size: .95rem;
}
.about-card ul {
    list-style: none;
    color: var(--text2);
    font-size: .95rem;
    line-height: 1.8;
}
.about-card ul li::before { content: '✦ '; color: var(--primary); }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}
.feature-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    transition: border-color .2s, box-shadow .2s, transform .2s;
}
.feature-item:hover {
    border-color: var(--primary);
    box-shadow: 0 6px 20px rgba(249,115,22,.1);
    transform: translateY(-3px);
}
.feature-icon { font-size: 2rem; margin-bottom: .7rem; }
.feature-title { font-weight: 700; margin-bottom: .35rem; color: var(--text); }
.feature-desc { font-size: .82rem; color: var(--muted); }

.cta-section {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--dark);
    border-top: none;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute; inset: 0;
    background:
        repeating-linear-gradient(
            -55deg, transparent, transparent 40px,
            rgba(255,255,255,.018) 40px,
            rgba(255,255,255,.018) 41px
        );
    pointer-events: none;
}
.cta-section h2 {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: .75rem;
    color: #fff;
    position: relative; z-index: 1;
}
.cta-section h2 span { color: var(--primary); }
.cta-section p { color: rgba(255,255,255,.55); margin-bottom: 2rem; position: relative; z-index: 1; }
.cta-section .btn { position: relative; z-index: 1; }
