:root {
  --purple: #8563e0;
  --blue: #6b94fa;
  --pink: #f05294;
  --ink: #1a1528;
  --muted: #5a5468;
  --surface: #cbc3ee;
  --app-bg: #cbc3ee;
  --white: #ffffff;
  --night: #120c22;
  --radius: 12px;
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --gradient: linear-gradient(135deg, #6f4fd4 0%, #8563e0 42%, #c45ea8 100%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--app-bg);
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--purple);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1080px, calc(100% - 40px));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.site-header--hero .logo,
.site-header--hero .nav-desktop a {
  color: rgba(255, 255, 255, 0.92);
}

.site-header--hero .nav-desktop a:hover {
  color: var(--white);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--ink);
  text-decoration: none;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-desktop a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}

.nav-toggle {
  display: none;
  border: none;
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.1rem;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 0 20px 20px;
  background: rgba(18, 12, 34, 0.96);
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  color: var(--white);
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(111, 79, 212, 0.4);
}

.btn-secondary {
  background: var(--white);
  color: var(--purple);
  border: 1.5px solid rgba(133, 99, 224, 0.35);
}

.price-block .btn-secondary:hover {
  background: var(--gradient);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 10px 28px rgba(111, 79, 212, 0.4);
}

.btn-on-dark {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
}

/* Hero — Wortmarke oben, Text darunter (kein Überlappen) */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 64px;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 55% at 50% 42%, rgba(133, 99, 224, 0.28) 0%, transparent 62%),
    linear-gradient(180deg, #1a1030 0%, #120c22 55%, #0c0818 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 96px 20px clamp(220px, 34vh, 320px);
}

.hero-skyline {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 82%;
  pointer-events: none;
  opacity: 0.58;
  filter: brightness(0.82) saturate(0.8);
}

.hero-wordmark {
  display: block;
  width: min(94vw, 1420px);
  aspect-ratio: 1780 / 520;
  height: auto;
  max-height: min(44svh, 380px);
  overflow: visible;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.45));
  position: relative;
  z-index: 1;
  background: transparent;
  border: 0;
  pointer-events: none;
  object-fit: contain;
  margin-bottom: 8px;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(12, 8, 24, 0.22) 0%, transparent 24%, transparent 52%, rgba(12, 8, 24, 0.9) 100%);
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 720px;
  padding-top: 0;
  animation: hero-rise 0.9s ease-out both;
}

.brand-mark {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 9vw, 5.2rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 0.95;
  text-transform: uppercase;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
}

.hero h1 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.4vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.22;
  max-width: 20ch;
}

.hero-lead {
  margin: 0 0 28px;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 38ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@keyframes hero-drift {
  /* Nur leichte Verschiebung — kein Scale (Scale macht Raster weich) */
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(0, -1.2%, 0); }
}

@keyframes scrim-pulse {
  from { opacity: 1; }
  to { opacity: 0.92; }
}

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Sections */
section {
  padding: 88px 0;
}

.section-head {
  max-width: 560px;
  margin: 0 0 40px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 32px;
}

.feature-list li {
  padding-top: 0;
  border-top: none;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
}

.feature-list h3 {
  margin: 0 0 8px;
  padding-top: 14px;
  border-top: 2px solid rgba(133, 99, 224, 0.35);
  width: 100%;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  display: block;
  text-align: left;
}

.feature-icon {
  display: inline-flex;
  flex: 0 0 auto;
  width: 1.55rem;
  height: 1.55rem;
  margin: 0 auto 12px;
  color: var(--purple);
  opacity: 0.95;
  align-self: center;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.feature-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.app-showcase {
  background: var(--app-bg);
}

.promo-video {
  margin: 0 0 48px;
  position: relative;
}

.promo-video video {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--night);
  border-radius: 4px;
  box-shadow: 0 28px 70px rgba(28, 18, 56, 0.22);
  animation: media-rise 0.9s ease-out both;
}

.promo-video figcaption {
  margin-top: 12px;
  font-size: 0.92rem;
  color: var(--muted);
}

.feature-shots {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin: 0;
}

.feature-shot {
  display: flex;
  flex-direction: row;
  align-items: center; /* vertikal mittig zueinander */
  justify-content: center; /* Paar als Ganzes mittig */
  gap: 48px;
  animation: shot-in 0.7s ease-out both;
}

.feature-shot--reverse {
  flex-direction: row-reverse;
}

.feature-shot-media {
  flex: 0 0 240px;
  width: 240px;
}

.feature-shot-media img {
  display: block;
  width: 240px;
  height: auto;
  object-fit: contain;
  object-position: center center;
  background: transparent;
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(28, 18, 56, 0.14);
}

.feature-shot-copy {
  flex: 0 1 36ch;
  max-width: 36ch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-shot-copy h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}

.feature-shot-copy > p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 38ch;
}

.feature-shot-benefit {
  margin: 0 !important;
  padding-top: 10px;
  border-top: 2px solid rgba(133, 99, 224, 0.3);
  color: var(--ink) !important;
  font-weight: 600;
  font-size: 0.98rem !important;
}

.platform-line {
  margin: 36px 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.9);
}

.platform-line--ink {
  color: var(--muted);
  font-size: 1rem;
}

@keyframes media-rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes shot-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.pricing-grid--3 {
  grid-template-columns: repeat(3, 1fr);
  padding-top: 18px;
}

.pricing-subhead {
  margin: 28px 0 14px;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.price-block {
  padding: 26px 20px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), var(--surface));
  border: 1px solid rgba(28, 28, 40, 0.08);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.price-block--accent {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, #ffffff 0%, #f4efff 55%, #ebe4ff 100%);
  border: 2px solid rgba(133, 99, 224, 0.55);
  box-shadow:
    0 0 0 4px rgba(133, 99, 224, 0.12),
    0 22px 50px rgba(111, 79, 212, 0.22);
  transform: scale(1.04);
  padding-top: 32px;
}

.price-block--accent::before {
  content: "Empfohlen";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--gradient);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(111, 79, 212, 0.35);
}

.price-block--accent .plan-tag {
  color: #6f4fd4;
  font-weight: 800;
}

.price-block--accent .price {
  font-size: 1.85rem;
}

.price-block--included {
  position: relative;
  padding-top: 32px;
  border: 2px solid rgba(133, 99, 224, 0.35);
}

.price-block--included::before {
  content: "Inklusive";
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--gradient);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.price-features {
  margin: 8px 0 12px;
  padding-left: 1.1em;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(28, 28, 40, 0.78);
}

.price-features li {
  margin: 0 0 4px;
}

.price-block .btn {
  margin-top: auto;
}

.plan-tag {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--purple);
}

.price-block h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.price {
  margin: 6px 0 0;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--purple);
}

.price-unit {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}

.price-year {
  margin: 0 0 8px !important;
  font-size: 0.92rem;
  color: var(--muted);
  flex: 0 !important;
}

.price-block > p {
  margin: 0 0 12px;
  color: var(--muted);
  flex: 1;
  font-size: 0.95rem;
}

.pricing-note {
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 720px;
}

.cta-band {
  background: var(--gradient);
  color: var(--white);
  text-align: left;
  padding: 56px 40px;
  border-radius: 20px;
  margin: 0 auto;
  width: min(1080px, calc(100% - 40px));
  box-shadow: 0 24px 60px rgba(111, 79, 212, 0.28);
}

.cta-band h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
}

.cta-band p {
  margin: 0 0 24px;
  max-width: 480px;
  opacity: 0.93;
}

.contact-simple h2 {
  font-family: var(--font-display);
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
}

.contact-simple p {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 42ch;
}

.contact-simple ol {
  margin: 28px 0 0;
  padding-left: 1.2rem;
  color: var(--ink);
  font-weight: 500;
}

.contact-simple li {
  margin-bottom: 8px;
}

.footer {
  padding: 40px 0 28px;
  border-top: 1px solid rgba(28, 28, 40, 0.08);
  color: var(--muted);
  font-size: 0.92rem;
  background: var(--app-bg);
}

.footer .logo {
  color: var(--ink);
}

.footer-meta {
  margin: 10px 0 0;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--purple);
}

.legal-page {
  padding: 120px 0 88px;
}

.legal-page h1 {
  margin-top: 0;
  font-family: var(--font-display);
}

.legal-page h2 {
  margin-top: 2rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.legal-page h3 {
  margin-top: 1.4rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.legal-page ul {
  padding-left: 1.2rem;
  color: var(--muted);
}

.legal-page li {
  margin-bottom: 0.55rem;
}

.legal-page .notice {
  padding: 14px 16px;
  border-radius: 10px;
  background: rgba(133, 99, 224, 0.1);
  border: 1px solid rgba(133, 99, 224, 0.22);
  color: var(--muted);
  font-size: 0.95rem;
}

.site-header--legal {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(28, 28, 40, 0.06);
}

.site-header--legal .logo {
  color: var(--ink);
}

@media (max-width: 1100px) {
  .pricing-grid,
  .pricing-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-block--accent {
    transform: scale(1.02);
  }
}

@media (max-width: 900px) {
  .feature-list {
    grid-template-columns: 1fr;
  }

  .pricing-grid,
  .pricing-grid--3 {
    grid-template-columns: 1fr;
  }

  .price-block--accent {
    transform: none;
  }

  .nav-desktop {
    display: none;
  }

  .header-inner .btn-primary {
    display: none;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .hero {
    min-height: 92svh;
    padding-bottom: 48px;
  }

  .hero-media {
    padding: 88px 16px 240px;
  }

  .hero-wordmark {
    max-height: min(36svh, 220px);
  }

  .cta-band {
    padding: 40px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-wordmark,
  .hero-skyline,
  .hero-scrim,
  .hero-copy,
  .promo-video video,
  .feature-shot {
    animation: none;
  }
}

@media (max-width: 700px) {
  .feature-shot,
  .feature-shot--reverse {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
  }

  .feature-shot-media,
  .feature-shot--reverse .feature-shot-media {
    width: 220px;
    flex-basis: 220px;
  }

  .feature-shot-media img {
    width: 220px;
  }

  .feature-shot-copy {
    max-width: none;
    flex: 1 1 auto;
  }

  .feature-shot-copy > p {
    max-width: none;
  }
}
