/* Landing page for dealer.lf-audio.com. Uses the brand-synced --lf-* /
   --color-* tokens from theme.css (lifted verbatim from admin) so the
   dealer surface looks like one product with admin + app + help. */

.lnd-hero {
  background: var(--lf-bg);
  padding: 64px 24px 48px;
  border-bottom: 1px solid var(--lf-border);
}

.lnd-hero-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.lnd-hero-title {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 16px;
  color: var(--lf-text);
  letter-spacing: -0.02em;
}

.lnd-hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.5;
  color: var(--lf-text-muted);
  margin: 0 auto 32px;
  max-width: 640px;
}

.lnd-hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.lnd-cta {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: var(--radius-sm, 8px);
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  min-width: 200px;
  text-align: center;
}

.lnd-cta-primary {
  background: var(--lf-accent);
  color: var(--lf-bg);
  border-color: var(--lf-accent);
}
.lnd-cta-primary:hover {
  background: var(--lf-accent-hover);
  border-color: var(--lf-accent-hover);
}

.lnd-cta-secondary {
  background: transparent;
  color: var(--lf-text);
  border-color: var(--lf-border);
}
.lnd-cta-secondary:hover {
  background: var(--lf-panel);
  border-color: var(--lf-text-muted);
}

.lnd-cta:focus-visible {
  outline: 2px solid var(--lf-accent);
  outline-offset: 2px;
}

.lnd-section {
  padding: 56px 24px;
  background: var(--lf-bg);
}

.lnd-section-alt {
  background: var(--lf-panel);
  border-top: 1px solid var(--lf-border);
  border-bottom: 1px solid var(--lf-border);
}

.lnd-section-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.lnd-section h2 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  margin: 0 0 32px;
  color: var(--lf-text);
}

.lnd-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.lnd-card {
  background: var(--lf-panel);
  border: 1px solid var(--lf-border);
  border-radius: var(--radius, 12px);
  padding: 24px;
}

.lnd-section-alt .lnd-card {
  background: var(--lf-bg);
}

.lnd-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--lf-text);
}

.lnd-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--lf-text-muted);
  margin: 0;
}

.lnd-card a {
  color: var(--lf-accent);
  text-decoration: underline;
}

.lnd-steps {
  list-style: decimal;
  padding-left: 24px;
  margin: 0 0 32px;
}

.lnd-steps li {
  font-size: 15px;
  line-height: 1.55;
  color: var(--lf-text);
  margin-bottom: 16px;
  max-width: 720px;
}

.lnd-steps li strong {
  color: var(--lf-text);
}

.lnd-cta-footer {
  text-align: center;
  margin-top: 16px;
}
