/* Brave Spaces Page Styles */

/* Hero */
.brave-hero {
    background: radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.12), transparent 45%),
        linear-gradient(135deg, #031226 0%, #05365a 60%, #0b6aa0 100%);
    color: #e6f6ff;
    padding: clamp(3rem, 8vw, 6rem) 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        /* grid-template-columns: 1.2fr 0.8fr; */
        align-items: center;
    }
}

.hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
}

.hero-image {
    margin: 0;
    width: min(440px, 100%);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-image img {
    width: 100%;
    display: block;
    height: auto;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #7fdcff;
}

.hero-eyebrow::before {
    content: '';
    width: 18px;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
}

.hero-title {
    font-size: clamp(2.75rem, 6vw, 4.5rem);
    margin: 1rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-body {
    font-size: 1.15rem;
    line-height: 1.9;
    max-width: 680px;
    color: rgba(230, 246, 255, 0.95);
    margin: auto;
}

.hero-card-stack {
    display: grid;
    gap: 1.25rem;
    width: 100%;
}

.hero-card-stack .hero-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(127, 220, 255, 0.35);
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-card h3 {
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #7fdcff;
    margin: 0 0 0.75rem;
}

.hero-card p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: #f2fbff;
}

@media (min-width: 1024px) {
    .hero-visual .hero-card-stack {
        position: absolute;
        bottom: -1.5rem;
        width: 75%;
    }
}

/* Shared Section Styles */
.brave-section {
    padding: clamp(3rem, 6vw, 5rem) 0;
}

.brave-section--navy {
    background: linear-gradient(135deg, #020c19, #071e32);
    color: #f5fbff;
}

.brave-section--light {
    background: #f7fbff;
}

.brave-section--gradient {
    background: linear-gradient(140deg, #04203a, #063e69 55%, #0f5d94);
    color: #f5fbff;
}

.section-header {
    max-width: 900px;
    margin: 0 auto 2rem;
    text-align: left;
}

.section-eyebrow {
    display: inline-flex;
    font-size: 0.85rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #0892d0;
    margin-bottom: 1rem;
}

.brave-section--navy .section-eyebrow,
.brave-section--gradient .section-eyebrow {
    color: #7fdcff;
}

.section-header h2 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    margin: 0 0 1rem;
    color: #062844;
}

.brave-section--navy .section-header h2,
.brave-section--gradient .section-header h2 {
    color: #f8feff;
}

.section-lede {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #1d3f5c;
    margin: 0;
}

.brave-section--navy .section-lede {
    color: rgba(245, 251, 255, 0.85);
}

/* Content Blocks */
.content-block {
    max-width: 900px;
    margin: 0 auto;
}

.content-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 1.5rem;
}

.brave-section--navy .content-block p,
.brave-section--gradient .content-block p {
    color: rgba(248, 254, 255, 0.85);
}

/* Brave List */
.brave-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.brave-list li {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(8, 146, 208, 0.3);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #ffffff;
    position: relative;
    padding-left: 3.5rem;
    transition: all 0.3s ease;
}

.brave-list li::before {
    content: '✓';
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #0892D0, #0C4065);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
}

.brave-list li:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(8, 146, 208, 0.5);
    transform: translateX(8px);
}

/* Care List */
.care-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.care-list li {
    background: #f8f8f8;
    border-left: 4px solid #0892D0;
    border-radius: 0 8px 8px 0;
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333333;
    transition: all 0.3s ease;
}

.care-list li:hover {
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateX(8px);
}

.care-list li strong {
    color: #0892D0;
    font-weight: 700;
}

/* Audience List - Multi-column Grid */
.audience-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .audience-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .audience-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

.audience-list li {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(8, 146, 208, 0.3);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.audience-list li::before {
    content: '→';
    color: #0892D0;
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.audience-list li:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(8, 146, 208, 0.5);
    transform: scale(1.02);
}

/* CTA Section */
.brave-cta {
    background: linear-gradient(135deg, #031226, #053c63 55%, #0a6aa1);
    padding: clamp(3rem, 6vw, 4.5rem) 0;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(135deg, #0892D0, #0C4065);
    color: #ffffff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(8, 146, 208, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #0892D0;
    border: 2px solid #0892D0;
}

.btn-secondary:hover {
    background: #0892D0;
    color: #ffffff;
}

.brave-cta .btn-secondary {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.85);
}

.brave-cta .btn-secondary:hover {
    background: #ffffff;
    color: #054069;
}

/* Responsive Typography */
@media (max-width: 767px) {
    .intro-heading {
        font-size: 1.75rem;
    }

    .intro-text {
        font-size: 1.05rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .brave-list li,
    .care-list li {
        padding: 1.25rem 1.5rem;
        padding-left: 3rem;
        font-size: 1rem;
    }

    .brave-list li::before {
        left: 1rem;
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
    }

    .audience-list li {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }
}

/* Smooth Scrolling */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Respect Reduced Motion Preference */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Print Styles */
@media print {
    .brave-list li,
    .care-list li,
    .audience-list li {
        break-inside: avoid;
    }

    .section {
        page-break-inside: avoid;
    }
}
