/* ============================================
   THE GREEN CODE - MAIN STYLESHEET
   Modern, professional design for AI governance
   ============================================ */

/* ============================================
   ROOT VARIABLES & RESET
   ============================================ */

:root {
    /* Colors */
    --primary-green: #10b981;
    --primary-dark: #059669;
    --primary-light: #34d399;
    --accent-blue: #3b82f6;
    --accent-cyan: #06b6d4;
    
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    
    --bg-white: #ffffff;
    --bg-gray-50: #f9fafb;
    --bg-gray-100: #f3f4f6;
    --bg-gray-900: #111827;
    
    --border-color: #e5e7eb;
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px 0;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    line-height: 1.6;
    background: var(--bg-white);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.875rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.7;
}

a {
    color: var(--primary-green);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

/* ============================================
   LAYOUT
   ============================================ */

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding);
}

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

.section-dark {
    background: var(--bg-gray-900);
    color: white;
}

.section-gradient {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-cyan) 100%);
    color: white;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.logo i {
    color: var(--primary-green);
    font-size: 1.5rem;
}

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

.nav-menu a {
    color: var(--text-primary);
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-green);
    border-bottom-color: var(--primary-green);
}

.btn-nav {
    background: var(--primary-green);
    color: white !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 0.5rem;
    border: none !important;
}

.btn-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
    color: white;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--primary-light);
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-light);
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-primary);
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: white;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
    transform: translateY(-2px);
}

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

.btn-white:hover {
    background: var(--bg-gray-100);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-title-white,
.section-subtitle-white {
    color: white;
}

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

.mb-60 {
    margin-bottom: 60px;
}

/* ============================================
   GRIDS
   ============================================ */

.principle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.component-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* ============================================
   CARDS
   ============================================ */

.principle-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

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

.principle-number {
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 4rem;
    font-weight: 700;
    color: var(--bg-gray-100);
    font-family: var(--font-heading);
}

.principle-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-cyan));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.principle-icon i {
    font-size: 1.75rem;
    color: white;
}

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

.principle-card p {
    color: var(--text-secondary);
    margin: 0;
}

.component-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 1rem;
    transition: var(--transition);
}

.component-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.component-icon {
    width: 50px;
    height: 50px;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.component-icon i {
    font-size: 1.5rem;
    color: var(--primary-light);
}

.component-card h3 {
    color: white;
    margin-bottom: 0.75rem;
}

.component-card p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

.component-link {
    color: var(--primary-light);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.component-link:hover {
    gap: 0.75rem;
}

.impact-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    margin-bottom: 1.5rem;
}

.impact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-cyan));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.impact-icon i {
    font-size: 1.5rem;
    color: white;
}

.impact-card h3 {
    margin-bottom: 0.75rem;
}

.impact-card p {
    color: var(--text-secondary);
    margin: 0;
}

/* ============================================
   PAGE HEADER
   ============================================ */

.page-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 150px 0 80px;
    margin-top: 70px;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
}

.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-header h1 {
    color: white;
    margin-bottom: 1rem;
}

.page-header .lead {
    color: #cbd5e1;
    font-size: 1.5rem;
}

/* ============================================
   CONTENT LAYOUTS
   ============================================ */

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
}

.content-main {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

.content-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    margin-bottom: 1.5rem;
}

.sidebar-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.fact-list,
.component-list {
    list-style: none;
}

.fact-list li,
.component-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fact-list li:last-child,
.component-list li:last-child {
    border-bottom: none;
}

.component-list a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.component-list a:hover {
    color: var(--primary-green);
    padding-left: 0.5rem;
}

.sidebar-cta {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-cyan));
    color: white;
}

.sidebar-cta h3,
.sidebar-cta p {
    color: white;
}

.highlight-box {
    background: var(--bg-gray-50);
    border-left: 4px solid var(--primary-green);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0.5rem;
}

.info-box {
    background: #ecfdf5;
    border: 2px solid var(--primary-green);
    padding: 2rem;
    border-radius: 1rem;
    margin: 2rem 0;
}

.warning-box {
    background: #fef2f2;
    border: 2px solid #ef4444;
    padding: 2rem;
    border-radius: 1rem;
    margin: 2rem 0;
}

blockquote {
    border-left: 4px solid var(--primary-green);
    padding-left: 1.5rem;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-secondary);
    margin: 2rem 0;
}

.big-quote {
    font-size: 1.5rem;
    text-align: center;
    border: none;
    color: var(--text-primary);
    font-weight: 600;
    padding: 2rem;
    background: var(--bg-gray-50);
    border-radius: 1rem;
}

/* ============================================
   PRINCIPLE DETAILS
   ============================================ */

.principle-detail {
    margin-bottom: 4rem;
}

.principle-detail-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.principle-detail-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--bg-gray-100);
    font-family: var(--font-heading);
}

.principle-detail-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-cyan));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.principle-detail-icon i {
    font-size: 2rem;
    color: white;
}

.principle-detail-header h2 {
    margin: 0;
}

.principle-detail-content h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.detail-card {
    background: var(--bg-gray-50);
    padding: 1.5rem;
    border-radius: 0.75rem;
}

.detail-card h4 {
    color: var(--primary-green);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

/* ============================================
   TABLES
   ============================================ */

table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

thead {
    background: var(--bg-gray-900);
    color: white;
}

th, td {
    padding: 1rem;
    text-align: left;
}

tbody tr {
    border-bottom: 1px solid var(--border-color);
}

tbody tr:hover {
    background: var(--bg-gray-50);
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.badge-gray { background: #e5e7eb; color: #6b7280; }
.badge-blue { background: #dbeafe; color: #1e40af; }
.badge-cyan { background: #cffafe; color: #155e75; }
.badge-green { background: #d1fae5; color: #065f46; }
.badge-emerald { background: #d1fae5; color: #047857; }
.badge-gold { background: #fef3c7; color: #92400e; }

/* ============================================
   FORMS
   ============================================ */

.form-container {
    background: var(--bg-gray-50);
    padding: 2rem;
    border-radius: 1rem;
    margin: 2rem 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* ============================================
   CTA SECTIONS
   ============================================ */

.cta-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-cyan) 100%);
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

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

.cta-box {
    background: var(--bg-gray-50);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    margin: 3rem 0;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--bg-gray-900);
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo i {
    color: var(--primary-green);
    font-size: 1.5rem;
}

.footer-col p {
    color: #9ca3af;
    margin-bottom: 1.5rem;
}

.footer-col h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

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

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: #9ca3af;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-green);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: white;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-green);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #9ca3af;
    font-size: 0.875rem;
}

/* ============================================
   FRAMEWORK PAGE SPECIFIC
   ============================================ */

.framework-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.framework-nav-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
    border: 2px solid transparent;
}

.framework-nav-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.framework-nav-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-cyan));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.framework-nav-icon i {
    font-size: 2rem;
    color: white;
}

.framework-nav-card h3 {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.framework-nav-card p {
    color: var(--text-secondary);
    margin: 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .content-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: white;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s ease;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .principle-detail-header {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   IMPLEMENTATION PAGE SPECIFIC STYLES
   ============================================ */

/* Badges */
.implementation-badge {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.badge-large {
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.badge-success {
    background: #d1fae5;
    color: #065f46;
    border: 2px solid #10b981;
}

.badge-info {
    background: #dbeafe;
    color: #1e40af;
    border: 2px solid #3b82f6;
}

/* Alerts */
.alert {
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin: 2rem 0;
    border-left: 4px solid;
}

.alert-success {
    background: #ecfdf5;
    border-left-color: #10b981;
    color: #065f46;
}

.alert-info {
    background: #eff6ff;
    border-left-color: #3b82f6;
    color: #1e40af;
}

.alert-warning {
    background: #fef3c7;
    border-left-color: #f59e0b;
    color: #92400e;
}

/* Implementation Cards */
.implementation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.implementation-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: var(--transition);
}

.implementation-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.implementation-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-cyan));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.implementation-icon i {
    font-size: 1.75rem;
    color: white;
}

.implementation-card h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.implementation-card ul {
    color: var(--text-secondary);
    margin-left: 1.5rem;
}

.implementation-card ul li {
    margin-bottom: 0.5rem;
}

/* Spec Table */
.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.spec-table thead {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-cyan));
    color: white;
}

.spec-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.spec-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.spec-table tbody tr:hover {
    background: var(--bg-gray-50);
}

.spec-table tbody tr:last-child td {
    border-bottom: none;
}

/* Neuro Stats */
.neuro-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.neuro-stat-card {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-cyan));
    color: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.neuro-stat-card .stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.neuro-stat-card .stat-label {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    opacity: 0.95;
}

.neuro-stat-card p {
    font-size: 0.875rem;
    opacity: 0.85;
    margin: 0;
}

/* Advantage Grid */
.advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.advantage-card {
    background: var(--bg-gray-50);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border-left: 4px solid var(--primary-green);
}

.advantage-card h4 {
    color: var(--primary-green);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.advantage-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

/* Criteria Grid */
.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.criteria-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    position: relative;
}

.criteria-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-cyan));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
}

.criteria-card h4 {
    margin: 2rem 0 1rem;
    color: var(--text-primary);
}

.criteria-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

/* Tier Goal */
.tier-goal {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-cyan));
    color: white;
    padding: 1.5rem;
    border-radius: 1rem;
    font-size: 1.125rem;
    text-align: center;
    margin: 2rem 0;
}

/* Metric Detail */
.metric-detail {
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    margin: 2rem 0;
    overflow: hidden;
}

.metric-header {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-cyan));
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.metric-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
}

.metric-header h4 {
    color: white;
    margin: 0;
    font-size: 1.5rem;
}

.metric-content {
    padding: 2rem;
}

.metric-content p {
    margin-bottom: 1rem;
}

.metric-content p:last-child {
    margin-bottom: 0;
}

/* Code Block */
.code-block {
    background: #1f2937;
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin: 2rem 0;
    overflow-x: auto;
}

.code-block pre {
    margin: 0;
    color: #e5e7eb;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
}

.code-block code {
    color: #10b981;
}

/* Download Section */
.download-section {
    background: var(--bg-gray-50);
    padding: 2rem;
    border-radius: 1rem;
    margin: 3rem 0;
    text-align: center;
}

.download-section h3 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.download-grid {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Report Grid */
.report-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.report-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.report-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.report-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-cyan));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.report-icon i {
    font-size: 1.75rem;
    color: white;
}

.report-card h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.report-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.report-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.875rem;
    color: var(--text-light);
}

.report-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Info Panel */
.info-panel {
    background: #eff6ff;
    border: 2px solid #3b82f6;
    padding: 2rem;
    border-radius: 1rem;
    margin: 3rem 0;
}

.info-panel h3 {
    color: #1e40af;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-panel ul {
    margin-left: 1.5rem;
    color: var(--text-secondary);
}

.info-panel ul li {
    margin-bottom: 0.5rem;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 50px;
    margin: 3rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 30px;
    bottom: 30px;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-green), var(--accent-cyan));
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-marker {
    position: absolute;
    left: -50px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-cyan));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: var(--shadow-lg);
    z-index: 1;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-green);
}

.timeline-content h3 {
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.timeline-status {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.timeline-status:not(.active) {
    background: #d1fae5;
    color: #065f46;
}

.timeline-status.active {
    background: #dbeafe;
    color: #1e40af;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.timeline-content ul {
    margin-left: 1.5rem;
    color: var(--text-secondary);
}

.timeline-content ul li {
    margin-bottom: 0.5rem;
}

/* Responsive adjustments for implementation page */
@media (max-width: 768px) {
    .timeline {
        padding-left: 30px;
    }
    
    .timeline::before {
        left: 13px;
    }
    
    .timeline-marker {
        left: -30px;
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .neuro-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .download-grid {
        flex-direction: column;
    }
}

/* ============================================
   SILICON COUNCIL PAGE STYLES
   ============================================ */

.page-header-council {
    background: linear-gradient(135deg, #1e3a8a 0%, #7c3aed 100%);
}

.council-badge {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.badge-gold {
    background: #fef3c7;
    color: #92400e;
    border: 2px solid #f59e0b;
}

.council-intro {
    max-width: 900px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.vow-statement {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-cyan));
    padding: 3rem;
    border-radius: 1rem;
    margin: 3rem 0;
    color: white;
}

.vow-statement h3 {
    color: white;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.vow-text {
    font-size: 1.25rem;
    line-height: 1.8;
    border: none;
    padding: 0;
    margin: 0;
    font-style: italic;
}

.council-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.council-stat {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-cyan));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-icon i {
    font-size: 1.75rem;
    color: white;
}

.sector-section {
    margin-bottom: 4rem;
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

.sector-section.special-section {
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    border: 2px solid var(--primary-green);
}

.sector-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid var(--border-color);
}

.sector-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-cyan));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sector-icon i {
    font-size: 2rem;
    color: white;
}

.sector-title h3 {
    margin: 0 0 0.5rem 0;
    color: var(--text-primary);
}

.sector-subtitle {
    color: var(--text-secondary);
    font-style: italic;
    margin: 0;
}

.sector-role {
    background: var(--bg-gray-50);
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-green);
}

.council-members {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.member-card {
    background: var(--bg-gray-50);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 2px solid transparent;
    transition: var(--transition);
}

.member-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.member-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-cyan));
    color: white;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.member-card h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.member-title {
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-style: italic;
}

.member-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

.auditor-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.auditor-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.auditor-icon i {
    font-size: 2.5rem;
    color: white;
}

.section-mandate {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

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

.mandate-formula {
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    margin-bottom: 3rem;
}

.formula-label {
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.formula-display-large {
    font-size: 2rem;
    margin: 2rem 0;
    color: white;
}

.formula-explanation {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin: 0;
}

.mandate-principles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.mandate-principle {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mandate-principle i {
    font-size: 2.5rem;
    color: var(--primary-light);
    margin-bottom: 1rem;
}

.mandate-principle h4 {
    color: white;
    margin-bottom: 0.75rem;
}

.mandate-principle p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
}

.join-council {
    max-width: 900px;
    margin: 0 auto;
}

.join-criteria {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    margin: 3rem 0;
}

.criteria-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.criteria-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.criteria-item i {
    color: var(--primary-green);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.criteria-item strong {
    color: var(--text-primary);
    font-size: 1.125rem;
}

.criteria-item p {
    color: var(--text-secondary);
    margin: 0.5rem 0 0 0;
}

/* ============================================
   MUNICIPAL PILOT PAGE STYLES
   ============================================ */

.pilot-badge {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.memo-header {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-green);
}

.memo-meta {
    background: var(--bg-gray-50);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-top: 1.5rem;
}

.memo-meta p {
    margin: 0.5rem 0;
}

.executive-summary {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

.transformation-box {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin: 3rem 0;
}

.transform-before,
.transform-after {
    padding: 2rem;
    border-radius: 1rem;
}

.transform-before {
    background: #fef2f2;
    border: 2px solid #ef4444;
}

.transform-after {
    background: #ecfdf5;
    border: 2px solid var(--primary-green);
}

.transform-before h4,
.transform-after h4 {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.transform-arrow {
    font-size: 2rem;
    color: var(--primary-green);
}

.miracles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.miracle-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: var(--transition);
}

.miracle-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.miracle-highlight {
    border: 2px solid var(--primary-green);
    background: linear-gradient(to bottom, white, #ecfdf5);
}

.miracle-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-cyan));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.miracle-icon i {
    font-size: 2rem;
    color: white;
}

.miracle-stats {
    text-align: center;
    padding: 2rem;
    background: var(--bg-gray-50);
    border-radius: 0.75rem;
    margin: 1.5rem 0;
}

.miracle-stat .stat-large {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-green);
    font-family: var(--font-heading);
    display: block;
}

.miracle-details {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.miracle-details ul {
    margin-left: 1.5rem;
}

.miracle-conclusion {
    background: var(--bg-gray-50);
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
    font-style: italic;
}

.spec-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.spec-item {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    display: flex;
    gap: 1.5rem;
}

.spec-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-cyan));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.spec-icon i {
    font-size: 1.75rem;
    color: white;
}

.spec-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-green);
    margin: 0.5rem 0;
}

.spec-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

.deployment-benefits {
    margin: 4rem 0;
}

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

.benefit-card {
    background: var(--bg-gray-50);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

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

.metric-showcase-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.metric-category {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.metric-showcase-card h3 {
    color: white;
    margin-bottom: 1.5rem;
}

.metric-breakdown {
    margin: 2rem 0;
}

.metric-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-label {
    color: rgba(255, 255, 255, 0.8);
}

.metric-value {
    font-weight: 600;
    color: white;
}

.highlight-row {
    background: rgba(16, 185, 129, 0.2);
    padding: 1rem;
    border-radius: 0.5rem;
    border: none;
    margin-top: 1rem;
}

.highlight-value {
    font-size: 1.5rem;
    color: var(--primary-light);
}

.metric-conclusion {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
}

.pilot-criteria {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    margin: 3rem 0;
}

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

.criteria-col h4 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.criteria-col ul {
    list-style: none;
    margin-left: 0;
}

.criteria-col li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
}

.criteria-col li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

.pilot-benefits-section {
    margin: 4rem 0;
}

.pilot-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pilot-benefit {
    background: var(--bg-gray-50);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
}

.pilot-benefit i {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.social-template {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    max-width: 700px;
    margin: 0 auto;
}

.template-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.template-header i {
    font-size: 2rem;
    color: #0077b5;
}

.template-content {
    background: var(--bg-gray-50);
    padding: 2rem;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
}

.template-stats {
    list-style: none;
    margin: 1.5rem 0;
}

.template-stats li {
    padding: 0.5rem 0;
    font-size: 1.125rem;
}

/* Responsive for Council and Municipal */
@media (max-width: 768px) {
    .transformation-box {
        grid-template-columns: 1fr;
    }
    
    .transform-arrow {
        transform: rotate(90deg);
    }
    
    .council-members {
        grid-template-columns: 1fr;
    }
    
    .criteria-grid-2col {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ALL PHASES PAGE STYLES
   ============================================ */

/* Phase Badge Header */
.phases-badge {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.badge-large {
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.badge-success {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    color: white;
}

.badge-info {
    background: linear-gradient(135deg, var(--accent-blue), #2563eb);
    color: white;
}

.badge-gold {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

/* Status Banner */
.status-banner {
    padding: 2rem 0;
}

.status-alert {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    padding: 2rem;
    border-radius: 1rem;
    color: white;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    box-shadow: var(--shadow-xl);
}

.status-icon {
    font-size: 2.5rem;
    color: var(--primary-light);
}

.status-content h3 {
    color: white;
    margin-bottom: 1rem;
}

.status-content p {
    margin: 0.5rem 0;
    color: rgba(255, 255, 255, 0.95);
}

.status-transition {
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* Phases Timeline */
.phases-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.phase-block {
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
    border: 3px solid transparent;
}

.phase-block:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.phase-complete {
    border-color: var(--primary-green);
}

.phase-active {
    border-color: var(--accent-blue);
    animation: pulse-border 2s infinite;
}

.phase-planned {
    border-color: #f59e0b;
}

.phase-future {
    border-color: var(--text-light);
}

@keyframes pulse-border {
    0%, 100% {
        border-color: var(--accent-blue);
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.5);
    }
    50% {
        border-color: #2563eb;
        box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
    }
}

.phase-marker {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: var(--bg-gray-50);
}

.phase-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: white;
    color: var(--primary-green);
    border: 3px solid var(--primary-green);
}

.phase-complete .phase-icon {
    background: var(--primary-green);
    color: white;
}

.phase-active .phase-icon {
    background: var(--accent-blue);
    color: white;
    border-color: var(--accent-blue);
}

.phase-planned .phase-icon {
    background: white;
    color: #f59e0b;
    border-color: #f59e0b;
}

.phase-future .phase-icon {
    background: white;
    color: var(--text-light);
    border-color: var(--text-light);
}

.phase-label {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.phase-content {
    padding: 2rem;
}

.phase-content h3 {
    margin-bottom: 0.5rem;
}

.phase-desc {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.phase-content ul {
    list-style: none;
    margin-left: 0;
}

.phase-content li {
    padding: 0.5rem 0 0.5rem 1.75rem;
    position: relative;
    line-height: 1.6;
}

.phase-content li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

/* Purchase Order Section */
.po-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-gray-50);
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
}

.po-header h3 {
    margin: 0;
}

.po-status {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--accent-blue), #2563eb);
    color: white;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 0.95rem;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.8);
    }
}

.po-details {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

.po-table,
.line-items-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

.po-table th,
.po-table td,
.line-items-table th,
.line-items-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.po-table thead th,
.line-items-table thead th {
    background: var(--bg-gray-50);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.line-items-header {
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.po-notes {
    background: var(--bg-gray-50);
    padding: 2rem;
    border-radius: 0.75rem;
    margin-top: 2rem;
}

.po-notes h4 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.po-notes ul {
    list-style: none;
    margin-left: 0;
}

.po-notes li {
    padding: 0.5rem 0 0.5rem 1.75rem;
    position: relative;
}

.po-notes li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-size: 1.5rem;
}

/* Technical Specifications Grid */
.tech-specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tech-spec-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-top: 4px solid var(--primary-green);
}

.tech-spec-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.tech-spec-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.tech-spec-card h3 {
    margin-bottom: 1.5rem;
}

.spec-mini-table {
    width: 100%;
}

.spec-mini-table tr {
    border-bottom: 1px solid var(--border-color);
}

.spec-mini-table td {
    padding: 0.75rem 0.5rem;
}

.spec-mini-table td:first-child {
    color: var(--text-secondary);
    font-weight: 500;
}

.spec-mini-table td:last-child {
    font-weight: 600;
    text-align: right;
    color: var(--primary-green);
}

/* Architecture Comparison */
.architecture-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin: 3rem 0;
}

.arch-column {
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

.arch-legacy {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border: 2px solid #ef4444;
}

.arch-symbiotic {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border: 2px solid var(--primary-green);
}

.arch-column h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.arch-item {
    padding: 1rem;
    background: white;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.arch-item:last-child {
    margin-bottom: 0;
}

.arch-arrow {
    text-align: center;
}

.arch-arrow i {
    font-size: 3rem;
    color: var(--primary-green);
}

.arch-arrow p {
    font-weight: 700;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

/* Phase 1 Highlights */
.phase1-highlights {
    margin-top: 3rem;
}

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

.achievement-card {
    background: linear-gradient(135deg, var(--bg-gray-50), white);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition);
}

.achievement-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
}

.achievement-card i {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.achievement-card h4 {
    margin-bottom: 1rem;
}

/* Download Showcase */
.download-showcase {
    margin: 3rem 0;
}

.download-card-large {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    text-align: center;
    border: 3px solid var(--primary-green);
}

.download-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.download-card-large h3 {
    margin-bottom: 1rem;
}

.download-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.download-meta span {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.download-meta i {
    color: var(--primary-green);
    margin-right: 0.5rem;
}

.download-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: white;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

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

.individual-downloads {
    margin-top: 4rem;
}

.component-downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.component-download {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.component-download:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-5px);
}

.component-download i {
    font-size: 3rem;
    color: var(--primary-light);
    margin-bottom: 1rem;
}

.component-download h4 {
    color: white;
    margin-bottom: 1rem;
}

.component-download a {
    color: white;
    font-weight: 600;
    text-decoration: underline;
}

/* ============================================
   AUTHOR FOOTER
   ============================================ */

.author-footer {
    background: var(--bg-gray-900);
    padding: 1.5rem 0;
    text-align: center;
    border-top: 2px solid var(--primary-green);
}

.author-footer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.6;
}

.author-footer a {
    color: var(--primary-green);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.author-footer a:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

.author-footer .separator {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 0.5rem;
}

.who-wrote-this-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    color: white;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.who-wrote-this-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.5);
    color: white;
}

.who-wrote-this-btn i {
    margin-right: 0.5rem;
}

/* ============================================
   AUTHOR VIDEO SECTION (ABOUT PAGE)
   ============================================ */

.author-intro-section {
    max-width: 900px;
    margin: 0 auto;
}

.video-container {
    margin: 3rem 0;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: #000;
}

.author-video {
    width: 100%;
    height: auto;
    display: block;
    max-height: 600px;
}

.author-bio {
    text-align: center;
    margin-top: 3rem;
}

.author-bio .lead {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.author-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    color: var(--text-primary);
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
}

.social-link:hover {
    border-color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--primary-green);
}

.social-link i {
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    .author-video {
        max-height: 400px;
    }
    
    .author-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .social-link {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Responsive for All Phases */
@media (max-width: 968px) {
    .architecture-comparison {
        grid-template-columns: 1fr;
    }
    
    .arch-arrow {
        transform: rotate(90deg);
    }
    
    .phase-marker {
        flex-direction: column;
        text-align: center;
    }
    
    .po-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .phases-badge {
        flex-direction: column;
        align-items: center;
    }
    
    .status-alert {
        flex-direction: column;
        text-align: center;
    }
    
    .tech-specs-grid {
        grid-template-columns: 1fr;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .download-buttons {
        flex-direction: column;
    }
    
    .download-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ============================================
   OPERATIONAL LEDGER PAGE STYLES
   ============================================ */

/* Ledger Badge */
.ledger-badge {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

/* Abundance Index */
.abundance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.abundance-card {
    padding: 3rem 2rem;
    border-radius: 1rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.abundance-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.abundance-primary {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.2));
}

.abundance-secondary {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(37, 99, 235, 0.2));
}

.abundance-tertiary {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(217, 119, 6, 0.2));
}

.abundance-icon {
    font-size: 3rem;
    color: white;
    margin-bottom: 1.5rem;
}

.abundance-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.abundance-label {
    font-size: 1.25rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.abundance-desc {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Status Banner Ledger */
.status-banner-ledger {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    padding: 3rem;
    border-radius: 1rem;
    color: white;
    box-shadow: var(--shadow-xl);
}

.status-icon-large {
    font-size: 5rem;
    color: var(--primary-light);
    flex-shrink: 0;
}

.status-content-ledger h2 {
    color: white;
    margin-bottom: 1rem;
}

.status-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.status-metric {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 0.5rem;
    border-left: 3px solid var(--primary-light);
}

/* Reality Comparison */
.reality-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin: 3rem 0;
}

.reality-side {
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

.reality-legacy {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border: 2px solid #ef4444;
}

.reality-symbiotic {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border: 2px solid var(--primary-green);
}

.reality-side h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.reality-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.reality-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 0.5rem;
}

.stat-label {
    font-weight: 600;
    color: var(--text-secondary);
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.stat-bad {
    color: #ef4444;
}

.stat-good {
    color: var(--primary-green);
}

.reality-arrow {
    text-align: center;
    font-size: 3rem;
    color: var(--primary-green);
}

.reality-arrow p {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    margin-top: 0.5rem;
}

/* Deployment Grid */
.deployment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.deployment-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    border-top: 4px solid var(--primary-green);
    transition: var(--transition);
}

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

.deployment-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    margin: 0 auto 1.5rem;
}

.deployment-card h3 {
    margin-bottom: 1rem;
}

.deployment-detail {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Phase 3 Content */
.phase3-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.directive-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.directive-header {
    background: rgba(255, 255, 255, 0.15);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.directive-header i {
    font-size: 2rem;
    color: var(--primary-light);
}

.directive-header h3 {
    color: white;
    margin: 0;
}

.directive-body {
    padding: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.directive-body p {
    margin-bottom: 1rem;
}

.directive-highlight {
    background: rgba(16, 185, 129, 0.2);
    padding: 1rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--primary-light);
    font-weight: 600;
}

.next-steps {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.next-steps h3 {
    color: white;
    margin-bottom: 1.5rem;
}

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

.benefits-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list i {
    color: var(--primary-light);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* Center of Gravity */
.gravity-box {
    background: linear-gradient(135deg, var(--bg-gray-50), white);
    padding: 4rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    text-align: center;
    border: 3px solid var(--primary-green);
}

.gravity-box h2 {
    margin-bottom: 1.5rem;
}

.gravity-box .lead {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.gravity-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

/* Documentation Download Grid */
.docs-download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.doc-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    border-top: 4px solid var(--primary-green);
    transition: var(--transition);
}

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

.doc-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
}

.doc-card h3 {
    margin-bottom: 1rem;
}

.doc-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 1.5rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.doc-meta i {
    color: var(--primary-green);
    margin-right: 0.5rem;
}

/* Responsive for Operational Ledger */
@media (max-width: 968px) {
    .reality-comparison {
        grid-template-columns: 1fr;
    }
    
    .reality-arrow {
        transform: rotate(90deg);
    }
    
    .phase3-content {
        grid-template-columns: 1fr;
    }
    
    .status-banner-ledger {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .abundance-number {
        font-size: 2.5rem;
    }
    
    .gravity-box {
        padding: 2rem;
    }
    
    .gravity-cta {
        flex-direction: column;
    }
}