/* ============================================================
   American Dream Motors — Ads Landing Page styles
   Loads after adm-styles.css; only landing-specific rules.
   ============================================================ */

.lp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  background: color-mix(in oklab, var(--bg) 86%, transparent);
  border-bottom: 1px solid var(--line);
}
.lp-header-inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 16px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.lp-header-right { display: flex; align-items: center; gap: 10px; }
@media (max-width: 620px) {
  .lp-header-inner { padding: 12px 14px; gap: 10px; }
  .lp-header-right { flex-shrink: 0; gap: 6px; }
  .lp-header-right .chip { display: none; }
  .lp-header-right .btn { min-height: 40px; padding: 0 13px; white-space: nowrap; }
  .lp-header .nav-brand .word {
    display: inline-block;
    max-width: 172px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: bottom;
  }
}

/* HERO */
.lp-hero {
  max-width: 1480px;
  margin: 0 auto;
  padding: 56px 44px 72px;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 72px;
  align-items: start;
}
@media (max-width: 1000px) {
  .lp-hero { grid-template-columns: 1fr; gap: 40px; padding: 36px 20px 48px; }
}
.lp-h1 {
  font-family: var(--display);
  font-size: clamp(52px, 6.4vw, 110px);
  line-height: 0.94;
  letter-spacing: -0.03em;
  font-weight: 400;
}
.lp-bullets {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 36px;
  border-top: 1px solid var(--line);
}
.lp-bullet {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.lp-bullet .ic { color: var(--accent); font-family: var(--mono); font-size: 14px; }
.lp-bullet .t { font-family: var(--display); font-size: 21px; letter-spacing: -0.01em; }
.lp-bullet .d { font-size: 13.5px; color: var(--fg-mute); margin-top: 3px; line-height: 1.55; }

.lp-stars {
  display: flex; align-items: center; gap: 14px;
  margin-top: 28px;
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-mute);
}
.lp-stars .s { color: var(--accent-pop); font-size: 15px; letter-spacing: 0.1em; }

/* FORM CARD */
.lp-form-card {
  position: sticky;
  top: 92px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--bg-2);
  padding: 32px 30px 26px;
  box-shadow: 0 32px 80px rgba(10, 8, 6, 0.35);
}
.lp-form-card::before {
  content: '';
  display: block;
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-pop));
  border-radius: 0 0 4px 4px;
}
@media (max-width: 1000px) { .lp-form-card { position: static; } }
.theme-sand .lp-form-card {
  box-shadow: 0 24px 64px rgba(20, 17, 13, 0.12);
  background: var(--bg-2);
}

/* PROOF BAND */
.lp-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.lp-band-inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 44px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.lp-band-cell {
  padding: 30px 26px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 6px;
}
.lp-band-cell:last-child { border-right: 0; }
.lp-band-cell .v { font-family: var(--display); font-size: 38px; letter-spacing: -0.02em; line-height: 1; }
.lp-band-cell .l { font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--fg-dim); }
@media (max-width: 800px) {
  .lp-band-inner { grid-template-columns: repeat(2, 1fr); padding: 0 20px; }
  .lp-band-cell:nth-child(2) { border-right: 0; }
  .lp-band-cell:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

/* SECTIONS */
.lp-section { max-width: 1480px; margin: 0 auto; padding: 88px 44px; }
@media (max-width: 800px) { .lp-section { padding: 56px 20px; } }

/* STICKY MOBILE BAR */
.lp-sticky {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 40;
  display: none;
  gap: 8px;
  padding: 10px 12px;
  background: color-mix(in oklab, var(--bg) 92%, transparent);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
}
.lp-sticky .btn { flex: 1; justify-content: center; }
@media (max-width: 800px) {
  .lp-sticky { display: flex; }
  body { padding-bottom: 70px; }
}

/* FOOTER LITE */
.lp-footer {
  border-top: 1px solid var(--line);
  margin-top: 24px;
}
.lp-footer-inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 40px 44px 48px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--fg-dim);
  text-transform: uppercase;
  line-height: 2;
}

/* ============== LEAD SUBMISSION PAGE ============== */
.ls-wrap {
  max-width: 1380px;
  margin: 0 auto;
  padding: 48px 44px 96px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: start;
}
@media (max-width: 1000px) { .ls-wrap { grid-template-columns: 1fr; gap: 40px; padding: 32px 20px 64px; } }
@media (max-width: 560px) {
  .ls-wrap { gap: 28px; padding: 24px 14px 56px; }
  .ls-wrap .lp-h1 { font-size: 44px; line-height: 0.96; }
}

.ls-intents { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 32px; }
@media (max-width: 560px) { .ls-intents { grid-template-columns: 1fr; margin-top: 20px; } }
.ls-lede {
  max-width: 680px;
  margin-top: 22px;
  color: var(--fg-mute);
  font-size: 17px;
  line-height: 1.7;
}
.ls-proof-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.ls-proof-links a {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 9px 12px;
  color: var(--fg);
  background: var(--bg-2);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.ls-proof-links a:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.ls-primary-jump {
  margin-top: 18px;
  width: fit-content;
}
@media (max-width: 560px) {
  .ls-primary-jump { width: 100%; justify-content: center; }
}
.ls-intent {
  display: flex; flex-direction: column; gap: 5px;
  padding: 18px 18px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: var(--bg-2);
  cursor: pointer;
  text-align: left;
  transition: all 180ms cubic-bezier(.2,.7,.2,1);
  position: relative;
}
.ls-intent:hover { border-color: var(--fg); transform: translateY(-2px); }
.ls-intent.active {
  border-color: var(--accent);
  background: color-mix(in oklab, var(--accent) 9%, var(--bg-2));
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent) 16%, transparent);
}
.ls-intent .t { font-family: var(--display); font-size: 21px; letter-spacing: -0.01em; }
.ls-intent .d { font-family: var(--mono); font-size: 9.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-dim); }
.ls-intent .mark {
  position: absolute; top: 12px; right: 12px;
  width: 18px; height: 18px; border-radius: 50%;
  border: 1.5px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: var(--bone);
  transition: all 160ms;
}
.ls-intent.active .mark { background: var(--accent); border-color: var(--accent); }

.ls-timeline { margin-top: 44px; border-top: 1px solid var(--line); }
.ls-step {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.ls-step .when { font-family: var(--mono); font-size: 10.5px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.ls-step .what { font-family: var(--display); font-size: 20px; letter-spacing: -0.01em; }
.ls-step .how { font-size: 13.5px; color: var(--fg-mute); margin-top: 3px; line-height: 1.55; }
