@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/ibm-plex-sans-regular.woff2") format("woff2");
}

@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/ibm-plex-sans-medium.woff2") format("woff2");
}

@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/ibm-plex-sans-semibold.woff2") format("woff2");
}

@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 700 800;
  font-display: swap;
  src: url("/fonts/ibm-plex-sans-bold.woff2") format("woff2");
}

@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/space-grotesk-500.woff2") format("woff2");
}

@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/space-grotesk-600.woff2") format("woff2");
}

@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/space-grotesk-700.woff2") format("woff2");
}

:root {
  --font: "IBM Plex Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Space Grotesk", "IBM Plex Sans", ui-sans-serif, system-ui, sans-serif;
  --site-ink: #171512;
  --site-ink-soft: #3f3b35;
  --site-muted: #6c665d;
  --site-line: #ddd4c5;
  --site-sand: #f3ede1;
  --site-sand-light: #fbf8f1;
  --site-gold: #a8842b;
  --site-gold-deep: #81651e;
  --site-gold-light: #d4aa43;
  --site-dark: #0d0e10;
  --site-dark-soft: #17181b;
  --site-white: #fff;
  --site-shadow: 0 28px 80px -48px rgba(29, 24, 16, .45);
  --site-radius: 20px;
  --site-wrap: 1180px;
  --site-nav: 68px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--site-nav) + 18px);
}

body {
  background: var(--site-sand-light);
  color: var(--site-ink);
}

body.menu-open {
  overflow: hidden;
}

.wrap,
.site-wrap {
  width: min(var(--site-wrap), calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding: clamp(76px, 9vw, 132px) 0;
}

.section-compact {
  padding: clamp(54px, 7vw, 92px) 0;
}

.section-sand {
  background: var(--site-sand);
}

.section-dark {
  background: var(--site-dark);
  color: #f7f3ea;
}

.section-kicker,
.eyebrow {
  margin: 0 0 17px;
  color: var(--site-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1.35;
  text-transform: uppercase;
}

.section-dark .section-kicker,
.section-dark .eyebrow,
.hero .eyebrow {
  color: #d3d0c8;
}

.site-heading,
.section-head h2,
.landing-page h1,
.landing-page h2,
.landing-page h3,
.legal-title,
.about-title {
  font-family: var(--font-display);
  text-wrap: balance;
}

.section-head {
  max-width: 790px;
  margin-bottom: clamp(32px, 5vw, 58px);
}

.section-head.centered {
  margin-inline: auto;
  text-align: center;
}

.section-head h2,
.landing-page .section-title {
  margin: 0;
  color: var(--site-ink);
  font-size: clamp(34px, 4.6vw, 64px);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1.03;
}

.section-dark .section-head h2,
.section-dark .section-title {
  color: #fff;
}

.section-lead {
  max-width: 670px;
  margin: 20px 0 0;
  color: var(--site-muted);
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.62;
}

.section-dark .section-lead {
  color: #bebbb4;
}

.btn,
.nav-cta,
.lead-submit,
.site-button {
  border: 0;
  border-radius: 7px;
  font-family: var(--font);
  font-weight: 700;
  text-decoration: none;
}

.btn-gold,
.nav-cta,
.lead-submit,
.site-button-primary {
  background: var(--site-gold-deep);
  color: #fff;
  box-shadow: 0 14px 30px -18px rgba(129, 101, 30, .9);
}

.btn-gold:hover,
.nav-cta:hover,
.lead-submit:hover,
.site-button-primary:hover {
  background: #6d5518;
  color: #fff;
  transform: translateY(-1px);
}

.btn:focus-visible,
.nav a:focus-visible,
.nav button:focus-visible,
.lead-submit:focus-visible,
.site-button:focus-visible,
.text-link:focus-visible {
  outline: 3px solid var(--site-gold-deep);
  outline-offset: 4px;
}

.nav a:focus-visible,
.nav button:focus-visible,
.hero .btn:focus-visible,
.closer .btn:focus-visible,
.foot a:focus-visible {
  outline-color: #e1bd63;
}

.text-link {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: var(--site-gold-deep);
  font-weight: 700;
  text-underline-offset: 4px;
}

/* Shared navigation shell. */
.nav {
  height: var(--site-nav);
  padding-inline: max(24px, calc((100vw - var(--site-wrap)) / 2));
  background: rgba(12, 13, 15, .97);
  border-bottom-color: rgba(255, 255, 255, .12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.landing-page .nav {
  background: rgba(12, 13, 15, .16);
  border-bottom-color: rgba(255, 255, 255, .15);
}

.nav.scrolled {
  background: rgba(12, 13, 15, .94);
  border-bottom-color: rgba(255, 255, 255, .12);
}

.landing-page .nav.scrolled {
  background: rgba(12, 13, 15, .94);
}

.nav-links a {
  color: rgba(255, 255, 255, .78);
}

.nav-links a:hover {
  color: #fff;
}

.nav-cta {
  min-height: 42px;
  padding: 11px 18px;
}

.inner-nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.inner-nav + main {
  padding-top: var(--site-nav);
}

.about-page .hero .eyebrow {
  color: var(--site-gold-deep);
}

.inner-nav + main.wrap {
  padding-top: var(--site-nav);
}

.legal-page .inner-nav + main.wrap {
  padding-bottom: 56px;
}

.inner-cta-short,
.inner-menu {
  display: none;
}

.inner-menu {
  position: relative;
}

.inner-menu > summary {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 7px;
  color: #fff;
  cursor: pointer;
  list-style: none;
  transition: border-color .18s ease, background .18s ease;
}

.inner-menu > summary::-webkit-details-marker {
  display: none;
}

.inner-menu > summary:hover,
.inner-menu[open] > summary {
  border-color: rgba(225, 189, 99, .75);
  background: rgba(255, 255, 255, .1);
}

.inner-menu > summary:focus-visible {
  outline: 2px solid #e1bd63;
  outline-offset: 2px;
}

.inner-menu > summary svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.inner-menu-links {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(300px, calc(100vw - 24px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 12px;
  background: #111318;
  box-shadow: 0 24px 60px -24px rgba(0, 0, 0, .75);
}

.inner-menu-links a {
  display: flex;
  min-height: 48px;
  align-items: center;
  padding: 11px 17px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .86);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.inner-menu-links a:last-child {
  border-bottom: 0;
}

.inner-menu-links a:hover,
.inner-menu-links a:focus-visible,
.inner-menu-links a[aria-current="page"] {
  background: rgba(255, 255, 255, .08);
  color: #e1bd63;
  text-decoration: none;
}

@media (max-width: 1000px) {
  .inner-nav .nav-links {
    display: none;
  }

  .inner-nav .inner-menu {
    display: block;
  }
}

@media (max-width: 820px) {
  .about-page main.wrap,
  .legal-page main.wrap {
    width: min(100% - 32px, 1080px);
    padding-inline: 0;
  }
}

@media (max-width: 420px) {
  .inner-nav {
    padding-inline: 12px;
  }

  .inner-nav .nav-brand img {
    width: auto;
    max-width: 92px;
  }

  .inner-nav .nav-cta {
    min-height: 40px;
    padding-inline: 12px;
    font-size: 12.5px;
  }

  .inner-cta-long {
    display: none;
  }

  .inner-cta-short {
    display: inline;
  }

  .about-page .hero h1 {
    font-size: clamp(31px, 9.2vw, 36px);
  }

  .legal-page h1,
  .legal-page h2 {
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .landing-page #transform-title {
    font-size: clamp(28px, 9vw, 34px);
  }
}

.m-menu {
  background: var(--site-sand-light);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.m-menu-links a {
  border-bottom-color: var(--site-line);
  color: var(--site-ink);
}

.m-menu-logo {
  width: auto;
  height: 27px;
}

.m-menu-close {
  color: var(--site-ink);
}

/* Hero: cinematic source material with a concrete, labelled product proof. */
.landing-page .hero {
  min-height: max(760px, 100svh);
  padding: calc(var(--site-nav) + 62px) 0 58px;
  display: flex;
  align-items: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background: #0c0d0f;
}

.landing-page .hero-media,
.landing-page .hero-media video,
.landing-page .hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.landing-page .hero-media video {
  object-fit: cover;
  object-position: 62% 42%;
}

.video-toggle {
  min-width: 44px;
  min-height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  background: rgba(10, 11, 13, .82);
  color: #fff;
  padding: 10px 14px;
  font: 700 12px/1 var(--font);
  cursor: pointer;
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
}

html.js .video-toggle {
  display: inline-flex;
}

.video-toggle:hover {
  background: rgba(10, 11, 13, .96);
}

.video-toggle:focus-visible {
  outline: 3px solid #e1bd63;
  outline-offset: 3px;
}

.video-toggle-icon {
  width: 12px;
  display: inline-block;
  text-align: center;
}

.video-toggle-hero {
  position: absolute;
  z-index: 3;
  top: calc(var(--site-nav) + 16px);
  right: max(18px, calc((100vw - var(--site-wrap)) / 2));
}

.landing-page .hero-scrim {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 6, 8, .92) 0%, rgba(5, 6, 8, .72) 46%, rgba(5, 6, 8, .38) 76%, rgba(5, 6, 8, .48) 100%),
    linear-gradient(0deg, rgba(5, 6, 8, .62), transparent 42%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, .72fr);
  gap: clamp(42px, 6vw, 92px);
  align-items: center;
}

.hero-copy {
  max-width: 760px;
}

.landing-page .hero h1 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 6.1vw, 86px);
  font-weight: 600;
  letter-spacing: -.052em;
  line-height: .98;
}

.hero-sub {
  max-width: 660px;
  margin: 27px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.57;
}

.hero-cta {
  margin-top: 31px;
}

.hero-cta .btn {
  min-height: 52px;
  padding-inline: 25px;
}

.hero-note {
  margin: 15px 0 0;
  color: rgba(255, 255, 255, .66);
  font-size: 13px;
  line-height: 1.5;
}

.margin-card {
  border: 1px solid var(--site-line);
  border-radius: var(--site-radius);
  background: var(--site-sand-light);
  box-shadow: var(--site-shadow);
  color: var(--site-ink);
  overflow: hidden;
}

.margin-card-hero {
  box-shadow: 0 32px 90px -42px rgba(0, 0, 0, .9);
}

.margin-card-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  padding: 19px 21px 17px;
  border-bottom: 1px solid var(--site-line);
}

.margin-label {
  color: var(--site-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.margin-order {
  display: block;
  margin-top: 5px;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
}

.margin-status {
  flex: 0 0 auto;
  border: 1px solid #b3503e;
  border-radius: 999px;
  background: #fff0ed;
  color: #8d2f20;
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 800;
}

.margin-rows {
  padding: 12px 21px;
}

.margin-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 0;
  color: var(--site-muted);
  font-size: 14px;
}

.margin-row strong {
  color: var(--site-ink);
  font-size: 15px;
}

.margin-row.is-alert {
  margin-top: 5px;
  padding-top: 13px;
  border-top: 1px solid var(--site-line);
  color: #8d2f20;
  font-weight: 700;
}

.margin-row.is-alert strong {
  color: #8d2f20;
  font-size: 24px;
}

.margin-warning {
  margin: 0 21px 14px;
  border-radius: 10px;
  background: #fff0ed;
  color: #79281c;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 700;
}

.margin-disclaimer {
  margin: 0;
  padding: 0 21px 19px;
  color: #6f685d;
  font-size: 11.5px;
  line-height: 1.5;
}

/* Profit proof. */
.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .75fr);
  gap: clamp(36px, 7vw, 94px);
  align-items: start;
}

.proof-steps {
  display: grid;
  gap: 1px;
  margin-top: 38px;
  border: 1px solid var(--site-line);
  border-radius: var(--site-radius);
  background: var(--site-line);
  overflow: hidden;
}

.proof-step {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  padding: 22px;
  background: #fff;
}

.proof-step-number {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #27282b;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
}

.proof-step h3 {
  margin: 0;
  font-size: 19px;
}

.proof-step p {
  margin: 6px 0 0;
  color: var(--site-muted);
  line-height: 1.55;
}

.limitation-card {
  position: sticky;
  top: calc(var(--site-nav) + 24px);
  border-radius: var(--site-radius);
  background: var(--site-dark);
  color: #fff;
  padding: clamp(28px, 4vw, 42px);
}

.limitation-card h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(25px, 3vw, 36px);
  letter-spacing: -.025em;
}

.limitation-card p {
  margin: 18px 0 0;
  color: #c5c1b8;
  line-height: 1.65;
}

.limitation-rule {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: #e1bd63;
  font-size: 14px;
  font-weight: 700;
}

.limitation-rule::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

/* Founder proof. */
.founder-proof {
  background: var(--site-sand);
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(320px, .84fr) minmax(0, 1.16fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
}

.founder-photo {
  position: relative;
  margin: 0;
}

.founder-photo img {
  width: 100%;
  max-height: 690px;
  display: block;
  border-radius: var(--site-radius);
  object-fit: cover;
  object-position: 50% 35%;
  box-shadow: var(--site-shadow);
}

.founder-photo figcaption {
  position: absolute;
  inset: auto 16px 16px;
  border-radius: 10px;
  background: rgba(12, 13, 15, .84);
  color: #fff;
  padding: 12px 14px;
  font-size: 13px;
  backdrop-filter: blur(8px);
}

.about-page .foto {
  width: min(100%, 460px);
}

.about-page .foto figcaption small {
  color: #d8d5ce;
}

.founder-copy h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -.04em;
}

.founder-copy > p:not(.section-kicker) {
  max-width: 690px;
  margin: 24px 0 0;
  color: var(--site-muted);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.67;
}

.founder-quote {
  max-width: 650px;
  margin: 27px 0 0;
  padding: 2px 0 2px 20px;
  border-left: 3px solid var(--site-gold);
  color: var(--site-ink);
  font-family: var(--font-display);
  font-size: clamp(20px, 2.1vw, 27px);
  font-weight: 600;
  line-height: 1.35;
}

.founder-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 29px 0;
  padding: 0;
  list-style: none;
}

.founder-facts li {
  border: 1px solid #d7c9aa;
  border-radius: 999px;
  background: rgba(255, 255, 255, .6);
  padding: 8px 12px;
  color: #5c4a20;
  font-size: 13px;
  font-weight: 700;
}

/* Input-to-output cards. */
.transform-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.transform-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--site-line);
  border-radius: var(--site-radius);
  background: #fff;
  padding: clamp(25px, 3vw, 34px);
  box-shadow: 0 24px 56px -48px rgba(33, 26, 14, .65);
}

.transform-input {
  color: var(--site-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.transform-card h3 {
  margin: 42px 0 0;
  font-size: clamp(24px, 2.5vw, 33px);
  line-height: 1.12;
}

.transform-card p {
  margin: 16px 0 0;
  color: var(--site-muted);
  line-height: 1.62;
}

.transform-output {
  margin-top: auto;
  padding-top: 30px;
  color: var(--site-ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.transform-output::before {
  content: "→";
  margin-right: 8px;
  color: var(--site-gold-deep);
}

/* Operating-day timeline. */
.timeline-shell {
  background: var(--site-dark);
  color: #fff;
}

.timeline-shell .section-head h2 {
  color: #fff;
}

.timeline-shell .section-kicker {
  color: #b8b5ad;
}

.timeline-shell .section-lead {
  color: #c4c1ba;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--site-radius);
  overflow: hidden;
}

.timeline-item {
  position: relative;
  min-height: 300px;
  padding: 27px 25px;
  border-left: 1px solid rgba(255, 255, 255, .13);
  background: #141518;
}

.timeline-item:first-child {
  border-left: 0;
}

.timeline-item.is-profit {
  background: linear-gradient(155deg, #1e1d19, #17181a 74%);
  box-shadow: inset 0 2px 0 rgba(212, 170, 67, .78);
}

.timeline-time {
  color: #b8b5ad;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
}

.timeline-place {
  display: block;
  margin-top: 3px;
  color: #8f8e89;
  font-size: 12px;
}

.timeline-item h3 {
  margin: 48px 0 0;
  color: #fff;
  font-size: 21px;
  line-height: 1.25;
}

.timeline-item p {
  margin: 13px 0 0;
  color: #b7b4ad;
  line-height: 1.55;
}

.timeline-result {
  display: block;
  margin-top: 18px;
  color: #e1bd63;
  font-size: 13px;
  font-weight: 700;
}

/* Gewerke-Weitergabe: ein Gewerk meldet fertig, Kindel benachrichtigt das naechste. */
.handoff-flow {
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--site-radius);
  overflow: hidden;
  background:
    radial-gradient(80% 130% at 50% 0, rgba(168, 132, 43, .12), transparent 62%),
    var(--site-dark);
  color: #fff;
  box-shadow: var(--site-shadow);
}

.handoff-card {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: clamp(26px, 3.4vw, 38px);
}

.handoff-card.is-done {
  background: rgba(255, 255, 255, .03);
}

.handoff-trade {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
}

.handoff-status {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #c4c1ba;
  font-size: 14px;
  font-weight: 700;
}

.handoff-status-icon {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.handoff-status-icon svg {
  width: 15px;
  height: 15px;
}

.handoff-status-icon.is-check {
  background: rgba(95, 176, 122, .16);
  color: #7ac492;
  box-shadow: inset 0 0 0 1px rgba(122, 196, 146, .38);
}

.handoff-status-icon.is-bell {
  background: rgba(212, 170, 67, .15);
  color: #e1bd63;
  box-shadow: inset 0 0 0 1px rgba(225, 189, 99, .4);
}

.handoff-note {
  color: #8f8e89;
  font-size: 12.5px;
}

.handoff-mid {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 clamp(18px, 2.5vw, 30px);
  border-inline: 1px solid rgba(255, 255, 255, .14);
  background: rgba(212, 170, 67, .07);
  color: #e1bd63;
  text-align: center;
}

.handoff-mid svg {
  width: 24px;
  height: 24px;
}

.handoff-mid small {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* Verpasste Anrufe: die KI nimmt ab, fragt nach und erinnert an den Rueckruf. */
.call-flow {
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--site-radius);
  overflow: hidden;
  background:
    radial-gradient(80% 130% at 50% 0, rgba(168, 132, 43, .12), transparent 62%),
    var(--site-dark);
  color: #fff;
  box-shadow: var(--site-shadow);
}

.call-step {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(26px, 3.4vw, 38px);
}

.call-step + .call-step {
  border-left: 1px solid rgba(255, 255, 255, .14);
}

.call-step-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(212, 170, 67, .15);
  color: #e1bd63;
  box-shadow: inset 0 0 0 1px rgba(225, 189, 99, .4);
}

.call-step-icon svg {
  width: 21px;
  height: 21px;
}

.call-step h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
}

.call-step p {
  margin: 0;
  color: #c4c1ba;
  font-size: 14.5px;
  line-height: 1.55;
}

.call-note {
  margin: 14px 0 0;
  color: var(--site-muted);
  font-size: 13px;
  line-height: 1.55;
}

/* Multilingual teams and the optional WhatsApp pilot channel. */
.language-band {
  background: #eee5d5;
}

.language-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: 18px;
  align-items: stretch;
}

.language-card,
.channel-card {
  border-radius: var(--site-radius);
  padding: clamp(26px, 4vw, 42px);
  box-shadow: 0 30px 68px -56px rgba(29, 24, 16, .68);
}

.language-card {
  border: 1px solid var(--site-line);
  background: #fff;
}

.language-chip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(158px, 1fr));
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.language-chip {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  border: 1px solid #e6dece;
  border-radius: 999px;
  background: var(--site-sand-light);
  padding: 6px 14px 6px 6px;
  color: var(--site-ink);
  font-size: 13.5px;
  font-weight: 700;
  white-space: nowrap;
}

.language-chip-name {
  overflow: hidden;
  text-overflow: ellipsis;
}

.language-code {
  width: 34px;
  height: 34px;
  display: grid;
  flex: 0 0 34px;
  place-items: center;
  border-radius: 50%;
  background: #34363a;
  color: #fff;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
}

.language-note {
  margin: 24px 0 0;
  color: var(--site-muted);
  font-size: 13px;
  line-height: 1.55;
}

.channel-card {
  border: 1px solid rgba(255, 255, 255, .12);
  background:
    radial-gradient(85% 90% at 100% 0, rgba(168, 132, 43, .1), transparent 60%),
    #121316;
  color: #fff;
}

.channel-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #c7c4bd;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.channel-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #a5a29c;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, .06);
}

.channel-card h3 {
  max-width: 480px;
  margin: 34px 0 0;
  color: #fff;
  font-size: clamp(29px, 3.4vw, 43px);
  letter-spacing: -.035em;
  line-height: 1.08;
}

.channel-card > p {
  max-width: 530px;
  margin: 18px 0 0;
  color: #bebbb4;
  line-height: 1.65;
}

.channel-steps {
  display: grid;
  gap: 9px;
  margin: 29px 0 0;
  padding: 0;
  counter-reset: channel-step;
  list-style: none;
}

.channel-steps li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  color: #e7e3da;
  font-size: 13px;
  font-weight: 700;
  counter-increment: channel-step;
}

.channel-steps li::before {
  content: counter(channel-step);
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 50%;
  color: #d0cdc6;
  font-family: var(--font-display);
  font-size: 11px;
}

.product-evidence {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(38px, 5vw, 60px);
  padding: 0;
  list-style: none;
}

.evidence-pair {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--site-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 26px 64px -52px rgba(29, 24, 16, .55);
}

.evidence-flow {
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  padding: 16px 18px;
  color: var(--site-muted);
  font-size: 13px;
}

.evidence-flow > span:nth-child(2) {
  color: var(--site-gold-deep);
}

.evidence-flow strong {
  color: var(--site-ink);
}

/* Alle vier Kacheln gleich groß. Quer- und Hochformat stehen im selben
   quadratischen Rahmen und werden vollständig gezeigt (contain) – so wird
   nichts beschnitten und keine Aufnahme wirkt wichtiger als die andere. */
.evidence-visual {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  margin: 0;
  border-block: 1px solid #2b2d31;
  background: radial-gradient(circle at 50% 15%, #2b2d32, #111216 70%);
}

.evidence-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  padding: 14px;
}

.evidence-view {
  position: absolute;
  left: 10px;
  bottom: 10px;
  border-radius: 7px;
  background: rgba(10, 11, 13, .8);
  color: #fff;
  padding: 5px 9px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.3;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.evidence-copy {
  min-height: 104px;
  margin: 0;
  padding: 18px;
  color: var(--site-muted);
  font-size: 14px;
  line-height: 1.58;
}

/* Approval and trust. */
.approval-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .8fr);
  gap: clamp(38px, 7vw, 92px);
  align-items: center;
}

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

.approval-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  border: 1px solid var(--site-line);
  border-radius: 14px;
  background: #fff;
  padding: 18px 20px;
}

.approval-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(168, 132, 43, .38);
  background: #fbf7ee;
  color: var(--site-gold-deep);
}

.approval-icon svg {
  width: 22px;
  height: 22px;
}

.approval-item b {
  display: block;
  margin-bottom: 4px;
}

.approval-item span:last-child {
  color: var(--site-muted);
  line-height: 1.45;
}

.cost-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.cost-card {
  border: 1px solid var(--site-line);
  border-radius: var(--site-radius);
  background: #fff;
  padding: clamp(27px, 4vw, 42px);
}

.cost-number {
  display: block;
  color: var(--site-ink);
  font-family: var(--font-display);
  font-size: clamp(43px, 6vw, 72px);
  font-weight: 700;
  letter-spacing: -.05em;
  line-height: 1;
}

.cost-card h3 {
  margin: 18px 0 0;
  font-size: 23px;
}

.cost-card p {
  margin: 12px 0 0;
  color: var(--site-muted);
  line-height: 1.6;
}

.source-note {
  margin: 18px 0 0;
  color: var(--site-muted);
  font-size: 12px;
  line-height: 1.55;
}

.source-note a {
  color: var(--site-ink-soft);
  text-underline-offset: 3px;
}

.source-note a:hover {
  color: var(--site-gold-deep);
}

.trade-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.trade-link {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid var(--site-line);
  border-radius: 10px;
  background: #fff;
  color: var(--site-ink);
  padding: 13px 15px;
  font-weight: 700;
  text-decoration: none;
}

.trade-link:hover {
  border-color: var(--site-gold);
  transform: translateY(-1px);
}

.faq-item summary::after {
  border-color: #8e877b;
}

.faq-item[open] summary::after {
  border-color: var(--site-gold);
}

.legal-page h2 {
  color: var(--site-ink-soft);
}

.legal-page .card {
  border-left-color: #bdb4a5;
}

.legal-page li::before {
  background: #8e877b;
}

.trade-more {
  margin: 26px 0 0;
}

.data-band {
  background: #121316;
  color: #fff;
}

.data-band .section-head h2 {
  color: #fff;
}

.data-band .section-head p {
  color: #b9b7b1;
}

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

.data-card {
  min-height: 210px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 16px;
  background: rgba(255, 255, 255, .035);
  padding: 26px;
}

.data-card h3 {
  margin: 0;
  color: #fff;
  font-size: 21px;
}

.data-card p {
  margin: 14px 0 0;
  color: #b9b7b1;
  line-height: 1.58;
}

/* Pilot conversion block; field and anti-spam contract stays in index.html. */
.pilot {
  background:
    radial-gradient(70% 90% at 0 0, rgba(168, 132, 43, .2), transparent 55%),
    var(--site-dark);
}

.pilot .contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(420px, 1.05fr);
  grid-template-areas: none;
  gap: 24px 54px;
  align-items: start;
}

.pilot .contact-side {
  grid-area: auto;
  grid-column: 1;
}

.pilot .contact-details {
  grid-area: auto;
  grid-column: 1;
}

.pilot .lead-card {
  grid-area: auto;
  grid-column: 2;
  grid-row: 1 / span 2;
  border-radius: var(--site-radius);
}

.pilot-badge {
  color: #e1bd63;
}

.pilot-dot {
  width: 7px;
  height: 7px;
  display: inline-block;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--site-gold-light);
}

.pilot .contact-side h2 {
  font-size: clamp(38px, 5vw, 66px);
  letter-spacing: -.04em;
}

.pilot .contact-side > p {
  font-size: 18px;
  line-height: 1.62;
}

.pilot-list li {
  color: #c4c1ba;
}

.pilot-list li b {
  color: #fff;
}

.lead-form label {
  color: var(--site-ink-soft);
  font-weight: 700;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  border-color: #d8d0c2;
  background: #fff;
}

.lead-submit {
  min-height: 54px;
}

.pilot-microcopy {
  color: var(--site-muted);
  font-size: 12.5px;
  line-height: 1.5;
  text-align: center;
}

.pilot-microcopy a {
  color: var(--site-gold-deep);
}

.lead-optional {
  margin: 2px 0 4px;
}

.lead-optional summary {
  min-height: 44px;
  display: list-item;
  padding: 12px 0;
  cursor: pointer;
  color: var(--site-muted);
  font-size: 13.5px;
  line-height: 1.45;
}

.lead-optional-body {
  padding-top: 10px;
}

.turnstile-box {
  margin: 6px 0;
}

.founder-story-link {
  color: var(--site-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-list {
  max-width: 900px;
  margin-inline: auto;
}

.faq-item summary {
  font-family: var(--font-display);
}

.faq-section {
  padding-top: 0;
}

.landing-page .closer {
  min-height: 610px;
}

.landing-page .closer h2 {
  max-width: 790px;
  font-size: clamp(40px, 6vw, 78px);
  line-height: 1.01;
}

.landing-page .closer p {
  max-width: 620px;
  font-size: 19px;
}

.closer-cta {
  margin-top: 30px;
}

/* Shared full footer for landing, legal and founder pages. */
.foot {
  padding: 60px 0 40px;
  color: var(--on-dark-muted);
  background: #0a0b0d;
}

.foot-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-start;
}

.foot-tag {
  max-width: 38ch;
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.5;
}

.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
}

.foot-col a {
  display: block;
  margin: 0;
  padding: 5px 0;
  color: var(--on-dark-muted);
  font-size: 14px;
  text-decoration: none;
  transition: color .15s;
}

.foot-col a:hover {
  color: #fff;
}

.foot-col .h {
  margin-bottom: 8px;
  color: #8b8d93;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.foot-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  margin-top: 44px;
  padding-top: 22px;
  font-size: 12.5px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.about-page .crumb,
.about-page .crumb a,
.legal-page .crumb,
.legal-page .crumb a,
.about-page .kap .kicker .lb,
.about-page .these .kicker .lb,
.legal-page .lead {
  color: var(--site-muted);
}

.about-page .foot-tag,
.legal-page .foot-tag {
  color: #b8b6b1;
}

.foot-logo {
  width: auto;
  height: 32px;
}

@media (max-width: 860px) {
  .foot-top {
    flex-direction: column;
  }
}

/* Reusable inner-page shell for legal, about and trade pages. */
.site-inner {
  min-height: 100vh;
  padding-top: var(--site-nav);
  background: var(--site-sand-light);
}

.site-inner .nav {
  background: rgba(12, 13, 15, .97);
}

.legal-shell,
.about-shell {
  width: min(900px, calc(100% - 48px));
  margin-inline: auto;
  padding: clamp(60px, 8vw, 110px) 0;
}

.legal-header,
.about-header {
  padding-bottom: clamp(34px, 5vw, 58px);
  border-bottom: 1px solid var(--site-line);
}

.legal-title,
.about-title {
  max-width: 820px;
  margin: 0;
  font-size: clamp(38px, 6vw, 70px);
  letter-spacing: -.045em;
  line-height: 1.02;
}

.legal-meta,
.about-lead {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--site-muted);
  font-size: 17px;
  line-height: 1.65;
}

.legal-content {
  padding-top: clamp(34px, 5vw, 58px);
}

.legal-section {
  padding: 28px 0;
  border-bottom: 1px solid var(--site-line);
}

.legal-section h2 {
  margin: 0 0 12px;
  font-size: clamp(23px, 3vw, 32px);
}

.legal-section p,
.legal-section li {
  color: var(--site-muted);
  line-height: 1.7;
}

.about-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(36px, 7vw, 84px);
  align-items: center;
}

.about-card {
  border: 1px solid var(--site-line);
  border-radius: var(--site-radius);
  background: #fff;
  padding: clamp(25px, 4vw, 40px);
}

@media (max-width: 1100px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(320px, .65fr);
    gap: 34px;
  }

  .landing-page .hero h1 {
    font-size: clamp(46px, 6.7vw, 70px);
  }

  .landing-page .hero .eyebrow {
    padding-right: 52px;
  }

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

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

@media (max-width: 900px) {
  .hero-layout,
  .proof-grid,
  .founder-grid,
  .language-grid,
  .approval-grid,
  .pilot .contact-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .landing-page .hero {
    height: auto;
    min-height: auto;
    padding-top: calc(var(--site-nav) + 54px);
  }

  .product-evidence {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 700px;
  }

  .margin-card-hero {
    width: min(100%, 580px);
  }

  .limitation-card {
    position: static;
  }

  .founder-photo {
    max-width: 560px;
  }

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

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

  .transform-card h3 {
    margin-top: 25px;
  }

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

  .timeline-item:nth-child(odd) {
    border-left: 0;
  }

  .timeline-item:nth-child(n+3) {
    border-top: 1px solid rgba(255, 255, 255, .13);
  }

  .pilot .contact-side,
  .pilot .contact-details,
  .pilot .lead-card {
    grid-column: 1;
    grid-row: auto;
  }

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

@media (max-width: 700px) {
  :root {
    --site-nav: 62px;
  }

  .wrap,
  .site-wrap,
  .legal-shell,
  .about-shell {
    width: min(100% - 32px, var(--site-wrap));
  }

  .section {
    padding: 72px 0;
  }

  /* Einspaltig ist Platz da: die Aufnahmen dürfen höher stehen. */
  .evidence-visual {
    aspect-ratio: 4 / 5;
  }

  .nav {
    padding-inline: 16px;
  }

  .landing-page .hero {
    min-height: 100svh;
    padding: calc(var(--site-nav) + 34px) 0 34px;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .landing-page .hero-media video {
    object-position: 68% 45%;
  }

  .landing-page .hero-scrim {
    background:
      linear-gradient(180deg, rgba(6, 7, 9, .9) 0%, rgba(6, 7, 9, .78) 56%, rgba(6, 7, 9, .9) 100%),
      linear-gradient(90deg, rgba(6, 7, 9, .78), rgba(6, 7, 9, .38));
  }

  .hero-layout {
    gap: 28px;
  }

  .landing-page .hero h1 {
    max-width: 12ch;
    font-size: clamp(39px, 11.3vw, 54px);
    line-height: 1;
  }

  .hero-sub {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.48;
  }

  .hero-cta {
    margin-top: 22px;
  }

  .hero-note {
    font-size: 11.5px;
  }

  .margin-card-head,
  .margin-rows {
    padding-inline: 16px;
  }

  .margin-warning {
    margin-inline: 16px;
  }

  .margin-disclaimer {
    padding-inline: 16px;
  }

  .margin-row {
    padding: 5px 0;
  }

  .proof-step {
    grid-template-columns: 34px minmax(0, 1fr);
    padding: 18px 16px;
  }

  .proof-step-number {
    width: 30px;
    height: 30px;
  }

  .founder-facts {
    align-items: flex-start;
    flex-direction: column;
  }

  .timeline-grid,
  .data-grid,
  .trade-grid {
    grid-template-columns: 1fr;
  }

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

  .language-chip {
    padding: 5px 10px 5px 5px;
    font-size: 13px;
  }

  .language-chip .language-code {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .handoff-flow {
    flex-direction: column;
  }

  .handoff-mid {
    flex-direction: row;
    gap: 9px;
    padding: 13px 20px;
    border-inline: 0;
    border-block: 1px solid rgba(255, 255, 255, .14);
  }

  .handoff-mid svg {
    transform: rotate(90deg);
  }

  .call-flow {
    flex-direction: column;
  }

  .call-step + .call-step {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .14);
  }

  .timeline-item,
  .timeline-item:nth-child(n) {
    min-height: 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .13);
  }

  .timeline-item:first-child {
    border-top: 0;
  }

  .timeline-item h3 {
    margin-top: 27px;
  }

  .video-toggle-hero .video-toggle-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .video-toggle-hero {
    width: 44px;
    padding-inline: 0;
  }

  .pilot .lead-card {
    padding: 20px 16px;
  }

  .pilot .contact-side h2 {
    font-size: 39px;
  }

  .landing-page .closer {
    min-height: 540px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Landing narrative refinement · 2026-07-26 */
.landing-page .hero-layout {
  grid-template-columns: minmax(0, 760px);
}

.landing-page .hero-copy {
  max-width: 760px;
}

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

.extra-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.feature-icon,
.data-icon {
  display: grid;
  place-items: center;
  color: var(--site-gold-deep);
}

.feature-icon {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border: 1px solid rgba(168, 132, 43, .30);
  border-radius: 16px;
  background: #fbf7ee;
}

.feature-icon svg {
  width: 26px;
  height: 26px;
}

.transform-step {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--site-dark);
  color: #f4dfaa;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
}

.core-flow .transform-card h3 {
  margin-top: 24px;
}

/* Rollen-Zweispalter unter den drei Ablauf-Karten: gleiche Kartenoptik,
   damit die Zeile als Teil der Gruppe liest statt als loses Zitat. */
.role-split {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--site-line);
  border-radius: var(--site-radius);
  background: #fff;
  box-shadow: 0 24px 56px -48px rgba(33, 26, 14, .65);
  overflow: hidden;
}

.role-half {
  padding: 20px 26px;
}

.role-half + .role-half {
  border-left: 1px solid var(--site-line);
}

.role-kicker {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--site-gold-deep);
}

.role-half p:last-child {
  margin: 0;
  color: var(--site-muted);
  font-size: 15.5px;
  line-height: 1.6;
}

@media (max-width: 700px) {
  .role-split {
    grid-template-columns: 1fr;
  }

  .role-half + .role-half {
    border-left: 0;
    border-top: 1px solid var(--site-line);
  }
}

.language-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 34px 0 18px;
  padding: 0;
  list-style: none;
}

.language-flow li {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #d7c9aa;
  border-radius: 14px;
  background: rgba(255, 255, 255, .64);
  padding: 15px 17px;
}

.language-flow li span {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--site-gold);
  color: #fff;
  font-family: var(--font-display);
  font-size: 12px;
}

.language-proof-grid {
  grid-template-columns: 1fr;
}

.language-proof {
  padding: 0;
}

.language-proof > summary {
  cursor: pointer;
  padding: 21px 24px;
  color: var(--site-ink);
  font-family: var(--font-display);
  font-weight: 700;
}

.language-proof[open] > summary {
  border-bottom: 1px solid var(--site-line);
}

.language-proof .language-chip-grid {
  padding: 24px 24px 0;
}

.language-proof .language-note {
  padding: 0 24px 24px;
}

.office-grid {
  display: grid;
  grid-template-columns: minmax(320px, .86fr) minmax(0, 1.14fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: stretch;
  margin-top: clamp(34px, 5vw, 58px);
}

.office-grid .margin-card {
  height: 100%;
}

.office-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.office-results article {
  min-height: 148px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--site-line);
  border-radius: 16px;
  background: #fff;
  padding: 22px;
}

.office-results strong {
  font-family: var(--font-display);
  font-size: 20px;
}

.office-results span {
  margin-top: 8px;
  color: var(--site-muted);
  font-size: 14px;
  line-height: 1.5;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.data-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0, rgba(199, 154, 44, .1), transparent 42%),
    rgba(255, 255, 255, .035);
}

.data-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 30px;
  border: 1px solid rgba(225, 189, 99, .34);
  border-radius: 15px;
  background: rgba(225, 189, 99, .09);
  color: #e1bd63;
}

.data-icon svg {
  width: 27px;
  height: 27px;
}

.extras-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(34px, 5vw, 54px);
}

.extra-card {
  display: flex;
  min-height: 235px;
  flex-direction: column;
  border: 1px solid var(--site-line);
  border-radius: var(--site-radius);
  background: #fff;
  padding: clamp(24px, 3vw, 32px);
}

.extra-label {
  max-width: 22ch;
  padding-top: 5px;
  text-align: right;
  color: var(--site-gold-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.extra-card h3 {
  margin: 22px 0 0;
  font-size: clamp(21px, 2.2vw, 28px);
}

.extra-card p {
  margin: 12px 0 20px;
  color: var(--site-muted);
  line-height: 1.6;
}

.extra-card a {
  margin-top: auto;
  color: var(--site-ink);
  font-weight: 700;
  text-decoration-color: var(--site-gold);
  text-underline-offset: 4px;
}

@media (max-width: 900px) {
  .core-flow,
  .language-flow,
  .office-grid {
    grid-template-columns: 1fr;
  }

  .core-flow .transform-card {
    min-height: 0;
  }

  .office-grid {
    max-width: 680px;
  }
}

@media (max-width: 700px) {
  .language-flow,
  .office-results,
  .extras-grid {
    grid-template-columns: 1fr;
  }

  .office-results article,
  .extra-card {
    min-height: 0;
  }

  .language-proof > summary {
    padding: 18px;
  }

  .language-proof .language-chip-grid {
    padding: 18px 18px 0;
  }

  .language-proof .language-note {
    padding: 0 18px 18px;
  }

  .section-cta .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==== Yves-Komponenten (27.07.): Beleg-Schritte, Belegprüfungs-Panel, Flaggen-Karte, WhatsApp-Panel.
   Bewusst ans Dateiende gehängt, damit sie ältere Varianten der gleichen Klassen überstimmen. ==== */

/* Marge-Sektion: ruhiges 18px-Raster, beide Karten weiss und gleich hoch,
   Rot nur als gezielter Akzent (Warnzeile + Wert). */
#kosten.proof-grid {
  gap: 18px;
  align-items: stretch;
}

.proof-grid .proof-steps {
  margin-top: 0;
}

#kosten .margin-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: 0 24px 56px -48px rgba(33, 26, 14, .65);
}

#kosten .margin-rows {
  flex: 1;
}

#kosten .margin-row.is-alert span {
  color: var(--site-ink);
  font-weight: 600;
}

.limitation-card-wide {
  position: static;
  top: auto;
  margin-top: 18px;
}

/* Profit proof. */
.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .75fr);
  gap: clamp(36px, 7vw, 94px);
  align-items: start;
}

.proof-steps {
  display: grid;
  gap: 1px;
  margin-top: 38px;
  border: 1px solid var(--site-line);
  border-radius: var(--site-radius);
  background: var(--site-line);
  overflow: hidden;
}

.proof-step {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  padding: 22px;
  background: #fff;
}

.proof-step-number {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #27282b;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
}

.proof-step h3 {
  margin: 0;
  font-size: 19px;
}

.proof-step p {
  margin: 6px 0 0;
  color: var(--site-muted);
  line-height: 1.55;
}

.limitation-card {
  position: sticky;
  top: calc(var(--site-nav) + 24px);
  border-radius: var(--site-radius);
  background: var(--site-dark);
  color: #fff;
  padding: clamp(28px, 4vw, 42px);
}

.limitation-card h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(25px, 3vw, 36px);
  letter-spacing: -.025em;
}

.limitation-card p {
  margin: 18px 0 0;
  color: #c5c1b8;
  line-height: 1.65;
}

.limitation-rule {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: #e1bd63;
  font-size: 14px;
  font-weight: 700;
}

.limitation-rule::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.language-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: 18px;
  align-items: stretch;
}

.language-card,
.channel-card {
  border-radius: var(--site-radius);
  padding: clamp(26px, 4vw, 42px);
  box-shadow: 0 30px 68px -56px rgba(29, 24, 16, .68);
}

.language-card {
  border: 1px solid var(--site-line);
  background: #fff;
}

.language-chip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(158px, 1fr));
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.language-chip {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  border: 1px solid #e6dece;
  border-radius: 999px;
  background: var(--site-sand-light);
  padding: 6px 14px 6px 6px;
  color: var(--site-ink);
  font-size: 13.5px;
  font-weight: 700;
  white-space: nowrap;
}

.language-chip-name {
  overflow: hidden;
  text-overflow: ellipsis;
}

.language-note {
  margin: 24px 0 0;
  color: var(--site-muted);
  font-size: 13px;
  line-height: 1.55;
}

.channel-card {
  border: 1px solid rgba(255, 255, 255, .12);
  background:
    radial-gradient(85% 90% at 100% 0, rgba(168, 132, 43, .1), transparent 60%),
    #121316;
  color: #fff;
}

.channel-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #c7c4bd;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.channel-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #a5a29c;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, .06);
}

.channel-card h3 {
  max-width: 480px;
  margin: 34px 0 0;
  color: #fff;
  font-size: clamp(29px, 3.4vw, 43px);
  letter-spacing: -.035em;
  line-height: 1.08;
}

.channel-card > p {
  max-width: 530px;
  margin: 18px 0 0;
  color: #bebbb4;
  line-height: 1.65;
}

.channel-steps {
  display: grid;
  gap: 9px;
  margin: 29px 0 0;
  padding: 0;
  counter-reset: channel-step;
  list-style: none;
}

.channel-steps li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  color: #e7e3da;
  font-size: 13px;
  font-weight: 700;
  counter-increment: channel-step;
}

.channel-steps li::before {
  content: counter(channel-step);
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 50%;
  color: #d0cdc6;
  font-family: var(--font-display);
  font-size: 11px;
}

@media (max-width: 900px) {
  .hero-layout,
  .proof-grid,
  .founder-grid,
  .language-grid,
  .approval-grid,
  .pilot .contact-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .limitation-card {
    position: static;
  }
}

@media (max-width: 700px) {
  .proof-step {
    grid-template-columns: 34px minmax(0, 1fr);
    padding: 18px 16px;
  }

  .proof-step-number {
    width: 30px;
    height: 30px;
  }

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

  .language-chip {
    padding: 5px 10px 5px 5px;
    font-size: 13px;
  }

  .language-chip .language-code {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }
}
