/* PM NeuroPilot Website Styles */
/* Stage A Research Compliant Version */

:root {
    /* Colors */
    --navy-dark: #0f172a;
    --navy: #1e293b;
    --navy-light: #334155;
    --teal: #14b8a6;
    --teal-dark: #0d9488;
    --teal-light: #5eead4;
    --gold: #f59e0b;
    --gold-light: #fbbf24;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --red: #ef4444;
    
    /* Typography */
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Stage A Banner */
.stage-banner {
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--navy-dark);
    padding: var(--space-sm) 0;
    font-size: 0.875rem;
    font-weight: 500;
}

.stage-banner .container {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    justify-content: center;
}

.stage-badge {
    background: var(--navy-dark);
    color: var(--white);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.stage-text a {
    color: var(--navy-dark);
    text-decoration: underline;
}

/* Navigation */
.navbar {
    background: var(--navy-dark);
    padding: var(--space-md) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-img {
    height: 36px;
    width: auto;
}

.logo-icon {
    color: var(--teal);
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--space-xl);
    align-items: center;
}

.nav-links a {
    color: var(--gray-300);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--white);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary {
    background: var(--teal);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--teal-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--gray-500);
}

.btn-secondary:hover {
    border-color: var(--white);
}

.btn-sm {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.8rem;
}

.btn-full {
    width: 100%;
}

.btn-disabled {
    background: var(--gray-400);
    color: var(--white);
    cursor: not-allowed;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    color: var(--white);
    padding: var(--space-4xl) 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    background: rgba(20, 184, 166, 0.2);
    color: var(--teal-light);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: var(--space-lg);
    border: 1px solid rgba(20, 184, 166, 0.3);
}

.hero h1 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-lg);
}

.hero .highlight {
    color: var(--teal-light);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--gray-300);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
}

.hero-stats {
    display: flex;
    gap: var(--space-3xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--navy-light);
}

.stat {
    text-align: left;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--teal);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-400);
}

.stat-label sup {
    color: var(--gold);
}

.hero-visual {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
}

.bias-alert {
    background: var(--navy);
    border: 1px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: var(--space-md) var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    animation: pulse 2s infinite;
}

.alert-icon {
    color: var(--gold);
    font-size: 1.5rem;
}

.alert-text {
    color: var(--gold-light);
    font-weight: 500;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.02); }
}

/* Sections */
.section {
    padding: var(--space-4xl) 0;
}

.section-light {
    background: var(--gray-50);
}

.section-dark {
    background: var(--navy-dark);
    color: var(--white);
}

.section-accent {
    background: var(--navy);
    color: var(--white);
}

.section-label {
    display: inline-block;
    color: var(--teal);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.section-dark .section-title,
.section-accent .section-title {
    color: var(--white);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-500);
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

.section-dark .section-subtitle,
.section-accent .section-subtitle {
    color: var(--gray-400);
}

/* Bias Grid */
.bias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
}

.bias-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    transition: transform 0.2s, box-shadow 0.2s;
}

.bias-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.bias-icon {
    font-size: 2rem;
    margin-bottom: var(--space-md);
}

.bias-card h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--navy-dark);
}

.bias-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: var(--space-md);
}

.bias-stat {
    border-top: 1px solid var(--gray-200);
    padding-top: var(--space-md);
}

.stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--teal-dark);
}

.stat-desc {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.stat-desc sup {
    color: var(--gold);
}

.bias-note {
    font-style: italic;
    color: var(--gray-600);
    text-align: center;
    margin-bottom: var(--space-xl);
}

/* Solution Section */
.solution-disclaimer {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
}

.disclaimer-icon {
    font-size: 1.5rem;
}

.disclaimer-text {
    color: var(--gray-300);
    font-size: 0.95rem;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.feature-card {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    border: 1px solid var(--navy-light);
}

.feature-number {
    display: inline-block;
    color: var(--teal);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.feature-card p {
    color: var(--gray-400);
    font-size: 0.95rem;
    margin-bottom: var(--space-md);
}

.feature-list {
    list-style: none;
}

.feature-list li {
    color: var(--gray-400);
    font-size: 0.875rem;
    padding: var(--space-xs) 0;
    padding-left: var(--space-lg);
    position: relative;
}

.feature-list li::before {
    content: "•";
    color: var(--teal);
    position: absolute;
    left: 0;
}

/* Architecture Diagram */
.architecture {
    text-align: center;
    padding: var(--space-xl) 0;
}

.arch-layer {
    display: inline-block;
    padding: var(--space-lg) var(--space-3xl);
    border-radius: var(--radius-lg);
    font-weight: 600;
}

.arch-main {
    background: var(--teal);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.125rem;
}

.arch-main small {
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.9;
}

.arch-connector {
    width: 2px;
    height: 40px;
    background: var(--gray-500);
    margin: 0 auto;
}

.arch-tools {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.arch-tool {
    background: var(--navy);
    border: 1px solid var(--navy-light);
    color: var(--gray-400);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
}

/* Pilot Section */
.pilot-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
}

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

.pilot-benefits h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: var(--space-lg);
    color: var(--navy-dark);
}

.benefits-list {
    list-style: none;
    margin-bottom: var(--space-xl);
}

.benefits-list li {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--gray-200);
}

.benefit-icon {
    color: var(--teal);
    font-weight: 700;
    font-size: 1.25rem;
}

.benefits-list strong {
    display: block;
    color: var(--navy-dark);
    margin-bottom: var(--space-xs);
}

.benefits-list span {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.requirements-list {
    list-style: none;
}

.requirements-list li {
    padding: var(--space-sm) 0;
    padding-left: var(--space-lg);
    position: relative;
    color: var(--gray-600);
}

.requirements-list li::before {
    content: "✓";
    color: var(--teal);
    position: absolute;
    left: 0;
}

.pilot-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
}

.pilot-form h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    color: var(--navy-dark);
}

.pilot-form > p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: var(--space-xl);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: var(--space-xs);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--space-md);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
}

.form-note {
    font-size: 0.8rem;
    color: var(--gray-500);
    text-align: center;
    margin-top: var(--space-md);
}

/* Research Section */
.research-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.pillar {
    text-align: center;
    padding: var(--space-xl);
}

.pillar-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.pillar h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
}

.pillar p {
    color: var(--gray-400);
    font-size: 0.95rem;
}

.books-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.books-section h3 {
    text-align: center;
    font-family: var(--font-display);
    margin-bottom: var(--space-xl);
}

.books-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.book-card {
    display: flex;
    gap: var(--space-lg);
    align-items: center;
}

.book-cover-img {
    width: 100px;
    height: 150px;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    object-fit: cover;
    box-shadow: var(--shadow-md);
}

.book-cover-large-img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: var(--radius-md);
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.book-cover {
    width: 100px;
    height: 150px;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.book1 {
    background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
    border: 2px solid var(--gold);
}

.book2 {
    background: linear-gradient(135deg, #2d3e50 0%, #1e293b 100%);
    border: 2px solid var(--gold);
}

.book3 {
    background: linear-gradient(135deg, #2d3e50 0%, #1e293b 100%);
    border: 2px solid var(--gold);
}

.book-info {
    flex: 1;
}

.book-status {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--teal-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-xs);
}

.book-info h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

.book-info p {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-bottom: var(--space-md);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
}

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

.contact-method {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    margin-bottom: var(--space-xl);
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-method strong {
    display: block;
    color: var(--navy-dark);
    margin-bottom: var(--space-xs);
}

.contact-method a {
    color: var(--teal-dark);
    text-decoration: none;
}

.contact-method a:hover {
    text-decoration: underline;
}

.newsletter {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
}

.newsletter h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
    color: var(--navy-dark);
}

.newsletter p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: var(--space-md);
}

.newsletter-form {
    display: flex;
    gap: var(--space-sm);
}

.newsletter-form input {
    flex: 1;
    padding: var(--space-md);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
}

.contact-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: var(--space-lg);
    color: var(--navy-dark);
}

/* Disclosure Section */
.disclosure-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.disclosure-box {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    border: 1px solid var(--navy-light);
}

.disclosure-box h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    margin-bottom: var(--space-md);
    color: var(--teal-light);
}

.disclosure-box p {
    color: var(--gray-400);
    font-size: 0.95rem;
    margin-bottom: var(--space-md);
}

.disclosure-box ul {
    list-style: none;
}

.disclosure-box li {
    color: var(--gray-400);
    font-size: 0.9rem;
    padding: var(--space-sm) 0;
    padding-left: var(--space-lg);
    position: relative;
}

.disclosure-box li::before {
    content: "•";
    color: var(--gold);
    position: absolute;
    left: 0;
}

.timeline-table {
    width: 100%;
    border-collapse: collapse;
}

.timeline-table tr {
    border-bottom: 1px solid var(--navy-light);
}

.timeline-table td {
    padding: var(--space-md) 0;
    color: var(--gray-400);
    font-size: 0.9rem;
}

.timeline-table td:first-child {
    color: var(--gray-300);
}

/* Citations Section */
.citations-section {
    padding: var(--space-xl) 0;
    background: var(--white);
}

.citations-section h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    margin-bottom: var(--space-lg);
    color: var(--navy-dark);
}

.citations-list {
    list-style: none;
    columns: 2;
    column-gap: var(--space-3xl);
}

@media (max-width: 768px) {
    .citations-list {
        columns: 1;
    }
}

.citations-list li {
    font-size: 0.8rem;
    color: var(--gray-600);
    margin-bottom: var(--space-md);
    break-inside: avoid;
}

.citations-list sup {
    color: var(--gold);
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--navy-dark);
    color: var(--gray-400);
    padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

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

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

.footer-brand .logo {
    margin-bottom: var(--space-md);
}

.footer-brand p {
    font-size: 0.9rem;
    margin-bottom: var(--space-md);
}

.stage-indicator {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.8rem;
    color: var(--gold);
    margin-bottom: var(--space-md);
}

.stage-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.footer-disclaimer {
    font-size: 0.8rem;
    color: var(--gray-500);
    font-style: italic;
}

.footer-links h4 {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 0.9rem;
    margin-bottom: var(--space-md);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid var(--navy-light);
    padding-top: var(--space-xl);
    text-align: center;
    font-size: 0.8rem;
}

.footer-note {
    margin-top: var(--space-sm);
    color: var(--gray-500);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--space-lg);
    }
    
    .hero-visual {
        display: none;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .nav-links {
        display: none;
    }
}

/* Page Hero (for subpages) */
.page-hero {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    color: var(--white);
    padding: var(--space-4xl) 0 var(--space-3xl);
    text-align: center;
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--space-lg);
}

.page-hero .hero-subtitle {
    max-width: 700px;
    margin: 0 auto;
}

/* About Page */
.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

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

.about-content h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: var(--space-lg);
    color: var(--navy-dark);
}

.about-content p {
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.about-principles {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
}

.about-principles h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: var(--space-lg);
    color: var(--navy-dark);
}

.principle {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--gray-200);
}

.principle:last-child {
    border-bottom: none;
}

.principle-icon {
    font-size: 1.5rem;
}

.principle strong {
    display: block;
    color: var(--navy-dark);
    margin-bottom: var(--space-xs);
}

.principle p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0;
}

/* Founder Card */
.founder-card {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

@media (max-width: 768px) {
    .founder-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.founder-photo {
    text-align: center;
}

.founder-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--teal);
    box-shadow: var(--shadow-lg);
}

.founder-info h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: var(--space-xs);
}

.founder-title {
    color: var(--teal-light);
    font-size: 1.125rem;
    margin-bottom: var(--space-xs);
}

.founder-role {
    color: var(--gray-400);
    margin-bottom: var(--space-xl);
}

.founder-bio {
    color: var(--gray-300);
    line-height: 1.7;
}

.founder-bio h4 {
    color: var(--teal-light);
    font-family: var(--font-display);
    font-size: 1rem;
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

.founder-bio ul {
    list-style: none;
    margin-bottom: var(--space-md);
}

.founder-bio li {
    padding: var(--space-xs) 0;
    padding-left: var(--space-lg);
    position: relative;
}

.founder-bio li::before {
    content: "•";
    color: var(--teal);
    position: absolute;
    left: 0;
}

.founder-links {
    margin-top: var(--space-xl);
    display: flex;
    gap: var(--space-md);
}

/* Company Info */
.company-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
}

.info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
}

.info-card h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    margin-bottom: var(--space-lg);
    color: var(--navy-dark);
}

.status-table {
    width: 100%;
    border-collapse: collapse;
}

.status-table tr {
    border-bottom: 1px solid var(--gray-200);
}

.status-table td {
    padding: var(--space-md) 0;
    font-size: 0.9rem;
}

.status-table td:first-child {
    color: var(--gray-600);
}

.info-card ul {
    list-style: none;
}

.info-card li {
    padding: var(--space-sm) 0;
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* Text Center */
.text-center {
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin-top: var(--space-xl);
}

/* Resources Page */
.books-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-3xl);
}

.book-feature {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
}

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

.book-feature.book-upcoming {
    opacity: 0.9;
    border: 2px dashed var(--gray-300);
}

.book-cover-large {
    width: 100%;
    height: 300px;
    border-radius: var(--radius-md);
}

.book1-large {
    background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
    border: 3px solid var(--gold);
}

.book2-large {
    background: linear-gradient(135deg, #2d3e50 0%, #1e293b 100%);
    border: 3px solid var(--gold);
}

.book3-large {
    background: linear-gradient(135deg, #2d3e50 0%, #1e293b 100%);
    border: 3px solid var(--gold);
}

.book-badge {
    display: inline-block;
    background: var(--teal);
    color: var(--white);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-sm);
}

.book-badge.upcoming {
    background: var(--gold);
}

.book-details h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--navy-dark);
    margin-bottom: var(--space-xs);
}

.book-tagline {
    color: var(--gray-600);
    font-style: italic;
    margin-bottom: var(--space-md);
}

.book-description {
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.book-highlights {
    list-style: none;
    margin-bottom: var(--space-lg);
}

.book-highlights li {
    padding: var(--space-xs) 0;
    padding-left: var(--space-lg);
    position: relative;
    color: var(--gray-600);
    font-size: 0.9rem;
}

.book-highlights li::before {
    content: "✓";
    color: var(--teal);
    position: absolute;
    left: 0;
}

.book-formats {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.format {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* Research Grid */
.research-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.research-card {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    border: 1px solid var(--navy-light);
}

.research-card h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    margin-bottom: var(--space-md);
    color: var(--white);
}

.research-card p {
    color: var(--gray-400);
    font-size: 0.95rem;
    margin-bottom: var(--space-md);
}

.research-card h4 {
    color: var(--teal-light);
    font-size: 0.875rem;
    margin-bottom: var(--space-sm);
}

.research-card ul {
    list-style: none;
}

.research-card li {
    color: var(--gray-400);
    font-size: 0.85rem;
    padding: var(--space-xs) 0;
}

/* Framework Grid */
.framework-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.framework-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    position: relative;
}

.framework-number {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: var(--teal);
    color: var(--white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.framework-item h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--navy-dark);
    margin-bottom: var(--space-sm);
}

.framework-item p {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* Validation Grid */
.validation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
}

.validation-item {
    text-align: center;
    padding: var(--space-lg);
}

.validation-item h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    margin-bottom: var(--space-md);
}

.validation-item p {
    color: var(--gray-400);
    font-size: 0.95rem;
}

/* Legal/Privacy Page */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-family: var(--font-display);
    font-size: 2.25rem;
    color: var(--navy-dark);
    margin-bottom: var(--space-sm);
}

.legal-date {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: var(--space-3xl);
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--navy-dark);
    margin-top: var(--space-3xl);
    margin-bottom: var(--space-md);
}

.legal-content h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    color: var(--navy-dark);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

.legal-content p {
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.legal-content ul {
    margin-bottom: var(--space-md);
    padding-left: var(--space-xl);
}

.legal-content li {
    margin-bottom: var(--space-sm);
    line-height: 1.6;
}

.contact-box {
    background: var(--gray-100);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    margin-top: var(--space-md);
}

.contact-box a {
    color: var(--teal-dark);
}
