:root {
  color-scheme: light;
  --background: #fcfaf8;
  --foreground: #2c2826;
  --muted: #766d68;
  --primary: #f97316;
  --primary-dark: #e85d0a;
  --border: #e9e2dc;
  --card: #ffffff;
  --soft: #fff4ec;
  --section: #faf8f6;
  --radius: 14px;
  --shadow: 0 8px 30px -10px rgb(249 115 22 / 0.25);
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

button,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

svg {
  display: block;
}

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

.narrow {
  max-width: 850px;
}

.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;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--foreground);
  color: white;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgb(233 226 220 / 0.8);
  background: rgb(252 250 248 / 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--foreground);
  font-size: 1.23rem;
  font-weight: 750;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.brand img,
.hero-logo,
.footer-brand img {
  border-radius: 23%;
}

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

.site-nav > a {
  color: var(--muted);
  font-size: 0.98rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-nav > a:hover,
.site-nav > a:focus-visible {
  color: var(--primary);
}

.language-picker {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  border-radius: 8px;
}

.language-picker:focus-within {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.language-picker select {
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--foreground);
  cursor: pointer;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--foreground);
  cursor: pointer;
}

.menu-toggle svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.hero {
  min-height: 590px;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 85% 20%, rgb(249 115 22 / 0.06), transparent 25%),
    linear-gradient(135deg, rgb(249 115 22 / 0.08), rgb(220 60 30 / 0.03));
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  padding-block: 72px 86px;
  text-align: center;
}

.hero-logo {
  width: 128px;
  height: 128px;
  margin: 0 auto 26px;
  box-shadow: 0 14px 30px -16px rgb(39 27 21 / 0.45);
}

.hero h1 {
  max-width: 1080px;
  margin: 0 auto;
  font-size: clamp(2.5rem, 5.3vw, 4.6rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.hero h1 span {
  display: inline;
}

.accent {
  color: var(--primary-dark);
}

.hero-copy {
  max-width: 700px;
  margin: 22px auto 30px;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.8vw, 1.3rem);
  line-height: 1.45;
}

.cta-button {
  min-width: 285px;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 14px 25px;
  border: 0;
  border-radius: 12px;
  background: var(--primary);
  box-shadow: var(--shadow);
  color: white;
  font-weight: 750;
  cursor: default;
}

.cta-button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.availability {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.stats {
  border-bottom: 1px solid var(--border);
  background: var(--card);
}

.stats-grid {
  min-height: 188px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 20px;
  max-width: 690px;
}

.stat {
  display: grid;
  justify-items: center;
  line-height: 1.2;
}

.stat svg {
  width: 32px;
  height: 32px;
  margin-bottom: 9px;
  fill: none;
  stroke: var(--primary);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stat strong {
  font-size: 2rem;
  font-weight: 720;
  letter-spacing: -0.04em;
}

.stat span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding-block: 96px;
}

.section-heading {
  margin-bottom: 56px;
  text-align: center;
}

.section-heading h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.7rem);
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.section-heading p,
.final-cta p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 900px;
  margin-inline: auto;
}

.feature-card {
  min-height: 210px;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: 0 5px 20px -18px rgb(76 49 35 / 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.icon-box {
  width: 49px;
  height: 49px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 12px;
  background: var(--soft);
  color: var(--primary);
}

.icon-box svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3,
.steps h3 {
  margin: 0 0 8px;
  font-size: 1.3rem;
  line-height: 1.3;
}

.feature-card p,
.steps p {
  margin: 0;
  color: var(--muted);
}

.how-it-works {
  border-block: 1px solid rgb(233 226 220 / 0.7);
  background: var(--section);
}

.steps {
  display: grid;
  gap: 50px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: start;
  gap: 24px;
}

.step-number {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-size: 1.4rem;
  font-weight: 750;
}

.legal-links {
  padding-block: 65px;
  border-bottom: 1px solid var(--border);
  background: var(--card);
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 930px;
}

.legal-card {
  min-height: 104px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 3px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--background);
  color: var(--foreground);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.legal-card:hover,
.legal-card:focus-visible {
  border-color: rgb(249 115 22 / 0.55);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  outline: none;
}

.legal-card strong {
  font-size: 1rem;
}

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

.final-cta {
  padding-block: 76px;
  background: var(--card);
  text-align: center;
}

.final-cta .cta-button {
  min-width: 245px;
  min-height: 50px;
  margin-top: 27px;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--card);
}

.footer-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.legal-dialog {
  width: min(700px, calc(100% - 32px));
  max-height: min(82vh, 760px);
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--card);
  color: var(--foreground);
  box-shadow: 0 24px 80px rgb(26 18 13 / 0.25);
}

.legal-dialog::backdrop {
  background: rgb(23 17 14 / 0.55);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}

.dialog-shell {
  position: relative;
  padding: 36px;
}

.legal-dialog h2 {
  margin: 0 46px 4px 0;
  font-size: 1.8rem;
  letter-spacing: -0.03em;
}

.updated {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 0.9rem;
}

.dialog-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 9px;
  background: var(--section);
  color: var(--muted);
  cursor: pointer;
}

.dialog-close:hover,
.dialog-close:focus-visible {
  background: var(--soft);
  color: var(--primary-dark);
  outline: none;
}

.dialog-close svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.legal-copy {
  display: grid;
  gap: 24px;
}

.legal-copy section,
.legal-copy h3,
.legal-copy p {
  margin: 0;
}

.legal-copy h3 {
  margin-bottom: 6px;
  font-size: 1.02rem;
}

.legal-copy p,
.legal-copy address {
  color: var(--muted);
  font-size: 0.95rem;
  font-style: normal;
}

.imprint-copy a {
  color: var(--primary-dark);
  text-underline-offset: 3px;
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

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

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 18px;
    border-bottom: 1px solid var(--border);
    background: var(--card);
    box-shadow: 0 14px 30px rgb(52 34 25 / 0.08);
  }

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

  .site-nav > a,
  .language-picker {
    padding: 12px 8px;
  }

  .language-picker {
    justify-self: start;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding-block: 56px 66px;
  }

  .hero-logo {
    width: 96px;
    height: 96px;
    margin-bottom: 24px;
  }

  .hero h1 span {
    display: block;
  }

  .stats-grid {
    min-height: 160px;
  }

  .stat strong {
    font-size: 1.6rem;
  }

  .section {
    padding-block: 72px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .feature-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

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

  .legal-grid {
    gap: 14px;
  }

  .legal-card {
    min-height: 88px;
  }

  .footer-inner {
    flex-direction: column;
    justify-content: center;
    padding-block: 18px;
  }
}

@media (max-width: 520px) {
  .cta-button {
    width: 100%;
    min-width: 0;
  }

  .stats-grid {
    gap: 6px;
  }

  .stat svg {
    width: 27px;
    height: 27px;
  }

  .stat strong {
    font-size: 1.35rem;
  }

  .stat span {
    font-size: 0.78rem;
  }

  .feature-card {
    padding: 25px;
  }

  .steps {
    gap: 38px;
  }

  .steps li {
    grid-template-columns: 46px 1fr;
    gap: 18px;
  }

  .step-number {
    width: 46px;
    height: 46px;
    font-size: 1.15rem;
  }

  .dialog-shell {
    padding: 28px 23px;
  }

  .dialog-close {
    top: 18px;
    right: 18px;
  }
}

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

