/* ================================================================ */
/* RESET AND BASE STYLES                                           */
/* ================================================================ */

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

/* Accessibility - Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #e4e4e7;
    background-color: #0a0a0a;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

a {
    color: #3b82f6;
    text-decoration: none;
}

a:hover {
    color: #60a5fa;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: #fff;
    padding-top: 1rem;
}

p {
    color: #a1a1aa;
    line-height: 1.7;
}

/* ================================================================ */
/* BUTTON COMPONENTS                                               */
/* ================================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.25);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px 0 rgba(59, 130, 246, 0.35);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #e4e4e7;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-dark {
    background: rgba(24, 24, 27, 0.8);
    color: #e4e4e7;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
}

.btn-dark:hover {
    background: rgba(39, 39, 42, 0.9);
    border-color: rgba(255, 255, 255, 0.3);
}

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

.btn-discord {
    background: linear-gradient(135deg, #5865F2, #4752C4);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(88, 101, 242, 0.3);
    width: 100%;
    justify-content: center;
}

.btn-discord:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px 0 rgba(88, 101, 242, 0.4);
}

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

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 1.25rem;
}

.logo-img {
    width: 32px;
    height: 32px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #a1a1aa;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: #fff;
}

.download-btn {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.9rem;
}

.download-btn:hover {
    transform: translateY(-1px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.375rem;
    transition: background-color 0.2s ease;
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 2rem;
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    list-style: none;
    margin: 0;
}

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

.mobile-menu .nav-link {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #a1a1aa;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.mobile-menu .nav-link:last-child {
    border-bottom: none;
}

.mobile-menu .nav-link:hover {
    color: #fff;
}

.mobile-menu .download-btn {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-size: 0.9rem;
    text-align: center;
    margin-top: 0.5rem;
    border-bottom: none !important;
}

.mobile-menu .download-btn:hover {
    transform: translateY(-1px);
}

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

.hero {
    padding: calc(80px + 2rem) 0 8rem; /* Account for navbar + beta banner */
    background:
        radial-gradient(ellipse at center top, rgba(59, 130, 246, 0.15), transparent 50%),
        linear-gradient(180deg, #0a0a0a 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(167, 139, 250, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    color: #fff;
}

/* Moved to utility components section */

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 1000px;
    margin: 0 auto 2.5rem;
    color: #a1a1aa;
}

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

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Moved to utility components section */

.hero-visual {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}

.code-window {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    overflow: hidden;
    max-width: 600px;
    width: 100%;
    backdrop-filter: blur(12px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.code-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.window-controls {
    display: flex;
    gap: 0.375rem;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red {
    background: #ef4444;
}

.control.yellow {
    background: #f59e0b;
}

.control.green {
    background: #10b981;
}

.file-name {
    color: #e4e4e7;
    font-size: 0.85rem;
    font-weight: 500;
}

.code-content {
    padding: 1.5rem;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Droid Sans Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #e4e4e7;
    background: none;
    overflow-x: auto;
    min-height: 330px;
}

.code-content .keyword {
    color: #c084fc;
}

.code-content .type {
    color: #60a5fa;
}

.code-content .string {
    color: #34d399;
}

/* ================================================================ */
/* SECTION STYLES                                                  */
/* ================================================================ */

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 1rem;
    color: #fff;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: #a1a1aa;
}

/* License Notice Styles */
.license-notice {
    font-size: 0.9rem;
    color: #f59e0b;
    margin-top: 1rem;
    text-align: center;
}

.license-notice a {
    color: #f59e0b;
    text-decoration: underline;
}

.license-notice a:hover {
    color: #fbbf24;
}

.license-notice-small {
    font-size: 0.8rem;
    color: #f59e0b;
    margin: 0.5rem 0;
    text-align: center;
}

.license-notice-card {
    font-size: 0.85rem;
    color: #f59e0b;
    margin: 0 0 1rem 0;
    padding: 0;
}

.license-notice-card a {
    color: #f59e0b;
    text-decoration: underline;
}

.license-notice-card a:hover {
    color: #fbbf24;
}

/* ================================================================ */
/* FEATURES SECTION                                                */
/* ================================================================ */

.features {
    padding: 6rem 0;
    background: #0a0a0a;
}

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

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

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(12px);
    position: relative;
}

.feature-label {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.feature-label-pro {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(236, 72, 153, 0.1));
    border: 1px solid rgba(168, 85, 247, 0.3);
    color: #c084fc;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #fff;
}

.feature-card p {
    color: #a1a1aa;
    line-height: 1.6;
}

/* ================================================================ */
/* PERFORMANCE SECTION                                             */
/* ================================================================ */

.performance {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(167, 139, 250, 0.05));
}

.performance header {
    margin-bottom: 3rem;
}

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

.performance-text .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.performance-description {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    color: #a1a1aa;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #a1a1aa;
    font-weight: 500;
}

.feature-list {
    display: grid;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #e4e4e7;
}

.feature-item svg {
    color: #10b981;
    flex-shrink: 0;
}

.performance-img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* ================================================================ */
/* COMPARISON SECTION                                              */
/* ================================================================ */

.comparison {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(59, 130, 246, 0.05));
}

.comparison header {
    margin-bottom: 3rem;
}

.comparison-table {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    overflow: hidden;
    backdrop-filter: blur(12px);
    max-width: 800px;
    margin: 0 auto;
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5em;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    font-weight: 600;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5em;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s ease;
}

.comparison-row:hover {
    background: rgba(255, 255, 255, 0.02);
}

.comparison-row:last-child {
    border-bottom: none;
}

.feature-column {
    color: #e4e4e7;
    font-weight: 500;
}

.flowdeck-column {
    color: #10b981;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.competitor-column {
    color: #a1a1aa;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Moved to utility components section */

/* ================================================================ */
/* CTA SECTION                                                     */
/* ================================================================ */

.cta {
    padding: 2rem 0;
    background:
        radial-gradient(ellipse at center, rgba(59, 130, 246, 0.1), transparent 70%),
        #0a0a0a;
    text-align: center;
}

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

/* Download Section Styles */
.download-section-title {
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
}

/* CTA Section Specific Styles */
.cta-hero-message {
    margin-top: 1rem;
}

.cta-download-title {
    margin-top: 2rem;
}

.cta-download-section {
    margin-top: 1rem;
}

.btn-icon-fa {
    vertical-align: middle;
    margin-right: 8px;
}

.download-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.download-section-spacing {
    margin-top: 1rem;
}

.download-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
    width: 100%;
}

.btn-icon {
    vertical-align: middle;
    margin-right: 8px;
}

.btn-icon img {
    vertical-align: middle;
}

/* Features Grid Secondary */
.features-grid-secondary {
    margin-top: 2rem;
}

/* Pro Highlight */
.pro-highlight {
    color: #c084fc;
    font-weight: 600;
}

/* Hero Message Spacing */
.hero-message-spacing {
    margin-top: 1rem;
}

/* Requirements Note */
.requirements-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #71717a;
}

/* Privacy Link */
.privacy-link {
    color: #3b82f6;
    text-decoration: none;
}

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

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    color: #fff;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: #a1a1aa;
}

/* Legacy cta-note class - kept for compatibility */
.cta-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #71717a;
}

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

.footer {
    padding: 4rem 0 2rem;
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    width: 40px;
    height: 40px;
}

.footer-description {
    color: #71717a;
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-column a {
    display: block;
    color: #a1a1aa;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #fff;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-bottom p {
    color: #71717a;
    font-size: 0.9rem;
}

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

@media (max-width: 768px) {
    /* Mobile styles for editor name */
    .editor-name {
        min-width: 80px;
        font-size: inherit;
    }
    /* Beta banner mobile */
    .beta-banner-content {
        padding: 0 1rem;
        font-size: 0.875rem;
    }

    .beta-text {
        display: none;
    }

    .beta-badge {
        font-size: 0.75rem;
    }
    .container {
        padding: 0 1rem;
    }

    .nav-links {
        display: none;
    }

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

    .navbar .container {
        position: relative;
    }

    .hero {
        padding: 6rem 0 4rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

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

    .gradient-text {
        display: inline;
    }

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

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .performance-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .performance-text .section-title {
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .comparison-table {
        margin: 0 1rem;
    }

    .comparison-header {
        display: none;
    }

    .comparison-row {
        display: block;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 0.75rem;
        margin-bottom: 1rem;
        padding: 1.5rem;
        position: relative;
    }

    .comparison-row:last-child {
        margin-bottom: 0;
    }

    .feature-column {
        font-size: 1.1rem;
        font-weight: 600;
        color: #fff;
        margin-bottom: 1rem;
        display: block;
        text-align: left;
    }

    .flowdeck-column,
    .competitor-column {
        display: block;
        margin-bottom: 0.75rem;
        padding: 0.75rem;
        border-radius: 0.5rem;
        position: relative;
        text-align: left;
    }

    .flowdeck-column::before {
        content: "FlowDeck:";
        display: block;
        font-weight: 600;
        font-size: 0.9rem;
        color: #10b981;
        margin-bottom: 0.25rem;
    }

    .competitor-column::before {
        content: "Other Extensions:";
        display: block;
        font-weight: 600;
        font-size: 0.9rem;
        color: #a1a1aa;
        margin-bottom: 0.25rem;
    }

    .flowdeck-column {
        background: rgba(16, 185, 129, 0.1);
        border: 1px solid rgba(16, 185, 129, 0.2);
    }

    .competitor-column {
        background: rgba(161, 161, 170, 0.1);
        border: 1px solid rgba(161, 161, 170, 0.2);
    }
}

@media (max-width: 480px) {
    .hero-badges {
        flex-direction: column;
        align-items: center;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .hero-title br {
        display: none;
    }

    .gradient-text {
        display: block;
        margin-top: 0.5rem;
    }

    .editor-name {
        min-width: 70px;
        font-size: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .code-content {
        font-size: 0.8rem;
        padding: 1rem;
    }

    .hero-visual {
        margin-top: 2rem;
    }

    .code-window {
        max-width: 100%;
    }
}

/* ================================================================ */
/* BETA ANNOUNCEMENT BANNER                                         */
/* ================================================================ */

.beta-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    z-index: 1100;
    padding: 0.75rem 0;
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.3);
    height: 52px;
    display: flex;
    align-items: center;
}

.beta-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.beta-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.35rem 0.85rem;
    border-radius: 0.375rem;
    font-weight: 700;
    font-size: 0.8rem;
    color: white;
    letter-spacing: 0.05em;
}

.beta-text {
    color: white;
    font-weight: 500;
}

.beta-link {
    color: white;
    text-decoration: underline;
    font-size: 0.875rem;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.beta-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Beta banner and navbar adjustments are now handled in their respective sections */

/* ================================================================ */
/* UTILITY COMPONENTS                                              */
/* ================================================================ */

.pro-badge {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 0.125rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
    vertical-align: middle;
}

.editor-name {
    display: inline;
    min-width: 120px;
    color: #3b82f6;
    border-right: 2px solid #3b82f6;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { border-color: #3b82f6; }
    51%, 100% { border-color: transparent; }
}

.gradient-text {
    background: linear-gradient(135deg, #3b82f6, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.badge {
    background: rgba(255, 255, 255, 0.05);
    color: #e4e4e7;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.check {
    color: #10b981;
    font-weight: bold;
    font-size: 1.1rem;
}

.cross {
    color: #ef4444;
    font-weight: bold;
    font-size: 1.1rem;
}

.partial {
    color: #f59e0b;
    font-weight: bold;
    font-size: 1.1rem;
}

/* ================================================================ */
/* SPACING AND LAYOUT UTILITIES                                    */
/* ================================================================ */

/* Consistent spacing utilities */
.section-spacing {
    padding: 6rem 0;
}

.margin-top-sm {
    margin-top: 1rem;
}

.margin-top-md {
    margin-top: 2rem;
}

.margin-top-lg {
    margin-top: 3rem;
}

.margin-bottom-sm {
    margin-bottom: 1rem;
}

.margin-bottom-md {
    margin-bottom: 2rem;
}

.margin-bottom-lg {
    margin-bottom: 3rem;
}

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

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

/* Flex utilities */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

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

.justify-center {
    justify-content: center;
}

.gap-sm {
    gap: 0.5rem;
}

.gap-md {
    gap: 1rem;
}

.gap-lg {
    gap: 2rem;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-message {
    color: #10b981;
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
}

/* CTA Actions */
.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Waitlist Form Styles */
.waitlist-form {
    width: 100%;
    max-width: 500px;
}

.waitlist-form .form-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Community Section Styles */
.community-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.95), rgba(20, 20, 20, 0.98));
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.community-content .section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.community-content .section-subtitle {
    font-size: 1.2rem;
    color: #a1a1aa;
    margin-bottom: 3rem;
}

/* MailerLite Form Styling Override */
.ml-embedded {
    margin: 0 auto;
    max-width: 500px;
    width: 100%;
}

/* Ensure MailerLite form elements are visible */
.ml-embedded * {
    color: inherit !important;
}

.ml-embedded input[type="email"],
.ml-embedded input[type="text"] {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
    padding: 0.75rem 1rem !important;
    border-radius: 0.5rem !important;
}

.ml-embedded button,
.ml-embedded input[type="submit"] {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8) !important;
    color: white !important;
    padding: 0.75rem 2rem !important;
    border: none !important;
    border-radius: 0.5rem !important;
    cursor: pointer !important;
    font-weight: 600 !important;
}

.ml-embedded button:hover,
.ml-embedded input[type="submit"]:hover {
    opacity: 0.9 !important;
}

/* ================================================================ */
/* MODAL STYLES                                                    */
/* ================================================================ */

.signup-modal-overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.signup-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.signup-modal {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.95), rgba(20, 20, 20, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    margin: auto;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.signup-modal-overlay.active .signup-modal {
    transform: scale(1);
}

.signup-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: #a1a1aa;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s ease;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.signup-modal-close:hover {
    color: #fff;
}

.signup-modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.signup-modal-title {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #3b82f6, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.signup-modal-subtitle {
    color: #a1a1aa;
    font-size: 1.1rem;
    line-height: 1.5;
}

.community-actions {
    margin-bottom: 2rem;
}

.divider-with-text {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.5rem 0;
}

.divider-with-text::before,
.divider-with-text::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.divider-with-text span {
    padding: 0 1rem;
    color: #71717a;
    font-size: 0.875rem;
    font-weight: 500;
}

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

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

.form-label {
    color: #e4e4e7;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    color: #fff;
    transition: all 0.2s ease;
}

.form-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-input::placeholder {
    color: #71717a;
}

.signup-form-submit {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 0.5rem;
}

.signup-form-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.signup-form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.signup-success-message,
.signup-error-message {
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
    font-weight: 500;
    margin-top: 1rem;
}

.signup-success-message {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.signup-error-message {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.signup-modal-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.signup-modal-note {
    color: #71717a;
    font-size: 0.875rem;
    line-height: 1.5;
}

.waitlist-form .email-input {
    flex: 1;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
    transition: all 0.3s ease;
}

.waitlist-form .email-input::placeholder {
    color: #6b7280;
}

.waitlist-form .email-input:focus {
    outline: none;
    border-color: #007aff;
    background-color: rgba(255, 255, 255, 0.08);
}

.waitlist-form .form-message {
    font-size: 0.9rem;
    color: #6b7280;
    text-align: center;
    margin: 0;
}

/* Hero form specific */
.hero .waitlist-form {
    margin: 0 auto;
}

.hero .waitlist-form .form-group {
    flex-direction: column;
}

.hero .waitlist-form .email-input,
.hero .waitlist-form .btn {
    width: 100%;
}

@media (min-width: 640px) {
    .hero .waitlist-form .form-group {
        flex-direction: row;
    }
    
    .hero .waitlist-form .btn {
        width: auto;
    }
}

/* CTA form specific */
.cta-form {
    margin: 0 auto;
}

.cta-form .form-group {
    max-width: 600px;
    margin: 0 auto;
}

/* Form submission states */
.waitlist-form.submitting .btn {
    opacity: 0.7;
    cursor: not-allowed;
}

.waitlist-form .success-message,
.waitlist-form .error-message {
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 1rem;
}

.waitlist-form .success-message {
    background-color: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.waitlist-form .error-message {
    background-color: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* New Marketing Sections Styles */
.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 1rem;
}

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

.feature-benefit {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #3b82f6;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Why FlowDeck Section */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 0 auto;
    max-width: 1100px;
}

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

.why-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 1rem;
}

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

.why-card h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: #e4e4e7;
}

.why-card p {
    color: #a1a1aa;
    line-height: 1.6;
}

/* Comparison Section (legacy styles) */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.comparison-column {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 2rem;
}

.xcode-column {
    border-color: rgba(239, 68, 68, 0.2);
    background: rgba(239, 68, 68, 0.02);
}

.flowdeck-column {
    border-color: rgba(34, 197, 94, 0.2);
    background: rgba(34, 197, 94, 0.02);
}

.comparison-column h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.comparison-column ul {
    list-style: none;
}

.comparison-column li {
    padding: 0.75rem 0;
    color: #a1a1aa;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.comparison-column li:last-child {
    border-bottom: none;
}

.testimonials-container {
    margin-top: 3rem;
    position: relative;
    min-height: 200px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.testimonial.active {
    opacity: 1;
}

.testimonial blockquote {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #e4e4e7;
    font-style: italic;
    margin: 0;
}

/* Performance Section */
.performance-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 0 auto;
    max-width: 1000px;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #e4e4e7;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-detail {
    color: #71717a;
    font-size: 0.85rem;
}

.tech-stack {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 1rem;
}

.tech-stack h3 {
    margin-bottom: 1.5rem;
    color: #e4e4e7;
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.tech-badge {
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 2rem;
    color: #93c5fd;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.tech-badge i {
    font-size: 0.9rem;
}

/* CTA Section Updates */
.cta-content {
    text-align: center;
}

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

.btn-hero {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.25);
    display: inline-block;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(59, 130, 246, 0.35);
}

.cta-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 2rem 0;
    list-style: none;
    padding: 0;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #a1a1aa;
    font-size: 0.95rem;
    margin: 0;
}

.cta-feature .check {
    color: #22c55e;
    font-weight: 600;
}

/* Responsive updates for new sections */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .performance-stats {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .cta-buttons {
        flex-direction: column;
    }

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

@media (max-width: 480px) {
    .performance-stats {
        grid-template-columns: 1fr;
    }

    .tech-badges {
        justify-content: flex-start;
    }
}

/* ================================================================ */
/* NEW SECTIONS - MATCHING DESIGN SYSTEM                          */
/* ================================================================ */

/* Video Container (Hero) */
.video-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    overflow: hidden;
    max-width: 600px;
    width: 100%;
    backdrop-filter: blur(12px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.video-placeholder {
    padding: 4rem 2rem;
    text-align: center;
    color: #a1a1aa;
    min-height: 330px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.video-placeholder i {
    font-size: 4rem;
    color: #3b82f6;
    opacity: 0.5;
}

.video-placeholder p {
    font-size: 1.1rem;
    color: #a1a1aa;
}

/* Problem Section */
.problem {
    padding: 4rem 0;    
    background: #0a0a0a;
    text-align: center;
}

.problem .section-subtitle {
    font-size: 1.25rem;
    max-width: 700px;
}

/* Building Section */
.building {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(167, 139, 250, 0.05));
}

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

.building-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(12px);
}

.building-card:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.building-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.building-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #fff;
}

.building-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.building-list li {
    padding: 0.5rem 0;
    color: #a1a1aa;
    position: relative;
    padding-left: 1.5rem;
}

.building-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3b82f6;
}

.building-footer {
    text-align: center;
    font-size: 1.125rem;
    color: #e4e4e7;
    font-weight: 500;
    margin-top: 1rem;
}

/* Features Grid 2x3 */
.features-grid-2x3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.features-grid-2x3 .feature-card h3 {
    font-size: 1.15rem;
}

.features-grid-2x3 .feature-card p {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Why Section Updates */
.why-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    text-align: left;
}

.why-list li {
    padding: 0.5rem 0;
    color: #a1a1aa;
    position: relative;
    padding-left: 1.5rem;
}

.why-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.why-note {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #3b82f6;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: #0a0a0a;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 2rem;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

.testimonial-text {
    color: #e4e4e7;
    font-size: 1.05rem;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-text::before {
    content: '"';
    color: #3b82f6;
    font-size: 2rem;
    line-height: 0;
    vertical-align: -0.4rem;
    margin-right: 0.25rem;
}

/* Join Beta Section */
.join-beta {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(59, 130, 246, 0.05));
}

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

.join-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 2rem;
    backdrop-filter: blur(12px);
}

.join-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

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

.join-list li {
    padding: 0.75rem 0;
    color: #a1a1aa;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.community-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Developer's Note Section */
.developers-note {
    padding: 6rem 0;
    background:
        radial-gradient(ellipse at center, rgba(59, 130, 246, 0.08), transparent 70%),
        #0a0a0a;
}

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

.note-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e4e4e7;
    margin-bottom: 1.5rem;
}

.note-signature {
    font-weight: 500;
    color: #fff;
    font-style: italic;
    margin-top: 2rem;
}

.note-signature a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.2s ease;
}

.note-signature a:hover {
    color: #60a5fa;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: #0a0a0a;
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 2rem;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(59, 130, 246, 0.3);
}

.faq-question {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 600;
}

.faq-answer {
    color: #a1a1aa;
    line-height: 1.7;
}

/* CTA Updates */
.newsletter-signup {
    margin-top: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-signup h3 {
    color: #e4e4e7;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* Responsive Updates for New Sections */
@media (max-width: 768px) {
    .building-grid,
    .testimonials-grid,
    .join-grid,
    .features-grid-2x3 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .building-footer {
        font-size: 1rem;
    }

    .note-content p {
        font-size: 1rem;
    }

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

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}
/* ================================================================ */
/* BLOG SPECIFIC STYLES                                            */
/* ================================================================ */

/* Blog Hero Section */
.blog-hero {
    padding: calc(80px + 4rem) 0 4rem;
    background:
        radial-gradient(ellipse at center top, rgba(59, 130, 246, 0.15), transparent 50%),
        #0a0a0a;
    text-align: center;
}

.blog-header {
    max-width: 800px;
    margin: 0 auto;
}

/* Blog Main Content */
.blog-main {
    background: #0a0a0a;
    min-height: 100vh;
}

.blog-content {
    padding: 4rem 0 6rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Blog Posts Grid */
.blog-posts {
    width: 100%;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Post Card */
.post-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.post-card:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.post-thumbnail {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-card:hover .post-thumbnail img {
    transform: scale(1.05);
}

.post-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #71717a;
    flex-wrap: wrap;
}

.post-meta i {
    margin-right: 0.25rem;
}

.post-date,
.post-category,
.post-reading-time {
    display: inline-flex;
    align-items: center;
}

.post-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.post-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.post-title a:hover {
    color: #3b82f6;
}

.post-excerpt {
    color: #a1a1aa;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.read-more {
    align-self: flex-start;
    margin-top: auto;
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: calc(80px + 2rem);
    height: fit-content;
}

.widget {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
}

.widget-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

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

.widget ul li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.widget ul li a {
    color: #a1a1aa;
    text-decoration: none;
    transition: color 0.2s ease;
}

.widget ul li a:hover {
    color: #3b82f6;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

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

.pagination a,
.pagination span {
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: #e4e4e7;
    text-decoration: none;
    transition: all 0.2s ease;
}

.pagination a:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    color: #3b82f6;
}

.pagination .current {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    color: #3b82f6;
}

/* No Posts Message */
.no-posts {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
}

.no-posts-icon {
    font-size: 4rem;
    color: #3b82f6;
    opacity: 0.5;
    margin-bottom: 1.5rem;
}

.no-posts h2 {
    margin-bottom: 1rem;
    color: #fff;
}

.no-posts p {
    color: #a1a1aa;
    margin-bottom: 2rem;
}

/* ================================================================ */
/* SINGLE POST STYLES                                              */
/* ================================================================ */

/* Single Post Header */
.single-post-header {
    padding: calc(80px + 4rem) 0 3rem;
    background:
        radial-gradient(ellipse at center top, rgba(59, 130, 246, 0.15), transparent 50%),
        #0a0a0a;
}

.post-header-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.post-header-content .post-meta {
    justify-content: center;
    margin-bottom: 2rem;
}

.post-header-content .post-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #fff;
}

.post-header-content .post-excerpt {
    font-size: 1.25rem;
    color: #a1a1aa;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Featured Image */
.single-post-featured-image {
    padding: 3rem 0;
    background: #0a0a0a;
}

.single-post-featured-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Single Post Content */
.single-post-content {
    padding: 3rem 0 4rem;
    background: #0a0a0a;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.post-content-main {
    max-width: 900px;
}

.post-content-main h2,
.post-content-main h3,
.post-content-main h4 {
    color: #fff;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.post-content-main h2 {
    font-size: 2rem;
    border-bottom: 2px solid rgba(59, 130, 246, 0.3);
    padding-bottom: 0.5rem;
}

.post-content-main h3 {
    font-size: 1.5rem;
}

.post-content-main p {
    color: #e4e4e7;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.post-content-main a {
    color: #3b82f6;
    text-decoration: none;
    border-bottom: 1px solid rgba(59, 130, 246, 0.3);
    transition: all 0.2s ease;
}

.post-content-main a:hover {
    color: #60a5fa;
    border-bottom-color: #60a5fa;
}

.post-content-main ul,
.post-content-main ol {
    color: #e4e4e7;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.post-content-main li {
    margin-bottom: 0.5rem;
}

.post-content-main code {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, monospace;
    font-size: 0.9em;
    color: #60a5fa;
}

.post-content-main pre {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1.5rem;
    overflow-x: auto;
    margin-bottom: 1.5rem;
}

.post-content-main pre code {
    background: none;
    padding: 0;
    color: #e4e4e7;
}

.post-content-main blockquote {
    border-left: 4px solid #3b82f6;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #a1a1aa;
}

.post-content-main img {
    max-width: 100%;
    height: auto;
    border-radius: 0.75rem;
    margin: 2rem 0;
}

/* Post Tags */
.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.post-tags i {
    color: #3b82f6;
    margin-right: 0.5rem;
}

.post-tags a {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.post-tags a:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
}

/* Post Navigation */
.post-navigation {
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(167, 139, 250, 0.05));
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.post-navigation .nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-previous,
.nav-next {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.nav-previous:hover,
.nav-next:hover {
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

.nav-next {
    text-align: right;
}

.nav-subtitle {
    display: block;
    font-size: 0.85rem;
    color: #71717a;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-title {
    color: #fff;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    display: block;
    transition: color 0.2s ease;
}

.nav-title:hover {
    color: #3b82f6;
}

/* Back to Blog */
.back-to-blog {
    padding: 2rem 0 4rem;
    text-align: center;
}

/* ================================================================ */
/* RESPONSIVE - BLOG STYLES                                        */
/* ================================================================ */

@media (max-width: 1024px) {
    .blog-grid,
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .blog-sidebar,
    .post-sidebar {
        position: static;
    }

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

@media (max-width: 768px) {
    .blog-hero,
    .single-post-header {
        padding: calc(80px + 2rem) 0 2rem;
    }

    .posts-grid {
        gap: 1.5rem;
    }

    .post-card {
        margin-bottom: 0;
    }

    .post-content {
        padding: 1.5rem;
    }

    .nav-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .nav-next {
        text-align: left;
    }

    .post-content-main p,
    .post-content-main li {
        font-size: 1rem;
    }

    .post-content-main h2 {
        font-size: 1.75rem;
    }

    .post-content-main h3 {
        font-size: 1.35rem;
    }
}

@media (max-width: 480px) {
    .post-header-content .post-title {
        font-size: 1.75rem;
    }

    .post-thumbnail {
        height: 180px;
    }
}

/* ================================================================ */
/* PAGE TEMPLATE STYLES                                            */
/* ================================================================ */

/* Page Main */
.page-main {
    background: #0a0a0a;
    min-height: 100vh;
}

/* Page Header */
.page-header {
    padding: calc(80px + 4rem) 0 3rem;
    background:
        radial-gradient(ellipse at center top, rgba(59, 130, 246, 0.15), transparent 50%),
        #0a0a0a;
    text-align: center;
}

.page-header-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #fff;
}

/* Page Content */
.page-content-section {
    padding: 3rem 0 4rem;
    background: #0a0a0a;
}

.page-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.page-content-main h2,
.page-content-main h3,
.page-content-main h4 {
    color: #fff;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.page-content-main h2 {
    font-size: 2rem;
    border-bottom: 2px solid rgba(59, 130, 246, 0.3);
    padding-bottom: 0.5rem;
}

.page-content-main h3 {
    font-size: 1.5rem;
}

.page-content-main p {
    color: #e4e4e7;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.page-content-main a {
    color: #3b82f6;
    text-decoration: none;
    border-bottom: 1px solid rgba(59, 130, 246, 0.3);
    transition: all 0.2s ease;
}

.page-content-main a:hover {
    color: #60a5fa;
    border-bottom-color: #60a5fa;
}

.page-content-main ul,
.page-content-main ol {
    color: #e4e4e7;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.page-content-main li {
    margin-bottom: 0.5rem;
}

.page-content-main code {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, monospace;
    font-size: 0.9em;
    color: #60a5fa;
}

.page-content-main blockquote {
    border-left: 4px solid #3b82f6;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #a1a1aa;
}

/* Back to Home */
.back-to-home {
    padding: 2rem 0 4rem;
    text-align: center;
}

/* Page Links (for multi-page content) */
.page-links {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.page-links a,
.page-links span {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: #e4e4e7;
    text-decoration: none;
    transition: all 0.2s ease;
}

.page-links a:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    color: #3b82f6;
}

.page-links .current {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    color: #3b82f6;
}

@media (max-width: 768px) {
    .page-header {
        padding: calc(80px + 2rem) 0 2rem;
    }

    .page-content-main p,
    .page-content-main li {
        font-size: 1rem;
    }

    .page-content-main h2 {
        font-size: 1.75rem;
    }

    .page-content-main h3 {
        font-size: 1.35rem;
    }
}

/* ================================================================ */
/* BLOG ENHANCEMENTS                                               */
/* ================================================================ */

/* Blog Title Styling */
.blog-header .section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
}

/* WordPress Search Form Styling */
.widget_search .search-form {
    display: flex;
    gap: 0.5rem;
}

.widget_search .search-field {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    color: #e4e4e7;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.widget_search .search-field:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.widget_search .search-field::placeholder {
    color: #71717a;
}

.widget_search .search-submit {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.widget_search .search-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Recent Posts Widget Enhancement */
.widget_recent_entries ul li {
    padding: 1rem 0;
}

.widget_recent_entries ul li a {
    color: #e4e4e7;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    display: block;
}

.widget_recent_entries ul li a:hover {
    color: #3b82f6;
    padding-left: 0.5rem;
}

.widget_recent_entries .post-date {
    display: block;
    color: #71717a;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

/* Categories Widget */
.widget_categories ul li a,
.widget_archive ul li a {
    color: #e4e4e7;
    font-weight: 500;
}

/* Search Widget Title */
.widget_search .widget-title {
    margin-bottom: 1.5rem;
}

/* No Posts Found Styling */
.no-posts {
    text-align: center;
    padding: 4rem 2rem;
}

.no-posts-icon {
    font-size: 4rem;
    color: #3b82f6;
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.no-posts h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.no-posts p {
    color: #a1a1aa;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

@media (max-width: 1024px) {
    .blog-header .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .blog-header .section-title {
        font-size: 2rem;
    }
    
    .widget_search .search-form {
        flex-direction: column;
    }
    
    .widget_search .search-submit {
        width: 100%;
    }
}

/* Single Column Blog Grid (no sidebar) */
.blog-grid-single {
    max-width: 1200px;
    margin: 0 auto;
}

.blog-grid-single .posts-grid {
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 2.5rem;
}

@media (max-width: 768px) {
    .blog-grid-single .posts-grid {
        grid-template-columns: 1fr;
    }
}

/* What's New Page Specific Styles */
.whats-new-page {
    background: #0a0a0a;
}

.whats-new-hero {
    padding: calc(80px + 3rem) 0 4rem;
    background:
        radial-gradient(ellipse at center top, rgba(59, 130, 246, 0.15), transparent 50%),
        #0a0a0a;
    text-align: center;
    position: relative;
}

.whats-new-header {
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 2rem;
    color: #3b82f6;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.whats-new-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.whats-new-subtitle {
    font-size: 1.35rem;
    color: #a1a1aa;
    margin: 0;
    line-height: 1.6;
    font-weight: 400;
}

/* Enhanced Post Cards */
.whats-new-page .post-card {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.03), rgba(168, 85, 247, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.whats-new-page .post-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(59, 130, 246, 0.1);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(168, 85, 247, 0.05));
}

.whats-new-page .post-meta {
    gap: 1.5rem;
    padding-bottom: 1rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.whats-new-page .post-date {
    background: rgba(59, 130, 246, 0.1);
    padding: 0.35rem 0.75rem;
    border-radius: 0.375rem;
    color: #60a5fa;
    font-weight: 500;
    font-size: 0.8rem;
}

.whats-new-page .post-category {
    background: rgba(168, 85, 247, 0.1);
    padding: 0.35rem 0.75rem;
    border-radius: 0.375rem;
    color: #c084fc;
    font-weight: 500;
    font-size: 0.8rem;
}

.whats-new-page .post-title {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.whats-new-page .post-excerpt {
    font-size: 1.05rem;
    line-height: 1.75;
}

.whats-new-page .read-more {
    font-weight: 600;
    transition: all 0.2s ease;
}

.whats-new-page .read-more:hover {
    gap: 0.75rem;
}

@media (max-width: 1024px) {
    .whats-new-title {
        font-size: 3rem;
    }

    .whats-new-subtitle {
        font-size: 1.15rem;
    }
}

@media (max-width: 768px) {
    .whats-new-hero {
        padding: calc(80px + 2rem) 0 3rem;
    }

    .whats-new-title {
        font-size: 2.25rem;
    }

    .whats-new-subtitle {
        font-size: 1rem;
    }

    .whats-new-page .post-title {
        font-size: 1.5rem;
    }
}

/* Single Post - No Sidebar Layout */
.single-post-main .post-content-main {
    max-width: 800px;
    margin: 0 auto;
}

.single-post-main .content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.single-post-header {
    padding: calc(80px + 3rem) 0 2rem;
    background:
        radial-gradient(ellipse at center top, rgba(59, 130, 246, 0.1), transparent 50%),
        #0a0a0a;
}

.single-post-header .post-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.single-post-main .post-content-main p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.single-post-main .post-content-main h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.25rem;
}

.single-post-main .post-content-main h3 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.single-post-main .post-content-main ul,
.single-post-main .post-content-main ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.single-post-main .post-content-main li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
    font-size: 1.125rem;
}

.single-post-main .post-tags {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.single-post-main .post-tags a {
    display: inline-block;
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.single-post-main .post-tags a:hover {
    background: rgba(59, 130, 246, 0.2);
    transform: translateY(-2px);
}

/* WordPress Content Links - White & Underlined */
.single-post-main .post-content-main a,
.whats-new-page .post-excerpt a,
.post-content a,
.page-content-main a {
    color: #fff;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.3);
    text-underline-offset: 3px;
    transition: all 0.2s ease;
}

.single-post-main .post-content-main a:hover,
.whats-new-page .post-excerpt a:hover,
.post-content a:hover,
.page-content-main a:hover {
    text-decoration-color: #3b82f6;
    color: #60a5fa;
}

/* Keep buttons as-is (don't override button links) */
.btn,
.btn a {
    text-decoration: none !important;
}

/* Post title links should remain as-is */
.post-title a,
.post-card a {
    text-decoration: none;
}

/* Sidebar CTA Widget */
.widget-cta {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(168, 85, 247, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.2);
    padding: 2rem !important;
    position: sticky;
    top: calc(80px + 2rem);
}

.cta-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 0.35rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.widget-cta .widget-title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    margin-top: 0;
    padding-top: 0;
}

.cta-description {
    color: #a1a1aa;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.widget-cta .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    /* Override the global `.cta-buttons { margin: 2rem 0; }` used on full-page CTAs */
    margin: 0;
}

.btn-block {
    width: 100%;
    justify-content: center;
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #e4e4e7;
    font-size: 0.9rem;
}

.cta-feature i {
    color: #10b981;
    font-size: 1rem;
}

/* Re-enable sidebar layout */
.single-post-main .content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.single-post-main .post-content-main {
    max-width: 100%;
}

@media (max-width: 1024px) {
    .single-post-main .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .widget-cta {
        position: static;
    }
}

/* Force Embedded Content to Fit Column */
.single-post-main .post-content-main video,
.single-post-main .post-content-main iframe,
.single-post-main .post-content-main embed,
.single-post-main .post-content-main object {
    max-width: 100% !important;
    height: auto !important;
    display: block;
    margin: 2rem 0;
}

.single-post-main .post-content-main .wp-block-embed,
.single-post-main .post-content-main .wp-block-video,
.single-post-main .post-content-main figure {
    max-width: 100%;
    overflow: hidden;
}

.single-post-main .post-content-main .wp-block-embed iframe {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
}

/* Images too */
.single-post-main .post-content-main img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 2rem 0;
}

/* Post Content Headers - Not Bold, with Border */
.single-post-main .post-content-main h2,
.single-post-main .post-content-main h3,
.single-post-main .post-content-main h4 {
    font-weight: 600;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
}

.single-post-main .post-content-main h2 {
    font-size: 2rem;
    margin-top: 3rem;
}

.single-post-main .post-content-main h3 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
}

.single-post-main .post-content-main h4 {
    font-size: 1.25rem;
    margin-top: 2rem;
}

/* Force Header Font Weight - Override Everything */
.single-post-main .post-content-main h2,
.single-post-main .post-content-main h3,
.single-post-main .post-content-main h4 {
    font-weight: 600 !important;
}

/* ================================================================ */
/* CLI / PRO STYLES                                                */
/* ================================================================ */

/* Pro Button (Purple Gradient) */
.btn-pro {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(139, 92, 246, 0.25);
    border: none;
}

.btn-pro:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px 0 rgba(139, 92, 246, 0.35);
    color: white;
}

/* Pro Gradient Text */
.gradient-text-pro {
    background: linear-gradient(135deg, #8b5cf6, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Section Badge */
.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.badge-pro {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: #c084fc;
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(168, 85, 247, 0.2));
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: #c084fc;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* CLI Hero Grid */
.hero-cli .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-cli .hero-content {
    text-align: left;
}

.hero-cli .hero-cta-primary {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

/* Hero Trust Text */
.hero-trust {
    color: #71717a;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Pricing Preview in Hero */
.hero-pricing-preview {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: inline-block;
}

.price-from {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}

.price-annual {
    font-size: 0.9rem;
    color: #10b981;
    margin-left: 0.5rem;
}

/* Terminal Window */
.terminal-window {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    overflow: hidden;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, monospace;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-width: 520px;
    width: 100%;
}

.terminal-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.terminal-title {
    color: #a1a1aa;
    font-size: 0.85rem;
    margin-left: auto;
}

.terminal-body {
    padding: 1.5rem;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #e4e4e7;
    min-height: 400px;
    height: 400px;
    overflow-y: auto;
    white-space: pre-wrap;
    word-break: break-word;
}

.terminal-body .command {
    color: #10b981;
}

.terminal-body .output {
    color: #a1a1aa;
}

.terminal-body .prompt {
    color: #60a5fa;
}

.terminal-body .success {
    color: #10b981;
}

.terminal-body .error {
    color: #ef4444;
}

.terminal-body .logo {
    color: #d4a574;
}

.terminal-body .divider {
    color: #3f3f46;
}

.terminal-body .user-prompt {
    color: #e4e4e7;
    font-weight: 500;
}

.terminal-body .thinking {
    color: #d4a574;
}

.terminal-body .ai-response {
    color: #e4e4e7;
}

.terminal-body .cursor-blink {
    color: #e4e4e7;
    animation: blink 1s step-end infinite;
}

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

/* Extension Gateway Section - Secondary Hero */
.extension-gateway {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.08) 0%, rgba(59, 130, 246, 0.02) 100%);
    border-top: 1px solid rgba(59, 130, 246, 0.15);
}

.extension-gateway-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.extension-gateway-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    color: #fff;
    line-height: 1.2;
}

.extension-headline {
    font-size: 1.15rem;
    color: #a1a1aa;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.free-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.extension-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.extension-features-inline {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.extension-features-inline span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #71717a;
    font-size: 0.9rem;
}

.extension-features-inline i {
    color: #10b981;
    font-size: 0.8rem;
}

@media (max-width: 600px) {
    .extension-buttons {
        flex-direction: column;
        align-items: center;
    }

    .extension-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .extension-features-inline {
        gap: 1rem;
    }
}

/* Extension Fallback CTA */
.extension-fallback {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.extension-fallback h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #e4e4e7;
}

.extension-fallback > p {
    color: #a1a1aa;
    margin-bottom: 1.5rem;
}

/* ================================================================ */
/* CLI FEATURES SECTION                                            */
/* ================================================================ */

.cli-features {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(59, 130, 246, 0.05));
}

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

.cli-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.cli-feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.cli-feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cli-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.25rem;
}

.cli-icon-blue {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.cli-feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #fff;
}

.cli-feature-card p {
    color: #a1a1aa;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.cli-feature-card code {
    display: block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0.5rem;
    font-family: 'SF Mono', Monaco, monospace;
    font-size: 0.85rem;
    color: #c084fc;
}

.cli-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ================================================================ */
/* AI AGENTS SECTION                                               */
/* ================================================================ */

.ai-agents {
    padding: 6rem 0;
    background: #0a0a0a;
}

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

.ai-agents header {
    margin-bottom: 2rem;
}

.agent-showcase {
    margin: 3rem 0;
}

.agent-showcase .terminal-window {
    max-width: 500px;
    margin: 0 auto;
}

.agent-logos {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.agent-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    color: #a1a1aa;
    transition: all 0.2s ease;
}

.agent-badge:hover {
    border-color: rgba(139, 92, 246, 0.3);
    color: #c084fc;
}

.agent-badge.coming-soon {
    opacity: 0.6;
}

.agent-badge.coming-soon small {
    font-size: 0.7rem;
    color: #71717a;
}

.ai-description {
    margin-top: 2rem;
    color: #a1a1aa;
    line-height: 1.7;
}

.ai-description code {
    background: rgba(139, 92, 246, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 0.25rem;
    color: #c084fc;
    font-family: 'SF Mono', Monaco, monospace;
    font-size: 0.9rem;
}

/* ================================================================ */
/* PRICING PREVIEW SECTION (Homepage)                              */
/* ================================================================ */

.pricing-preview-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(59, 130, 246, 0.05));
}

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

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

.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.1);
}

.pricing-card.featured {
    border-color: rgba(139, 92, 246, 0.5);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(168, 85, 247, 0.05));
}

.pricing-card.featured:hover {
    border-color: rgba(139, 92, 246, 0.7);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    padding: 0.35rem 1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #fff;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
}

/* Override for new-price to be huge */
.pricing-card .price .new-price {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1;
}

.pricing-card .price .price-old {
    font-size: 1.1rem;
    font-weight: 400;
    color: #52525b;
    display: block;
    margin-bottom: 0.25rem;
}

.pricing-card .price .price-period {
    font-size: 1.5rem;
    font-weight: 500;
    color: #71717a;
}

.pricing-card > p {
    color: #a1a1aa;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: #e4e4e7;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-features li::before {
    content: "✓";
    color: #10b981;
    font-weight: 600;
}

.pricing-link {
    display: inline-block;
    margin-top: 2rem;
    color: #60a5fa;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.pricing-link:hover {
    color: #93c5fd;
}

.pricing-link i {
    margin-left: 0.25rem;
    transition: transform 0.2s ease;
}

.pricing-link:hover i {
    transform: translateX(4px);
}

/* Discount Styling */
.hero-pricing-text {
    margin-top: 1rem;
    font-size: 1rem;
    color: #a1a1aa;
}

.hero-pricing-text .intro-label {
    color: #10b981;
    font-weight: 600;
}


/* ================================================================ */
/* PRICING PAGE                                                    */
/* ================================================================ */

.pricing-page {
    background: #0a0a0a;
    min-height: 100vh;
}

.pricing-hero {
    padding: calc(80px + 4rem) 0 1rem;
    text-align: center;
    background:
        radial-gradient(ellipse at center top, rgba(139, 92, 246, 0.15), transparent 50%),
        #0a0a0a;
}

.pricing-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    color: #fff;
}

.pricing-subtitle {
    font-size: 1.25rem;
    color: #a1a1aa;
    max-width: 600px;
    margin: 0 auto;
}

/* Billing Toggle */
.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.toggle-label {
    color: #a1a1aa;
    font-size: 0.95rem;
}

.toggle-switch {
    width: 60px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 16px;
    cursor: pointer;
    position: relative;
    transition: background 0.3s ease;
}

.toggle-switch[aria-pressed="true"] {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
}

.toggle-slider {
    position: absolute;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    top: 4px;
    left: 4px;
    transition: transform 0.3s ease;
}

.toggle-switch[aria-pressed="true"] .toggle-slider {
    transform: translateX(28px);
}

.save-badge {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Pricing Cards Section */
.pricing-cards-section {
    padding: 2rem 0 6rem;
}

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

.pricing-grid .pricing-card {
    padding: 2.5rem;
}

.card-header {
    margin-bottom: 1.5rem;
}

.card-header h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.price-wrapper {
    margin-bottom: 0.5rem;
}

.price-period {
    font-size: 0.5em;
    color: #a1a1aa;
    font-weight: 400;
}

.price-from {
    font-size: 1.5rem;
    color: #71717a;
    font-weight: 400;
}

.price-savings {
    color: #10b981;
    font-weight: 500;
    font-size: 0.9rem;
    margin-top: 0.25rem;
    display: block;
}

.best-value-badge {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.25rem;
}

.card-description {
    color: #a1a1aa;
    margin-bottom: 2rem;
    min-height: 48px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
}

.features-list li {
    padding: 0.75rem 0;
    color: #e4e4e7;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.features-list .fa-check {
    color: #10b981;
}

.features-list .fa-star.pro-feature {
    color: #c084fc;
}

.card-cta {
    margin-top: auto;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.card-cta .cta-note {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: #71717a;
    text-align: center;
}

/* Pricing FAQ */
.pricing-faq {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-faq .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

/* Pricing CTA */
.pricing-cta {
    padding: 6rem 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(59, 130, 246, 0.05));
}

.pricing-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.pricing-cta p {
    color: #a1a1aa;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

/* Nav CTA Button */
.nav-cta {
    background: linear-gradient(135deg, #8b5cf6, #a855f7) !important;
    color: white !important;
    padding: 0.5rem 1rem !important;
    border-radius: 0.375rem !important;
    font-size: 0.9rem !important;
    transition: all 0.2s ease !important;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

/* ================================================================ */
/* RESPONSIVE: CLI / PRICING                                       */
/* ================================================================ */

@media (max-width: 968px) {
    .hero-cli .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-cli .hero-content {
        text-align: center;
    }

    .hero-cli .hero-cta-primary {
        justify-content: center;
    }

    .cli-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-cards-preview,
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }

    .pricing-card.featured {
        order: -1;
    }
}

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

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

    .hero-cli .hero-cta-primary .btn {
        width: 100%;
        max-width: 280px;
    }

    .agent-logos {
        gap: 0.75rem;
    }

    .agent-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .billing-toggle {
        flex-wrap: wrap;
    }

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

/* ================================================================ */
/* EXTENSION PAGE                                                  */
/* ================================================================ */

.extension-page {
    background: #0a0a0a;
    min-height: 100vh;
}

.extension-hero {
    padding: calc(80px + 4rem) 0 4rem;
    text-align: center;
    background:
        radial-gradient(ellipse at center top, rgba(59, 130, 246, 0.15), transparent 50%),
        #0a0a0a;
}

.extension-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    color: #fff;
}

.extension-subtitle {
    font-size: 1.25rem;
    color: #a1a1aa;
    max-width: 700px;
    margin: 0 auto;
}

.extension-features {
    padding: 6rem 0;
}

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

.how-it-works {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(16, 185, 129, 0.05));
}

.how-it-works header {
    text-align: center;
    margin-bottom: 3rem;
}

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

.step-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #fff;
}

.step-card p {
    color: #a1a1aa;
    line-height: 1.6;
}

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

/* ================================================================ */
/* LICENSE PAGE                                                     */
/* ================================================================ */

.license-page {
    padding-top: 80px;
}

.license-hero {
    padding: 4rem 0 2rem;
    text-align: center;
}

.license-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.license-subtitle {
    color: #71717a;
    font-size: 0.9rem;
}

.license-content {
    padding: 2rem 0 4rem;
}

.license-document {
    max-width: 800px;
    margin: 0 auto;
}

.license-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.license-section:last-child {
    border-bottom: none;
}

.license-section h2 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
    padding-top: 0;
}

.license-section h3 {
    font-size: 1.15rem;
    color: #e4e4e7;
    margin: 1.5rem 0 0.75rem;
    padding-top: 0;
}

.license-section p {
    color: #a1a1aa;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.license-section ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.license-section ul li {
    color: #a1a1aa;
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    line-height: 1.6;
}

.license-section ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3b82f6;
}

.license-section a {
    color: #3b82f6;
}

.license-section a:hover {
    color: #60a5fa;
    text-decoration: underline;
}

/* License Summary Section */
.license-summary {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    margin-top: 2rem;
}

.license-summary h2 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.license-summary > p {
    text-align: center;
    font-style: italic;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.license-comparison {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.license-type {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.license-type h3 {
    font-size: 1.1rem;
    color: #fff;
    margin: 0 0 1rem 0;
    padding: 0;
    text-align: center;
}

.license-type ul {
    margin: 0;
}

.license-type ul li {
    padding: 0.4rem 0 0.4rem 0;
    font-size: 0.9rem;
}

.license-type ul li::before {
    display: none;
}

.license-type ul li i {
    margin-right: 0.5rem;
    width: 16px;
    text-align: center;
}

.license-type ul li i.fa-check {
    color: #22c55e;
}

.license-type ul li i.fa-times {
    color: #ef4444;
}

@media (max-width: 768px) {
    .license-title {
        font-size: 1.75rem;
    }

    .license-comparison {
        grid-template-columns: 1fr;
    }

    .license-section {
        padding: 0 1rem;
    }
}

/* ================================================================ */
/* BILLING TOGGLE INLINE (Inside Card)                              */
/* ================================================================ */

.billing-toggle-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin: 1rem 0;
}

.billing-toggle-inline .toggle-label {
    font-size: 0.85rem;
    color: #71717a;
    transition: color 0.2s ease;
}

.billing-toggle-inline .toggle-label[data-period="yearly"] {
    color: #fff;
}

.billing-toggle-inline .toggle-switch {
    position: relative;
    width: 44px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.billing-toggle-inline .toggle-switch:hover {
    background: rgba(255, 255, 255, 0.15);
}

.billing-toggle-inline .toggle-slider {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    border-radius: 50%;
    transition: transform 0.2s ease;
}

.billing-toggle-inline .toggle-switch[aria-pressed="true"] .toggle-slider {
    transform: translateX(20px);
}

.billing-toggle-inline .toggle-switch[aria-pressed="false"] .toggle-slider {
    transform: translateX(0);
}

/* Toggle state colors */
.billing-toggle-inline .toggle-switch[aria-pressed="true"] ~ .toggle-label[data-period="yearly"],
.billing-toggle-inline .toggle-switch[aria-pressed="false"] ~ .toggle-label[data-period="monthly"] {
    color: #fff;
}

.billing-toggle-inline .toggle-switch[aria-pressed="true"] ~ .toggle-label[data-period="monthly"],
.billing-toggle-inline .toggle-switch[aria-pressed="false"] ~ .toggle-label[data-period="yearly"] {
    color: #71717a;
}

/* ================================================================ */
/* PROMOTIONAL PRICING                                              */
/* ================================================================ */

/* Old price - tiny, muted */
.price-old {
    display: block;
    font-size: 0.875rem;
    font-weight: 400;
    color: #52525b;
    text-decoration: line-through;
    letter-spacing: 0.02em;
}

/* New price - THE HERO */
.new-price {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1;
}

.price-current {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.price-current .price-period {
    font-size: 1.5rem;
    font-weight: 500;
    color: #71717a;
    margin-left: 0.1em;
}

/* Pricing cards with promotional pricing */
.pricing-card.featured .price {
    text-align: center;
}

.pricing-card .price .price-current {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

/* Front page pricing preview - force large price */
.pricing-cards-preview .pricing-card .price .new-price {
    font-size: 3.5rem !important;
    font-weight: 800 !important;
    color: #fff !important;
}

.pricing-cards-preview .pricing-card .price .price-old {
    font-size: 0.9rem !important;
    color: #52525b !important;
}

.pricing-cards-preview .pricing-card .price .price-period {
    font-size: 1.25rem !important;
    color: #71717a !important;
}

/* Limited offer */
.limited-offer {
    font-size: 0.85rem;
    color: #a78bfa;
    margin-top: 0.5rem;
    font-weight: 500;
    text-align: center;
}

.hero-content .limited-offer {
    margin-top: 0.75rem;
}

.limited-offer i {
    margin-right: 0.4rem;
    color: #c4b5fd;
}

/* Hero launch price */
.hero-launch-price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
    font-size: 1rem;
    color: #a1a1aa;
}

.hero-launch-price .price-old {
    color: #71717a;
    text-decoration: line-through;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero-launch-price strong {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero-launch-price .launch-deadline {
    color: #a78bfa;
    font-size: 0.9rem;
    font-weight: 500;
    padding-left: 0.75rem;
    border-left: 1px solid rgba(167, 139, 250, 0.3);
}

/* ================================================================ */
/* SIMPLIFIED PRICING GRID (Two Cards + Business Callout)          */
/* ================================================================ */

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

.pricing-grid-two .pricing-card {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

.pricing-grid-two .pricing-card .card-header {
    text-align: center;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.pricing-grid-two .pricing-card .card-header h3 {
    margin-bottom: 0.5rem;
}

.pricing-grid-two .pricing-card .card-header .price-display {
    margin-top: 0;
}

.pricing-grid-two .pricing-card .card-header .price-note {
    margin-top: 0.5rem;
}

/* Includes Section */
.includes-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.includes-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #71717a;
    margin-bottom: 1rem;
}

.pricing-card .features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.pricing-card .features-list li {
    padding: 0.5rem 0;
    color: #a1a1aa;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-card .features-list li i {
    color: #22c55e;
    font-size: 0.8rem;
}

.pricing-card.featured .features-list li {
    color: #e4e4e7;
}

.pricing-grid-two .pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Price Display */
.price-display {
    margin: 1rem 0;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1;
}

.price-old {
    display: block;
    font-size: 1.1rem;
    font-weight: 400;
    color: #52525b;
    text-decoration: line-through;
    margin-bottom: 0.25rem;
}

.price-period {
    font-size: 1.25rem;
    font-weight: 500;
    color: #71717a;
    margin-left: 0.1em;
}

.price-note {
    font-size: 0.85rem;
    color: #71717a;
    margin-top: 0.5rem;
}

.price-note.limited-offer {
    color: #a78bfa;
    font-weight: 500;
}

/* Price Monthly/Yearly Containers */
.price-monthly,
.price-yearly {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.price-yearly-total {
    display: block;
    width: 100%;
    font-size: 0.85rem;
    color: #71717a;
    margin-top: 0.5rem;
    font-weight: 400;
}

/* Business Callout */
.business-callout {
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.business-callout .business-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
}

.business-callout .business-info {
    flex: 1;
}

.business-callout .business-info h3 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.25rem;
}

.business-callout .business-info p {
    font-size: 0.9rem;
    color: #a1a1aa;
    margin: 0;
}

/* Responsive for Two-Card Grid */
@media (max-width: 768px) {
    .pricing-grid-two {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .pricing-grid-two .pricing-card.featured {
        order: -1;
    }

    .business-callout .business-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
}
