/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fefefe;
    font-size: 18px;
}


/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #2c3e50;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
    max-width: 70ch;
}

strong {
    font-weight: 600;
    color: #1a252f;
}

/* Links */
a {
    color: #e67e22;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover, a:focus {
    color: #d35400;
    text-decoration: underline;
}

a:focus {
    outline: 2px solid #e67e22;
    outline-offset: 2px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1.4;
}

.btn:focus {
    outline: 2px solid #e67e22;
    outline-offset: 2px;
}

.btn-primary {
    background-color: #e67e22;
    color: white;
    border-color: #e67e22;
}

.btn-primary:hover, .btn-primary:focus {
    background-color: #d35400;
    border-color: #d35400;
    color: white;
    text-decoration: none;
}

.btn-secondary {
    background-color: transparent;
    color: #e67e22;
    border-color: #e67e22;
}

.btn-secondary:hover, .btn-secondary:focus {
    background-color: #e67e22;
    color: white;
    text-decoration: none;
}

.btn-tertiary {
    background-color: #95a5a6;
    color: white;
    border-color: #95a5a6;
}

.btn-tertiary:hover, .btn-tertiary:focus {
    background-color: #7f8c8d;
    border-color: #7f8c8d;
    color: white;
    text-decoration: none;
}

/* Navigation */
.nav {
    background-color: rgba(254, 254, 254, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    border-bottom: 1px solid #ecf0f1;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: #2c3e50;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a:hover, .nav-menu a:focus {
    color: #e67e22;
    text-decoration: none;
}

.nav-cta {
    background-color: #e67e22;
    color: white !important;
    padding: 0.5rem 1rem !important;
    border-radius: 4px;
}

.nav-cta:hover, .nav-cta:focus {
    background-color: #d35400;
    color: white !important;
}

/* Main Content */
main {
    margin-top: 80px;
}

/* Sections */
section {
    padding: 4rem 0;
}

section:nth-child(even) {
    background-color: #f8f9fa;
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fefefe 0%, #f8f9fa 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-container {
    max-width: 1000px;
    margin: 0 auto;
}

.hero__media {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__media picture {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero__media picture:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.hero__media img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.hero__copy {
    text-align: left;
}

.hero-headline {
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.hero-subhead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #34495e;
    max-width: none;
}

.hero-proof {
    list-style: none;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
}

.hero-proof li {
    font-size: 1rem;
    color: #7f8c8d;
    max-width: 600px;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* Bio Section */
.bio {
    padding: 5rem 0;
}

.bio-content {
    max-width: 800px;
    margin: 0 auto;
}

.bio-short p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.bio-long {
    margin-top: 2rem;
}

.bio-long summary {
    font-weight: 600;
    color: #e67e22;
    cursor: pointer;
    padding: 1rem 0;
    border-top: 1px solid #ecf0f1;
}

.bio-long summary:hover, .bio-long summary:focus {
    color: #d35400;
}

.bio-long-content {
    padding-top: 1rem;
}

.bio-long-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Career Highlights Section */
.career-highlights {
    padding: 5rem 0;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.highlight-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #e67e22;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.highlight-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.highlight-card p {
    color: #7f8c8d;
    line-height: 1.6;
    max-width: none;
}

/* Thesis Section */
.thesis {
    padding: 5rem 0;
}

.thesis-content {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 3rem;
}

.problem, .solution, .why-now {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.why-now ol {
    padding-left: 1.5rem;
}

.why-now li {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.one-liner {
    text-align: center;
    margin-top: 2rem;
}

.one-liner blockquote {
    background: #e67e22;
    color: white;
    padding: 2rem;
    border-radius: 8px;
    font-size: 1.2rem;
    font-style: italic;
    border-left: none;
}

/* Proof Section */
.proof {
    padding: 5rem 0;
}

.proof-list {
    list-style: none;
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
}

.proof-list li {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #e67e22;
}

.proof-list li strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

/* Investors Section */
.investors {
    padding: 5rem 0;
}

.investors-content {
    max-width: 900px;
    margin: 0 auto;
}

.investment-case {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 3rem;
}

.investment-case p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: none;
}

.unfair-advantages {
    background: #2c3e50;
    color: white;
    padding: 2.5rem;
    border-radius: 8px;
}

.unfair-advantages h3 {
    color: white;
    margin-bottom: 1.5rem;
}

.unfair-advantages ul {
    list-style: none;
}

.unfair-advantages li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.unfair-advantages li strong {
    color: #f39c12;
    font-weight: 700;
}

.unfair-advantages li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #e67e22;
    font-weight: bold;
}

/* Speaking Section */
.speaking {
    padding: 5rem 0;
}

.speaking-content {
    max-width: 1000px;
    margin: 0 auto;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.topic {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.topic h4 {
    color: #e67e22;
    margin-bottom: 1rem;
}

.past-stages {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.past-stages ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.past-stages li {
    background: white;
    padding: 0.75rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* Community Section */
.community {
    padding: 5rem 0;
}

.community-content {
    max-width: 800px;
    margin: 0 auto;
}

.community-content > p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: none;
}

.access-ways {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.access-ways ul {
    list-style: none;
}

.access-ways li {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.access-ways li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #e67e22;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Personal Section */
.personal {
    padding: 5rem 0;
}

.personal-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.personal-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: none;
}

/* CTA Zone */
.cta-zone {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    text-align: center;
}

.cta-zone h2 {
    color: white;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-bio p {
    line-height: 1.6;
    color: #bdc3c7;
    max-width: none;
}

.footer-name {
    color: #e67e22 !important;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-links a:hover, .footer-links a:focus {
    color: #e67e22;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1rem;
    text-align: center;
    color: #95a5a6;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 1rem 15px;
    }
    
    .nav-menu {
        display: none; /* Will implement mobile menu in JavaScript */
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero__copy {
        text-align: center;
    }
    
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-subhead {
        font-size: 1.1rem;
    }
    
    .hero-proof {
        align-items: center;
        text-align: center;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .topics-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links ul {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .past-stages ul {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }
    
    .hero-headline {
        font-size: 1.75rem;
    }
    
    .hero-subhead {
        font-size: 1rem;
    }
    
    .problem, .solution, .why-now,
    .investment-case, .unfair-advantages,
    .access-ways, .personal-content {
        padding: 1.5rem;
    }
    
    .one-liner blockquote {
        padding: 1.5rem;
        font-size: 1.1rem;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    body {
        background-color: white;
        color: black;
    }
    
    .nav {
        background-color: white;
        border-bottom: 2px solid black;
    }
    
    .btn-primary {
        background-color: black;
        border-color: black;
    }
    
    .btn-secondary {
        color: black;
        border-color: black;
    }
}

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

/* Focus Styles for Better Accessibility */
*:focus {
    outline: 2px solid #e67e22;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .nav, .cta-zone, .footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
    
    p, li {
        page-break-inside: avoid;
    }
    
    a {
        color: black;
        text-decoration: underline;
    }
    
    a[href^="http"]:after {
        content: " (" attr(href) ")";
        font-size: 10pt;
        color: #666;
    }
}

/* Mobile Navigation Styles */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #2c3e50;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-btn[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Enhanced Mobile Navigation Menu */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 80px 0 2rem;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 99;
        gap: 0;
        display: flex;
    }
    
    .nav-menu-open {
        right: 0;
    }
    
    .nav-menu li {
        border-bottom: 1px solid #ecf0f1;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem 2rem;
        color: #2c3e50;
        font-weight: 500;
        border-left: 3px solid transparent;
        transition: all 0.3s ease;
    }
    
    .nav-menu a:hover,
    .nav-menu a:focus,
    .nav-menu a.active {
        background-color: #f8f9fa;
        border-left-color: #e67e22;
        color: #e67e22;
        text-decoration: none;
    }
    
    .nav-cta {
        background-color: #e67e22 !important;
        color: white !important;
        margin: 1rem 2rem;
        border-radius: 6px !important;
        border-left: 3px solid #e67e22 !important;
        text-align: center;
    }
    
    .nav-cta:hover,
    .nav-cta:focus {
        background-color: #d35400 !important;
        border-left-color: #d35400 !important;
    }
    
    /* Prevent body scroll when mobile menu is open */
    .nav-open {
        overflow: hidden;
    }
    
    /* Mobile menu overlay */
    .nav-menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 98;
    }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 1rem;
}

.modal-content {
    background: white;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem 1rem;
    border-bottom: 1px solid #ecf0f1;
}

.modal-header h3 {
    margin: 0;
    color: #2c3e50;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #7f8c8d;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover,
.modal-close:focus {
    background-color: #ecf0f1;
    color: #2c3e50;
}

.modal-body {
    padding: 1rem 2rem 2rem;
}

.newsletter-form {
    margin-top: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ecf0f1;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #e67e22;
}

.form-group small {
    display: block;
    margin-top: 0.25rem;
    color: #7f8c8d;
    font-size: 0.875rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.modal-open {
    overflow: hidden;
}

/* Screen Reader Only Content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Keyboard Navigation Enhancement */
.keyboard-navigation *:focus {
    outline: 3px solid #e67e22;
    outline-offset: 2px;
}

/* Active Navigation Link Styles */
.nav-menu a.active {
    color: #e67e22;
    font-weight: 600;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #e67e22;
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #e67e22;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* High Contrast Mode Enhancements */
.high-contrast {
    filter: contrast(150%);
}

.high-contrast .btn-primary {
    background-color: #000;
    border-color: #000;
    color: #fff;
}

.high-contrast .btn-secondary {
    background-color: #fff;
    border-color: #000;
    color: #000;
}

/* Improved Mobile Responsive Styles */
@media (max-width: 480px) {
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
    }
    
    .modal-content {
        margin: 1rem;
        max-height: calc(100vh - 2rem);
    }
    
    .modal-header,
    .modal-body {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Investor Lane Styles */
.band--investors {
    background: #0b1220 !important;
    color: #fff !important;
    padding: 56px 0;
}

.band--investors,
.band--investors * {
    color: #fff !important;
}

.band--investors a {
    color: #fff !important;
    text-decoration: underline;
}

.band--investors h2,
.band--investors h3 {
    color: #fff !important;
}

.band--investors .bullets li {
    color: #fff !important;
}

.band--investors strong {
    color: #fff !important;
    font-weight: 700;
}

.band--investors ul {
    color: #fff !important;
}

.band--investors p {
    color: #fff !important;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.grid-2 {
    display: grid;
    gap: 28px;
}

/* When scoreboard is hidden, use single column layout */
@media (min-width: 900px) {
    .grid-2 {
        grid-template-columns: 1fr;
        max-width: 800px;
        margin: 0 auto;
    }
}

/* Future: When scoreboard is shown, use two-column layout */
/*
@media (min-width: 900px) {
    .grid-2 {
        grid-template-columns: 1fr 1fr;
        max-width: none;
        margin: 0;
    }
}
*/

.bullets {
    margin: 0;
    padding-left: 18px;
}

.bullets li {
    margin: 10px 0;
    line-height: 1.45;
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0;
}

.chip {
    background: #1f2a44;
    color: #fff;
    border: 1px solid #2b3a5d;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: .9rem;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.btn--primary {
    background: #5cc2ff;
    color: #0b1220;
    display: inline-block;
    padding: 10px 16px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
}

.btn--secondary {
    background: #ffd166;
    color: #0b1220;
    display: inline-block;
    padding: 10px 16px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
}

.btn--ghost {
    background: transparent;
    border: 1px solid #93a1c8;
    color: #fff;
    display: inline-block;
    padding: 10px 16px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
}

.investors-scoreboard {
    background: #0f172a;
    border: 1px solid #223056;
    border-radius: 14px;
    padding: 18px;
    display: none; /* Hide until traction data is available */
}

.scoreboard-title {
    margin: 0 0 10px 0;
    font-size: 1.05rem;
    color: #e6edff;
}

.scoreboard {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.scoreboard li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 10px;
    background: #0b152f;
    border-radius: 10px;
}

.scoreboard .label {
    color: #c8d4ff;
}

.scoreboard .value {
    font-variant-numeric: tabular-nums;
    color: #fff;
}

.footnotes {
    margin-top: 12px;
}

.footnotes ol {
    margin: 10px 0 0 20px;
}

.visually-hidden {
    position: absolute !important;
    clip: rect(1px,1px,1px,1px);
    padding: 0;
    border: 0;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

/* Thesis Section */
.thesis-section {
    padding: 2rem 0;
}

/* Thesis bubble - matches Proof & Impact bubbles */
.thesis-bubble {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #e67e22;
    margin-top: 2rem;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Logo should be slightly larger than surrounding text */
.thesis-bubble .thesis-logo img {
    height: 1.25em; /* ~25% larger than text */
    width: auto;
    display: block;
    vertical-align: middle;
}

/* Let text wrap nicely to the right of the logo */
.thesis-bubble .thesis-text {
    margin: 0;
    line-height: 1.35;
    flex: 1;
}

/* Small screens: keep spacing tight; larger screens: a touch bigger logo */
@media (min-width: 768px) {
    .thesis-bubble .thesis-logo img {
        height: 1.35em;
    }
}

/* Responsive thesis bubble positioning */
@media (min-width: 769px) {
    .thesis-bubble {
        margin-top: 2rem;
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .thesis-bubble {
        margin-top: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .thesis-bubble .thesis-logo {
        align-self: center;
    }
    
    .thesis-bubble .thesis-text {
        text-align: center;
    }
}