@import url('https://fonts.googleapis.com/css2?family=Prata&display=swap');

:root {
    --blob-color: rgba(246, 0, 67, 0.4);
}

.who-we-are-hero {
    background-image: none;
    padding: 0 0 0 24px;
}

.who-we-are-hero::before {
    content: "";
    position: absolute;
    top: 20%;
    right: 15%;
    width: 300px;
    height: 300px;
    background: var(--blob-color);
    border-radius: 50%;
    filter: blur(50px);
    z-index: 1;
}

.who-we-are-hero>* {
    z-index: 2;
}

.who-we-are-hero .hero-image img {
    width: 415px;
}

@media (max-width: 576px) {
    .who-we-are-hero .hero-image img {
        width: 100%;
        max-width: 300px;
    }
}

.who-we-are-hero .hero-content h1 {
    max-width: 800px;
    line-height: 1.2;
}

.who-we-are-hero .hero-content h1 span {
    font-size: 64px;
}

.who-we-are-hero .hero-content .primary-btn {
    width: fit-content;
    font-size: 18px;
    line-height: 1;
}


/* Strategic Alignment Section Styles */
.why-visibility-section {
    padding: 100px 24px;
    background-color: var(--body-bg);
    position: relative;
    overflow: hidden;
}

/* Subtle red glow in the top-right background */
.why-visibility-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 450px;
    background: rgba(246, 0, 67, 0.4);
    filter: blur(80px);
    z-index: 0;
}

.alignment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.alignment-title {
    font-family: 'Prata', serif;
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 40px;
    color: var(--text-color);
}

.alignment-title .text-signature {
    font-size: 64px;
}

/* Glass Card Content Styling */
.alignment-glass-card {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px 40px;
    border-radius: 4px;
}

.alignment-glass-card .card-text {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.9;
}

.alignment-glass-card .card-highlight {
    font-family: 'Garet', sans-serif;
    font-size: 20px;
    line-height: 1.5;
    margin: 0;
}

.alignment-glass-card .card-highlight strong {
    font-weight: 850;
    /* Garet-Bold */
}

/* Grayscale Portrait Styling */
.alignment-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 8px;
    filter: grayscale(100%);
    display: block;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .alignment-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .alignment-grid :nth-child(2) {
        order: 1;
    }

    .alignment-grid :nth-child(1) {
        order: 2;
    }

    .alignment-title {
        font-size: 42px;
        text-align: left;
    }

    .alignment-image {
        max-width: 550px;
        margin: 0 auto;
    }
}


/* Burnout Section Styles */
.point-of-view-section {
    padding: 100px 0;
    background-color: #000;
    overflow: hidden;
}

.burnout-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.burnout-content {
    flex: 1;
    max-width: 650px;
    z-index: 2;
}

.burnout-title {
    font-family: 'Prata', serif;
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 40px;
    color: var(--text-color);
}

.point-of-view-section .burnout-title span {
    font-size: 64px;
}

.burnout-lead {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

.burnout-footer {
    font-family: 'Garet', sans-serif;
    font-size: 18px;
    font-weight: 300;
}

.burnout-image {
    display: flex;
    justify-content: flex-end;
    position: absolute;
    bottom: 0;
    right: 0;
}

/* Red glow effect seen in the background of your image */
.burnout-image::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(163, 9, 51, 0.4) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
}

.burnout-image img {
    width: 600px;
    position: relative;
    z-index: 1;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .point-of-view-section {
        padding: 60px 0 0 24px;
        display: flex;
        flex-direction: column;
    }

    .burnout-wrapper {
        flex-direction: column;
        text-align: left;
    }

    .burnout-title {
        font-size: 42px;
    }

    .burnout-content {
        max-width: 100%;
    }

    .burnout-title .text-signature {
        font-size: 56px;
    }

    .burnout-image {
        position: static;
        margin-top: 40px;
    }
}

.cards-section {
    padding: 60px 24px;
}

.cards-section .authority-cards {
    margin-bottom: 0;
}

.cards-section .authority-cards .authority-card {
    padding: 24px;
}

.cards-section .authority-cards .authority-card h3 {
    font-size: 24px;
    margin-bottom: 25px;
}

.cards-section .authority-cards .authority-card p {
    font-size: 18px;
    max-width: 292px;
    margin: 0 auto;
}


/* Video Need Section Styles */
.what-we-build-section {
    padding: 100px 24px;
    background-color: var(--body-bg);
    overflow: hidden;
}

.what-we-build-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.video-need-content {
    flex: 1;
    max-width: 600px;
}

.video-need-title {
    font-family: 'Prata', serif;
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--text-color);
}


.video-need-subtitle {
    font-family: 'Prata', serif;
    font-size: 24px;
    margin-bottom: 25px;
    font-weight: 400;
}

.video-need-lead {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 550px;
}

/* List with Small Red Bullets */
.video-need-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.video-need-list li {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 18px;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.video-need-list li::before {
    content: '◉';
    color: #A30933;
    /* Primary Red */
    position: absolute;
    left: 0;
    font-size: 12px;
    top: 2px;
}

.video-need-footer {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.8;
}

/* Image with Radial Glow Background */
.video-speaker-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: end;
    align-items: center;
}

.red-glow-circle {
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(246, 0, 67, 0.4);
    border-radius: 50%;
    filter: blur(45px);
    z-index: 1;
}

.speaker-img {
    position: relative;
    z-index: 2;
    max-width: 100%;
    height: 654px;
}



/* Responsive Mobile Layout */
@media (max-width: 1024px) {
    .what-we-build-wrapper {
        flex-direction: column;
        text-align: left;
    }

    .video-speaker-image {
        margin-top: 60px;
    }

    .video-need-title {
        font-size: 42px;
    }
    
    .speaker-img {
        height: auto;
    }
}



/* Trusted To Shape Section Styles */
.trusted-shape-section {
    padding: 100px 24px;
    background-color: var(--body-bg);
    position: relative;
    overflow: hidden;
}

/* Subtle red glow hitting the center-right to highlight text */
.trusted-shape-section::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(163, 9, 51, 0.2) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
}

.trusted-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Image Styling */
.trusted-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 4px;
    filter: grayscale(100%);
    display: block;
}

/* Typography Styling */
.trusted-title {
    font-family: 'Prata', serif;
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 45px;
    color: var(--text-color);
}

.trusted-title .text-signature {
    display: inline-block;
    font-size: 72px;
}

.trusted-copy-wrapper {
    max-width: 580px;
}

.trusted-text {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 35px;
    opacity: 0.9;
}

.trusted-highlight {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

.trusted-highlight strong {
    font-weight: 850;
    /* Utilizing your Garet-Bold weight */
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .trusted-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .trusted-title {
        font-size: 42px;
        text-align: left;
    }

    .trusted-title .text-signature {
        font-size: 52px;
    }

    .trusted-image {
        max-width: 500px;
        margin: 0 auto;
    }
}


/* Organizations Hosted Section */
.hosted-organizations-section {
    padding: 100px 0;
    background-color: var(--body-bg);
    text-align: center;
}

.organizations-title {
    font-family: 'Prata', serif;
    font-size: 56px;
    color: var(--text-color);
    /* margin-bottom: 80px; */
}

/* Slick Slider Container */
.organizations-slider {
    width: 100%;
}

.logo-slide {
    margin: 0 20px;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

/* Replicating the "Torn Paper/Stamp" look from image_e212c0.png */
.logo-slide .logo-container {
    width: 196px;
    height: 200px;
    background-size: contain;
    background-repeat: no-repeat;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30.96px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.logo-slide .logo-container img {
    width: 115px;
}

.logo-slide img:hover {
    filter: grayscale(0%);
}

@media (max-width: 768px) {
    .organizations-title {
        font-size: 32px;
        padding: 0 20px;
    }
}




/* Stephanie Bio Section Styles */
.about-stephanie-section {
    padding: 100px 24px;
    background-color: var(--body-bg);
    position: relative;
    overflow: hidden;
}

.about-header {
    margin-bottom: 80px;
}

.ceo-label {
    display: block;
    font-family: 'Garet', sans-serif;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    opacity: 0.8;
}

.ceo-label strong {
    font-weight: 850;
}

.about-main-title {
    font-family: 'Prata', serif;
    font-size: 64px;
    line-height: 1.1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.bio-para {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.bio-para:last-child {
    margin-bottom: 0;
}

/* Image Column and Glow */
.about-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.red-bio-glow {
    position: absolute;
    top: 50%;
    left: -20%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(163, 9, 51, 0.3) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
}

.bio-img {
    width: 100%;
    max-width: 600px;
    border-radius: 12px;
    filter: grayscale(100%);
    position: relative;
    z-index: 1;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-main-title {
        font-size: 42px;
    }

    .about-image {
        order: -1;
        /* Image moves above bio on mobile */
        max-width: 500px;
        margin: 0 auto;
    }

    .red-bio-glow {
        left: 50%;
        transform: translate(-50%, -50%);
    }
}


/* Collective Section Styling */
.collective-section {
    padding: 100px 0px;
    background-color: var(--body-bg);
    overflow: hidden;
}

.collective-header {
    max-width: 800px;
    margin: 0 auto 80px;
}

.collective-title {
    font-family: 'Prata', serif;
    font-size: 56px;
    margin-bottom: 25px;
}

.collective-intro {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 18px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.collective-lead {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Slider and Cards */
.team-slide {
    padding-right: 30px;
    padding-left: 0;
}

.team-card {
    background: rgba(15, 15, 15, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px 40px;
    border-radius: 12px;
    height: 100%;
    min-height: 650px;
}

.team-image {
    width: 150px;
    height: 150px;
    margin-bottom: 35px;
}

.team-image img {
    width: 100%;
    height: 100%;
    max-width: 150px;
    object-fit: cover;
    border-radius: 50%;
    filter: grayscale(100%);
    border: 1px solid rgba(166, 49, 81, 0.3);
}

.member-name {
    font-family: 'Prata', serif;
    font-size: 32px;
    margin-bottom: 10px;
}

.member-role {
    display: block;
    font-family: 'Garet', sans-serif;
    font-weight: 850;
    font-size: 14px;
    text-transform: uppercase;
    color: rgba(166, 49, 81, 1);
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.member-bio p {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.collective-slider {
    /* padding-right: 40px; Removed to fix layout */
}


/* Slick Customization */
.collective-slider .slick-dots li button:before {
    color: #fff;
}

.collective-slider .slick-dots li.slick-active button:before {
    color: rgba(166, 49, 81, 1);
}

.collective-slider .slick-list {
    overflow: hidden;
}

.collective-slider .slick-track {
    margin-left: 0 !important;
}


/* Why We Exist Section Styling */
.why-we-exist-section {
    padding: 100px 24px;
    background-color: var(--body-bg);
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Central red atmospheric glow */
.why-we-exist-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(163, 9, 51, 0.25) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
}

.why-title {
    font-family: 'Prata', serif;
    font-size: 56px;
    color: var(--text-color);
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.mission-vision-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

/* Exist Card Styling */
.exist-card {
    background: rgba(15, 15, 15, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    padding: 60px 50px;
    text-align: left;
    backdrop-filter: blur(10px);
    height: 100%;
    max-width: 550px;
}

.exist-card .card-subtitle {
    font-family: 'Prata', serif;
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--text-color);
}

.exist-card .card-text {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 19px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .mission-vision-grid {
        flex-direction: column;
    }
    
    .why-title {
        font-size: 42px;
    }

    .exist-card {
        padding: 40px 30px;
    }
}



/* What We Stand For Section Styles */
.what-we-stand-for-section {
    padding: 100px 24px;
    background-color: var(--body-bg);
    position: relative;
    overflow: hidden;
}

/* Red atmospheric glow behind the text */
.what-we-stand-for-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(163, 9, 51, 0.3) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
}

.stand-for-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.stand-for-title {
    font-family: 'Prata', serif;
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 40px;
    color: var(--text-color);
}

.stand-for-title .text-signature {
    font-size: 72px;
}

/* Values Card Styling */
.stand-for-glass-card {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: 4px;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    margin-bottom: 35px;
    padding-left: 30px;
    position: relative;
}

.values-list li:last-child {
    margin-bottom: 0;
}

/* Custom Red Bullet */
.values-list li::before {
    content: '◉';
    color: #A30933;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 16px;
}

.values-list strong {
    display: block;
    font-family: 'Garet', sans-serif;
    font-weight: 850; /* Garet-Bold */
    font-size: 20px;
    margin-bottom: 8px;
}

.values-list span {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 18px;
    opacity: 0.8;
}

/* Image Column */
.stand-for-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 8px;
    filter: grayscale(100%);
    display: block;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .stand-for-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .stand-for-title {
        font-size: 42px;
    }

    .stand-for-image {
        max-width: 600px;
        margin: 0 auto;
    }
}


@media (max-width: 576px){
    section{
        padding: 60px 24px !important;
    }
}