/* Reachy iOS Bridge - Matching App Branding */

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

:root {
    /* Light mode (default) - warm cream palette */
    --bg-primary: #FBF5EF;
    --bg-secondary: #F5EDE5;
    --surface: #FFFFFF;
    --text-primary: #2D3748;
    --text-secondary: #5A6578;
    --accent: #E8A954;
    --accent-dark: #D4863A;
    --accent-light: #F5C882;
    --button-primary: #7889A8;
    --button-primary-dark: #5F6F8C;
    --success: #6B9B7A;
    --warning: #E89B54;
    --error: #C97066;
    --divider: #E8E4DF;
    --border: #E0DCD6;
    --shadow: rgba(45, 55, 72, 0.08);
    --code-bg: #F0EBE5;
}

@media (prefers-color-scheme: dark) {
    :root {
        --bg-primary: #1A1815;
        --bg-secondary: #141210;
        --surface: #252220;
        --text-primary: #F5F0E8;
        --text-secondary: #A8A098;
        --divider: #3A3632;
        --border: #3A3632;
        --shadow: rgba(0, 0, 0, 0.3);
        --code-bg: #2D2A26;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

.page-wrapper {
    width: 100%;
    overflow-x: hidden;
}

/* Navigation */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--divider);
    backdrop-filter: blur(10px);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo {
    font-size: 1.5rem;
}

.nav-logo-img {
    height: 32px;
    width: 32px;
    border-radius: 22.37%;
    object-fit: cover;
}

.nav-title {
    font-family: 'Mulish', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 5rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--accent);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero h1 {
    font-family: 'Mulish', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 2rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

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

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

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

.btn-secondary:hover {
    background: var(--divider);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.device-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.device {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 2rem 3rem;
    background: var(--surface);
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px var(--shadow);
    border: 1px solid var(--border);
}

.device-icon {
    font-size: 3rem;
}

.device-label {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.connection-line {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0;
}

.signal {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

.signal:nth-child(2) { animation-delay: 0.3s; }
.signal:nth-child(3) { animation-delay: 0.6s; }

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

/* Hero Logo */
.hero-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.hero-logo {
    width: 200px;
    height: 200px;
    border-radius: 22.37%;
    object-fit: cover;
    box-shadow: 0 8px 32px var(--shadow);
    animation: float-logo 4s ease-in-out infinite;
}

@keyframes float-logo {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Sections */
.section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-alt {
    background: var(--bg-secondary);
    max-width: none;
    padding-left: 2rem;
    padding-right: 2rem;
}

.section-alt > * {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: 'Mulish', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.section-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: var(--surface);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px var(--shadow);
    border-color: var(--accent);
}

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

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

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

/* Feature Examples */
.examples-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.example-item {
    background: var(--surface);
    border-radius: 1rem;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.2s;
}

.example-item:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 20px var(--shadow);
}

.example-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
}

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

.example-header h3 {
    font-family: 'Mulish', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-primary);
}

.example-content {
    padding: 1.25rem 1.5rem;
}

.example-content > p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.example-commands {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.command {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--code-bg);
    border-radius: 2rem;
    font-size: 0.85rem;
    color: var(--text-primary);
    font-style: italic;
    border: 1px solid var(--border);
}

.command::before {
    content: '"';
}

.command::after {
    content: '"';
}

@media (max-width: 600px) {
    .example-header {
        padding: 1rem 1.25rem;
    }
    
    .example-content {
        padding: 1rem 1.25rem;
    }
    
    .example-commands {
        flex-direction: column;
    }
    
    .command {
        text-align: center;
    }
}

/* Architecture */
.architecture {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 600px;
    margin: 0 auto;
}

.arch-layer {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--surface);
    border-radius: 1rem;
    border: 1px solid var(--border);
    align-items: flex-start;
}

.arch-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.arch-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.arch-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.arch-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    padding: 0.25rem 0.75rem;
    background: var(--code-bg);
    color: var(--text-secondary);
    font-size: 0.8rem;
    border-radius: 1rem;
    font-weight: 500;
}

.arch-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem 0;
}

.connector-line {
    width: 2px;
    height: 24px;
    background: linear-gradient(to bottom, var(--accent), var(--accent-light));
}

.connector-label {
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 600;
    margin-top: 0.25rem;
}

/* Steps */
.steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 1.5rem;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.step-content ul {
    list-style: none;
    padding: 0;
}

.step-content li {
    color: var(--text-secondary);
    padding: 0.25rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.step-content li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent);
}

.step-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
}

.coming-soon-badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: var(--accent);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 1rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.code-block {
    background: var(--code-bg);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    margin: 0.5rem 0;
    overflow-x: auto;
}

.code-block code {
    font-family: 'SF Mono', Consolas, monospace;
    font-size: 0.9rem;
    color: var(--text-primary);
}

code {
    font-family: 'SF Mono', Consolas, monospace;
    background: var(--code-bg);
    padding: 0.15rem 0.4rem;
    border-radius: 0.25rem;
    font-size: 0.9em;
}

/* API Grid */
.api-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.5rem;
}

.api-card {
    background: var(--surface);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
}

.api-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.api-method {
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.api-method.get {
    background: var(--success);
    color: white;
}

.api-method.post {
    background: var(--button-primary);
    color: white;
}

.api-header code {
    font-size: 1rem;
    font-weight: 600;
    background: transparent;
    padding: 0;
}

.api-card > p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.api-response {
    background: var(--code-bg);
    border-radius: 0.5rem;
    overflow: hidden;
}

.api-response pre {
    padding: 1rem;
    font-family: 'SF Mono', Consolas, monospace;
    font-size: 0.85rem;
    color: var(--text-primary);
    margin: 0;
    overflow-x: auto;
}

.api-note {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.api-more {
    text-align: center;
    margin-top: 2rem;
}

.api-more a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.api-more a:hover {
    text-decoration: underline;
}

/* Voices Grid */
.voices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.voice-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--surface);
    border-radius: 1rem;
    border: 1px solid var(--border);
    transition: all 0.2s;
}

.voice-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.voice-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.voice-info h4 {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.125rem;
}

.voice-info p {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Help Grid */
.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.help-card {
    background: var(--surface);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
}

.help-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.help-card ol {
    padding-left: 1.25rem;
}

.help-card li {
    color: var(--text-secondary);
    padding: 0.35rem 0;
    font-size: 0.95rem;
}

.help-card code {
    font-size: 0.8rem;
}

/* Requirements Grid */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.req-card {
    background: var(--surface);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    text-align: center;
}

.req-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.req-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.req-card ul {
    list-style: none;
    padding: 0;
}

.req-card li {
    color: var(--text-secondary);
    padding: 0.35rem 0;
}

/* Legal Section */
.legal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.legal-card {
    background: var(--surface);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
}

.legal-card h2 {
    font-family: 'Mulish', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--divider);
    color: var(--text-primary);
}

.legal-content h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.legal-content h4:first-child {
    margin-top: 0;
}

.legal-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.legal-content a {
    color: var(--accent);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* Legal Pages (standalone) */
.legal-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.legal-page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--divider);
}

.legal-page-header h1 {
    font-family: 'Mulish', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.legal-updated {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.legal-page-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.legal-section h2 {
    font-family: 'Mulish', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.legal-section p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.legal-section ul {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0;
}

.legal-section li {
    color: var(--text-secondary);
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
}

.legal-section li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.legal-section a {
    color: var(--accent);
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .legal-page {
        padding: 2rem 1.5rem;
    }
    
    .legal-page-header h1 {
        font-size: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.25rem;
    }
}

/* Footer */
.footer {
    border-top: 1px solid var(--divider);
    padding: 3rem 2rem;
    margin-top: 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Mulish', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-logo {
    font-size: 1.5rem;
}

.footer-logo-img {
    height: 28px;
    width: 28px;
    border-radius: 22.37%;
    object-fit: cover;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

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

.footer-copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 3rem 1.5rem;
        gap: 3rem;
    }
    
    .hero-description {
        max-width: none;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .section {
        padding: 3rem 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .features-grid,
    .api-grid,
    .help-grid,
    .legal-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }
    
    .device {
        padding: 1.5rem 2rem;
    }
    
    .device-icon {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .voices-grid {
        grid-template-columns: 1fr;
    }
}

/* Documentation Page */
.docs-page {
    max-width: 900px;
}

.docs-header {
    text-align: center;
    margin-bottom: 4rem;
}

.docs-header h1 {
    font-family: 'Mulish', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--text-primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.docs-header p {
    color: var(--text-secondary);
    font-size: 1.25rem;
}

.docs-category {
    margin-bottom: 4rem;
}

.docs-category > h2 {
    font-family: 'Mulish', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--accent);
    color: var(--text-primary);
}

.docs-feature {
    background: var(--surface);
    border-radius: 1rem;
    border: 1px solid var(--border);
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.2s;
}

.docs-feature:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 20px var(--shadow);
}

.docs-feature-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
}

.docs-icon {
    font-size: 1.75rem;
}

.docs-feature-header h3 {
    font-family: 'Mulish', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-primary);
}

.docs-feature-content {
    padding: 1.5rem;
}

.docs-feature-content > p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.docs-feature-content h4 {
    font-family: 'Mulish', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    margin-top: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.docs-feature-content h4:first-of-type {
    margin-top: 0;
}

.docs-feature-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.docs-feature-content li {
    color: var(--text-secondary);
    padding: 0.35rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.docs-feature-content li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent);
}

.docs-feature-content li strong {
    color: var(--text-primary);
}

.docs-examples {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.docs-examples code {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--code-bg);
    border-radius: 2rem;
    font-size: 0.85rem;
    color: var(--text-primary);
    font-style: italic;
    border: 1px solid var(--border);
    font-family: 'Nunito', sans-serif;
}

.docs-note {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: var(--bg-secondary);
    border-radius: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-left: 3px solid var(--accent);
}

.docs-footer-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--divider);
}

@media (max-width: 600px) {
    .docs-header h1 {
        font-size: 2rem;
    }
    
    .docs-category > h2 {
        font-size: 1.35rem;
    }
    
    .docs-feature-header {
        padding: 1rem 1.25rem;
    }
    
    .docs-feature-content {
        padding: 1.25rem;
    }
    
    .docs-examples {
        flex-direction: column;
    }
    
    .docs-examples code {
        text-align: center;
    }
    
    .docs-footer-nav {
        flex-direction: column;
    }
    
    .docs-footer-nav .btn {
        width: 100%;
        text-align: center;
    }
}
