/* Version 23 - Mobile responsiveness improvements */
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400&family=Ubuntu:wght@400;500;700&display=swap');

body {
    margin: 0;
    padding: 0;
    padding-top: 90px;
    background-color: #f0f0f0;
    font-family: 'Ubuntu', sans-serif;
    line-height: 1.6;
    color: #333;
}
/* Layout baseline */
*, *::before, *::after {
    box-sizing: border-box;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.site-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: #f0f0f0;
    z-index: 3000;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease;
}

.site-header.scrolled {
    background: rgba(240, 240, 240, 0.4);
    backdrop-filter: url(#glass-filter);
    -webkit-backdrop-filter: url(#glass-filter);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.site-header.hidden {
    transform: translateY(-100%);
}

/* Ensure nav is above the rest so the panel is fully interactive */
.main-nav {
    position: static; /* allow .mega-menu to anchor to .site-header */
}

.logo-container {
    position: absolute;
    left: 80px;
    top: 50%;
    transform: translateY(-50%);
}

.logo-text {
    text-decoration: none;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.91em;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
    letter-spacing: 0.5px;
}

.logo-text div {
    white-space: nowrap;
}

.logo-image {
    height: 50px;
    width: auto;
}

.main-nav > ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.main-nav li {
    position: relative; /* For dropdown positioning */
    margin-left: 25px;
}

/* Increase the hover/click target area for top-level items */
.main-nav > ul > li > a {
    display: block;
    padding: 10px 12px;
}

/* Anchor the panel to the dropdown LI so the hover state doesn't drop */
.main-nav li.dropdown {
    position: relative; /* anchor to header instead of the li */
}

/* No hover gap bridge needed when panel is anchored to header */
/* (Removing pseudo-element to prevent blocking pointer over panel) */

/* Keep menu open when focusing with keyboard */
.dropdown:focus-within .mega-menu {
    display: block;
}

.mega-menu {
    display: none;
    position: absolute;
    top: 100%; /* sits directly under the header */
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    background-color: #f0f0f0;
    border-top: 1px solid #ddd;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
    padding: 24px 0 40px;
    margin-top: -10px; /* Creates the hover bridge */
    padding-top: 34px; /* Accounts for the negative margin */
    z-index: 2000;
}

.dropdown:hover .mega-menu {
    display: block;
}

/* Extra safety: if pointer is already inside the panel, keep it open */
.mega-menu:hover {
    display: block;
}

.mega-menu-content {
    max-width: 800px; /* align with page content width */
    margin: 0 auto;
    padding: 0 20px; /* match .hero horizontal padding */
}

.mega-menu-header {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
}

/* One-row layout for Acceleration Zones */
.mega-menu-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.mega-link {
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
}

.mega-link:hover { text-decoration: underline; }

.mega-separator {
    color: #999;
}

.mega-menu-title {
    font-size: 1.1em;
    font-weight: 700;
    color: #333;
    text-decoration: none;
}

.mega-menu-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 40px;
}

.mega-menu-column h4 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.9em;
    font-weight: 700;
    color: #333;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mega-menu-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: block; /* stack items vertically */
}

.mega-menu-column li {
    margin: 0 0 12px 0;
}

.mega-menu-column a {
    text-decoration: none;
    color: #555;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    display: block;
    padding: 4px 0;
    white-space: normal; /* allow wrapping for long labels */
    word-break: normal; /* do not split words arbitrarily */
    overflow-wrap: break-word; /* wrap only if needed */
    hyphens: none; /* avoid auto-hyphenation visual noise */
}

.mega-menu-column a:hover {
    text-decoration: underline;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500; /* Set to medium weight */
}

hr {
    border: 0;
    height: 1px;
    background-color: #ccc;
    margin: 0 0 40px 0;
}

.hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 80px 60px;
    text-align: left;
    background: #f0f0f0;
    position: relative;
}


.hero h1 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 5.5em;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 20px 0;
    max-width: 1000px;
    color: #1a1a1a;
}

.brand-separator {
    width: 150px;
    height: 40px;
    margin: 15px 0 20px 0;
    position: relative;
}

.brand-separator::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #333;
}

.hero h2.hero-subtext {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2.2em;
    font-weight: 400;
    line-height: 1.2;
    margin: 0 0 30px 0;
    max-width: 1000px;
    color: #1a1a1a;
}

.hero p {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.15em;
    max-width: 900px;
    color: #1a1a1a;
    font-weight: 400;
    margin-bottom: 20px;
}

.hero-definition {
    max-width: 700px;
    margin-top: 40px;
}

.hero-definition p {
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.9em;
    line-height: 1.5;
    color: #555;
    margin: 0;
}

.hero-definition strong {
    font-weight: 600;
    color: #1a1a1a;
}

.hero-definition em {
    font-style: italic;
    color: #666;
}

.section-separator {
    width: calc(100% - 160px);
    max-width: 1240px;
    height: 50px;
    margin: 0 auto 60px;
    position: relative;
}

.section-separator::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #333;
}

.partners-section {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px 80px 60px;
    text-align: left;
}

.partners-section h3 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.9em;
    font-weight: 500;
    color: #666;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Values Section - Three Column Layout */
.values-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 80px;
    background: #f0f0f0;
}

.values-intro {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.15em;
    max-width: 900px;
    color: #1a1a1a;
    font-weight: 400;
    margin: 0 0 40px 0;
    line-height: 1.6;
}

.framework-attribution {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0 0 80px 0;
}

.framework-attribution p {
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.95em;
    color: #666;
    margin: 0;
    font-weight: 500;
}

.ministry-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ministry-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.ministry-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ministry-line1 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.95em;
    font-weight: 500;
    color: #333;
    line-height: 1.3;
}

.ministry-line2 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.95em;
    font-weight: 500;
    color: #333;
    line-height: 1.3;
}

.pillars-heading {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.8em;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 40px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0px;
    margin-bottom: 60px;
    background: #ffffff;
    padding: 0;
    border: 1px solid #ddd;
}

.value-card {
    display: flex;
    flex-direction: column;
    background: transparent;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: visible;
}

.value-card:hover {
    transform: translateY(-20px);
    background: #ffffff;
    z-index: 10;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.08);
    border-right: 1px solid #ddd;
    border-left: 1px solid #ddd;
}

.value-card:first-child:hover {
    border-left: none;
}

.value-card:last-child:hover {
    border-right: none;
}

.value-image {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.4s ease;
}

.traceability-img {
    background-image: url('images/blockchain-pillar.jpeg');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

@keyframes motionBlur {
    0% { transform: translateX(-25%) translateY(-25%); }
    100% { transform: translateX(25%) translateY(25%); }
}

.authenticity-img {
    background-image: url('images/ai-pillar.jpeg');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

@keyframes fluidMove {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-10px, 10px) scale(1.05); }
}

.sustainability-img {
    background-image: url('images/sovereign-law-pillar.jpeg');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

@keyframes geometricShift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(33.33%, 33.33%); }
}

.value-content {
    padding: 0 30px 40px 40px;
    transition: all 0.4s ease;
}

.value-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1em;
    font-weight: 600;
    color: #000000;
    margin: 20px 0 0 0;
    text-align: left;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.value-subtitle {
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.85em;
    font-weight: 500;
    color: #666;
    margin: 8px 0 0 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.value-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: #333;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    color: #000;
}

.value-description {
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.9em;
    line-height: 1.6;
    color: #555;
    margin: 12px 0 0 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.value-card:hover .value-description {
    max-height: 300px;
    opacity: 1;
    margin-top: 12px;
}

.value-card:hover .value-image {
    height: 260px;
}

.value-card:hover .value-content {
    padding-bottom: 50px;
    padding-left: 50px;
}

.partners-list {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: flex-start;
}

.partner-category {
    width: 100%;
}

.partner-country {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.2em;
    font-weight: 700;
    color: #333;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partner-category h4 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.85em;
    font-weight: 500;
    color: #999;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.partner-items-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

@media (max-width: 768px) {
    .partner-items-grid {
        grid-template-columns: 1fr;
    }
}

.partner-item {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1em;
    font-weight: 500;
    color: #333;
    padding: 16px 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: border-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    height: 100%;
    min-height: 70px;
}

.partner-item:hover {
    border-color: #999;
}

.partner-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.partner-name {
    color: #333;
}

.about-aai {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 80px;
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 40px;
    align-items: start;
}

.about-aai-left {
    position: sticky;
    top: 100px; /* Adjust this value to control the distance from the top */
}

.about-aai-left h3 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1em;
    font-weight: 500;
    color: #555;
    margin: 0;
}

.about-aai-right p {
    font-family: 'Lora', serif;
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 30px 0;
}

.about-link {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
    text-decoration: none;
    color: #333;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 2px;
}

.about-link-icon svg {
    width: 20px;
    height: 20px;
}

.main-content-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 80px;
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 40px;
    align-items: start;
}

.main-content-left {
    position: sticky;
    top: 100px; /* Adjust this value to control the distance from the top */
}

.main-content-left h3 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1em;
    font-weight: 500;
    color: #555;
    margin: 0;
}

.main-content-right p {
    font-family: 'Ubuntu', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    margin: 0 0 25px 0;
}

.site-footer {
    background: #1a1a1a;
    color: #f0f0f0;
    padding: 60px 80px 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.9em;
    font-weight: 600;
    color: #f0f0f0;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-logo-image {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
}

.footer-tagline {
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.95em;
    color: #999;
    line-height: 1.6;
    margin: 0;
    max-width: 400px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.95em;
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.85em;
    color: #666;
    margin: 0;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 40px 20px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.site-footer-main {
    text-align: center;
    padding: 40px 20px;
    font-size: 14px;
    color: #999;
}

.site-footer-main p {
    margin: 5px 0;
}

.site-footer-main p:first-child {
    font-weight: bold;
    color: #666;
}

/* Team Page Styles */
.team-hero {
    max-width: 100%;
    margin: 0 auto;
    padding: 60px 80px;
    text-align: center;
}

.team-subtitle {
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.9em;
    font-weight: 500;
    color: #666;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-hero h1 {
    font-family: 'Lora', serif;
    font-size: 2.8em;
    font-weight: 400;
    line-height: 1.2;
    margin: 0 0 20px 0;
    color: #333;
}

.team-description {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.1em;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.team-grid {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px 80px;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 40px 30px;
    align-items: start;
}

.team-member {
    text-align: center;
    padding: 10px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
    max-width: 260px;
    margin: 0 auto;
    text-decoration: none; /* if used on anchors */
    color: inherit; /* if used on anchors */
}

.team-member:hover {
    transform: translateY(-2px);
}

.member-photo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    background: #f5f5f5;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-name {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.1em;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
}

.member-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.9em;
    font-weight: 500;
    color: #0066cc;
    margin: 0 0 15px 0;
}

.member-bio {
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.85em;
    line-height: 1.5;
    color: #666;
    margin: 0 0 20px 0;
}

.member-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.social-link {
    display: inline-block;
    width: 24px;
    height: 24px;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.social-link:hover {
    opacity: 1;
}

/* Link to profile on team card */
.view-profile {
    display: inline-block;
    margin-top: 8px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
    color: #0066cc;
    text-decoration: none;
}

.view-profile:hover { text-decoration: underline; }

/* Profile Page Styles */
.profile-hero {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px 20px;
    text-align: center;
}

.profile-avatar {
    width: 128px;
    height: 128px;
    margin: 0 auto 16px;
    border-radius: 50%;
    overflow: hidden;
    background: #f5f5f5;
}

.profile-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }

.profile-name { font-family: 'Ubuntu', sans-serif; font-size: 1.6em; margin: 6px 0 4px; }
.profile-title { font-family: 'Ubuntu', sans-serif; color: #0066cc; margin: 0 0 10px; }

.profile-socials { display: flex; gap: 12px; justify-content: center; margin-top: 8px; }
.profile-socials .social-link { opacity: .85; }

.profile-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px 20px 80px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

.profile-sidebar { position: sticky; top: 90px; align-self: start; }
.profile-card { background: #fff; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); padding: 16px; margin-bottom: 16px; }
.profile-card h4 { margin: 0 0 10px; font-size: 0.95em; color: #555; }

.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { background: #eef5ff; color: #0a58ca; padding: 4px 10px; border-radius: 999px; font-size: 12px; }

.profile-main { background: #fff; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); padding: 24px; }
.profile-section { margin-bottom: 24px; }
.profile-section h3 { margin: 0 0 10px; font-size: 1.05em; color: #333; }
.profile-section p, .profile-section li { font-size: 15px; line-height: 1.7; }
.profile-section ul { margin: 6px 0 0 18px; }

@media (max-width: 900px) {
    .profile-content { grid-template-columns: 1fr; }
    .profile-sidebar { position: static; }
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 3001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
    /* Framework Attribution Mobile */
    .framework-attribution {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .framework-attribution p {
        font-size: 0.85em;
    }

    .ministry-container {
        flex-direction: row;
        gap: 10px;
    }

    .ministry-logo {
        height: 40px;
    }

    .ministry-line1,
    .ministry-line2 {
        font-size: 0.85em;
    }

    /* Section Separator Mobile */
    .section-separator {
        width: calc(100% - 40px);
        margin-bottom: 40px;
    }

    /* Value Cards - Always show description on mobile */
    .value-description {
        max-height: none;
        opacity: 1;
        margin-top: 12px;
    }

    .value-card {
        border-bottom: 1px solid #ddd;
    }

    .value-card:last-child {
        border-bottom: none;
    }

    .value-card:hover {
        transform: none;
        box-shadow: none;
    }

    .value-content {
        padding: 0 20px 30px 20px;
    }

    .values-intro {
        font-size: 1em;
    }

    .pillars-heading {
        font-size: 1.4em;
        margin-bottom: 30px;
    }

    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #fff;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 3000;
        overflow-y: auto;
        padding-top: 80px;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        width: 100%;
        padding: 0;
    }

    .main-nav li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .main-nav > ul > li > a {
        padding: 15px 20px;
        display: block;
    }

    .mega-menu {
        position: static;
        width: 100%;
        transform: none;
        box-shadow: none;
        border-top: none;
        padding: 0;
        margin: 0;
        background: #f9f9f9;
    }

    .mega-menu-columns {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 15px 20px;
    }

    .dropdown:hover .mega-menu {
        display: none;
    }

    .dropdown.active .mega-menu {
        display: block;
    }

    .about-aai, .main-content-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-aai-left, .main-content-left {
        position: static;
    }

    .about-aai {
        padding: 60px 20px;
    }

    .about-aai-right p {
        font-size: 16px;
    }

    .site-header {
        padding: 30px 20px;
    }

    .logo-container {
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .logo-text {
        font-size: 0.65em;
    }

    .hero {
        padding: 80px 20px 120px;
    }

    .hero h1 {
        font-size: 2.8em;
        margin: 0 0 20px 0;
    }

    .brand-separator {
        width: 100px;
        height: 35px;
        margin: 15px 0 20px 0;
    }

    .hero h2.hero-subtext {
        font-size: 1.3em;
        margin: 0 0 50px 0;
    }

    .values-section {
        padding: 40px 20px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .value-image {
        height: 200px;
    }

    .value-title {
        font-size: 0.95em;
    }

    .value-card:hover {
        flex-grow: 1;
    }

    .value-card:hover .value-image {
        height: 180px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 30px 20px 60px;
    }

    .team-hero h1 {
        font-size: 2.2em;
    }

    .image-hero-section {
        min-height: 400px;
        padding: 60px 20px;
    }
    
    .image-hero-text-box {
        padding: 30px;
        max-width: 100%;
    }
    
    .image-hero-text-box h2 {
        font-size: 1.8em;
    }
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 0 0 80px 0;
}

.pillar-item {
    background: #fff;
}

.pillar-icon {
    display: inline-flex;
    color: #333;
}

.pillar-name {
    font-weight: 500;
}

@media (max-width: 768px) {
    .pillars-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Flexbox fallback if CSS Grid is unavailable */
@supports not (display: grid) {
    .team-grid {
        display: flex !important;
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
    }
    .team-grid .team-member {
        flex: 0 1 220px;
        max-width: 240px;
    }
}

/* Protocol Section */
.protocol-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 80px;
    background: #1a1a1a;
}

.protocol-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.protocol-text {
    max-width: 700px;
}

.protocol-heading {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2em;
    font-weight: 600;
    color: #f0f0f0;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.protocol-logo {
    height: 60px;
    width: auto;
}

.protocol-text p {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.05em;
    line-height: 1.6;
    color: #999;
    margin: 0;
}

.protocol-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.protocol-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
    font-size: 1em;
    color: #1a1a1a;
    background: #f0f0f0;
    padding: 16px 32px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.protocol-button:hover {
    background: #fff;
    transform: translateY(-2px);
}

.protocol-button.coming-soon {
    opacity: 0.6;
    cursor: default;
    pointer-events: none;
}

.protocol-icon {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .protocol-section {
        padding: 60px 20px;
    }

    .protocol-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .protocol-heading {
        font-size: 1.6em;
    }

    .protocol-logo {
        height: 45px;
    }

    .protocol-text p {
        font-size: 0.95em;
    }

    .protocol-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .protocol-button {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 0.95em;
    }
}

/* Edu AI Section */
.eduai-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 80px;
    background: #f0f0f0;
}

.eduai-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.eduai-text {
    max-width: 700px;
}

.eduai-heading {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2em;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.eduai-logo {
    height: 60px;
    width: auto;
    margin-bottom: 10px;
}

.eduai-text p {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.05em;
    line-height: 1.6;
    color: #333;
    margin: 0 0 20px 0;
}

.eduai-text p:last-child {
    margin-bottom: 0;
}

.eduai-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
    font-size: 1em;
    color: #f0f0f0;
    background: #1a1a1a;
    padding: 16px 32px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.eduai-button:hover {
    background: #333;
    transform: translateY(-2px);
}

.eduai-icon {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .eduai-section {
        padding: 60px 20px;
    }

    .eduai-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .eduai-logo {
        height: 45px;
    }

    .eduai-text p {
        font-size: 0.95em;
    }

    .eduai-button {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 0.95em;
    }
}

/* Articles Section */
.articles-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 80px;
    background: #f0f0f0;
}

.articles-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.articles-heading {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2em;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.see-all-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.95em;
    font-weight: 500;
    color: #f0f0f0;
    background: #1a1a1a;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.see-all-button:hover {
    background: #333;
    gap: 12px;
}

.see-all-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.see-all-button:hover .see-all-arrow {
    transform: translateX(4px);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.article-card {
    background: transparent;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 30px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.3s ease;
}

.article-card:hover {
    border-color: #999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.article-card-meta {
    display: flex;
    gap: 20px;
    align-items: baseline;
    line-height: 1;
}

.article-card-date {
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.85em;
    color: #666;
    line-height: 1;
}

.article-card-category {
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.85em;
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
}

.article-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.15em;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.4;
}

.article-date {
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.85em;
    color: #666;
}

@media (max-width: 1024px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .articles-section {
        padding: 60px 20px;
    }

    .articles-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }
}

/* Article Page */
.article-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 80px 80px;
    background: #fff;
}

.article-container {
    max-width: 800px;
    margin: 0 auto;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.95em;
    color: #666;
    text-decoration: none;
    margin-bottom: 30px;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #1a1a1a;
}

.back-arrow {
    width: 18px;
    height: 18px;
}

.article-header {
    margin-bottom: 40px;
}

.article-nav {
    background: transparent;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 50px;
}

.article-nav-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-bottom: 20px;
}

.article-nav-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.1em;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.nav-toggle-icon {
    width: 20px;
    height: 20px;
    color: #666;
    transition: transform 0.3s ease;
}

.article-nav.collapsed .nav-toggle-icon {
    transform: rotate(-90deg);
}

.article-nav.collapsed .article-nav-list {
    max-height: 0;
    opacity: 0;
    margin-top: 0;
}

.article-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 500px;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
    opacity: 1;
}

.article-nav-list li {
    margin-bottom: 12px;
}

.article-nav-list li:last-child {
    margin-bottom: 0;
}

.article-nav-list a {
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.95em;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.article-nav-list a:hover {
    color: #1a1a1a;
}

.article-category {
    display: inline-block;
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.85em;
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.article-page {
    background: #f0f0f0;
    min-height: 100vh;
    padding-top: 120px;
}

.article-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

.article-meta-top {
    display: flex;
    gap: 20px;
    align-items: baseline;
    margin-bottom: 24px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.9em;
    line-height: 1;
}

.article-date {
    color: #666;
    font-size: 0.9em;
    line-height: 1;
}

.article-category {
    display: inline-block;
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.9em;
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
}

.article-author-meta {
    margin-bottom: 30px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 1em;
    color: #666;
}

.audio-player-section {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
    align-items: center;
}

.audio-player-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: transparent;
    border: 1px solid #ddd;
    border-radius: 24px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.95em;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.audio-player-button:hover {
    border-color: #999;
    background: rgba(0, 0, 0, 0.02);
}

.audio-icon {
    width: 18px;
    height: 18px;
}

.audio-text {
    font-weight: 500;
}

.audio-duration {
    color: #666;
    font-size: 0.9em;
}

.audio-share-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.audio-share-button:hover {
    border-color: #999;
    background: rgba(0, 0, 0, 0.02);
}

.audio-share-icon {
    width: 16px;
    height: 16px;
    color: #333;
}

.article-page-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 3.5em;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.1;
    margin: 0 0 20px 0;
}

.article-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.95em;
    color: #999;
}

.article-meta span {
    position: relative;
}

.article-meta span:not(:last-child)::after {
    content: '•';
    position: absolute;
    right: -12px;
}

.article-content {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.1em;
    line-height: 1.8;
    color: #333;
}

.article-lead {
    font-size: 1.3em;
    line-height: 1.6;
    color: #1a1a1a;
    margin-bottom: 40px;
    font-weight: 400;
}

.article-content h2 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2em;
    font-weight: 600;
    color: #1a1a1a;
    margin: 50px 0 20px 0;
    line-height: 1.3;
}

.article-content h3 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.5em;
    font-weight: 600;
    color: #1a1a1a;
    margin: 40px 0 15px 0;
    line-height: 1.3;
}

.article-content p {
    margin: 0 0 25px 0;
}

.article-content ul,
.article-content ol {
    margin: 0 0 25px 0;
    padding-left: 30px;
}

.article-content li {
    margin-bottom: 15px;
}

.article-content strong {
    font-weight: 600;
    color: #1a1a1a;
}

.article-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #ddd;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.tag {
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.85em;
    color: #666;
    background: transparent;
    border: 1px solid #ddd;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag:hover {
    border-color: #999;
}

.article-share {
    display: flex;
    align-items: center;
    gap: 15px;
}

.share-label {
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.95em;
    color: #666;
    font-weight: 500;
}

.share-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0f0f0;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-button:hover {
    background: #1a1a1a;
    color: #fff;
}

.share-icon {
    width: 18px;
    height: 18px;
}

/* Related Articles Section */
.related-articles {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 80px;
    background: #f0f0f0;
}

.related-container {
    max-width: 800px;
    margin: 0 auto;
}

.related-articles h2 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2em;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 30px 0;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.related-card {
    background: transparent;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 30px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.3s ease;
}

.related-card:hover {
    border-color: #999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.related-card h3 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.1em;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.4;
}

.related-date {
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.85em;
    color: #666;
}

@media (max-width: 768px) {
    .article-page {
        padding-top: 100px;
    }

    .article-container {
        padding: 0 20px 60px;
    }

    .article-page-title {
        font-size: 2.2em;
    }

    .article-content {
        font-size: 1em;
    }

    .article-content h2 {
        font-size: 1.6em;
    }

    .article-content h3 {
        font-size: 1.3em;
    }

    .article-lead {
        font-size: 1.1em;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .related-articles {
        padding: 60px 20px;
    }

    .article-nav {
        padding: 20px;
    }

    .article-lead {
        font-size: 1.1em;
    }

    .article-content h2 {
        font-size: 1.6em;
    }

    .article-content h3 {
        font-size: 1.3em;
    }

    .related-articles {
        padding: 60px 20px;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Section */
.contact-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 80px;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(255, 182, 193, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 200, 124, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 40%, rgba(255, 220, 160, 0.35) 0%, transparent 50%),
        #e8e8e8;
    text-align: center;
    position: relative;
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-content h2 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2.8em;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 24px 0;
    line-height: 1.2;
}

.contact-content p {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.1em;
    line-height: 1.6;
    color: #333;
    margin: 0 0 40px 0;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
    font-size: 1em;
    color: #f0f0f0;
    background: #1a1a1a;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-button:hover {
    background: #333;
    transform: translateY(-2px);
    gap: 12px;
}

.contact-arrow {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.contact-button:hover .contact-arrow {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .contact-section {
        padding: 80px 20px;
    }

    .contact-content h2 {
        font-size: 2em;
    }

    .contact-content p {
        font-size: 1em;
    }
}

/* Large Image Section with Text Overlay */
.image-hero-section {
    position: relative;
    max-width: 1240px;
    margin: 40px auto;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 80px 20px;
    border-radius: 8px;
}

.image-hero-content {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.image-hero-text-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    max-width: 450px;
    border-radius: 8px;
}

.image-hero-text-box h2 {
    font-family: 'Lora', serif;
    font-size: 2.2em;
    font-weight: 400;
    margin: 0 0 20px 0;
    color: #1a1a1a;
    line-height: 1.3;
}

.image-hero-text-box p {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1em;
    line-height: 1.7;
    color: #333;
    margin: 0 0 20px 0;
}

.image-hero-button {
    display: inline-block;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
    font-size: 0.95em;
    color: #fff;
    background-color: #1a1a1a;
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.image-hero-button:hover {
    background-color: #333;
}

@media (max-width: 768px) {
    .image-hero-section {
        min-height: 400px;
        padding: 60px 20px;
    }
    
    .image-hero-text-box {
        padding: 30px;
        max-width: 100%;
    }
    
    .image-hero-text-box h2 {
        font-size: 1.8em;
    }
}

/* --- GSAP Story Styles --- */
.horizontal-scroll-wrapper {
    /* Ensure it breaks out of any container restrictions if necessary */
    width: 100%;
    overflow: hidden; /* Hide horizontal scrollbar */
}

.horizontal-container {
    display: flex;
    flex-wrap: nowrap;
    height: 100vh;
    height: 100dvh; /* Mobile browser support */
    width: max-content; /* Allow container to grow based on content */
    overflow-x: hidden;
    position: relative;
}

.stream-section {
    height: 100vh;
    height: 100dvh;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 5vw; /* Horizontal padding for breathing room */
    box-sizing: border-box;
    background-color: #f0f0f0;
    color: #1a1a1a;
}

/* Specific widths for stream flow */
.intro-text, .growth-text, .vertical-stack, .end-text {
    width: 80vw;
    text-align: left; /* Narrative feel */
    align-items: flex-start;
}

.stats-text {
    width: 60vw;
    text-align: center;
}

/* Combined Stats & Dots Section */
.stats-and-dots {
    width: 100vw;
    padding: 0 5vw;
}

.stats-container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: 100%;
}

.stats-and-dots .stats-content {
    width: 40%;
    text-align: left;
}

.stats-and-dots .dot-grid {
    width: 50%;
    margin: 0;
    grid-template-columns: repeat(10, 1fr);
}

.dots-visual, .chart-visual {
    width: 100vw; /* Visuals take full stage */
    padding: 0;
}

.content-box {
    /* Inherit or reset styles as needed */
    width: 100%;
}

.content-box h2 {
    font-size: clamp(2.5rem, 6vw, 5rem); /* Responsive font sizing - increased */
    margin-bottom: 2rem;
    font-family: 'Ubuntu', sans-serif;
    line-height: 1.2;
}

.aai-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 2rem;
}

.problem-text .content-box h2 {
    font-size: clamp(1.75rem, 4.2vw, 3.5rem); /* Reduced by 30% */
}

.problem-text .content-box p,
.solution-text .content-box p {
    font-size: clamp(0.77rem, 1.75vw, 1.26rem); /* Reduced by 30% */
    line-height: 1.6;
}

/* Brush Highlight Effect - Mix Blend Mode (Perfect Sync) */
.problem-text strong,
.solution-text strong {
    position: relative;
    text-decoration: none;
    font-weight: 700;
    
    /* Highlight Gradient: White (Left) -> Transparent (Right) with Slant & Soft Edge */
    background-image: linear-gradient(110deg, #fff 45%, rgba(255,255,255,0.8) 48%, transparent 52%);
    background-size: 250% 100%; /* Larger for smoother wipe */
    background-position: 100% 0; /* Start hidden */
    
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    
    padding: 2px 8px;
    margin: 0 -6px;
    border-radius: 4px 12px 6px 10px; /* Asymmetric corners */
    
    /* Glow/Bleed for authentic ink feel on dark bg */
    box-shadow: 0 0 2px rgba(255,255,255,0.4); 
    
    display: inline;
}

.problem-text strong span {
    color: #fff; /* White text for black bg (Problem) */
    mix-blend-mode: difference; 
    position: relative;
    z-index: 2;
}

.solution-text strong span {
    color: #1a1a1a; /* Start black for legibility */
    position: relative;
    z-index: 2;
}

/* Solution Section Specifics (Black Brush on Grey BG) */
.solution-text strong {
    /* Highlight Gradient: Black (Left) -> Transparent (Right) */
    background-image: linear-gradient(110deg, #000 45%, rgba(0, 0, 0, 0.8) 48%, transparent 52%);
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.4); /* Black shadow */
    z-index: auto; /* Allow blending with section background */
}

/* Adjust stats text specific styling */
.stats-content h2 {
    font-size: 2rem;
    opacity: 0.6;
}

#text-percentage-counter {
    font-size: clamp(4rem, 12vw, 8rem); /* Responsive giant number */
    font-weight: 700;
    color: #1a1a1a;
    display: block;
    margin: 20px 0;
    line-height: 1;
}

/* Dot Grid adjustments */
.dot-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 15px; /* Larger gap */
    width: 60vw; /* Wider grid */
    margin: 0 auto;
}

.dot {
    width: 3vw; /* Responsive dot size */
    height: 3vw;
    background-color: #e0e0e0;
    border-radius: 50%;
}

.dot.active {
     background-color: #1a1a1a;
}

/* Chart adjustments */
.chart-box {
    width: 80%;
    height: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.chart-container {
    height: 50vh;
    width: 100%;
    border-bottom: 2px solid #1a1a1a;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    padding-bottom: 5px;
}

.bar-group {
    height: 100%;
    width: 12%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.bar {
    width: 60%;
    background-color: #0066cc; /* Start color 2022 */
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    /* Height set by JS */
}

.value {
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 0.9rem;
}

.label {
    margin-top: 10px;
    font-size: 0.8rem;
    text-align: center;
    font-weight: 500;
}

.source-text {
     font-size: 0.8rem;
     margin-top: 20px;
     text-align: right;
     width: 100%;
}

/* Vertical Stack Wrapper */
.vertical-stack {
    overflow: hidden; /* Hide the solution initially */
    position: relative;
    padding: 0 !important; /* Remove padding from wrapper, let inner sections handle it */
    justify-content: flex-start !important; /* Align content to top */
}

.vertical-content {
    width: 100%;
    height: 200vh; /* 2 sections */
    display: flex;
    flex-direction: column;
}

/* Inner Sections of Stack */
.problem-text, .solution-text {
    width: 100%; /* Full width of the stack */
    height: 100vh; /* Full viewport height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; /* Align text left */
    padding: 0 5vw; /* Restore padding here */
    box-sizing: border-box;
}

/* Mobile Optimization for GSAP Story */
@media (max-width: 768px) {
    /* Typography */
    .content-box h2 {
        font-size: 2.5rem;
    }
    
    /* Text Sections */
    .intro-text, .growth-text, .vertical-stack, .end-text {
        width: 90vw;
    }
    
    .problem-text, .solution-text {
        width: 100%;
    }
    
    /* Stats & Dots Stack */
    .stats-container {
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
    }
    
    .stats-and-dots .stats-content,
    .stats-and-dots .dot-grid {
        width: 100%;
        text-align: center;
    }
    
    #text-percentage-counter {
        font-size: 5rem;
        margin: 10px 0;
    }
    
    .stats-content p {
        font-size: 1rem;
    }
    
    /* Dots */
    .dot-grid {
        width: 90vw;
        gap: 8px;
    }
    
    .dot {
        width: 6vw;
        height: 6vw;
    }
    
    /* Chart */
    .chart-box {
        width: 95%;
        height: 60%;
    }
    
    .chart-container {
        height: 40vh;
    }
    
    .label {
        font-size: 0.6rem;
        transform: rotate(-45deg); /* Rotate labels to fit */
        margin-top: 15px;
    }
    
    .value {
        font-size: 0.7rem;
    }
    
    .bar-group {
        width: 13%; /* Slightly wider bars */
    }
    
    .source-text {
        font-size: 0.6rem;
        text-align: center;
    }
}
