/* IRPA Loft Manager — lm.irpa.me product landing */
.lm-page { background: #050505; color: #e5e5e5; min-height: 100vh; }
.lm-header {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: rgba(5,5,5,.85); backdrop-filter: blur(16px);
}
.lm-header-inner {
  max-width: 72rem; margin: 0 auto; padding: .85rem 1rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.lm-brand { display: flex; align-items: center; gap: .65rem; text-decoration: none; color: inherit; }
.lm-brand-mark {
  width: 2.25rem; height: 2.25rem; border-radius: .65rem;
  background: linear-gradient(135deg, #d4a63a 0%, #8b6914 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; box-shadow: 0 0 0 1px rgba(212,166,58,.35);
}
.lm-brand-text { line-height: 1.1; }
.lm-brand-title { font-weight: 800; font-size: .95rem; color: #fff; }
.lm-brand-sub { font-size: .65rem; color: #888; letter-spacing: .04em; text-transform: uppercase; }
.lm-nav { display: none; align-items: center; gap: 1.25rem; font-size: .875rem; }
@media (min-width: 768px) { .lm-nav { display: flex; } }
.lm-nav a { color: #aaa; text-decoration: none; transition: color .2s; }
.lm-nav a:hover { color: #d4a63a; }
.lm-header-actions { display: flex; align-items: center; gap: .5rem; flex-shrink: 0; }

.lm-hero {
  position: relative; overflow: hidden;
  padding: 3.5rem 1rem 4rem;
}
.lm-hero-glow {
  position: absolute; inset: -30% auto auto 50%; transform: translateX(-50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse, rgba(212,166,58,.16) 0%, transparent 68%);
  pointer-events: none;
}
.lm-hero-inner {
  max-width: 72rem; margin: 0 auto; position: relative;
  display: grid; gap: 2.5rem; align-items: center;
}
@media (min-width: 1024px) {
  .lm-hero-inner { grid-template-columns: 1.05fr .95fr; gap: 3rem; }
  .lm-hero { padding: 4.5rem 1rem 5rem; }
}
.lm-kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: #d4a63a; margin-bottom: 1rem;
}
.lm-kicker-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 10px #22c55e; }
.lm-hero h1 {
  font-size: clamp(2rem, 5vw, 3.35rem); font-weight: 900; line-height: 1.12;
  color: #fff; margin-bottom: 1rem;
}
.lm-hero-lead { font-size: 1.05rem; color: #9ca3af; line-height: 1.65; max-width: 34rem; margin-bottom: 1.75rem; }
.lm-hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 1.5rem; }
.lm-hero-badges { display: flex; flex-wrap: wrap; gap: .5rem; }
.lm-badge {
  font-size: .72rem; padding: .35rem .65rem; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.04); color: #bbb;
}
.lm-preview {
  border-radius: 1.25rem; overflow: hidden;
  border: 1px solid rgba(212,166,58,.25);
  box-shadow: 0 24px 80px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.04);
  background: #fff; aspect-ratio: 1123/980; max-height: 420px;
}
.lm-preview img { width: 100%; height: 100%; object-fit: cover; object-position: top left; display: block; }
.lm-preview-placeholder {
  width: 100%; height: 100%; min-height: 280px;
  background: linear-gradient(145deg, #f8f8f8 0%, #ececec 100%);
  display: flex; align-items: center; justify-content: center;
  color: #666; font-size: .85rem; text-align: center; padding: 1rem;
}

.lm-section { max-width: 72rem; margin: 0 auto; padding: 3rem 1rem; }
.lm-section-title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; color: #fff; margin-bottom: .5rem; }
.lm-section-sub { color: #888; margin-bottom: 2rem; max-width: 36rem; }
.lm-features { display: grid; gap: 1rem; }
@media (min-width: 640px) { .lm-features { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .lm-features { grid-template-columns: repeat(3, 1fr); } }
.lm-feature {
  border-radius: 1rem; padding: 1.25rem;
  border: 1px solid rgba(255,255,255,.07); background: rgba(255,255,255,.03);
  transition: border-color .2s, transform .2s;
}
.lm-feature:hover { border-color: rgba(212,166,58,.35); transform: translateY(-2px); }
.lm-feature-icon { font-size: 1.75rem; margin-bottom: .65rem; }
.lm-feature h3 { font-weight: 700; color: #fff; margin-bottom: .35rem; font-size: 1rem; }
.lm-feature p { font-size: .85rem; color: #999; line-height: 1.55; }

.lm-steps { display: grid; gap: 1rem; counter-reset: lmstep; }
@media (min-width: 768px) { .lm-steps { grid-template-columns: repeat(4, 1fr); } }
.lm-step {
  counter-increment: lmstep; padding: 1.25rem; border-radius: 1rem;
  border: 1px solid rgba(255,255,255,.06); background: rgba(255,255,255,.02);
}
.lm-step::before {
  content: counter(lmstep); display: block; font-size: 1.5rem; font-weight: 900;
  color: rgba(212,166,58,.5); margin-bottom: .5rem;
}
.lm-step h3 { font-size: .95rem; font-weight: 700; color: #fff; margin-bottom: .35rem; }
.lm-step p { font-size: .8rem; color: #888; line-height: 1.5; }

.lm-cta {
  margin: 0 1rem 3rem; max-width: 72rem; margin-left: auto; margin-right: auto;
  border-radius: 1.5rem; padding: 2.5rem 1.5rem; text-align: center;
  border: 1px solid rgba(212,166,58,.3);
  background: linear-gradient(135deg, rgba(212,166,58,.12) 0%, rgba(5,5,5,.8) 60%);
}
.lm-cta h2 { font-size: 1.75rem; font-weight: 800; color: #fff; margin-bottom: .75rem; }
.lm-cta p { color: #aaa; margin-bottom: 1.5rem; max-width: 28rem; margin-left: auto; margin-right: auto; }

.lm-footer {
  border-top: 1px solid rgba(255,255,255,.06); padding: 2rem 1rem 2.5rem;
  text-align: center; font-size: .8rem; color: #666;
}
.lm-footer a { color: #d4a63a; text-decoration: none; }
.lm-footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-bottom: 1rem; }

.lm-layout-header .nav-loft-link { color: #d4a63a !important; font-weight: 600; }
