 

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  font-family: var(--font-text);
  color: var(--color-ink);
  background: var(--color-canvas);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

h1, h2, h3, p, figure, blockquote, dl, dd { margin: 0; }

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.18s ease;
}
a:hover { color: var(--color-primary-press); }

:focus-visible {
  outline: 2px solid var(--color-primary-focus);
  outline-offset: 2px;
  border-radius: 2px;
}

::selection {
  background: var(--color-primary);
  color: var(--color-on-primary);
}

.u-visually-hidden {
  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: absolute;
  left: 12px;
  top: -60px;
  z-index: 200;
  background: var(--color-ink);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  transition: top 0.18s ease;
}
.skip-link:focus { top: 12px; color: #fff; }

.container {
  max-width: 1240px;
  margin: 0 auto;
}
.container--narrow { max-width: 1140px; }

.section {
  padding: clamp(56px, 7vw, 100px) clamp(16px, 4vw, 40px);
}
.section--hero   { padding: clamp(48px, 7vw, 96px) clamp(16px, 4vw, 40px); overflow: hidden; }
.section--band   { padding: clamp(36px, 4.5vw, 64px) clamp(16px, 4vw, 40px); }
.section--footer { padding: clamp(36px, 4vw, 56px) clamp(16px, 4vw, 40px); }

.surface-canvas    { background: var(--color-canvas); }
.surface-parchment { background: var(--color-canvas-parchment); }
.surface-tile-1    { background: var(--color-surface-tile-1); color: #fff; }
.surface-tile-2    { background: var(--color-surface-tile-2); color: #fff; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-text);
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease;
  white-space: nowrap;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: scale(0.95); }

.btn--primary {
  font-size: 17px; font-weight: 400; line-height: 1; letter-spacing: -0.374px;
  background: var(--color-primary);
  color: var(--color-on-primary);
  border-radius: var(--radius-pill);
  padding: 11px 22px;
  min-height: 44px;
}
.btn--primary:hover  { color: var(--color-on-primary); }
.btn--primary:active { background: var(--color-primary-press); }

.btn--secondary {
  font-size: 17px; font-weight: 400; line-height: 1; letter-spacing: -0.374px;
  background: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-pill);
  padding: 10px 21px;
  min-height: 44px;
}

.btn--store-hero {
  font-size: 18px; font-weight: 300; line-height: 1; letter-spacing: 0;
  background: var(--color-primary);
  color: var(--color-on-primary);
  border-radius: var(--radius-pill);
  padding: 14px 28px;
  min-height: 48px;
}
.btn--store-hero:hover  { color: var(--color-on-primary); }
.btn--store-hero:active { background: var(--color-primary-press); }

.btn--on-dark {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}
.btn--on-dark:hover { color: #fff; }

.btn--compact {
  padding: 8px 18px;
  min-height: 38px;
  font-size: 15px;
}

.topbar {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 44px;
  padding: 0 clamp(16px, 4vw, 40px);
  background: var(--color-surface-black);
  color: #fff;
  font-size: 12px;
  letter-spacing: -0.12px;
}
.topbar__brand { opacity: 0.7; }
.topbar__spacer { flex: 1; }
.topbar__phone { color: #fff; opacity: 0.9; }
.topbar__phone:hover { color: #fff; opacity: 1; }
.topbar__sep { opacity: 0.35; }

.langswitch {
  display: flex;
  gap: 8px;
  align-items: center;
}
.langswitch a { color: #fff; opacity: 0.45; }
.langswitch a:hover { color: #fff; opacity: 0.8; }
.langswitch [aria-current="true"] { color: #fff; opacity: 1; }

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 32px);
  padding: 10px clamp(16px, 4vw, 40px);
  background: rgba(245, 245, 247, 0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .header { background: var(--color-canvas-parchment); }
}

.header__logo { display: flex; align-items: center; flex: none; }
.header__logo img { height: 38px; width: auto; }

.header__nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 26px);
  flex: 1;
  min-width: 0;
  font-size: 14px;
  letter-spacing: -0.224px;
}
.header__nav a {
  color: var(--color-ink);
  position: relative;
  white-space: nowrap;
  padding: 4px 0;
}
.header__nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.24s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.header__nav a:hover,
.header__nav a[aria-current="true"] { color: var(--color-ink); }
.header__nav a:hover::after,
.header__nav a[aria-current="true"]::after { transform: scaleX(1); }

.hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(28px, 4vw, 72px);
  align-items: center;
}
.hero__logo {
  width: clamp(180px, 22vw, 260px);
  margin-bottom: 26px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 52px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -1.4px;
  white-space: nowrap;
}
.hero__title .line-mask { padding-bottom: 0.12em; margin-bottom: -0.12em; }
.hero__lead {
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.55;
  color: var(--color-ink-muted-80);
  margin: 20px 0 0;
  max-width: 52ch;
  text-wrap: pretty;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.hero__media {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 0;
}
.hero__frame {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-product);
  background: var(--color-canvas-parchment);
}
.hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__caption {
  position: absolute;
  left: 0;
  bottom: 18px;
  background: #fff;
  border: 1px solid var(--color-hairline);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  max-width: 250px;
}
.hero__caption-name {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.3px;
}
.hero__caption-role {
  font-size: 14px;
  color: var(--color-ink-muted-48);
  margin-top: 2px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(190px, 100%), 1fr));
  gap: clamp(20px, 3vw, 40px);
}
.stats__value {
  font-family: var(--font-display);
  font-size: clamp(34px, 3.6vw, 48px);
  font-weight: 600;
  letter-spacing: -1px;
  line-height: 1;
}
.stats__value em {
  font-style: normal;
  color: var(--color-primary-on-dark);
}
.stats__label {
  font-size: 15px;
  color: var(--color-body-muted);
  margin-top: 8px;
}

.eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.224px;
  color: var(--color-primary);
  margin-bottom: 12px;
}
.eyebrow--on-dark { color: var(--color-primary-on-dark); }

.section__intro { max-width: 760px; }

.h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.8vw, 46px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -1px;
  text-wrap: balance;
}
.h2--sm { font-size: clamp(30px, 3.6vw, 44px); }
.h2--xs { font-size: clamp(28px, 3.4vw, 42px); line-height: 1.12; letter-spacing: -0.9px; }
.h2--lg { font-size: clamp(30px, 3.8vw, 48px); line-height: 1.08; letter-spacing: -1.2px; }
.h2 em { font-style: normal; color: var(--color-primary-on-dark); }

.lead {
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-ink-muted-80);
  margin: 16px 0 0;
  text-wrap: pretty;
}
.lead--on-dark {
  line-height: 1.55;
  color: var(--color-body-muted);
  max-width: 48ch;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 16px;
  margin-top: clamp(28px, 4vw, 48px);
}
.card {
  background: var(--color-canvas);
  border: 1px solid var(--color-hairline);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.24s ease, transform 0.24s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.card:hover {
  border-color: rgba(41, 170, 67, 0.45);
  transform: translateY(-2px);
}
.card__num {
  font-size: 13px;
  color: var(--color-primary);
  font-weight: 600;
}
.card__title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.5px;
}
.card__title small {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-ink-muted-48);
  white-space: nowrap;
  margin-top: 2px;
}
.card__body {
  font-size: 17px;
  line-height: 1.47;
  color: var(--color-ink-muted-80);
}

.callout {
  margin-top: 16px;
  background: var(--color-canvas-parchment);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
}
.callout__title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.5px;
}
.callout__body {
  font-size: 17px;
  line-height: 1.47;
  color: var(--color-ink-muted-80);
  margin-top: 4px;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.split--top   { align-items: start; gap: clamp(28px, 4vw, 72px); }
.split--wide  { gap: clamp(28px, 4vw, 64px); grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); }

.stack { display: flex; flex-direction: column; gap: 14px; }

.panel {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.panel__title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.5px;
}
.panel__body {
  font-size: 17px;
  line-height: 1.47;
  color: var(--color-body-muted);
  margin-top: 6px;
}

.ablauf__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -1px;
  max-width: 20ch;
  text-wrap: balance;
}
.ablauf__track { margin-top: 32px; }
.ablauf__track svg { width: 100%; height: 32px; }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: clamp(20px, 3vw, 40px);
  margin-top: 24px;
}
.step__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
}
.step__title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.6px;
  margin-top: 6px;
}
.step__body {
  font-size: 17px;
  line-height: 1.47;
  color: var(--color-ink-muted-80);
  margin-top: 6px;
}

.byline {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--color-hairline);
}
.byline__name {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.374px;
}
.byline__role {
  font-size: 15px;
  color: var(--color-ink-muted-48);
  margin-top: 2px;
}

.timeline {
  position: relative;
  padding-left: 26px;
}
.timeline__rail {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--color-hairline);
  transform-origin: top center;
}
.timeline__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.timeline__item {
  position: relative;
  padding-bottom: 22px;
}
.timeline__item:last-child { padding-bottom: 0; }
.timeline__dot {
  position: absolute;
  left: -31px;
  top: 7px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #c9c9cd;
}
.timeline__item--accent .timeline__dot { background: var(--color-primary); }
.timeline__year {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.2px;
}
.timeline__item--accent .timeline__year { color: var(--color-primary); }
.timeline__body {
  font-size: 17px;
  line-height: 1.47;
  color: var(--color-ink-muted-80);
  margin-top: 2px;
}

.contact__lead {
  font-size: 18px;
  line-height: 1.55;
  color: var(--color-body-muted);
  margin: 16px 0 28px;
  max-width: 44ch;
  text-wrap: pretty;
}
.contact__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.contact__card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact__label {
  font-size: 13px;
  color: var(--color-body-muted);
  letter-spacing: 0.2px;
}
.contact__value {
  font-size: 18px;
  line-height: 1.5;
  margin-top: 4px;
  font-style: normal;
}
a.contact__value { color: var(--color-primary-on-dark); }
a.contact__value:hover { color: #fff; }

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}
.footer__logo { height: 44px; width: auto; }
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 14px;
  letter-spacing: -0.224px;
}
.footer__links a { color: var(--color-ink); }
.footer__links a:hover { color: var(--color-primary); }
.footer__copy {
  font-size: 12px;
  color: var(--color-ink-muted-48);
}

.legal { max-width: var(--container-text); }
.legal__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.8vw, 46px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -1px;
}
.legal__updated {
  font-size: 14px;
  color: var(--color-ink-muted-48);
  margin-top: 10px;
}
.legal h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin: 40px 0 10px;
}
.legal h3 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.374px;
  margin: 24px 0 6px;
}
.legal p,
.legal li {
  font-size: 17px;
  line-height: 1.47;
  color: var(--color-ink-muted-80);
  margin: 0 0 12px;
}
.legal ul { padding-left: 20px; margin: 0 0 12px; }
.legal address {
  font-style: normal;
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-ink-muted-80);
}
.legal hr {
  border: 0;
  border-top: 1px solid var(--color-hairline);
  margin: 36px 0;
}
.todo {
  background: #fffbe6;
  border: 1px dashed #d9c65a;
  border-radius: var(--radius-sm);
  padding: 2px 7px;
  font-size: 15px;
  color: #6b5b00;
  white-space: nowrap;
}
.todo-block {
  background: #fffbe6;
  border: 1px dashed #d9c65a;
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  margin: 0 0 24px;
}
.todo-block p { color: #6b5b00; margin: 0; font-size: 15px; }

.js [data-reveal] {
  opacity: 0;
  will-change: transform, opacity;
}
.js .hero__caption,
.js .hero__logo,
.js .hero__title,
.js .hero__lead,
.js .hero__actions,
.js .hero__frame { opacity: 0; }

html:not(.js) [data-reveal],
.motion-off [data-reveal],
.motion-off .hero__caption,
.motion-off .hero__logo,
.motion-off .hero__title,
.motion-off .hero__lead,
.motion-off .hero__actions,
.motion-off .hero__frame {
  opacity: 1 !important;
  transform: none !important;
}

.ablauf__dash { animation: dashRun 9s linear infinite; }
@keyframes dashRun { to { stroke-dashoffset: -320; } }

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .ablauf__dash { animation: none; }
}

.nav-toggle { display: none; }
.nav-scrim { display: none; }

@media (max-width: 900px) {
  .header { gap: 12px; }
  .header__logo img { height: 32px; }
  .header__cta { display: none; }

  .js .nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-left: auto;
    padding: 8px 14px 8px 12px;
    min-height: 40px;
    background: transparent;
    border: 1px solid var(--color-hairline);
    border-radius: var(--radius-pill);
    color: var(--color-ink);
    font-family: var(--font-text);
    font-size: 14px;
    letter-spacing: -0.224px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  }
  .js .nav-toggle:active { transform: scale(0.95); }
  .js .nav-toggle[aria-expanded="true"] {
    background: var(--color-ink);
    border-color: var(--color-ink);
    color: #fff;
  }

  .nav-toggle__bars {
    position: relative;
    width: 17px;
    height: 11px;
    flex: none;
  }
  .nav-toggle__bars span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1.5px;
    border-radius: 2px;
    background: currentColor;
    transition: transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  .nav-toggle__bars span:nth-child(1) { top: 1px; }
  .nav-toggle__bars span:nth-child(2) { bottom: 1px; }
  .nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) {
    transform: translateY(3.75px) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) {
    transform: translateY(-3.75px) rotate(-45deg);
  }

  .js .header__nav { display: none; }
  .js .header__nav[data-open] {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 60;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 6px clamp(16px, 4vw, 40px) max(20px, env(safe-area-inset-bottom));
    background: var(--color-canvas-parchment);
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    box-shadow: rgba(0, 0, 0, 0.08) 0 12px 24px -12px;
    max-height: calc(100dvh - var(--header-bottom, 96px));
    overflow-y: auto;
    overscroll-behavior: contain;
    font-size: 20px;
    letter-spacing: -0.4px;
  }

  .js .header__nav[data-open] > a {
    display: flex;
    align-items: center;
    min-height: 56px;
    padding: 0 2px;
    border-bottom: 1px solid var(--color-hairline);
    white-space: normal;
  }
  .js .header__nav[data-open] > a::after { content: none; }
  .js .header__nav[data-open] > a[aria-current="true"] {
    color: var(--color-primary);
    font-weight: 600;
  }

  .js .menu__foot {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding-top: 22px;
  }
  .js .menu__cta { width: 100%; }
  .js .menu__mail {
    text-align: center;
    font-size: 16px;
    color: var(--color-ink-muted-80);
  }

  .js .nav-scrim {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 45;
    background: rgba(0, 0, 0, 0.28);
    opacity: 0;
  }
  .js .nav-scrim[hidden] { display: none; }
}

@media (min-width: 901px) {
  .menu__foot { display: none; }
}

html:not(.js) .header__nav { flex-wrap: wrap; }
html:not(.js) .menu__foot { display: none; }

@media (max-width: 700px) {
  .topbar {
    gap: 12px;
    padding-top: 4px;
    padding-bottom: 4px;
    flex-wrap: wrap;
  }
  .topbar__brand { display: none; }
  .topbar__spacer { display: none; }
}

@media (any-pointer: coarse) {
  .topbar__phone,
  .langswitch a,
  .langswitch [aria-current] {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding-inline: 2px;
  }
  .topbar { padding-block: 0; }

  .footer__links a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    margin-block: -11px;
  }

  .contact__value,
  a.contact__value {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
  }
  address.contact__value { display: block; min-height: 0; }
}

@media (max-width: 600px) {
  .hero__title {
    white-space: normal;
    letter-spacing: -1px;
  }
  .hero__title br { display: none; }
}

@media (max-width: 560px) {
  .hero__caption {
    position: static;
    margin-top: 14px;
    max-width: none;
  }
  .hero__media { flex-direction: column; }
  .callout { flex-direction: column; align-items: flex-start; }
  .footer__inner { justify-content: flex-start; }
  .btn { width: 100%; }
  .hero__actions .btn,
  .contact__actions .btn { flex: 1 1 240px; }
}

@media (min-width: 1400px) {
  .container { max-width: 1240px; }
}

@media print {
  .topbar, .header, .skip-link { display: none; }
  body { background: #fff; color: #000; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}
