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

body {
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1.5;
    color: #222;
    background: #fff;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

/* GENERIC CONTAINER */
.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* ============================================================
   HEADER
============================================================ */
.header {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 36px;
    width: auto;
}

.logo span {
    font-size: 1.3rem;
    font-weight: 600;
}

.nav {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav a {
    font-weight: 500;
    color: #333;
    white-space: nowrap;
}

.nav a:hover {
    color: #000;
}

/* MOBILE HEADER FIX */
@media (max-width: 700px) {
    .header-inner {
        flex-direction: column;
        gap: 8px;
        padding: 14px 0;
    }

    .nav {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ============================================================
   HERO
============================================================ */
.hero {
    padding: 50px 0 60px;
    text-align: center;
}

.hero-inner h1 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.hero .subtitle {
    max-width: 600px;
    margin: 0 auto 26px;
    font-size: 1.1rem;
    color: #444;
}

.play-btn {
    display: inline-block;
    background: #0b57d0;
    color: #fff;
    padding: 12px 22px;
    border-radius: 6px;
    font-weight: 600;
    margin-bottom: 14px;
}

.play-btn:hover {
    background: #094db8;
}

.version,
.trial-info {
    color: #555;
    font-size: 0.95rem;
    margin-top: 6px;
}

/* HERO MOBILE */
@media (max-width: 700px) {
    .hero-inner h1 {
        font-size: 1.9rem;
    }

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

/* ============================================================
   FEATURES
============================================================ */
.features {
    padding: 50px 0;
    background: #f9f9f9;
}

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

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.feature p {
    font-size: 0.95rem;
    color: #555;
}

/* MOBILE GRID */
@media (max-width: 900px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ============================================================
   SCREENSHOTS STRIP
============================================================ */
.screenshots {
    padding: 50px 0;
}

.screenshots h2 {
    text-align: center;
    margin-bottom: 20px;
}

.screenshot-strip {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.screenshot-strip img {
    width: 230px;
    height: auto;
    border-radius: 8px;
    cursor: pointer;
    flex-shrink: 0;
}

/* ============================================================
   LIGHTBOX
============================================================ */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.lightbox.hidden {
    display: none;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 6px;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 26px;
    font-size: 38px;
    color: #fff;
    cursor: pointer;
}

.nav.left,
.nav.right {
    position: absolute;
    top: 50%;
    font-size: 42px;
    color: #fff;
    cursor: pointer;
    user-select: none;
    padding: 10px;
}

.nav.left { left: 40px; }
.nav.right { right: 40px; }

/* ============================================================
   PRICING
============================================================ */
.pricing {
    padding: 50px 0;
    text-align: center;
}

.pricing h2 {
    margin-bottom: 14px;
}

.price {
    font-size: 2rem;
    font-weight: 700;
}

.price-note {
    margin-top: 8px;
    color: #555;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
    padding: 30px 0;
    background: #fafafa;
    border-top: 1px solid #eee;
    margin-top: 40px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

/* FOOTER MOBILE */
@media (max-width: 700px) {
    .footer-inner {
        flex-direction: column;
        gap: 10px;
    }
}

