:root {
  --forest: #46563c;
  --moss: #5d7052;
  --sage: #8a9d78;
  --leaf: #e8f0e3;
  --paper: #fbfcf8;
  --panel: #ffffff;
  --ink: #172017;
  --muted: #5d675a;
  --line: #dce5d7;
  --warn: #b65f16;
  --blueprint: #28405a;
  --signal: #d99c55;
  --steel: #e8eef4;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  background: var(--forest);
  color: white;
  padding: 10px 14px;
  border-radius: 6px;
  z-index: 10;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(251, 252, 248, 0.94);
  border-bottom: 1px solid rgba(70, 86, 60, 0.14);
  backdrop-filter: blur(14px);
}

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

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

.brand img {
  width: 132px;
  height: auto;
  object-fit: contain;
  image-rendering: auto;
  margin: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
}

.main-nav a {
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a:focus {
  color: var(--forest);
}

.main-nav .nav-cta {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(40, 64, 90, 0.24);
  border-radius: 7px;
  padding: 0 14px;
  color: var(--blueprint);
  background: rgba(255, 255, 255, 0.72);
}

.main-nav .nav-cta:hover,
.main-nav .nav-cta:focus {
  color: white;
  background: var(--blueprint);
  border-color: var(--blueprint);
}

.hero {
  min-height: auto;
  display: flex;
  align-items: flex-start;
  padding: 66px 0 64px;
  background:
    linear-gradient(90deg, rgba(251, 252, 248, 0.98) 0%, rgba(251, 252, 248, 0.88) 52%, rgba(232, 240, 227, 0.76) 100%),
    linear-gradient(135deg, #f8faf5 0%, #e5eddf 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--moss);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 740px;
  margin: 0;
  font-size: clamp(2.55rem, 4.55vw, 4.15rem);
  line-height: 1.03;
  font-weight: 710;
  text-wrap: balance;
  overflow-wrap: normal;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  font-weight: 740;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.lead {
  max-width: 610px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.55vw, 1.24rem);
}

.hero-proof {
  max-width: 650px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 1px solid rgba(40, 64, 90, 0.16);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--blueprint);
  font-size: 0.86rem;
  font-weight: 720;
}

.hero-actions,
.cta-box {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 34px;
}

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

.button.primary {
  background: var(--forest);
  color: white;
}

.button.primary:hover,
.button.primary:focus {
  background: #33452f;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.75);
  border-color: var(--line);
  color: var(--forest);
}

.workflow-panel {
  background: #fdfefb;
  border: 1px solid rgba(70, 86, 60, 0.18);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(44, 57, 40, 0.18);
  padding: 20px;
}

.panel-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 0.86rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}

.panel-topline strong {
  color: var(--ink);
}

.task-card {
  margin-top: 18px;
  padding: 18px;
  border-radius: 8px;
  background: var(--forest);
  color: white;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.card-kicker {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.task-card h2 {
  margin-top: 4px;
  font-size: 1.45rem;
  line-height: 1.12;
}

.status-pill {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 5px 10px;
  font-weight: 800;
}

.flow-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.flow-item {
  display: grid;
  grid-template-columns: 16px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdf9;
}

.flow-item span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #cdd9c6;
}

.flow-item.done span {
  background: #4f7d5a;
}

.flow-item.current {
  border-color: #d99c55;
  background: #fff8ef;
}

.flow-item.current span {
  background: var(--warn);
}

.flow-item p,
.flow-item small,
.radar-note p {
  margin: 0;
}

.flow-item small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 760;
}

.radar-note {
  margin-top: 16px;
  padding: 14px;
  background: #f0f5ec;
  border: 1px solid #d7e3d2;
  border-radius: 8px;
}

.radar-note strong {
  display: block;
  margin-bottom: 4px;
}

.radar-note p {
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: 92px 0;
}

.muted {
  background: #eef4ea;
}

.split {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: 70px;
}

.section-text p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.08rem;
}

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

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

.feature-grid article,
.audience-grid article,
.pilot-fit-grid article {
  min-height: 210px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.feature-icon {
  display: inline-flex;
  color: var(--moss);
  font-weight: 850;
  margin-bottom: 30px;
}

.feature-grid p,
.audience-grid p,
.pilot-fit-grid p,
.section-heading p,
.screenshot-grid p,
.cta-box p,
.site-footer p {
  color: var(--muted);
  margin: 0;
}


.build-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 18px;
  border: 1px solid rgba(40, 64, 90, 0.14);
  border-radius: 8px;
  padding: 16px 18px;
  background: #f7faf4;
}

.build-note strong {
  color: var(--blueprint);
  white-space: nowrap;
}

.build-note p {
  margin: 0;
  color: var(--muted);
}

.pilot-fit-section {
  background: linear-gradient(180deg, #fbfcf8 0%, #f2f6ef 100%);
}

.pilot-fit-grid article {
  min-height: 178px;
}
.timeline {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: start;
  background: #fbfdf9;
  border: 1px solid #d7e3d2;
  border-radius: 8px;
  padding: 18px;
}

.timeline span {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--forest);
  color: white;
  border-radius: 50%;
  font-weight: 840;
}

.timeline p {
  margin: 0;
  color: var(--muted);
}

.screenshot-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 54px;
  align-items: center;
}

.screenshot-placeholder {
  min-height: 360px;
  border: 1px solid #cfdccd;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(70, 86, 60, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(70, 86, 60, 0.08) 1px, transparent 1px),
    #fbfdf9;
  background-size: 28px 28px;
  padding: 22px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.65);
}

.mock-toolbar {
  width: 100%;
  height: 38px;
  border-radius: 7px;
  background: var(--forest);
  margin-bottom: 18px;
}

.mock-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.2fr 0.55fr;
  gap: 12px;
  min-height: 168px;
}

.mock-layout span,
.mock-row {
  display: block;
  border-radius: 7px;
  background: rgba(93, 112, 82, 0.17);
  border: 1px solid rgba(70, 86, 60, 0.18);
}

.mock-row {
  height: 22px;
  margin-top: 14px;
}

.mock-row.wide {
  width: 86%;
}

.mock-row.short {
  width: 54%;
}

.showcase-section {
  background: #f7faf4;
}

.showcase-list {
  display: grid;
  gap: 34px;
}

.showcase-item {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  border-top: 1px solid rgba(70, 86, 60, 0.16);
  padding-top: 34px;
}

.showcase-item.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
}

.showcase-item.reverse .showcase-copy {
  order: 2;
}

.showcase-copy {
  max-width: 440px;
}

.showcase-number {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--signal);
  font-weight: 850;
}

.showcase-copy h3 {
  font-size: clamp(1.32rem, 2.15vw, 1.85rem);
  line-height: 1.1;
  margin-bottom: 12px;
}

.showcase-copy p {
  color: var(--muted);
  margin: 0;
}

.product-shot {
  margin: 0;
  border: 1px solid rgba(40, 64, 90, 0.12);
  border-radius: 8px;
  overflow: hidden;
  background: #fbfdf9;
  padding: 10px;
  box-shadow: 0 24px 58px rgba(40, 64, 90, 0.12);
}

.product-shot img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}
.cta-section {
  padding-top: 40px;
}

.cta-box {
  justify-content: space-between;
  background: var(--forest);
  color: white;
  border-radius: 8px;
  padding: 34px;
}

.cta-box > div {
  max-width: 720px;
}

.cta-box .eyebrow,
.cta-box p {
  color: rgba(255, 255, 255, 0.76);
}

.cta-box .button.primary {
  background: white;
  color: var(--forest);
}

.site-footer {
  padding: 34px 0 44px;
  background: #172017;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 0.7fr 1fr;
  gap: 28px;
}

.site-footer strong {
  display: block;
  margin-bottom: 8px;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
}

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

  .hero {
    min-height: auto;
    padding-top: 46px;
  }

  .hero-grid,
  .split,
  .screenshot-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .showcase-item,
  .showcase-item.reverse {
    grid-template-columns: 1fr;
  }

  .showcase-item.reverse .showcase-copy {
    order: 0;
  }

  .feature-grid,
  .audience-grid,
  .pilot-fit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

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

  .brand img {
    width: 96px;
    height: auto;
    margin: 0;
  }

  h1 {
    font-size: clamp(2.4rem, 10.5vw, 3.35rem);
  }

  .hero-grid {
    gap: 34px;
  }

  .workflow-panel {
    padding: 14px;
  }

  .panel-topline,
  .task-card,
  .flow-item,
  .build-note,
  .cta-box {
    display: grid;
  }

  .section {
    padding: 64px 0;
  }

  .showcase-item,
  .showcase-item.reverse {
    grid-template-columns: 1fr;
  }

  .showcase-item.reverse .showcase-copy {
    order: 0;
  }

  .feature-grid,
  .audience-grid,
  .pilot-fit-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid article,
  .audience-grid article,
  .pilot-fit-grid article {
    min-height: auto;
  }

  .showcase-item {
    gap: 18px;
  }

  .product-shot {
    padding: 6px;
  }

  .mock-layout {
    grid-template-columns: 1fr;
    min-height: 240px;
  }

  .screenshot-placeholder {
    min-height: 320px;
  }
}

.legal-page {
  min-height: calc(100vh - 86px);
  padding: 72px 0 96px;
  background: #f7faf4;
}

.legal-content {
  max-width: 840px;
}

.legal-content h1 {
  font-size: clamp(2.6rem, 8vw, 4.8rem);
  margin-bottom: 44px;
}

.legal-content section {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 14px;
}

.legal-content h2 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.legal-content p {
  margin: 0;
  color: var(--muted);
}

.legal-content a {
  color: var(--forest);
  font-weight: 760;
}
















/* Sophilexa design refresh: photo hero and calmer product surfaces */
:root {
  --hero-ink: #061f18;
  --hero-soft-line: rgba(64, 92, 54, 0.16);
  --hero-nav-height: 92px;
  --hero-strip-height: 94px;
}

.site-header {
  background: #fbfcf8;
  border-bottom: 1px solid rgba(70, 86, 60, 0.14);
  backdrop-filter: none;
  box-shadow: 0 10px 34px rgba(18, 37, 28, 0.04);
}

.header-inner {
  min-height: var(--hero-nav-height);
}

.brand img {
  width: 116px;
}

.main-nav {
  gap: 28px;
  color: var(--hero-ink);
  font-weight: 780;
}

.main-nav .nav-cta {
  min-height: 52px;
  border-color: transparent;
  border-radius: 8px;
  padding: 0 22px;
  color: #fff;
  background: #123622;
  box-shadow: 0 18px 44px rgba(18, 54, 34, 0.18);
}

.main-nav .nav-cta:hover,
.main-nav .nav-cta:focus {
  color: #fff;
  background: #0d2a1a;
  border-color: transparent;
}

.marketing-hero {
  position: relative;
  min-height: calc(100vh - var(--hero-nav-height));
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  isolation: isolate;
  background: #f7f8f1;
}

.hero-photo-loop {
  position: absolute;
  inset: 0;
  z-index: -4;
  overflow: hidden;
  background: #f6f7f1;
}

.hero-photo-loop::after,
.global-photo-loop::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(90deg, rgba(248, 248, 243, .96) 0%, rgba(248, 248, 243, .88) 30%, rgba(248, 248, 243, .42) 62%, rgba(248, 248, 243, .12) 100%),
    linear-gradient(180deg, rgba(248, 248, 243, .56) 0%, rgba(248, 248, 243, .12) 46%, rgba(248, 248, 243, .68) 100%);
}


.global-photo-loop .hero-photo {
  position: absolute;
  inset: -4%;
  opacity: 0;
  background-size: cover;
  background-position: 64% center;
  filter: saturate(1.08) contrast(1.06);
  animation-duration: 32s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}
.hero-photo {
  position: absolute;
  inset: -4%;
  opacity: 0;
  background-size: cover;
  background-position: 64% center;
  filter: saturate(1.08) contrast(1.06);
  animation-duration: 32s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

.hero-photo-1 {
  background-image: url("assets/hero-bg-01-schaltschrank.png");
  animation-name: heroPhotoOne;
}

.hero-photo-2 {
  background-image: url("assets/hero-bg-02-tisch.png");
  animation-name: heroPhotoTwo;
  animation-delay: 8s;
  background-position: 58% center;
}

.hero-photo-3 {
  background-image: url("assets/hero-bg-03-schrank.png");
  animation-name: heroPhotoThree;
  animation-delay: 16s;
  background-position: 68% center;
}

.hero-photo-4 {
  background-image: url("assets/hero-bg-04-tisch.png");
  animation-name: heroPhotoFour;
  animation-delay: 24s;
  background-position: 62% center;
}

@keyframes heroPhotoOne {
  0% { opacity: 0; transform: translate3d(-18px, 28px, 0) scale(1.06); }
  7% { opacity: 1; }
  24% { opacity: 1; }
  31% { opacity: 0; transform: translate3d(18px, -14px, 0) scale(1.025); }
  100% { opacity: 0; transform: translate3d(18px, -14px, 0) scale(1.025); }
}

@keyframes heroPhotoTwo {
  0% { opacity: 0; transform: translate3d(24px, -18px, 0) scale(1.055); }
  7% { opacity: 1; }
  24% { opacity: 1; }
  31% { opacity: 0; transform: translate3d(-18px, 18px, 0) scale(1.02); }
  100% { opacity: 0; transform: translate3d(-18px, 18px, 0) scale(1.02); }
}

@keyframes heroPhotoThree {
  0% { opacity: 0; transform: translate3d(-10px, -24px, 0) scale(1.06); }
  7% { opacity: 1; }
  24% { opacity: 1; }
  31% { opacity: 0; transform: translate3d(22px, 18px, 0) scale(1.025); }
  100% { opacity: 0; transform: translate3d(22px, 18px, 0) scale(1.025); }
}

@keyframes heroPhotoFour {
  0% { opacity: 0; transform: translate3d(18px, 22px, 0) scale(1.05); }
  7% { opacity: 1; }
  24% { opacity: 1; }
  31% { opacity: 0; transform: translate3d(-24px, -10px, 0) scale(1.02); }
  100% { opacity: 0; transform: translate3d(-24px, -10px, 0) scale(1.02); }
}

.hero-blueprint {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .2;
  background-image:
    linear-gradient(var(--hero-soft-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--hero-soft-line) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.34), rgba(0,0,0,.04));
}

.marketing-hero .hero-grid {
  flex: 1 1 auto;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(340px, 520px) minmax(560px, 1fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
  padding-top: 42px;
  padding-bottom: 34px;
}

.marketing-hero .hero-copy {
  position: relative;
  z-index: 2;
}

.marketing-hero .eyebrow {
  margin-bottom: 22px;
  color: var(--forest);
  font-size: .82rem;
  letter-spacing: .08em;
  font-weight: 900;
}

.marketing-hero h1 {
  max-width: 520px;
  font-size: clamp(2.85rem, 4.35vw, 4.5rem);
  line-height: .98;
  font-weight: 920;
  color: var(--hero-ink);
}

.marketing-hero .lead {
  max-width: 500px;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.25vw, 1.25rem);
}

.marketing-hero .hero-proof {
  display: grid;
  gap: 13px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  color: #273a30;
  font-weight: 760;
}

.marketing-hero .hero-proof li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.marketing-hero .hero-proof span {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  flex: none;
  border-radius: 8px;
  color: var(--forest);
  background: rgba(70, 86, 60, .1);
  border: 1px solid rgba(70, 86, 60, .16);
}

.marketing-hero .hero-actions {
  margin-top: 30px;
}

.marketing-hero .button {
  min-height: 52px;
  padding: 0 24px;
  border-radius: 8px;
}

.marketing-hero .button.primary {
  background: #123622;
  box-shadow: 0 18px 44px rgba(18, 54, 34, .2);
}

.marketing-hero .button.secondary {
  background: rgba(255,255,255,.82);
  color: var(--hero-ink);
  border-color: rgba(64, 92, 54, .18);
  box-shadow: 0 10px 30px rgba(24,42,32,.08);
}

.hero-stage {
  position: relative;
  min-height: clamp(430px, 44vh, 540px);
  isolation: isolate;
}

.hero-stage::after {
  content: "";
  position: absolute;
  right: 2%;
  bottom: 26px;
  width: 74%;
  height: 96px;
  border-radius: 999px;
  background: radial-gradient(ellipse, rgba(20,37,28,.16) 0%, rgba(20,37,28,.07) 46%, transparent 74%);
  filter: blur(16px);
  z-index: 0;
  pointer-events: none;
}

.hero-shot {
  position: absolute;
  display: block;
  border-radius: 12px;
  border: 1px solid rgba(37, 58, 47, .14);
  background: rgba(255,255,255,.9);
  box-shadow: 0 26px 76px rgba(18,37,28,.18), 0 8px 22px rgba(18,37,28,.08);
}

.hero-shot-calendar {
  top: clamp(0px, 1.5vh, 18px);
  right: 1.5vw;
  width: min(700px, 45.5vw);
  z-index: 1;
}

.hero-shot-task {
  top: clamp(236px, 25vh, 276px);
  right: min(496px, 31.5vw);
  width: min(470px, 30vw);
  z-index: 2;
  box-shadow: 0 30px 82px rgba(18,37,28,.2), 0 10px 28px rgba(18,37,28,.1);
}

.hero-shot-radar {
  top: clamp(236px, 25vh, 276px);
  right: .8vw;
  width: min(470px, 30vw);
  z-index: 3;
  box-shadow: 0 34px 92px rgba(18,37,28,.22), 0 12px 32px rgba(18,37,28,.11);
}

.hero-strip {
  flex: 0 0 var(--hero-strip-height);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: var(--hero-strip-height);
  border-top: 1px solid rgba(64, 92, 54, .18);
  background: rgba(248,248,243,.97);
  backdrop-filter: blur(14px);
}

.hero-strip > div {
  min-width: 0;
  padding: 14px clamp(18px, 2.5vw, 32px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(64, 92, 54, .14);
}

.hero-strip > div:last-child {
  border-right: 0;
}

.hero-strip strong {
  margin-bottom: 6px;
  color: var(--hero-ink);
  font-size: 1rem;
  line-height: 1.2;
}

.hero-strip p {
  margin: 0;
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.35;
}

.section {
  background: #fbfcf8;
}

.section.muted,
.problem-section,
.audience-section {
  background:
    linear-gradient(180deg, rgba(232,240,227,.44), rgba(251,252,248,.98));
}

.section-heading p,
.section-text p,
.showcase-copy p,
.timeline p,
.fit-card p,
.audience-card p {
  color: var(--muted);
}

.showcase-section {
  background: #f8f8f3;
}

.showcase-item,
.value-card,
.fit-card,
.audience-card,
.build-note,
.cta-panel {
  border-radius: 12px;
  border: 1px solid rgba(64, 92, 54, .14);
  background: rgba(255,255,255,.84);
  box-shadow: 0 18px 54px rgba(18,37,28,.08);
}

.product-shot {
  border-radius: 12px;
  border: 1px solid rgba(64, 92, 54, .14);
  box-shadow: 0 26px 76px rgba(18,37,28,.14);
  overflow: hidden;
  background: rgba(255,255,255,.9);
}

.product-shot img {
  width: 100%;
  height: auto;
}

@media (max-width: 1180px) {
  .marketing-hero {
    min-height: auto;
  }

  .marketing-hero .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 44px;
  }

  .hero-stage {
    min-height: 410px;
  }

  .hero-shot-calendar {
    width: 78vw;
    left: 0;
    right: auto;
  }

  .hero-shot-task {
    width: 44vw;
    left: 3vw;
    right: auto;
    top: 190px;
  }

  .hero-shot-radar {
    width: 44vw;
    right: 2vw;
    top: 190px;
  }

  .hero-strip {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
  }

  .hero-strip > div {
    min-height: var(--hero-strip-height);
  }
}

@media (max-width: 760px) {
  :root {
    --hero-nav-height: 76px;
  }

  .header-inner {
    min-height: var(--hero-nav-height);
  }

  .brand img {
    width: 92px;
  }

  .main-nav a:not(.nav-cta) {
    display: none;
  }

  .main-nav .nav-cta {
    min-height: 42px;
    padding: 0 14px;
    font-size: .86rem;
  }

  .marketing-hero .hero-grid {
    padding-top: 34px;
    padding-bottom: 24px;
  }

  .marketing-hero h1 {
    font-size: clamp(2.5rem, 13vw, 3.35rem);
  }

  .hero-stage {
    min-height: 360px;
  }

  .hero-shot-calendar {
    width: 116vw;
  }

  .hero-shot-task {
    width: 84vw;
    left: 0;
    top: 160px;
  }

  .hero-shot-radar {
    display: none;
  }

  .hero-strip {
    grid-template-columns: 1fr;
  }
}
.site-header .container,
.marketing-hero .container {
  width: min(1760px, calc(100% - 88px));
}

@media (max-width: 760px) {
  .site-header .container,
  .marketing-hero .container {
    width: min(100% - 40px, 1120px);
  }
}
/* Horizontal presentation mode */
@media (min-width: 901px) {
  html,
  body {
    height: 100%;
    overflow: hidden;
  }

  .site-header {
    position: relative;
  }

  .horizontal-site {
    position: relative;
    height: calc(100vh - var(--hero-nav-height));
    min-height: 620px;
    overflow: hidden;
    isolation: isolate;
  }

  .horizontal-track {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: rgba(70, 86, 60, .34) rgba(248, 248, 243, .4);
  }

  .horizontal-track::-webkit-scrollbar {
    height: 10px;
  }

  .horizontal-track::-webkit-scrollbar-track {
    background: rgba(248, 248, 243, .45);
  }

  .horizontal-track::-webkit-scrollbar-thumb {
    background: rgba(70, 86, 60, .36);
    border-radius: 999px;
  }

  .horizontal-track > section {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    scroll-snap-align: start;
    overflow: hidden;
    background: transparent;
  }

  .horizontal-track > section:not(.marketing-hero) {
    display: flex;
    align-items: center;
    padding: clamp(34px, 5vh, 62px) 0;
  }

  .horizontal-track > section:not(.marketing-hero) > .container {
    max-height: calc(100vh - var(--hero-nav-height) - 80px);
    overflow: hidden;
  }

  .global-photo-loop {
    position: absolute;
    inset: 0;
    z-index: -4;
    overflow: hidden;
    background: #f6f7f1;
  }

  .global-photo-loop::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    background:
      linear-gradient(90deg, rgba(248, 248, 243, .97) 0%, rgba(248, 248, 243, .91) 28%, rgba(248, 248, 243, .58) 58%, rgba(248, 248, 243, .22) 100%),
      linear-gradient(180deg, rgba(248, 248, 243, .7) 0%, rgba(248, 248, 243, .24) 46%, rgba(248, 248, 243, .78) 100%);
  }

  .global-blueprint {
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: .18;
    background-image:
      linear-gradient(var(--hero-soft-line) 1px, transparent 1px),
      linear-gradient(90deg, var(--hero-soft-line) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(90deg, rgba(0,0,0,.75), rgba(0,0,0,.32), rgba(0,0,0,.05));
  }

  .marketing-hero {
    min-height: 100%;
    height: 100%;
    background: transparent;
  }

  .marketing-hero .hero-grid {
    height: calc(100% - var(--hero-strip-height));
    padding-top: 34px;
    padding-bottom: 30px;
  }

  .hero-photo-loop,
  .hero-blueprint {
    display: none;
  }

  .panel-arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 46px;
    height: 70px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(64, 92, 54, .18);
    border-radius: 999px;
    color: #123622;
    background: rgba(251, 252, 248, .78);
    box-shadow: 0 18px 48px rgba(18, 37, 28, .12);
    font-size: 2.25rem;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    backdrop-filter: blur(12px);
  }

  .panel-arrow:hover,
  .panel-arrow:focus {
    color: #fff;
    background: #123622;
    outline: none;
  }

  .panel-arrow-prev {
    left: 18px;
  }

  .panel-arrow-next {
    right: 18px;
  }

  .problem-section .split,
  #umfang .scope-grid,
  .showcase-list,
  .timeline,
  .audience-grid,
  .pilot-fit-grid,
  .cta-box {
    position: relative;
    z-index: 1;
  }

  .problem-section .split,
  #umfang .container,
  .showcase-section .container,
  #ablauf .container,
  .audience-section .container,
  .pilot-fit-section .container,
  .cta-section .container {
    padding: clamp(26px, 4vw, 54px);
    border-radius: 14px;
    border: 1px solid rgba(64, 92, 54, .14);
    background: rgba(251, 252, 248, .84);
    box-shadow: 0 24px 74px rgba(18, 37, 28, .1);
    backdrop-filter: blur(10px);
  }

  .showcase-list {
    max-height: calc(100vh - var(--hero-nav-height) - 230px);
    overflow: hidden;
  }

  .showcase-item {
    margin-bottom: 22px;
  }

  .site-footer {
    display: none;
  }
}

@media (max-width: 900px) {
  .global-photo-loop,
  .global-blueprint,
  .panel-arrow {
    display: none;
  }

  .horizontal-track {
    display: block;
  }
}
/* Horizontal homepage refinement: compact hero, persistent background, slide-like sections */
:root {
  --hero-nav-height: 86px;
  --hero-strip-height: 86px;
}

.site-header {
  background: #fbfcf8;
  box-shadow: 0 10px 30px rgba(18, 37, 28, 0.05);
}

.header-inner {
  min-height: var(--hero-nav-height);
}

.brand img {
  width: 96px;
}

.main-nav {
  gap: 32px;
  font-size: 0.95rem;
}

.main-nav .nav-cta {
  min-height: 50px;
  padding: 0 24px;
}

.legal-hint {
  margin-top: 18px !important;
  font-size: 0.92rem;
}

.legal-hint a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.marketing-hero h1 {
  max-width: 620px;
  font-size: clamp(2.7rem, 4.1vw, 4.45rem);
  line-height: 1.02;
}

.marketing-hero .lead {
  max-width: 540px;
  margin-top: 22px;
}

.marketing-hero .hero-proof {
  gap: 12px;
  margin-top: 26px;
}

.marketing-hero .hero-actions {
  margin-top: 28px;
}

@media (min-width: 901px) {
  html,
  body {
    height: 100dvh;
    overflow: hidden;
  }

  .site-header {
    position: relative;
    z-index: 10;
  }

  .horizontal-site {
    height: calc(100dvh - var(--hero-nav-height));
    min-height: 0;
  }

  .horizontal-track {
    overflow-x: auto;
    overflow-y: hidden;
  }

  .horizontal-track > section {
    min-height: 0;
  }

  .horizontal-track > section:not(.marketing-hero) {
    padding: clamp(24px, 4vh, 42px) 0;
  }

  .horizontal-track > section:not(.marketing-hero) > .container {
    width: min(1480px, calc(100% - 120px));
    max-height: none;
    height: min(100%, calc(100dvh - var(--hero-nav-height) - 64px));
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
  }

  .global-photo-loop::after {
    background:
      linear-gradient(90deg, rgba(248, 248, 243, .985) 0%, rgba(248, 248, 243, .94) 31%, rgba(248, 248, 243, .66) 58%, rgba(248, 248, 243, .34) 100%),
      linear-gradient(180deg, rgba(248, 248, 243, .76) 0%, rgba(248, 248, 243, .34) 46%, rgba(248, 248, 243, .82) 100%);
  }

  
.global-photo-loop .hero-photo {
  position: absolute;
  inset: -4%;
  opacity: 0;
  background-size: cover;
  background-position: 64% center;
  filter: saturate(1.08) contrast(1.06);
  animation-duration: 32s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}
.hero-photo {
    background-position: 58% center;
    filter: saturate(1.14) contrast(1.08);
  }

  .hero-photo-1,
  .hero-photo-3 {
    background-position: 61% center;
  }

  .hero-photo-2,
  .hero-photo-4 {
    background-position: 54% center;
  }

  .marketing-hero .container {
    width: min(1760px, calc(100% - 120px));
  }

  .marketing-hero .hero-grid {
    height: calc(100% - var(--hero-strip-height));
    grid-template-columns: minmax(420px, 38vw) minmax(680px, 1fr);
    gap: clamp(36px, 4.8vw, 80px);
    padding-top: clamp(18px, 3vh, 30px);
    padding-bottom: clamp(18px, 3vh, 30px);
  }

  .hero-stage {
    height: 100%;
    min-height: 0;
  }

  .hero-stage::after {
    right: 5%;
    bottom: 5%;
    width: 78%;
    height: 84px;
  }

  .hero-shot {
    border-radius: 10px;
  }

  .hero-shot-calendar {
    top: clamp(8px, 2.5vh, 24px);
    right: 0;
    width: min(760px, 54vw);
  }

  .hero-shot-task,
  .hero-shot-radar {
    top: auto;
    bottom: clamp(14px, 3.1vh, 30px);
    width: min(520px, 25.5vw);
  }

  .hero-shot-task {
    left: clamp(20px, 2vw, 42px);
    right: auto;
    z-index: 3;
  }

  .hero-shot-radar {
    right: 0;
    z-index: 4;
  }

  .hero-strip {
    flex-basis: var(--hero-strip-height);
    height: var(--hero-strip-height);
    background: rgba(251, 252, 248, .96);
  }

  .hero-strip > div {
    min-height: var(--hero-strip-height);
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .hero-strip strong {
    font-size: 0.98rem;
  }

  .hero-strip p {
    font-size: 0.91rem;
  }

  .section-heading {
    max-width: 820px;
    margin-bottom: 24px;
  }

  .section-heading h2,
  .problem-section h2,
  .cta-box h2 {
    font-size: clamp(2rem, 3vw, 3.25rem);
  }

  .problem-section .split {
    grid-template-columns: .8fr 1.2fr;
    gap: clamp(32px, 5vw, 82px);
  }

  .section-text p {
    font-size: clamp(0.98rem, 1.05vw, 1.08rem);
  }

  .feature-grid,
  .audience-grid,
  .pilot-fit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .feature-grid article,
  .audience-grid article,
  .pilot-fit-grid article {
    min-height: 0;
    padding: 18px;
  }

  .feature-icon {
    margin-bottom: 18px;
  }

  .build-note {
    margin-top: 14px;
  }

  .showcase-section .container {
    justify-content: flex-start;
  }

  .showcase-section .section-heading {
    max-width: 980px;
    margin-bottom: 20px;
  }

  .showcase-list {
    max-height: none;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    overflow: visible;
  }

  .showcase-item,
  .showcase-item.reverse {
    display: flex;
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    margin: 0;
    padding: 18px;
    border-top: 0;
  }

  .showcase-item.reverse .showcase-copy {
    order: 0;
  }

  .showcase-copy {
    max-width: none;
  }

  .showcase-number {
    margin-bottom: 10px;
  }

  .showcase-copy h3 {
    font-size: clamp(1.12rem, 1.35vw, 1.45rem);
  }

  .showcase-copy p {
    font-size: 0.95rem;
  }

  .product-shot {
    padding: 0;
  }

  .product-shot img {
    aspect-ratio: 16 / 10;
    height: auto;
    object-fit: cover;
  }

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

  .timeline li {
    min-height: 260px;
    grid-template-columns: 1fr;
    align-content: start;
  }

  .timeline h3 {
    font-size: 1.08rem;
  }

  .timeline p {
    font-size: 0.94rem;
  }

  .cta-box {
    min-height: 52vh;
  }

  .panel-arrow {
    width: 38px;
    height: 60px;
    font-size: 1.9rem;
    opacity: .78;
  }

  .panel-arrow-prev {
    left: 14px;
  }

  .panel-arrow-next {
    right: 14px;
  }
}

@media (min-width: 901px) and (max-width: 1280px) {
  .marketing-hero .container,
  .horizontal-track > section:not(.marketing-hero) > .container {
    width: min(100% - 72px, 1280px);
  }

  .marketing-hero .hero-grid {
    grid-template-columns: minmax(330px, 41vw) minmax(520px, 1fr);
    gap: 32px;
  }

  .marketing-hero h1 {
    font-size: clamp(2.35rem, 4.8vw, 3.65rem);
  }

  .hero-shot-calendar {
    width: min(650px, 55vw);
  }

  .hero-shot-task,
  .hero-shot-radar {
    width: min(410px, 27vw);
  }

  .hero-strip p {
    display: none;
  }
}
/* Fix pass: horizontal panels and hero composition */
@media (min-width: 901px) {
  .horizontal-track > section {
    background: transparent !important;
  }

  #ablauf,
  #ablauf.section,
  #ablauf.section.muted {
    background: transparent !important;
  }

  #ablauf .container {
    background: rgba(251, 252, 248, .84) !important;
  }

  .cta-section .cta-box {
    background: linear-gradient(135deg, rgba(18, 54, 34, .97), rgba(52, 75, 44, .94)) !important;
    color: #fff !important;
    border-color: rgba(255, 255, 255, .14) !important;
  }

  .cta-section .cta-box h2,
  .cta-section .cta-box .eyebrow,
  .cta-section .cta-box p,
  .cta-section .cta-box a:not(.button) {
    color: #fff !important;
  }

  .cta-section .cta-box p {
    color: rgba(255, 255, 255, .78) !important;
  }

  .cta-section .cta-box .button.primary {
    color: #123622 !important;
    background: #fff !important;
  }

  .marketing-hero .hero-grid {
    grid-template-columns: minmax(390px, 36vw) minmax(620px, 1fr);
  }

  .hero-stage {
    transform: translateX(-1vw);
  }

  .hero-shot-calendar {
    top: clamp(10px, 2.4vh, 22px);
    right: clamp(10px, 1vw, 26px);
    width: min(710px, 48vw);
    z-index: 1;
  }

  .hero-shot-task,
  .hero-shot-radar {
    bottom: clamp(16px, 3vh, 30px);
  }

  .hero-shot-task {
    left: clamp(6px, 1vw, 22px);
    width: min(430px, 22.5vw);
    z-index: 3;
  }

  .hero-shot-radar {
    right: clamp(6px, 1vw, 22px);
    width: min(450px, 23.5vw);
    z-index: 4;
  }
}

@media (min-width: 901px) and (max-width: 1280px) {
  .marketing-hero .hero-grid {
    grid-template-columns: minmax(330px, 39vw) minmax(500px, 1fr);
  }

  .hero-stage {
    transform: translateX(-.5vw);
  }

  .hero-shot-calendar {
    width: min(600px, 52vw);
  }

  .hero-shot-task {
    width: min(360px, 24vw);
  }

  .hero-shot-radar {
    width: min(380px, 25vw);
  }
}
/* Fix: Pilotprojekt-Folie wieder wie die vorherigen hellen Panels */
@media (min-width: 901px) {
  .cta-section .cta-box {
    min-height: auto !important;
    height: min(100%, calc(100dvh - var(--hero-nav-height) - 64px));
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) auto;
    align-items: center;
    gap: clamp(28px, 5vw, 72px);
    background: rgba(251, 252, 248, .84) !important;
    color: var(--hero-ink) !important;
    border: 1px solid rgba(64, 92, 54, .14) !important;
    box-shadow: 0 24px 74px rgba(18, 37, 28, .1) !important;
    backdrop-filter: blur(10px);
  }

  .cta-section .cta-box > div {
    max-width: 780px;
  }

  .cta-section .cta-box .eyebrow {
    color: var(--forest) !important;
  }

  .cta-section .cta-box h2 {
    max-width: 760px;
    color: var(--hero-ink) !important;
  }

  .cta-section .cta-box p {
    max-width: 720px;
    color: var(--muted) !important;
  }

  .cta-section .legal-hint,
  .cta-section .legal-hint a {
    color: var(--muted) !important;
  }

  .cta-section .cta-box .button.primary {
    min-width: 240px;
    color: #fff !important;
    background: #123622 !important;
    box-shadow: 0 18px 44px rgba(18, 54, 34, .2) !important;
  }
}

@media (min-width: 901px) and (max-width: 1280px) {
  .cta-section .cta-box {
    grid-template-columns: 1fr;
    align-content: center;
    justify-items: start;
  }
}
/* Zwischenfix 2026-07-18: rechtliche Links sichtbar halten und leere CTA-Flaechen beruhigen */
@media (min-width: 901px) {
  .cta-section {
    display: flex;
    align-items: center;
  }

  .cta-section .container.cta-box {
    width: min(1180px, calc(100% - 180px));
    height: auto !important;
    min-height: clamp(360px, 46vh, 500px);
    margin-inline: auto;
    padding: clamp(42px, 6vh, 72px) clamp(46px, 6vw, 86px);
    background:
      linear-gradient(135deg, rgba(251, 252, 248, .92), rgba(232, 239, 226, .82)) !important;
    box-shadow: 0 28px 90px rgba(18, 37, 28, .13) !important;
  }

  .cta-section .cta-box h2 {
    max-width: 720px;
  }

  .cta-section .legal-hint {
    margin-top: 22px;
    color: #123622 !important;
  }

  .cta-section .legal-hint a {
    color: #123622 !important;
    font-weight: 780;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
  }

  .cta-section .legal-hint a:hover,
  .cta-section .legal-hint a:focus {
    color: #0a2416 !important;
    background: rgba(18, 54, 34, .08);
    outline: 2px solid rgba(18, 54, 34, .22);
    outline-offset: 4px;
  }
}
/* Legal links: immer sichtbar, auch mobil */
.legal-hint,
.legal-hint a {
  color: #123622 !important;
}

.legal-hint a {
  font-weight: 780;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
/* Legal links: gezielter Override gegen CTA-Linkregel */
.cta-section .container.cta-box .legal-hint,
.cta-section .container.cta-box .legal-hint a,
.cta-section .cta-box .legal-hint,
.cta-section .cta-box .legal-hint a {
  color: #123622 !important;
}

.cta-section .container.cta-box .legal-hint a,
.cta-section .cta-box .legal-hint a {
  display: inline-block;
  font-weight: 820;
  text-decoration-line: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
/* Compact homepage v2: Strategie aus Arbeitsfassung, nicht 1:1-Langtext */
.compact-homepage .story-section,
.compact-homepage .compact-section,
.compact-homepage .product-section,
.compact-homepage .roadmap-section,
.compact-homepage .compact-cta-section {
  position: relative;
}

@media (min-width: 901px) {
  .compact-homepage .horizontal-track > section:not(.marketing-hero) > .container {
    width: min(1500px, calc(100% - 136px));
    height: min(100%, calc(100dvh - var(--hero-nav-height) - 68px));
    justify-content: center;
  }

  .compact-homepage .story-grid,
  .compact-homepage .product-grid {
    display: grid;
    grid-template-columns: minmax(360px, .82fr) minmax(620px, 1.18fr);
    align-items: center;
    gap: clamp(36px, 5vw, 86px);
  }

  .compact-homepage .reverse-product {
    grid-template-columns: minmax(660px, 1.16fr) minmax(360px, .84fr);
  }

  .compact-homepage .compact-panel,
  .compact-homepage .story-panel,
  .compact-homepage .product-grid,
  .compact-homepage .compact-cta-box {
    border: 1px solid rgba(64, 92, 54, .14);
    background:
      linear-gradient(135deg, rgba(251, 252, 248, .9), rgba(236, 242, 231, .78));
    box-shadow: 0 28px 88px rgba(18, 37, 28, .11);
    backdrop-filter: blur(12px);
  }

  .compact-homepage .compact-panel,
  .compact-homepage .product-grid,
  .compact-homepage .compact-cta-box {
    border-radius: 14px;
    padding: clamp(28px, 4vh, 48px);
  }

  .compact-homepage .story-panel {
    border-radius: 14px;
    padding: clamp(30px, 4.6vh, 56px);
  }

  .compact-homepage .story-copy h2,
  .compact-homepage .product-copy h2,
  .compact-homepage .compact-heading h2,
  .compact-homepage .compact-cta-box h2 {
    font-size: clamp(2rem, 3vw, 3.15rem);
    line-height: 1.05;
    color: var(--hero-ink);
  }

  .compact-homepage .story-panel p,
  .compact-homepage .product-copy p,
  .compact-homepage .compact-heading p,
  .compact-homepage .compact-cta-box p {
    max-width: 680px;
    color: #536257;
    font-size: clamp(1rem, 1.05vw, 1.1rem);
  }

  .compact-points,
  .check-list {
    display: grid;
    gap: 10px;
    margin-top: 24px;
    padding: 0;
    list-style: none;
  }

  .compact-points span,
  .check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #123622;
    font-weight: 760;
  }

  .compact-points span::before,
  .check-list li::before {
    content: "";
    width: 24px;
    height: 24px;
    flex: none;
    border-radius: 7px;
    border: 1px solid rgba(70, 86, 60, .18);
    background: rgba(70, 86, 60, .1);
    box-shadow: inset 0 0 0 6px rgba(251, 252, 248, .7);
  }

  .compact-homepage .compact-feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: clamp(22px, 3vh, 34px);
  }

  .compact-homepage .compact-feature-grid article,
  .roadmap-grid article {
    min-height: auto;
    padding: 18px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(64, 92, 54, .13);
    box-shadow: 0 14px 36px rgba(18, 37, 28, .06);
  }

  .compact-homepage .compact-feature-grid h3,
  .roadmap-grid h3 {
    font-size: 1.02rem;
  }

  .compact-homepage .compact-feature-grid p,
  .roadmap-grid p {
    margin: 0;
    font-size: .92rem;
    color: #5b675f;
  }

  .integrated-shot {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(37, 58, 47, .14);
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 30px 90px rgba(18, 37, 28, .18), 0 12px 28px rgba(18, 37, 28, .08);
  }

  .integrated-shot img {
    width: 100%;
    height: clamp(330px, 49vh, 540px);
    object-fit: cover;
    object-position: center;
  }

  .radar-shot img {
    object-position: 52% 45%;
  }

  .task-shot img {
    object-position: 50% 42%;
  }

  .calendar-shot img {
    object-position: 50% 38%;
  }

  .integrated-shot figcaption {
    padding: 10px 14px 12px;
    color: #5d675a;
    font-size: .86rem;
    background: rgba(251, 252, 248, .95);
    border-top: 1px solid rgba(64, 92, 54, .12);
  }

  .roadmap-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: clamp(22px, 3vh, 34px);
  }

  .roadmap-grid span {
    display: inline-flex;
    margin-bottom: 12px;
    border-radius: 999px;
    padding: 4px 9px;
    color: #123622;
    background: rgba(70, 86, 60, .1);
    border: 1px solid rgba(70, 86, 60, .14);
    font-size: .72rem;
    font-weight: 820;
  }

  .compact-homepage .compact-cta-box {
    width: min(1080px, calc(100% - 220px));
    min-height: 0;
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

@media (min-width: 901px) and (max-width: 1280px) {
  .compact-homepage .product-grid,
  .compact-homepage .story-grid,
  .compact-homepage .reverse-product {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .integrated-shot img {
    height: clamp(260px, 34vh, 360px);
  }

  .compact-homepage .compact-feature-grid,
  .roadmap-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .compact-homepage .global-photo-loop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: -4;
    opacity: .42;
  }

  .compact-homepage .global-photo-loop::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(251, 252, 248, .96), rgba(251, 252, 248, .88)),
      linear-gradient(90deg, rgba(251, 252, 248, .98), rgba(251, 252, 248, .72));
  }

  .compact-homepage .story-grid,
  .compact-homepage .product-grid,
  .compact-homepage .reverse-product,
  .compact-homepage .compact-panel,
  .compact-homepage .compact-cta-box {
    display: grid;
    gap: 22px;
  }

  .compact-homepage .story-panel,
  .compact-homepage .compact-panel,
  .compact-homepage .product-grid,
  .compact-homepage .compact-cta-box {
    border-radius: 12px;
    padding: 22px;
    border: 1px solid rgba(64, 92, 54, .14);
    background: rgba(251, 252, 248, .9);
    box-shadow: 0 18px 48px rgba(18, 37, 28, .08);
  }

  .compact-homepage .compact-feature-grid,
  .roadmap-grid,
  .compact-points,
  .check-list {
    display: grid;
    gap: 12px;
  }

  .integrated-shot {
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(64, 92, 54, .14);
    background: rgba(255,255,255,.9);
  }

  .integrated-shot img {
    width: 100%;
    height: auto;
  }

  .integrated-shot figcaption {
    padding: 9px 12px;
    color: #5d675a;
    font-size: .84rem;
  }

  .roadmap-grid article,
  .compact-feature-grid article {
    padding: 16px;
    border-radius: 10px;
    border: 1px solid rgba(64, 92, 54, .13);
    background: rgba(255,255,255,.78);
  }
}
/* Compact v2: hohe Spezifitaet gegen alte Horizontal-Container-Regeln */
@media (min-width: 901px) {
  .compact-homepage .horizontal-track > section:not(.marketing-hero) > .container.story-grid,
  .compact-homepage .horizontal-track > section:not(.marketing-hero) > .container.product-grid {
    display: grid !important;
    flex-direction: initial !important;
    overflow: visible;
  }

  .compact-homepage .horizontal-track > section:not(.marketing-hero) > .container.compact-panel,
  .compact-homepage .horizontal-track > section:not(.marketing-hero) > .container.compact-cta-box {
    display: grid !important;
    overflow: visible;
  }

  .compact-homepage .horizontal-track > section:not(.marketing-hero) > .container.product-grid {
    height: auto;
    min-height: min(620px, calc(100dvh - var(--hero-nav-height) - 92px));
  }

  .compact-homepage .horizontal-track > section:not(.marketing-hero) > .container.compact-panel {
    height: auto;
    min-height: min(560px, calc(100dvh - var(--hero-nav-height) - 92px));
  }
}
/* Mobile background visibility fix: keep animated photo loop above the page background. */
@media (max-width: 900px) {
  .compact-homepage {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: transparent;
  }

  .compact-homepage .global-photo-loop {
    display: block !important;
    position: fixed;
    inset: 0;
    z-index: 0;
    opacity: .92;
    pointer-events: none;
    overflow: hidden;
    background: #f6f7f1;
  }

  .compact-homepage .global-photo-loop .hero-photo {
    display: block !important;
    position: absolute;
    inset: -9%;
    opacity: 0;
    background-size: cover;
    filter: saturate(1.22) contrast(1.12);
    animation-duration: 32s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
  }

  .compact-homepage .global-photo-loop::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
      linear-gradient(180deg, rgba(251, 252, 248, .78), rgba(251, 252, 248, .62)),
      linear-gradient(90deg, rgba(251, 252, 248, .9), rgba(251, 252, 248, .36));
  }

  .compact-homepage .global-blueprint {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 0;
    opacity: .12;
    pointer-events: none;
  }

  .compact-homepage .horizontal-track,
  .compact-homepage .panel-arrow,
  .compact-homepage + .site-footer {
    position: relative;
    z-index: 1;
  }

  .compact-homepage .horizontal-track > section {
    background: transparent;
  }
}
/* Product screenshot refinement v1: clearer crops, calmer premium staging. */
@media (min-width: 901px) {
  .hero-stage {
    min-height: clamp(430px, 46vh, 560px);
  }

  .hero-stage::after {
    right: 4%;
    bottom: 12px;
    width: 64%;
    height: 110px;
    opacity: .86;
  }

  .hero-shot {
    border-radius: 16px;
    border: 1px solid rgba(37, 58, 47, .12);
    background: rgba(255,255,255,.94);
    box-shadow:
      0 36px 92px rgba(18,37,28,.18),
      0 12px 30px rgba(18,37,28,.1),
      inset 0 1px 0 rgba(255,255,255,.76);
    object-fit: cover;
  }

  .hero-shot-calendar {
    top: clamp(6px, 1.5vh, 18px);
    right: clamp(26px, 4.4vw, 72px);
    width: min(760px, 48vw);
    max-height: 330px;
    opacity: .84;
    object-position: 50% 28%;
    z-index: 1;
  }

  .hero-shot-task {
    top: clamp(248px, 26vh, 292px);
    right: min(610px, 37vw);
    width: min(480px, 29vw);
    max-height: 300px;
    object-position: 50% 42%;
    z-index: 3;
  }

  .hero-shot-radar {
    top: clamp(248px, 26vh, 292px);
    right: clamp(24px, 3.8vw, 68px);
    width: min(510px, 31vw);
    max-height: 300px;
    object-position: 50% 35%;
    z-index: 4;
  }

  .integrated-shot {
    border-radius: 18px;
    border: 1px solid rgba(37, 58, 47, .13);
    background:
      linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,249,244,.94));
    box-shadow:
      0 34px 90px rgba(18,37,28,.15),
      0 10px 28px rgba(18,37,28,.08),
      inset 0 1px 0 rgba(255,255,255,.88);
    padding: 10px;
  }

  .integrated-shot img {
    height: clamp(360px, 48vh, 560px);
    border-radius: 12px;
    object-fit: cover;
    object-position: 50% 34%;
  }

  .radar-shot img {
    object-position: 50% 32%;
  }

  .task-shot img {
    object-position: 50% 42%;
  }

  .calendar-shot img {
    object-position: 50% 30%;
  }
}

@media (min-width: 901px) and (max-width: 1280px) {
  .hero-shot-calendar {
    width: min(660px, 52vw);
    max-height: 280px;
  }

  .hero-shot-task,
  .hero-shot-radar {
    top: clamp(250px, 30vh, 310px);
    width: min(430px, 40vw);
    max-height: 260px;
  }

  .hero-shot-task {
    right: min(480px, 43vw);
  }
}

@media (max-width: 900px) {
  .hero-stage {
    margin-top: 28px;
    display: grid;
    gap: 14px;
  }

  .hero-shot {
    position: relative;
    inset: auto;
    width: 100%;
    max-height: none;
    border-radius: 14px;
    border: 1px solid rgba(37, 58, 47, .14);
    box-shadow: 0 18px 46px rgba(18,37,28,.14);
    object-fit: cover;
  }

  .hero-shot-calendar {
    height: 220px;
    object-position: 50% 28%;
  }

  .hero-shot-task,
  .hero-shot-radar {
    height: 190px;
    object-position: 50% 38%;
  }

  .integrated-shot img {
    height: auto;
    max-height: 340px;
    object-fit: cover;
  }
}
/* Mobile performance background: two lightweight images instead of four large desktop PNGs. */
@media (max-width: 900px) {
  .compact-homepage .hero-photo-1,
  .compact-homepage .hero-photo-3 {
    background-image: url("assets/hero-bg-mobile-01.jpg");
    background-position: 62% center;
  }

  .compact-homepage .hero-photo-2,
  .compact-homepage .hero-photo-4 {
    background-image: url("assets/hero-bg-mobile-02.jpg");
    background-position: 56% center;
  }
}
/* Hero screenshot rescue v1: stable, readable montage on the start slide. */
@media (min-width: 901px) {
  .marketing-hero .hero-stage {
    min-height: clamp(430px, 47vh, 570px);
    overflow: visible;
  }

  .marketing-hero .hero-shot {
    object-fit: contain !important;
    max-height: none !important;
    background: rgba(255,255,255,.96);
  }

  .marketing-hero .hero-shot-calendar {
    top: clamp(12px, 2vh, 28px) !important;
    right: clamp(30px, 4.6vw, 78px) !important;
    width: min(760px, 47vw) !important;
    opacity: .9;
    z-index: 1;
  }

  .marketing-hero .hero-shot-task {
    top: auto !important;
    bottom: clamp(18px, 3vh, 34px) !important;
    right: min(560px, 34vw) !important;
    width: min(455px, 27vw) !important;
    z-index: 3;
  }

  .marketing-hero .hero-shot-radar {
    top: auto !important;
    bottom: clamp(24px, 3.4vh, 42px) !important;
    right: clamp(30px, 4.4vw, 76px) !important;
    width: min(470px, 28vw) !important;
    z-index: 4;
  }
}

@media (min-width: 901px) and (max-width: 1280px) {
  .marketing-hero .hero-shot-calendar {
    width: min(620px, 50vw) !important;
  }

  .marketing-hero .hero-shot-task {
    right: min(440px, 42vw) !important;
    width: min(390px, 37vw) !important;
  }

  .marketing-hero .hero-shot-radar {
    width: min(410px, 38vw) !important;
  }
}