@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
  src: url("./inter-latin.woff2") format("woff2");
}

:root {
  color-scheme: dark;
  --bg: #09090b;
  --surface: rgba(9, 9, 11, 0.78);
  --surface-strong: rgba(9, 9, 11, 0.92);
  --line: #27272a;
  --line-soft: #18181b;
  --text: #fafafa;
  --muted: #a1a1aa;
  --muted-strong: #d4d4d8;
  --on-image-copy: #e4e4e7;
  --on-image-shadow: 0 1px 10px rgba(0, 0, 0, 0.72);
  --emerald: #34d399;
  --blue: #60a5fa;
  --purple: #c084fc;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  position: relative;
  isolation: isolate;
  min-width: 320px;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: #27272a;
  color: #fafafa;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background: #27272a;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid #fafafa;
  outline-offset: 4px;
}

.page-background {
  position: fixed;
  inset: 0 0 auto;
  z-index: -2;
  width: 100%;
  height: 100vh;
  background-image: url("./hero-background-bild-5.webp");
  background-position: center;
  background-size: cover;
  opacity: 0.9;
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 0%, black 80%, transparent);
  mask-image: linear-gradient(to bottom, transparent, black 0%, black 80%, transparent);
}

.page-shade {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: rgba(9, 9, 11, 0.24);
  pointer-events: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 64px;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(9, 9, 11, 0.82);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand,
.footer-brand {
  display: inline-flex;
  flex: none;
  align-items: center;
}

.brand img {
  width: auto;
  height: 26px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
}

.header-nav a,
.nav-solutions summary,
.footer-links a,
.text-link {
  text-decoration: none;
  transition: color 180ms ease;
}

.header-nav a:hover,
.header-nav a[aria-current="page"],
.nav-solutions summary:hover,
.footer-links a:hover,
.text-link:hover {
  color: var(--text);
}

.nav-solutions {
  position: relative;
}

.nav-solutions summary {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--muted);
  cursor: pointer;
  list-style: none;
}

.nav-solutions summary::-webkit-details-marker {
  display: none;
}

.nav-solutions summary iconify-icon {
  transition: transform 180ms ease;
}

.nav-solutions[open] summary,
.nav-solutions:focus-within summary {
  color: var(--text);
}

.nav-solutions[open] summary iconify-icon {
  transform: rotate(180deg);
}

.nav-menu {
  position: absolute;
  top: calc(100% + 13px);
  left: 50%;
  z-index: 70;
  width: 320px;
  padding: 8px;
  border: 1px solid #3f3f46;
  border-radius: 7px;
  background: rgba(9, 9, 11, 0.97);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -4px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  backdrop-filter: blur(18px);
}

.nav-menu::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 14px;
  content: "";
}

.nav-solutions:hover .nav-menu,
.nav-solutions:focus-within .nav-menu,
.nav-solutions[open] .nav-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-menu a {
  display: block;
  padding: 13px 14px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 180ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  background: #18181b;
}

.nav-menu strong,
.nav-menu span {
  display: block;
}

.nav-menu strong {
  color: var(--text);
  font-size: 14px;
  font-weight: 400;
}

.nav-menu span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid #e4e4e7;
  border-radius: 6px;
  background: #fafafa;
  color: #09090b;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease;
}

.button:hover {
  background: #ffffff;
  border-color: #ffffff;
}

.button--header {
  min-height: 36px;
  padding: 0 16px;
}

.button--primary {
  padding: 0 20px;
}

.button--secondary {
  border-color: #3f3f46;
  background: rgba(9, 9, 11, 0.55);
  color: var(--muted-strong);
  font-weight: 400;
  backdrop-filter: blur(10px);
}

.button--secondary:hover {
  border-color: #52525b;
  background: rgba(24, 24, 27, 0.82);
}

.page-intro {
  padding: 112px 0 72px;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.68fr);
  gap: 72px;
  align-items: end;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.page-intro h1 {
  max-width: 800px;
  margin: 0;
  color: var(--text);
  font-size: 58px;
  font-weight: 300;
  line-height: 1.08;
}

.lead {
  max-width: 740px;
  margin: 26px 0 0;
  color: var(--muted-strong);
  font-size: 18px;
  line-height: 1.75;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.fit-panel {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
  padding: 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.fit-panel h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.fit-list,
.check-list {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.fit-list li,
.check-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 11px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.fit-list iconify-icon,
.check-list iconify-icon {
  margin-top: 3px;
  color: var(--emerald);
}

.signal-band {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: rgba(9, 9, 11, 0.62);
  backdrop-filter: blur(12px);
}

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

.signal-item {
  min-height: 126px;
  padding: 29px 32px;
  border-left: 1px solid var(--line-soft);
}

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

.signal-label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.signal-value {
  display: block;
  margin-top: 12px;
  color: var(--text);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.45;
}

.content-section {
  padding: 104px 0;
}

.content-section--band {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: rgba(9, 9, 11, 0.64);
  backdrop-filter: blur(16px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: 72px;
  align-items: start;
  margin-bottom: 54px;
}

.section-heading h2 {
  max-width: 640px;
  margin: 0;
  color: var(--text);
  font-size: 42px;
  font-weight: 300;
  line-height: 1.16;
}

.section-copy {
  max-width: 680px;
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.section-heading > .section-copy {
  color: var(--on-image-copy);
  font-weight: 400;
  text-shadow: var(--on-image-shadow);
}

.section-heading > .section-copy,
.workflow-list,
.guardrail-grid,
.faq-list {
  position: relative;
  isolation: isolate;
}

.section-heading > .section-copy::before,
.workflow-list::before,
.guardrail-grid::before,
.faq-list::before {
  position: absolute;
  inset: -28px -44px;
  z-index: -1;
  background: rgba(9, 9, 11, 0.48);
  content: "";
  filter: blur(18px);
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse at center, black 28%, transparent 78%);
  mask-image: radial-gradient(ellipse at center, black 28%, transparent 78%);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--line);
}

.service-card {
  min-width: 0;
  min-height: 306px;
  background: rgba(9, 9, 11, 0.89);
  padding: 30px;
}

.service-card--compact {
  min-height: 250px;
}

.icon-box {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid #3f3f46;
  border-radius: 6px;
  background: #18181b;
  color: var(--blue);
}

.icon-box--emerald { color: var(--emerald); }
.icon-box--purple { color: var(--purple); }

.service-card h3 {
  margin: 28px 0 0;
  color: var(--text);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.4;
}

.service-card p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.service-card .text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 24px;
  color: var(--muted-strong);
  font-size: 13px;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 88px;
  align-items: start;
}

.split-layout h2 {
  margin: 0;
  color: var(--text);
  font-size: 42px;
  font-weight: 300;
  line-height: 1.18;
}

.workflow-list {
  border-top: 1px solid var(--line);
}

.workflow-row {
  display: grid;
  grid-template-columns: 52px minmax(170px, 0.72fr) minmax(0, 1.28fr);
  gap: 20px;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
}

.workflow-row span {
  color: var(--emerald);
  font-size: 12px;
  font-weight: 500;
}

.workflow-row h3 {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.workflow-row p {
  margin: 0;
  color: var(--on-image-copy);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  text-shadow: var(--on-image-shadow);
}

.guardrail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.guardrail {
  padding: 27px 30px 27px 0;
  border-bottom: 1px solid var(--line);
}

.guardrail:nth-child(even) {
  padding-right: 0;
  padding-left: 30px;
  border-left: 1px solid var(--line);
}

.guardrail h3 {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  font-weight: 400;
}

.guardrail p {
  margin: 10px 0 0;
  color: var(--on-image-copy);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  text-shadow: var(--on-image-shadow);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.64fr) minmax(0, 1.36fr);
  gap: 88px;
}

.faq-layout h2 {
  margin: 0;
  color: var(--text);
  font-size: 42px;
  font-weight: 300;
  line-height: 1.18;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 25px 40px 25px 0;
  color: var(--text);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  cursor: pointer;
  list-style: none;
  text-shadow: var(--on-image-shadow);
}

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

.faq-list summary::after {
  position: absolute;
  top: 25px;
  right: 4px;
  content: "+";
  color: var(--muted-strong);
  font-size: 20px;
  font-weight: 300;
}

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

.faq-list details p {
  max-width: 720px;
  margin: -4px 0 24px;
  color: var(--on-image-copy);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  text-shadow: var(--on-image-shadow);
}

.cta-band {
  border-top: 1px solid var(--line-soft);
  background: rgba(9, 9, 11, 0.88);
  padding: 80px 0;
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: center;
}

.cta-inner h2 {
  max-width: 760px;
  margin: 0;
  color: var(--text);
  font-size: 38px;
  font-weight: 300;
  line-height: 1.22;
}

.cta-inner p {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

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

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 0.7fr);
  gap: 52px;
  padding: 64px 0 52px;
}

.footer-brand img {
  width: auto;
  height: 27px;
}

.footer-copy {
  max-width: 330px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.footer-title {
  margin: 0;
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 400;
}

.footer-links {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 13px;
  list-style: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 23px 0;
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 12px;
}

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

.status::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--emerald);
  content: "";
}

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

  .intro-grid,
  .section-heading,
  .split-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .page-intro h1 {
    font-size: 48px;
  }

  .fit-panel {
    max-width: 680px;
  }

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

  .footer-main {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .section-heading > .section-copy::before,
  .workflow-list::before,
  .guardrail-grid::before,
  .faq-list::before {
    inset: -24px 0;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 32px, 1248px);
  }

  .brand img {
    height: 22px;
  }

  .button--header {
    min-height: 34px;
    padding: 0 12px;
    font-size: 12px;
  }

  .page-intro {
    padding: 76px 0 54px;
  }

  .page-intro h1 {
    font-size: 40px;
    line-height: 1.1;
  }

  .lead {
    font-size: 16px;
    line-height: 1.7;
  }

  .actions {
    display: grid;
  }

  .signal-grid,
  .card-grid,
  .guardrail-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .signal-item {
    min-height: auto;
    padding: 24px 0;
    border-top: 1px solid var(--line-soft);
    border-left: 0;
  }

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

  .content-section {
    padding: 78px 0;
  }

  .section-heading,
  .split-layout,
  .faq-layout {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .split-layout h2,
  .faq-layout h2 {
    font-size: 34px;
  }

  .service-card {
    min-height: auto;
    padding: 26px;
  }

  .workflow-row {
    grid-template-columns: 42px 1fr;
  }

  .workflow-row p {
    grid-column: 2;
  }

  .guardrail,
  .guardrail:nth-child(even) {
    padding: 24px 0;
    border-left: 0;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .cta-inner h2 {
    font-size: 32px;
  }

  .footer-main {
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
