/* Landing-Page – baut auf den Variablen aus app.css auf. */

.lp-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.lp-nav-links a {
  color: var(--text-dim);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}
.lp-nav-links a:hover {
  color: var(--text);
  background: var(--bg-elev);
}
@media (max-width: 680px) {
  .lp-nav-links .lp-nav-hide {
    display: none;
  }
}

.lp-container {
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Hero ---------- */
.lp-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding: 64px 0 48px;
}
@media (max-width: 820px) {
  .lp-hero {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 0 32px;
  }
}

.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--accent-dim);
  color: var(--accent-hi);
  border: 1px solid #ff7a1a44;
  padding: 6px 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}
.lp-hero h1 {
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 850;
  margin: 0 0 18px;
}
.lp-hero h1 .hl {
  background: linear-gradient(120deg, var(--accent-hi), #ff5722);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lp-hero p.lead {
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-dim);
  margin: 0 0 28px;
  max-width: 520px;
}
@media (max-width: 560px) {
  .lp-hero h1 {
    font-size: 38px;
  }
}

.lp-btn-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-lg {
  padding: 13px 22px;
  font-size: 15px;
  border-radius: 11px;
}

.lp-hero-media {
  position: relative;
}
.lp-hero-media img {
  width: 100%;
  aspect-ratio: 2 / 1;      /* Bild an den Seiten etwas beschneiden */
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: block;
}

/* ---------- Stats ---------- */
.lp-stats {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.lp-stat {
  flex: 1;
  min-width: 90px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 18px;
}
.lp-stat .v {
  font-size: 26px;
  font-weight: 800;
  color: var(--accent-hi);
  letter-spacing: -0.02em;
}
.lp-stat .l {
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 600;
  margin-top: 2px;
}

/* ---------- Section ---------- */
.lp-section {
  padding: 56px 0;
  border-top: 1px solid var(--border);
}
.lp-section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 38px;
}
.lp-eyebrow {
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.lp-section-head h2 {
  font-size: 34px;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
  font-weight: 800;
}
.lp-section-head p {
  color: var(--text-dim);
  font-size: 16.5px;
  line-height: 1.6;
  margin: 0;
}

/* ---------- Feature-Cards ---------- */
.lp-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 860px) {
  .lp-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 460px) {
  .lp-cards {
    grid-template-columns: 1fr;
  }
}
.lp-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  transition: border-color 0.15s, transform 0.15s;
}
.lp-card:hover {
  border-color: #ff7a1a55;
  transform: translateY(-3px);
}
.lp-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--accent-dim);
  color: var(--accent-hi);
  margin-bottom: 16px;
}
.lp-card h3 {
  margin: 0 0 7px;
  font-size: 16px;
  font-weight: 700;
}
.lp-card p {
  margin: 0;
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.55;
}

/* ---------- Gallery ---------- */
.lp-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 760px) {
  .lp-gallery {
    grid-template-columns: 1fr;
  }
}
.lp-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--border);
  display: block;
  aspect-ratio: 4 / 3;
}

/* ---------- Video ---------- */
.lp-video-frame {
  max-width: 840px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
  background: var(--bg-elev);
}
.lp-video-frame iframe,
.lp-video-frame video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.lp-video-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  gap: 14px;
  color: var(--text-faint);
  background: radial-gradient(500px 260px at 50% 40%, #1c2330, var(--bg-elev));
  text-align: center;
}
.lp-video-play {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--accent);
  color: #17110a;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 30px var(--accent-dim);
}

/* ---------- Apply / Bewerben ---------- */
.lp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 26px;
  counter-reset: step;
}
@media (max-width: 720px) {
  .lp-steps {
    grid-template-columns: 1fr;
  }
}
.lp-step {
  position: relative;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 22px 22px;
}
.lp-step-num {
  position: absolute;
  top: -14px;
  left: 22px;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--accent), #ff5722);
  color: #17110a;
  font-weight: 800;
  font-size: 15px;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 14px var(--accent-dim);
}
.lp-step-icon {
  color: var(--accent-hi);
  margin: 6px 0 12px;
}
.lp-step h3 {
  margin: 0 0 6px;
  font-size: 16px;
}
.lp-step p {
  margin: 0;
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.55;
}
.lp-step code {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1px 6px;
  color: var(--accent-hi);
  font-weight: 600;
}

.lp-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  justify-content: center;
  margin-bottom: 26px;
}
.lp-role {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 15px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.lp-role:hover {
  border-color: var(--accent);
  color: var(--accent-hi);
}
.lp-center {
  text-align: center;
}

/* ---------- Große CTA-Box ---------- */
.lp-cta {
  margin: 70px auto;
}
.lp-cta-box {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #23180d, var(--bg-elev));
  border: 1px solid #ff7a1a44;
  border-radius: 24px;
  padding: 48px 40px;
  text-align: center;
}
.lp-cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 50% -20%, #ff7a1a33, transparent);
  pointer-events: none;
}
.lp-cta-box h2 {
  position: relative;
  font-size: 30px;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  font-weight: 800;
}
.lp-cta-box p {
  position: relative;
  color: var(--text-dim);
  font-size: 16.5px;
  line-height: 1.55;
  margin: 0 auto 26px;
  max-width: 500px;
}
.lp-cta-box .btn {
  position: relative;
}
@media (max-width: 560px) {
  .lp-cta-box {
    padding: 36px 22px;
  }
  .lp-cta-box h2 {
    font-size: 24px;
  }
}

/* ---------- Rechtliches (Impressum) ---------- */
.lp-legal {
  max-width: 720px;
  margin: 0 auto;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  color: var(--text-dim);
  line-height: 1.7;
}
.lp-legal h3 {
  margin: 26px 0 6px;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}
.lp-legal h3:first-child {
  margin-top: 0;
}
.lp-legal p {
  margin: 0;
}
.lp-legal a {
  color: var(--accent);
}
.lp-legal a:hover {
  color: var(--accent-hi);
}
.lp-legal-credits {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-faint);
}
@media (max-width: 640px) {
  .lp-legal {
    padding: 22px 18px;
  }
}

/* ---------- Footer ---------- */
.lp-footer {
  border-top: 1px solid var(--border);
  padding: 30px 0 50px;
}
.lp-footer .lp-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.lp-footer .fl {
  color: var(--text-faint);
  font-size: 14px;
}
.lp-footer .fr {
  display: flex;
  gap: 18px;
}
.lp-footer .fr a {
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 600;
}
.lp-footer .fr a:hover {
  color: var(--accent-hi);
}

html {
  scroll-behavior: smooth;
}
