@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* Landing Page Styles */

:root {
    --primary-color: #7c6cf0;
    --primary-dark: #6a5bd6;
    --secondary-color: #9b8cff;
    --accent-color: #b4a4ff;
    --text-dark: #e8eaf0;
    --text-light: #8b8fa8;
    --bg-light: #0c0e1a;
    --bg-white: #10121f;
    --border-color: rgba(255, 255, 255, 0.08);
    --success-color: #48bb78;
    --error-color: #f56565;
    --font-serif: 'DM Serif Display', Georgia, 'Times New Roman', serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

body {
    font-family: var(--font-sans);
    line-height: 1.7;
    color: var(--text-dark);
    background: #090b14;
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.demo {
    padding: 4rem 0;
    background: var(--bg-white);
    position: relative;
    z-index: 2;
}

.resources {
    padding: 4rem 0;
    background: var(--bg-light);
}

.resource-actions {
    margin-top: 1rem;
}

.youtube-embed {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #0b1020;
}

.youtube-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.demo-subtitle {
    text-align: center;
    color: var(--text-light);
    max-width: 900px;
    margin: -1.5rem auto 2.5rem auto;
    font-size: 1.05rem;
}

.demo-subtitle code {
    background: rgba(124, 108, 240, 0.08);
    border: 1px solid rgba(124, 108, 240, 0.18);
    padding: 0.15rem 0.4rem;
    border-radius: 8px;
    color: var(--text-dark);
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.demo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
    margin-bottom: 1.5rem;
}

.demo-card {
    border: 1px solid var(--border-color);
    border-radius: 16px;
    background: var(--bg-white);
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.demo-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1rem 0.75rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.demo-card-header h3 {
    font-size: 1.05rem;
    margin: 0;
    color: var(--text-dark);
}

.demo-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.demo-link {
    text-decoration: none;
    font-weight: 600;
    color: var(--primary-color);
    background: rgba(124, 108, 240, 0.10);
    border: 1px solid rgba(124, 108, 240, 0.18);
    padding: 0.35rem 0.7rem;
    border-radius: 4px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    font-size: 0.9rem;
}

.demo-btn {
    appearance: none;
    border: 1px solid rgba(124, 108, 240, 0.18);
    background: rgba(124, 108, 240, 0.10);
    color: var(--primary-color);
    font-weight: 700;
    padding: 0.35rem 0.7rem;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    font-size: 0.9rem;
}

.demo-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(124, 108, 240, 0.18);
}

.demo-btn:active {
    transform: translateY(0);
}

.demo-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    box-shadow: none;
}

.demo-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(124, 108, 240, 0.18);
}

.demo-media {
    padding: 1rem;
}

.demo-video-wrap {
    position: relative;
}

.demo-video-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 2;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.7rem;
    border-radius: 4px;
    color: #ffffff;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.01em;
    background: linear-gradient(135deg, rgba(124, 108, 240, 0.92), rgba(155, 140, 255, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.demo-video-caption {
    margin-top: 0.75rem;
    margin-bottom: 0;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.demo-media img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bg-light);
}

.demo-media video {
    width: 100%;
    display: block;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #0b1020;
}

.demo-panels {
    display: grid;
    gap: 1rem;
}

.demo-panel {
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
}

.demo-panel summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.demo-panel summary::-webkit-details-marker {
    display: none;
}

.demo-panel summary span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.code-block,
.log-block {
    margin: 0;
    padding: 1rem;
    overflow: auto;
    background: #0b1020;
    color: #e6edf3;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 0.9rem;
    line-height: 1.45;
}

.demo-text {
    padding: 1rem;
    background: var(--bg-white);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-dark);
}

.demo-text p {
    margin-bottom: 0.75rem;
}

.demo-text p:last-child {
    margin-bottom: 0;
}

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

    /* On small screens the demo screenshot is very tall — show a clean, consistent preview. */
    .demo-media {
        padding: 0.9rem;
    }

    .demo-media img {
        height: 220px;
        object-fit: cover;
        object-position: top;
    }

    .demo-media video {
        aspect-ratio: 16 / 9;
        height: auto;
        object-fit: contain;
    }
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(9, 11, 20, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 16px;
    gap: 1rem;
    min-width: 0;
}

.logo {
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 32px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
}

.nav {
    display: flex;
    gap: 1rem;
    align-items: center;
    min-width: 0;
    flex: 1;
    justify-content: space-between;
}

.nav-links,
.nav-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 0.9rem;
    transition: color 0.25s;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

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

.nav-github-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    color: var(--text-dark);
    transition: all 0.25s;
    flex-shrink: 0;
}

.nav-github-btn:hover {
    background: var(--text-dark);
    color: #fff !important;
    border-color: var(--text-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-btn-small {
    background: var(--primary-color);
    color: white !important;
    padding: 0.45rem 1.25rem;
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.cta-btn-small:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(124, 108, 240, 0.3);
    background: #8b7df5;
}

.login-link {
    color: var(--text-dark);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 400;
    text-decoration: none;
    padding: 0.45rem 1.1rem;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    transition: all 0.25s ease;
}

.login-link:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.lang-switch {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-dark);
    border-radius: 4px;
    padding: 0.35rem 0.6rem;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
}

.lang-switch:focus {
    outline: 2px solid rgba(124, 108, 240, 0.35);
    outline-offset: 2px;
}

/* Hero Section */
.hero {
    background: #090b14;
    color: white;
    padding: 8rem 0 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(124, 108, 240, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 300;
    font-style: normal;
    text-transform: uppercase;
    margin-bottom: 2rem;
    line-height: 1.1;
    color: #fff;
    letter-spacing: 0.04em;
    max-width: 900px;
}

.gradient-text {
    color: #fff;
    -webkit-text-fill-color: unset;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
}

.highlight-text {
    background: linear-gradient(90deg, #9b8cff 0%, #c4a0e8 40%, #d4a574 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sparkle-icon {
    display: inline-block;
    vertical-align: top;
    margin-left: 4px;
    margin-top: -6px;
    color: var(--secondary-color);
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    color: var(--text-light);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    letter-spacing: 0.01em;
}

/* Ukrainian: force hero subtitle lines onto separate lines */
html[lang="uk"] .hero-subtitle span {
    display: block;
}

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

.cta-btn-primary, .cta-btn-secondary, .cta-btn-demo {
    padding: 0.9rem 2.2rem;
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    letter-spacing: 0.01em;
}

.cta-btn-primary {
    background: var(--primary-color);
    color: white;
    border: none;
    box-shadow: 0 4px 20px rgba(124, 108, 240, 0.25);
}

.cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(124, 108, 240, 0.4);
    background: #8b7df5;
}

.cta-btn-secondary {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.4);
}

.cta-btn-demo {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.cta-btn-demo:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.4);
}

.cta-btn-demo:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

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

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: #090b14;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 300;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 3rem;
    color: #fff;
    letter-spacing: 0.04em;
    line-height: 1.2;
}

/* Hero Screenshot with 3D perspective */
.hero-screenshot {
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-screenshot img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

/* Logo Ticker */
.logo-ticker {
    padding: 3rem 0;
    background: var(--bg-light);
    overflow: hidden;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.logo-ticker-label {
    text-align: center;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 2rem;
    opacity: 0.7;
}

.logo-ticker-label strong {
    font-weight: 800;
    color: #e8e8f0;
}

.logo-ticker-static {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3.5rem;
    flex-wrap: wrap;
    padding: 0 2rem;
}

.logo-ticker-track {
    display: flex;
    width: max-content;
    animation: ticker-scroll 30s linear infinite;
}

.logo-ticker-track:hover {
    animation-play-state: paused;
}

.logo-ticker-slide {
    display: flex;
    gap: 3rem;
    padding-right: 3rem;
}

.logo-ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    transition: opacity 0.3s, filter 0.3s;
    opacity: 0.85;
    filter: brightness(0) invert(1) opacity(0.7);
}

.logo-ticker-item:hover {
    opacity: 1;
    filter: brightness(0) invert(1);
}

.logo-ticker-logo {
    height: 32px;
    width: auto;
    flex-shrink: 0;
    display: block;
}

.logo-ticker-logo--mark {
    height: 28px;
}

.logo-ticker-logo--wordmark {
    height: 26px;
}

.logo-ticker-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #e8e8f0;
    letter-spacing: 0.02em;
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .logo-ticker-track {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
        width: auto;
        gap: 2rem;
    }
    .logo-ticker-slide:last-child {
        display: none;
    }
    .logo-ticker-slide {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .logo-ticker-logo {
        height: 22px;
    }
    .logo-ticker-logo--mark {
        height: 20px;
    }
    .logo-ticker-logo--wordmark {
        height: 18px;
    }
    .logo-ticker-name {
        font-size: 0.85rem;
    }
    .logo-ticker-slide {
        gap: 2rem;
        padding-right: 2rem;
    }
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(124, 108, 240, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-icon svg {
    width: 48px;
    height: 48px;
    stroke-width: 1.5;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: #fff;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Feature Highlights (compact grid merged into showcase) */
.feature-highlights-divider {
    text-align: center;
    margin: 80px 0 48px;
    position: relative;
}

.feature-highlights-divider::before {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(124, 108, 240, 0.4), transparent);
    margin: 0 auto 24px;
}

.feature-highlights-divider h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 8px;
}

.feature-highlights-divider p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.feature-highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
}

.feature-highlight-card {
    display: flex;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    transition: border-color 0.2s ease;
}

.feature-highlight-card:hover {
    border-color: rgba(124, 108, 240, 0.25);
}

.feature-highlight-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 108, 240, 0.1);
    border-radius: 10px;
    color: var(--primary-color);
}

.feature-highlight-icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.5;
}

.feature-highlight-card h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 500;
    color: #fff;
    margin: 0 0 4px;
}

.feature-highlight-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 640px) {
    .feature-highlights-grid {
        grid-template-columns: 1fr;
    }
}

/* Benefits Section */
.benefits {
    padding: 4rem 0;
}

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

.benefit-item {
    padding: 2rem;
    border-left: 4px solid var(--primary-color);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 4px solid var(--primary-color);
    border-radius: 10px;
    transition: all 0.3s;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.benefit-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.benefit-item p {
    color: var(--text-light);
}

/* Who Is It For Section */
.who-is-it-for {
    padding: 5rem 0;
    background: var(--bg-white);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 300;
    margin-bottom: 3rem;
    margin-top: -1rem;
    line-height: 1.7;
}

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

.persona-card {
    background: rgba(255, 255, 255, 0.04);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.persona-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.persona-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 1rem;
}

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

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

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

.persona-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.persona-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Roadmap Section */
.roadmap {
    padding: 4rem 0;
    background: var(--bg-white);
}

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

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

.roadmap-item {
    background: rgba(255, 255, 255, 0.04);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.roadmap-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.roadmap-item:hover {
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(124, 108, 240, 0.15);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.roadmap-item:hover::before {
    transform: scaleX(1);
}

.roadmap-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

.roadmap-icon-brand,
.roadmap-icon-dual {
    font-size: unset;
    color: var(--primary-color);
}

.roadmap-icon-brand > svg {
    width: 48px;
    height: 48px;
    stroke-width: 1.5;
}

.brand-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.roadmap-icon-dual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.roadmap-icon-dual .brand-icon {
    width: 36px;
    height: 36px;
}

.roadmap-item:nth-child(2) .roadmap-icon {
    animation-delay: 0.5s;
}

.roadmap-item:nth-child(3) .roadmap-icon {
    animation-delay: 1s;
}

.roadmap-item:nth-child(4) .roadmap-icon {
    animation-delay: 1.5s;
}

.roadmap-item:nth-child(5) .roadmap-icon {
    animation-delay: 2s;
}

.roadmap-item:nth-child(6) .roadmap-icon {
    animation-delay: 2.5s;
}

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

.roadmap-item h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.roadmap-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.roadmap-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    vertical-align: middle;
    margin-left: 0.4rem;
}

.roadmap-badge--ready {
    background: rgba(72, 187, 120, 0.15);
    color: #38a169;
    border: 1px solid rgba(72, 187, 120, 0.3);
}

/* Open Source Section */
.open-source {
    padding: 4rem 0;
    background: #090b14;
}

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

.oss-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.04);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.oss-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.oss-card-blog {
    background: linear-gradient(135deg, rgba(124, 108, 240, 0.04), rgba(155, 140, 255, 0.04));
    border: 2px dashed rgba(124, 108, 240, 0.25);
}

.oss-card-blog:hover {
    border-style: solid;
}

.oss-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.oss-icon svg {
    width: 48px;
    height: 48px;
    stroke-width: 1.5;
}

.oss-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.oss-card p {
    color: var(--text-light);
    line-height: 1.7;
    flex: 1;
}

.oss-lang {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
    background: rgba(124, 108, 240, 0.08);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
}

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

.oss-follow-btn {
    display: inline-block;
    background: rgba(124, 108, 240, 0.15);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid rgba(124, 108, 240, 0.4);
}

.oss-follow-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(124, 108, 240, 0.15);
    background: rgba(124, 108, 240, 0.25);
    border-color: rgba(124, 108, 240, 0.6);
}

.oss-cta-note {
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* GitHub Follow — inline button (hero, CTA sections) */
.hero-github {
    margin-top: 0;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.github-follow-inline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.25s;
    backdrop-filter: blur(8px);
    cursor: pointer;
}

.github-follow-inline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.github-follow-inline--dark {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.85);
}

.github-follow-inline--dark:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.footer-github-follow {
    font-weight: 600;
}

/* Early Bird Section */
.early-bird {
    padding: 4rem 0;
    background: #090b14;
    color: white;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.early-bird .section-title {
    color: #fff;
}

.early-bird .section-subtitle {
    color: rgba(255, 255, 255, 0.6) !important;
}

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

.early-bird-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    transition: all 0.3s;
}

.early-bird-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(124, 108, 240, 0.3);
}

.badge {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #7c6cf0;
}

.badge svg {
    width: 48px;
    height: 48px;
    stroke-width: 1.5;
}

.early-bird-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.early-bird-card p {
    opacity: 0.7;
    line-height: 1.8;
}

/* Waitlist Section */
.waitlist {
    padding: 5rem 0;
    background: var(--bg-light);
}

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

.waitlist-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

.signup-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 2rem;
}

.signup-buttons .cta-btn-primary,
.signup-buttons .cta-btn-secondary {
    width: 280px;
    text-align: center;
}

.signup-login {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.signup-login a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
}

.signup-login a:hover {
    text-decoration: underline;
}

.waitlist-form {
    background: rgba(255, 255, 255, 0.04);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

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

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s;
    background: rgba(255, 255, 255, 0.06);
    color: #e8e8f0;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(124, 108, 240, 0.4);
}

.submit-btn:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px var(--primary-color);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.success-message,
.error-message {
    background: rgba(255, 255, 255, 0.04);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.success-icon,
.error-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.success-message h3 {
    color: var(--success-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.error-message h3 {
    color: var(--error-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.position-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 1rem;
}

/* ═══════════════════════════════════════════════════════════════
   NEWSLETTER INLINE FORMS
   ═══════════════════════════════════════════════════════════════ */
.newsletter-inline-form {
    display: flex;
    gap: 0.75rem;
    width: 100%;
    max-width: 480px;
}

.newsletter-email {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
    min-width: 0;
    background: rgba(255, 255, 255, 0.06);
    color: #e8e8f0;
}

.newsletter-email::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-email:focus {
    border-color: var(--primary-color);
}

.newsletter-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.newsletter-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(124, 108, 240, 0.35);
}

.newsletter-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.newsletter-btn-success {
    background: linear-gradient(135deg, var(--success-color), #38a169) !important;
}

/* Hero newsletter */
.hero-newsletter {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.hero-newsletter .newsletter-email {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.hero-newsletter .newsletter-email::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.hero-newsletter .newsletter-email:focus {
    border-color: white;
    background: rgba(255, 255, 255, 0.25);
}

.hero-newsletter .newsletter-btn {
    background: white;
    color: var(--primary-color);
    font-weight: 700;
}

.hero-newsletter .newsletter-btn:hover:not(:disabled) {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-newsletter .newsletter-btn-success {
    background: var(--success-color) !important;
    color: white !important;
}

/* Mid-section newsletter banner */
.newsletter-banner {
    padding: 4rem 0;
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.newsletter-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.newsletter-banner-text h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.newsletter-banner-text p {
    color: var(--text-light);
    font-size: 1.05rem;
}

/* Footer newsletter */
.footer-newsletter {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
    text-align: center;
}

.footer-newsletter h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.footer-newsletter .newsletter-inline-form {
    margin: 0 auto;
    justify-content: center;
}

.footer-newsletter .newsletter-email {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: white;
}

.footer-newsletter .newsletter-email::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.footer-newsletter .newsletter-email:focus {
    border-color: var(--primary-color);
}

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

/* Footer */
.footer {
    background: #090b14;
    color: white;
    padding: 4rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    max-width: 320px;
    flex-shrink: 0;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 1.5rem;
}

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

.footer-brand h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #e8e8f0;
    margin-bottom: 0.4rem;
}

.footer-brand p {
    font-size: 0.85rem;
    color: #9ca3b8;
    margin-bottom: 1rem;
}

.footer-subscribe-form {
    display: flex;
    gap: 0.5rem;
}

.footer-subscribe-input {
    flex: 1;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    color: #e8e8f0;
    font-size: 0.85rem;
    outline: none;
    transition: border-color 0.2s;
}

.footer-subscribe-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.footer-subscribe-input:focus {
    border-color: var(--primary-color);
}

.footer-subscribe-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #e8e8f0;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.footer-subscribe-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.35);
}

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

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

.footer-section h3,
.footer-section h4 {
    font-family: var(--font-sans);
    margin-bottom: 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #e8e8f0;
}

.footer-section a {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    margin-bottom: 0.6rem;
    transition: color 0.2s;
    font-size: 0.85rem;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

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

.footer-social a {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s;
    display: flex;
}

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

/* Hamburger Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 101;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* Responsive Design — compact header before mobile */
@media (max-width: 1100px) {
    .header .container {
        padding: 0.65rem 12px;
        gap: 0.75rem;
    }
    .logo-img {
        height: 28px;
        max-width: 120px;
    }
    .nav {
        gap: 0.75rem;
    }
    .nav-links,
    .nav-controls {
        gap: 0.75rem;
    }
    .nav a {
        font-size: 0.85rem;
    }
    .cta-btn-small {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
    .login-link {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
    .nav-github-btn {
        width: 32px;
        height: 32px;
    }
}

/* Show hamburger earlier so nav fits on tablet/small desktop */
@media (max-width: 900px) {
    .hamburger {
        display: flex;
    }
    .header .container {
        flex-wrap: wrap;
        padding: 0.65rem 12px;
    }
    .logo {
        flex: 1;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    .logo-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    .logo-img {
        height: 36px;
        max-width: 150px;
    }
    .nav {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 0.6rem;
        padding: 0.75rem 0;
        border-top: 1px solid var(--border-color);
    }
    .nav.open {
        display: flex;
    }
    .nav-links {
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    .nav-controls {
        width: 100%;
        justify-content: center;
        gap: 0.75rem;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .header .container {
        padding: 0.75rem 16px;
    }
    .logo-img {
        height: 36px;
        max-width: 150px;
    }

    .nav a {
        font-size: 0.95rem;
    }

    .cta-btn-small {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.45rem 0.95rem;
        white-space: nowrap;
    }

    .lang-switch {
        padding: 0.35rem 0.65rem;
        font-size: 0.95rem;
    }

    .hero {
        padding: 4rem 0 2.5rem;
        overflow: hidden;
    }

    .hero-title {
        font-size: 2.4rem;
        letter-spacing: 0.03em;
    }

    .hero-screenshot {
        margin-top: 2rem;
        margin-left: -1rem;
        margin-right: -1rem;
        max-width: calc(100% + 2rem);
        perspective: none;
    }
    .hero-screenshot img {
        transform: none;
        border-radius: 8px;
    }

    .footer-top {
        flex-direction: column;
        gap: 2rem;
    }
    .footer-brand {
        max-width: 100%;
    }
    .footer-links-group {
        gap: 2rem;
        flex-wrap: wrap;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

    .hero-cta {
        flex-direction: column;
        align-items: center;
        margin-bottom: 1.5rem;
    }

    .hero-stats {
        flex-direction: row;
        gap: 2rem;
        margin-top: 1.5rem;
    }

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

    .waitlist-form {
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Newsletter responsive */
    .newsletter-inline-form {
        flex-direction: column;
        max-width: 100%;
    }

    .newsletter-btn {
        width: 100%;
    }

    .hero-newsletter {
        padding: 0 1rem;
    }

    .newsletter-banner-inner {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-banner-inner .newsletter-inline-form {
        width: 100%;
    }

    .newsletter-banner-text h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .header .container {
        padding: 0.65rem 12px;
    }
    .logo-img {
        height: 32px;
        max-width: 130px;
    }

    .hero-title {
        font-size: 1.6rem;
        letter-spacing: 0.02em;
    }

    .hero-stats {
        gap: 1.5rem;
    }

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

    .stat-label {
        font-size: 0.8rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.benefit-item,
.persona-card,
.oss-card,
.early-bird-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Matrix Demo Banner */
.matrix-demo-banner {
    background: var(--bg-light);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.matrix-demo-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(124, 108, 240, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 30%, rgba(0, 255, 65, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.matrix-demo-banner::after {
    position: absolute;
    top: 14%;
    right: 6%;
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    color: rgba(0, 255, 65, 0.12);
    white-space: pre;
    pointer-events: none;
    line-height: 1.8;
    content: '> run tests\A> generating...\A> 12 specs found\A> execute --all\A> ✓ passed';
}

.matrix-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(0, 255, 65, 0.02) 100%);
    border: 1px solid rgba(0, 255, 65, 0.08);
    border-radius: 16px;
    padding: 3rem 3.5rem;
    box-shadow: 0 0 40px rgba(0, 255, 65, 0.03), inset 0 1px 0 rgba(0, 255, 65, 0.06);
}

.matrix-banner-badge {
    display: inline-block;
    background: rgba(124, 108, 240, 0.1);
    border: 1px solid rgba(124, 108, 240, 0.25);
    color: var(--secondary-color);
    padding: 0.3rem 1rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    transition: all 0.4s ease;
}

.matrix-banner-content:hover .matrix-banner-badge {
    background: rgba(0, 255, 65, 0.08);
    border-color: rgba(0, 255, 65, 0.25);
    color: #5aff7e;
    text-shadow: 0 0 12px rgba(0, 255, 65, 0.3);
}

.matrix-banner-text h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #fff 0%, #c4b5fd 40%, #2dbd6e 80%, #00ff41 100%);
    background-size: 200% 100%;
    background-position: 0% 50%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-position 0.4s ease;
}

.matrix-banner-content:hover .matrix-banner-text h2 {
    background-position: 100% 50%;
}

.matrix-banner-text p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    max-width: 520px;
    line-height: 1.6;
}

.matrix-demo-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #5a6cf0 40%, #2dbd6e 80%, #00ff41 100%);
    background-size: 200% 100%;
    background-position: 0% 50%;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 0 24px rgba(124, 108, 240, 0.3), 0 0 48px rgba(0, 255, 65, 0.06);
    border: none;
}

.matrix-demo-btn:hover {
    transform: translateY(-3px);
    background-position: 100% 50%;
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.3), 0 0 60px rgba(124, 108, 240, 0.15);
    color: #0a0a0a;
}

.matrix-arrow {
    font-size: 1.3rem;
    transition: transform 0.3s;
}

.matrix-demo-btn:hover .matrix-arrow {
    transform: translateX(4px);
}

.matrix-banner-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.matrix-banner-note {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .matrix-demo-banner {
        padding: 2.5rem 0;
    }
    .matrix-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }
    .matrix-banner-text p {
        margin: 0 auto;
        font-size: 0.95rem;
    }
    .matrix-banner-text h2 {
        font-size: 1.5rem;
    }
    .matrix-demo-btn {
        padding: 0.85rem 2rem;
        font-size: 1rem;
    }
}

/* ============================================
   How It Works — Pipeline Section
   ============================================ */

.how-it-works {
    padding: 5rem 0;
    background: var(--bg-light);
    color: #f8fafc;
}

.how-it-works .section-title {
    color: #fff;
}

.how-it-works .section-subtitle {
    text-align: center;
    color: #94a3b8;
    margin-top: -10px;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.pipeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.pipeline-step {
    flex: 1;
    text-align: center;
    padding: 1.5rem 1rem;
    position: relative;
    max-width: 220px;
}

.pipeline-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.pipeline-icon {
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.pipeline-icon svg {
    width: 36px;
    height: 36px;
    stroke-width: 1.5;
}

.pipeline-step h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #f8fafc;
}

.pipeline-step p {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.6;
}

.pipeline-connector {
    display: flex;
    align-items: center;
    padding-top: 4.5rem;
    color: #475569;
    flex-shrink: 0;
}

.pipeline-connector svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

@media (max-width: 900px) {
    .pipeline {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    .pipeline-step {
        max-width: 400px;
    }
    .pipeline-connector {
        padding-top: 0;
        transform: rotate(90deg);
        margin: -0.5rem 0;
    }
}

/* ============================================
   Nexus Crew — AI Review Team
   ============================================ */

.nexus-crew {
    padding: 4rem 0;
    background: var(--bg-light);
}

.nexus-crew .section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-top: -10px;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.nexus-card {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: default;
}

.nexus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(124, 108, 240, 0.15);
}

.nexus-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin: 0 auto 0.75rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
}

.nexus-avatar span {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
}

/* Each persona gets a unique gradient */
.nexus-maya { background: linear-gradient(135deg, #7c6cf0, #9b8cff); }
.nexus-renko { background: linear-gradient(135deg, #1e293b, #475569); }
.nexus-kit { background: linear-gradient(135deg, #22c55e, #16a34a); }
.nexus-vex { background: linear-gradient(135deg, #ef4444, #dc2626); }
.nexus-pulse { background: linear-gradient(135deg, #f59e0b, #d97706); }
.nexus-forge { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.nexus-iris { background: linear-gradient(135deg, #ec4899, #db2777); }
.nexus-beacon { background: linear-gradient(135deg, #06b6d4, #0891b2); }

.nexus-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.nexus-role {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.nexus-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
}

.nexus-cta {
    text-align: center;
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.nexus-trial-note {
    font-size: 0.85rem;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .nexus-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

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

/* ============================================
   Roadmap — Live Badges
   ============================================ */

.roadmap-item {
    position: relative;
}

.roadmap-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.roadmap-badge-live {
    background: rgba(72, 187, 120, 0.15);
    color: #48bb78;
}

.roadmap-live {
    border: 1px solid rgba(72, 187, 120, 0.3);
}

.roadmap-live::before {
    background: linear-gradient(135deg, #22c55e, #16a34a) !important;
}

/* ============================================
   Contact / Book a Demo Section
   ============================================ */

.contact-section {
    padding: 4rem 0;
    background: #090b14;
}

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

.contact-block .section-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.contact-desc {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.cal-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cal-trigger {
    cursor: pointer;
    min-height: 44px;
}

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

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

.contact-form .form-group {
    margin-bottom: 1rem;
}

.contact-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.35rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 0.85rem;
    min-height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: rgba(255, 255, 255, 0.06);
    color: #e8e8f0;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(124, 108, 240, 0.35);
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

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

.cal-embed-container {
    width: 100%;
    min-height: 460px;
    height: auto;
    overflow: auto;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.cal-note {
    margin-top: 0.75rem;
}

.hp-field {
    position: absolute;
    left: -9999px;
}

.contact-turnstile-container {
    margin: 8px 0;
}

/* Contact single-column layout */
.contact-single {
    max-width: 650px;
    margin: 0 auto;
}

/* Book a Demo section */
.book-demo-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.book-demo-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.book-demo-text .section-title {
    text-align: left;
}

.book-demo-text p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.book-demo-bullets {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.book-demo-bullets li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
    color: var(--text-dark);
    font-weight: 500;
}

.book-demo-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-color);
}

.cal-embed-compact {
    min-height: 500px;
    background: var(--bg-light);
}

/* Signup section: override CTA buttons for light background */
#signup .cta-btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

#signup .cta-btn-primary:hover {
    box-shadow: 0 10px 25px rgba(124, 108, 240, 0.3);
}

#signup .cta-btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

#signup .cta-btn-secondary:hover {
    background: var(--bg-light);
    border-color: var(--text-light);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .cal-buttons {
        flex-direction: column;
    }
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    .book-demo-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .book-demo-text .section-title {
        text-align: center;
    }
}

/* ===================================================================
   Hero Slideshow
   =================================================================== */

.hero-slideshow {
    margin-top: 3rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.slideshow-viewport {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
    background: #0d0d1a;
    position: relative;
}

.slideshow-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.slideshow-slide {
    min-width: 100%;
    position: relative;
}

.slideshow-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3.5rem 1.5rem 1rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.slideshow-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: absolute;
    bottom: 2.5rem;
    left: 0;
    right: 0;
    z-index: 5;
}

.slideshow-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.slideshow-btn:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.6);
}

.slideshow-dots {
    display: flex;
    gap: 8px;
}

.slideshow-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    padding: 0;
}

.slideshow-dot.active {
    background: #fff;
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .hero-slideshow {
        margin-top: 2rem;
        margin-left: -1rem;
        margin-right: -1rem;
        max-width: calc(100% + 2rem);
    }
    .slideshow-viewport {
        border-radius: 8px;
    }
    .slide-caption {
        font-size: 0.8rem;
        padding: 3rem 1rem 0.75rem;
    }
}

/* ===================================================================
   Platform Showcase — Large Feature Blocks
   =================================================================== */

.platform-showcase {
    padding: 5rem 0;
    background: var(--bg-white);
    color: #f0f0f5;
}

.platform-showcase .section-title {
    color: #fff;
}

.showcase-subtitle {
    text-align: center;
    color: #9ca3af;
    font-size: 1.15rem;
    max-width: 640px;
    margin: -1rem auto 4rem;
    line-height: 1.6;
}

.showcase-block {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
}

.showcase-block:last-child {
    margin-bottom: 0;
}

.showcase-block--reverse {
    grid-template-columns: 1.3fr 1fr;
}

.showcase-block--reverse .showcase-text {
    order: 2;
}

.showcase-block--reverse .showcase-image {
    order: 1;
}

.showcase-badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    background: rgba(124, 108, 240, 0.1);
    color: var(--secondary-color);
    border: 1px solid rgba(124, 108, 240, 0.2);
    margin-bottom: 1rem;
}

.showcase-text h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.25;
}

.showcase-text p {
    font-size: 1.05rem;
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.showcase-features {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.showcase-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: #d1d5db;
}

.showcase-features li svg {
    flex-shrink: 0;
}

.showcase-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.06);
    transition: transform 0.3s ease;
}

.showcase-image:hover {
    transform: translateY(-4px);
}

.showcase-image img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 900px) {
    .showcase-block,
    .showcase-block--reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .showcase-block--reverse .showcase-text,
    .showcase-block--reverse .showcase-image {
        order: unset;
    }
    .showcase-text h3 {
        font-size: 1.6rem;
    }
    .showcase-subtitle {
        margin-bottom: 3rem;
    }
}

@media (max-width: 480px) {
    .platform-showcase {
        padding: 4rem 0;
    }
    .showcase-block {
        margin-bottom: 3.5rem;
    }
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background: var(--bg-white);
}

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

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.75rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: stretch;
}

.pricing-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.pricing-card--popular {
    border: 1.5px solid var(--primary-color);
    transform: scale(1.02);
    box-shadow: 0 4px 24px rgba(124, 108, 240, 0.15);
}

.pricing-card--popular:hover {
    transform: scale(1.02) translateY(-4px);
    box-shadow: 0 12px 32px rgba(124, 108, 240, 0.25);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 20px;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.pricing-plan-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.pricing-price {
    margin-bottom: 1rem;
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.pricing-amount {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1;
}

.pricing-period {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 6px;
    padding: 3px 0;
    font-size: 0.78rem;
    color: var(--text-dark);
    line-height: 1.35;
}

.pricing-features li svg {
    flex-shrink: 0;
}

.pricing-note {
    width: 100%;
    font-size: 0.62rem;
    color: var(--text-light);
    font-weight: 400;
    padding-left: 20px;
    margin-top: -2px;
}

.pricing-highlight {
    width: 100%;
    font-size: 0.62rem;
    font-weight: 600;
    color: var(--success-color);
    padding-left: 20px;
    margin-top: -2px;
}

.pricing-features li.pricing-trial {
    background: linear-gradient(135deg, rgba(124, 108, 240, 0.15), rgba(155, 140, 255, 0.15));
    border: 1px solid rgba(124, 108, 240, 0.3);
    border-radius: 5px;
    padding: 4px 6px;
    margin: 2px 0;
    font-weight: 600;
    font-size: 0.72rem;
    color: #a78bfa;
}

.pricing-features li.pricing-trial svg path {
    stroke: #a78bfa;
}

.pricing-cta {
    display: block;
    text-align: center;
    padding: 10px 16px;
    border-radius: 8px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.82rem;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
    background: var(--bg-light);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.pricing-cta:hover {
    background: var(--border-color);
    transform: translateY(-1px);
}

.pricing-cta--popular {
    background: var(--primary-color);
    color: #fff;
    border: none;
    box-shadow: 0 2px 12px rgba(124, 108, 240, 0.25);
}

.pricing-cta--popular:hover {
    background: #8b7df5;
    color: #fff;
}

/* Pricing responsive - tablet */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .pricing-card--popular {
        transform: scale(1);
    }

    .pricing-card--popular:hover {
        transform: translateY(-4px);
    }
}

/* Pricing responsive - mobile */
@media (max-width: 600px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .pricing-card--popular {
        transform: scale(1);
    }

    .pricing-card--popular:hover {
        transform: translateY(-4px);
    }
}
