/* ═══════════════════════════════════════════════════════════════
   OneManager Landing Page — Design System
   onemanager.art · Elevated over one-o-one.cz/one
   Hanken Grotesk + Inter
   ═══════════════════════════════════════════════════════════════ */

/* ── Design Tokens ──────────────────────────────────────────── */
:root {
    --land-void:      #030207;
    --land-ink:       #0B0620;
    --land-surface:   #F2F1F8;
    --land-white:     #FFFFFF;
    --land-violet:    #1E0F6B;
    --land-electric:  #3B63FF;
    --land-pulse:     #6C47FF;
    --land-mid:       #7B5EA7;
    --land-gold:      #C9A84C;
    --land-mint:      #1FCFA0;
    --land-border:    rgba(255,255,255,0.07);
    --land-border-dark: rgba(11,6,32,0.09);

    --land-font-display:  "Hanken Grotesk", system-ui, sans-serif;
    --land-font-editorial:"Hanken Grotesk", system-ui, sans-serif;
    --land-font-body:     "Inter", system-ui, sans-serif;

    --land-text-hero:    clamp(2.75rem, 7vw + 1rem, 8rem);
    --land-text-section: clamp(2rem, 4vw + 1rem, 4rem);
    --land-text-card:    clamp(1.25rem, 2vw, 1.75rem);
    --land-text-label:   0.6875rem;

    --land-space-sm:  clamp(1rem,    2vw,  1.5rem);
    --land-space-md:  clamp(2rem,    4vw,  3rem);
    --land-space-lg:  clamp(3.5rem,  8vw,  6rem);
    --land-space-xl:  clamp(5rem,   12vw,  9rem);
    --land-max-w:     82rem;

    --land-ease-enter:  cubic-bezier(0.16, 1, 0.3, 1);
    --land-ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
    --land-ease-out:    cubic-bezier(0.25, 1, 0.5, 1);
    --land-dur-fast:    150ms;

    --land-bg-section:    #ffffff;
    --land-bg-alt:        #f5f7fa;
    --land-navy:          #012169;
    --land-blue:          #003087;
    --land-company-blue:  #009cde;
    --land-dur-base:    300ms;
    --land-dur-slow:    600ms;
}

/* Override onemanager.css heading color — landing sections control color via parent */
.land-shell h1, .land-shell h2, .land-shell h3,
.land-shell h4, .land-shell h5, .land-shell h6 { color: inherit; }
.land-shell p { color: inherit; }
.land-shell a { color: inherit; }
/* Pill buttons — color + hover specificity beat .land-shell a { color: inherit } */
.land-shell .land-btn-pill-dark    { color: var(--land-white); }
.land-shell .land-btn-pill-light   { color: var(--land-ink); }
.land-shell .land-btn-pill-outline { color: var(--land-white); }
.land-shell .land-btn-pill-dark:hover    { color: var(--land-white); background: var(--land-blue); transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,48,135,0.40); }
.land-shell .land-btn-pill-light:hover   { color: var(--land-ink);   opacity: 0.88; transform: translateY(-3px); box-shadow: 0 8px 24px rgba(255,255,255,0.22); }
.land-shell .land-btn-pill-outline:hover { color: var(--land-white); border-color: var(--land-white); background: rgba(255,255,255,0.12); transform: translateY(-2px); }

/* ── Reset for landing sections ─────────────────────────────── */
.land-shell {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.land-shell main {
    flex: 1;
}
.land-shell section {
    width: 100%;
    overflow: hidden;
}
.land-section-inner {
    max-width: var(--land-max-w);
    margin: 0 auto;
    padding: var(--land-space-lg) var(--land-space-md);
}

/* Shared artist photo treatment */
.land-fond-card img,
.land-segment-photo img,
.land-fan-masonry img,
.land-swipe-card-photo {
    filter: grayscale(100%) contrast(1.08) brightness(0.95);
    will-change: transform;
}

/* ── Navigation ─────────────────────────────────────────────── */
.land-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0 var(--land-space-md);
    color: var(--land-white);
    transition: background var(--land-dur-base) var(--land-ease-smooth),
                backdrop-filter var(--land-dur-base) var(--land-ease-smooth);
}
.land-nav.scrolled {
    background: rgba(5, 4, 8, 0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

/* Landing top-bar — always white, PayPal-style */
.land-top-bar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background: #ffffff !important;
    border-bottom: 1px solid #e2e4e9 !important;
    z-index: 1000 !important;
}
.land-top-bar .logo,
.land-top-bar .nav-dropdown-toggle,
.land-top-bar .nav-link,
.land-top-bar .mobile-menu-btn { color: #0d0d0d !important; }
.land-top-bar .logo span { color: var(--land-electric) !important; }
.land-top-bar .btn-ghost { color: #0d0d0d !important; border-color: #c0c0c8 !important; }
.land-top-bar .land-nav-ghost { color: #0d0d0d !important; opacity: 1 !important; }
.land-top-bar.scrolled {
    box-shadow: 0 2px 12px rgba(0,0,0,0.08) !important;
}
/* Landing nav — full-width dropdowns */
.land-top-bar .nav-dropdown .nav-dropdown-menu,
.land-top-bar .nav-dropdown .nav-dropdown-menu--wide {
    position: fixed !important;
    top: var(--nav-height) !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background: #ffffff !important;
    border-radius: 0 !important;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    border-bottom: 1px solid #e2e4e9 !important;
    box-shadow: 0 8px 24px rgba(0,0,0,.08) !important;
    padding: var(--space-5) clamp(1rem, 2vw, 2.5rem) !important;
    min-width: unset !important;
}
.land-top-bar .nav-dropdown-menu a,
.land-top-bar .nav-dropdown-menu--wide a { color: #333333 !important; }
.land-top-bar .nav-dropdown-menu a:hover,
.land-top-bar .nav-dropdown-menu--wide a:hover { background: #f5f5f5 !important; color: #000 !important; }
.land-top-bar .nav-dropdown-separator { border-color: #e2e4e9; }
/* Landing nav is always white — pin hover to light gray regardless of dark mode */
.land-top-bar .nav-dropdown-toggle:hover,
.land-top-bar .nav-dropdown.open .nav-dropdown-toggle,
.land-top-bar .nav-link:hover {
    background: #f0f2f5 !important;
    color: #0d0d0d !important;
}
/* Login + Sign Up links in top bar — mobile only */
.land-topbar-login,
.land-topbar-signup {
    display: none;
}
@media (max-width: 640px) {
    /* Logo pushes all right-side items to the right edge */
    .land-top-bar .logo { margin-right: auto; }
    .land-topbar-login {
        display: inline-flex;
        align-items: center;
        margin-right: 0.5rem;
        font-family: var(--land-font-body);
        font-size: 0.875rem;
        font-weight: 600;
        color: #0d0d0d !important;
        text-decoration: none;
        white-space: nowrap;
    }
    .land-topbar-login:hover { opacity: 0.7; }
    .land-topbar-signup {
        display: inline-flex;
        align-items: center;
        margin-right: 0.75rem;
        padding: 0.375rem 0.875rem;
        font-family: var(--land-font-body);
        font-size: 0.8rem;
        font-weight: 700;
        color: #ffffff !important;
        background: var(--land-electric);
        border-radius: 9999px;
        text-decoration: none;
        white-space: nowrap;
    }
    .land-topbar-signup:hover { opacity: 0.85; }
}

/* Landing mobile: hide auth from top bar; hamburger follows signup */
@media (max-width: 640px) {
    .land-top-bar .top-actions { display: none !important; }
    .land-top-bar .mobile-menu-btn { margin-left: 0; }
}

/* Mobile overlay — auth section (hidden on desktop) */
.land-mobile-auth { display: none; }
@media (max-width: 640px) {
    .land-mobile-auth {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        padding-top: 1.25rem;
        border-top: 1px solid #e2e4e9;
        margin-top: 0.75rem;
    }
    .land-mobile-auth .nav-link {
        padding: 0.75rem 0;
        font-size: 1.05rem;
        font-weight: 700;
        display: block;
        width: 100%;
        color: #0d0d0d !important;
    }
    .land-mobile-auth-cta {
        display: flex !important;
        justify-content: center !important;
        width: 100%;
        padding: 0.875rem 1.5rem;
        text-align: center;
        background: var(--land-electric) !important;
        color: #ffffff !important;
        border-radius: 9999px;
        font-weight: 600;
    }
}

/* Mobile overlay — undo landing desktop overrides so onemanager.css handles everything */
@media (max-width: 640px) {
    /* Reset landing desktop full-width dropdown positioning */
    .land-top-bar .top-nav .nav-dropdown .nav-dropdown-menu,
    .land-top-bar .top-nav .nav-dropdown .nav-dropdown-menu--wide {
        position: static !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        width: auto !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        background: transparent !important;
    }
    /* Force dark text — overlay bg is always #fff, regardless of dark mode */
    .land-top-bar .top-nav .nav-dropdown-toggle,
    .land-top-bar .top-nav .nav-link,
    .land-top-bar .top-nav .nav-dropdown-menu a,
    .land-top-bar .top-nav .nav-dropdown-menu--wide a {
        color: #0d0d0d !important;
    }
    .land-top-bar .top-nav .nav-dropdown-toggle {
        background: transparent !important;
    }
    .land-top-bar .top-nav .nav-dropdown.open .nav-dropdown-toggle,
    .land-top-bar .top-nav .nav-dropdown-toggle:hover {
        background: #f0f2f5 !important;
        color: #0d0d0d !important;
    }
}
.land-nav-inner {
    max-width: var(--land-max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    height: 64px;
    gap: var(--land-space-md);
}
.land-logo {
    font-family: var(--land-font-display);
    font-weight: 900;
    font-size: 1.25rem;
    color: var(--land-white);
    text-decoration: none;
    letter-spacing: -0.02em;
    flex-shrink: 0;
}
.land-logo-art { color: var(--land-company-blue); }
.land-nav-links {
    display: flex;
    gap: var(--land-space-sm);
    margin-left: auto;
}
.land-nav-link {
    font-family: var(--land-font-body);
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: color var(--land-dur-fast);
}
.land-nav-link:hover { color: var(--land-white); }
.land-nav-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-left: var(--land-space-sm);
}
.land-nav-ghost {
    font-family: var(--land-font-body);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--land-white);
    text-decoration: none;
    transition: color var(--land-dur-fast), opacity var(--land-dur-fast);
    opacity: 0.9;
}
.land-nav-ghost:hover { opacity: 1; }
.land-nav-cta {
    font-family: var(--land-font-body);
    font-size: 0.875rem;
    font-weight: 600;
    background: var(--land-electric);
    color: var(--land-white);
    padding: 0.45rem 1.1rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: background var(--land-dur-fast), transform var(--land-dur-fast);
}
.land-nav-cta:hover {
    background: var(--land-pulse);
    transform: translateY(-1px);
}
.land-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: auto;
}
.land-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--land-white);
    border-radius: 2px;
    transition: transform var(--land-dur-base), opacity var(--land-dur-base);
}

/* Mobile drawer */
.land-mobile-drawer {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--land-void);
    z-index: 999;
    padding: 5rem var(--land-space-md) var(--land-space-md);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--land-dur-base) var(--land-ease-smooth);
}
.land-mobile-drawer.open {
    opacity: 1;
    pointer-events: auto;
}
.land-mobile-drawer nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.land-mobile-drawer nav a {
    font-family: var(--land-font-display);
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color var(--land-dur-fast);
}
.land-mobile-drawer nav a:hover { color: var(--land-white); }
.land-mobile-cta {
    color: var(--land-electric) !important;
}

@media (max-width: 768px) {
    .land-nav-links, .land-nav-actions { display: none; }
    .land-hamburger { display: flex; }
    .land-mobile-drawer { display: block; }
}

/* ── Nav Dropdowns ───────────────────────────────────────────── */
.land-nav-dropdown { position: relative; }

.land-nav-tab {
    font-family: var(--land-font-body);
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.25rem 0;
    transition: color var(--land-dur-fast);
    letter-spacing: 0;
    white-space: nowrap;
}
.land-nav-tab:hover,
.land-nav-dropdown.open .land-nav-tab { color: var(--land-white); }

.land-nav-chevron {
    transition: transform var(--land-dur-base) var(--land-ease-smooth);
}
.land-nav-dropdown.open .land-nav-chevron { transform: rotate(180deg); }

.land-nav-panel {
    display: none;
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    min-width: 220px;
    background: rgba(5,4,8,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 12px;
    padding: 1.25rem;
    z-index: 200;
}
.land-nav-dropdown.open .land-nav-panel { display: block; }

.land-nav-panel-section { margin-bottom: 0.75rem; }

.land-nav-panel-title {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: rgba(255,255,255,0.35);
    margin-bottom: 0.6rem;
}

.land-nav-panel a {
    display: block;
    padding: 0.35rem 0;
    color: rgba(255,255,255,0.72);
    font-family: var(--land-font-body);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color var(--land-dur-fast);
}
.land-nav-panel a:hover { color: var(--land-white); }

.land-nav-panel-cta {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.land-panel-cta-btn {
    display: inline-block;
    background: var(--land-electric);
    color: var(--land-white) !important;
    padding: 0.45rem 1rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: background var(--land-dur-fast);
}
.land-panel-cta-btn:hover { background: var(--land-pulse) !important; }

.land-panel-ghost-btn {
    display: inline-block;
    color: rgba(255,255,255,0.65) !important;
    padding: 0.3rem 0;
    font-size: 0.8125rem;
    text-decoration: none;
    text-align: center;
    transition: color var(--land-dur-fast);
}
.land-panel-ghost-btn:hover { color: var(--land-white) !important; }

/* Persona pill — PayPal-style, inverted for dark hero background */
.land-hero .persona-toggle {
    display: flex;
    padding: 0;
    gap: 0;
    width: fit-content;
    height: 2.5rem;
    border-radius: 3.5rem;
    border: 2px solid rgba(255, 255, 255, 0.80);
    background: transparent;
    margin: 0 auto 1rem;
    overflow: hidden;
    animation: om-pill-entry 0.7s cubic-bezier(0.37, 0.34, 0.26, 0.9) 0.5s both;
}
.land-hero .persona-tab {
    display: flex;
    align-items: center;
    height: 100%;
    white-space: nowrap;
    cursor: pointer;
    border-radius: 6.5rem;
    background-color: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.70);
    font-family: var(--land-font-display);
    font-weight: 700;
    font-size: 0.875rem;
    padding: 0 1rem;
    transition: none;
    box-shadow: none;
}
.land-hero .persona-tab[aria-selected="true"] {
    background-color: rgba(255, 255, 255, 0.92);
    color: #000;
    box-shadow: none;
}

/* ── Footer ──────────────────────────────────────────────────── */
.land-footer {
    background: var(--land-void);
    color: rgba(255,255,255,0.6);
    font-family: var(--land-font-body);
    border-top: 1px solid var(--land-border);
}
.land-footer-inner {
    max-width: var(--land-max-w);
    margin: 0 auto;
    padding: var(--land-space-lg) var(--land-space-md) var(--land-space-md);
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--land-space-lg);
}
.land-footer-brand p {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    max-width: 22rem;
    line-height: 1.6;
}
.land-footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--land-space-md);
}
.land-footer-links div {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.land-footer-links strong {
    color: var(--land-white);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.25rem;
}
.land-footer-links a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color var(--land-dur-fast);
}
.land-footer-links a:hover { color: var(--land-white); }
.land-footer-bottom {
    max-width: var(--land-max-w);
    margin: 0 auto;
    padding: var(--land-space-sm) var(--land-space-md);
    border-top: 1px solid var(--land-border);
    display: flex;
    justify-content: space-between;
    font-size: 0.8125rem;
}
@media (max-width: 768px) {
    .land-footer-inner { grid-template-columns: 1fr; }
    .land-footer-links { grid-template-columns: 1fr 1fr; }
    .land-footer-bottom { flex-direction: row; flex-wrap: wrap; gap: 0.25rem 1rem; justify-content: center; text-align: center; }
}

/* ── Shared Components ───────────────────────────────────────── */
.land-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--land-font-body);
    font-size: var(--land-text-label);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.5);
    margin-bottom: var(--land-space-sm);
}
.land-chip-light {
    color: rgba(11,6,32,0.45);
}
.land-section-title {
    font-family: var(--land-font-display);
    font-size: var(--land-text-section);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: var(--land-space-sm);
}
.land-section-sub {
    font-family: var(--land-font-body);
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 44rem;
    margin-bottom: var(--land-space-md);
}

/* CTA buttons */
.land-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--land-electric);
    color: var(--land-white);
    font-family: var(--land-font-body);
    font-size: 1rem;
    font-weight: 600;
    padding: 0.85rem 1.75rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: background var(--land-dur-fast), transform var(--land-dur-fast), box-shadow var(--land-dur-fast);
    border: none;
    cursor: pointer;
}
.land-btn-primary:hover {
    background: var(--land-pulse);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59,99,255,0.35);
}
.land-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: transparent;
    color: var(--land-white);
    font-family: var(--land-font-body);
    font-size: 1rem;
    font-weight: 600;
    padding: 0.85rem 1.75rem;
    border-radius: 9999px;
    border: 1.5px solid rgba(255,255,255,0.35);
    text-decoration: none;
    transition: border-color var(--land-dur-fast), color var(--land-dur-fast), transform var(--land-dur-fast);
    cursor: pointer;
}
.land-btn-outline:hover {
    border-color: var(--land-white);
    color: var(--land-white);
    transform: translateY(-1px);
}
:focus-visible {
    outline: 2px solid var(--land-pulse);
    outline-offset: 2px;
}

/* ── Scroll reveal ───────────────────────────────────────────── */
.reveal-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--land-dur-slow) var(--land-ease-smooth),
                transform var(--land-dur-slow) var(--land-ease-smooth);
}
.reveal-item.revealed {
    opacity: 1;
    transform: translateY(0);
}
.reveal-item { transition-delay: calc(var(--i, 0) * 80ms); }

@media (prefers-reduced-motion: reduce) {
    .reveal-item {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ── HERO ────────────────────────────────────────────────────── */
.land-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: var(--land-company-blue);
    padding-top: 64px;
    gap: 0;
    overflow: hidden;
}
.land-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--land-max-w);
    padding: 2rem var(--land-space-md) 1.5rem;
    text-align: center;
    color: var(--land-white);
}
.land-hero-ctas { justify-content: center; }
.land-hero-ctas .land-btn-pill-dark,
.land-hero-ctas .land-btn-pill-outline,
.land-hero-ctas .land-btn-pill-light { align-self: center; }

/* Phone frame — rises into view: 25% visible at start, 50% at end, expands to 100vw */
.land-hero-photo {
    --phone-from-scale: 0.82;
    --phone-progress: 0;
    --phone-scale: calc(var(--phone-progress) * (1 - var(--phone-from-scale)) + var(--phone-from-scale));
    /* translateY: 30% visible at start, 50% + frame off-screen at end */
    --phone-lift: calc(70vh - 70vh * var(--phone-progress) - 20px);

    position: absolute;
    top: 0;
    bottom: auto;
    left: 50%;
    width: min(88vw, 340px);

    transform: translateX(-50%) translateY(var(--phone-lift)) scale(var(--phone-scale));
    transform-origin: center top;
    will-change: transform;

    background: #ffffff;
    border-radius: calc(44px / var(--phone-scale));
    padding: 14px 9px 18px;
    border: 1.5px solid rgba(0,0,0,0.10);
    box-shadow:
        0 20px 60px rgba(0,0,0,0.35),
        0 4px 16px rgba(0,0,0,0.18);
}
/* Dynamic Island */
.land-hero-photo::before {
    content: '';
    position: absolute;
    top: 8px; left: 50%;
    transform: translateX(-50%);
    width: clamp(68px, 5%, 90px); height: 6px;
    background: #000;
    border-radius: 10px;
    z-index: 2;
}
/* Home indicator */
.land-hero-photo::after {
    content: '';
    position: absolute;
    bottom: 7px; left: 50%;
    transform: translateX(-50%);
    width: 88px; height: 3px;
    background: rgba(0,0,0,0.20);
    border-radius: 2px;
}
.land-hero-photo img {
    display: block;
    width: 100%;
    height: clamp(700px, 200vh, 2600px);
    object-fit: cover;
    object-position: center top;
    border-radius: calc(33px / var(--phone-scale));
    filter: grayscale(100%) contrast(1.1) brightness(0.9);
}
.land-hero-content .land-hero-title {
    font-family: var(--land-font-display);
    font-size: clamp(2.5rem, 5.5vw, 5.5rem);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: rgba(255,255,255,0.72);
    margin-bottom: 0.75rem;
}
.land-hero-accent { color: var(--land-white); }
.land-hero-accent-white { color: var(--land-white); }
.land-hero-accent-blue { color: #0077b6; }
.land-hero-tagline {
    font-family: var(--land-font-body);
    font-size: clamp(1rem, 2vw, 1.375rem);
    color: rgba(255,255,255,0.75);
    margin-bottom: var(--land-space-md);
    margin-left: auto;
    margin-right: auto;
    min-height: 1.6em;
    max-width: 38rem;
    text-align: center;
}
.land-hero-tagline .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 400ms var(--land-ease-smooth),
                transform 400ms var(--land-ease-smooth);
}
.land-hero-tagline .char.revealed {
    opacity: 1;
    transform: translateY(0);
}
.land-hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    margin-bottom: var(--land-space-lg);
}
/* Hero CTA: electric blue for contrast against near-black hero bg */
.land-hero-ctas .land-btn-pill-dark {
    background: var(--land-electric);
    color: var(--land-white);
}
.land-hero-ctas .land-btn-pill-dark:hover {
    background: #2a52ee;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(59,99,255,0.40);
}

/* Stat bar — editorial factsheet */
.land-stat-bar {
    position: relative;
    z-index: 1;
    background: var(--land-void);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 1.75rem var(--land-space-md) 1.5rem;
}
.land-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.35rem;
    padding: 0 var(--land-space-sm);
    border-right: 1px solid rgba(255,255,255,0.08);
}
.land-stat:last-child { border-right: none; }
.land-stat-num {
    font-family: var(--land-font-display);
    font-size: clamp(1.75rem, 3vw, 2.75rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
    color: rgba(255,255,255,0.9);
}
.land-stat-num--accent {
    color: var(--land-gold);
    font-size: clamp(2rem, 3.5vw, 3.25rem);
}
.land-stat-label {
    font-family: var(--land-font-body);
    font-size: 0.625rem;
    color: rgba(255,255,255,0.38);
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
@media (max-width: 600px) {
    .land-stat-bar { grid-template-columns: 1fr 1fr; }
    .land-stat:nth-child(2) { border-right: none; }
    .land-stat:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.08); grid-column: 1 / -1; border-right: none; }
}

/* ── MANIFEST ────────────────────────────────────────────────── */
.land-manifest {
    background: var(--land-surface);
}
.land-pull-quote {
    font-family: var(--land-font-editorial);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--land-ink);
    line-height: 1.4;
    margin: 0 0 var(--land-space-lg);
    padding: 0;
    border: none;
}
.land-cards-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--land-space-md);
}
.land-numbered-card {
    padding: var(--land-space-sm) 0;
}
.land-card-num {
    font-family: var(--land-font-display);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(11,6,32,0.25);
    display: block;
    margin-bottom: 0.5rem;
}
.land-numbered-card h3 {
    font-family: var(--land-font-display);
    font-size: var(--land-text-card);
    font-weight: 800;
    color: var(--land-ink);
    margin-bottom: 0.5rem;
}
.land-numbered-card p {
    font-family: var(--land-font-body);
    font-size: 0.9375rem;
    color: rgba(11,6,32,0.65);
    line-height: 1.6;
}
@media (max-width: 600px) {
    .land-cards-2 { grid-template-columns: 1fr; }
}

/* ── FOND ────────────────────────────────────────────────────── */
.land-fond {
    background: var(--land-void);
    color: var(--land-white);
}
.land-fond-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--land-space-sm);
}
.land-fond-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3/4;
    text-decoration: none;
    display: block;
}
.land-fond-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: filter var(--land-dur-base) var(--land-ease-smooth),
                transform var(--land-dur-base) var(--land-ease-smooth);
}
.land-fond-card:hover img {
    filter: grayscale(100%) contrast(1.15) brightness(1.05);
    transform: scale(1.03);
}
.land-fond-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5,4,8,0.9) 0%, rgba(5,4,8,0.1) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
    gap: 0.25rem;
    transition: background var(--land-dur-base);
}
.land-fond-card:hover .land-fond-overlay {
    background: linear-gradient(to top, rgba(5,4,8,0.95) 0%, rgba(5,4,8,0.2) 60%);
}
.land-fond-cat {
    font-family: var(--land-font-body);
    font-size: var(--land-text-label);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
}
.land-fond-overlay h3 {
    font-family: var(--land-font-display);
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--land-white);
}
.land-fond-cta {
    font-family: var(--land-font-body);
    font-size: 0.875rem;
    color: var(--land-electric);
    font-weight: 600;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity var(--land-dur-base), transform var(--land-dur-base);
}
.land-fond-card:hover .land-fond-cta {
    opacity: 1;
    transform: translateY(0);
}
@media (max-width: 900px) {
    .land-fond-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .land-fond-grid { grid-template-columns: 1fr; }
    .land-fond-card { aspect-ratio: 4/3; }
}

/* ── TVŮRCI segments ─────────────────────────────────────────── */
.land-segment-dark {
    background: var(--land-void);
    color: var(--land-white);
}
.land-segment-light {
    background: var(--land-surface);
    color: var(--land-ink);
}
.land-segment-inner {
    max-width: var(--land-max-w);
    margin: 0 auto;
    padding: var(--land-space-xl) var(--land-space-md);
    display: grid;
    grid-template-columns: 1fr 40%;
    gap: var(--land-space-lg);
    align-items: center;
}
.land-segment-flip .land-segment-inner {
    grid-template-columns: 40% 1fr;
}
.land-seg-num {
    font-family: var(--land-font-display);
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    color: rgba(255,255,255,0.08);
    display: block;
    margin-bottom: 0.5rem;
}
.land-segment-text h2 {
    font-family: var(--land-font-display);
    font-size: clamp(1.75rem, 3.5vw, 3rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.025em;
    margin-bottom: var(--land-space-sm);
}
.land-features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--land-space-md);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.land-features li {
    font-family: var(--land-font-body);
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.75);
    padding-left: 0.25rem;
}
.land-segment-light .land-features li { color: rgba(11,6,32,0.7); }
.land-seg-cta {
    display: inline-flex;
    align-items: center;
    font-family: var(--land-font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--land-electric);
    text-decoration: none;
    border-bottom: 1px solid rgba(59,99,255,0.3);
    padding-bottom: 0.1em;
    transition: color var(--land-dur-fast), border-color var(--land-dur-fast);
}
.land-seg-cta:hover {
    color: var(--land-pulse);
    border-color: var(--land-pulse);
}
.land-seg-cta-dark {
    display: inline-flex;
    align-items: center;
    font-family: var(--land-font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--land-violet);
    text-decoration: none;
    border-bottom: 1px solid rgba(30,15,107,0.3);
    padding-bottom: 0.1em;
    transition: color var(--land-dur-fast), border-color var(--land-dur-fast);
}
.land-seg-cta-dark:hover {
    color: var(--land-pulse);
    border-color: var(--land-pulse);
}
.land-segment-photo {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3/4;
}
.land-segment-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
@media (max-width: 768px) {
    .land-segment-inner,
    .land-segment-flip .land-segment-inner {
        grid-template-columns: 1fr !important;
    }
    .land-segment-flip .land-segment-inner .land-segment-photo {
        order: -1;
    }
    .land-segment-photo { aspect-ratio: 3/2; }
}

/* ── AGENTI ──────────────────────────────────────────────────── */
.land-agenti {
    background: linear-gradient(135deg, var(--land-void) 0%, var(--land-violet) 100%);
    color: var(--land-white);
}
.land-agenti-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--land-space-lg);
    align-items: center;
}
.land-arrow-features {
    list-style: none;
    padding: 0;
    margin: var(--land-space-sm) 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.land-arrow-features li {
    font-family: var(--land-font-body);
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
}
.land-agenti-photo {
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
}
.land-agenti-photo img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 320px;
}
.land-agent-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.land-agent-badge {
    padding: 1.25rem;
    border: 1px solid var(--land-border);
    border-radius: 10px;
    background: rgba(255,255,255,0.03);
    transition: background var(--land-dur-base), border-color var(--land-dur-base);
}
.land-agent-badge:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(108,71,255,0.4);
}
.land-agent-badge span {
    font-family: var(--land-font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.25);
    display: block;
    margin-bottom: 0.4rem;
}
.land-agent-badge strong {
    font-family: var(--land-font-display);
    font-size: 1rem;
    font-weight: 800;
    color: var(--land-white);
    display: block;
    margin-bottom: 0.25rem;
}
.land-agent-badge p {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.5);
    margin: 0;
}
@media (max-width: 768px) {
    .land-agenti-grid { grid-template-columns: 1fr; }
}

/* ── FANOUŠCI ────────────────────────────────────────────────── */
.land-fanousci {
    background: var(--land-surface);
}
.land-fanousci-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--land-space-lg);
    align-items: center;
}
.land-fan-masonry {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}
.land-fan-masonry img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center top;
    border-radius: 8px;
}
.land-fan-masonry img:nth-child(2) {
    margin-top: 2rem;
}
.land-fan-masonry img:nth-child(4) {
    margin-top: -2rem;
}
.land-heart-features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--land-space-md);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.land-heart-features li {
    font-family: var(--land-font-body);
    font-size: 1rem;
    color: rgba(11,6,32,0.7);
}
@media (max-width: 768px) {
    .land-fanousci-grid { grid-template-columns: 1fr; }
}

/* ── STRATEGIE ───────────────────────────────────────────────── */
.land-strategie {
    background: var(--land-void);
    color: var(--land-white);
}
.land-phase-scroll-wrap {
    position: relative;
    padding-bottom: var(--land-space-lg);
}
.land-phase-scroll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: var(--land-space-sm) var(--land-space-md) var(--land-space-md);
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.land-phase-scroll::-webkit-scrollbar { display: none; }
.land-phase-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--land-border);
    border-radius: 14px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: border-color var(--land-dur-base), background var(--land-dur-base);
}
.land-phase-card:hover {
    border-color: rgba(108,71,255,0.4);
    background: rgba(255,255,255,0.06);
}
.land-phase-bg-num {
    position: absolute;
    right: -0.5rem;
    top: -1rem;
    font-family: var(--land-font-display);
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255,255,255,0.04);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}
.land-phase-content { position: relative; z-index: 1; }
.land-phase-num {
    font-family: var(--land-font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--land-electric);
    display: block;
    margin-bottom: 0.75rem;
}
.land-phase-card h3 {
    font-family: var(--land-font-display);
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--land-white);
    margin-bottom: 0.75rem;
}
.land-phase-card p {
    font-family: var(--land-font-body);
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}
.land-phase-pill {
    display: inline-block;
    font-family: var(--land-font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--land-pulse);
    border: 1px solid rgba(108,71,255,0.35);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}
.land-phase-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    padding: var(--land-space-sm) var(--land-space-md) 0;
    color: rgba(255,255,255,0.5);
}
.land-phase-nav button {
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--land-border);
    color: var(--land-white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    transition: background var(--land-dur-fast), border-color var(--land-dur-fast);
}
.land-phase-nav button:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.25);
}
.land-phase-nav span {
    font-family: var(--land-font-body);
    font-size: 0.875rem;
    font-weight: 500;
    min-width: 3rem;
    text-align: center;
}

/* ── PROPAGACE ───────────────────────────────────────────────── */
.land-propagace {
    background: linear-gradient(180deg, #0d0820 0%, var(--land-void) 100%);
    color: var(--land-white);
}
.land-prop-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--land-space-md);
    margin-bottom: var(--land-space-lg);
}
.land-prop-card {
    padding: var(--land-space-md);
    position: relative;
}
.land-prop-num {
    font-family: var(--land-font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.2);
    display: block;
    margin-bottom: 0.75rem;
}
.land-prop-card svg {
    color: var(--land-pulse);
    margin-bottom: 0.75rem;
}
.land-prop-card h3 {
    font-family: var(--land-font-display);
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--land-white);
    margin-bottom: 0.5rem;
}
.land-prop-card p {
    font-family: var(--land-font-body);
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}
.land-prop-card strong { color: rgba(255,255,255,0.9); }
.land-prop-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--land-border);
    border: 1px solid var(--land-border);
    border-radius: 10px;
    overflow: hidden;
}
.land-prop-stats div {
    background: rgba(255,255,255,0.03);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    align-items: center;
    text-align: center;
}
.land-prop-stats span {
    font-family: var(--land-font-display);
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--land-electric);
}
.land-prop-stats label {
    font-family: var(--land-font-body);
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.5);
}
@media (max-width: 768px) {
    .land-prop-grid { grid-template-columns: 1fr; }
    .land-prop-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ── KONFIGURÁTOR ────────────────────────────────────────────── */
.land-konfig {
    background: var(--land-bg-alt);
    color: var(--land-ink);
}
.land-konfig-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: var(--land-space-md);
    border-bottom: 1px solid var(--land-border-dark);
    padding-bottom: 0;
}
.land-konfig-tab {
    font-family: var(--land-font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    color: rgba(11,6,32,0.45);
    background: none;
    border: none;
    padding: 0.75rem 0;
    margin-right: 2rem;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: color var(--land-dur-fast), border-color var(--land-dur-fast);
    position: relative;
    bottom: -1px;
}
.land-konfig-tab.active {
    color: var(--land-ink);
    border-bottom-color: var(--land-electric);
}
.land-konfig-panel { width: 100%; }
.land-full-konfig-wrap {
    background: var(--land-bg-section);
    border: 1px solid var(--land-border-dark);
    border-radius: 14px;
    padding: var(--land-space-md);
}

/* Swipe deck */
.land-swipe-header {
    margin-bottom: var(--land-space-md);
}
.land-swipe-budget-bar {
    display: flex;
    flex-direction: column;
    gap: var(--land-space-sm);
}
.land-swipe-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--land-space-md);
}
.land-swipe-info label {
    font-family: var(--land-font-body);
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(11,6,32,0.5);
    display: block;
    margin-bottom: 0.5rem;
}
.land-swipe-info label strong { color: var(--land-ink); }
.land-swipe-chips {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.land-swipe-chip {
    font-family: var(--land-font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.35rem 0.9rem;
    border-radius: 9999px;
    border: 1px solid var(--land-border-dark);
    background: transparent;
    color: rgba(11,6,32,0.65);
    cursor: pointer;
    transition: background var(--land-dur-fast), color var(--land-dur-fast), border-color var(--land-dur-fast);
}
.land-swipe-chip.active {
    background: var(--land-electric);
    color: var(--land-white);
    border-color: var(--land-electric);
}
.land-swipe-range {
    width: 100%;
    -webkit-appearance: none;
    height: 4px;
    border-radius: 2px;
    background: rgba(0,0,0,0.08);
    outline: none;
    cursor: pointer;
}
.land-swipe-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--land-electric);
    cursor: pointer;
    transition: background var(--land-dur-fast);
}
.land-swipe-range::-webkit-slider-thumb:hover { background: var(--land-pulse); }
.land-swipe-range:focus::-webkit-slider-thumb {
    outline: 2px solid var(--land-pulse);
    outline-offset: 2px;
}

.land-tracker-bar {
    height: 4px;
    background: rgba(0,0,0,0.06);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}
.land-tracker-fill {
    height: 100%;
    background: linear-gradient(to right, var(--land-electric), var(--land-pulse));
    border-radius: 2px;
    transition: width 400ms var(--land-ease-smooth);
}
.land-tracker-nums {
    display: flex;
    gap: 0.75rem;
    font-family: var(--land-font-body);
    font-size: 0.8125rem;
    color: rgba(11,6,32,0.5);
}
.land-tracker-nums span:last-child { margin-left: auto; }

.land-swipe-main {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: var(--land-space-md);
    flex-wrap: wrap;
}
.land-swipe-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    min-height: 540px;
    position: relative;
    flex: 0 0 auto;
}
.land-swipe-counter {
    font-family: var(--land-font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(11,6,32,0.4);
    letter-spacing: 0.08em;
    align-self: flex-start;
}
.land-swipe-deck {
    position: relative;
    width: clamp(320px, 44vw, 480px);
    height: clamp(420px, 56vw, 620px);
}
.land-swipe-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border: 1px dashed var(--land-border-dark);
    border-radius: 16px;
    color: rgba(11,6,32,0.35);
    font-family: var(--land-font-body);
    font-size: 0.9375rem;
    text-align: center;
    padding: var(--land-space-sm);
}
.land-swipe-card {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    overflow: hidden;
    background: #1a1028;
    border: 1px solid var(--land-border);
    cursor: grab;
    touch-action: none;
    user-select: none;
    will-change: transform;
    transition: box-shadow var(--land-dur-base);
}
.land-swipe-card:active { cursor: grabbing; }
.land-swipe-card-photo {
    width: 100%;
    height: 60%;
    object-fit: cover;
    object-position: center top;
    pointer-events: none;
}
.land-swipe-card-body {
    padding: 1rem 1.25rem;
}
.land-swipe-card-name {
    font-family: var(--land-font-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--land-white);
    margin-bottom: 0.2rem;
}
.land-swipe-card-role {
    font-family: var(--land-font-body);
    font-size: 0.875rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 0.75rem;
}
.land-swipe-card-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 0.75rem;
}
.land-swipe-card-skill {
    font-family: var(--land-font-body);
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
    border-radius: 9999px;
    background: rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.65);
    border: 1px solid var(--land-border);
}
.land-swipe-card-fee {
    font-family: var(--land-font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--land-gold);
}

/* Swipe tint overlays */
.land-swipe-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 150ms;
    border-radius: 16px;
    z-index: 10;
}
.land-swipe-card.tint-yes::before {
    background: rgba(31, 207, 160, 0.15);
    opacity: 1;
}
.land-swipe-card.tint-no::before {
    background: rgba(231, 76, 60, 0.15);
    opacity: 1;
}

.land-swipe-buttons {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}
.land-swipe-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1.5px solid var(--land-border-dark);
    background: rgba(0,0,0,0.03);
    color: var(--land-ink);
    font-size: 1.125rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--land-dur-fast), border-color var(--land-dur-fast),
                transform var(--land-dur-fast), box-shadow var(--land-dur-fast);
}
.land-swipe-btn:hover {
    background: rgba(0,0,0,0.07);
    transform: scale(1.08);
}
.land-swipe-btn:disabled { opacity: 0.3; cursor: not-allowed; transform: none; }
.land-swipe-no { color: #e74c3c; border-color: rgba(231,76,60,0.3); }
.land-swipe-no:hover:not(:disabled) { background: rgba(231,76,60,0.12); border-color: rgba(231,76,60,0.6); box-shadow: 0 4px 16px rgba(231,76,60,0.2); }
.land-swipe-undo { font-size: 0.9rem; }
.land-swipe-yes { color: var(--land-mint); border-color: rgba(31,207,160,0.3); }
.land-swipe-yes:hover:not(:disabled) { background: rgba(31,207,160,0.1); border-color: rgba(31,207,160,0.5); box-shadow: 0 4px 16px rgba(31,207,160,0.15); }

.land-swipe-roster {
    background: var(--land-bg-section);
    border: 1px solid var(--land-border-dark);
    border-radius: 14px;
    padding: 1.5rem;
}
.land-swipe-roster h3 {
    font-family: var(--land-font-display);
    font-size: 1rem;
    font-weight: 800;
    color: var(--land-ink);
    margin-bottom: 1rem;
}
.land-roster-empty {
    font-family: var(--land-font-body);
    font-size: 0.875rem;
    color: rgba(11,6,32,0.45);
    text-align: center;
    padding: 1.5rem 0;
}
.land-roster-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0;
    border-bottom: 1px solid var(--land-border-dark);
    animation: rosterIn 200ms var(--land-ease-smooth) forwards;
}
.land-roster-item:last-of-type { border-bottom: none; }
.land-roster-item-name {
    font-family: var(--land-font-body);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--land-ink);
    flex: 1;
}
.land-roster-item-fee {
    font-family: var(--land-font-body);
    font-size: 0.8125rem;
    color: var(--land-gold);
    font-weight: 600;
    white-space: nowrap;
}
.land-roster-remove {
    background: none;
    border: none;
    color: rgba(11,6,32,0.3);
    cursor: pointer;
    font-size: 0.875rem;
    padding: 0.25rem;
    line-height: 1;
    transition: color var(--land-dur-fast);
}
.land-roster-remove:hover { color: #e74c3c; }
.land-roster-actions { margin-top: 1.25rem; }
@keyframes rosterIn {
    from { opacity: 0; transform: translateX(10px); }
    to   { opacity: 1; transform: translateX(0); }
}
@media (max-width: 900px) {
    .land-swipe-main { flex-direction: column; align-items: center; }
    .land-swipe-info { grid-template-columns: 1fr; }
    .land-swipe-stage { order: -1; }
    .land-swipe-deck { width: min(360px, calc(100vw - 3rem)); height: clamp(420px, 80vw, 520px); }
    .land-swipe-roster { width: min(360px, calc(100vw - 3rem)); }
}

/* ── KONTAKT ─────────────────────────────────────────────────── */
.land-kontakt {
    background: var(--land-bg-alt);
    color: var(--land-ink);
    text-align: center;
}
.land-kontakt-quote {
    font-family: var(--land-font-editorial);
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--land-ink);
    line-height: 1.35;
    margin: 0 auto var(--land-space-md);
    padding: 0;
    border: none;
    max-width: 44rem;
}
.land-kontakt-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--land-space-lg);
}
.land-founders {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--land-space-md);
    max-width: 48rem;
    margin: 0 auto;
    text-align: left;
}
.land-founder-card {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--land-bg-section);
    border: 1px solid var(--land-border-dark);
    border-radius: 12px;
    transition: background var(--land-dur-base);
}
.land-founder-card:hover { background: rgba(11,6,32,0.03); }
.land-founder-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--land-pulse);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--land-font-display);
    font-size: 0.875rem;
    font-weight: 800;
    color: var(--land-white);
    flex-shrink: 0;
}
.land-founder-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.land-founder-info strong {
    font-family: var(--land-font-display);
    font-size: 1rem;
    font-weight: 800;
    color: var(--land-ink);
}
.land-founder-info span {
    font-family: var(--land-font-body);
    font-size: 0.8125rem;
    color: rgba(11,6,32,0.5);
    margin-bottom: 0.4rem;
}
.land-founder-info a {
    font-family: var(--land-font-body);
    font-size: 0.8125rem;
    color: var(--land-company-blue);
    text-decoration: none;
    transition: color var(--land-dur-fast);
}
.land-founder-info a:hover { color: var(--land-blue); }
@media (max-width: 600px) {
    .land-founders { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   plan_to_one2.md — New sections
   ═══════════════════════════════════════════════════════════════ */

/* ── Hero split (legacy grid helper, not used in current landing) ── */
.land-hero-split {
    flex: 1;
    display: grid;
    grid-template-columns: 58% 42%;
    max-width: var(--land-max-w);
    margin: 0 auto;
    width: 100%;
    padding: var(--land-space-xl) var(--land-space-md) var(--land-space-md);
    gap: var(--land-space-lg);
    align-items: center;
}
.land-hero-chip { margin-bottom: var(--land-space-sm); }
.land-hero-title {
    font-family: var(--land-font-display);
    font-size: var(--land-text-hero);
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: -0.03em;
    color: rgba(255,255,255,0.92);
    margin-bottom: 1.25rem;
}
.land-hero-sub {
    font-family: var(--land-font-body);
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
    margin-bottom: var(--land-space-md);
    min-height: 1.6em;
}
.land-hero-sub .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 400ms var(--land-ease-smooth), transform 400ms var(--land-ease-smooth);
}
.land-hero-sub .char.revealed { opacity: 1; transform: translateY(0); }
.land-hero-photo-wrap {
    position: relative;
    height: 60vh;
    min-height: 380px;
    border-radius: 12px;
    overflow: hidden;
}
.land-hero-photo-wrap img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center top;
    filter: grayscale(100%) contrast(1.12) brightness(0.9);
    will-change: transform;
}
.land-hero-photo-fade {
    position: absolute; inset: 0;
    background: linear-gradient(to right, var(--land-void) 0%, transparent 38%),
                linear-gradient(to top, var(--land-void) 0%, transparent 22%);
}
.land-stat-mint    { color: var(--land-mint); }
.land-stat-electric { color: var(--land-electric); font-size: clamp(2rem,3.5vw,3.25rem); }
.land-stat-gold    { color: var(--land-gold); }
.land-stat-white   { color: rgba(255,255,255,0.9); }
@media (max-width: 860px) {
    .land-hero-split { grid-template-columns: 1fr; padding: var(--land-space-lg) var(--land-space-md) var(--land-space-md); }
    .land-hero-photo-wrap { height: 42vh; min-height: 220px; order: -1; }
}

/* ── Ekosystém (light) ───────────────────────────────────────── */
.land-ekosystem { background: var(--land-bg-alt); color: var(--land-ink); }
.land-pull-quote--dark { color: rgba(11,6,32,0.75); }
.land-cards-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--land-space-md); }
.land-numbered-card--dark {
    background: var(--land-bg-section);
    border: 1px solid var(--land-border-dark);
    border-left: 3px solid var(--land-blue);
    border-radius: 10px;
    padding: var(--land-space-sm) 1.25rem;
    transition: background var(--land-dur-base);
}
.land-numbered-card--dark:hover { background: rgba(11,6,32,0.03); }
.land-numbered-card--dark h3 {
    font-family: var(--land-font-display); font-size: 1.125rem; font-weight: 800;
    color: var(--land-ink); margin-bottom: 0.5rem;
}
.land-numbered-card--dark p { font-size: 0.9375rem; color: rgba(11,6,32,0.6); line-height: 1.6; }
.land-card-num--dark { color: rgba(11,6,32,0.15) !important; }
@media (max-width: 768px) { .land-cards-3 { grid-template-columns: 1fr; } }

/* ── Trh (light) ─────────────────────────────────────────────── */
.land-trh { background: var(--land-surface); }
.land-trh-card { padding: var(--land-space-sm) 0; border-bottom: 2px solid var(--land-border-dark); transition: border-color var(--land-dur-base); }
.land-trh-card:hover { border-color: var(--land-pulse); }
.land-trh-num { color: rgba(11,6,32,0.2) !important; font-family: var(--land-font-display); font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.08em; display: block; margin-bottom: 0.5rem; }
.land-trh-card h3 { font-family: var(--land-font-display); font-size: 1.125rem; font-weight: 800; color: var(--land-ink); margin-bottom: 0.4rem; }
.land-trh-card p { font-size: 0.9375rem; color: rgba(11,6,32,0.6); line-height: 1.6; }

/* ── Umelci (light, photo left) ──────────────────────────────── */
.land-umelci { background: var(--land-bg-section); color: var(--land-ink); }
.land-umelci-inner { grid-template-columns: 40% 1fr; }
@media (max-width: 768px) { .land-umelci-inner { grid-template-columns: 1fr !important; } }
.land-umelci-sub { font-family: var(--land-font-body); font-size: 1.0625rem; color: rgba(11,6,32,0.65); line-height: 1.6; margin-bottom: var(--land-space-md); }

/* ── Agenti light variant ────────────────────────────────────── */
.land-agenti--light { background: var(--land-surface) !important; background-image: none !important; color: var(--land-ink); }
.land-arrow-features--light li { color: rgba(11,6,32,0.7) !important; }
.land-agent-badge--light { border-color: var(--land-border-dark) !important; background: rgba(11,6,32,0.03) !important; }
.land-agent-badge--light span { color: rgba(11,6,32,0.25) !important; }
.land-agent-badge--light strong { color: var(--land-ink) !important; }
.land-agent-badge--light p { color: rgba(11,6,32,0.55) !important; }
.land-agent-badge--light:hover { background: var(--land-violet) !important; border-color: var(--land-violet) !important; }
.land-agent-badge--light:hover span,
.land-agent-badge--light:hover strong,
.land-agent-badge--light:hover p { color: var(--land-white) !important; }

/* ── Ceník (light) ───────────────────────────────────────────── */
.land-cenik { background: var(--land-bg-alt); color: var(--land-ink); }
.land-cenik-card {
    padding: var(--land-space-sm) 1.25rem; border: 1px solid var(--land-border-dark);
    border-left: 3px solid var(--land-blue); border-radius: 10px;
    background: var(--land-bg-section); transition: background var(--land-dur-base), border-left-color var(--land-dur-base);
}
.land-cenik-card:hover { background: rgba(11,6,32,0.02); border-left-color: var(--land-company-blue); }
.land-cenik-num { font-family: var(--land-font-display); font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.08em; color: rgba(11,6,32,0.15); display: block; margin-bottom: 0.75rem; }
.land-cenik-card h3 { font-family: var(--land-font-display); font-size: 1.125rem; font-weight: 800; color: var(--land-ink); margin-bottom: 0.5rem; }
.land-cenik-card p { font-size: 0.9375rem; color: rgba(11,6,32,0.6); line-height: 1.6; }

/* ── Čtyři pilíře ────────────────────────────────────────────── */
.land-pilar-dark { background: var(--land-bg-section); color: var(--land-ink); }
.land-pilar-light { background: var(--land-surface); color: var(--land-ink); }
.land-pilar-inner { position: relative; }
.land-pilar-num {
    font-family: var(--land-font-display);
    font-size: clamp(5rem,14vw,11rem);
    font-weight: 900; line-height: 1; letter-spacing: -0.05em;
    color: rgba(255,255,255,0.04); display: block;
    margin-bottom: -1.5rem; position: relative; z-index: 0; user-select: none;
}
.land-pilar-dark .land-pilar-num { color: rgba(11,6,32,0.04); }
.land-pilar-num--light { color: rgba(11,6,32,0.04); }
.land-pilar-inner .land-segment-text > * { position: relative; z-index: 1; }
.land-features--light li { color: rgba(11,6,32,0.7) !important; }
.land-pilar-dark .land-features li { color: rgba(11,6,32,0.7); }

/* ── Zázemí / Sluzby ─────────────────────────────────────────── */
.land-sluzby { background: var(--land-bg-section); color: var(--land-ink); }
.land-sluzby-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--land-space-md); }
.land-sluzby-icon { color: var(--land-company-blue); margin-bottom: 1rem; }
.land-sluzby-col h3 { font-family: var(--land-font-display); font-size: 1.125rem; font-weight: 800; color: var(--land-ink); margin-bottom: 1rem; }
.land-tag-cloud { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.land-tag {
    font-family: var(--land-font-body); font-size: 0.8125rem; font-weight: 500;
    padding: 0.28rem 0.7rem; border-radius: 9999px;
    border: 1px solid var(--land-border-dark); color: rgba(11,6,32,0.65);
    background: rgba(0,0,0,0.04);
    transition: background var(--land-dur-fast), border-color var(--land-dur-fast), color var(--land-dur-fast);
}
.land-tag:hover { background: rgba(0,60,135,0.1); border-color: rgba(0,60,135,0.3); color: var(--land-ink); }
@media (max-width: 768px) { .land-sluzby-cols { grid-template-columns: 1fr; } }

/* ── Žurnalistika (light) ────────────────────────────────────── */
.land-zurnal { background: var(--land-surface); }
.land-zurnal-card {
    padding: 1.5rem; border: 1px solid var(--land-border-dark);
    border-left: 3px solid var(--land-pulse); border-radius: 10px;
    background: var(--land-white); transition: box-shadow var(--land-dur-base);
}
.land-zurnal-card:hover { box-shadow: 0 4px 20px rgba(108,71,255,0.08); }
.land-zurnal-card svg { color: var(--land-pulse); margin-bottom: 0.75rem; }
.land-zurnal-card h3 { font-family: var(--land-font-display); font-size: 1rem; font-weight: 800; color: var(--land-ink); margin-bottom: 0.4rem; }
.land-zurnal-card p { font-size: 0.9rem; color: rgba(11,6,32,0.6); line-height: 1.6; }

/* ── Ekosystémový tok ────────────────────────────────────────── */
.land-tok { background: var(--land-bg-alt); color: var(--land-ink); }
.land-tok-diagram {
    display: flex; align-items: center;
    padding: var(--land-space-md) 0 var(--land-space-sm);
    overflow-x: auto; gap: 0;
}
.land-tok-actor {
    display: flex; flex-direction: column; align-items: center;
    text-align: center; gap: 0.75rem; min-width: 148px; flex-shrink: 0;
}
.land-tok-icon {
    width: 64px; height: 64px; border-radius: 50%;
    border: 1.5px solid var(--land-border-dark); background: rgba(0,0,0,0.03);
    display: flex; align-items: center; justify-content: center;
    color: var(--land-company-blue);
    transition: background var(--land-dur-base), border-color var(--land-dur-base);
}
.land-tok-actor:hover .land-tok-icon { background: rgba(0,60,135,0.1); border-color: var(--land-blue); }
.land-tok-actor strong { font-family: var(--land-font-display); font-size: 0.9375rem; font-weight: 800; color: var(--land-ink); }
.land-tok-actor span { font-family: var(--land-font-body); font-size: 0.8125rem; color: rgba(11,6,32,0.5); line-height: 1.4; }
.land-tok-arrow { flex-shrink: 0; width: 80px; height: 24px; color: rgba(11,6,32,0.2); margin: 0 0.5rem 2rem; }
.land-tok-arrow path { stroke-dasharray: 200; stroke-dashoffset: 200; }
@media (max-width: 1024px) {
    .land-tok-diagram {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem 2rem;
        align-items: start;
        overflow-x: unset;
    }
    .land-tok-arrow { display: none; }
    .land-tok-actor { min-width: unset; width: 100%; }
}

/* ── Founder info additions ──────────────────────────────────── */
.land-founder-info p { font-family: var(--land-font-body); font-size: 0.8125rem; color: rgba(11,6,32,0.5); line-height: 1.5; margin: 0.2rem 0; }

/* ═══════════════════════════════════════════════════════════════
   PERSONA SYSTEM — pill + scroll animation + section visibility
   ═══════════════════════════════════════════════════════════════ */

/* ── Pill entry animation ────────────────────────────────────── */
@keyframes om-pill-entry {
    from { opacity: 0; transform: translateY(-16px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Hero wrapper ─────────────────────────────────────────────── */
.land-hero-wrapper {
    position: relative;
}

/* Phone entrance — opacity only; transform driven by --phone-progress CSS var */
.land-hero-photo {
    opacity: 0;
    animation: om-phone-enter 0.7s cubic-bezier(0.37, 0.34, 0.26, 0.9) 0.5s forwards;
}

@keyframes om-phone-enter {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* 105vw at all sizes — frame bleeds off edges so only photo shows, no visible white border */
.land-hero-photo { --phone-from-scale: 0.72; width: 105vw; }
@media (min-width: 1470px) {
    .land-hero-photo { --phone-from-scale: 0.68; }
}

/* Hide phone frame in business mode */
body[data-persona="business"] .land-hero-photo { display: none; }

/* ── Business hero: white bg + artist photo strip ────────────── */
body[data-persona="business"] .land-hero {
    background: #ffffff;
}
body[data-persona="business"] .land-hero-title {
    color: var(--land-ink);
}
body[data-persona="business"] .land-hero-tagline {
    color: var(--land-ink-muted, rgba(0,0,0,0.60));
}
body[data-persona="business"] .land-hero .persona-toggle {
    border-color: rgba(0,0,0,0.25);
}
body[data-persona="business"] .persona-tab {
    color: rgba(0,0,0,0.60);
}
body[data-persona="business"] .persona-tab[aria-selected="true"] {
    background: var(--land-ink);
    color: #fff;
}

/* Artist strip — row of photos at bottom of business hero */
.land-hero-artist-strip {
    display: none;
    overflow: hidden;
    width: 100%;
    padding: 1rem 0 0.5rem;
    pointer-events: none;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
body[data-persona="business"] .land-hero-artist-strip {
    display: flex;
}
.artist-strip-track {
    flex: none;
    display: flex;
    animation: strip-scroll 20s linear infinite;
}
.land-hero-artist-strip img {
    display: block;
    flex-shrink: 0;
    width: clamp(120px, 22vw, 200px);
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center top;
    border-radius: 0.75rem;
    filter: grayscale(100%) contrast(1.1) brightness(0.88);
    margin-right: 1rem;
}
@keyframes strip-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.land-hero-artist-strip:hover .artist-strip-track { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) {
    .artist-strip-track { animation: none; }
}
/* Outline button on white business hero */
body[data-persona="business"] .land-hero-ctas .land-btn-pill-outline {
    color: var(--land-navy);
    border-color: rgba(1,33,105,0.40);
}
body[data-persona="business"] .land-hero-ctas .land-btn-pill-outline:hover {
    color: var(--land-navy);
    border-color: var(--land-navy);
    background: rgba(1,33,105,0.06);
    transform: translateY(-2px);
}

/* ── Hero content entrance ───────────────────────────────────── */
.land-hero-content {
    animation: om-hero-content-enter 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

@keyframes om-hero-content-enter {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Stop-scroll: hero sticks for 100vh of scroll budget ─────── */
.land-hero-wrapper { position: relative; }

body[data-persona="fan"] .land-hero-wrapper {
    height: 200vh;
    min-height: 84rem;
}
body[data-persona="fan"] .land-hero {
    position: sticky !important;
    top: 0 !important;
    height: 100lvh;
    min-height: 42rem;
    overflow: hidden;
}
body[data-persona="fan"] .land-hero .land-hero-content #persona-fan,
body[data-persona="business"] .land-hero .land-hero-content #persona-business,
body[data-persona="organizer"] .land-hero .land-hero-content #persona-organizer {
    margin-top: clamp(2rem, 20vh, 12rem);
}
/* Gradient at hero bottom hides the phone frame edge and smooths the exit */
body[data-persona="business"] .land-hero-wrapper { height: auto; }
body[data-persona="business"] .land-hero {
    position: relative !important;
    min-height: auto;
    height: auto;
}

/* ── Hero mobile ─────────────────────────────────────────────── */
@media (max-width: 640px) {
    .land-hero { padding-top: 72px; }
    .land-hero-photo img { height: clamp(440px, 100vh, 780px); }
    /* Phone starts lower so title is clearly above it; less scroll budget */
    .land-hero-photo {
        --phone-lift: calc(80vh - 80vh * var(--phone-progress) - 20px);
    }
    body[data-persona="fan"] .land-hero-wrapper {
        min-height: 60rem;
    }
}

/* ── Reduced motion ──────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .land-hero-photo {
        animation: none !important;
        opacity: 1 !important;
        --phone-from-scale: 1;
        --phone-progress: 1;
    }
    .land-hero-content { animation: none !important; }
    .land-hero .persona-toggle { animation: none !important; }
    body[data-persona="fan"] .land-hero-wrapper { height: auto !important; }
    body[data-persona="fan"] .land-hero { position: relative !important; height: auto !important; min-height: 100vh !important; }
}

/* ── KONTAKT ─────────────────────────────────────────────────── */
.pp-kontakt {
    background: var(--land-bg-section);
    border-top: 1px solid var(--land-border-dark);
}
.pp-kontakt__inner {
    max-width: var(--land-max-w);
    margin: 0 auto;
    padding: var(--land-space-xl) var(--land-space-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
}
.pp-kontakt__inner h2 {
    font-family: var(--land-font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: var(--land-ink);
}
.pp-kontakt__inner p {
    font-size: 1.0625rem;
    color: rgba(11,6,32,0.62);
    max-width: 32rem;
}
.pp-kontakt__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0.75rem;
}
.pp-kontakt .land-btn-pill-outline {
    color: var(--land-navy);
    border-color: rgba(1,33,105,0.40);
}
.pp-kontakt .land-btn-pill-outline:hover {
    color: var(--land-navy);
    border-color: var(--land-navy);
    background: rgba(1,33,105,0.06);
}

/* ── BIG TYPE — pro koho ─────────────────────────────────────── */
.land-bigtype {
    background: var(--land-void);
    color: var(--land-white);
    overflow: hidden;
}
.land-bigtype-inner {
    max-width: var(--land-max-w);
    margin: 0 auto;
    padding: clamp(4rem, 10vw, 8rem) var(--land-space-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.land-bigtype-brand,
.land-bigtype-word {
    font-family: var(--land-font-display);
    font-size: clamp(3.5rem, 11vw, 10.5rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 0.95;
    padding-bottom: 0.18em;
    white-space: nowrap;
    background: linear-gradient(
        135deg,
        var(--land-white) 0%,
        var(--land-white) 25%,
        #b8caff      32%,
        var(--land-electric) 42%,
        var(--land-electric) 58%,
        #b8caff      68%,
        var(--land-white) 75%,
        var(--land-white) 100%
    );
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: bigtype-flow 6s linear infinite;
}
@keyframes bigtype-flow {
    from { background-position: 100% 50%; }
    to   { background-position:   0% 50%; }
}
@media (prefers-reduced-motion: reduce) {
    .land-bigtype-brand,
    .land-bigtype-word {
        animation: none;
        -webkit-text-fill-color: var(--land-white);
        color: var(--land-white);
        background: none;
    }
}
.land-bigtype-pro {
    font-family: var(--land-font-body);
    font-size: clamp(0.825rem, 2vw, 0.90rem);
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.28);
    margin: clamp(1rem, 2.5vw, 1.75rem) 0 clamp(0.25rem, 1vw, 0.5rem);
}
.land-bigtype-word {
    position: relative;
    padding-bottom: 0.15em;
}
.land-bigtype-word-enter {
    animation: bigtype-in 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.land-bigtype-word-exit {
    animation: bigtype-out 0.35s cubic-bezier(0.4, 0, 1, 1) both;
}
@keyframes bigtype-in {
    from { opacity: 0; transform: translateY(0.15em); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes bigtype-out {
    from { opacity: 1; transform: translateY(0); }
    to   { opacity: 0; transform: translateY(-0.1em); }
}
@media (prefers-reduced-motion: reduce) {
    .land-bigtype-word-enter,
    .land-bigtype-word-exit { animation: none; }
}

/* ═══════════════════════════════════════════════════════════════
   PayPal-style sections — pp- prefix
   ═══════════════════════════════════════════════════════════════ */

/* ── Pill buttons ────────────────────────────────────────────── */
.land-btn-pill-dark,
.land-btn-pill-light,
.land-btn-pill-outline {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 0.4rem;
    font-family: var(--land-font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    transition: background var(--land-dur-fast), opacity var(--land-dur-fast),
                border-color var(--land-dur-fast), transform 200ms var(--land-ease-smooth),
                box-shadow 200ms var(--land-ease-smooth);
}
.land-btn-pill-dark:active,
.land-btn-pill-light:active,
.land-btn-pill-outline:active { transform: scale(0.97) translateY(0) !important; }
.land-btn-pill-dark {
    background: var(--land-navy);
    color: var(--land-white);
    border: none;
}
.land-btn-pill-dark:hover {
    background: var(--land-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,48,135,0.36);
}
.land-btn-pill-light {
    background: var(--land-white);
    color: var(--land-ink);
    border: none;
}
.land-btn-pill-light:hover {
    opacity: 0.88;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255,255,255,0.22);
}
.land-btn-pill-outline {
    background: transparent;
    color: var(--land-white);
    border: 1.5px solid rgba(255,255,255,0.65);
}
.land-btn-pill-outline:hover {
    border-color: var(--land-white);
    background: rgba(255,255,255,0.1);
    transform: translateY(-1px);
}

/* ── pp-section scroll reveal ────────────────────────────────── */
.pp-split,
.pp-photo-hero,
.pp-navy,
.pp-app-cta {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 700ms var(--land-ease-smooth),
                transform 700ms var(--land-ease-smooth);
}
.pp-split.pp-visible,
.pp-photo-hero.pp-visible,
.pp-navy.pp-visible,
.pp-app-cta.pp-visible {
    opacity: 1;
    transform: translateY(0);
}
/* stagger children of split on reveal */
.pp-split.pp-visible .pp-split__text { transition-delay: 80ms; }
.pp-split.pp-visible .pp-split__media { transition-delay: 0ms; }

/* navy children stagger */
.pp-navy__screen,
.pp-navy__text { opacity: 0; transform: translateY(20px); transition: opacity 600ms var(--land-ease-smooth), transform 600ms var(--land-ease-smooth); }
.pp-navy.pp-visible .pp-navy__screen { opacity: 1; transform: none; transition-delay: 100ms; }
.pp-navy.pp-visible .pp-navy__text   { opacity: 1; transform: none; transition-delay: 220ms; }

/* photo-hero content stagger */
.pp-photo-hero__content h2,
.pp-photo-hero__content p,
.pp-photo-hero__content .land-btn-pill-light,
.pp-photo-hero__content .land-btn-pill-dark { opacity: 0; transform: translateY(20px); transition: opacity 600ms var(--land-ease-smooth), transform 600ms var(--land-ease-smooth); }
.pp-photo-hero.pp-visible .pp-photo-hero__content h2            { opacity: 1; transform: none; transition-delay: 100ms; }
.pp-photo-hero.pp-visible .pp-photo-hero__content p             { opacity: 1; transform: none; transition-delay: 220ms; }
.pp-photo-hero.pp-visible .pp-photo-hero__content .land-btn-pill-light,
.pp-photo-hero.pp-visible .pp-photo-hero__content .land-btn-pill-dark { opacity: 1; transform: none; transition-delay: 320ms; }

/* app-cta children stagger */
.pp-app-cta__inner h2,
.pp-app-cta__inner p,
.pp-app-cta__badges { opacity: 0; transform: translateY(16px); transition: opacity 500ms var(--land-ease-smooth), transform 500ms var(--land-ease-smooth); }
.pp-app-cta.pp-visible .pp-app-cta__inner h2     { opacity: 1; transform: none; transition-delay: 80ms; }
.pp-app-cta.pp-visible .pp-app-cta__inner p      { opacity: 1; transform: none; transition-delay: 180ms; }
.pp-app-cta.pp-visible .pp-app-cta__badges       { opacity: 1; transform: none; transition-delay: 280ms; }

@media (prefers-reduced-motion: reduce) {
    .pp-split, .pp-photo-hero, .pp-navy, .pp-app-cta,
    .pp-navy__screen, .pp-navy__text,
    .pp-photo-hero__content h2, .pp-photo-hero__content p,
    .pp-photo-hero__content .land-btn-pill-light, .pp-photo-hero__content .land-btn-pill-dark,
    .pp-app-cta__inner h2, .pp-app-cta__inner p, .pp-app-cta__badges {
        opacity: 1; transform: none; transition: none;
    }
}

/* ── pp-split: full-bleed two-column text+image ──────────────── */
/* Section IS the grid; inner wrapper is transparent (display:contents).
   Text column stays within max-width, image column bleeds to viewport edge. */
.pp-split {
    background: var(--land-bg-section);
    color: var(--land-ink);
    /* standard: [left-gutter] [text 44%] [image → edge] */
    display: grid;
    grid-template-columns:
        max(var(--land-space-md), calc((100% - var(--land-max-w)) / 2))
        minmax(0, calc(var(--land-max-w) * 0.44))
        1fr;
    grid-template-rows: minmax(clamp(540px, 84vh, 940px), auto);
}
.pp-split__inner { display: contents; }

/* Flip variant: [image ← edge] [text 44%] [right-gutter] */
.pp-split.pp-split--flip {
    background: var(--land-bg-alt);
    grid-template-columns:
        1fr
        minmax(0, calc(var(--land-max-w) * 0.44))
        max(var(--land-space-md), calc((100% - var(--land-max-w)) / 2));
}
/* Wide-media: text 38%, image 62% → edge */
.pp-split.pp-split--wide-media {
    grid-template-columns:
        max(var(--land-space-md), calc((100% - var(--land-max-w)) / 2))
        minmax(0, calc(var(--land-max-w) * 0.38))
        1fr;
}
/* Thin divider between consecutive splits */
.pp-split + .pp-split {
    border-top: 1px solid rgba(11,6,32,0.06);
}

/* Text: grid column 2 for standard/wide-media, column 2 for flip too */
.pp-split__text {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.25rem;
    padding: var(--land-space-lg) var(--land-space-lg) var(--land-space-lg) var(--land-space-md);
}
.pp-split--flip .pp-split__text {
    padding: var(--land-space-lg) var(--land-space-md) var(--land-space-lg) var(--land-space-lg);
}
.pp-split__text .land-btn-pill-dark,
.pp-split__text .land-btn-pill-light,
.pp-split__text .land-btn-pill-outline { margin-top: 0.75rem; }
.pp-split__text h2 {
    font-family: var(--land-font-display);
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: -0.03em;
    color: var(--land-ink);
}
.pp-split__text p {
    font-family: var(--land-font-body);
    font-size: 1.0625rem;
    color: rgba(11,6,32,0.62);
    line-height: 1.65;
    max-width: 24rem;
}

/* Image: grid column 3 (standard/wide-media), column 1 (flip) */
.pp-split__media {
    grid-column: 3;
    grid-row: 1;
    overflow: hidden;
}
.pp-split--flip .pp-split__media {
    grid-column: 1;
}
/* Register so --parallax-scale can be transitioned independently of --parallax-y */
@property --parallax-scale {
    syntax: '<number>';
    inherits: false;
    initial-value: 1;
}
.pp-split__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(100%) contrast(1.02) brightness(1.08);
    display: block;
    transform: translateY(var(--parallax-y, 0px)) scale(var(--parallax-scale));
    transition: --parallax-scale 600ms var(--land-ease-smooth),
                filter 600ms var(--land-ease-smooth);
    will-change: transform;
}
.pp-split:hover .pp-split__media img {
    --parallax-scale: 1.04;
    filter: grayscale(100%) contrast(1.04) brightness(1.12);
}
.pp-split__media--tall img { object-position: center 20%; }

@media (max-width: 860px) {
    /* Switch from CSS grid + display:contents to flex — avoids Safari display:contents bugs */
    .pp-split,
    .pp-split--flip,
    .pp-split--wide-media {
        display: flex !important;
        flex-direction: column;
    }
    .pp-split__inner {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    .pp-split__media,
    .pp-split--flip .pp-split__media {
        width: 100%;
        order: 0;
        aspect-ratio: 4/3;
        grid-column: unset;
        grid-row: unset;
    }
    .pp-split__text,
    .pp-split--flip .pp-split__text {
        width: 100%;
        order: 1;
        grid-column: unset;
        grid-row: unset;
        padding: var(--land-space-md) var(--land-space-md) var(--land-space-lg);
    }
}
@media (max-width: 560px) {
    .pp-split__text h2 { font-size: clamp(1.75rem, 8vw, 2.5rem); }
    .pp-split__media { aspect-ratio: 3/2; }
    .pp-photo-hero { min-height: 55vh; }
    .pp-photo-hero__content > * { max-width: 100%; }
    .pp-navy__inner { grid-template-columns: 1fr; }
    .pp-app-cta__inner h2 { font-size: clamp(2rem, 10vw, 3rem); }
}
@media (prefers-reduced-motion: reduce) {
    .pp-split__media img { transition: none; }
    .pp-split:hover .pp-split__media img { transform: none; }
}

/* ── pp-photo-hero: full-bleed grayscale photo + text overlay ── */
.pp-photo-hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--land-navy);
}
.pp-photo-hero__bg {
    position: absolute;
    inset: 0;
}
.pp-photo-hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(1,33,105,0.92) 0%, rgba(1,33,105,0.55) 42%, rgba(1,33,105,0.08) 100%),
        linear-gradient(to top,   rgba(1,33,105,0.55) 0%, transparent 35%);
}
.pp-photo-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(100%) contrast(1.05) brightness(0.88);
    display: block;
    animation: pp-ken-burns 14s ease-in-out alternate infinite;
    will-change: transform;
}
@keyframes pp-ken-burns {
    from { transform: scale(1.06) translateX(-1%); }
    to   { transform: scale(1.01) translateX(1%); }
}
@media (prefers-reduced-motion: reduce) {
    .pp-photo-hero__bg img { animation: none; }
}
.pp-photo-hero__content {
    position: relative;
    z-index: 1;
    max-width: var(--land-max-w);
    margin: 0 auto;
    width: 100%;
    padding: var(--land-space-xl) var(--land-space-md);
    color: var(--land-white);
}
/* keep text in left half so photo shows on right */
.pp-photo-hero__content > * {
    max-width: 48%;
}
@media (max-width: 640px) {
    .pp-photo-hero__content > * { max-width: 100%; }
}
.pp-photo-hero__content h2 {
    font-family: var(--land-font-display);
    font-size: clamp(2.75rem, 6.5vw, 5.5rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.02;
    margin-bottom: 1.25rem;
    color: var(--land-white);
}
.pp-photo-hero__content p {
    font-family: var(--land-font-body);
    font-size: 1.125rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin-bottom: var(--land-space-md);
    max-width: 30rem;
}

/* ── pp-navy: dark navy, screen left + text right ────────────── */
.pp-navy {
    background: var(--land-navy);
    color: var(--land-white);
    border-top: 1px solid rgba(255,255,255,0.06);
}
.pp-navy__inner {
    max-width: var(--land-max-w);
    margin: 0 auto;
    padding: var(--land-space-xl) var(--land-space-md);
    display: grid;
    grid-template-columns: 52fr 48fr;
    gap: var(--land-space-lg);
    align-items: center;
}
.pp-navy__screen {
    max-width: 340px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    /* phone body */
    background: #0e0e18;
    border-radius: 48px;
    padding: 18px 10px 22px;
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow:
        0 0 0 1px rgba(0,0,0,0.8),
        0 40px 80px rgba(0,0,0,0.55),
        inset 0 1px 0 rgba(255,255,255,0.06);
}
/* Dynamic Island pill */
.pp-navy__screen::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 88px;
    height: 7px;
    background: #000;
    border-radius: 10px;
    z-index: 1;
}
/* Home indicator */
.pp-navy__screen::after {
    content: '';
    position: absolute;
    bottom: 9px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 4px;
    background: rgba(255,255,255,0.28);
    border-radius: 2px;
}
.pp-navy__screen img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 36px;
}
.pp-navy__text h2 {
    font-family: var(--land-font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.025em;
    line-height: 1.06;
    margin-bottom: 1rem;
    color: var(--land-white);
}
.pp-navy__text p {
    font-family: var(--land-font-body);
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.65;
    margin-bottom: var(--land-space-md);
}
@media (max-width: 860px) {
    .pp-navy__inner { grid-template-columns: 1fr; }
    .pp-navy__screen { max-width: 280px; }
}

/* ── pp-app-cta: sky-blue CTA with store badges ──────────────── */
.pp-app-cta {
    background: var(--land-company-blue);
    color: var(--land-white);
    text-align: center;
}
.pp-app-cta__inner {
    max-width: var(--land-max-w);
    margin: 0 auto;
    padding: var(--land-space-xl) var(--land-space-md);
}
.pp-app-cta__inner h2 {
    font-family: var(--land-font-display);
    font-size: clamp(2.75rem, 6vw, 5rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.02;
    margin-bottom: 1rem;
    color: var(--land-white);
}
.pp-app-cta__inner p {
    font-family: var(--land-font-body);
    font-size: 1.125rem;
    color: rgba(255,255,255,0.88);
    line-height: 1.6;
    margin-bottom: var(--land-space-md);
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}
.pp-app-cta__badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
/* On bright blue background, override dark pill to white */
.pp-app-cta .land-btn-pill-dark {
    background: var(--land-ink);
    color: var(--land-white);
}
.pp-app-cta .land-btn-pill-dark:hover {
    background: #1a1030;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.28);
}
.pp-app-cta .land-btn-pill-outline {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.9);
    color: var(--land-white);
}
.pp-app-cta .land-btn-pill-outline:hover {
    background: rgba(255,255,255,0.25);
}

/* ── "Brzy k dispozici" tooltip on app badges ────────────────── */
.land-soon {
    position: relative;
    display: inline-flex;
}
.land-soon::after {
    content: 'Brzy k dispozici';
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: rgba(11,6,32,0.92);
    color: #fff;
    font-family: var(--land-font-body);
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    padding: 0.3rem 0.75rem;
    border-radius: 9999px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 180ms, transform 180ms;
}
.land-soon:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ═══════════════════════════════════════════════════════════════
   Mobile phones — responsive overrides
   ═══════════════════════════════════════════════════════════════ */

/* Hero title: "Podpořte umělce," fits on one line at 375px */
@media (max-width: 480px) {
    .land-hero-content .land-hero-title {
        font-size: clamp(1.625rem, 7vw, 2.5rem);
    }

    /* Bigtype: "onemanager.art" fits at 375px */
    .land-bigtype-brand,
    .land-bigtype-word {
        font-size: clamp(1.85rem, 8.5vw, 3.5rem);
    }
    .land-bigtype-inner {
        padding-top: clamp(2.5rem, 8vw, 4rem);
        padding-bottom: clamp(2.5rem, 8vw, 4rem);
    }

    /* CTAs: stack vertically and fill width on very small screens */
    .land-hero-ctas {
        flex-direction: column;
        align-items: center;
    }
    .land-hero-ctas .land-btn-pill-dark,
    .land-hero-ctas .land-btn-pill-outline {
        width: 100%;
        justify-content: center;
        align-self: stretch;
    }

    /* Split section text: slightly tighter padding on small phones */
    .pp-split__text,
    .pp-split--flip .pp-split__text {
        padding: var(--land-space-md) var(--land-space-sm) var(--land-space-md);
    }
}

/* Persona toggle: 3 Czech labels need smaller size below 480px */
@media (max-width: 480px) {
    .land-hero .persona-toggle {
        height: 2.25rem;
    }
    .land-hero .persona-tab {
        font-size: 0.75rem;
        padding: 0 0.625rem;
    }
}
@media (max-width: 360px) {
    .land-hero .persona-tab {
        font-size: 0.6875rem;
        padding: 0 0.5rem;
    }
}

/* ── Organizer Impact Section ──────────────────────────────────── */
.pp-organizer {
    background: #f5f7fa;
    color: #000000;
    text-align: center;
}
.pp-organizer__inner {
    max-width: 52rem;
    margin: 0 auto;
    padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 5rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}
.pp-organizer__badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 9999px;
    background: #012169;
    color: #ffffff;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.pp-organizer__inner h2 {
    font-family: var(--land-font-display);
    font-size: clamp(2rem, 4vw, 3.75rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: #000000;
}
.pp-organizer__inner p {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: rgba(0,0,0,0.65);
    line-height: 1.65;
    max-width: 44ch;
}
.pp-organizer__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
    text-align: left;
}
.pp-organizer__list li {
    font-size: 1rem;
    color: rgba(0,0,0,0.75);
    line-height: 1.5;
}
.pp-organizer .land-btn-pill-dark { align-self: center; }

/* ── ORGANIZER scroll-driven section (PayPal-style) ─────────── */

/* .land-shell section { overflow: hidden } breaks sticky — override */
.pp-organizer { overflow: visible !important; }

.pp-org-wrapper {
    height: 300vh;
    position: relative;
    background: #f5f7fa;
    overflow: visible;
}
.pp-org-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--land-space-lg);
    max-width: var(--land-max-w);
    margin: 0 auto;
    padding: 0 var(--land-space-md);
}
.pp-org-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
    text-align: left;
}
.pp-org-left h2 {
    font-family: var(--land-font-display);
    font-size: clamp(2rem, 3.5vw, 3.25rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: #000;
}
.pp-org-rows {
    display: flex;
    flex-direction: column;
}
.pp-org-row {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.25rem 0;
    border-top: 1px solid rgba(0,0,0,0.09);
    opacity: 0.28;
    transition: opacity 500ms cubic-bezier(0.16,1,0.3,1);
    cursor: default;
}
.pp-org-row:last-child { border-bottom: 1px solid rgba(0,0,0,0.09); }
.pp-org-row--active { opacity: 1; }
.pp-org-row-num {
    font-family: var(--land-font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(0,0,0,0.22);
    flex-shrink: 0;
    padding-top: 0.2rem;
    min-width: 1.5rem;
}
.pp-org-row--active .pp-org-row-num { color: var(--land-navy); }
.pp-org-row-body strong {
    display: block;
    font-family: var(--land-font-display);
    font-size: 1.0625rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 0.3rem;
}
.pp-org-row-body p {
    font-family: var(--land-font-body);
    font-size: 0.9375rem;
    color: rgba(0,0,0,0.62);
    line-height: 1.55;
    margin: 0;
}
.pp-org-right {
    display: flex;
    align-items: center;
    justify-content: center;
}
.pp-org-card-stack {
    position: relative;
    width: clamp(260px, 38vw, 420px);
    aspect-ratio: 3/4;
}
.pp-org-card {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    overflow: hidden;
    background: #d4d4d4;
    transition:
        transform 620ms cubic-bezier(0.16,1,0.3,1),
        opacity   480ms cubic-bezier(0.16,1,0.3,1);
    will-change: transform, opacity;
}
.pp-org-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    pointer-events: none;
    filter: grayscale(100%) contrast(1.08) brightness(0.92);
}
.pp-org-card--active {
    transform: translateX(0) scale(1);
    opacity: 1;
    z-index: 3;
}
.pp-org-card--prev {
    transform: translateX(-52px) scale(0.91);
    opacity: 0;
    z-index: 1;
}
.pp-org-card--next {
    transform: translateX(52px) scale(0.91);
    opacity: 0;
    z-index: 1;
}
/* Mobile: disable sticky, stack vertically */
@media (max-width: 768px) {
    .pp-org-wrapper { height: auto; }
    .pp-org-sticky {
        position: static;
        height: auto;
        grid-template-columns: 1fr;
        padding: clamp(3rem, 8vw, 5rem) var(--land-space-md);
        gap: 2.5rem;
    }
    .pp-org-card-stack {
        width: min(300px, calc(100vw - 3rem));
        margin: 0 auto;
    }
    .pp-org-card {
        position: static !important;
        width: 100%;
        aspect-ratio: 3/4;
        transform: none !important;
        opacity: 1 !important;
        transition: none !important;
    }
    .pp-org-card--prev,
    .pp-org-card--next { display: none; }
    .pp-org-row { opacity: 1 !important; transition: none !important; }
}
@media (prefers-reduced-motion: reduce) {
    .pp-org-card { transition: none !important; }
    .pp-org-row  { transition: none !important; }
    .pp-org-wrapper { height: auto !important; }
    .pp-org-sticky { position: static !important; height: auto !important; }
}
