@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --oyp-black: #090909;
  --oyp-ink: #151515;
  --oyp-muted: #6f716f;
  --oyp-line: #d9dad7;
  --oyp-surface: #f3f3f0;
  --oyp-white: #ffffff;
  --oyp-shell: 80rem;
  --oyp-side: clamp(1.25rem, 3.2vw, 2.5rem);
  --oyp-section: clamp(4.5rem, 9vw, 8rem);
  --oyp-radius: 0.25rem;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body.oyp-site {
  margin: 0;
  overflow-x: hidden;
  background: var(--oyp-white);
  color: var(--oyp-ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

.oyp-site a {
  color: inherit;
}

.oyp-site img {
  max-width: 100%;
}

.oyp-skip-link {
  position: fixed;
  top: -10rem;
  left: 1rem;
  z-index: 10000;
  padding: 0.8rem 1rem;
  background: var(--oyp-white);
  color: var(--oyp-black);
}

.oyp-skip-link:focus {
  top: 1rem;
}

.oyp-header {
  position: sticky;
  top: 0;
  z-index: 999;
  min-height: 4.5rem;
  border-bottom: 1px solid rgba(10, 10, 10, 0.12);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.oyp-header-inner {
  width: min(100%, var(--oyp-shell));
  min-height: 4.5rem;
  margin: 0 auto;
  padding: 0 var(--oyp-side);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
}

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

.oyp-brand-logo {
  display: block;
  width: 5.9rem;
  height: auto;
}

.oyp-brand-logo-light {
  display: none;
}

.oyp-brand-logo-dark {
  filter: invert(1);
}

.oyp-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.55rem;
  height: 2.1rem;
  padding: 0 0.42rem;
  border: 2px solid currentColor;
  border-radius: 0.2rem;
  color: var(--oyp-black);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 1.42rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
}

.oyp-desktop-nav {
  justify-self: center;
}

.oyp-menu,
.oyp-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.oyp-desktop-nav .oyp-menu {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.7vw, 2.5rem);
}

.oyp-menu a {
  color: rgba(10, 10, 10, 0.66);
  font-size: 0.91rem;
  font-weight: 400;
  text-decoration: none;
  transition: color 160ms ease;
}

.oyp-menu a:hover,
.oyp-menu .current-menu-item > a,
.oyp-menu .current_page_item > a {
  color: var(--oyp-black);
}

.oyp-header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.oyp-site .oyp-header-cta,
.oyp-contact-form button {
  display: inline-flex;
  min-height: 2.65rem;
  padding: 0.7rem 1.25rem;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--oyp-black);
  color: var(--oyp-white);
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease;
}

.oyp-site .oyp-header-cta:hover,
.oyp-contact-form button:hover {
  background: #303030;
  color: var(--oyp-white);
  transform: translateY(-1px);
}

.oyp-mobile-menu {
  display: none;
}

.oyp-main {
  min-height: 50vh;
}

.oyp-main > .elementor {
  overflow: hidden;
}

.oyp-main .elementor-widget-heading .elementor-heading-title,
.oyp-main h1,
.oyp-main h2,
.oyp-main h3 {
  margin: 0;
  color: inherit;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  letter-spacing: -0.025em;
}

.oyp-main .elementor-widget-text-editor,
.oyp-main .elementor-widget-text-editor p {
  color: inherit;
  font-family: "Inter", sans-serif;
}

.oyp-main .elementor-widget-text-editor p:last-child {
  margin-bottom: 0;
}

.oyp-main .elementor-widget-button .elementor-button {
  min-height: 3.15rem;
  padding: 0.95rem 1.4rem;
  border: 1px solid var(--oyp-black);
  border-radius: 999px;
  background: var(--oyp-black);
  color: var(--oyp-white);
  font-family: "Inter", sans-serif;
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1;
}

.oyp-main .elementor-widget-button .elementor-button:hover {
  background: #303030;
  color: var(--oyp-white);
  transform: translateY(-1px);
}

.oyp-section {
  width: 100%;
  padding: var(--oyp-section) var(--oyp-side);
}

.oyp-hero-section {
  padding-top: 0;
  padding-bottom: 0;
}

.oyp-shell {
  width: min(100%, var(--oyp-shell));
  margin-right: auto !important;
  margin-left: auto !important;
}

.oyp-kicker .elementor-heading-title,
.oyp-kicker {
  color: rgba(10, 10, 10, 0.46) !important;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace !important;
  font-size: 0.7rem !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase;
}

.oyp-display .elementor-heading-title {
  max-width: 15ch;
  font-size: clamp(3rem, 6.2vw, 6.25rem) !important;
  line-height: 0.98 !important;
}

.oyp-title .elementor-heading-title {
  max-width: 17ch;
  font-size: clamp(2.35rem, 4.5vw, 4.65rem) !important;
  line-height: 1.02 !important;
}

.oyp-subtitle .elementor-heading-title {
  max-width: 19ch;
  font-size: clamp(1.8rem, 3.2vw, 3.25rem) !important;
  line-height: 1.06 !important;
}

.oyp-lead,
.oyp-lead p {
  max-width: 45ch;
  color: rgba(10, 10, 10, 0.65) !important;
  font-size: clamp(1.02rem, 1.3vw, 1.22rem) !important;
  font-weight: 300;
  line-height: 1.62;
}

.oyp-prose p + p {
  margin-top: 1.15rem;
}

.oyp-copy,
.oyp-copy p,
.oyp-copy li {
  color: rgba(10, 10, 10, 0.68) !important;
  font-size: 0.98rem;
  line-height: 1.62;
}

.oyp-dark {
  background: var(--oyp-black);
  color: var(--oyp-white);
}

.oyp-dark .oyp-kicker .elementor-heading-title,
.oyp-dark .oyp-kicker {
  color: rgba(255, 255, 255, 0.48) !important;
}

.oyp-dark .oyp-lead,
.oyp-dark .oyp-lead p,
.oyp-dark .oyp-copy,
.oyp-dark .oyp-copy p,
.oyp-dark .oyp-copy li {
  color: rgba(255, 255, 255, 0.66) !important;
}

.oyp-dark .elementor-widget-button .elementor-button {
  border-color: var(--oyp-white);
  background: var(--oyp-white);
  color: var(--oyp-black);
}

.oyp-surface {
  background: var(--oyp-surface);
}

.oyp-hero {
  min-height: min(47rem, calc(100svh - 4.5rem));
  padding-top: clamp(5.5rem, 10vw, 9rem);
  padding-bottom: clamp(4.5rem, 8vw, 7rem);
  display: grid !important;
  grid-template-columns: minmax(0, 1.12fr) minmax(18rem, 0.58fr);
  gap: clamp(3rem, 9vw, 8rem);
  align-items: end;
}

.oyp-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  justify-content: flex-end;
}

.oyp-hero-actions {
  margin-top: 0.4rem;
  display: flex !important;
  flex-flow: row wrap;
  gap: 0.7rem;
}

.oyp-button-secondary .elementor-button {
  border-color: rgba(255, 255, 255, 0.4) !important;
  background: transparent !important;
  color: var(--oyp-white) !important;
}

.oyp-stats {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--oyp-line);
  border-bottom: 1px solid var(--oyp-line);
}

.oyp-stat {
  min-width: 0;
  min-height: 10rem;
  padding: 1.6rem clamp(1rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.oyp-stat + .oyp-stat {
  border-left: 1px solid var(--oyp-line);
}

.oyp-stat-value .elementor-heading-title {
  font-family: "Inter", sans-serif;
  font-size: clamp(2rem, 3.2vw, 3.25rem) !important;
  font-weight: 300;
  line-height: 1;
}

.oyp-stat-label,
.oyp-stat-label p {
  color: var(--oyp-muted) !important;
  font-size: 0.86rem !important;
  line-height: 1.35;
}

.oyp-two-col {
  display: grid !important;
  grid-template-columns: minmax(0, 0.78fr) minmax(18rem, 0.72fr);
  gap: clamp(3rem, 9vw, 8rem);
  align-items: start;
}

.oyp-two-col-wide {
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.72fr);
}

.oyp-stack {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  align-items: flex-start;
}

.oyp-card-grid {
  margin-top: clamp(3rem, 6vw, 5rem);
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--oyp-line);
}

.oyp-card {
  min-height: 25rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-bottom: 1px solid var(--oyp-line);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.oyp-card + .oyp-card {
  border-left: 1px solid var(--oyp-line);
}

.oyp-card-number .elementor-heading-title {
  color: rgba(10, 10, 10, 0.42) !important;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 0.68rem !important;
  font-weight: 400;
  letter-spacing: 0.12em;
}

.oyp-card-title {
  margin-top: auto;
}

.oyp-card-title .elementor-heading-title {
  max-width: 13ch;
  font-size: clamp(1.65rem, 2.6vw, 2.5rem) !important;
  line-height: 1.05;
}

.oyp-card-copy {
  margin-top: 1rem;
}

.oyp-product-card-subtitle { margin-top: 1rem; }
.oyp-product-card-subtitle .elementor-heading-title { color: var(--oyp-muted) !important; font-family: ui-monospace, "SFMono-Regular", Consolas, monospace !important; font-size: .68rem !important; font-weight: 400 !important; letter-spacing: .09em; text-transform: uppercase; }

.oyp-card-copy,
.oyp-card-copy p {
  color: rgba(10, 10, 10, 0.62) !important;
  font-size: 0.92rem !important;
  line-height: 1.5;
}

.oyp-card-list { margin-top: 1.25rem; }
.oyp-card-points { margin: 0; padding: 1.1rem 0 0; border-top: 1px solid var(--oyp-line); list-style: none; }
.oyp-card-points li { position: relative; padding-left: 1rem; color: rgba(10, 10, 10, 0.58); font-size: 0.82rem; line-height: 1.45; }
.oyp-card-points li + li { margin-top: 0.55rem; }
.oyp-card-points li::before { content: "—"; position: absolute; left: 0; }

.oyp-card-link {
  margin-top: 1.4rem;
}

.oyp-card-link .elementor-button {
  min-height: auto !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--oyp-black) !important;
  font-size: 0.86rem !important;
}

.oyp-card-link .elementor-button::after {
  content: "\2192";
  margin-left: 0.65rem;
}

.oyp-feature-list {
  margin-top: clamp(3rem, 6vw, 5rem);
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.oyp-feature {
  min-height: 13rem;
  padding: 1.8rem clamp(1rem, 3vw, 2.5rem) 1.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.oyp-feature:nth-child(even) {
  padding-right: 0;
  padding-left: clamp(1rem, 3vw, 2.5rem);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.oyp-feature-title .elementor-heading-title {
  font-size: clamp(1.3rem, 2vw, 1.8rem) !important;
  font-weight: 400;
  line-height: 1.15;
}

.oyp-feature-copy {
  margin-top: 0.8rem;
}

.oyp-feature-copy,
.oyp-feature-copy p {
  color: rgba(255, 255, 255, 0.62) !important;
  font-size: 0.92rem !important;
}

.oyp-service-rows {
  margin-top: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid var(--oyp-line);
}

.oyp-service-principles-section { padding-top: 0; padding-bottom: 0; }
.oyp-service-principles { display: grid !important; grid-template-columns: repeat(3, minmax(0,1fr)); border-top: 1px solid var(--oyp-line); border-bottom: 1px solid var(--oyp-line); }
.oyp-service-principle { min-height: 8rem; padding: 1.3rem; justify-content: space-between; }
.oyp-service-principle + .oyp-service-principle { border-left: 1px solid var(--oyp-line); }

.oyp-service-row {
  padding: clamp(2.2rem, 4vw, 3.5rem) 0;
  border-bottom: 1px solid var(--oyp-line);
  display: grid !important;
  grid-template-columns: 3rem minmax(13rem, 0.65fr) minmax(19rem, 1.35fr);
  gap: clamp(1rem, 4vw, 4rem);
  align-items: start;
}

.oyp-service-points ul,
.oyp-detail-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 2rem;
}

.oyp-service-points li,
.oyp-detail-list li {
  position: relative;
  padding-left: 1rem;
  color: rgba(10, 10, 10, 0.7);
  font-size: 0.9rem;
  line-height: 1.48;
}

.oyp-service-points li::before,
.oyp-detail-list li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 0.55rem;
  height: 1px;
  background: currentColor;
}

.oyp-capability-blocks {
  margin-top: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid var(--oyp-line);
}

.oyp-capability-block {
  display: grid !important;
  grid-template-columns: minmax(15rem, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 8vw, 7rem);
  padding: clamp(3rem, 6vw, 5.5rem) 0;
  border-bottom: 1px solid var(--oyp-line);
  align-items: start;
}

.oyp-capability-summary {
  position: sticky;
  top: 7.5rem;
  gap: 1.25rem;
}

.oyp-capability-summary .oyp-copy {
  max-width: 34rem;
}

.oyp-capability-groups {
  border-top: 1px solid var(--oyp-line);
}

.oyp-capability-group {
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-bottom: 1px solid var(--oyp-line);
}

.oyp-capability-group:last-child {
  border-bottom: 0;
}

.oyp-capability-group .oyp-copy {
  max-width: 46rem;
  margin-top: 0.85rem;
}

.oyp-capability-list {
  margin-top: 1.4rem;
}

.oyp-capability-list ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.oyp-capability-list li {
  position: relative;
  padding-left: 1rem;
  color: rgba(10, 10, 10, 0.7);
  font-size: 0.9rem;
  line-height: 1.48;
}

.oyp-capability-list li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 0.55rem;
  height: 1px;
  background: currentColor;
}

.oyp-process {
  display: grid !important;
  grid-template-columns: minmax(15rem, 0.6fr) minmax(0, 1.4fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: end;
}

.oyp-process-steps {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--oyp-line);
  border-bottom: 1px solid var(--oyp-line);
}

.oyp-product-steps {
  margin-top: clamp(3rem, 6vw, 5rem);
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
}

.oyp-process-step {
  min-height: 13rem;
  padding: 1.2rem 0.8rem 1.2rem 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.oyp-process-step .elementor-heading-title {
  font-size: 1.15rem !important;
  font-weight: 500;
}

.oyp-process-step > :nth-child(2) {
  margin-top: auto;
}

.oyp-process-copy {
  margin-top: 0.65rem;
}

.oyp-process-copy,
.oyp-process-copy p {
  color: rgba(10, 10, 10, 0.58) !important;
  font-size: 0.82rem !important;
  line-height: 1.45 !important;
}

.oyp-detail-grid {
  margin-top: clamp(2.8rem, 5vw, 4.5rem);
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--oyp-line);
  border-left: 1px solid var(--oyp-line);
}

.oyp-detail {
  min-height: 16rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-right: 1px solid var(--oyp-line);
  border-bottom: 1px solid var(--oyp-line);
}

.oyp-detail-title .elementor-heading-title {
  font-size: clamp(1.35rem, 2vw, 1.8rem) !important;
  font-weight: 400;
  line-height: 1.15;
}

.oyp-detail-list {
  margin-top: 1.4rem;
}

.oyp-detail-list ul {
  grid-template-columns: 1fr;
}

.oyp-product-hero {
  min-height: 36rem;
}

.oyp-product-code .elementor-heading-title {
  color: rgba(255, 255, 255, 0.18) !important;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: clamp(5rem, 14vw, 13rem) !important;
  line-height: 0.75 !important;
  letter-spacing: -0.08em;
}

.oyp-spec-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--oyp-line);
  border-left: 1px solid var(--oyp-line);
}

.oyp-spec {
  min-height: 11rem;
  padding: 1.5rem;
  border-right: 1px solid var(--oyp-line);
  border-bottom: 1px solid var(--oyp-line);
}

.oyp-spec-label,
.oyp-spec-label p {
  color: var(--oyp-muted) !important;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace !important;
  font-size: 0.67rem !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.oyp-spec-value {
  margin-top: auto;
}

.oyp-spec-value .elementor-heading-title {
  font-size: clamp(1.3rem, 2vw, 1.8rem) !important;
  font-weight: 400;
  line-height: 1.15;
}

.oyp-market-list,
.oyp-milestones {
  margin-top: 2rem;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--oyp-line);
  border-left: 1px solid var(--oyp-line);
}

.oyp-market,
.oyp-milestone {
  min-height: 10rem;
  padding: 1.4rem;
  border-right: 1px solid var(--oyp-line);
  border-bottom: 1px solid var(--oyp-line);
}

.oyp-market-phase,
.oyp-market-phase p {
  color: var(--oyp-muted) !important;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace !important;
  font-size: 0.67rem !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.oyp-market-value { margin-top: auto; }
.oyp-market-value .elementor-heading-title { font-size: clamp(1.7rem, 2.8vw, 2.7rem) !important; font-weight: 300; }
.oyp-market-name, .oyp-market-name p { margin-top: 0.35rem; color: var(--oyp-muted) !important; font-size: 0.85rem !important; }

.oyp-milestones { margin-top: clamp(3rem, 6vw, 5rem); grid-template-columns: repeat(4, minmax(0, 1fr)); }
.oyp-milestone { min-height: 16rem; }
.oyp-milestone .oyp-detail-title { margin-top: auto; }

.oyp-table-widget { margin-top: clamp(2.5rem, 5vw, 4rem); }
.oyp-table-wrap { width: 100%; overflow-x: auto; }
.oyp-comparison-table { width: 100%; min-width: 44rem; border-collapse: collapse; color: var(--oyp-ink); font-size: 0.88rem; }
.oyp-comparison-table th,
.oyp-comparison-table td { padding: 1.15rem 1rem; border-bottom: 1px solid var(--oyp-line); text-align: left; vertical-align: top; }
.oyp-comparison-table th { border-top: 1px solid var(--oyp-line); font-family: ui-monospace, "SFMono-Regular", Consolas, monospace; font-size: 0.68rem; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; }

.oyp-people-grid {
  margin-top: clamp(3rem, 6vw, 5rem);
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--oyp-line);
}

.oyp-about-services {
  margin-top: clamp(3rem, 6vw, 5rem);
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.oyp-about-service {
  min-height: 15rem;
  padding: 1.8rem clamp(1rem, 3vw, 2.5rem) 1.8rem 0;
}

.oyp-about-service + .oyp-about-service {
  padding-left: clamp(1rem, 3vw, 2.5rem);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.oyp-dark .oyp-about-service .elementor-heading-title {
  color: var(--oyp-white) !important;
}

.oyp-dark .oyp-about-service .oyp-card-number .elementor-heading-title {
  color: rgba(255, 255, 255, 0.38) !important;
}

.oyp-person {
  min-height: 18rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-bottom: 1px solid var(--oyp-line);
}

.oyp-person + .oyp-person {
  border-left: 1px solid var(--oyp-line);
}

.oyp-person-name {
  margin-top: auto;
}

.oyp-person-name .elementor-heading-title {
  font-size: clamp(1.6rem, 2.7vw, 2.55rem) !important;
  line-height: 1.05;
}

.oyp-contact-layout {
  display: grid !important;
  grid-template-columns: minmax(0, 0.75fr) minmax(20rem, 1fr);
  gap: clamp(3rem, 9vw, 8rem);
  align-items: start;
}

.oyp-contact-data {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--oyp-line);
}

.oyp-contact-data,
.oyp-contact-data p {
  color: rgba(10, 10, 10, 0.68) !important;
}

.oyp-contact-team { margin-top: 1.5rem; }
.oyp-contact-people { padding-top: 1.5rem; border-top: 1px solid var(--oyp-line); }
.oyp-contact-people p { color: rgba(10, 10, 10, 0.72) !important; font-size: 0.85rem; }
.oyp-contact-people strong { display: inline-flex; width: 2.4rem; height: 2.4rem; margin-right: 0.65rem; align-items: center; justify-content: center; border-radius: 50%; background: var(--oyp-black); color: var(--oyp-white); font-weight: 400; }
.oyp-contact-people span { margin-left: 3.25rem; color: var(--oyp-muted); font-size: 0.75rem; }

.oyp-contact-form {
  display: grid;
  gap: 1.2rem;
}

.oyp-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.oyp-contact-form label {
  display: grid;
  gap: 0.45rem;
  color: rgba(10, 10, 10, 0.66);
  font-size: 0.82rem;
}

.oyp-contact-form .oyp-privacy { grid-template-columns: 1rem 1fr; gap: 0.75rem; align-items: start; font-size: 0.75rem; line-height: 1.5; }
.oyp-contact-form .oyp-privacy input { width: 1rem; min-height: 1rem; margin-top: 0.15rem; }

.oyp-contact-form input,
.oyp-contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(10, 10, 10, 0.3);
  border-radius: 0;
  background: transparent;
  color: var(--oyp-black);
  font: 400 1rem/1.4 "Inter", sans-serif;
  outline: 0;
}

.oyp-contact-form input {
  min-height: 3rem;
}

.oyp-contact-form textarea {
  padding: 0.75rem 0;
  resize: vertical;
}

.oyp-contact-form input:focus,
.oyp-contact-form textarea:focus {
  border-bottom-color: var(--oyp-black);
  box-shadow: 0 1px 0 var(--oyp-black);
}

.oyp-contact-form button {
  justify-self: start;
  margin-top: 0.8rem;
}

.oyp-honeypot {
  position: absolute !important;
  left: -9999px !important;
}

.oyp-form-notice {
  margin: 0 0 1.5rem;
  padding: 1rem;
  border: 1px solid var(--oyp-line);
}

.oyp-form-success {
  border-color: #7ba985;
  background: #edf7ef;
}

.oyp-form-error {
  border-color: #bd7777;
  background: #fbefef;
}

.oyp-legal {
  max-width: 52rem;
}

.oyp-legal h2 {
  margin: 3rem 0 1rem;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  line-height: 1.1;
}

.oyp-legal h3 {
  margin: 2rem 0 0.75rem;
  font-size: 1.15rem;
  font-weight: 500;
}

.oyp-legal p,
.oyp-legal li {
  color: rgba(10, 10, 10, 0.72);
}

.oyp-cta-band {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: end;
}

/* Startseite: Referenzstand Version_1 / 47ba45c */
.oyp-page-home .oyp-header {
  position: fixed;
  right: 0;
  left: 0;
  border-bottom-color: transparent;
  background: transparent;
  backdrop-filter: none;
  transition: background-color 220ms ease, border-color 220ms ease;
}

.oyp-page-home .oyp-header:not(.is-scrolled) .oyp-brand-logo-dark { display: none; }
.oyp-page-home .oyp-header:not(.is-scrolled) .oyp-brand-logo-light { display: block; }
.oyp-page-home .oyp-header:not(.is-scrolled) .oyp-menu a { color: rgba(255, 255, 255, 0.48); }
.oyp-page-home .oyp-header:not(.is-scrolled) .oyp-menu a:hover { color: var(--oyp-white); }
.oyp-page-home .oyp-header:not(.is-scrolled) .oyp-header-cta { background: var(--oyp-white); color: var(--oyp-black); }
.oyp-page-home .oyp-header.is-scrolled { border-bottom-color: var(--oyp-line); background: rgba(255, 255, 255, 0.96); backdrop-filter: blur(14px); }

.oyp-home-hero {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  background-color: #090909;
  background-image:
    repeating-linear-gradient(90deg, transparent 0, transparent calc(7.5vw - 1px), rgba(255,255,255,.035) calc(7.5vw - 1px), rgba(255,255,255,.035) 7.5vw),
    repeating-linear-gradient(0deg, transparent 0, transparent calc(7.5vw - 1px), rgba(255,255,255,.028) calc(7.5vw - 1px), rgba(255,255,255,.028) 7.5vw);
}

.oyp-home-hero::before,
.oyp-home-hero::after {
  content: "";
  position: absolute;
  left: -8vw;
  width: 78vw;
  height: 2px;
  background: rgba(255,255,255,.07);
  transform: rotate(17deg);
  transform-origin: left center;
}

.oyp-home-hero::before { bottom: 25%; }
.oyp-home-hero::after { bottom: 20%; left: -6vw; }

.oyp-home-hero .oyp-shell {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  padding-top: 9rem;
  padding-bottom: clamp(4.5rem, 8vw, 6.5rem);
  padding-right: 0 !important;
  padding-left: 0 !important;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}

.oyp-home-hero .oyp-stack { padding: 0 !important; gap: 2.6rem; transform: translateY(-.6rem); }
.oyp-home-display .elementor-heading-title { max-width: 12ch; color: var(--oyp-white); font-size: clamp(4rem, 8vw, 7.4rem) !important; font-weight: 300; line-height: .94 !important; letter-spacing: -.045em; }
.oyp-home-hero-text, .oyp-home-hero-text p { max-width: 41rem; color: rgba(255,255,255,.42) !important; font-size: clamp(1rem, 1.45vw, 1.18rem) !important; font-weight: 300; line-height: 1.55; }
.oyp-home-hero-text,
.oyp-home-hero-button { transform: translateY(1.15rem); }
.oyp-main .oyp-home-hero-button .elementor-button { border-color: rgba(255,255,255,.2); background: transparent; color: rgba(255,255,255,.66); }

.oyp-home-services-grid,
.oyp-home-about-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(25rem, .9fr);
  gap: clamp(4rem, 10vw, 10rem);
  align-items: start;
}

.oyp-home-services-grid,
.oyp-home-process-grid,
.oyp-home-about-grid,
.oyp-home-services-grid > .e-con,
.oyp-home-process-grid > .e-con,
.oyp-home-about-grid > .e-con,
.oyp-home-service-list,
.oyp-home-service-row {
  padding: 0 !important;
}

.oyp-home-service-list,
.oyp-home-service-row { gap: 0 !important; }

.oyp-home-services {
  padding-top: clamp(4.5rem, 6vw, 6rem);
  padding-bottom: clamp(4.5rem, 6vw, 6rem);
}

.oyp-home-process {
  padding-top: 2.2rem;
  padding-bottom: 2.2rem;
}

.oyp-home-about {
  padding-top: clamp(7rem, 12.5vw, 10rem);
  padding-bottom: clamp(7rem, 12.5vw, 10rem);
}

.oyp-home-section-title .elementor-heading-title { max-width: 11ch; font-size: clamp(3rem, 4.5vw, 4.5rem) !important; line-height: 1.02 !important; letter-spacing: -.035em; }
.oyp-home-section-lead, .oyp-home-section-lead p { color: rgba(10,10,10,.5) !important; font-size: clamp(1.05rem, 1.45vw, 1.25rem) !important; font-weight: 300; line-height: 1.55; }
.oyp-text-link { margin-top: .4rem; }
.oyp-main .oyp-text-link .elementor-button { min-height: auto; padding: 0 0 .3rem; border: 0; border-bottom: 1px solid var(--oyp-line); border-radius: 0; background: transparent; color: var(--oyp-ink); font-size: .88rem; }
.oyp-main .oyp-text-link .elementor-button::after { content: "↗"; margin-left: .45rem; }

.oyp-home-service-list { margin-top: .8rem; border-top: 1px solid var(--oyp-line); }
.oyp-home-service-row { padding: .9rem 0 !important; border-bottom: 1px solid var(--oyp-line); }
.oyp-home-service-title .elementor-heading-title { font-size: 1rem !important; font-weight: 500; letter-spacing: -.01em; }
.oyp-home-service-text { margin-top: .45rem; }
.oyp-home-service-text, .oyp-home-service-text p { color: rgba(10,10,10,.45) !important; font-size: .86rem !important; line-height: 1.42; }

.oyp-home-process { border-top: 1px solid var(--oyp-line); border-bottom: 1px solid var(--oyp-line); }
.oyp-home-process .oyp-home-section-title .elementor-heading-title { max-width: none; hyphens: auto; }
.oyp-home-process-grid { display: grid !important; grid-template-columns: minmax(0, .9fr) minmax(30rem, 1.1fr); gap: clamp(4rem, 8vw, 8rem); align-items: center; }
.oyp-home-process-text { margin-top: .4rem; }
.oyp-home-process-text, .oyp-home-process-text p { max-width: 40rem; color: rgba(10,10,10,.5) !important; font-size: 1rem !important; font-weight: 300; line-height: 1.55; }
.oyp-home-process-text p + p { margin-top: .1rem; }
.oyp-main .oyp-outline-button .elementor-button { border-color: var(--oyp-line); background: var(--oyp-surface); color: var(--oyp-ink); }

.oyp-cycle { position: relative; width: min(100%, 34rem); aspect-ratio: 1.2; margin-inline: auto; }
.oyp-cycle::before { content: ""; position: absolute; inset: 12% 12% 8%; border: 1px dashed rgba(10,10,10,.15); border-radius: 50%; }
.oyp-cycle-center { position: absolute !important; z-index: 2; top: 50%; left: 50%; width: 9rem; height: 9rem; transform: translate(-50%,-50%); border-radius: 50%; background: var(--oyp-black); display: flex; align-items: center; justify-content: center; text-align: center; box-shadow: 0 1.2rem 2.2rem rgba(10,10,10,.2); }
.oyp-cycle-center .elementor-heading-title { color: var(--oyp-white) !important; font-size: .92rem !important; font-weight: 400 !important; }
.oyp-cycle-steps { position: absolute; inset: 0; }
.oyp-cycle-step { position: absolute !important; z-index: 3; width: 9rem; min-height: 4.7rem; padding: .65rem .8rem; border: 1px solid var(--oyp-line); border-radius: .9rem; background: var(--oyp-white); align-items: center; justify-content: center; text-align: center; box-shadow: 0 .65rem 1.8rem rgba(10,10,10,.08); }
.oyp-cycle-step-1 { top: 0; left: 50%; transform: translateX(-50%); }
.oyp-cycle-step-2 { right: 0; bottom: 3%; }
.oyp-cycle-step-3 { bottom: 3%; left: 0; }
.oyp-cycle-number .elementor-heading-title { color: rgba(10,10,10,.35) !important; font-family: ui-monospace, "SFMono-Regular", Consolas, monospace; font-size: .64rem !important; font-weight: 400; letter-spacing: .12em; }
.oyp-cycle-title .elementor-heading-title { font-size: 1rem !important; font-weight: 500 !important; line-height: 1.05; }

.oyp-home-about-text, .oyp-home-about-text p { color: rgba(10,10,10,.52) !important; font-size: clamp(1rem, 1.35vw, 1.18rem) !important; font-weight: 300; line-height: 1.6; }
.oyp-home-about-text p + p { margin-top: 1.6rem; }

.oyp-home-cta { padding-top: 4.4rem; padding-bottom: 4.4rem; }
.oyp-home-cta-title .elementor-heading-title { max-width: 20ch; font-size: clamp(2rem, 3.3vw, 3.1rem) !important; line-height: 1.1 !important; }
.oyp-main .oyp-arrow-button .elementor-button { position: relative; min-height: 3.7rem; padding: 1rem 1.55rem 1rem 4.4rem; border-color: var(--oyp-white); background: var(--oyp-white); color: var(--oyp-black); }
.oyp-main .oyp-arrow-button .elementor-button::before { content: "→"; position: absolute; left: .45rem; top: 50%; width: 2.8rem; height: 2.8rem; transform: translateY(-50%); border-radius: 50%; background: var(--oyp-black); color: var(--oyp-white); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }

.oyp-footer {
  padding: clamp(4rem, 8vw, 6rem) var(--oyp-side) 1.5rem;
  border-top: 1px solid var(--oyp-line);
  background: var(--oyp-white);
  color: var(--oyp-ink);
}

.oyp-footer-inner,
.oyp-footer-bottom {
  width: min(100%, var(--oyp-shell));
  margin: 0 auto;
}

.oyp-footer-inner {
  display: grid;
  grid-template-columns: minmax(15rem, 1.2fr) repeat(2, minmax(10rem, 0.6fr));
  gap: clamp(2.5rem, 7vw, 6rem);
}

.oyp-footer-logo { width: 8rem; height: auto; }

.oyp-footer-brand p,
.oyp-footer li,
.oyp-footer a {
  color: rgba(10, 10, 10, 0.52);
  font-size: 0.9rem;
  text-decoration: none;
}

.oyp-footer-brand p {
  margin: 1.1rem 0 0;
}

.oyp-footer-label {
  margin: 0 0 1.1rem;
  color: rgba(10, 10, 10, 0.34);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.oyp-footer li + li {
  margin-top: 0.65rem;
}

.oyp-footer a:hover {
  color: var(--oyp-black);
}

.oyp-footer-bottom {
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-top: 1.4rem;
  border-top: 1px solid var(--oyp-line);
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
}

.oyp-footer-bottom p,
.oyp-footer-bottom a {
  margin: 0;
  color: rgba(10, 10, 10, 0.42);
  font-size: 0.78rem;
}

.oyp-footer-bottom div {
  display: flex;
  gap: 1.4rem;
}

@media (max-width: 980px) {
  .oyp-desktop-nav,
  .oyp-header-actions {
    display: none;
  }

  .oyp-header-inner {
    grid-template-columns: 1fr auto;
  }

  .oyp-mobile-menu {
    display: block;
  }

  .oyp-mobile-menu summary {
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.7rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.25rem;
    list-style: none;
    cursor: pointer;
  }

  .oyp-mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .oyp-mobile-menu summary span {
    width: 100%;
    height: 1px;
    background: var(--oyp-black);
  }

  .oyp-mobile-panel {
    position: absolute;
    top: 4.5rem;
    right: 0;
    left: 0;
    padding: 2rem var(--oyp-side) 2.5rem;
    border-bottom: 1px solid var(--oyp-line);
    background: var(--oyp-white);
  }

  .oyp-mobile-panel .oyp-menu {
    display: grid;
    gap: 1.1rem;
  }

  .oyp-mobile-panel .oyp-menu a {
    color: var(--oyp-black);
    font-size: 1.35rem;
    font-weight: 300;
  }

  .oyp-hero,
  .oyp-two-col,
  .oyp-contact-layout,
  .oyp-process,
  .oyp-capability-block,
  .oyp-home-services-grid,
  .oyp-home-process-grid,
  .oyp-home-about-grid {
    grid-template-columns: 1fr;
  }

  .oyp-page-home .oyp-header:not(.is-scrolled) .oyp-mobile-menu summary span {
    background: var(--oyp-white);
  }

  .oyp-page-home .oyp-header:not(.is-scrolled) .oyp-mobile-panel {
    background: var(--oyp-black);
    border-bottom-color: rgba(255,255,255,.15);
  }

  .oyp-page-home .oyp-header:not(.is-scrolled) .oyp-mobile-panel .oyp-menu a {
    color: var(--oyp-white);
  }

  .oyp-capability-summary {
    position: static;
  }

  .oyp-hero {
    min-height: 0;
  }

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

  .oyp-stat:nth-child(3) {
    border-left: 0;
  }

  .oyp-stat:nth-child(-n+2) {
    border-bottom: 1px solid var(--oyp-line);
  }

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

  .oyp-card {
    min-height: 20rem;
  }

  .oyp-card + .oyp-card {
    border-left: 0;
  }

  .oyp-service-row {
    grid-template-columns: 3rem minmax(0, 1fr);
  }

  .oyp-service-points {
    grid-column: 2;
  }

  .oyp-process {
    gap: 2.5rem;
  }

  .oyp-footer-inner {
    grid-template-columns: 1fr 1fr;
  }

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

  .oyp-footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  :root {
    --oyp-side: 1rem;
    --oyp-section: 4.25rem;
  }

  .oyp-display .elementor-heading-title {
    font-size: clamp(2.65rem, 13.5vw, 4rem) !important;
  }

  .oyp-home-display .elementor-heading-title {
    font-size: clamp(3.35rem, 17vw, 5rem) !important;
  }

  .oyp-home-hero .oyp-shell {
    padding-top: 8rem;
    padding-bottom: 4.5rem;
  }

  .oyp-home-section-title .elementor-heading-title {
    font-size: clamp(2.6rem, 13vw, 3.8rem) !important;
  }

  .oyp-cycle {
    aspect-ratio: auto;
    display: grid;
    gap: .8rem;
  }

  .oyp-cycle::before { display: none; }
  .oyp-cycle-center { position: static !important; width: 7.5rem; height: 7.5rem; margin: 0 auto 1rem; transform: none; }
  .oyp-cycle-steps { position: static; display: grid; gap: .8rem; }
  .oyp-cycle-step { position: static !important; width: 100%; min-height: 4.5rem; transform: none; }

  .oyp-title .elementor-heading-title {
    font-size: clamp(2.25rem, 11vw, 3.25rem) !important;
  }

  .oyp-subtitle .elementor-heading-title {
    font-size: clamp(1.8rem, 9vw, 2.65rem) !important;
  }

  .oyp-hero {
    padding-top: 4.8rem;
    padding-bottom: 4.8rem;
    gap: 2rem;
  }

  .oyp-stats,
  .oyp-feature-list,
  .oyp-detail-grid,
  .oyp-spec-grid,
  .oyp-people-grid,
  .oyp-about-services,
  .oyp-service-principles {
    grid-template-columns: 1fr;
  }

  .oyp-service-principle + .oyp-service-principle { border-left: 0; border-top: 1px solid var(--oyp-line); }

  .oyp-market-list,
  .oyp-milestones {
    grid-template-columns: 1fr;
  }

  .oyp-about-service,
  .oyp-about-service + .oyp-about-service {
    min-height: 0;
    padding: 1.8rem 0;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .oyp-about-service:last-child {
    border-bottom: 0;
  }

  .oyp-stat,
  .oyp-stat + .oyp-stat {
    min-height: 8rem;
    border-left: 0;
    border-bottom: 1px solid var(--oyp-line);
  }

  .oyp-feature,
  .oyp-feature:nth-child(even) {
    min-height: 0;
    padding: 1.5rem 0;
    border-left: 0;
  }

  .oyp-service-row {
    grid-template-columns: 2.4rem minmax(0, 1fr);
    gap: 1rem;
  }

  .oyp-service-points ul {
    grid-template-columns: 1fr;
  }

  .oyp-capability-list ul {
    grid-template-columns: 1fr;
  }

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

  .oyp-process-step {
    border-bottom: 1px solid var(--oyp-line);
  }

  .oyp-detail-grid,
  .oyp-spec-grid {
    border-left: 0;
  }

  .oyp-detail,
  .oyp-spec {
    min-height: 0;
    border-right: 0;
  }

  .oyp-person {
    min-height: 14rem;
  }

  .oyp-person + .oyp-person {
    border-left: 0;
  }

  .oyp-form-grid {
    grid-template-columns: 1fr;
  }

  .oyp-cta-band {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .oyp-footer-inner {
    grid-template-columns: 1fr;
  }

  .oyp-footer-brand {
    grid-column: auto;
  }

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

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
