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

/* Skip link for keyboard users */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: white;
    padding: 8px 16px;
    z-index: 1001;
    transition: top 0.3s;
    text-decoration: none;
}

.skip-link:focus {
    top: 0;
}

/* Focus styles for accessibility */
*:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

button:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

a:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #1e293b;
    --text: #334155;
    --text-light: #64748b;
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --success: #22c55e;
    --warning: #f59e0b;
    --error: #ef4444;
    --border: #e2e8f0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

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

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text);
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

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

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

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

.btn-secondary:hover {
    background: #0f172a;
}

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

/* Hero */
.hero {
    padding: 160px 0 100px;
    text-align: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Terminal */
.terminal {
    background: #1e293b;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
}

.terminal code {
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.7;
    color: #e2e8f0;
}

.terminal .prompt {
    color: #6366f1;
}

.terminal .output {
    color: #94a3b8;
}

.terminal .success {
    color: var(--success);
}

/* Features */
.features {
    padding: 100px 0;
    background: var(--bg);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: var(--secondary);
}

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

.feature-card {
    padding: 2rem;
    border-radius: 12px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    transition: all 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

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

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--secondary);
}

.feature-card p {
    color: var(--text-light);
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background: var(--bg-alt);
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: var(--secondary);
}

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

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

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

.step code {
    background: var(--secondary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-family: 'Monaco', monospace;
    font-size: 0.9rem;
}

.step p {
    color: var(--text-light);
    margin-top: 1rem;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--bg);
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--secondary);
}

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

.testimonial-card {
    padding: 2rem;
    background: var(--bg-alt);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
    font-style: italic;
    position: relative;
}

.testimonial-content p:before {
    content: "\"";
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: -10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
}

.author-name {
    font-weight: 600;
    color: var(--secondary);
}

.author-role {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Integrations */
.integrations {
    padding: 100px 0;
    background: var(--bg);
}

.integrations h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

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

.integration-item {
    padding: 2rem;
    background: var(--bg-alt);
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.2s;
}

.integration-item:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.integration-icon {
    color: var(--primary);
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.integration-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.integration-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Compare Section */
.compare {
    padding: 100px 0;
    background: var(--bg-alt);
}

.compare h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--secondary);
}

.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.comparison-table th,
.comparison-table td {
    padding: 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.comparison-table th {
    background: var(--primary);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    font-weight: 600;
    color: var(--secondary);
    background: var(--bg-alt);
}

.comparison-table th:nth-child(2),
.comparison-table td:nth-child(2) {
    background: linear-gradient(135deg, #f5f3ff 0%, #e0e7ff 100%);
    font-weight: 600;
    color: var(--primary);
}

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

.comparison-table .check {
    color: var(--success);
    font-weight: 600;
}

/* Pricing */
.pricing {
    padding: 100px 0;
    background: var(--bg);
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: var(--secondary);
}

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

.pricing-card {
    padding: 2.5rem;
    border-radius: 12px;
    background: var(--bg);
    border: 2px solid var(--border);
    text-align: center;
    position: relative;
    transition: all 0.2s;
}

.pricing-card:hover {
    border-color: var(--primary);
}

.pricing-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, #ffffff 0%, #f5f3ff 100%);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 2rem;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-card ul li {
    padding: 0.75rem 0;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}

.pricing-card ul li:last-child {
    border-bottom: none;
}

/* Newsletter */
.newsletter {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f3ff 0%, #e0e7ff 100%);
    text-align: center;
}

.newsletter h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.newsletter p {
    color: var(--text);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto 1.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.newsletter-form button {
    white-space: nowrap;
}

.newsletter-note {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Install */
.install {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    text-align: center;
    color: white;
}

.install h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.install p {
    color: #94a3b8;
    margin-bottom: 2rem;
}

.install .terminal {
    margin-bottom: 1rem;
}

.install-note {
    color: #64748b;
    font-size: 0.9rem;
}

/* FAQ */
.faq {
    padding: 100px 0;
    background: var(--bg-alt);
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: var(--secondary);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.faq-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--secondary);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* About Page */
.about-page {
    padding: 140px 0 100px;
}

.about-page h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.about-page .hero-subtitle {
    color: var(--text-light);
    margin-bottom: 3rem;
}

.about-grid {
    max-width: 900px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--bg);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.about-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.about-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text);
}

.about-section ul {
    list-style: none;
    padding-left: 1.5rem;
}

.about-section ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

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

.about-section code {
    background: var(--bg-alt);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: 'Monaco', monospace;
    font-size: 0.9rem;
    color: var(--primary);
}

/* Contact Page */
.contact-page {
    padding: 140px 0 100px;
}

.contact-page h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.contact-page .hero-subtitle {
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

.contact-section {
    padding: 2rem;
    background: var(--bg);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.contact-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.contact-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text);
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.contact-method {
    padding: 1.5rem;
    background: var(--bg-alt);
    border-radius: 8px;
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.contact-method h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--secondary);
}

.contact-method p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-list details {
    padding: 1rem;
    background: var(--bg-alt);
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.faq-list details:hover {
    background: #e0e7ff;
}

.faq-list summary {
    font-weight: 600;
    color: var(--secondary);
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary:before {
    content: "+ ";
    color: var(--primary);
}

.faq-list details[open] summary:before {
    content: "− ";
}

.faq-list p {
    margin-top: 1rem;
    margin-bottom: 0;
    color: var(--text);
    padding-left: 1rem;
}

.response-times {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.response-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: var(--bg-alt);
    border-radius: 8px;
}

.response-label {
    font-weight: 500;
    color: var(--secondary);
}

.response-time {
    color: var(--primary);
    font-weight: 600;
}

/* Footer */
footer {
    background: var(--bg-alt);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border);
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--secondary);
}

.footer-section p {
    color: var(--text-light);
}

.footer-section a {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: var(--primary);
}

.footer-newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.footer-newsletter-form input {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--bg);
    color: var(--text);
    font-size: 0.9rem;
}

.footer-newsletter-form button {
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 4px;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s;
}

.footer-newsletter-form button:hover {
    background: var(--primary-dark);
}

.copyright {
    text-align: center;
    color: var(--text-light);
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

/* Legal Pages */
.legal-page {
    padding: 140px 0 100px;
}

.legal-page h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.last-updated {
    color: var(--text-light);
    margin-bottom: 3rem;
}

.legal-content {
    max-width: 800px;
}

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-content ul {
    list-style: none;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-content ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

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

.nav-links a.active {
    color: var(--primary);
}

/* Blog Index */
.blog-index {
    padding: 140px 0 100px;
    background: var(--bg);
}

.blog-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.2rem;
}

.blog-list {
    display: grid;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.blog-post-card {
    background: var(--bg);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.2s;
}

.blog-post-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.blog-link {
    display: block;
    text-decoration: none;
    padding: 2rem;
}

.blog-card-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--secondary);
    transition: color 0.2s;
}

.blog-post-card:hover h2 {
    color: var(--primary);
}

.blog-excerpt {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-meta-inline {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.blog-tag {
    display: inline-block;
    background: var(--bg-alt);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.blog-date {
    color: var(--text-light);
    font-size: 0.9rem;
}

.blog-cta {
    max-width: 600px;
    margin: 4rem auto 0;
    padding: 2rem;
    background: linear-gradient(135deg, #f5f3ff 0%, #e0e7ff 100%);
    border-radius: 12px;
    text-align: center;
}

.blog-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.blog-cta p {
    margin-bottom: 1.5rem;
    color: var(--text);
}

/* Blog Post */
.blog-post {
    padding: 140px 0 100px;
    background: var(--bg);
}

.blog-meta {
    max-width: 800px;
    margin: 0 auto 2rem;
}

.back-link {
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.back-link:hover {
    text-decoration: underline;
}

.blog-date, .blog-author {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.blog-post h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--secondary);
    max-width: 800px;
}

.blog-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.blog-content p {
    margin-bottom: 1.5rem;
    color: var(--text);
    font-size: 1.1rem;
}

.blog-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.blog-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.blog-content ul {
    list-style: none;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.blog-content ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.blog-content ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.blog-content pre {
    background: var(--bg-alt);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    overflow-x: auto;
}

.blog-content pre code {
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.9rem;
    color: var(--primary);
}

.blog-content strong {
    color: var(--secondary);
    font-weight: 600;
}

.blog-content table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-alt);
    border-radius: 8px;
    overflow: hidden;
    margin: 1.5rem 0;
}

.blog-content th,
.blog-content td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.blog-content th {
    background: var(--secondary);
    color: white;
    font-weight: 600;
}

.blog-content tbody tr:last-child td {
    border-bottom: none;
}

.blog-cta {
    margin-top: 4rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f5f3ff 0%, #e0e7ff 100%);
    border-radius: 12px;
    text-align: center;
}

.blog-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.blog-cta p {
    margin-bottom: 1.5rem;
    color: var(--text);
}

/* Interactive Demo */
.try-it {
    padding: 100px 0;
    background: var(--bg-alt);
}

.try-it h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.demo-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.demo-editor {
    display: flex;
    flex-direction: column;
}

.demo-toolbar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--secondary);
    color: #e2e8f0;
    padding: 0.5rem 1rem;
    border-radius: 10px 10px 0 0;
    font-size: 0.85rem;
}

.demo-lang {
    font-weight: 600;
    flex: 1;
}

.demo-btn-small {
    background: rgba(255,255,255,0.1);
    color: #e2e8f0;
    border: none;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: background 0.2s;
}

.demo-btn-small:hover {
    background: rgba(255,255,255,0.2);
}

#demo-code {
    width: 100%;
    min-height: 320px;
    padding: 1rem;
    background: #1e293b;
    color: #e2e8f0;
    border: none;
    border-radius: 0 0 10px 10px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
    resize: vertical;
    tab-size: 2;
}

#demo-code:focus {
    outline: 2px solid var(--primary);
    outline-offset: -2px;
}

#demo-code::placeholder {
    color: #64748b;
}

.demo-results {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    min-height: 320px;
    overflow-y: auto;
    max-height: 400px;
}

.demo-results-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 320px;
    color: var(--text-light);
    text-align: center;
    padding: 2rem;
}

.demo-results-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.demo-findings {
    padding: 1rem;
}

.demo-finding {
    padding: 1rem;
    border-bottom: 1px solid var(--border);
}

.demo-finding:last-child {
    border-bottom: none;
}

.demo-finding-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.demo-finding-cat {
    font-weight: 600;
    color: var(--secondary);
    font-size: 0.85rem;
    text-transform: uppercase;
}

.demo-finding-line {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-left: auto;
    font-family: 'Monaco', monospace;
}

.demo-finding-msg {
    color: var(--text);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.demo-finding-code {
    display: block;
    background: #f1f5f9;
    color: var(--secondary);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: 'Monaco', monospace;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    overflow-x: auto;
}

.demo-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.demo-summary {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.demo-summary-item {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-light);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--border);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .legal-page h1 {
        font-size: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }

    .demo-layout {
        grid-template-columns: 1fr;
    }

    .try-it h2 {
        font-size: 2rem;
    }

    #demo-code {
        min-height: 200px;
    }

    .demo-results {
        min-height: 200px;
        max-height: 350px;
    }

    .demo-results-placeholder {
        height: 200px;
    }

    .demo-actions {
        flex-direction: column;
        gap: 1rem;
    }
}
