/* ============================================================
   Dualis -- about.html Page Styles
   ============================================================ */

/* -- Mission Card -- */
.mission-card {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    color: white;
    border-radius: 1rem;
    padding: 3rem;
    text-align: center;
    position: relative;
}
.mission-card blockquote {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
}

/* -- Story Body Copy -- */
.story-copy {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 1.5rem;
}
.story-copy--emphasis {
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.85;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* -- Made in the USA Section -- */
.usa-section {
    background: linear-gradient(135deg, #0a0f1e 0%, var(--navy) 50%, #1a2a7a 100%);
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}
.usa-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 70% 50%, rgb(var(--red-rgb) / 0.06) 0%, transparent 50%);
    pointer-events: none;
}
.usa-section .section-label { color: #ff8888; }
.usa-section .section-title { color: white; }
.usa-section .lead-copy {
    font-size: 1.125rem;
    color: rgb(255 255 255 / 0.8);
    line-height: 1.85;
}
.usa-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgb(255 255 255 / 0.08);
    border: 1px solid rgb(255 255 255 / 0.15);
    border-radius: 0.75rem;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
}
.usa-badge .flag-icon { font-size: 2rem; }
.usa-badge .badge-text {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ff8888;
}
.usa-point {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}
.usa-point .point-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 0.625rem;
    background: rgb(var(--red-rgb) / 0.15);
    color: #ff8888;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
.usa-point h5 {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.2rem;
}
.usa-point p {
    font-size: 0.875rem;
    color: rgb(255 255 255 / 0.72);
    margin: 0;
    line-height: 1.55;
}

/* -- About Stats Bar -- */
.about-stats {
    background: var(--navy);
    padding: 3rem 0;
    border-top: 1px solid rgb(255 255 255 / 0.08);
    border-bottom: 1px solid rgb(255 255 255 / 0.08);
}
.about-stat { text-align: center; padding: 0.5rem; }
.about-stat .stat-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff8888;
    line-height: 1;
}
.about-stat .stat-label {
    font-size: 0.875rem;
    color: rgb(255 255 255 / 0.75);
    margin-top: 0.25rem;
    font-weight: 500;
}

/* -- Value Cards -- */
.value-card {
    background: white;
    border-radius: 0.75rem;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border-top: 3px solid var(--red);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.value-card .value-icon {
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    background: var(--navy);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.value-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}
.value-card p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin: 0;
}

/* -- Pitch Cards -- */
.pitch-card {
    background: white;
    border-radius: 0.75rem;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s, transform 0.3s;
}
.pitch-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}
.pitch-card i {
    font-size: 1.75rem;
    color: var(--red);
    margin-bottom: 0.75rem;
    display: block;
}
.pitch-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.4rem;
}
.pitch-card p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin: 0;
}

/* -- Responsive -- */
@media (max-width: 1024px) {
    .usa-section   { padding: 5rem 0; }
    .mission-card  { padding: 2rem; }
}
@media (max-width: 768px) {
    .usa-section             { padding: 4rem 0; }
    .about-stat .stat-num    { font-size: 2rem; }
}
