:root {
  --ink: #171a20;
  --muted: #626a73;
  --soft: #f5f3ef;
  --paper: #ffffff;
  --line: #ded8cb;
  --deep: #151922;
  --deep-2: #222832;
  --gold: #c99a2e;
  --gold-dark: #806018;
  --green: #24724f;
  --red: #9b3d2f;
  --blue: #4b647a;
  --shadow: 0 18px 50px rgba(25, 29, 36, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(201, 154, 46, 0.55);
  outline-offset: 3px;
}

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

.narrow {
  width: min(790px, calc(100% - 40px));
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 20;
  padding: 10px 14px;
  color: #fff;
  background: var(--deep);
  border-radius: 6px;
  transition: top 0.15s ease;
}

.skip-link:focus {
  top: 12px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(245, 243, 239, 0.94);
  border-bottom: 1px solid rgba(222, 216, 203, 0.85);
  backdrop-filter: blur(12px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 750;
  font-size: 1.08rem;
  text-decoration: none;
}

.brand img {
  border-radius: 8px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 8px 11px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
  text-decoration: none;
  border-radius: 7px;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  background: #ebe6dc;
}

.site-nav .nav-download {
  color: #fff;
  background: var(--deep);
}

.site-nav .nav-download:hover {
  color: #fff;
  background: var(--deep-2);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  padding: 76px 0 36px;
  background:
    linear-gradient(180deg, #f9f7f2 0%, #f0ece3 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(440px, 1.06fr);
  align-items: center;
  gap: 54px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.45rem, 6vw, 4.8rem);
}

h2 {
  font-size: clamp(1.9rem, 3.7vw, 3rem);
}

h3 {
  font-size: 1.12rem;
}

p {
  margin: 0;
}

.hero-text {
  max-width: 640px;
  margin-top: 22px;
  color: #3e454d;
  font-size: 1.18rem;
}

.hero-actions,
.download-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  font-weight: 760;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 8px;
}

.button.primary {
  color: #fff;
  background: var(--deep);
  box-shadow: 0 10px 24px rgba(21, 25, 34, 0.16);
}

.button.primary:hover {
  background: var(--deep-2);
}

.button.ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.66);
  border-color: var(--line);
}

.button.ghost:hover {
  background: #fff;
}

.button.light {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

.button.large {
  min-height: 54px;
  padding: 0 24px;
}

.button.disabled {
  color: #757b83;
  background: #f0eee8;
  border-color: var(--line);
  cursor: not-allowed;
}

.fineprint {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-desktop-shot,
.hero-visual > img {
  border-radius: 6px;
}

.hero-mobile-shot {
  position: absolute;
  right: -10px;
  bottom: -24px;
  width: 24%;
  min-width: 96px;
  max-width: 150px;
  padding: 5px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(25, 29, 36, 0.18);
}

.hero-mobile-shot img {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  object-position: top center;
  border-radius: 14px;
}

.trust-strip {
  padding: 18px 0;
  background: var(--deep);
  color: #f7f2e5;
}

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

.trust-grid span {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  font-weight: 750;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.section {
  padding: 86px 0;
  background: var(--paper);
}

.section-muted {
  background: #f6f4ef;
}

.split,
.privacy-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
}

.copy-block,
.privacy-grid p,
.section-head p,
.feature-card p,
.version-card p,
.faq-list p,
.legal-document p,
.disclaimer p {
  color: var(--muted);
}

.copy-block p + p,
.privacy-grid p + p {
  margin-top: 16px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head p:not(.eyebrow) {
  margin-top: 14px;
  font-size: 1.05rem;
}

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

.feature-card,
.version-card {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-card {
  min-height: 238px;
}

.feature-card h3,
.version-card h3 {
  margin-top: 18px;
}

.feature-card p,
.version-card p {
  margin-top: 12px;
}

.icon-box {
  width: 42px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 850;
  background: var(--deep);
  border-radius: 7px;
}

.privacy-section {
  color: #fff;
  background: var(--deep);
}

.privacy-section .eyebrow {
  color: #e6c969;
}

.privacy-grid p {
  color: #d5d9df;
}

.privacy-list {
  display: grid;
  gap: 12px;
}

.privacy-list div {
  padding: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
}

.privacy-list strong,
.privacy-list span {
  display: block;
}

.privacy-list span {
  margin-top: 5px;
  color: #d5d9df;
}

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

.product-showcase {
  display: grid;
  gap: 24px;
}

.screenshot-pair {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
  gap: 20px;
  align-items: stretch;
}

figure,
.screen-card,
.phone-card {
  margin: 0;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.screen-card img {
  width: 100%;
  aspect-ratio: 16 / 8.75;
  object-fit: cover;
  object-position: top left;
  border: 1px solid #e7e2d8;
  border-radius: 6px;
}

.phone-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  border-color: var(--line);
}

.phone-frame {
  max-width: 250px;
  margin: 0 auto;
  padding: 8px;
  background: #fff;
  border: 1px solid #e7e2d8;
  border-radius: 26px;
  box-shadow: 0 18px 40px rgba(21, 25, 34, 0.12);
}

.phone-frame img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: top center;
  border-radius: 20px;
}

figcaption {
  padding: 12px 4px 2px;
  color: var(--muted);
  font-size: 0.94rem;
}

.phone-card figcaption {
  color: var(--muted);
  text-align: center;
}

.version-label {
  display: inline-flex;
  margin: 0;
  padding: 4px 10px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 820;
  background: #fff1cb;
  border-radius: 999px;
}

.version-card.highlighted {
  border-color: rgba(201, 154, 46, 0.45);
  box-shadow: var(--shadow);
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

summary {
  padding: 18px 20px;
  font-weight: 760;
  cursor: pointer;
}

details p {
  padding: 0 20px 20px;
}

.download-section {
  padding: 76px 0;
  color: #fff;
  background: linear-gradient(135deg, #151922 0%, #26313a 100%);
}

.download-head {
  max-width: 780px;
}

.download-head .eyebrow {
  color: #e6c969;
}

.download-head p {
  max-width: 720px;
  color: #dce0e5;
}

.download-head h2 + p {
  margin-top: 14px;
}

.free-limit-note {
  max-width: 760px;
  margin-top: 18px;
  padding: 16px 18px;
  color: #fff;
  background: rgba(230, 201, 105, 0.12);
  border: 1px solid rgba(230, 201, 105, 0.34);
  border-radius: 8px;
}

.free-limit-note strong,
.free-limit-note span {
  display: block;
}

.free-limit-note span {
  margin-top: 6px;
  color: #dce0e5;
}

.recommended-download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.recommended-download strong,
.recommend-label {
  display: block;
}

.recommend-label {
  color: #e6c969;
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.recommended-download strong {
  margin-top: 4px;
  color: #fff;
  font-size: 1.25rem;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.download-card {
  position: relative;
  display: flex;
  min-height: 235px;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.download-card.is-recommended {
  border-color: rgba(230, 201, 105, 0.82);
  box-shadow: 0 0 0 1px rgba(230, 201, 105, 0.18), 0 18px 40px rgba(0, 0, 0, 0.18);
}

.download-card.is-recommended::after {
  content: "Empfohlen";
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 3px 8px;
  color: #231d10;
  font-size: 0.72rem;
  font-weight: 850;
  background: #e6c969;
  border-radius: 999px;
}

.download-card h3 {
  margin-top: 8px;
  color: #fff;
}

.download-card p {
  margin-top: 10px;
  color: #cfd5dc;
}

.os-label {
  color: #e6c969;
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.download-actions {
  justify-content: flex-end;
  margin-top: 18px;
}

.disclaimer {
  padding: 48px 0;
  background: #fffaf0;
  border-top: 1px solid #eadcbf;
  border-bottom: 1px solid #eadcbf;
}

.disclaimer h2 {
  font-size: 1.4rem;
}

.disclaimer p {
  margin-top: 10px;
}

.site-footer {
  padding: 40px 0 28px;
  color: #d5d9df;
  background: #10141b;
}

.footer-top,
.footer-inner,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-top {
  align-items: flex-start;
}

.footer-brand {
  color: #fff;
}

.footer-top p {
  margin-top: 10px;
  color: #aeb6bf;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
}

.site-footer a {
  color: #d5d9df;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 20px;
  color: #9aa3ad;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.legal-page {
  padding: 64px 0 86px;
  background: #fff;
}

.legal-document {
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.legal-document h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.legal-document h2 {
  margin-top: 34px;
  font-size: 1.25rem;
}

.legal-document p {
  margin-top: 10px;
}

.notice {
  margin-top: 24px;
  padding: 16px 18px;
  color: #3d3320;
  background: #fff1cb;
  border: 1px solid #e2c77d;
  border-radius: 8px;
}

.notice.strong strong {
  color: #1f1b14;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .legal-nav {
    position: static;
    display: flex;
    flex-direction: row;
    box-shadow: none;
    border: 0;
    padding: 0;
    background: transparent;
  }

  .hero-grid,
  .split,
  .privacy-grid,
  .download-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 50px;
  }

  .hero-grid {
    gap: 32px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .download-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .download-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .container,
  .narrow {
    width: min(100% - 28px, 1120px);
  }

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

  .site-nav {
    top: 66px;
    left: 14px;
    right: 14px;
  }

  .legal-nav {
    display: none;
  }

  .hero {
    padding: 38px 0 28px;
  }

  .hero-text {
    font-size: 1.04rem;
  }

  .hero-actions,
  .download-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 60px 0;
  }

  .feature-grid,
  .product-showcase,
  .pricing-grid,
  .trust-grid,
  .download-grid {
    grid-template-columns: 1fr;
  }

  .recommended-download {
    align-items: stretch;
    flex-direction: column;
  }

  .screenshot-pair {
    grid-template-columns: 1fr;
  }

  .phone-frame {
    max-width: 280px;
  }

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

  .footer-top,
  .footer-inner,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-document {
    padding: 24px 18px;
  }
}

.coming-soon-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 78% 30%, rgba(201, 154, 46, 0.13), transparent 32%),
    linear-gradient(180deg, #f9f7f2 0%, #eee9de 100%);
}

.coming-soon-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 20px;
}

.coming-soon-card {
  width: min(880px, 100%);
  padding: clamp(28px, 6vw, 58px);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.coming-soon-brand {
  margin-bottom: 44px;
}

.coming-soon-card h1 {
  max-width: 760px;
}

.coming-soon-text {
  max-width: 680px;
  margin-top: 22px;
  color: #3e454d;
  font-size: 1.16rem;
}

.coming-soon-status {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  padding: 10px 14px;
  color: #fff;
  background: var(--deep);
  border-radius: 8px;
}

.coming-soon-status span {
  color: #e6c969;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coming-soon-status strong {
  font-size: 0.95rem;
}

.coming-soon-preview {
  position: relative;
  margin-top: 34px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 22px 56px rgba(25, 29, 36, 0.14);
}

.coming-preview-desktop {
  width: 100%;
  aspect-ratio: 16 / 8.75;
  object-fit: cover;
  object-position: top left;
  border-radius: 6px;
}

.coming-preview-mobile {
  position: absolute;
  right: -18px;
  bottom: -28px;
  width: min(26%, 190px);
  min-width: 118px;
  padding: 7px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 22px 48px rgba(25, 29, 36, 0.22);
}

.coming-preview-mobile img {
  width: 100%;
  max-height: 330px;
  object-fit: cover;
  object-position: top center;
  border-radius: 20px;
}

.coming-soon-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 50px 0 0;
  padding: 0;
  list-style: none;
}

.coming-soon-points li {
  padding: 12px 14px;
  color: var(--ink);
  font-weight: 750;
  background: #f6f4ef;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.coming-soon-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 42px;
  padding-top: 20px;
  color: var(--muted);
  font-size: 0.92rem;
  border-top: 1px solid var(--line);
}

.coming-soon-footer a {
  font-weight: 760;
  text-decoration: none;
}

.coming-soon-footer a:hover {
  color: var(--ink);
}

@media (max-width: 680px) {
  .coming-soon-brand {
    margin-bottom: 34px;
  }

  .coming-soon-points {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .coming-soon-preview {
    margin-top: 28px;
  }

  .coming-preview-mobile {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(62%, 210px);
    margin: 12px auto -2px;
  }

  .coming-soon-status {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }
}
