/* Our Story Long-Form Page Styles */

/* Hero */
.story-hero {
    position: relative;
    background: linear-gradient(120deg, #031226, #0c4065 45%, #0d7bc4);
    overflow: hidden;
    padding: clamp(3rem, 10vw, 6.5rem) 0;
}

.story-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.15), transparent 50%),
        url("../assets/pattern.png") center/cover no-repeat;
    opacity: 0.3;
    mix-blend-mode: screen;
    pointer-events: none;
}

.story-hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(1.5rem, 4vw, 4rem);
    align-items: stretch;
}

.story-hero-copy {
    color: #ffffff;
}

.eyebrow-label--light {
    color: #8fe3ff;
    background: rgba(255, 255, 255, 0.12);
}

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

.story-hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.9;
    margin: 0;
    max-width: 540px;
}

.story-hero-highlights {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
}

.hero-highlight {
    background: rgba(5, 18, 32, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 25px 45px rgba(2, 8, 16, 0.35);
}

.highlight-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #8fe3ff;
}

.highlight-label {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #dcefff;
}

.story-hero-visual {
    margin: 0;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
    min-height: 320px;
    align-items: center;
    justify-content: center;
}

.story-hero-visual img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Mobile TOC Toggle */
.mobile-toc-toggle {
    display: block;
    background: #2a2a2a;
    border-bottom: 1px solid rgba(8, 146, 208, 0.2);
    position: sticky;
    top: 80px;
    z-index: 900;
}

.toc-toggle-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.toc-toggle-btn:hover {
    background: rgba(8, 146, 208, 0.1);
}

.toc-toggle-btn span {
    flex: 1;
    text-align: left;
}

.toc-chevron {
    transition: transform 0.3s ease;
}

.toc-toggle-btn[aria-expanded="true"] .toc-chevron {
    transform: rotate(180deg);
}

@media (min-width: 1024px) {
    .mobile-toc-toggle {
        display: none;
    }
}

/* Story Layout */
.story-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    background: #ffffff;
    position: relative;
    width: 100%;
}

@media (min-width: 1024px) {
    .story-layout {
        grid-template-columns: 280px 1fr;
        gap: 4rem;
        padding: 0 1rem;
    }
}

@media (min-width: 1280px) {
    .story-layout {
        grid-template-columns: 320px 1fr;
        gap: 5rem;
        padding: 0 1.5rem;
    }
}

/* Sticky Table of Contents */
.story-toc {
    display: none;
    background: #f8f8f8;
    border-right: 1px solid #e0e0e0;
}

.story-toc.mobile-open {
    display: block;
    padding: 2rem 1.5rem;
    position: sticky;
    top: 130px;
    z-index: 999;
}

@media (min-width: 1024px) {
    .story-toc {
        display: block;
        position: sticky;
        top: 120px;
        align-self: start;
        max-height: calc(100vh - 140px);
        overflow-y: auto;
        /*padding: 2rem 0;*/
    }
}

.toc-nav {
    width: 100%;
}

.toc-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #666666;
    margin-bottom: 1.5rem;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li {
    /*margin-bottom: 0.5rem;*/
}

.toc-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: #555555;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.toc-link:hover {
    background: rgba(8, 146, 208, 0.1);
    color: #2a2a2a;
}

.toc-link:focus {
    outline: 2px solid #0892D0;
    outline-offset: 2px;
}

.toc-link.active {
    background: rgba(8, 146, 208, 0.15);
    color: #2a2a2a;
    border-left-color: #0892D0;
    font-weight: 600;
}

.toc-number {
    font-size: 0.75rem;
    font-weight: 700;
    color: #0892D0;
    min-width: 2rem;
}

.toc-text {
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Story Content */
.story-content {
    padding: 3rem 1.5rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .story-content {
        padding: 4rem 2rem;
    }
}

@media (min-width: 1024px) {
    .story-content {
        padding: 4rem 0;
    }
}

/* Story Sections */
.story-section {
    margin-bottom: 5rem;
    scroll-margin-top: 100px;
}

.eyebrow-label {
    display: inline-flex;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: #8fe3ff;
    background: rgba(255, 255, 255, 0.12);
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 1.25rem;
}

.eyebrow-label--dark {
    color: #0c4d80;
    background: rgba(12, 77, 128, 0.12);
}

.our-why-case {
    background: linear-gradient(90deg, #eff5fb 0%, #f5f8fd 45%, #0e87c9 45%, #0790d8 100%);
    border-radius: 32px;
    padding: clamp(2rem, 4vw, 3.5rem);
    box-shadow: 0 25px 50px rgba(4, 33, 58, 0.2);
}

.our-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: stretch;
}

.our-why-copy {
    color: #0c4065;
    max-width: 520px;
    padding-right: clamp(0.5rem, 3vw, 2rem);
    text-align: left;
}

.our-why-title {
    font-size: clamp(1.2rem, 3vw, 4.25rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.05;
    margin: 0 0 1.5rem;
    color: #0073b5;
}

.our-why-copy p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.35rem;
    color: #163250;
}

.our-why-visual {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.our-why-photo {
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.25);
    border: 4px solid rgba(255, 255, 255, 0.4);
    background: #052c4c;
}

.our-why-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.our-why-photo--wide {
    flex: 1;
}

.our-why-photo-stack {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
}

@media (max-width: 768px) {
    .our-why-case {
        background: linear-gradient(180deg, #eff5fb 0%, #f5f8fd 55%, #0790d8 55%, #0790d8 100%);
    }

    .our-why-photo--wide {
        min-height: 220px;
    }
}

.system-section {
    position: relative;
}

.system-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1.5rem, 4vw, 3rem);
    background: linear-gradient(135deg, #f1f6fb, #ffffff);
    border-radius: 28px;
    padding: clamp(1.75rem, 4vw, 3rem);
    box-shadow: 0 20px 40px rgba(6, 30, 49, 0.15);
}

.system-column--left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.system-hero {
    margin: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 35px rgba(12, 64, 101, 0.25);
}

.system-hero img {
    width: 100%;
    display: block;
}

.system-copy .section-heading {
    color: #0c4065;
    margin-bottom: 1rem;
}

.system-copy .section-heading::after {
    background: linear-gradient(90deg, #0c4065, rgba(12, 64, 101, 0));
}

.system-lead {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #0c4065;
    margin-bottom: 1rem;
}

.system-body {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #1d2d3a;
    margin-bottom: 1.1rem;
}

.system-body strong {
    display: block;
    font-weight: 800;
    color: #0a5e99;
    text-transform: none;
    letter-spacing: 0.02em;
    margin-bottom: 0.15rem;
}

.system-footnote {
    font-size: 0.95rem;
    color: #3b4b5c;
    line-height: 1.7;
}

.system-column--right {
    display: flex;
    align-items: stretch;
    scroll-margin-top: 100px;
}

#youth-left-behind {
    scroll-margin-top: 100px;
}

.system-card {
    background: #052c4c;
    color: #ffffff;
    border-radius: 24px;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    box-shadow: 0 20px 40px rgba(5, 12, 20, 0.4);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.system-card h3 {
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.system-card p {
    margin: 0;
    line-height: 1.8;
}

.system-portrait {
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.4);
}

.system-portrait img {
    width: 100%;
    display: block;
}

@media (max-width: 768px) {
    .system-card {
        padding: 1.5rem;
    }
}

.section-heading {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 900;
    color: #2a2a2a;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #0892D0, #0C4065);
}

/* Section Subheading (H3 as section header) */
.section-subheading {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 900;
    color: #2a2a2a;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-subheading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #0892D0, #0C4065);
}

/* Prose Styling */
.prose {
    color: #333333;
}

.prose .lead {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #2a2a2a;
    font-weight: 500;
    margin-bottom: 2rem;
}

.prose p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.prose h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2a2a2a;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

/* Subsection Heading (H2 within prose) */
.subsection-heading {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 900;
    color: #2a2a2a;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.prose h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2a2a2a;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.prose ul, .prose ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.prose li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

/* Story Quote */
.story-quote {
    border-left: 4px solid #0892D0;
    padding: 1.5rem 2rem;
    margin: 2.5rem 0;
    background: #f8f8f8;
    border-radius: 0 8px 8px 0;
    font-size: 1.15rem;
    line-height: 1.7;
    font-style: italic;
    color: #2a2a2a;
}

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

.barriers-list li {
    background: #f8f8f8;
    border-left: 4px solid #0892D0;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: 0 8px 8px 0;
    transition: all 0.3s ease;
}

.barriers-list li:hover {
    background: #f0f0f0;
    transform: translateX(4px);
}

.barriers-list li strong {
    color: #0892D0;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

/* Story Image */
.story-image {
    margin: 3rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

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

.story-image figcaption {
    padding: 1rem 1.5rem;
    background: #f8f8f8;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666666;
    font-style: italic;
    text-align: center;
}

/* Partner List */
.partner-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

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

.partner-list li {
    background: #f8f8f8;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    font-weight: 600;
    color: #2a2a2a;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.partner-list li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #0892D0, #0C4065);
    color: #ffffff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.partner-list li:hover {
    border-color: #0892D0;
    background: rgba(8, 146, 208, 0.05);
    transform: translateX(4px);
}

/* Callout Box */
.callout-box {
    background: linear-gradient(135deg, rgba(8, 146, 208, 0.12), rgba(12, 64, 101, 0.12));
    border: 2px solid #0892D0;
    border-radius: 12px;
    padding: 2rem;
    margin: 2.5rem 0;
}

.callout-box h4 {
    color: #0892D0;
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 1rem;
}

/* Principles Grid */
.principles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

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

.principle-card {
    background: #f8f8f8;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.principle-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: #0892D0;
}

.principle-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0892D0, #0C4065);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.principle-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2a2a2a;
    margin: 0 0 0.75rem 0;
}

.principle-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555555;
    margin: 0;
}

/* Impact Story Layout */
.impact-section {
    background: radial-gradient(circle at 15% 30%, rgba(255, 255, 255, 0.08), transparent 55%),
        linear-gradient(135deg, #03152d 0%, #062d52 55%, #0a4f82 100%);
    border-radius: 32px;
    padding: clamp(2.5rem, 5vw, 4rem);
    color: #ffffff;
    box-shadow: 0 30px 80px rgba(2, 10, 23, 0.5);
}

.impact-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 4vw, 3.5rem);
}

@media (min-width: 1024px) {
    .impact-highlights {
        grid-template-columns: 0.9fr 1.1fr;
        align-items: stretch;
    }
}

.impact-left {
    background: rgba(6, 28, 53, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: clamp(1.5rem, 4vw, 3rem);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

.impact-left::after {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px dashed rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    pointer-events: none;
}

.impact-mantra {
    font-size: clamp(1.5rem, 3vw, 4.5rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 0.95;
    color: #5fd1ff;
    position: relative;
    z-index: 1;
}

.impact-mantra span {
    display: block;
}

.impact-left-copy {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #d8ecff;
    margin: 0;
    position: relative;
    z-index: 1;
}

.impact-portrait {
    margin: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
    position: relative;
    z-index: 1;
}

.impact-portrait img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;

}

.impact-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.impact-right-header {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(176, 222, 255, 0.9);
}

.impact-right-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin: 0 0 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #4fceff;
}

.impact-right-subtitle {
    font-size: 1rem;
    text-transform: none;
    letter-spacing: normal;
    line-height: 1.8;
    color: #d4e9ff;
    max-width: 520px;
    margin: 0;
}

.impact-pills {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.impact-pill {
    background: rgba(1, 12, 24, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    padding: 1.25rem 1.75rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.impact-pill:hover {
    border-color: #54c9ff;
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(6, 82, 131, 0.4);
}

.pill-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(145deg, #46b0ff, #0675c0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.25);
}

.pill-content {
    flex: 1;
}

.pill-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #f8fdff;
    margin: 0 0 0.4rem 0;
}

.pill-blurb {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Meet Seba Section */
.meet-seba-section {
    margin-top: 5rem;
    padding: clamp(3rem, 6vw, 5rem);
    border-top: none;
    background: linear-gradient(135deg, #e3f2ff 0%, #f7fbff 55%, #c6e2ff 100%);
    border-radius: 36px;
    box-shadow: 0 25px 60px rgba(8, 28, 48, 0.15);
}

.meet-seba-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: center;
}

@media (min-width: 1024px) {
    .meet-seba-inner {
        grid-template-columns: 1.05fr 0.95fr;
    }
}

.seba-story {
    color: #0f3050;
}

.seba-heading {
    font-size: clamp(2rem, 5vw, 3.25rem);
    color: #0892d0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 1.5rem;
}

.seba-narrative {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.seba-narrative p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #1b3e5e;
    margin: 0;
}

.seba-narrative p strong {
    color: #0b5186;
}

.seba-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.seba-polaroid-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: 0.2em;
    color: #0684c3;
    text-transform: uppercase;
    align-self: flex-start;
    margin-bottom: 1rem;
}

.seba-polaroid-stack {
    position: relative;
    width: 100%;
    max-width: 420px;
    min-height: 360px;
    margin-bottom: 2.5rem;
}

.seba-polaroid {
    /*background: #ffffff;
    border-radius: 18px;
    padding: 18px 18px 46px;
    box-shadow: 0 20px 40px rgba(9, 33, 64, 0.2);*/
}

.seba-polaroid img {
    width: 100%;
    display: block;
    border-radius: 12px;
}

.seba-polaroid-primary,
.seba-polaroid-secondary {
    position: relative;
    width: min(320px, 80%);
    margin: 0 auto 1.5rem;
}

@media (min-width: 768px) {
    .seba-polaroid-stack {
        margin: 1rem auto 3rem;
    }

    .seba-polaroid-primary,
    .seba-polaroid-secondary {
        position: absolute;
        width: 75%;
        margin: 0 0 0 0;
    }

    .seba-polaroid-primary {
        top: 0;
        left: 0;
        transform: rotate(-3deg);
        z-index: 2;
    }

    .seba-polaroid-secondary {
        top: 40px;
        right: -20%;
        transform: rotate(6deg);
        z-index: 1;
    }
}

.seba-quote-card {
    margin-top: 2rem;
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(8, 146, 208, 0.25);
    padding: 1.5rem;
    box-shadow: 0 18px 35px rgba(9, 58, 99, 0.18);
    max-width: 420px;
}

.seba-quote-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #0f3050;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
}

.seba-quote-text + .seba-quote-text {
    margin-top: 0.75rem;
}

/* Founder Spotlight */
.founder-section {
    background: linear-gradient(145deg, #03203c 0%, #043860 45%, #07598c 100%);
    border-radius: 32px;
    padding: clamp(3rem, 6vw, 5rem);
    color: #e7f5ff;
    box-shadow: 0 35px 70px rgba(1, 10, 23, 0.45);
    margin-top: 5rem;
}

.founder-section .section-heading {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #5fd1ff;
    margin-bottom: 0.5rem;
}

.founder-subheading {
    font-size: 1rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 2rem;
}

.founder-spotlight {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: start;
}

@media (min-width: 1024px) {
    .founder-spotlight {
        grid-template-columns: 420px 1fr;
    }
}

/* Founder Photo Container */
.founder-photo-container {
    position: relative;
}

.founder-photo-wrapper {
    margin: 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.45);
}

.founder-photo {
    width: 100%;
    display: block;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

/* Quote Card */
.founder-glass-quote {
    position: absolute;
    top: 20rem;
    left: 1.5rem;
    right: 1.5rem;
    background: rgba(6, 38, 70, 0.85);
    border: 1px solid rgba(95, 209, 255, 0.4);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 20px 40px rgba(3, 12, 24, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.glass-quote-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(140deg, #5fd1ff, #0b72b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    box-shadow: 0 8px 20px rgba(5, 30, 48, 0.5);
}

.founder-quote-text {
    font-size: 0.95rem;
    line-height: 1.6;
    text-transform: uppercase;
    color: #e7f5ff;
    font-weight: 600;
    margin: 0;
}

@media (max-width: 767px) {
    .founder-glass-quote {
        position: static;
        margin-top: -2.5rem;
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .founder-glass-quote {
        left: -1.5rem;
        right: -1.5rem;
        padding: 2rem;
    }

    .founder-quote-text {
        font-size: 1.05rem;
    }
}

/* Founder Biography */
.founder-biography {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.founder-biography p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(231, 245, 255, 0.95);
    margin: 0;
}

.founder-biography p:first-of-type {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
}

/* Story CTA */
.story-cta {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    color: #ffffff;
    margin-top: 5rem;
}

.story-cta h2 {
    font-size: 2rem;
    font-weight: 900;
    color: #0892D0;
    margin-bottom: 1rem;
}

.story-cta p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #d0d0d0;
    max-width: 600px;
    margin: 0 auto 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;
}

/* 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 {
    .mobile-toc-toggle,
    .story-toc {
        display: none;
    }

    .story-layout {
        grid-template-columns: 1fr;
    }

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