/* Speaking Page */

.speaking-hero-section{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 697px;
}

.speaking-hero-section .hero-inner{
    justify-content: center;
    height: 100%;
}

.speaking-hero-section .hero-inner .hero-content{
    text-align: center;
    align-items: center;
    padding-top: 0;
}

.speaking-hero-section .hero-inner .hero-content h1{
    font-size: 56px;
    line-height: 1.1;
    max-width: 650px;
    text-wrap: balance;
}

.speaking-hero-section .hero-content p:first-of-type{
    text-transform: none;
    max-width: max-content;
    font-size: 20px;
    max-width: 775px;
}

.speaking-hero-section .hero-content p:nth-of-type(2){
    max-width: 1000px;
    font-size: 20px;
}

.speaking-hero-section .hero-content .primary-btn{
    width: fit-content;
    font-size: 18px;
    line-height: 1.6;
}

@media (max-width: 1024px){
    .speaking-hero-section{
        height: auto;
        padding: 80px 24px;
    }
    .speaking-hero-section .hero-inner .hero-content h1{
        font-size: 48px;
    }
}

@media (max-width: 768px){
    .speaking-hero-section{
        padding: 50px 20px;
    }
    .speaking-hero-section .hero-inner .hero-content h1{
        font-size: 32px;
    }
    .speaking-hero-section .hero-content p:first-of-type{
        font-size: 16px;
    }
    .speaking-hero-section .hero-content p:nth-of-type(2){
        max-width: 100%;
        font-size: 15px;
    }
    .speaking-hero-section .hero-content .primary-btn{
        font-size: 16px;
    }
}




/* Growth Architecture Section Styling */
.growth-architecture-section {
    padding: 100px 24px;
    background-color: var(--body-bg);
    position: relative;
    overflow: hidden;
}

/* Atmospheric red glow at the top center */
.growth-architecture-section::before {
    content: '';
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 267px;
    height: 267px;
    background: rgba(246, 0, 67, 1);

    filter: blur(80px);
    z-index: 0;
}

.architecture-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Typography Hierarchy */
.architecture-title {
    font-family: 'Prata', serif;
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 45px;
    color: var(--text-color);
}

.architecture-title .text-signature {
    font-size: 72px;
    display: inline-block;
}

.metrics-list p {
    font-family: 'Garet', sans-serif;
    font-size: 20px;
    margin-bottom: 10px;
    opacity: 0.85;
}

.copy-highlight, 
.copy-body {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Image Column Styling */
.architecture-visual {
    position: relative;
}

.architecture-visual img {
    width: 100%;
    border-radius: 12px;
    filter: grayscale(100%);
    display: block;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .architecture-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .architecture-content {
        text-align: left !important;
    }

    .architecture-title {
        font-size: 42px;
    }

    .architecture-visual {
        max-width: 550px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .growth-architecture-section {
        padding: 50px 20px;
    }
    .architecture-title {
        font-size: 32px;
        margin-bottom: 25px;
    }
    .architecture-title .text-signature {
        font-size: 38px;
    }
    .metrics-list p, .copy-highlight, .copy-body {
        font-size: 16px;
        margin-bottom: 20px;
    }
    .architecture-visual {
        max-width: 320px;
    }
}














/* Signal Market Section Styling */
.signal-market-section {
    padding: 100px 24px;
    background-color: rgb(19, 19, 19);
    position: relative;
    overflow: hidden;
}

/* Red glow at the bottom center */
.signal-market-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(163, 9, 51, 0.2) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
}

.signal-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: flex-start;
}

.signal-main-title {
    font-family: 'Prata', serif;
    font-size: 64px;
    line-height: 1.1;
}

.signal-intro-text p {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.signal-intro-text .lead-text {
    font-size: 24px;
    opacity: 1;
}

/* Service Grid Styles */
.signal-services-heading {
    font-family: 'Prata', serif;
    font-size: 56px;
    margin-bottom: 60px;
}

.signal-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.signal-service-card {
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 34px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.signal-service-card:hover {
    border-color: rgba(163, 9, 51, 0.4);
    transform: translateY(-5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
}

.service-icon img {
    width: 100%;
    filter: invert(13%) sepia(91%) saturate(4645%) hue-rotate(334deg) brightness(85%) contrast(106%);
}

.service-name {
    font-family: 'Prata', serif;
    font-size: 24px;
    color: #fff;
    margin: 0;
}

.signal-cta-area {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Scaling */
@media (max-width: 1100px) {
    .signal-services-grid { grid-template-columns: repeat(2, 1fr); }
    .signal-intro-grid { grid-template-columns: 1fr; gap: 40px; }
    .signal-main-title { font-size: 48px; }
    .signal-services-heading { font-size: 42px; margin-bottom: 40px; }
}

@media (max-width: 768px) {
    .signal-market-section { padding: 50px 20px; }
    .signal-services-grid { grid-template-columns: 1fr; }
    .signal-main-title { font-size: 32px; }
    .signal-services-heading { font-size: 32px; margin-bottom: 30px; }
    .signal-intro-text p { font-size: 16px; }
    .signal-intro-text .lead-text { font-size: 18px; }
    .signal-service-card { padding: 25px; }
    .service-icon { width: 60px; height: 60px; margin-bottom: 20px; }
    .service-name { font-size: 20px; }
}







/* Structure Infrastructure Section */
.structure-infrastructure-section {
    padding: 120px 24px;
    background-color: var(--body-bg);
}

.structure-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 100px;
    align-items: flex-start;
}

.structure-main-title {
    font-family: 'Prata', serif;
    font-size: 64px;
    line-height: 1.1;
    text-align: left;
}

.structure-intro-text p {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Red Dot List for Structure */
.red-dot-list {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.red-dot-list li {
    font-family: 'Garet', sans-serif;
    font-size: 18px;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.red-dot-list li::before {
    content: '●';
    color: #A30933;
    position: absolute;
    left: 0;
    font-size: 14px;
}

/* Service Grid Styles */
.structure-services-heading {
    font-family: 'Prata', serif;
    font-size: 56px;
    margin: 80px 0 60px;
    
}

.structure-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.structure-service-card {
    background: rgba(68, 68, 68, 0.47);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 34px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.structure-service-card:hover {
    border-color: rgba(163, 9, 51, 0.4);
    transform: translateY(-5px);
}

.structure-cta-area {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Adjustments */
@media (max-width: 1100px) {
    .structure-intro-grid { grid-template-columns: 1fr; gap: 40px; }
    .structure-title-wrap { order: -1; text-align: left !important; }
    .structure-services-grid { grid-template-columns: repeat(2, 1fr); }
    .structure-cta-area { grid-column: span 2; }
    .structure-main-title { font-size: 48px; }
    .structure-services-heading { font-size: 42px; margin: 50px 0 30px; }
}

@media (max-width: 768px) {
    .structure-infrastructure-section { padding: 50px 20px; }
    .structure-main-title { font-size: 32px; }
    .structure-intro-text p { font-size: 16px; }
    .red-dot-list li { font-size: 16px; margin-bottom: 10px; }
    .structure-services-heading { font-size: 32px; margin: 40px 0 25px; }
    .structure-services-grid { grid-template-columns: 1fr; }
    .structure-cta-area { grid-column: span 1; }
    .structure-service-card { padding: 25px; }
}








/* Authority Ecosystem Section */
.authority-ecosystem-section {
    padding: 120px 24px;
    background: rgba(19, 19, 19, 1);

}

.ecosystem-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.ecosystem-main-title {
    font-family: 'Prata', serif;
    font-size: 82px;
    line-height: 1.1;
}

.ecosystem-intro-text p {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.9;
}

.ecosystem-intro-text .lead-text {
    font-size: 24px;
    opacity: 1;
}

.italic-sub {
    font-style: italic;
    opacity: 0.7;
}

/* Component Grid Styles */
.ecosystem-components-heading {
    font-family: 'Prata', serif;
    font-size: 56px;
    margin: 80px 0 60px;
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ecosystem-card {
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 60px 40px;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ecosystem-card:hover {
    border-color: rgba(163, 9, 51, 0.4);
    transform: translateY(-5px);
}

.component-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
}

.component-icon img {
    width: 100%;
    filter: invert(13%) sepia(91%) saturate(4645%) hue-rotate(334deg) brightness(85%) contrast(106%);
}

.component-name {
    font-family: 'Prata', serif;
    font-size: 24px;
    color: #fff;
    margin: 0;
}

/* Responsive Scaling */
@media (max-width: 1100px) {
    .ecosystem-grid { grid-template-columns: repeat(2, 1fr); }
    .ecosystem-intro-grid { grid-template-columns: 1fr; gap: 40px; }
    .ecosystem-main-title { font-size: 48px; }
    .ecosystem-components-heading { font-size: 42px; margin: 50px 0 40px; }
}

@media (max-width: 768px) {
    .authority-ecosystem-section { padding: 50px 20px; }
    .ecosystem-grid { grid-template-columns: 1fr; }
    .ecosystem-main-title { font-size: 32px; }
    .ecosystem-intro-text p { font-size: 16px; }
    .ecosystem-intro-text .lead-text { font-size: 18px; }
    .ecosystem-components-heading { font-size: 32px; margin: 40px 0 30px; }
    .ecosystem-card { padding: 30px 20px; min-height: auto; }
    .component-icon { width: 60px; height: 60px; margin-bottom: 20px; }
    .component-name { font-size: 20px; }
}







/* Authority Room Section Styling */
.authority-room-section {
    padding: 120px 24px;
    background-color: var(--body-bg);
    position: relative;
    overflow: hidden;
}

.room-flex-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Typography Hierarchy */
.room-title {
    font-family: 'Prata', serif;
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 45px;
    color: var(--text-color);
}

.room-title .text-signature {
    font-size: 72px;
}

.room-copy-stack {
    max-width: 550px;
}

.copy-lead, 
.copy-body {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Image Column & Glow Effect */
.room-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.room-visual img {
    width: 100%;
    filter: grayscale(100%);
    position: relative;
    z-index: 1;
    display: block;
}

/* Red radial glow behind the subject */
.room-visual .red-atmospheric-glow {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translate(-50%, -50%);
    width: 260px;
    height: 260px;
    background-color: rgba(246, 0, 67, 0.4);
    filter: blur(80px);
    z-index: 0;
}

/* Responsive Scaling */
@media (max-width: 1024px) {
    .room-flex-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .room-title {
        font-size: 42px;
    }

    .room-visual {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .authority-room-section { padding: 50px 20px; }
    .room-title { font-size: 32px; margin-bottom: 25px; }
    .room-title .text-signature { font-size: 38px; }
    .copy-lead, .copy-body { font-size: 16px; margin-bottom: 20px; }
    .room-visual { max-width: 320px; }
}







/* Aligned Brands Section Styling */
.aligned-brands-section {
    padding: 120px 24px;
    background-color: var(--body-bg);
    position: relative;
    overflow: hidden;
}

/* Atmospheric red glow on the far left edge */
.aligned-brands-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -100px;
    transform: translateY(-50%);
    width: 400px;
    height: 600px;
    background: radial-gradient(circle, rgba(163, 9, 51, 0.25) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
}

.aligned-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Visual Styling */
.aligned-visual img {
    width: 100%;
    border-radius: 12px;
    filter: grayscale(100%);
    display: block;
}

/* Typography Hierarchy */
.aligned-title {
    font-family: 'Prata', serif;
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 45px;
    color: var(--text-color);
}

.aligned-title .text-signature {
    font-size: 78px;
}

.copy-intro {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.9;
}

/* Red Dot Outcomes List */
.aligned-outcomes-list {
    list-style: none;
    padding: 0;
    margin-bottom: 45px;
}

.aligned-outcomes-list li {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 19px;
    margin-bottom: 18px;
    padding-left: 30px;
    position: relative;
    color: rgba(255, 255, 255, 0.85);
}

.aligned-outcomes-list li::before {
    content: '●';
    color: #A30933; /* Brand Primary Red */
    position: absolute;
    left: 0;
    font-size: 14px;
    top: 1px;
}

.copy-body {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Responsive Scaling */
@media (max-width: 1024px) {
    .aligned-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .aligned-title {
        font-size: 42px;
    }

    .aligned-visual {
        max-width: 550px;
        margin: 0 auto;
        order: 2; /* Image appears after content on mobile */
    }
}

@media (max-width: 768px) {
    .aligned-brands-section { padding: 50px 20px; }
    .aligned-title { font-size: 32px; margin-bottom: 25px; }
    .aligned-title .text-signature { font-size: 38px; }
    .copy-intro, .copy-body { font-size: 16px; margin-bottom: 20px; }
    .aligned-outcomes-list li { font-size: 16px; margin-bottom: 12px; }
    .aligned-visual { max-width: 320px; }
}


