*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root { --navy: #0D1B2A; --gold: #C9A84C; --serif: 'Playfair Display', serif; --sans: 'Inter', sans-serif; }
body.lp-login { background: var(--navy); min-height: 100vh; display: flex; align-items: center; justify-content: center; font-family: var(--sans); -webkit-font-smoothing: antialiased; }
body.lp-login::before { content: ''; position: fixed; inset: 0; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4'%3E%3Crect width='1' height='1' fill='rgba(255,255,255,0.02)'/%3E%3C/svg%3E"); pointer-events: none; }
.lp-login__wrap { width: 100%; max-width: 400px; padding: 24px; position: relative; }
.lp-login__logo { text-align: center; margin-bottom: 32px; }
.lp-login__logo img { filter: brightness(0) invert(1); opacity: 0.85; margin: 0 auto; }
.lp-login__label { text-align: center; font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 40px; }
.lp-login__form { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); padding: 40px; }
.lp-login__error { background: rgba(220,38,38,0.15); border: 1px solid rgba(220,38,38,0.3); color: #FCA5A5; font-size: 12px; padding: 10px 14px; margin-bottom: 20px; }
.lp-form__row { margin-bottom: 20px; }
.lp-form__label { display: block; font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 8px; }
.lp-form__input { width: 100%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); color: #fff; padding: 12px 14px; font-family: var(--sans); font-size: 0.9rem; font-weight: 300; outline: none; transition: border-color 0.2s; }
.lp-form__input:focus { border-color: var(--gold); }
.lp-btn { width: 100%; margin-top: 8px; background: var(--gold); color: #fff; border: none; font-family: var(--sans); font-size: 13px; font-weight: 500; letter-spacing: 0.08em; padding: 14px; cursor: pointer; transition: background 0.2s; }
.lp-btn:hover { background: #b8943f; }
.lp-login__note { margin-top: 24px; text-align: center; font-size: 11px; color: rgba(255,255,255,0.2); line-height: 1.6; }
.lp-login__note a { color: rgba(255,255,255,0.3); text-decoration: underline; }

/* ─── LP DASHBOARD ─── */
body.lp-dashboard { background: #F5F3EF; color: #0D1B2A; font-family: 'Inter', sans-serif; margin: 0; min-height: 100vh; }

.lp-nav { display: flex; align-items: center; justify-content: space-between; padding: 0 2.5rem; height: 60px; background: #0D1B2A; position: sticky; top: 0; z-index: 50; }
.lp-nav__logo { display: flex; align-items: center; gap: 0.75rem; color: #FAFAF8; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; }
.lp-nav__logo img { filter: brightness(0) invert(1); }
.lp-nav__user { display: flex; align-items: center; gap: 1.5rem; color: rgba(250,250,248,0.6); font-size: 0.85rem; }
.lp-nav__logout { color: #C9A84C; text-decoration: none; font-size: 0.8rem; letter-spacing: 0.05em; }
.lp-nav__logout:hover { color: #fff; }

.lp-main { max-width: 1200px; margin: 0 auto; padding: 2.5rem 2rem 4rem; }

.lp-header { margin-bottom: 2.5rem; border-bottom: 1px solid rgba(13,27,42,0.1); padding-bottom: 1.5rem; }
.lp-header__greeting { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: #0D1B2A; margin-bottom: 0.25rem; }
.lp-header__date { font-size: 0.85rem; color: rgba(13,27,42,0.45); letter-spacing: 0.05em; }

.lp-section__title { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: #0D1B2A; margin: 0 0 1.5rem; letter-spacing: -0.01em; }

.lp-portfolio__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 900px) { .lp-portfolio__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .lp-portfolio__grid { grid-template-columns: 1fr; } }

.lp-company-card { background: #fff; border: 1px solid rgba(13,27,42,0.08); border-radius: 4px; padding: 1.5rem; }
.lp-company-card--raising { border-color: #C9A84C; }
.lp-company-card__header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1rem; min-height: 44px; }
.lp-company-card__logo { height: 36px; object-fit: contain; object-position: left; }
.lp-company-card__status { font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.2rem 0.6rem; border-radius: 2px; white-space: nowrap; }
.lp-company-card__status--active { background: #E8F5E9; color: #2E7D32; }
.lp-company-card__status--raising { background: #FFF8E1; color: #C9A84C; }
.lp-company-card__name { font-size: 0.9rem; font-weight: 600; color: #0D1B2A; margin-bottom: 0.5rem; }
.lp-company-card__desc { font-size: 0.8rem; color: rgba(13,27,42,0.6); line-height: 1.55; margin-bottom: 0.75rem; }
.lp-company-card__meta { display: flex; gap: 1rem; font-size: 0.72rem; color: rgba(13,27,42,0.4); margin-bottom: 1rem; }
.lp-docs__label { font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(13,27,42,0.4); margin-bottom: 0.3rem; }
.lp-docs__empty { font-size: 0.78rem; color: rgba(13,27,42,0.4); font-style: italic; }

.lp-contact-section { margin-top: 2.5rem; }
.lp-contact-block { background: #0D1B2A; color: #FAFAF8; padding: 2rem 2.5rem; border-radius: 4px; display: flex; align-items: center; gap: 3rem; }
.lp-contact-block__title { font-family: 'Playfair Display', serif; font-size: 1.2rem; white-space: nowrap; }
.lp-contact-block__text { font-size: 0.85rem; color: rgba(250,250,248,0.6); line-height: 1.6; flex: 1; }
.lp-contact-block__cta { color: #C9A84C; text-decoration: none; font-size: 0.85rem; white-space: nowrap; }
.lp-contact-block__cta:hover { color: #fff; }

.lp-footer { text-align: center; padding: 1.5rem; font-size: 0.75rem; color: rgba(13,27,42,0.35); border-top: 1px solid rgba(13,27,42,0.08); }
