:root {
  --bg: #1b1711;
  --bg-accent: #3a2f1f;
  --surface: rgba(37, 31, 22, 0.8);
  --surface-strong: #211b14;
  --surface-dark: #111111;
  --text: #f8efe0;
  --muted: #d0c1a7;
  --line: rgba(255, 215, 150, 0.14);
  --line-strong: rgba(247, 198, 116, 0.26);
  --primary: #f1be68;
  --primary-strong: #d79b35;
  --primary-soft: rgba(241, 190, 104, 0.14);
  --success: #e6c27b;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --shadow-soft: 0 16px 34px rgba(0, 0, 0, 0.18);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Source Sans 3", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(241, 190, 104, 0.2), transparent 28%),
    radial-gradient(circle at top right, rgba(124, 89, 39, 0.22), transparent 24%),
    linear-gradient(180deg, #15110d 0%, #20180f 46%, #17130f 100%);
}

a {
  color: inherit;
}

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

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.92em;
  padding: 0.15rem 0.4rem;
  border-radius: 999px;
  background: rgba(241, 190, 104, 0.14);
  color: #ffe3b4;
}

.page-shell {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  padding: 22px 0 48px;
}

.site-header,
.hero,
.trust-strip,
.signal-strip,
.downloads-section,
.pricing-section,
.feature-section,
.steps-section,
.voices-section,
.faq-section,
.feedback-section,
.imprint-section,
.site-footer {
  position: relative;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 6px 0 26px;
}

.news-ticker {
  position: relative;
  margin: -6px 0 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 220, 158, 0.14);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 249, 238, 0.06), rgba(255, 249, 238, 0.03)),
    rgba(26, 21, 15, 0.92);
  box-shadow: var(--shadow-soft);
}

.news-ticker::before,
.news-ticker::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 72px;
  z-index: 2;
  pointer-events: none;
}

.news-ticker::before {
  left: 0;
  background: linear-gradient(90deg, rgba(24, 19, 13, 0.98), rgba(24, 19, 13, 0));
}

.news-ticker::after {
  right: 0;
  background: linear-gradient(270deg, rgba(24, 19, 13, 0.98), rgba(24, 19, 13, 0));
}

.news-ticker-track {
  display: flex;
  gap: 14px;
  width: max-content;
  padding: 10px 0;
  animation: ticker-scroll 34s linear infinite;
}

.news-ticker:hover .news-ticker-track,
.news-ticker:focus-within .news-ticker-track {
  animation-play-state: paused;
}

.news-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}

.news-ticker-item:hover,
.news-ticker-item:focus-visible {
  color: #fff2db;
  outline: none;
}

.news-ticker-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(241, 190, 104, 0.16);
  color: var(--primary);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-copy {
  max-width: 48rem;
  margin: 12px 0 0;
  color: var(--muted);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 124px;
  min-height: 44px;
  padding: 6px 4px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 218, 150, 0.96), rgba(241, 190, 104, 0.94));
  box-shadow: 0 20px 36px rgba(241, 190, 104, 0.16);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: auto;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.25rem, 1.35vw, 1.5rem);
  font-weight: 800;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 auto;
  justify-content: center;
  flex-wrap: nowrap;
  min-width: 0;
}

.header-controls {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(241, 190, 104, 0.18);
  border-radius: 14px;
  background: linear-gradient(135deg, #ffd692, var(--primary));
  color: #251a0d;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  outline: none;
  transform: translateY(-1px);
  border-color: transparent;
}

.nav-toggle i {
  font-size: 1.25rem;
  line-height: 1;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 999px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #1c140b;
  background: rgba(255, 214, 140, 0.9);
  outline: none;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lang-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 48px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(241, 190, 104, 0.22);
  border-radius: 999px;
  background: rgba(255, 249, 238, 0.04);
  color: var(--muted);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.lang-flag {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 248, 236, 0.48);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
  flex: 0 0 18px;
}

.lang-flag-img {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: block;
  flex: 0 0 18px;
}

.lang-flag-de {
  background: linear-gradient(180deg, #1a1a1a 0 33.33%, #c83b2f 33.33% 66.66%, #efbf47 66.66% 100%);
}

.lang-flag-es {
  background: linear-gradient(180deg, #b3262f 0 25%, #efc24c 25% 75%, #b3262f 75% 100%);
}

.lang-button:hover,
.lang-button:focus-visible {
  outline: none;
  transform: translateY(-1px);
  border-color: rgba(241, 190, 104, 0.38);
  color: var(--text);
}

.lang-button.is-active {
  color: #251a0d;
  background: linear-gradient(135deg, #ffd692, var(--primary));
  border-color: transparent;
  box-shadow: 0 14px 26px rgba(241, 190, 104, 0.2);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 28px;
  align-items: stretch;
  padding: 20px 0 28px;
}

.hero-copy,
.hero-panel,
.downloads-section,
.pricing-section,
.feature-section,
.steps-section,
.voices-section,
.faq-section,
.feedback-section,
.imprint-section,
.site-footer {
  border: 1px solid rgba(255, 220, 158, 0.14);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-copy {
  padding: 38px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top left, rgba(241, 190, 104, 0.13), transparent 34%),
    linear-gradient(180deg, rgba(43, 34, 24, 0.96), rgba(30, 24, 18, 0.92));
}

.hero-product-logo {
  display: block;
  width: min(360px, 72%);
  height: auto;
  margin: 0 0 18px;
  filter: drop-shadow(0 22px 44px rgba(0, 0, 0, 0.28));
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}

.hero h1,
.section-heading h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(2.35rem, 4.3vw, 4rem);
  max-width: 14ch;
}

.hero-rotator {
  inline-size: min(14ch, 100%);
  min-height: 3.4em;
  display: flex;
  align-items: flex-start;
}

.hero-rotator-text {
  display: inline-block;
  inline-size: min(14ch, 100%);
  text-wrap: balance;
  transition:
    opacity 260ms ease,
    transform 260ms ease,
    filter 260ms ease;
}

.hero-rotator-text.is-switching {
  opacity: 0.18;
  transform: translateY(10px);
  filter: blur(2px);
}

.lead {
  max-width: 46rem;
  margin: 18px 0 0;
  font-size: 1.2rem;
  color: #e4d2b5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    filter 220ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.24) 50%, transparent 80%);
  transform: translateX(-130%);
  opacity: 0;
  pointer-events: none;
}

.button:hover::after,
.button:focus-visible::after {
  opacity: 1;
  animation: button-sheen 720ms ease;
}

.button-primary {
  color: #251a0d;
  background: linear-gradient(135deg, #ffd692, var(--primary));
  box-shadow: 0 20px 30px rgba(241, 190, 104, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(135deg, #ffdfa9, var(--primary-strong));
  filter: saturate(1.08);
  box-shadow: 0 24px 42px rgba(241, 190, 104, 0.28);
}

.button-secondary {
  color: #ffe8c0;
  background: rgba(255, 232, 192, 0.06);
  border-color: rgba(241, 190, 104, 0.26);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(255, 214, 140, 0.44);
  background: rgba(255, 232, 192, 0.14);
  box-shadow: 0 18px 28px rgba(241, 190, 104, 0.1);
}

.button-block {
  width: 100%;
}

.hero-points {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-weight: 700;
}

.hero-points li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffd58a, var(--success));
  box-shadow: 0 0 0 6px rgba(241, 190, 104, 0.12);
}

.hero-panel {
  padding: 24px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(245, 196, 111, 0.96), rgba(227, 170, 75, 0.94));
  color: #24190c;
}

.status-card {
  height: 100%;
  padding: 26px;
  border-radius: calc(var(--radius-xl) - 10px);
  background:
    radial-gradient(circle at top right, rgba(255, 240, 204, 0.34), transparent 32%),
    linear-gradient(180deg, rgba(255, 252, 245, 0.42), rgba(255, 247, 232, 0.18));
  border: 1px solid rgba(60, 34, 8, 0.08);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-pill {
  background: rgba(39, 28, 16, 0.1);
  color: #49331a;
}

.status-card h2 {
  margin: 20px 0 10px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.55rem, 2.2vw, 1.95rem);
  line-height: 1.12;
}

.status-card p {
  margin: 0;
  color: rgba(53, 33, 10, 0.78);
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0 0;
}

.status-grid div {
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.28);
  border: 1px solid rgba(82, 55, 22, 0.1);
}

.status-grid dt {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(78, 50, 18, 0.68);
}

.status-grid dd {
  margin: 8px 0 0;
  font-weight: 700;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 4px 0 28px;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.trust-strip article {
  padding: 22px 24px;
  border-radius: var(--radius-lg);
  background: rgba(43, 34, 24, 0.78);
  border: 1px solid rgba(255, 220, 158, 0.12);
  box-shadow: var(--shadow-soft);
}

.signal-strip article,
.voice-card,
.feedback-form {
  padding: 22px 24px;
  border-radius: var(--radius-lg);
  background: rgba(43, 34, 24, 0.72);
  border: 1px solid rgba(255, 220, 158, 0.1);
  box-shadow: var(--shadow-soft);
}

.trust-strip strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Manrope", sans-serif;
  font-size: 1.12rem;
}

.signal-strip span,
.feedback-form label span {
  display: inline-flex;
  margin-bottom: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

.signal-strip strong,
.voice-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Manrope", sans-serif;
}

.trust-strip p,
.signal-strip p,
.section-heading p,
.download-card p,
.feature-card p,
.step-card p,
.voice-card p,
.faq-list p,
.site-footer p,
.feedback-form p {
  margin: 0;
  color: var(--muted);
}

.downloads-section,
.pricing-section,
.feature-section,
.steps-section,
.voices-section,
.faq-section,
.feedback-section,
.imprint-section,
.site-footer {
  margin-top: 28px;
  padding: 32px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(40, 32, 23, 0.92), rgba(29, 24, 18, 0.88));
}

.section-heading {
  max-width: 58rem;
}

.section-heading h2 {
  font-size: clamp(1.7rem, 2.5vw, 2.45rem);
  line-height: 1.12;
  max-width: 22ch;
}

.downloads-section .section-heading h2 {
  max-width: 28ch;
}

.section-heading p {
  margin-top: 14px;
  font-size: 1rem;
  max-width: 68ch;
}

.download-grid,
.pricing-grid,
.updates-grid,
.feature-grid,
.steps-grid,
.voices-grid,
.feedback-grid {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}

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

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

.download-card,
.pricing-card,
.update-card,
.feature-card,
.step-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  padding: 12px 22px 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 249, 238, 0.04);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.pricing-card {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 24px;
  align-items: start;
}

.updates-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.update-card {
  background:
    radial-gradient(circle at top right, rgba(241, 190, 104, 0.11), transparent 32%),
    linear-gradient(180deg, rgba(52, 41, 28, 0.92), rgba(36, 29, 21, 0.82));
}

.update-card:hover,
.update-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(247, 198, 116, 0.3);
  box-shadow: 0 24px 42px rgba(0, 0, 0, 0.26);
}

.update-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.update-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(241, 190, 104, 0.14);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.update-meta time {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.update-card h3 {
  margin: 0 0 12px;
  font-family: "Manrope", sans-serif;
  font-size: 1.25rem;
}

.update-card p {
  margin: 0;
  color: #eadbc0;
}

.pricing-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(241, 190, 104, 0.14);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-price {
  display: block;
  margin-top: 16px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.pricing-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.pricing-points li {
  position: relative;
  padding-left: 22px;
  color: #eadbc0;
}

.pricing-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--primary);
  transform: translateY(-50%);
}

.download-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 222, 162, 0.12), transparent 34%),
    radial-gradient(circle at 85% 15%, rgba(241, 190, 104, 0.18), transparent 28%);
  opacity: 0.9;
  pointer-events: none;
}

.card-glow {
  position: absolute;
  top: -74px;
  right: -28px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(241, 190, 104, 0.4), rgba(241, 190, 104, 0.08) 46%, transparent 72%);
  opacity: 0.68;
  filter: blur(8px);
  pointer-events: none;
  transition: transform 280ms ease, opacity 280ms ease;
}

.download-card > :not(.card-glow) {
  position: relative;
  z-index: 1;
}

.download-card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 auto;
  gap: 0;
}

.download-card:hover,
.download-card:focus-within,
.feature-card:hover,
.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(247, 198, 116, 0.3);
  box-shadow: 0 24px 42px rgba(0, 0, 0, 0.26);
}

.download-card:hover .card-glow,
.download-card:focus-within .card-glow {
  opacity: 1;
  transform: scale(1.08);
}

.platform-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.platform-head-top {
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 10px;
}

.platform-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  color: #2b2219;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 245, 223, 0.88), rgba(241, 190, 104, 0.94) 60%, rgba(203, 142, 47, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 16px 28px rgba(241, 190, 104, 0.16);
}

.platform-icon svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.platform-icon i {
  font-size: 29px;
  line-height: 1;
}

.platform-icon-mac svg {
  width: 34px;
  height: 34px;
}

.platform-icon-mac i {
  font-size: 33px;
}

.platform-icon-linux svg {
  width: 37px;
  height: 37px;
}

.platform-copy {
  display: grid;
  gap: 4px;
}

.platform-head h3,
.feature-card h3,
.step-card h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 1.35rem;
}

.version-tag {
  margin: 0;
  font-size: 0.94rem;
  font-weight: 700;
  color: #f0cf97;
}

.download-card ul {
  display: grid;
  gap: 9px;
  margin: 14px 0 18px;
  padding: 0;
  list-style: none;
}

.download-card .button-block {
  margin-top: 18px;
}

.download-card li {
  position: relative;
  padding-left: 18px;
  color: #dec9a6;
}

.download-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--primary);
}

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

.feature-card {
  min-height: 220px;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  background:
    linear-gradient(180deg, rgba(52, 41, 28, 0.92), rgba(36, 29, 21, 0.82));
}

.steps-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step-card span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(241, 190, 104, 0.14), rgba(241, 190, 104, 0.24));
  color: #ffd798;
  font-family: "Manrope", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
}

.voices-marquee {
  position: relative;
  margin-top: 28px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.voices-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee-scroll 34s linear infinite;
}

.voices-marquee:hover .voices-track,
.voices-marquee:focus-within .voices-track {
  animation-play-state: paused;
}

.voice-card {
  min-height: 220px;
  width: min(360px, calc(100vw - 72px));
  flex: 0 0 auto;
  background:
    radial-gradient(circle at top right, rgba(241, 190, 104, 0.11), transparent 30%),
    linear-gradient(180deg, rgba(53, 42, 31, 0.92), rgba(35, 28, 20, 0.84));
}

.quote {
  margin: 0 0 18px;
  font-family: "Manrope", sans-serif;
  font-size: 1.24rem;
  line-height: 1.4;
  color: #fff2db;
}

.voice-card span {
  color: var(--muted);
  font-size: 0.96rem;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 250, 240, 0.05);
  overflow: hidden;
}

.faq-list summary {
  list-style: none;
  position: relative;
  padding: 18px 54px 18px 20px;
  font-weight: 800;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  font-family: "Manrope", sans-serif;
  font-size: 1.5rem;
  color: var(--primary);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  padding: 0 20px 20px;
}

.feedback-form {
  margin-top: 28px;
  display: grid;
  gap: 18px;
}

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

.feedback-form label {
  display: grid;
  gap: 8px;
}

.feedback-form input,
.feedback-form textarea {
  width: 100%;
  border: 1px solid rgba(241, 190, 104, 0.22);
  border-radius: 18px;
  background: rgba(255, 249, 238, 0.05);
  color: var(--text);
  padding: 14px 16px;
  font: inherit;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.feedback-form textarea {
  resize: vertical;
  min-height: 150px;
}

.feedback-form input::placeholder,
.feedback-form textarea::placeholder {
  color: rgba(208, 193, 167, 0.82);
}

.feedback-form input:focus,
.feedback-form textarea:focus {
  outline: none;
  border-color: rgba(241, 190, 104, 0.5);
  background: rgba(255, 249, 238, 0.08);
  box-shadow: 0 0 0 4px rgba(241, 190, 104, 0.12);
}

.feedback-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.feedback-status {
  min-height: 1.5em;
  margin: 0;
  color: var(--muted);
}

.feedback-status[data-state="pending"] {
  color: #f4d7a0;
}

.feedback-status[data-state="success"] {
  color: #d8efc0;
}

.feedback-status[data-state="error"] {
  color: #f5b7aa;
}

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

.imprint-card {
  max-width: 42rem;
  margin-top: 28px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(43, 34, 24, 0.72);
  border: 1px solid rgba(255, 220, 158, 0.1);
  box-shadow: var(--shadow-soft);
}

.imprint-card p {
  margin: 0 0 8px;
  color: var(--text);
}

.imprint-card a {
  color: #ffe3b4;
}

.imprint-spacer {
  margin-top: 20px !important;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
  box-shadow: none;
}

.site-footer span {
  font-weight: 700;
  color: #ffe1ab;
}

.hero-copy,
.hero-panel,
.trust-strip article,
.signal-strip article,
.downloads-section,
.pricing-section,
.feature-section,
.voices-section,
.steps-section,
.faq-section,
.feedback-section,
.imprint-section {
  animation: fade-up 700ms ease both;
}

.hero-panel {
  animation-delay: 80ms;
}

.trust-strip article:nth-child(2),
.signal-strip article:nth-child(2) {
  animation-delay: 100ms;
}

.trust-strip article:nth-child(3),
.signal-strip article:nth-child(3) {
  animation-delay: 180ms;
}

.download-card:nth-child(2) {
  animation-delay: 100ms;
}

.download-card:nth-child(3) {
  animation-delay: 180ms;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes button-sheen {
  from {
    transform: translateX(-130%);
  }
  to {
    transform: translateX(130%);
  }
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 10px));
  }
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 7px));
  }
}

@media (max-width: 1100px) {
  .hero,
  .download-grid,
  .updates-grid,
  .feature-grid,
  .steps-grid,
  .trust-strip,
  .signal-strip,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 22px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .news-ticker::before,
  .news-ticker::after {
    width: 36px;
  }

  .voices-marquee {
    mask-image: none;
  }

  .voices-track {
    animation-duration: 40s;
  }

  .download-card {
    padding: 16px 20px 20px;
  }

  .platform-head-top {
    margin-bottom: 10px;
  }

  .platform-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
  }

  .platform-icon i {
    font-size: 29px;
  }

  .platform-icon-mac i {
    font-size: 33px;
  }

  .platform-icon svg {
    width: 29px;
    height: 29px;
  }

  .platform-icon-linux svg {
    width: 37px;
    height: 37px;
  }

  .download-card ul {
    margin: 14px 0 18px;
    gap: 8px;
  }

  .download-card .button-block {
    margin-top: 16px;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--container));
    padding-top: 14px;
  }

  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    padding-bottom: 18px;
  }

  .header-controls {
    justify-self: end;
  }

  .news-ticker {
    margin: 0 0 18px;
    border-radius: 22px;
  }

  .news-ticker::before,
  .news-ticker::after {
    display: none;
  }

  .news-ticker-track {
    display: grid;
    width: auto;
    animation: none;
    gap: 10px;
    padding: 12px;
  }

  .news-ticker-item {
    white-space: normal;
    padding: 0;
    align-items: flex-start;
  }

  .news-ticker-item[aria-hidden="true"] {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .lang-switcher {
    width: auto;
  }

  .site-nav {
    width: 100%;
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin-top: 14px;
    padding: 14px;
    border: 1px solid rgba(255, 220, 158, 0.12);
    border-radius: 20px;
    background: rgba(32, 25, 18, 0.92);
  }

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

  .site-nav a {
    padding: 12px 14px;
    font-size: 0.98rem;
    border-radius: 14px;
    background: rgba(255, 249, 238, 0.04);
  }

  .brand-mark {
    width: 108px;
  }

  .hero-copy,
  .hero-panel,
  .downloads-section,
  .pricing-section,
  .feature-section,
  .steps-section,
  .voices-section,
  .faq-section,
  .feedback-section,
  .imprint-section,
  .site-footer {
    padding: 22px;
    border-radius: 24px;
  }

  .pricing-card {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .download-card {
    padding: 16px 18px 18px;
  }

  .download-card-body {
    flex: 0 0 auto;
    gap: 0;
  }

  .download-card .button-block {
    margin-top: 16px;
  }

  .platform-icon {
    width: 54px;
    height: 54px;
  }

  .platform-icon i {
    font-size: 28px;
  }

  .platform-icon-mac i {
    font-size: 32px;
  }

  .platform-icon svg {
    width: 28px;
    height: 28px;
  }

  .platform-icon-linux svg {
    width: 36px;
    height: 36px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.15rem, 10vw, 3rem);
  }

  .hero-rotator,
  .hero-rotator-text {
    inline-size: 100%;
  }

  .hero-rotator {
    min-height: 4.2em;
  }

  .lead {
    font-size: 1.08rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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

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

  .feedback-actions {
    flex-direction: column;
  }

  .feedback-actions .button {
    width: 100%;
  }

  .voices-marquee {
    overflow: visible;
  }

  .voices-track {
    display: grid;
    width: auto;
    animation: none;
    gap: 16px;
  }

  .voice-card {
    width: auto;
  }

  .voice-card[aria-hidden="true"] {
    display: none;
  }
}

@media (max-width: 380px) {
  .site-header {
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 12px;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 92px;
    min-height: 38px;
  }

  .brand-copy strong {
    font-size: 1.05rem;
  }

  .header-controls {
    width: 100%;
    justify-content: space-between;
  }

  .nav-toggle {
    order: 2;
    width: 40px;
    height: 40px;
  }

  .lang-switcher {
    order: 1;
    gap: 6px;
  }

  .lang-button {
    min-width: 42px;
    min-height: 36px;
    padding: 0 10px;
    gap: 6px;
  }

  .lang-button span:last-child {
    font-size: 0.82rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
