* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg-canvas);
  color: var(--fg-default);
  font-family: var(--font-sans);
  font-size: var(--text-md);
  line-height: var(--leading-relaxed);
  overflow-wrap: anywhere;
  word-break: normal;
}

body.offer-dialog-open,
body.mobile-menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
textarea {
  font: inherit;
  color: inherit;
}

p {
  margin: 0;
  color: var(--text-secondary);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--bg-inverse);
  color: var(--fg-onInverse);
  box-shadow: var(--shadow-2);
  transition: top var(--dur-fast) var(--ease-standard);
}

.skip-link:focus,
.skip-link:focus-visible {
  top: 1rem;
  outline: none;
  box-shadow: var(--focus-ring);
}

.site-shell {
  width: min(var(--container), calc(100% - (var(--page-padding) * 2)));
  margin: 0 auto;
}

.page-main {
  padding-bottom: var(--section-gap);
  overflow-x: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--jd-color-header-backdrop);
  backdrop-filter: blur(18px);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--jd-space-24);
  min-height: var(--header-height);
  padding: 0;
  border-bottom: var(--jd-section-divider-width) solid var(--jd-section-divider-color);
}

.brand {
  display: inline-flex;
  align-items: center;
  font-family: var(--headline);
  font-size: var(--jd-type-size-title-sm);
  font-weight: 500;
  letter-spacing: var(--jd-type-letter-tight-xs);
  line-height: var(--jd-type-line-title-sm);
}

.site-header .brand img {
  display: block;
  width: auto;
  height: var(--jd-brand-mark-height);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--jd-space-24);
  flex: 1;
}

.site-nav a,
.nav-cta,
.mobile-nav-toggle {
  font-family: var(--font-sans);
  font-size: var(--jd-type-size-body);
  font-weight: 400;
  line-height: var(--jd-type-line-body);
  color: var(--fg-muted);
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  padding: 0 0 var(--jd-space-4);
  border-bottom: var(--jd-border-hairline-width) solid transparent;
  transition:
    color var(--dur-fast) var(--ease-standard),
    border-color var(--dur-fast) var(--ease-standard);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.mobile-nav-toggle:hover,
.mobile-nav-toggle:focus-visible,
.mobile-nav-link:hover,
.mobile-nav-link:focus-visible {
  color: var(--text-primary);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  border-bottom-color: var(--jd-color-border-strong);
}

.nav-cta,
.cta-link,
.button-link {
  display: inline-flex;
  align-items: center;
  gap: var(--jd-cta-gap);
  width: fit-content;
  padding: 0 0 var(--jd-cta-padding-bottom);
  border-bottom: var(--jd-cta-border-width) solid var(--jd-cta-border-color);
  font-family: var(--font-sans);
  font-size: var(--jd-type-size-body);
  font-weight: 500;
  line-height: var(--jd-type-line-body);
  color: var(--jd-cta-color);
  transition:
    opacity var(--dur-fast) var(--ease-standard),
    border-color var(--dur-fast) var(--ease-standard),
    color var(--dur-fast) var(--ease-standard);
}

.nav-cta:hover,
.nav-cta:focus-visible,
.cta-link:hover,
.cta-link:focus-visible,
.button-link:hover,
.button-link:focus-visible {
  color: var(--jd-cta-color-hover);
  border-color: var(--jd-cta-border-color-hover);
}

.button-link {
  appearance: none;
  background: transparent;
  border: none;
  border-bottom: var(--jd-cta-border-width) solid var(--jd-cta-border-color);
  border-radius: 0;
  cursor: pointer;
}

.mobile-nav-toggle {
  display: none;
  padding: 0;
  border: none;
  background: transparent;
}

.mobile-nav-panel {
  display: none;
}

.section {
  padding: calc(var(--section-gap) - var(--jd-space-24)) 0 var(--section-gap);
}

.page-main > .section:not(.hero) {
  border-top: var(--jd-section-divider-width) solid var(--jd-section-divider-color);
}

.section-shell {
  padding-top: var(--jd-space-24);
  border-top: none;
}

.page-main > .section:not(.hero) .section-shell {
  width: min(var(--container), calc(100% - (var(--page-padding) * 2)));
  max-width: var(--container);
  margin-inline: auto;
}

.page-main > .section.section--width-measure:not(.hero) .section-shell {
  width: min(var(--section-measure), calc(100% - (var(--page-padding) * 2)));
  max-width: var(--section-measure);
}

.page-main > .section.section--width-full:not(.hero) .section-shell {
  width: calc(100% - (var(--page-padding) * 2));
  max-width: none;
}

.page-main > .section.section--surface-highlight:not(.hero) {
  position: relative;
  overflow: hidden;
  background: var(--jd-section-surface-highlight);
  border-top-color: var(--jd-section-surface-highlight-border-top);
  border-bottom: var(--jd-section-divider-width) solid var(--jd-section-surface-highlight-border-bottom);
}

.page-main > .section.section--surface-highlight:not(.hero)::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: var(--jd-section-surface-highlight-overlay);
  opacity: 0.38;
}

.page-main > .section.section--surface-highlight:not(.hero) .section-shell {
  position: relative;
  z-index: 2;
}

.hero {
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100dvh - var(--header-height));
  padding-top: var(--hero-top-space);
}

.hero .section-shell {
  border-top: none;
  padding-top: 0;
  width: min(var(--container), calc(100% - (var(--page-padding) * 2)));
  max-width: var(--container);
  min-height: calc(100vh - var(--header-height) - var(--hero-top-space));
  min-height: calc(100dvh - var(--header-height) - var(--hero-top-space));
}

.hero-shell {
  display: grid;
  grid-template-columns: var(--jd-home-hero-shell-columns);
  min-height: 100%;
  align-items: center;
  gap: var(--jd-home-hero-shell-gap);
}

.subpage-hero-shell {
  min-height: 100%;
}

.subpage-hero-shell--content-only {
  grid-template-columns: minmax(0, 1fr);
}

.subpage-hero-column {
  display: grid;
  gap: var(--jd-space-24);
  align-content: center;
}

.subpage-hero-copy {
  max-width: var(--jd-home-hero-copy-max);
}

.subpage-hero-shell > .section-actions,
.subpage-hero-column > .section-actions {
  margin-top: 0;
}

.subpage-hero-visual {
  display: grid;
  align-items: center;
}

.subpage-hero-media {
  width: min(100%, var(--jd-home-hero-visual-width));
  margin-left: auto;
}

.subpage-hero-media .svg-media__frame {
  padding: clamp(18px, 2.4vw, 28px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-default);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    var(--bg-surface);
  box-shadow: var(--shadow-2);
}

.subpage-hero-visual-placeholder::after {
  content: "";
  display: block;
  width: min(100%, var(--jd-home-hero-visual-width));
  min-height: var(--jd-home-hero-visual-height);
  margin-left: auto;
  visibility: hidden;
}

.hero-copy {
  display: grid;
  gap: var(--jd-space-24);
  max-width: var(--jd-home-hero-copy-max);
}

.hero-copy > .cta-link {
  width: fit-content;
  color: var(--jd-cta-color);
  border-color: var(--jd-cta-border-color);
}

.hero-copy > .cta-link:hover,
.hero-copy > .cta-link:focus-visible {
  color: var(--jd-cta-color-hover);
  border-color: var(--jd-cta-border-color-hover);
}

.hero-copy h1 {
  margin: 0;
  font-family: var(--headline);
  font-size: var(--jd-type-size-title-xl);
  font-weight: 500;
  line-height: var(--leading-tight);
  letter-spacing: var(--jd-type-letter-tight-xl);
  max-width: none;
  text-wrap: balance;
}

.hero-copy h1 strong {
  color: var(--orange-500);
  font-weight: inherit;
}

body[data-jadey-template="homepage"] #proof-of-value .section-intro-body strong,
body[data-jadey-template="homepage"] #proof-of-value .section-rich-text strong {
  color: var(--text-primary);
  font-weight: inherit;
}

.hero-lead {
  width: 100%;
  max-width: none;
  font-size: var(--section-text-size);
  line-height: 1.5;
  text-align: justify;
  text-justify: inter-word;
}

.hero-logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--jd-space-24);
  max-width: 768px;
  padding-top: var(--jd-home-logos-padding-top);
}

.hero-logo-item {
  min-height: 32px;
  display: flex;
  align-items: center;
  opacity: 0.7;
}

.hero-logo-item img {
  width: auto;
  max-height: 28px;
  filter: brightness(0) invert(1);
}

.section-intro,
.lede-block,
.section-headline-block,
.faq-head,
.offer-intake-copy {
  display: grid;
  gap: var(--section-gap-tight);
  width: 100%;
  max-width: none;
  margin: 0;
  justify-items: stretch;
}

.section-intro-title,
.lede-block h2,
.section-headline-block h2,
.faq-head h2,
.offer-intake-copy h2 {
  margin: 0;
  font-family: var(--headline);
  font-size: var(--section-title-size);
  font-weight: 500;
  line-height: var(--leading-snug);
  letter-spacing: var(--tracking-tight);
  max-width: 100%;
  text-wrap: balance;
}

.section-intro-body,
.lede-block p:not(.eyebrow),
.section-headline-block p:not(.eyebrow),
.faq-head > p:not(.eyebrow) {
  width: 100%;
  max-width: none;
  font-size: var(--section-text-size);
  line-height: 1.5;
  text-align: justify;
  text-justify: inter-word;
}

.section-support {
  display: grid;
  gap: var(--jd-space-16);
  margin-top: var(--jd-space-8);
}

.section-support-item {
  display: grid;
  gap: var(--jd-space-12);
  padding: clamp(18px, 2vw, 24px);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    var(--bg-surface);
  box-shadow: var(--shadow-2);
}

.section-support-label {
  font-size: var(--jd-type-size-meta);
  line-height: var(--jd-type-line-meta);
  letter-spacing: var(--jd-type-letter-wide-sm);
  color: var(--jd-color-text-label);
  text-transform: uppercase;
}

.section-support-copy {
  color: var(--text-secondary);
  font-size: var(--section-text-size);
  line-height: 1.5;
  text-align: justify;
  text-justify: inter-word;
}

.section-support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--jd-space-16);
}

.section-intro-head {
  display: flex;
  gap: clamp(18px, 2.4vw, 28px);
  align-items: flex-start;
}

.section-intro--with-picto .section-intro-head {
  width: 100%;
}

.section-intro--with-picto .section-intro-title-stack {
  order: 1;
}

.section-intro-picto {
  display: flex;
  flex: 0 0 clamp(72px, 8vw, 104px);
  align-items: flex-start;
  justify-content: flex-start;
}

.section-intro-picto-figure {
  display: flex;
  width: 100%;
  height: 100%;
  margin: 0;
}

.section-intro--with-picto .section-intro-picto {
  order: 2;
  margin-left: auto;
  align-self: stretch;
  height: 100%;
  align-items: flex-end;
  justify-content: flex-end;
}

.section-intro-picto-asset {
  display: block;
  width: 100%;
  max-width: 104px;
  height: auto;
}

.section-intro-title-stack {
  display: grid;
  flex: 1 1 auto;
  gap: var(--section-gap-tight);
  min-width: 0;
}

.section-intro-title-stack .eyebrow,
.section-intro-title-stack .section-intro-title {
  width: 100%;
}

.section-intro-title-stack .section-intro-title {
  max-width: 100%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0;
  font-family: var(--font-mono);
  font-size: var(--jd-type-size-meta);
  line-height: var(--jd-type-line-meta);
  letter-spacing: var(--jd-type-letter-wide-lg);
  color: var(--jd-color-text-label);
  text-transform: uppercase;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--jd-space-24);
  justify-content: flex-start;
  width: 100%;
  margin-top: var(--jd-space-16);
}

.md-section--text-split > .section-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.md-section--text-split-right > .section-shell {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.md-section--text-split .md-section-text-split__intro {
  display: grid;
  gap: var(--section-gap-tight);
  height: 100%;
  align-content: center;
}

.md-section--text-split-right .md-section-text-split__intro {
  justify-items: end;
  text-align: right;
}

.md-section--text-split .md-section-text-split__title {
  max-width: 14ch;
}

.md-section--text-split .md-section-text-split__body {
  display: grid;
  gap: var(--jd-space-20);
  align-content: start;
}

.md-section--text-split .md-section-text-split__lead {
  margin: 0;
  width: 100%;
  max-width: none;
  color: var(--text-primary);
  font-size: var(--section-text-size);
  line-height: var(--leading-relaxed);
  text-align: justify;
  text-justify: inter-word;
}

.md-section--text-split .md-section-text-split__detail {
  margin: 0;
  width: 100%;
  max-width: none;
  color: var(--text-secondary);
  font-size: var(--section-text-size);
  line-height: var(--leading-relaxed);
  text-align: justify;
  text-justify: inter-word;
}

.md-section--text-split .section-actions {
  display: flex;
  justify-content: flex-start;
  margin-top: var(--jd-space-8);
}

.md-section--live-deployments > .section-shell {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.md-section-live-deployments__media {
  display: grid;
  align-self: stretch;
}

.md-section-live-deployments__frame {
  position: relative;
  width: 100%;
  min-height: clamp(320px, 38vw, 560px);
  overflow: hidden;
  background: var(--bg-canvas);
}

.md-section-live-deployments__canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: var(--bg-canvas);
  transform: scaleX(-1);
  transform-origin: center;
}

.md-section-live-deployments__content {
  display: grid;
  gap: var(--jd-space-20);
  align-content: start;
}

.md-section-live-deployments__content .section-intro-title {
  max-width: 14ch;
}

.md-section-live-deployments__lead {
  margin: 0;
  width: 100%;
  max-width: none;
  color: var(--text-primary);
  font-size: var(--section-text-size);
  line-height: var(--leading-relaxed);
  text-align: justify;
  text-justify: inter-word;
}

.md-section-live-deployments__detail {
  margin: 0;
  width: 100%;
  max-width: none;
  color: var(--text-secondary);
  font-size: var(--section-text-size);
  line-height: var(--leading-relaxed);
  text-align: justify;
  text-justify: inter-word;
}

.md-section-live-deployments__content .section-actions {
  margin-top: var(--jd-space-8);
}

.md-section--visual-split > .section-shell {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 5vw, 72px);
  align-items: stretch;
}

.md-section--visual-split .md-section-visual-split__content {
  display: grid;
  gap: var(--jd-space-20);
  align-content: start;
}

.md-section--visual-split .section-intro-title-stack {
  display: grid;
  gap: var(--section-gap-tight);
}

.md-section--visual-split .md-section-visual-split__visual {
  display: grid;
  align-self: stretch;
  align-items: center;
  justify-items: center;
  min-height: clamp(320px, 38vw, 560px);
}

.md-section--visual-split .md-section-visual-split__dot-grid {
  display: grid;
  grid-template-columns: repeat(5, max-content);
  grid-template-rows: repeat(5, max-content);
  width: 100%;
  height: auto;
  max-height: 100%;
  aspect-ratio: 1 / 1;
  justify-content: space-between;
  align-content: space-between;
}

body[data-jadey-template="homepage"] #proof-of-value .md-section-visual-split__visual {
  justify-items: start;
}

body[data-jadey-template="homepage"] #proof-of-value .md-section-visual-split__dot-grid {
  padding: 0;
}

body[data-jadey-template="homepage"] #proof-of-value > .section-shell {
  grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
  gap: 160px;
}

body[data-jadey-template="homepage"] #proof-of-value .section-actions .button-link {
  padding: 12px 16px;
  border: 1px solid var(--text-primary);
  border-radius: 0;
  gap: 6px;
}

body[data-jadey-template="homepage"] #proof-of-value .section-actions .button-link::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  background-color: currentColor;
  -webkit-mask: url("/_assets/img/proof-of-value-arrow.svg") center / contain no-repeat;
  mask: url("/_assets/img/proof-of-value-arrow.svg") center / contain no-repeat;
}

body[data-jadey-template="homepage"] #proof-of-value .section-actions .button-link:hover,
body[data-jadey-template="homepage"] #proof-of-value .section-actions .button-link:focus-visible {
  border-color: var(--orange-500);
}

.md-section--visual-split .md-section-visual-split__dot {
  width: clamp(10.4px, 1.3vw, 15.6px);
  height: clamp(10.4px, 1.3vw, 15.6px);
  border-radius: 999px;
  background: var(--text-primary);
  justify-self: center;
}

.md-section--visual-split .md-section-visual-split__dot--accent {
  background: var(--orange-500);
}

.md-section--visual-split .section-actions {
  margin-top: var(--jd-space-8);
}

body[data-jadey-template="homepage"] #proof-of-value {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: center;
}

body[data-jadey-template="homepage"] #proof-of-value > .section-shell {
  align-items: center;
}

.md-section--picto-split > .section-shell {
  display: grid;
  grid-template-columns: minmax(0, 30%) minmax(0, 70%);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.md-section--picto-split-right > .section-shell {
  grid-template-columns: minmax(0, 70%) minmax(0, 30%);
}

.md-section--picto-split .md-section-split__media {
  display: flex;
  align-self: stretch;
  align-items: stretch;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
}

.md-section--picto-split .md-section-split__content {
  display: grid;
  gap: var(--jd-space-20);
  align-content: start;
}

.md-section--picto-split .section-intro-title-stack {
  display: grid;
  gap: var(--section-gap-tight);
}

.md-section--picto-split .section-actions {
  margin-top: var(--jd-space-8);
}

.md-section--picto-split .section-intro-picto {
  order: initial;
  margin-left: 0;
  flex-basis: auto;
  align-self: stretch;
  align-items: stretch;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
}

.md-section--picto-split .section-intro-picto-figure,
.md-section--picto-split .section-intro-picto-asset {
  width: 100%;
  max-width: 100%;
  height: 100%;
}

.md-section--picto-split .section-intro-picto-asset {
  display: block;
  object-fit: contain;
}

.md-section--picto-split-right .md-section-split__media,
.md-section--picto-split-right .section-intro-picto {
  justify-content: flex-end;
}

.svg-flow-section,
.svg-sidecar-section {
  display: grid;
  gap: var(--jd-space-32);
}

.page-main > .section:not(.hero) .svg-sidecar-section {
  position: relative;
  width: min(var(--container), calc(100% - (var(--page-padding) * 2)));
  max-width: var(--container);
  margin-inline: auto;
  border-top: none;
  padding-top: var(--jd-space-24);
}

.page-main > .section:not(.hero) .svg-sidecar-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(var(--section-measure), calc(100% - (var(--page-padding) * 2)));
  border-top: var(--jd-section-divider-width) solid var(--jd-section-divider-color);
  transform: translateX(-50%);
}

.svg-sidecar-section__visual {
  width: 100%;
}

.svg-flow-section__visual {
  display: grid;
  justify-items: center;
  width: min(var(--section-measure), calc(100% - (var(--page-padding) * 2)));
  max-width: var(--section-measure);
  margin-top: var(--jd-space-32);
  margin-inline: auto;
}

.svg-flow-section__media {
  width: 100%;
  max-width: var(--section-measure);
}

.svg-sidecar-section__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.svg-sidecar-section__copy {
  max-width: min(100%, 680px);
}

.svg-media {
  display: grid;
  gap: var(--jd-space-16);
  margin: 0;
}

.svg-media__frame {
  width: 100%;
  padding: clamp(16px, 2vw, 24px);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    var(--bg-surface);
  box-shadow: var(--shadow-2);
}

.svg-media__frame picture,
.svg-media__frame img {
  display: block;
  width: 100%;
}

.svg-media__asset {
  width: 100%;
  height: auto;
}

.svg-media__caption {
  margin: 0;
  font-size: var(--jd-type-size-meta);
  line-height: var(--jd-type-line-meta);
  letter-spacing: var(--jd-type-letter-wide-sm);
  color: var(--text-tertiary);
}

.section--kind-faq .faq-shell {
  display: grid;
  gap: var(--jd-space-32);
}

.section--kind-faq .faq-list {
  width: 100%;
  border-top: var(--jd-section-divider-width) solid var(--jd-section-divider-color);
}

.section--kind-faq .faq-item {
  border-bottom: var(--jd-section-divider-width) solid var(--jd-section-divider-color);
}

.section--kind-faq .faq-item summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--jd-faq-item-gap);
  padding: var(--jd-faq-item-padding-y) 0;
  cursor: pointer;
  list-style: none;
}

.section--kind-faq .faq-item summary::-webkit-details-marker {
  display: none;
}

.section--kind-faq .faq-item summary::after {
  content: "+";
  color: var(--text-tertiary);
  font-size: var(--jd-type-size-title-sm);
  line-height: 1;
}

.section--kind-faq .faq-item[open] summary::after {
  content: "−";
  color: var(--text-primary);
}

.section--kind-faq .faq-item h3 {
  margin: 0;
  font-family: var(--headline);
  font-size: var(--jd-type-size-title-sm);
  font-weight: 400;
  line-height: var(--jd-type-line-title-sm);
  letter-spacing: var(--jd-type-letter-tight-xs);
  text-wrap: balance;
}

.section--kind-faq .faq-answer {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 0 var(--jd-space-24);
  font-size: var(--section-text-size);
  line-height: var(--jd-type-line-body);
  color: var(--text-secondary);
  text-align: justify;
  text-justify: inter-word;
}

.section--kind-faq.section--surface-highlight .faq-list {
  border-top-color: var(--jd-section-surface-highlight-rule);
}

.section--kind-faq.section--surface-highlight .faq-item {
  border-bottom-color: var(--jd-section-surface-highlight-rule);
}

.section--kind-faq.section--surface-highlight .faq-head > p:not(.eyebrow),
.section--kind-faq.section--surface-highlight .faq-answer {
  color: var(--jd-section-surface-highlight-text);
}

.site-footer {
  padding: var(--jd-footer-padding-top) 0 var(--jd-footer-padding-bottom);
  background: var(--jd-color-canvas);
  color: var(--jd-color-text-primary);
}

.site-footer-inner {
  display: grid;
  gap: var(--jd-space-28);
}

.site-footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--jd-footer-gap);
  align-items: start;
  padding-top: var(--jd-space-28);
  border-top: var(--jd-section-divider-width) solid var(--jd-section-divider-color);
}

.site-footer-brand-name {
  margin: 0;
}

.site-footer-brand {
  display: inline-flex;
  align-items: flex-start;
}

.site-footer-brand img {
  display: block;
  width: min(100%, var(--jd-footer-logo-width));
  height: auto;
}

.site-footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(var(--jd-size-160), var(--jd-size-180)));
  gap: var(--jd-space-32);
  align-items: start;
  justify-content: end;
}

.site-footer-group {
  display: grid;
  align-content: start;
  gap: var(--jd-space-14);
}

.site-footer-label {
  display: inline-flex;
  align-items: center;
  gap: var(--jd-space-12);
  margin: 0;
  font-family: var(--body);
  font-size: var(--jd-type-size-meta);
  line-height: 1.2;
  letter-spacing: var(--jd-type-letter-wide-md);
  color: var(--jd-color-text-label);
}

.site-footer-label::before {
  content: "";
  width: var(--jd-rule-accent-width);
  height: var(--jd-rule-accent-height);
  background: var(--jd-color-accent);
}

.site-footer-links {
  display: grid;
  gap: var(--jd-space-12);
}

.site-footer-links a {
  width: fit-content;
  padding-bottom: var(--jd-space-4);
  border-bottom: var(--jd-border-hairline-width) solid transparent;
  font-family: var(--body);
  font-size: var(--jd-type-size-body);
  line-height: var(--jd-type-line-body);
  letter-spacing: normal;
  color: var(--jd-color-text-secondary);
}

.site-footer-links a:hover,
.site-footer-links a:focus-visible {
  color: var(--jd-color-text-primary);
  border-bottom-color: var(--jd-color-text-label);
}

.site-footer-bottom {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: var(--jd-space-24);
  border-top: var(--jd-section-divider-width) solid var(--jd-section-divider-color);
}

.site-footer-meta {
  color: var(--jd-color-text-quaternary);
  font-size: var(--jd-type-size-meta);
  letter-spacing: var(--jd-type-letter-wide-sm);
  line-height: var(--jd-type-line-meta);
}

@media (max-width: 980px) {
  .hero-shell {
    grid-template-columns: var(--jd-home-hero-shell-columns-narrow);
    gap: var(--jd-home-hero-shell-gap-narrow);
  }

  .subpage-hero-media {
    width: min(100%, 440px);
    margin-left: 0;
  }

  .site-nav,
  .site-header > .site-shell > .nav-cta {
    display: none;
  }

  .mobile-nav-toggle {
    display: inline-flex;
  }

  .mobile-nav-panel {
    position: absolute;
    inset: 100% 0 auto;
    display: block;
    background: var(--bg-surface);
    border-bottom: var(--jd-section-divider-width) solid var(--jd-section-divider-color);
    box-shadow: var(--shadow-3);
  }

  .mobile-nav-panel[hidden] {
    display: none;
  }

  .mobile-nav-panel-inner {
    width: min(var(--container), calc(100% - (var(--page-padding) * 2)));
    margin: 0 auto;
    padding: var(--jd-space-24) 0 var(--jd-space-32);
    border-bottom: var(--jd-section-divider-width) solid var(--jd-section-divider-color);
  }

  .mobile-nav-list {
    display: grid;
    gap: var(--jd-space-16);
  }

  .mobile-nav-footer {
    margin-top: var(--jd-space-24);
  }

  .mobile-nav-link {
    width: fit-content;
    font-family: var(--headline);
    font-size: var(--jd-type-size-title-md);
    font-weight: 400;
    line-height: var(--jd-type-line-title-md);
    letter-spacing: var(--jd-type-letter-tight-md);
  }

  .hero {
    min-height: auto;
  }

  .hero .section-shell {
    padding-top: 0;
  }

  .site-footer-top {
    grid-template-columns: 1fr;
  }

  .md-section--picto-split > .section-shell {
    grid-template-columns: 1fr;
  }

  .md-section--picto-split .md-section-split__media,
  .md-section--picto-split .section-intro-picto {
    justify-content: flex-start;
    max-width: min(100%, 240px);
  }

  .md-section--visual-split > .section-shell {
    grid-template-columns: 1fr;
  }

  body[data-jadey-template="homepage"] #proof-of-value {
    min-height: auto;
  }

  .md-section--visual-split .md-section-visual-split__visual {
    min-height: 280px;
  }

  .md-section--text-split > .section-shell {
    grid-template-columns: 1fr;
  }

  .md-section--live-deployments > .section-shell {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .md-section-live-deployments__frame {
    min-height: 360px;
  }

  .svg-sidecar-section__layout {
    grid-template-columns: 1fr;
  }

  .site-footer-nav-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    justify-content: start;
  }

  .site-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .md-section-live-deployments__frame {
    min-height: 320px;
  }

  .hero {
    padding-top: var(--jd-space-24);
  }

  .hero-shell {
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: var(--jd-home-hero-shell-gap-tablet);
  }

  .hero-logos {
    grid-template-columns: repeat(3, minmax(0, max-content));
    justify-content: flex-start;
    gap: var(--jd-space-16);
  }

  .subpage-hero-media {
    width: 100%;
  }

  .section-intro-picto {
    flex-basis: 88px;
  }

  .subpage-hero-visual-placeholder {
    display: none;
  }

  .hero-copy h1 {
    font-size: var(--jd-type-size-title-xl-tablet);
    line-height: var(--jd-type-line-title-md);
    letter-spacing: var(--jd-type-letter-tight-md);
  }

  .section-intro-title,
  .lede-block h2,
  .section-headline-block h2,
  .faq-head h2,
  .offer-intake-copy h2 {
    font-size: var(--jd-type-size-title-lg-tablet);
    line-height: var(--jd-type-line-title-md);
    letter-spacing: var(--jd-type-letter-tight-md);
  }

  .hero-lead,
  .section-intro-body,
  .lede-block p:not(.eyebrow),
  .section-headline-block p:not(.eyebrow),
  .faq-head > p:not(.eyebrow),
  .faq-answer {
    font-size: var(--section-text-size);
    line-height: var(--jd-type-line-body);
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
  }

  .faq-item summary {
    gap: var(--jd-space-16);
    padding: var(--jd-space-24) 0;
  }

  .faq-item summary::after {
    font-size: var(--jd-type-size-title-sm);
  }

  .faq-item h3 {
    font-size: var(--jd-type-size-title-sm);
    line-height: var(--jd-type-line-title-sm);
  }

  .site-footer-nav-grid {
    grid-template-columns: 1fr;
    gap: var(--jd-space-24);
  }
}

@media (max-width: 640px) {
  .hero-shell {
    gap: var(--jd-home-hero-shell-gap-mobile);
  }

  .hero-copy h1 {
    font-size: var(--jd-type-size-title-xl-mobile);
    line-height: var(--jd-type-line-title-md);
    letter-spacing: var(--jd-type-letter-tight-md);
  }

  .section-intro-title,
  .lede-block h2,
  .section-headline-block h2,
  .faq-head h2,
  .offer-intake-copy h2 {
    font-size: var(--jd-type-size-title-lg-mobile);
    line-height: var(--jd-type-line-title-sm);
    letter-spacing: var(--jd-type-letter-tight-sm);
  }

  .site-footer-brand img {
    width: min(100%, var(--jd-footer-logo-width-mobile));
  }

  .section-intro-head {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--jd-space-16);
  }

  .section-intro-picto {
    width: min(96px, 100%);
    flex-basis: auto;
  }

  .section-intro--with-picto .section-intro-title-stack,
  .section-intro--with-picto .section-intro-picto {
    order: initial;
  }

  .section-intro--with-picto .section-intro-picto {
    align-self: auto;
    height: auto;
    margin-left: 0;
    align-items: flex-start;
    justify-content: flex-start;
  }
}

.section-rich-text {
  display: grid;
  gap: var(--jd-space-18);
  width: 100%;
}

.section-rich-text p,
.section-rich-text li,
.section-rich-text blockquote,
.section-rich-text dd {
  color: var(--text-secondary);
  font-size: var(--section-text-size);
  line-height: 1.5;
  text-align: justify;
  text-justify: inter-word;
}

.section-rich-text ul,
.section-rich-text ol {
  display: grid;
  gap: var(--jd-space-12);
  margin: 0;
  padding-left: 1.5rem;
}

.section-rich-text blockquote {
  margin: 0;
  padding-left: var(--jd-space-18);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.section-rich-text h3,
.section-rich-text h4 {
  margin: 0;
  font-family: var(--headline);
  font-weight: 400;
  letter-spacing: var(--jd-type-letter-tight-xs);
  text-wrap: balance;
}

.section-rich-text h3 {
  font-size: var(--jd-type-size-title-sm);
  line-height: var(--jd-type-line-title-sm);
}

.section-rich-text h4 {
  font-size: var(--jd-type-size-title-xs);
  line-height: 1.3;
}

.section-rich-text pre {
  margin: 0;
  padding: clamp(18px, 2vw, 24px);
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, rgba(8, 21, 52, 0.68), rgba(10, 10, 10, 0.96));
  color: var(--text-primary);
  white-space: pre-wrap;
}

.section-rich-text code {
  font-family: var(--headline);
}

.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--jd-space-12);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text-secondary);
  font-size: var(--jd-type-size-meta);
  line-height: var(--jd-type-line-meta);
  letter-spacing: var(--jd-type-letter-wide-sm);
}

.deployment-grid {
  display: grid;
  gap: var(--jd-space-20);
}

.deployment-card {
  display: grid;
  gap: var(--jd-space-18);
  padding: clamp(22px, 2.4vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    rgba(8, 12, 20, 0.64);
}

.deployment-card:hover,
.deployment-card:focus-visible {
  border-color: rgba(255, 255, 255, 0.22);
}

.deployment-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--jd-space-10);
}

.deployment-card-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--jd-color-text-label);
  font-size: var(--jd-type-size-meta);
  line-height: var(--jd-type-line-meta);
  letter-spacing: var(--jd-type-letter-wide-sm);
}

.deployment-card-body {
  display: grid;
  gap: var(--jd-space-12);
}

.deployment-card-title {
  margin: 0;
  font-family: var(--headline);
  font-size: var(--section-title-size);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.8px;
  text-wrap: balance;
}

.deployment-card-text,
.deployment-card-meta dd,
.deployment-card-cta,
.offer-intake-feedback,
.offer-intake-path-note,
.offer-intake-requirements li,
.offer-intake-step-copy p {
  margin: 0;
  color: var(--text-secondary);
  font-size: var(--section-text-size);
  line-height: 1.5;
  text-align: justify;
  text-justify: inter-word;
}

.deployment-card-meta {
  display: grid;
  gap: var(--jd-space-16);
  margin: 0;
}

.deployment-card-meta > div {
  display: grid;
  gap: var(--jd-space-6);
}

.deployment-card-meta dt {
  color: var(--jd-color-text-label);
  font-size: var(--jd-type-size-meta);
  line-height: var(--jd-type-line-meta);
  letter-spacing: var(--jd-type-letter-wide-sm);
}

.deployment-card-meta dd {
  margin: 0;
}

.deployment-card-cta {
  color: var(--text-primary);
  font-weight: 500;
}

.deployment-card--placeholder {
  min-height: 220px;
  place-items: center;
  background: rgba(255, 255, 255, 0.02);
}

.deployment-card-plus {
  color: var(--jd-color-text-label);
  font-size: clamp(3rem, 10vw, 5rem);
  line-height: 1;
}

#angebot-einreichen {
  width: min(880px, calc(100% - 2rem));
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(6, 8, 14, 0.98);
  color: var(--text-primary);
}

#angebot-einreichen::backdrop {
  background: rgba(0, 0, 0, 0.6);
}

.offer-dialog-shell {
  display: grid;
  gap: var(--jd-space-24);
  padding: clamp(24px, 3vw, 36px);
}

.offer-dialog-close {
  justify-self: flex-end;
}

.offer-intake-steps {
  display: grid;
  gap: var(--jd-space-14);
}

.offer-intake-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--jd-space-16);
  padding: clamp(16px, 1.8vw, 20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.015);
}

.offer-intake-step-index {
  color: var(--jd-color-text-label);
  font-family: var(--headline);
  font-size: var(--jd-type-size-title-sm);
  line-height: 1;
}

.offer-intake-step-copy {
  display: grid;
  gap: var(--jd-space-8);
}

.offer-intake-step-copy strong {
  font-family: var(--headline);
  font-weight: 400;
}

.offer-intake-requirements {
  display: grid;
  gap: var(--jd-space-10);
  margin: 0;
  padding-left: 1.25rem;
}

.offer-intake-form {
  display: grid;
  gap: var(--jd-space-20);
}

.offer-intake-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--jd-space-16);
}

.offer-intake-field {
  display: grid;
  gap: var(--jd-space-8);
}

.offer-intake-field--wide {
  grid-column: 1 / -1;
}

.offer-intake-field span {
  color: var(--jd-color-text-label);
  font-size: var(--jd-type-size-meta);
  line-height: var(--jd-type-line-meta);
  letter-spacing: var(--jd-type-letter-wide-sm);
}

.offer-intake-field input,
.offer-intake-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-sm);
  background: var(--accent-weak);
  color: var(--text-primary);
}

.offer-intake-field textarea {
  resize: vertical;
}

.offer-intake-field input:focus-visible,
.offer-intake-field textarea:focus-visible {
  outline: none;
  border-color: var(--accent);
  box-shadow: var(--focus-ring);
}

.offer-intake-feedback--error {
  color: #ffb4b4;
}

@media (max-width: 760px) {
  .offer-intake-field-grid {
    grid-template-columns: 1fr;
  }

  .offer-intake-step {
    grid-template-columns: 1fr;
  }
}
