:root {
    --bg-app-workspace: #f8f9fa;   /* Matches Theme.BG_DEEP */
    --bg-panel-white: #ffffff;     /* Matches Theme.BG_PANEL */
    --bg-header: #16181a;          /* Dark desktop titlebar/chrome, close to Theme.BG_DARK */
    --border-subtle: #e1e4e8;
    --border-control: #ced4da;     /* Matches Theme.BORDER */
    --text-main: #21252b;          /* Matches Theme.TEXT_PRIMARY */
    --text-muted: #868e96;         /* Matches Theme.TEXT_MUTED */
    --text-secondary: #495057;     /* Matches Theme.TEXT_SECONDARY */

    --btn-primary: #21252b;        /* Matches Theme.ACCENT */
    --btn-primary-hover: #343a40;
    --accent-blue: #21252b;        /* Recast: app's own charcoal accent, not SaaS blue */
    --accent-blue-hover: #000000;
    --accent-live: #2b8a3e;        /* Matches Theme.SUCCESS - the "Result:" green from the app */
    --ui-radius: 6px;
    --ui-radius-sm: 4px;
    --shadow-soft: 0 1px 2px rgba(17, 24, 39, 0.05), 0 1px 4px rgba(17, 24, 39, 0.04);
    --shadow-lift: 0 8px 20px rgba(17, 24, 39, 0.08);
    --font-mono: "JetBrains Mono", "Fira Code", "Cascadia Code", Consolas, Menlo, monospace;
    --font-ui: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
    font-family: var(--font-ui);
    box-sizing: border-box;
}

h1, h2, h3, .eyebrow, .main-download, .latest-tag, .cta, .nav-links a {
    font-family: var(--font-mono);
    letter-spacing: -0.01em;
}

body {
    margin: 0;
    padding: 0;
    color: var(--text-main);
    line-height: 1.6;
    background: var(--bg-app-workspace);
    min-height: 100vh;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 2rem;
    background: linear-gradient(180deg, #1c1c1f, var(--bg-header));
    color: white;
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 0;
    z-index: 100;
    flex-wrap: nowrap;
    gap: 1rem;
}

.nav-logo {
    height: 42px;
    margin-right: 10px;
    padding: 2px;
    transition: transform 0.2s ease;
}

.nav-logo:hover {
    transform: scale(1.02);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    justify-content: flex-end;
    order: 2;
}

.nav-links a {
    text-decoration: none;
    color: #e4e4e7;
    padding: 0.5rem 0.9rem;
    border-radius: var(--ui-radius-sm);
    transition: background-color 0.2s ease, color 0.2s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.nav-links a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transform: none;
}

.nav-links .cta {
    background: var(--accent-blue);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-weight: 600;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.nav-links .cta:hover {
    background: var(--accent-blue-hover);
    transform: none;
    box-shadow: 0 4px 10px rgba(33, 37, 43, 0.28);
}

body:not(.showcase-page) .nav-links a[href="showcase.html"]:hover {
    background: var(--accent-blue) !important;
    transform: none;
    box-shadow: 0 2px 8px rgba(33, 37, 43, 0.28);
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    position: relative;
    width: 28px;
    height: 28px;
    padding: 0;
    z-index: 101;
}

.hamburger span {
    position: absolute;
    left: 2px;
    width: 24px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
}

.hamburger span:nth-child(1) { top: 7px; }
.hamburger span:nth-child(2) { top: 13px; }
.hamburger span:nth-child(3) { top: 19px; }

.hamburger.active span:nth-child(1) {
    top: 13px;
    transform: rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    top: 13px;
    transform: rotate(-45deg);
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 2rem;
    background: linear-gradient(180deg, #ffffff, #fafbfc);
    color: var(--text-main);
    min-height: 60vh;
    border-bottom: 1px solid var(--border-subtle);
}

.hero.compact {
    padding: 1.5rem 2rem;
    min-height: 25vh;
    justify-content: center;
}

.hero.compact .hero-content {
    max-width: 100%;
    text-align: center;
}

.hero-content {
    max-width: 50%;
    animation: slideInLeft 0.5s ease-out;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent-live);
    background: var(--bg-header);
    padding: 0.35rem 0.75rem;
    border-radius: var(--ui-radius-sm);
    margin-bottom: 1.25rem;
}

.eyebrow::before {
    content: "clos>";
    color: #6b7280;
}

.hero.compact .eyebrow {
    margin-left: auto;
    margin-right: auto;
}

.hero-content h1 {
    font-size: 2.6rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
    color: var(--text-main);
    text-shadow: none;
}

.hero-content h3 {
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.main-large {
    font-size: 1.15rem;
    margin-bottom: 2.25rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.typewriter {
    color: var(--text-main, #fff);
    font-weight: 600;
}

.typewriter-cursor {
    display: inline-block;
    color: var(--accent-blue);
    font-weight: 400;
    animation: typewriter-blink 0.8s step-end infinite;
}

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

/* Main Application Style Download Button */
.main-download {
    display: inline-block;
    font-size: 1rem;
    padding: 0.8rem 1.9rem;
    background: var(--accent-blue);
    color: white;
    text-decoration: none;
    border-radius: var(--ui-radius);
    font-weight: 600;
    box-shadow: var(--shadow-soft);
    transition: all 0.2s ease;
}

.main-download:hover {
    background: var(--accent-blue-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(33, 37, 43, 0.28);
}

.slideshow-container {
    position: relative;
    max-width: 45%;
    border-radius: var(--ui-radius);
    overflow: hidden;
    border: 1px solid var(--border-control);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    animation: slideInRight 0.5s ease-out;
}

.slides-wrapper {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease-in-out;
    direction: ltr;
}

.slide-image {
    width: 100%;
    height: auto;
    flex-shrink: 0;
    object-fit: cover;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 10px 14px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.2s ease;
    border-radius: var(--ui-radius);
    user-select: none;
    background-color: rgba(24, 24, 27, 0.8);
    z-index: 10;
}

.next {
    right: 10px;
}

.prev {
    left: 10px;
}

.prev:hover, .next:hover {
    background-color: rgba(24, 24, 27, 0.95);
    transform: scale(1.05);
}

/* Slide indicators */
.slide-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.slide-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(127, 127, 127, 0.4);
    cursor: pointer;
    transition: all 0.2s ease;
}

.slide-dot.active {
    background-color: black;
    transform: scale(1.1);
}

/* Pause/Play button */
.slide-control {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(24, 24, 27, 0.8);
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: var(--ui-radius);
    cursor: pointer;
    font-size: 12px;
    transition: all 0.2s ease;
    z-index: 10;
}

.slide-control:hover {
    background-color: rgba(24, 24, 27, 0.95);
}

/* Progress bar */
.slide-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background-color: var(--accent-blue);
    transition: width 0.1s linear;
    z-index: 10;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 4rem;
    text-align: left;
}

.about-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    text-align: center;
}

.about-section p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.benefit-item {
    background: var(--bg-panel-white);
    padding: 2rem;
    border-radius: var(--ui-radius);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lift);
}

.benefit-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.benefit-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    text-align: center;
}

.mission {
    background: var(--bg-panel-white);
    padding: 3rem;
    border-radius: var(--ui-radius);
    border: 1px solid var(--border-subtle);
}

.about, .contact {
    padding: 4rem 2rem;
    background: var(--bg-app-workspace);
    color: var(--text-main);
}

.about h2, .contact h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    text-align: center;
}

.about p, .contact p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    color: var(--text-muted);
}

.buffer {
    padding: 2rem 0;
}

.features {
    padding: 4rem 2rem;
    background: var(--bg-app-workspace);
}

.features h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-main);
}

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

.features-grid-alt {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* Feature Item transformed into Clean Application Panels */
.feature-item {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: var(--ui-radius);
    border: 1px solid var(--border-subtle);
    background: var(--bg-panel-white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.feature-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-main);
}

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

.feature-item.bg1, .feature-item.bg2, .feature-item.bg3, .feature-item.bg4, 
.feature-item.bg5, .feature-item.bg6, .feature-item.bg7, .feature-item.bg8, 
.feature-item.bg9, .feature-item.bg10, .feature-item.bg11, .feature-item.bg12 {
    background: var(--bg-panel-white);
    border-top: 3px solid var(--border-control);
}
.feature-item.bg1 { border-top-color: #10b981; }
.feature-item.bg2 { border-top-color: #724800; }
.feature-item.bg3 { border-top-color: #8b5cf6; }
.feature-item.bg4 { border-top-color: #ef4444; }
.feature-item.bg5 { border-top-color: #3b82f6; }
.feature-item.bg6 { border-top-color: #01e6ff; }
.feature-item.bg7 { border-top-color: #f50083; }
.feature-item.bg8 { border-top-color: #fb6900; }
.feature-item.bg9 { border-top-color: #0000ff; }
.feature-item.bg10 { border-top-color: #f8d200; }
.feature-item.bg11 { border-top-color: #000000; }
.feature-item.bg12 { border-top-color: #707070; }

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lift);
}

.feature-item img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-top: 1rem;
    border: 1px solid var(--border-subtle);
    cursor: zoom-in;
    transition: opacity 0.15s ease;
}

.feature-item img:hover {
    opacity: 0.88;
}

.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(16, 17, 19, 0.88);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 3rem 1.5rem;
    cursor: zoom-out;
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-image {
    max-width: min(90vw, 1100px);
    max-height: 88vh;
    border-radius: var(--ui-radius-sm);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    cursor: default;
}

.lightbox-close {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.testimonials {
    padding: 4rem 2rem;
    background: var(--bg-app-workspace);
    border-top: 1px solid var(--border-subtle);
}

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

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

.testimonial-item {
    background: var(--bg-panel-white);
    padding: 2rem;
    border-radius: var(--ui-radius);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lift);
}

.testimonial-item h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-main);
}

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

.download-section {
    padding: 2rem;
    background: var(--bg-panel-white);
    margin: 2rem auto;
    max-width: 900px;
    border-radius: var(--ui-radius);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
    transition: box-shadow 0.2s ease;
}

.download-section:hover {
    box-shadow: var(--shadow-lift);
}

.download-section h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    font-weight: 600;
}

.download-links p {
    font-size: 1rem;
    margin: 1rem 0;
}

.download-links a {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 500;
}

.download-links a:hover {
    text-decoration: underline;
}

.latest-tag {
    background: #eaf6ec;
    color: var(--accent-live);
    font-family: var(--font-mono);
    padding: 0.35rem 0.85rem;
    border-radius: var(--ui-radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    display: inline-block;
    margin-bottom: 1rem;
    border: 1px solid #cdeacf;
}

.latest-tag::before {
    content: "● ";
    font-size: 0.7rem;
}

.red-text {
    color: #dc2626;
    font-weight: 600;
}

.footer {
    background: var(--bg-header);
    color: #a1a1aa;
    text-align: center;
    padding: 2rem;
    margin-top: auto;
    font-size: 0.9rem;
    border-top: 1px solid #27272a;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.social-links a {
    margin: 0 10px;
    display: inline-block;
}

.social-links img {
    height: 22px;
    filter: brightness(0) invert(0.8);
    transition: filter 0.2s ease;
}

.social-links img:hover {
    filter: brightness(0) invert(1);
    transform: none;
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-section {
    margin-bottom: 3rem;
}

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

.contact-item, .doc-item {
    background: var(--bg-panel-white);
    padding: 2rem;
    border-radius: var(--ui-radius);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-item:hover, .doc-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lift);
}

.contact-item h3, .doc-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.contact-item p, .doc-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    text-align: center;
}

.contact-item a, .doc-item a {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover, .doc-item a:hover {
    text-decoration: underline;
}

.doc-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.6rem 1.25rem;
    background: var(--accent-blue);
    color: white !important;
    border-radius: var(--ui-radius);
    font-weight: 600;
    text-decoration: none !important;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.doc-link:hover {
    background: var(--accent-blue-hover);
    box-shadow: 0 4px 10px rgba(33, 37, 43, 0.28);
}

/* Showcase Page Styles Styles */
.showcase-page {
    background: var(--bg-app-workspace);
}

.showcase-page .navbar {
    background: var(--bg-header);
}

.showcase-page .hero {
    background: var(--bg-panel-white);
}

.showcase-page .hero-content h1 {
    color: var(--text-main);
    text-shadow: none;
}

.showcase-page .hero-content h3 {
    color: var(--text-muted);
}

.showcase-page .main-large {
    color: var(--text-muted);
}

.showcase-page .footer {
    background: var(--bg-header);
}

.showcase-image-container {
    position: relative;
    max-width: 45%;
    border-radius: var(--ui-radius);
    overflow: hidden;
    border: 1px solid var(--border-control);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    background: white;
    padding: 12px;
}

.showcase-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.showcase-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}

.new-badge {
    background: var(--btn-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: none;
}

.showcase-highlights {
    padding: 4rem 2rem;
    background: var(--bg-app-workspace);
    border-top: 1px solid var(--border-subtle);
}

.showcase-page .showcase-highlights h2 {
    color: var(--text-main);
    text-shadow: none;
}

.showcase-highlights h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-main);
}

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

.highlight-item {
    background: var(--bg-panel-white);
    padding: 2.5rem 2rem;
    border-radius: var(--ui-radius);
    border: 1px solid var(--border-subtle);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    text-align: center;
    border-top: 4px solid var(--accent-blue);
}

.highlight-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-main);
}

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

.comparison-section {
    padding: 4rem 2rem;
    background: var(--bg-app-workspace);
    border-top: 1px solid var(--border-subtle);
}

.comparison-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-main);
}

.evolution-content {
    max-width: 1000px;
    margin: 0 auto;
}

.evolution-content > p {
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-muted);
}

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

.evolution-item {
    background: var(--bg-panel-white);
    padding: 2rem;
    border-radius: var(--ui-radius);
    border: 1px solid var(--border-subtle);
}

.evolution-item h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-main);
}

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

.coming-soon-wrapper {
    position: relative;
    display: inline-block;
    border: 1px solid var(--border-control);
    border-radius: var(--ui-radius);
    background: var(--bg-panel-white);
    padding: 8px; 
}

.coming-soon-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: var(--btn-primary);
    color: white;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 5;
}

.coming-soon-img {
    width: 60%;
    height: auto;
    transition: transform 0.4s ease;
}

.coming-soon-img:hover {
    transform: scale(1.05);
}

.download-hero-card {
            border-top: 4px solid var(--accent-blue);
        }
        .download-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1.5rem;
            margin-top: 1.5rem;
        }
        .download-card {
            background: var(--bg-app-workspace);
            border: 1px solid var(--border-subtle);
            border-radius: var(--ui-radius-sm);
            padding: 1.5rem 1.25rem;
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .download-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-soft);
        }
        .download-card h3 {
            margin-top: 0;
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
            color: var(--text-main);
        }
        .download-card p {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-bottom: 1rem;
        }
        .download-card .main-download {
            display: block;
            width: 100%;
            padding: 0.6rem 0;
            text-align: center;
            font-size: 0.95rem;
        }
        .table-wrapper {
            overflow-x: auto;
            margin-top: 1rem;
        }
        .req-table, .legacy-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        .req-table th, .req-table td,
        .legacy-table th, .legacy-table td {
            padding: 0.85rem 1rem;
            text-align: left;
            border-bottom: 1px solid var(--border-subtle);
        }
        .req-table th, .legacy-table th {
            background-color: var(--bg-app-workspace);
            color: var(--text-main);
            font-weight: 600;
        }
        .req-table tr:last-child td, .legacy-table tr:last-child td {
            border-bottom: none;
        }
        .legacy-table td a {
            color: var(--accent-blue);
            text-decoration: none;
            font-weight: 500;
        }
        .legacy-table td a:hover {
            text-decoration: underline;
        }
        .supported-badge {
            background: #e6ffed;
            color: #47dc26;
            font-size: 0.75rem;
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-weight: 600;
            display: inline-block;
        }
        .unsupported-badge {
            background: #fee2e2;
            color: #dc2626;
            font-size: 0.75rem;
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-weight: 600;
            display: inline-block;
        }
        .header-flex {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

/* Animations */
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    .hero-content h1 {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        justify-content: space-between;
        padding: 1rem;
        position: relative;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-header);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    }

    .nav-links.active {
        max-height: 360px;
    }

    .nav-links a {
        padding: 1.1rem 1rem;
        font-size: 1rem;
        letter-spacing: normal;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 0;
        text-align: center;
        display: block;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-links .cta {
        margin: 0.75rem 1rem;
        width: calc(100% - 2rem);
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
        min-height: 50vh;
    }

    .hero.compact {
        padding: 1rem;
        min-height: 20vh;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content h3 {
        font-size: 1.15rem;
    }

    .main-large {
        font-size: 1.05rem;
    }

    .typewriter-line {
        display: block;
    }

    .slideshow-container, .showcase-image-container {
        max-width: 100%;
        margin-top: 1rem;
    }

    .highlights-grid, .evolution-features, .features-grid, 
    .features-grid-alt, .testimonials-grid, .benefits-grid, 
    .contact-info, .documentation-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .showcase-highlights, .comparison-section, .features, .about, .contact {
        padding: 2rem 1rem;
    }

    .about-section h2, .features h2, .testimonials h2 {
        font-size: 1.75rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .download-section {
        margin: 1rem;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .navbar { padding: 0.75rem; }
    .nav-logo { height: 36px; }
    .nav-links a { padding: 0.75rem; font-size: 0.9rem; }
    .hero { padding: 1.5rem 0.75rem; }
    .hero-content h1 { font-size: 1.65rem; }
    .feature-item, .testimonial-item, .benefit-item, .contact-item, .doc-item { padding: 1.25rem; }
    .download-section h2 { font-size: 1.2rem; }
}

.footer .social-links a:hover { opacity: 1; }