/* styles.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #0f172a;
    color: #e2e8f0;
    line-height: 1.6;
    animation-name: roll;
    animation-duration: 2s;
    animation-iteration-count: 1;                 /* Nur einmal drehen */
    animation-timing-function: ease-in-out;
}
/* @keyframes roll {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
} */
.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 32px;
}
/* Navigation */
.navbar {
    background-color: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #1e293b;
    height: 80px;
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 1.8rem;
    font-weight: 700;
    color: #f8fafc;
}

.logo i {
    color: #3b82f6;
}
/* Decreased font size of the span by 30% */
.logo span {
    font-size: 1.6rem;                 /* Reduced from 1.8rem by 30% */
    width: 400px;
    padding: 12px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: #3b82f6;
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

.btn-outline {
    background: transparent;
    border: 2px solid #3b82f6;
    color: #3b82f6;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: rgba(59, 130, 246, 0.1);
}

.btn-primary {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}
/* Hero Section */
.hero {
    padding: 150px 0 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.hero-content {
    flex: 1;
    margin: 16px 16px 16px 16px;
    padding-left: 45px;
}

.hero h1 {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(to right, #f8fafc, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: #94a3b8;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}
/* Hero Image */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}
/* Features Section */
.features {
    padding: 100px 0;
    background-color: #1e293b;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: #94a3b8;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 50px;
}

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

.feature-card {
    background: rgba(30, 41, 59, 0.7);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #334155;
    min-height: 320px;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-color: #3b82f6;
}

.feature-card i {
    font-size: 3rem;
    color: #3b82f6;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: #94a3b8;
}
/* Screenshots Section */
.screenshots {
    padding: 100px 0;
    background-color: #0f172a;
}

.screenshots h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.screenshots p {
    text-align: center;
    color: #94a3b8;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 50px;
}

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

.screenshot-card {
    background: rgba(30, 41, 59, 0.7);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid #334155;
}

.screenshot-card:hover {
    transform: translateY(-10px);
}

.screenshot-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.3rem;
}

.screenshot-card p {
    padding: 0 20px 20px;
    color: #94a3b8;
}
/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    color: #94a3b8;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}
/* Footer */
.footer {
    background-color: #0a101f;
    padding: 70px 0 30px;
    border-top: 1px solid #1e293b;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #f8fafc;
}

.footer-logo i {
    color: #3b82f6;
}

a {
    margin-bottom: 20px;
    color: #f8fafc;
}

.footer-links {
    display: flex;
    gap: 50px;
}

.footer-links div h4 {
    margin-bottom: 20px;
    color: #f8fafc;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #3b82f6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #1e293b;
    color: #64748b;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    color: #94a3b8;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #3b82f6;
}

.download-hero {
    padding: 128px 0 44px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.download-hero .container,
.download-options .container {
    max-width: 1184px;
}

.download-hero-content {
    max-width: 760px;
}

.download-hero h1 {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 12px;
    background: linear-gradient(to right, #f8fafc, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.download-hero p {
    color: #94a3b8;
    font-size: 1.1rem;
}

.download-options {
    padding: 44px 0 64px;
}

.download-options h2 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.download-options .section-subtitle {
    font-size: 1rem;
    margin-bottom: 28px;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    max-width: 1184px;
    margin: 0 auto;
}

.download-card {
    display: flex;
    flex-direction: column;
    text-align: left;
    min-height: 0;
    padding: 24px;
}

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

.download-card > i {
    align-self: flex-start;
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.download-card .download-text {
    color: #94a3b8;
    /*font-size: 0.9rem;*/
    min-height: 68px;
    padding-bottom: 12px;
}

.download-status {
    color: #cbd5e1;
    font-size: 0.85rem;
    min-height: 32px;
    margin-bottom: 12px;
    padding-top: 20px;
}

.download-card .btn-primary,
.download-card .btn-outline {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto 18px 0;
    text-decoration: none;
    width: 100%;
}

.download-card .btn-primary i,
.download-card .btn-outline i {
    font-size: 1rem;
    margin-bottom: 0;
}

.download-card .btn-outline[aria-disabled="true"] {
    cursor: not-allowed;
    opacity: 0.55;
}

.download-highlights {
    color: #cbd5e1;
    font-size: 0.86rem;
    line-height: 1.45;
    margin: 0;
    padding-left: 18px;
    height: 100%;
}

.download-highlights li {
    margin-bottom: 4px;
}
/* Responsive Design */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    .hero-content {
        margin-bottom: 50px;
    }
    .hero-buttons {
        justify-content: center;
    }
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    .footer-links {
        gap: 30px;
    }
    .download-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    .hero h1 {
        font-size: 1.8rem;
    }
    .hero-content {
        padding-left: 24px;
        padding-right: 24px;
    }
    .mockup-placeholder-top {
        width: min(92vw, 500px);
        height: auto;
        aspect-ratio: 5 / 3;
    }
    .mockup-placeholder {
        margin-right: 0;
    }
    .features-grid, .screenshots-grid {
        grid-template-columns: 1fr;
    }
    .download-grid {
        grid-template-columns: 1fr;
    }
    .download-hero {
        padding: 96px 0 16px;
    }
    .download-hero h1 {
        font-size: 1.8rem;
    }
    .download-options {
        padding: 20px 0 44px;
    }
    .download-options .section-subtitle {
        margin-bottom: 12px;
    }
    .download-card {
        padding: 20px;
    }
    .download-card .download-text,
    .download-status {
        min-height: 0;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Screnshot Images */
.screenschot-card-h3 {
    text-align: center;
}

.mockup-placeholder-top {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 16px;
    border-width: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #334155;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    width: 500px;
    height: 300px;
}

.mockup-placeholder {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 16px;
    border-width: 0px;                 /* border: 1px solid #334155; */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;                 /* width: 336px */
    height: 250px;
    width: 100%;
    margin-right: 64px;
}

.image-placeholder {
    color: #64748b;
    font-size: 1.2rem;
    text-align: center;
    padding: 20px;
    width: 100%;
    height: 100%;
    object-fit: contain;                 /* cover; */
    border: 0px;
}
/* style="width: 100%; height: auto; object-fit: contain;" */
.image-screenshot-top {
    width: 100%;
    height: 100%;                 /* auto ; 100%; */
    object-fit: cover;                 /* contain; */
    padding: 0px;
}
/* width: 100%; height: 100%; object-fit: cover; */
.image-screenshot {
    width: 100%;
    height: 100%;                 /* auto ; 100%; */
    object-fit: cover;                 /* contain; */
    padding: 0px;
}

.is-lightbox-trigger {
    cursor: zoom-in;
}

.is-lightbox-trigger:focus-visible {
    outline: 3px solid #93c5fd;
    outline-offset: -3px;
}

body.lightbox-open {
    overflow: hidden;
}

.screenshot-lightbox[hidden] {
    display: none;
}

.screenshot-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    background: rgba(2, 6, 23, 0.86);
    backdrop-filter: blur(8px);
}

.screenshot-lightbox-frame {
    max-width: min(1180px, 94vw);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.screenshot-lightbox-image {
    display: block;
    max-width: 100%;
    max-height: calc(90vh - 58px);
    object-fit: contain;
    border: 1px solid #334155;
    border-radius: 12px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
    background: #0f172a;
}

.screenshot-lightbox-caption {
    margin: 0;
    color: #cbd5e1;
    font-size: 0.95rem;
    text-align: center;
}

.screenshot-lightbox-close {
    position: fixed;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    border: 1px solid #475569;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.92);
    color: #f8fafc;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

.screenshot-lightbox-close:hover,
.screenshot-lightbox-close:focus-visible {
    background: #1d4ed8;
    outline: none;
}

.icon-mcpstudio {
    width: 62px;
    height: 62px;
    object-fit: cover;
    border-radius: 16px;
    border-width: 0px;                 /* border: 1px solid #334155; */
}

.stripe-button {
    width: 60px;
    height: 24px;
    text-align: left;
}
/* Tools */
.spacer_100p {
    width: 100%;
}

.spacer_30p {
    width: 30%;
}
/* Get Started Pages */
.getstarted-page {
    padding: 120px 0 80px;
    background: linear-gradient(180deg, #1e293b 0%, #172338 100%);
}

.getstarted-page .container {
    max-width: 980px;
}

.getstarted-hero {
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid #334155;
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 28px;
}

.getstarted-kicker {
    color: #93c5fd;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.82rem;
}

.getstarted-hero h1 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 1.8rem;
    line-height: 1.25;
}

.getstarted-meta {
    color: #94a3b8;
    font-size: 0.95rem;
}

.getstarted-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.getstarted-card {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid #334155;
    border-radius: 12px;
    padding: 18px;
}

.getstarted-card h2 {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 40px;
}

.getstarted-toc {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.getstarted-toc a {
    display: inline-block;
    background: rgba(30, 41, 59, 0.9);
    border: 1px solid #3b82f6;
    color: #dbeafe;
    border-radius: 999px;
    padding: 7px 12px;
    text-decoration: none;
    font-size: 0.9rem;
}

.getstarted-toc a:hover {
    background: #1d4ed8;
    color: #eff6ff;
}

.getstarted-section {
    background: rgba(15, 23, 42, 0.55);
    border: 1px solid #334155;
    border-radius: 12px;
    padding: 22px;
    margin-bottom: 16px;
}

.getstarted-section h2 {
    text-align: left;
    font-size: 1.45rem;
    margin-bottom: 10px;
}

.getstarted-section h3 {
    margin-top: 16px;
    margin-bottom: 8px;
    font-size: 1.1rem;
    color: #e2e8f0;
}

.getstarted-list {
    padding-left: 20px;
}

.getstarted-list li {
    margin-bottom: 8px;
}

.getstarted-steps {
    padding-left: 20px;
}

.getstarted-steps li {
    margin-bottom: 12px;
}

.getstarted-tip, .getstarted-warning {
    border-radius: 10px;
    padding: 12px 14px;
    margin-top: 14px;
    font-size: 0.96rem;
}

.getstarted-tip {
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.6);
    color: #d1fae5;
}

.getstarted-warning {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.6);
    color: #fde68a;
}

.getstarted-code {
    background: #0b1220;
    border: 1px solid #334155;
    border-radius: 10px;
    padding: 14px;
    overflow-x: auto;
    margin-top: 10px;
}

.getstarted-code code {
    color: #cbd5e1;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 0.92rem;
}

@media (max-width: 768px) {
    .getstarted-page {
        padding: 105px 0 60px;
    }
    .getstarted-grid {
        grid-template-columns: 1fr;
    }
    .getstarted-hero h1 {
        font-size: 1.8rem;
    }
}
