/* Landing — 7-section scrolling homepage */

/* Hero section */
.hero-v3 {
    text-align: center;
    padding: 3rem 1.5rem 2rem;
}

.hero-v3 .hero-logo {
    width: 100px;
    height: auto;
    margin-bottom: 1rem;
}

.hero-v3 h1 {
    color: var(--text);
    font-size: 2.2rem;
    margin: 0 0 0.6rem;
    line-height: 1.2;
    letter-spacing: 1px;
}

.hero-v3 h1 .accent {
    color: var(--cyan);
}

.hero-v3 .hero-sub {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 600px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}

.hero-v3 .hero-below-cta {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.72rem;
    margin-top: 0.75rem;
}

/* CTA button (gold/orange angled) */
.cta-primary {
    display: inline-block;
    padding: 0.6rem 2rem;
    background: linear-gradient(135deg, transparent 8px, rgba(255, 167, 38, 0.15) 8px);
    clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
    border: none;
    border-bottom: 2px solid var(--orange);
    color: var(--orange);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    font-family: inherit;
    transition: background var(--transition);
}

.cta-primary:hover {
    background: linear-gradient(135deg, transparent 8px, rgba(255, 167, 38, 0.25) 8px);
    color: var(--orange);
}

/* Showcase section (screenshot pairs) */
.showcase-pair {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.showcase-caption {
    width: 35%;
    position: relative;
    padding: 1rem;
    background: rgba(0, 212, 255, 0.015);
    backdrop-filter: blur(2px);
}

.showcase-caption::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    border: 1px solid rgba(0, 212, 255, 0.06);
}

.showcase-caption .tl,
.showcase-caption .tr,
.showcase-caption .bl,
.showcase-caption .br {
    position: absolute;
    width: 12px;
    height: 12px;
    pointer-events: none;
}

.showcase-caption .tl { top: 0; left: 0; border-top: 1px solid rgba(0, 212, 255, 0.35); border-left: 1px solid rgba(0, 212, 255, 0.35); }
.showcase-caption .tr { top: 0; right: 0; border-top: 1px solid rgba(0, 212, 255, 0.35); border-right: 1px solid rgba(0, 212, 255, 0.35); }
.showcase-caption .bl { bottom: 0; left: 0; border-bottom: 1px solid rgba(0, 212, 255, 0.35); border-left: 1px solid rgba(0, 212, 255, 0.35); }
.showcase-caption .br { bottom: 0; right: 0; border-bottom: 1px solid rgba(0, 212, 255, 0.35); border-right: 1px solid rgba(0, 212, 255, 0.35); }

.showcase-caption .quote {
    color: var(--cyan);
    font-size: 0.85rem;
    font-style: italic;
    margin-bottom: 0.4rem;
}

.showcase-caption .desc {
    color: var(--text-muted);
    font-size: 0.75rem;
    line-height: 1.4;
}

.showcase-result {
    width: 65%;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 255, 0.15);
}

.showcase-result img {
    width: 100%;
    display: block;
}

/* Game systems grid */
.systems-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.system-card-full {
    grid-column: 1 / -1;
}

.systems-bridge {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 1.2rem;
    text-align: center;
    line-height: 1.5;
}

.systems-bridge .dim {
    color: rgba(255, 255, 255, 0.3);
}

/* How it works steps */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-num {
    min-width: 2.2rem;
    height: 2.2rem;
    background: rgba(0, 212, 255, 0.1);
    color: var(--cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.step-item .step-label {
    font-weight: 600;
    color: var(--text);
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.step-item .step-desc {
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.5;
}

/* Platform bar */
.platform-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.platform-badge {
    padding: 0.3rem 0.8rem;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
    color: var(--cyan);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Testimonials */
.testimonials {
    display: flex;
    gap: 1rem;
}

.testimonial-card {
    flex: 1;
}

.testimonial-card .quote-text {
    color: #ccc;
    font-size: 0.8rem;
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.testimonial-card .quote-attr {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.7rem;
}

/* Homepage sections shared */
.homepage-section {
    padding: 0 1.5rem 2rem;
}

.homepage-section .section-desc {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 1.2rem;
    line-height: 1.5;
}

/* Final CTA */
.final-cta {
    text-align: center;
    padding: 0 1.5rem 3rem;
}

.final-cta h2 {
    color: var(--text);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.final-cta .sub {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 1.2rem;
}

.final-cta .secondary-link {
    display: block;
    margin-top: 0.75rem;
    color: var(--text-muted);
    font-size: 0.75rem;
    text-decoration: none;
}

.final-cta .secondary-link:hover {
    color: var(--cyan);
}

/* Community (shared with community page) */
.community-layout {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    margin-top: 2rem;
}

.community-info { flex: 1; }
.community-info h2 { margin-top: 0; }
.community-info ul { padding-left: 1.5rem; margin-top: 0.5rem; }
.community-info li { margin-bottom: 0.4rem; line-height: 1.6; }

.community-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.community-widget {
    display: flex;
    justify-content: center;
}

.community-widget iframe {
    border-radius: var(--radius);
    border: 1px solid var(--cyan-dim);
}

/* Get-started example prompts */
.example-prompts {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--cyan-hairline);
}

.example-prompts h3 {
    color: var(--cyan);
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.prompt-item {
    background: rgba(0, 8, 20, 0.85);
    border-left: 2px solid var(--cyan);
    padding: 0.4rem 0.8rem;
    margin-bottom: 0.5rem;
    color: var(--orange);
    font-size: 0.82rem;
    font-family: 'Consolas', 'Monaco', monospace;
    font-style: italic;
}

.example-prompts .prompt-note {
    color: var(--text-muted);
    font-size: 0.72rem;
    margin-top: 0.5rem;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-v3 h1 {
        font-size: 1.6rem;
    }

    .showcase-pair {
        flex-direction: column;
    }

    .showcase-caption,
    .showcase-result {
        width: 100%;
    }

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

    .system-card-full {
        grid-column: 1;
    }

    .testimonials {
        flex-direction: column;
    }

    .community-layout {
        flex-direction: column;
    }

    .community-widget iframe {
        width: 100%;
        max-width: 350px;
    }
}
