/* Hybrid landing: openmud video + search */
:root {
    --bg: #15120f;
    --border: #332a22;
    --text: #efe8dd;
    --text-secondary: #b4a692;
    --earth: #bb9871;
}

* { box-sizing: border-box; }
body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.lp-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 8px 20px;
    min-height: 44px;
    background: rgba(21, 18, 15, 0.88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}
.lp-brand-menu { position: relative; }
.lp-nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 28px;
    color: var(--text);
    font-weight: 600;
    cursor: pointer;
    list-style: none;
}
.lp-nav-logo-img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex-shrink: 0;
}
.lp-nav-caret {
    opacity: 0.9;
    display: inline-flex;
    align-items: center;
}
.lp-nav-logo::-webkit-details-marker { display: none; }
.lp-brand-menu-panel {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: min(300px, 86vw);
    background: #1d1914;
    border: 1px solid #332a22;
    border-radius: 10px;
    padding: 8px;
    display: grid;
    gap: 2px;
}
.lp-brand-menu-panel a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    padding: 8px 10px;
    border-radius: 6px;
}
.lp-brand-menu-panel a:hover { color: var(--text); background: rgba(255,255,255,0.06); }

.lp-hero-video-wrap {
    position: relative;
    height: calc(100vh - 44px);
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.lp-video-bg { position: absolute; inset: -15% -25%; z-index: 0; }
.lp-video-bg video { width: 100%; height: 100%; object-fit: cover; }
.lp-video-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(16,12,9,0.75), rgba(16,12,9,0.95));
}
.lp-hero {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 820px;
    text-align: center;
    padding: 30px 20px;
}
.lp-hero-eyebrow {
    color: #d3b48f;
    border: 1px solid rgba(187,152,113,0.4);
    border-radius: 999px;
    padding: 5px 14px;
    font-size: 0.8rem;
    text-decoration: none;
}
.lp-hero-title {
    margin: 26px 0 12px;
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
}
.lp-hero-title em { font-style: normal; color: var(--text-secondary); }
.lp-hero-sub {
    margin: 0 auto 24px;
    max-width: 640px;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.lp-search-form {
    display: flex;
    align-items: center;
    max-width: 700px;
    margin: 0 auto 18px;
    background: rgba(187,152,113,0.1);
    border: 1px solid rgba(187,152,113,0.35);
    border-radius: 12px;
    overflow: hidden;
}
.lp-search-input {
    flex: 1;
    border: 0;
    background: transparent;
    color: var(--text);
    font-size: 1rem;
    padding: 14px 16px;
    outline: none;
}
.lp-search-btn {
    border: 0;
    background: transparent;
    color: var(--text-secondary);
    padding: 12px 14px;
    cursor: pointer;
}
.lp-search-btn:hover { color: var(--text); }

.lp-hero-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.lp-btn-secondary {
    color: var(--text-secondary);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    padding: 11px 20px;
    text-decoration: none;
    font-size: 0.9rem;
}
.lp-btn-secondary:hover { color: var(--text); border-color: rgba(255,255,255,0.35); }

.lp-search-results {
    position: fixed;
    top: 14vh;
    left: 50%;
    transform: translateX(-50%);
    width: min(720px, calc(100vw - 30px));
    max-height: 72vh;
    overflow: auto;
    z-index: 30;
    padding: 18px;
    background: rgba(18,15,12,0.95);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 12px;
}
.lp-close {
    float: right;
    color: #9f907e;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    cursor: pointer;
}
.lp-source {
    display: block;
    color: #d8c4ad;
    text-decoration: none;
    margin: 6px 0;
}
.lp-source:hover { color: #f2e5d5; }
