/* ═══════════════════════════════════════════════════════════════════════════
   landing.css — peer v2 landing page
   Font: Plus Jakarta Sans (self-hosted, see /css/fonts/)
   ═══════════════════════════════════════════════════════════════════════════ */

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('/css/fonts/PlusJakartaSans-Regular.woff2') format('woff2');
    font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('/css/fonts/PlusJakartaSans-Medium.woff2') format('woff2');
    font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('/css/fonts/PlusJakartaSans-SemiBold.woff2') format('woff2');
    font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('/css/fonts/PlusJakartaSans-Bold.woff2') format('woff2');
    font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('/css/fonts/PlusJakartaSans-ExtraBold.woff2') format('woff2');
    font-weight: 800; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('/css/fonts/PlusJakartaSans-ExtraBold.woff2') format('woff2');
    font-weight: 900; font-style: normal; font-display: swap;
}

/* ── Variables ────────────────────────────────────────────────────────────── */
:root {
    --brand:   #f97316;
    --brand-d: #ea6a08;
    --text:    #0a0a0a;
    --muted:   #666;
    --line:    #e8e8e8;
    --bg:      #ffffff;
    --font:    'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --radius:  10px;
}

/* ── Reset ────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font); background: var(--bg); color: var(--text); font-size: 16px; line-height: 1.6; }
a { color: var(--brand); text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── Header ───────────────────────────────────────────────────────────────── */
.lp-header {
    height: 62px;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    position: sticky;
    top: 0;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 100;
}

.lp-logo {
    display: flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
}
.lp-logo-mark {
    width: 28px; height: 28px;
    background: var(--brand);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.lp-logo-mark svg { width: 15px; height: 15px; fill: #fff; }
.lp-logo-name {
    font-size: 16px; font-weight: 800; color: var(--text); letter-spacing: -.5px;
}
.lp-logo-name span { color: var(--brand); }

.lp-nav { display: flex; align-items: center; gap: 4px; }
.lp-nav-item {
    position: relative;
    padding: 7px 14px;
    font-size: 12px; font-weight: 700; color: var(--muted);
    text-decoration: none; letter-spacing: .6px; text-transform: uppercase;
    border-radius: 6px;
    transition: color .2s, background .2s;
}
.lp-nav-item:hover { color: var(--text); background: #f5f5f5; text-decoration: none; }
.lp-nav-item.active { color: var(--text); }
.lp-nav-sub {
    font-size: 9px; font-weight: 700; color: #ef4444; letter-spacing: 1px;
    display: flex; align-items: center; gap: 4px;
    padding-left: 14px; margin-top: 1px; padding-bottom: 2px;
}
.lp-live-dot {
    width: 5px; height: 5px;
    background: #ef4444; border-radius: 50%;
    animation: lp-blink 1.4s infinite;
}
@keyframes lp-blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.lp-hdr-right { display: flex; align-items: center; gap: 10px; }
.lp-btn-login {
    font-family: var(--font); font-size: 12px; font-weight: 700;
    letter-spacing: .5px; text-transform: uppercase;
    color: #444; background: none;
    border: 1.5px solid var(--line); border-radius: 7px; padding: 8px 18px;
    cursor: pointer; transition: border-color .2s, color .2s;
}
.lp-btn-login:hover { border-color: #aaa; color: var(--text); }
.lp-btn-watch {
    font-family: var(--font); font-size: 12px; font-weight: 800;
    letter-spacing: .5px; text-transform: uppercase;
    color: #fff; background: var(--brand); border: none;
    border-radius: 7px; padding: 8px 18px; cursor: pointer;
    transition: background .2s;
}
.lp-btn-watch:hover { background: var(--brand-d); }
.lp-menu-btn {
    background: none; border: none; cursor: pointer;
    display: flex; flex-direction: column; gap: 5px; padding: 4px; margin-left: 4px;
}
.lp-menu-btn span { display: block; width: 20px; height: 1.5px; background: #888; border-radius: 1px; }

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.lp-hero {
    display: flex;
    align-items: center;
    gap: 56px;
    padding: 72px 64px 80px;
    max-width: 1200px;
    margin: 0 auto;
    min-height: calc(100vh - 62px);
}

.lp-hero-image {
    flex: 0 0 460px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(145deg, #1a0e05 0%, #2d1a0a 35%, #0a0a14 70%, #080808 100%);
    position: relative;
    display: flex; align-items: center; justify-content: center;
}
.lp-hero-image::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 40% 60%, rgba(249,115,22,.2) 0%, transparent 65%);
}
.lp-hero-img-placeholder { position: relative; text-align: center; }
.lp-hero-img-placeholder svg { width: 56px; height: 56px; stroke: var(--brand); stroke-width: 1.5; fill: none; opacity: .35; }
.lp-hero-img-placeholder p { font-size: 12px; font-weight: 600; color: #444; margin-top: 8px; }
.lp-hero-live-chip {
    position: absolute; top: 20px; left: 20px;
    background: rgba(0,0,0,.65); backdrop-filter: blur(8px);
    border-radius: 20px; padding: 6px 14px;
    display: flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 700; color: #fff;
}

.lp-hero-content { flex: 1; max-width: 580px; }
.lp-eyebrow {
    font-size: 11px; font-weight: 800; letter-spacing: 1.2px;
    text-transform: uppercase; color: var(--brand);
    margin-bottom: 20px;
    display: flex; align-items: center; gap: 8px;
}
.lp-eyebrow::before {
    content: ''; display: block;
    width: 24px; height: 2px; background: var(--brand); border-radius: 1px;
}
.lp-headline {
    font-size: 60px; font-weight: 900;
    line-height: 1.04; letter-spacing: -2.5px;
    color: var(--text); margin-bottom: 24px;
}
.lp-headline em { font-style: normal; color: var(--brand); }
.lp-body {
    font-size: 16px; font-weight: 400; line-height: 1.7;
    color: var(--muted); margin-bottom: 20px; max-width: 460px;
}
.lp-slogan {
    font-size: 13px; font-weight: 700; color: #aaa;
    margin-bottom: 36px; font-style: italic; letter-spacing: .2px;
}
.lp-slogan span { color: var(--brand); }

.lp-cta-row { display: flex; align-items: center; gap: 16px; margin-bottom: 40px; }
.lp-btn-primary {
    font-family: var(--font); font-size: 15px; font-weight: 800;
    color: #fff; background: var(--text); border: none;
    border-radius: var(--radius); padding: 15px 30px;
    cursor: pointer; letter-spacing: -.2px;
    display: flex; align-items: center; gap: 10px;
    transition: background .2s; text-decoration: none;
}
.lp-btn-primary:hover { background: #222; text-decoration: none; color: #fff; }
.lp-btn-primary svg { width: 18px; height: 18px; stroke: #fff; stroke-width: 2.5; fill: none; flex-shrink: 0; }
.lp-btn-secondary {
    font-family: var(--font); font-size: 15px; font-weight: 700;
    color: var(--text); background: none;
    border: 1.5px solid var(--line); border-radius: var(--radius); padding: 15px 26px;
    cursor: pointer; transition: border-color .2s; text-decoration: none;
}
.lp-btn-secondary:hover { border-color: #aaa; text-decoration: none; color: var(--text); }

.lp-location-wrap { position: relative; max-width: 420px; }
.lp-location-label {
    font-size: 11px; font-weight: 700; color: #aaa;
    letter-spacing: .6px; text-transform: uppercase;
    margin-bottom: 8px; display: flex; align-items: center; gap: 6px;
}
.lp-location-label svg { width: 13px; height: 13px; stroke: var(--brand); stroke-width: 2; fill: none; }
.lp-location-select {
    width: 100%;
    border: 1.5px solid var(--line); border-radius: var(--radius);
    padding: 14px 44px 14px 16px;
    font-family: var(--font); font-size: 15px; font-weight: 500; color: var(--text);
    -webkit-appearance: none; cursor: pointer; background: #fff;
    transition: border-color .2s; outline: none;
}
.lp-location-select:hover, .lp-location-select:focus { border-color: #aaa; }
.lp-location-arrow {
    position: absolute; right: 14px; bottom: 14px; pointer-events: none;
}
.lp-location-arrow svg { width: 18px; height: 18px; stroke: #888; stroke-width: 2; fill: none; }

/* ── Stats bar ────────────────────────────────────────────────────────────── */
.lp-stats {
    background: var(--brand);
    padding: 32px 64px;
    display: flex; align-items: center; justify-content: center;
}
.lp-stat { flex: 1; text-align: center; max-width: 220px; position: relative; }
.lp-stat:not(:last-child)::after {
    content: ''; position: absolute; right: 0; top: 10%; height: 80%;
    width: 1px; background: rgba(255,255,255,.25);
}
.lp-stat-num {
    font-size: 36px; font-weight: 900; color: #fff;
    letter-spacing: -1.5px; line-height: 1;
}
.lp-stat-label {
    font-size: 11px; font-weight: 700; color: rgba(255,255,255,.7);
    letter-spacing: .8px; text-transform: uppercase; margin-top: 5px;
}

/* ── Features ─────────────────────────────────────────────────────────────── */
.lp-features { padding: 80px 64px; max-width: 1200px; margin: 0 auto; }
.lp-section-label {
    font-size: 11px; font-weight: 800; letter-spacing: 1.2px;
    text-transform: uppercase; color: var(--brand); margin-bottom: 10px;
}
.lp-section-heading {
    font-size: 38px; font-weight: 900; letter-spacing: -1.5px;
    color: var(--text); margin-bottom: 52px; max-width: 480px; line-height: 1.1;
}
.lp-feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.lp-feat-card {
    border: 1.5px solid #ebebeb; border-radius: 16px; padding: 26px 22px;
    transition: border-color .2s, transform .2s;
}
.lp-feat-card:hover { border-color: #d0d0d0; transform: translateY(-2px); }
.lp-feat-icon {
    width: 42px; height: 42px; background: #fff5ee; border-radius: 9px;
    display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.lp-feat-icon svg { width: 20px; height: 20px; stroke: var(--brand); stroke-width: 2; fill: none; }
.lp-feat-title { font-size: 17px; font-weight: 800; color: var(--text); margin-bottom: 6px; letter-spacing: -.3px; }
.lp-feat-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── Footer ───────────────────────────────────────────────────────────────── */
.lp-footer {
    background: var(--text); padding: 36px 64px;
    display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.lp-footer-brand {}
.lp-footer-logo { display: flex; align-items: center; gap: 9px; margin-bottom: 4px; }
.lp-footer-logo-name { font-size: 14px; font-weight: 800; color: #fff; letter-spacing: -.3px; }
.lp-footer-logo-name span { color: var(--brand); }
.lp-footer-slogan { font-size: 12px; color: #555; font-style: italic; }
.lp-footer-links { display: flex; gap: 22px; }
.lp-footer-links a {
    font-size: 11px; font-weight: 700; color: #555;
    text-decoration: none; letter-spacing: .5px; text-transform: uppercase;
    transition: color .2s;
}
.lp-footer-links a:hover { color: #fff; }
.lp-footer-copy { font-size: 11px; color: #444; font-weight: 500; }

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .lp-hero { flex-direction: column; padding: 40px 24px 60px; min-height: auto; gap: 36px; }
    .lp-hero-image { flex: none; width: 100%; height: 260px; }
    .lp-headline { font-size: 40px; letter-spacing: -1.5px; }
    .lp-stats { padding: 24px 24px; flex-wrap: wrap; gap: 16px; }
    .lp-stat:not(:last-child)::after { display: none; }
    .lp-features { padding: 48px 24px; }
    .lp-feat-grid { grid-template-columns: 1fr; }
    .lp-footer { flex-direction: column; padding: 32px 24px; gap: 24px; text-align: center; }
    .lp-footer-links { flex-wrap: wrap; justify-content: center; }
    .lp-nav { display: none; }
    .lp-header { padding: 0 20px; }
}
