:root {
  --rose: #e11d48;
  --rose-soft: rgba(225, 29, 72, 0.1);
  --paper: #f5f3ee;
  --paper-elevated: #ffffff;
  --ink: #1c1714;
  --mist: #7c7168;
  --line: rgba(28, 23, 20, 0.09);
  --line-strong: rgba(28, 23, 20, 0.14);
  --shadow: 0 18px 52px rgba(28, 23, 20, 0.07);
  --radius: 14px;
  --max-width: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(225, 29, 72, 0.06), transparent 28rem),
    linear-gradient(180deg, #fbfaf7 0%, var(--paper) 44rem);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--rose);
}

.container {
  width: min(var(--max-width), calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 247, 0.82);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 68px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.logo img.logo-mark {
  height: 40px;
  width: 40px;
  border-radius: 10px;
  object-fit: contain;
}

.footer-brand .logo img.logo-mark {
  height: 36px;
  width: 36px;
}

.top-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: var(--mist);
  font-size: 0.9rem;
  font-weight: 600;
}

.lang-toggle {
  display: inline-flex;
  padding: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.lang-toggle button {
  min-width: 42px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--mist);
  cursor: pointer;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.4rem 0.65rem;
}

.lang-toggle button.active {
  background: var(--ink);
  color: #fff;
}

.hero {
  padding: 5rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: center;
}

.hero-copy,
.hero-media {
  min-width: 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 1rem;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  max-width: 100%;
  padding: 0.42rem 0.75rem;
  border: 1px solid rgba(225, 29, 72, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  letter-spacing: 0;
  text-transform: none;
}

.eyebrow span:not(.status-dot) {
  min-width: 0;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 6px rgba(225, 29, 72, 0.12);
}

.hero h1 {
  max-width: 13ch;
  margin: 0 0 1rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.45rem, 5vw, 3.8rem);
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.hero-lead {
  max-width: 32rem;
  margin: 0 0 1.9rem;
  color: var(--mist);
  font-size: 1rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
}

.app-store-badge {
  display: inline-flex;
}

.badge-button,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  border-radius: 12px;
  font-weight: 700;
}

.badge-button {
  gap: 0.75rem;
  padding: 0.62rem 1rem;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 10px 26px rgba(28, 23, 20, 0.12);
}

.badge-label {
  display: block;
  font-size: 0.68rem;
  line-height: 1.05;
  opacity: 0.7;
}

.badge-title {
  display: block;
  font-size: 1rem;
  line-height: 1.1;
}

.btn-secondary {
  padding: 0 1.05rem;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.62);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.btn-secondary:hover {
  border-color: rgba(225, 29, 72, 0.34);
  background: #fff;
  transform: translateY(-2px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  max-width: 31rem;
  margin: 1.9rem 0 0;
}

.hero-stats div {
  padding: 0.75rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.52);
}

.hero-stats dt {
  margin: 0 0 0.1rem;
  color: var(--ink);
  font-weight: 700;
}

.hero-stats dd {
  margin: 0;
  color: var(--mist);
  font-size: 0.78rem;
  font-weight: 600;
}

.hero-media {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
  transform: none;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 1672 / 941;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.hero-media:hover img {
  transform: scale(1.025);
}

.strip {
  padding: 0.75rem 0;
}

.strip-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.56);
}

.strip p,
.strip span {
  margin: 0;
}

.strip p {
  color: var(--mist);
}

.strip-grid > span {
  color: var(--ink);
  font-weight: 700;
}

.section {
  padding: 4.75rem 0;
}

.section.compact {
  padding: 4rem 0;
}

.section-head {
  max-width: 620px;
  margin-bottom: 1.5rem;
}

.section-head.split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr);
  gap: 2rem;
  align-items: end;
}

.section-title,
.trust-panel h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: 0;
}

.section-lead {
  margin: 0;
  color: var(--mist);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.step-card {
  min-height: 190px;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.step-card:hover,
.example-card:hover {
  transform: translateY(-4px);
  border-color: rgba(225, 29, 72, 0.22);
  background: #fff;
}

.step-card > span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 1.35rem;
  border-radius: 10px;
  background: var(--rose-soft);
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 700;
}

.step-card h3,
.example-card h3 {
  margin: 0 0 0.5rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.15rem;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0;
}

.step-card p {
  margin: 0;
  color: var(--mist);
  font-size: 0.93rem;
}

.examples-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.example-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.68);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.example-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.example-card div {
  padding: 1.1rem;
}

.example-card span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--rose);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.example-card h3 {
  margin-bottom: 0;
}

.trust-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 2rem;
  padding: 1.35rem;
  border-radius: 18px;
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
}

.trust-panel .section-kicker {
  color: rgba(255, 255, 255, 0.7);
}

.trust-panel h2 {
  color: #fff;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
}

.trust-panel ul {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-panel li {
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.05);
}

.info-cards {
  display: grid;
  gap: 1rem;
  max-width: 720px;
  margin-inline: auto;
}

.info-card {
  padding: 2rem 1.75rem;
  border-radius: 18px;
  background: var(--paper-elevated);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.info-card h2 {
  margin: 0 0 0.65rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.55rem;
  letter-spacing: -0.02em;
}

.info-card--support {
  text-align: center;
}

.info-lead {
  margin: 0 0 1.1rem;
  color: var(--mist);
  font-size: 0.98rem;
}

.info-email {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.info-email:hover {
  color: var(--rose);
}

.info-note {
  margin: 0;
  color: var(--mist);
  font-size: 0.88rem;
}

.info-copy {
  margin: 0 0 1rem;
  color: var(--mist);
  font-size: 0.96rem;
  line-height: 1.65;
}

.info-link {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  font-weight: 700;
  color: var(--ink);
}

.info-link:hover {
  color: var(--rose);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
  padding: 2rem 0 2.4rem;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem 2rem;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-brand p {
  max-width: 23rem;
  margin: 0.75rem 0 0;
  color: var(--mist);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.35rem;
  color: var(--mist);
  font-size: 0.92rem;
  font-weight: 600;
}

.footer-meta {
  width: 100%;
  padding-top: 1.15rem;
  margin-top: 0.25rem;
  border-top: 1px solid var(--line);
  color: var(--mist);
  font-size: 0.85rem;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero .reveal {
  opacity: 1;
  transform: none;
}

.legal-main {
  padding: 3.5rem 0 5rem;
}

.legal-shell {
  max-width: 860px;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1.75rem;
  color: var(--mist);
  font-weight: 700;
}

.legal-page {
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--paper-elevated);
  border: 1px solid var(--line);
}

.legal-page h1,
.legal-page h2 {
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.15;
  letter-spacing: 0;
}

.legal-page h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.legal-page h2 {
  margin: 2rem 0 0.65rem;
  font-size: 1.25rem;
}

.legal-page h3 {
  margin: 1.25rem 0 0.45rem;
  font-size: 1rem;
}

.legal-page p,
.legal-page li {
  color: var(--mist);
}

.legal-page p {
  margin: 0 0 0.85rem;
}

.legal-page ul,
.legal-page ol {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}

.legal-page a {
  color: var(--rose);
  font-weight: 700;
}

.legal-meta {
  color: var(--mist);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.legal-note {
  padding: 1rem;
  border-radius: 12px;
  background: var(--rose-soft);
  border: 1px solid rgba(225, 29, 72, 0.18);
}

.contact-list {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0;
}

.contact-item {
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(245, 243, 238, 0.5);
}

.contact-item strong {
  display: block;
  margin-bottom: 0.2rem;
}

[lang="de"] .lang-en,
[lang="en"] .lang-de {
  display: none !important;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: auto auto;
  }

  .top-nav {
    display: none;
  }

  .hero-grid,
  .section-head.split,
  .trust-panel {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 13ch;
  }

  .hero-media {
    transform: none;
  }

  .strip-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .hero {
    padding-top: 3rem;
  }

  .hero-grid {
    gap: 2rem;
  }

  .hero-media {
    order: -1;
  }

  .hero-stats,
  .steps-grid,
  .examples-grid {
    grid-template-columns: 1fr;
  }

  .step-card {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--max-width), calc(100% - 1.25rem));
  }

  .header-inner {
    min-height: 62px;
  }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .hero-lead {
    font-size: 1rem;
    max-width: 34ch;
    overflow-wrap: anywhere;
  }

  .badge-button,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .app-store-badge,
  .btn-secondary {
    flex: 1 1 100%;
  }

  .section.compact {
    padding: 3.25rem 0;
  }

  .trust-panel,
  .legal-page {
    padding: 1.25rem;
  }

  .footer-grid {
    flex-direction: column;
  }
}
