/* ===== Features Page — features.css ===== */
/* Only styles unique to the features page. Everything else comes from styles.css. */

/* Hero */
.feat-hero {
    text-align: center;
    padding: 80px 0 40px;
}

.feat-hero h2 {
    font-size: 3.2em;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 2px;
    line-height: 1.2;
    margin-bottom: 24px;
}

.feat-hero p {
    font-size: 1.2em;
    color: #b0b0c0;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Stats Bar */
.stats-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 40px 0 80px;
}

.stat-item {
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 20px 28px;
    text-align: center;
    min-width: 130px;
    transition: border-color 0.3s;
}

.stat-item:hover {
    border-color: rgba(212, 175, 55, 0.4);
}

.stat-number {
    display: block;
    font-size: 2em;
    font-weight: 300;
    color: #d4af37;
    letter-spacing: 1px;
    line-height: 1.2;
}

.stat-label {
    display: block;
    font-size: 0.75em;
    color: #808090;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 6px;
}

/* ---- Open layout: remove double-boxing on features page ---- */
/* Sections become transparent spacers — cards carry the visual weight */
.feat-hero ~ .section,
.feat-hero ~ .section.alt-section,
.stats-bar ~ .section,
.stats-bar ~ .section.alt-section {
    background: transparent;
    backdrop-filter: none;
    border: none;
    padding: 60px 20px;
}

/* Keep the exclusive-features section with its special border */
.feat-hero ~ .section.exclusive-features,
.stats-bar ~ .section.exclusive-features {
    background: linear-gradient(135deg, rgba(139, 69, 172, 0.08) 0%, rgba(212, 175, 55, 0.03) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 60px;
}

/* Pill List */
.feat-pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feat-pill-list span {
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: #d4af37;
    padding: 5px 14px;
    font-size: 0.82em;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Technical Strip */
.feat-tech {
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    padding: 40px 0 20px;
    margin-bottom: 40px;
}

.tech-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.tech-item {
    text-align: center;
}

.tech-label {
    display: block;
    font-size: 0.7em;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #606070;
    margin-bottom: 4px;
}

.tech-value {
    display: block;
    font-size: 0.95em;
    color: #d0d0d8;
    font-weight: 400;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .feat-hero h2 {
        font-size: 2em;
    }

    .feat-hero p {
        font-size: 1em;
    }

    .stats-bar {
        gap: 8px;
        padding: 30px 0 50px;
    }

    .stat-item {
        padding: 14px 18px;
        min-width: 100px;
    }

    .stat-number {
        font-size: 1.5em;
    }

    .stat-label {
        font-size: 0.65em;
    }

    .feat-hero ~ .section.exclusive-features,
    .stats-bar ~ .section.exclusive-features {
        padding: 40px 20px;
    }

    .tech-row {
        gap: 24px;
    }
}
