/* OrbisHub Website Styles - Matching Desktop App Theme */

:root {
    /* Colors matching OrbisHub Desktop */
    --bg: #0b0d12;
    --panel: #11131a;
    --muted: #9aa3b2;
    --text: #e6e7eb;
    --primary: #8aa2ff;
    --primary-dark: #6b82e6;
    --border: #1e2230;
    --ring: #29314a;
    
    /* Website specific */
    --max-width: 1400px;
    --section-padding: 80px 0;
    --card-padding: 32px;
    --border-radius: 12px;
    --transition: all 0.3s ease;
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Page Loading Animation */
#pageLoader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.loader-content {
    text-align: center;
    position: relative;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loader-logo {
    width: 30px;
    height: 30px;
    opacity: 0.9;
}

.loader-text {
    color: var(--muted);
    font-size: 14px;
    margin-top: 10px;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

img {
    max-width: 100%;
    height: auto;
}

/* Navigation */
.navbar {
    background: var(--panel);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    padding-bottom: 16px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.nav-brand:hover {
    opacity: 0.8;
}

.nav-logo {
    width: 54px;
    height: 54px;
    animation: spin 6s linear infinite;
}

.nav-brand-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: var(--muted);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--text) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 20px;
    color: var(--muted);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hero-badge {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}

.hero-image {
    position: relative;
    perspective: 1500px;
}

.screenshot {
    width: 100%;
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 
                0 0 0 1px rgba(138, 162, 255, 0.1);
    transform: rotateY(-8deg) rotateX(2deg) scale(1.05);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.screenshot:hover {
    transform: rotateY(-4deg) rotateX(1deg) scale(1.08);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7),
                0 0 0 1px rgba(138, 162, 255, 0.2);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
}

.btn-primary {
    background: var(--primary);
    color: #ffffff;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(138, 162, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    background: var(--panel);
    border-color: var(--primary);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 18px;
}

/* Features Overview Section */
.features-overview {
    padding: var(--section-padding);
    background: var(--panel);
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--muted);
    text-align: center;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.feature-card {
    background: var(--bg);
    padding: var(--card-padding);
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text);
}

.feature-card p {
    color: var(--muted);
    line-height: 1.7;
}

.features-cta {
    text-align: center;
}

/* Why Section */
.why-section {
    padding: var(--section-padding);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.why-item {
    text-align: center;
}

.why-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.why-item h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

.why-item p {
    color: var(--muted);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--panel) 0%, var(--bg) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    color: var(--muted);
    margin-bottom: 32px;
}

/* Footer */
.footer {
    background: var(--panel);
    padding: 60px 0 32px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.footer-logo {
    width: 32px;
    height: 32px;
}

.footer-brand span {
    font-size: 20px;
    font-weight: 700;
}

.footer-tagline {
    color: var(--muted);
    font-style: italic;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    color: var(--muted);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 68px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: var(--panel);
        padding: 32px;
        gap: 24px;
        transition: var(--transition);
        border-bottom: 1px solid var(--border);
        align-items: flex-start;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-link.active::after {
        display: none;
    }
    
    .hero {
        padding: 60px 0 40px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--ring);
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--border) var(--bg);
}

/* Page Header (used on all pages) */
.page-header {
    padding: 80px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, var(--bg) 0%, var(--panel) 100%);
    border-bottom: 1px solid var(--border);
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 20px;
    color: var(--muted);
}

/* Features Page Styles */
.features-detailed {
    padding: var(--section-padding);
}

.feature-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.feature-detail.reverse {
    direction: rtl;
}

.feature-detail.reverse > * {
    direction: ltr;
}

.feature-detail-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.feature-detail h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.feature-intro {
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: var(--text);
    line-height: 1.7;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 18px;
}

.feature-list li strong {
    color: var(--primary);
}

.feature-detail-image {
    position: relative;
    perspective: 1500px;
}

.feature-detail-image .screenshot {
    transform: rotateY(6deg) rotateX(2deg) scale(1.05);
}

.feature-detail.reverse .feature-detail-image .screenshot {
    transform: rotateY(-6deg) rotateX(2deg) scale(1.05);
}

.feature-detail-image .screenshot:hover {
    transform: rotateY(3deg) rotateX(1deg) scale(1.08);
}

.feature-detail.reverse .feature-detail-image .screenshot:hover {
    transform: rotateY(-3deg) rotateX(1deg) scale(1.08);
}

/* Download Page Styles */
.download-section {
    padding: var(--section-padding);
}

.download-main {
    margin-bottom: 80px;
}

.download-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 48px;
    max-width: 800px;
    margin: 0 auto;
}

.download-card.featured {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary);
}

.download-header {
    text-align: center;
    margin-bottom: 40px;
}

.download-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.download-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.version {
    font-size: 18px;
    color: var(--primary);
    font-weight: 600;
}

.release-date {
    color: var(--muted);
    margin-top: 8px;
}

.download-info {
    margin-bottom: 40px;
}

.download-info h3 {
    font-size: 20px;
    margin-bottom: 16px;
}

.download-actions {
    text-align: center;
}

.download-size {
    margin-top: 12px;
    color: var(--muted);
    font-size: 14px;
}

.requirements-section,
.additional-downloads,
.quickstart-section,
.release-notes {
    margin-bottom: 80px;
}

.requirements-section h2,
.additional-downloads h2,
.quickstart-section h2,
.release-notes h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
}

.requirement-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: var(--card-padding);
}

.requirement-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary);
}

.requirement-list {
    list-style: none;
    padding: 0;
}

.requirement-list li {
    padding: 8px 0;
    color: var(--text);
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.download-item {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
}

.download-item:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.download-item-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.download-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.download-item p {
    color: var(--muted);
    margin-bottom: 20px;
    font-size: 14px;
}

.quickstart-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}

.quickstart-step {
    text-align: center;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.quickstart-step h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.quickstart-step p {
    color: var(--muted);
    line-height: 1.7;
}

.quickstart-cta {
    text-align: center;
    padding: 32px;
    background: var(--panel);
    border-radius: var(--border-radius);
}

.release-notes {
    background: var(--panel);
    border-radius: var(--border-radius);
    padding: 48px;
}

.release h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--primary);
}

.release h4 {
    font-size: 18px;
    margin: 24px 0 12px;
}

.release ul {
    margin-bottom: 24px;
}

/* Documentation Page Styles */
.docs-section {
    padding: 40px 0 80px;
}

.docs-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
}

.docs-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.docs-nav h3 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--muted);
    margin: 32px 0 12px;
}

.docs-nav h3:first-child {
    margin-top: 0;
}

.docs-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.docs-nav li {
    margin: 4px 0;
}

.docs-nav a {
    display: block;
    padding: 8px 16px;
    color: var(--text);
    text-decoration: none;
    border-radius: 6px;
    transition: var(--transition);
}

.docs-nav a:hover {
    background: var(--panel);
    color: var(--primary);
}

.docs-content {
    max-width: 800px;
}

.doc-section {
    margin-bottom: 60px;
    scroll-margin-top: 80px;
}

.doc-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
}

.doc-section h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 32px 0 16px;
}

.doc-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 24px 0 12px;
    color: var(--primary);
}

.doc-section p {
    margin-bottom: 16px;
    line-height: 1.8;
}

.doc-section ul,
.doc-section ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.doc-section li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.code-block {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.code-block h4 {
    margin-top: 0;
}

.doc-section pre {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 16px;
    overflow-x: auto;
    margin: 16px 0;
}

.doc-section code {
    background: var(--bg);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: var(--primary);
}

.doc-section pre code {
    background: none;
    padding: 0;
    display: block;
    color: var(--text);
}

.info-box {
    background: var(--panel);
    border-left: 4px solid var(--primary);
    padding: 16px 20px;
    margin: 20px 0;
    border-radius: 4px;
}

/* Support Page Styles */
.support-section {
    padding: var(--section-padding);
}

.support-quick-links {
    margin-bottom: 80px;
}

.support-quick-links h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
}

.support-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.support-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 32px;
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
}

.support-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.support-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.support-card h3 {
    font-size: 20px;
    color: var(--text);
    margin-bottom: 12px;
}

.support-card p {
    color: var(--muted);
}

.contact-section,
.contact-methods,
.system-info-section,
.resources-section {
    margin-bottom: 80px;
}

.contact-section h2,
.contact-methods h2,
.system-info-section h2,
.resources-section h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--panel);
    padding: 48px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text);
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-family: var(--font-sans);
    font-size: 16px;
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(138, 162, 255, 0.1);
}

textarea.form-input {
    resize: vertical;
    min-height: 120px;
}

.form-message {
    max-width: 700px;
    margin: 20px auto;
    padding: 16px 20px;
    border-radius: 8px;
    text-align: center;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.method-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
}

.method-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.method-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.method-card p {
    color: var(--muted);
    margin-bottom: 16px;
}

.method-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    display: block;
    margin: 16px 0;
}

.method-link:hover {
    text-decoration: underline;
}

.method-note {
    font-size: 14px;
    font-style: italic;
}

.info-checklist {
    max-width: 700px;
    margin: 40px auto;
}

.checklist-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--panel);
    border-radius: 8px;
    margin-bottom: 16px;
}

.checkmark {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.checklist-item strong {
    display: block;
    margin-bottom: 4px;
    color: var(--text);
}

.checklist-item p {
    color: var(--muted);
    margin: 0;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.resource-item {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 32px;
    text-align: center;
}

.resource-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.resource-item p {
    color: var(--muted);
    margin-bottom: 20px;
}

/* About Page Styles */
.about-section,
.story-section,
.values-section,
.tech-section,
.roadmap-section {
    padding: var(--section-padding);
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.mission-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 32px;
}

.large-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--muted);
}

.story-section {
    background: var(--panel);
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--text);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.value-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.value-card p {
    color: var(--muted);
    line-height: 1.7;
}

.tech-section {
    background: var(--panel);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.tech-item {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 32px;
}

.tech-item h3 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--primary);
}

.tech-list {
    list-style: none;
    padding: 0;
}

.tech-list li {
    padding: 8px 0;
    color: var(--text);
    position: relative;
    padding-left: 20px;
}

.tech-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.roadmap-timeline {
    max-width: 900px;
    margin: 60px auto 0;
}

.roadmap-item {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 32px;
    margin-bottom: 32px;
    position: relative;
}

.roadmap-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.roadmap-item.completed .roadmap-badge {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.roadmap-item.in-progress .roadmap-badge {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

.roadmap-item.planned .roadmap-badge {
    background: rgba(234, 179, 8, 0.2);
    color: #eab308;
}

.roadmap-item.future .roadmap-badge {
    background: rgba(168, 85, 247, 0.2);
    color: #a855f7;
}

.roadmap-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.roadmap-item ul {
    padding-left: 24px;
    margin: 0;
}

.roadmap-item li {
    margin-bottom: 8px;
    color: var(--text);
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive for additional pages */
@media (max-width: 1024px) {
    .feature-detail,
    .feature-detail.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        direction: ltr;
    }
    
    .docs-layout {
        grid-template-columns: 1fr;
    }
    
    .docs-sidebar {
        position: static;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 32px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 32px 24px;
    }
    
    .methods-grid,
    .values-grid,
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .quickstart-steps {
        grid-template-columns: 1fr;
    }
}
