/**
 * Bondgenoot — pages/landing.css
 * /assets/css/pages/landing.css
 * Cluster D — Pakket D1 — Fase F066: Landing-page drie-vlaks
 *
 * Page-specifieke styles. Hero/Carousel/Accordion/Footer hebben hun
 * eigen component-CSS. Deze file voegt:
 *   - .lp-content (perkament-canvas tussen hero en footer)
 *   - features-grid + USP-rij + screenshots + counter
 *   - fade-in-on-scroll observer-classes
 */

/* ============ Body-page reset (overrule outgame's .og-main padding) ============ */

.page-landing .og-main {
    padding: 0 !important;
    max-width: none !important;
    margin: 0 !important;
}

/* Op landing willen we de hero direct tegen de header-bottom plakken,
   zonder content-card-margin */
.page-landing.layout-outgame {
    /* Body-bg blijft het donkere hout — hero ligt erbovenop */
}

/* ============ Content section (perkament canvas) ============ */

.lp-content {
    background:
        /* Subtiele perkament-vlekken */
        radial-gradient(ellipse 40% 30% at 20% 30%, var(--parchment-stain), transparent 70%),
        radial-gradient(ellipse 30% 20% at 80% 70%, var(--parchment-stain-dark), transparent 70%),
        /* Basis-perkament gradient */
        linear-gradient(180deg,
            var(--bg-parchment-1) 0%,
            var(--bg-parchment-2) 60%,
            var(--bg-parchment-3) 100%);
    color: var(--text-on-parchment);
    padding: var(--space-8) var(--space-5);
    position: relative;
    box-shadow:
        inset 0 12px 28px rgba(0, 0, 0, 0.30),
        inset 0 -10px 24px rgba(0, 0, 0, 0.20);
}

.lp-section {
    margin-bottom: var(--space-8);
}

.lp-section:last-child {
    margin-bottom: 0;
}

.lp-section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.lp-section-title {
    font-family: var(--font-display, 'Cinzel', Georgia, serif);
    font-weight: 700;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--gold-deep);
    text-align: center;
    margin: 0 0 var(--space-3);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
    letter-spacing: 0.02em;
}

.lp-section-lead {
    font-family: var(--font-content, 'Lora', Georgia, serif);
    font-style: italic;
    text-align: center;
    color: var(--text-on-parchment-muted, #6B5237);
    max-width: 640px;
    margin: 0 auto 36px;
    line-height: 1.55;
    font-size: 1.05rem;
}

.lp-section-lead a {
    color: var(--gold-deep);
    font-weight: 600;
}

/* ============ Features-grid ============ */

.lp-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-5);
}

.lp-feature-card {
    background: rgba(255, 250, 230, 0.55);
    border: 1px solid rgba(140, 103, 34, 0.30);
    border-radius: var(--radius-md, var(--radius-md));
    padding: 28px var(--space-5);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        0 2px 10px rgba(0, 0, 0, 0.10);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lp-feature-card:hover {
    transform: translateY(-3px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        0 8px 22px rgba(0, 0, 0, 0.18);
}

.lp-feature-icon {
    font-size: 2rem;
    margin-bottom: var(--space-3);
    color: var(--gold-deep);
    line-height: 1;
}

.lp-feature-card h3 {
    font-family: var(--font-display, 'Cinzel');
    font-weight: 600;
    color: var(--gold-deep);
    margin: 0 0 var(--space-2);
    font-size: 1.15rem;
}

.lp-feature-card p {
    margin: 0;
    color: var(--text-on-parchment);
    line-height: 1.55;
    font-size: 0.95rem;
}

/* ============ USP-rij ============ */

.lp-usp-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-3) var(--space-5);
    list-style: none;
    margin: 0;
    padding: var(--space-5) var(--space-4);
    background: rgba(140, 103, 34, 0.10);
    border-top: 1px solid rgba(140, 103, 34, 0.25);
    border-bottom: 1px solid rgba(140, 103, 34, 0.25);
}

.lp-usp-list li {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--gold-deep);
    font-size: 0.95rem;
}

.lp-usp-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--bg-deepest);
    font-weight: 800;
    font-size: 0.85rem;
}

/* ============ Screenshots placeholder ============ */

.lp-screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-5);
}

.lp-screenshot-item {
    text-align: center;
}

.lp-screenshot-frame {
    aspect-ratio: 16 / 10;
    width: 100%;
    background:
        repeating-linear-gradient(
            45deg,
            rgba(140, 103, 34, 0.10) 0,
            rgba(140, 103, 34, 0.10) 12px,
            rgba(140, 103, 34, 0.04) 12px,
            rgba(140, 103, 34, 0.04) 24px),
        linear-gradient(180deg,
            rgba(255, 245, 220, 0.4),
            rgba(196, 162, 92, 0.18));
    border: 2px dashed rgba(140, 103, 34, 0.45);
    border-radius: var(--radius-md, var(--radius-md));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-deep);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: var(--space-3);
}

.lp-screenshot-placeholder-label {
    background: rgba(255, 255, 255, 0.5);
    padding: 6px 14px;
    border-radius: 4px;
    color: var(--gold-deep);
}

.lp-screenshot-caption {
    margin: 0;
    color: var(--text-on-parchment-muted, #6B5237);
    font-size: 0.9rem;
    font-style: italic;
}

/* ============ Live counter ============ */

.lp-counter {
    background:
        radial-gradient(ellipse 60% 50% at 50% 50%,
            rgba(140, 103, 34, 0.15) 0%,
            transparent 70%);
    text-align: center;
}

.lp-counter-inner {
    background: linear-gradient(180deg,
        rgba(26, 14, 6, 0.92) 0%,
        rgba(15, 7, 3, 0.95) 100%);
    border: 1px solid var(--gold-deep);
    border-radius: var(--radius-md, var(--radius-md));
    padding: 40px var(--space-5);
    max-width: 720px;
    margin: 0 auto;
    color: var(--text-on-dark);
    box-shadow:
        inset 0 1px 0 rgba(212, 166, 86, 0.18),
        0 4px 18px rgba(0, 0, 0, 0.4);
}

.lp-counter-text {
    margin: 0 0 var(--space-5);
    font-family: var(--font-display, 'Cinzel', Georgia, serif);
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    line-height: 1.4;
    color: var(--text-on-dark);
}

.lp-counter-label {
    color: var(--text-on-dark-muted);
}

.lp-counter-number {
    color: var(--gold-bright);
    font-weight: 700;
    font-size: 1.4em;
    text-shadow: 0 0 16px rgba(212, 166, 86, 0.4);
}

/* FIX-016 A: .lp-counter-cta verwijderd. De primaire registreer-CTA leeft
   nu in de carousel-empty-state direct boven het counter-blok. Het counter-
   blok zelf is bewust pure thematische statement geworden. */

/* ============ Fade-in on scroll ============ */

[data-fade-in] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-fade-in].is-in {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    [data-fade-in] {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .lp-feature-card { transition: none; }
}

/* ============ Mobile tweaks ============ */

@media (max-width: 720px) {
    .lp-content { padding: 40px var(--space-4); }
    .lp-section { margin-bottom: var(--space-7); }
    .lp-features-grid,
    .lp-screenshots-grid { gap: var(--space-4); }
    .lp-counter-inner { padding: var(--space-6) var(--space-4); }
}

/* ============ Testimonials (F205) ============ */

.lp-testimonials-note {
    display: inline-block;
    font-style: italic;
    font-size: 0.85em;
    color: var(--text-on-parchment-muted, #6B5237);
}

.lp-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-5);
}

.lp-testimonial-card {
    position: relative;
    margin: 0;
    background: rgba(255, 250, 230, 0.62);
    border: 1px solid rgba(140, 103, 34, 0.30);
    border-radius: var(--radius-md);
    padding: 28px var(--space-5) var(--space-5);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        0 2px 10px rgba(0, 0, 0, 0.10);
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.lp-testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display, 'Cinzel');
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--bg-deep, #1A0F0A);
    background: linear-gradient(135deg, var(--gold-pale) 0%, var(--gold-bright) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.lp-testimonial-quote {
    margin: 0;
    color: var(--text-on-parchment);
    font-family: var(--font-content, 'Lora', Georgia, serif);
    font-style: italic;
    line-height: 1.6;
    font-size: 1rem;
}

.lp-testimonial-mark {
    color: var(--gold-deep);
    font-size: 1.4em;
    font-weight: 700;
    margin-right: 2px;
}

.lp-testimonial-cite {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    font-style: normal;
}

.lp-testimonial-naam {
    font-family: var(--font-display, 'Cinzel');
    font-weight: 600;
    color: var(--gold-deep);
    font-size: 0.95rem;
}

.lp-testimonial-rol {
    color: var(--text-on-parchment-muted, #6B5237);
    font-size: 0.85rem;
}

@media (max-width: 720px) {
    .lp-testimonials-grid { gap: var(--space-4); }
}
