.landing-page {
  --lp-navy: #131b2e;
  --lp-green: #006c4a;
  --lp-green-dark: #00714e;
  --lp-green-light: #82f5c1;
  --lp-green-mint: #68dba9;
  --lp-surface: #f7f9fb;
  --lp-surface-low: #f2f4f6;
  --lp-text: #191c1e;
  --lp-text-muted: #45464d;
  --lp-text-on-navy: #7c839b;
  --lp-border: #c6c6cd;
  --lp-white: #ffffff;
  --lp-max: 1440px;
  --lp-gutter: 24px;
  font-family: "Work Sans", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--lp-text);
  background: var(--lp-surface);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

.landing-page *,
.landing-page *::before,
.landing-page *::after {
  box-sizing: border-box;
}

.landing-page body,
body.landing-page {
  margin: 0;
}

.landing-page h1,
.landing-page h2,
.landing-page h3,
.landing-page h4 {
  font-family: "Hanken Grotesk", system-ui, sans-serif;
  margin: 0;
}

.landing-page a {
  text-decoration: none;
  color: inherit;
}

.landing-page .lp-container {
  max-width: var(--lp-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--lp-gutter);
  padding-right: var(--lp-gutter);
}

.landing-page .material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  vertical-align: middle;
}

.landing-page .lp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px var(--lp-gutter);
  background: #f7f9fbf2;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--lp-border);
}

.landing-page .lp-header.is-scrolled {
  padding-top: 8px;
  padding-bottom: 8px;
  box-shadow: 0 1px 3px #00000014;
}

.landing-page .lp-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.landing-page .lp-logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--lp-navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: "Hanken Grotesk", system-ui, sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.landing-page .lp-logo-word {
  font-family: "Hanken Grotesk", system-ui, sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.landing-page .lp-nav {
  display: none;
  align-items: center;
  gap: 40px;
}

@media (min-width: 860px) {
  .landing-page .lp-nav {
    display: flex;
  }
}

.landing-page .lp-nav a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--lp-text-muted);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.landing-page .lp-nav a:hover,
.landing-page .lp-nav a.is-active {
  color: var(--lp-green);
  border-bottom-color: var(--lp-green);
}

.landing-page .lp-header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

@media (max-width: 520px) {
  .landing-page .lp-logo-word {
    font-size: 18px;
  }
  .landing-page .lp-btn-primary-dark {
    padding: 8px 14px;
  }
}

.landing-page .lp-btn-login {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #000;
  padding: 8px 16px;
  border-radius: 8px;
}

.landing-page .lp-btn-login:hover {
  background: var(--lp-surface-low);
}

.landing-page .lp-btn-primary-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #000;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 8px 24px;
  border-radius: 8px;
}

.landing-page .lp-btn-primary-dark:hover {
  transform: scale(1.02);
}

.landing-page .lp-btn-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: var(--lp-green);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 16px 40px;
  border-radius: 8px;
  border: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.landing-page .lp-btn-green:hover {
  background: var(--lp-green-dark);
  transform: scale(1.02);
}

.landing-page .lp-btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 16px 40px;
  border-radius: 8px;
  border: 1px solid var(--lp-border);
}

.landing-page .lp-btn-outline-light:hover {
  background: #ffffff1a;
}

.landing-page main {
  padding-top: 72px;
}

.landing-page #vorteile,
.landing-page #funktionen,
.landing-page #ablauf,
.landing-page #faq {
  scroll-margin-top: 88px;
}

.landing-page .lp-hero {
  position: relative;
  overflow: hidden;
  background: var(--lp-navy);
  padding: 80px var(--lp-gutter);
}

.landing-page .lp-hero-deco {
  position: absolute;
  top: 0;
  right: 0;
  width: 33%;
  height: 100%;
  background: #006c4a0d;
  transform: skew(-12deg) translate(50%);
  pointer-events: none;
}

.landing-page .lp-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .landing-page .lp-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
  }
}

.landing-page .lp-hero h1 {
  font-size: clamp(32px, 5vw, 42px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 20px;
}

.landing-page .lp-hero-title-sub {
  display: block;
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 600;
  color: #ffffffe0;
  margin-top: 6px;
}

.landing-page .lp-hero-lead {
  font-size: 18px;
  line-height: 1.55;
  color: #3ebc6a;
  margin: 0 0 28px;
  max-width: 32rem;
}

.landing-page .lp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.landing-page .lp-btn-green--hero {
  box-shadow: 0 8px 24px #3ebc6a59;
}

.landing-page .lp-hero-aside {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.landing-page .lp-hero-spotlight {
  position: relative;
  width: min(100%, 200px);
  z-index: 2;
}

.landing-page .lp-hero-spotlight-orbit {
  position: absolute;
  inset: -28px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.55) 0%, rgba(62, 188, 106, 0.35) 38%, transparent 72%);
  animation: lp-pulse 2.8s ease-in-out infinite;
}

.landing-page .lp-hero-spotlight-core {
  position: relative;
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px;
  background: radial-gradient(circle at 35% 30%, #fff, #f4fff8 42%, #d8f5e4);
  border: 2px solid #ffffffd9;
  box-shadow: 0 0 0 6px #3ebc6a2e, 0 20px 40px #00000047;
}

.landing-page .lp-hero-stat-value {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--lp-navy);
  line-height: 1;
}

.landing-page .lp-hero-stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lp-green-dark);
  text-align: center;
  max-width: 8rem;
}

.landing-page .lp-hero-stat-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--lp-green), transparent);
}

.landing-page .lp-mockup-wrap {
  width: 100%;
  max-width: 560px;
}

.landing-page .lp-mockup-laptop {
  background: #e6e8ea;
  border: 4px solid #76777d;
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 25px 50px -12px #0006;
}

.landing-page .lp-mockup-screen {
  background: #efe6d6;
  border-radius: 6px;
  min-height: 260px;
  display: grid;
  grid-template-columns: 140px 1fr;
  overflow: hidden;
}

.landing-page .lp-mock-rail {
  background: #2a241c;
  color: #f3ead8;
  padding: 12px 10px;
  font-size: 10px;
}

.landing-page .lp-mock-rail strong {
  display: block;
  font-size: 13px;
  margin-bottom: 10px;
}

.landing-page .lp-mock-rail span {
  display: block;
  opacity: 0.75;
  margin: 6px 0;
}

.landing-page .lp-mock-main {
  padding: 16px;
}

.landing-page .lp-mock-card {
  background: #fffaf1;
  border: 1px dashed #d9cbb6;
  border-radius: 10px;
  min-height: 180px;
  display: grid;
  place-content: center;
  text-align: center;
  color: #5c5146;
  font-size: 12px;
  font-weight: 600;
}

.landing-page .lp-benefits {
  background: var(--lp-surface);
  padding: 80px var(--lp-gutter);
}

.landing-page .lp-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

@media (min-width: 768px) {
  .landing-page .lp-benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1100px) {
  .landing-page .lp-benefits-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.landing-page .lp-benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 8px;
}

.landing-page .lp-benefit-icon {
  width: 64px;
  height: 64px;
  border-radius: 9999px;
  background: var(--lp-green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.landing-page .lp-benefit-icon .material-symbols-outlined {
  font-size: 32px;
  color: var(--lp-green-dark);
}

.landing-page .lp-benefit-item h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 4px;
}

.landing-page .lp-benefit-item p {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--lp-text-muted);
  margin: 0;
}

.landing-page .lp-features {
  background: var(--lp-surface-low);
  padding: 80px var(--lp-gutter);
}

.landing-page .lp-section-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lp-green);
  margin-bottom: 4px;
}

.landing-page .lp-section-title {
  font-size: clamp(28px, 4vw, 32px);
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 48px;
  max-width: 42rem;
}

.landing-page .lp-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 900px) {
  .landing-page .lp-features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.landing-page .lp-feature-card {
  background: #fff;
  border: 1px solid var(--lp-border);
}

.landing-page .lp-feature-body {
  padding: 40px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.landing-page .lp-feature-body > .material-symbols-outlined {
  font-size: 32px;
  color: var(--lp-green);
  margin-bottom: 20px;
}

.landing-page .lp-feature-body h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}

.landing-page .lp-feature-body > p {
  font-size: 16px;
  color: var(--lp-text-muted);
  margin: 0 0 24px;
}

.landing-page .lp-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #000;
  margin-top: auto;
}

.landing-page .lp-link-arrow:hover {
  gap: 12px;
  color: var(--lp-green);
}

.landing-page .lp-steps {
  padding: 80px var(--lp-gutter);
  background: var(--lp-surface);
}

.landing-page .lp-steps-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 800px) {
  .landing-page .lp-steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.landing-page .lp-step {
  background: #fff;
  border: 1px solid var(--lp-border);
  padding: 32px 28px;
}

.landing-page .lp-step-num {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--lp-green);
  margin-bottom: 12px;
}

.landing-page .lp-step h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.landing-page .lp-step p {
  margin: 0;
  color: var(--lp-text-muted);
}

.landing-page .lp-quote {
  background: var(--lp-navy);
  color: #fff;
  text-align: center;
  padding: 80px var(--lp-gutter);
}

.landing-page .lp-quote .material-symbols-outlined {
  font-size: 48px;
  color: var(--lp-green-mint);
  margin-bottom: 32px;
}

.landing-page .lp-quote blockquote {
  font-family: "Hanken Grotesk", system-ui, sans-serif;
  font-size: clamp(22px, 3vw, 26px);
  line-height: 1.5;
  font-style: italic;
  font-weight: 600;
  margin: 0 auto 16px;
  max-width: 48rem;
}

.landing-page .lp-quote p {
  margin: 0;
  color: var(--lp-text-on-navy);
}

.landing-page .lp-faq {
  padding: 80px var(--lp-gutter);
  background: var(--lp-surface-low);
}

.landing-page .lp-faq-list {
  max-width: 48rem;
}

.landing-page .lp-faq details {
  background: #fff;
  border: 1px solid var(--lp-border);
  padding: 18px 22px;
  margin-bottom: 12px;
}

.landing-page .lp-faq summary {
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
}

.landing-page .lp-faq details p {
  margin: 12px 0 0;
  color: var(--lp-text-muted);
}

.landing-page .lp-cta {
  background: #fff;
  border-bottom: 1px solid var(--lp-border);
  padding: 80px var(--lp-gutter);
  text-align: center;
}

.landing-page .lp-cta h2 {
  font-size: clamp(28px, 4vw, 32px);
  font-weight: 600;
  margin-bottom: 16px;
}

.landing-page .lp-cta > p {
  font-size: 18px;
  color: var(--lp-text-muted);
  max-width: 36rem;
  margin: 0 auto 40px;
}

.landing-page .lp-footer {
  background: var(--lp-navy);
  color: #fff;
  padding: 48px var(--lp-gutter);
}

.landing-page .lp-footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
}

.landing-page .lp-footer small {
  color: var(--lp-text-on-navy);
}

.landing-page .lp-footer nav {
  display: flex;
  gap: 24px;
  font-size: 14px;
  font-weight: 600;
}

.landing-page .lp-footer a:hover {
  color: var(--lp-green-mint);
}

@keyframes lp-pulse {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-page .lp-hero-spotlight-orbit,
  .landing-page .lp-btn-green:hover,
  .landing-page .lp-btn-primary-dark:hover {
    animation: none;
    transform: none;
  }
}

.landing-page .auth-main {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 72px var(--lp-gutter) 48px;
}

.landing-page .auth-card {
  width: 100%;
  max-width: 28rem;
  background: var(--lp-white);
  border: 1px solid var(--lp-border);
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 1px 3px #00000014;
}

.landing-page .auth-card h1 {
  font-size: 1.5rem;
  line-height: 1.25;
  font-weight: 700;
  color: var(--lp-text);
  margin: 0 0 8px;
}

.landing-page .auth-card .auth-lead {
  margin: 0 0 24px;
  color: var(--lp-text-muted);
  font-size: 0.875rem;
  line-height: 1.5;
}

.landing-page .auth-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.landing-page .auth-field {
  display: flex;
  flex-direction: column;
}

.landing-page .auth-field label {
  display: block;
  margin: 0 0 4px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--lp-text);
}

.landing-page .auth-field input {
  width: 100%;
  border: 1px solid var(--lp-border);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 15px;
  font-family: inherit;
  font-weight: 400;
  color: var(--lp-text);
  background: #fff;
}

.landing-page .auth-field input:focus {
  outline: none;
  border-color: var(--lp-green);
  box-shadow: 0 0 0 2px #82f5c180;
}

.landing-page .auth-forgot {
  align-self: flex-start;
  margin-top: 6px;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  font-size: 0.75rem;
  color: var(--lp-text-muted);
  text-decoration: underline;
  cursor: pointer;
}

.landing-page .auth-forgot:hover {
  color: var(--lp-green);
}

.landing-page .auth-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 400;
  color: var(--lp-text-muted);
  line-height: 1.45;
}

.landing-page .auth-check input {
  margin-top: 3px;
  flex-shrink: 0;
}

.landing-page .auth-card .lp-btn-green {
  width: 100%;
  justify-content: center;
  padding: 14px 24px;
}

.landing-page .auth-card .lp-btn-green:disabled {
  opacity: 0.6;
  transform: none;
}

.landing-page .auth-error,
.landing-page .auth-ok {
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.875rem;
  margin: 0;
}

.landing-page .auth-error {
  background: #fef2f2;
  color: #b91c1c;
}

.landing-page .auth-ok {
  background: #e8faf3;
  border: 1px solid var(--lp-green-light);
  color: var(--lp-green);
}

.landing-page .auth-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.landing-page .auth-links a {
  color: var(--lp-green);
}

.landing-page .auth-links a:hover {
  text-decoration: underline;
}

.landing-page .konto-card {
  max-width: 32rem;
}

.landing-page .konto-meta {
  margin: 0 0 24px;
  color: var(--lp-text-muted);
  font-size: 0.875rem;
}

.landing-page .konto-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
