.oel-page {
  --font-sans: var(--font-landing);
  --font-display: var(--font-landing);
  --oel-midnight: var(--navy-900);
  --oel-midnight-2: var(--navy-800);
  --oel-surface: var(--smart-white);
  --oel-cyan: var(--smart-blue);
  --oel-cyan-bright: var(--blue-300);
  --oel-green: var(--smart-green);
  --oel-ink: var(--smart-black);
  --oel-body: var(--gray-600);
  --oel-muted: var(--gray-500);
  --oel-border: var(--gray-200);
  --oel-dark-border: rgba(157, 193, 216, 0.22);
  --oel-container: 1440px;
  background: var(--oel-surface);
  color: var(--oel-ink);
  font-family: var(--font-landing, 'Onest', system-ui, sans-serif);
  overflow: clip;
}

.oel-page,
.oel-page * {
  box-sizing: border-box;
}

.oel-page button,
.oel-page a {
  font: inherit;
}

.oel-page button:focus-visible,
.oel-page a:focus-visible {
  outline: 3px solid var(--oel-green);
  outline-offset: 4px;
}

.oel-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: 76px;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 34px;
  padding: 0 max(28px, calc((100vw - var(--oel-container)) / 2));
  color: #fff;
  background: rgba(5, 17, 28, 0.96);
  border-bottom: 1px solid rgba(167, 201, 221, 0.12);
  backdrop-filter: blur(16px);
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.oel-brand {
  display: inline-flex;
  width: 148px;
  height: auto;
  align-items: center;
}

.oel-brand img,
.oel-footer > img {
  display: block;
  width: 100%;
  height: auto;
}

.oel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3.4vw, 52px);
}

.oel-nav a,
.oel-footer a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: color 180ms ease;
}

.oel-nav a:hover,
.oel-footer a:hover {
  color: #fff;
}

.oel-header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.oel-language {
  position: relative;
  flex: 0 0 auto;
}

.oel-language-trigger {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.06);
  font: 700 13px/1 inherit;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.oel-language-trigger > svg:first-child {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.oel-language-trigger > svg:last-child {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.oel-language.is-open .oel-language-trigger > svg:last-child {
  transform: rotate(180deg);
}

.oel-language-trigger:hover,
.oel-language-trigger:focus-visible,
.oel-language.is-open .oel-language-trigger {
  color: var(--smart-blue);
  background: #fff;
  border-color: var(--smart-blue);
  box-shadow: 0 0 0 3px rgba(1, 146, 201, 0.13);
  outline: none;
}

.oel-language-short {
  color: var(--smart-blue);
  letter-spacing: 0.05em;
}

.oel-language-name {
  color: inherit;
  white-space: nowrap;
}

.oel-language-menu {
  position: absolute;
  z-index: 40;
  top: calc(100% + 10px);
  right: 0;
  width: 244px;
  display: grid;
  gap: 4px;
  padding: 8px;
  border: 1px solid #cfe3eb;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 20px 54px rgba(4, 50, 70, 0.16);
}

.oel-language-option {
  min-height: 46px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 10px;
  padding: 6px 10px 6px 7px;
  border-radius: 11px;
  color: #203844;
  text-decoration: none;
  font-size: 14px;
  font-weight: 650;
  transition: color 160ms ease, background 160ms ease;
}

.oel-language-option:hover,
.oel-language-option:focus-visible {
  color: #006b93;
  background: #eef9fc;
  outline: none;
}

.oel-language-option.is-active {
  color: #08764a;
  background: #e5f8ef;
}

.oel-language-option-code {
  min-height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid #cfe3eb;
  border-radius: 9px;
  color: #006b93;
  background: #f5fbfd;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.oel-language-option.is-active .oel-language-option-code {
  color: #075f3d;
  background: #fff;
  border-color: #8edbb5;
}

.oel-language-option > svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.oel-cta-label--mobile {
  display: none;
}

.oel-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  color: var(--smart-black);
  background: var(--smart-green);
  border: 1px solid var(--smart-green);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(47, 199, 126, 0.28);
  cursor: pointer;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.oel-button:hover {
  color: var(--smart-black);
  background: var(--smart-green);
  border-color: var(--smart-green);
  box-shadow: 0 16px 34px rgba(47, 199, 126, 0.34);
  transform: translateY(-2px);
}

.oel-button--small {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 10px;
  box-shadow: none;
  white-space: nowrap;
}

.oel-button--ghost {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: none;
}

.oel-button--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
}

.oel-arrow {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}

.oel-hero {
  color: #fff;
  background:
    radial-gradient(circle at 70% 44%, rgba(7, 152, 199, 0.09), transparent 34%),
    var(--oel-midnight);
}

.oel-hero-inner {
  width: min(var(--oel-container), calc(100% - 56px));
  min-height: 690px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(600px, 1.02fr) minmax(600px, 0.98fr);
  gap: clamp(36px, 3.2vw, 50px);
  align-items: center;
  padding: 62px 0 58px;
}

.oel-hero-copy {
  position: relative;
  z-index: 2;
}

.oel-eyebrow {
  margin: 0 0 22px;
  color: var(--oel-green);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.18em;
  line-height: 1.4;
}

.oel-hero h1 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 3.9vw, 60px);
  font-weight: 760;
  letter-spacing: -0.045em;
  line-height: 1.04;
  text-wrap: balance;
}

.oel-hero h1 span {
  display: block;
}

.oel-hero-copy > p {
  max-width: 610px;
  margin: 26px 0 0;
  color: rgba(226, 237, 244, 0.78);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.55;
}

.oel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.oel-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 40px 0 0;
  padding: 24px 0 0;
  list-style: none;
  border-top: 1px solid rgba(171, 203, 222, 0.18);
}

.oel-proof li {
  position: relative;
  padding-left: 16px;
}

.oel-proof li::before {
  content: '';
  position: absolute;
  top: 7px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--oel-green);
  box-shadow: 0 0 0 4px rgba(49, 201, 135, 0.11);
}

.oel-proof strong,
.oel-proof span {
  display: block;
}

.oel-proof strong {
  color: #fff;
  font-size: 15px;
  font-weight: 750;
}

.oel-proof span {
  margin-top: 3px;
  color: rgba(220, 234, 243, 0.57);
  font-size: 12px;
  line-height: 1.35;
}

.oel-proof-source {
  margin: 14px 0 0;
  color: rgba(220, 234, 243, 0.48);
  font-size: 11px;
  line-height: 1.4;
}

.oel-control-tower {
  position: relative;
  min-height: 540px;
  isolation: isolate;
}

.oel-demo-badge {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  padding: 7px 10px;
  color: rgba(235, 246, 251, 0.82);
  background: rgba(6, 23, 36, 0.78);
  border: 1px solid rgba(155, 197, 222, 0.25);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
}

.oel-control-tower > img {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 50%;
  border-radius: 22px;
  opacity: 0.98;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 94%, transparent 100%);
}

.oel-live-card {
  position: absolute;
  width: 182px;
  padding: 14px 15px;
  color: #fff;
  background: rgba(8, 25, 39, 0.9);
  border: 1px solid rgba(155, 197, 222, 0.28);
  border-radius: 12px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.oel-live-card span,
.oel-live-card strong,
.oel-live-card small {
  display: block;
}

.oel-live-card span {
  color: rgba(221, 235, 244, 0.64);
  font-size: 11px;
  font-weight: 650;
  text-transform: uppercase;
}

.oel-live-card strong {
  margin-top: 6px;
  font-size: 15px;
  font-weight: 700;
}

.oel-live-card small {
  margin-top: 6px;
  color: var(--oel-green);
  font-size: 11px;
  line-height: 1.35;
}

.oel-live-card--territory {
  top: 44px;
  left: 24px;
}

.oel-live-card--shelf {
  top: 132px;
  right: 8px;
}

.oel-live-card--cash {
  right: 72px;
  bottom: 38px;
}

.oel-section {
  width: min(var(--oel-container), calc(100% - 56px));
  margin: 0 auto;
  padding: 108px 0;
}

.oel-section-head {
  max-width: 720px;
}

.oel-section-head--wide {
  max-width: 900px;
}

.oel-section-head h2,
.oel-loop h2,
.oel-platform h2,
.oel-final h2 {
  margin: 0;
  font-size: clamp(40px, 4.2vw, 60px);
  font-weight: 760;
  letter-spacing: -0.04em;
  line-height: 1.07;
  text-wrap: balance;
}

.oel-section-head p,
.oel-loop-copy p,
.oel-platform-copy p {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--oel-body);
  font-size: 18px;
  line-height: 1.55;
}

.oel-loss-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 58px;
  border-top: 1px solid var(--oel-border);
  border-bottom: 1px solid var(--oel-border);
}

.oel-loss-item {
  min-height: 300px;
  padding: 30px 30px 28px;
  border-right: 1px solid var(--oel-border);
}

.oel-loss-item:first-child {
  padding-left: 0;
}

.oel-loss-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.oel-loss-owner {
  display: block;
  margin-top: 14px;
  color: #087caf;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: uppercase;
}

.oel-number,
.oel-case-index {
  color: var(--oel-cyan);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.oel-loss-item h3,
.oel-role-item h3 {
  margin: 34px 0 12px;
  font-size: 22px;
  font-weight: 730;
  line-height: 1.2;
}

.oel-loss-item p,
.oel-role-item p {
  margin: 0;
  color: var(--oel-body);
  font-size: 15px;
  line-height: 1.58;
}

.oel-loss-item small,
.oel-role-item small {
  display: block;
  margin-top: 34px;
  color: var(--oel-muted);
  font-size: 11px;
  line-height: 1.45;
}

.oel-loop {
  scroll-margin-top: 72px;
  color: #fff;
  background: var(--oel-midnight);
}

.oel-loop-inner,
.oel-platform-inner {
  width: min(var(--oel-container), calc(100% - 56px));
  margin: 0 auto;
  padding: 110px 0;
}

.oel-loop-inner {
  padding-top: 70px;
  padding-bottom: 76px;
}

.oel-loop-copy {
  max-width: 1050px;
}

.oel-loop-copy p,
.oel-platform-copy p {
  color: rgba(223, 236, 244, 0.7);
}

.oel-contour-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid rgba(151, 193, 217, 0.22);
}

.oel-contour-tabs li {
  min-width: 0;
}

.oel-contour-tabs button {
  position: relative;
  width: 100%;
  min-height: 102px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 15px;
  align-items: center;
  padding: 13px 24px 18px;
  color: rgba(222, 235, 244, 0.78);
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(151, 193, 217, 0.18);
  cursor: pointer;
  text-align: left;
  transition: color 180ms ease, background 180ms ease;
}

.oel-page .oel-contour-tabs button[role="tab"][aria-selected="false"] {
  color: #b9cbd6 !important;
}

.oel-contour-tabs li:last-child button {
  border-right: 0;
}

.oel-contour-tabs button::after {
  content: '';
  position: absolute;
  right: 18px;
  bottom: -1px;
  left: 18px;
  height: 2px;
  background: linear-gradient(90deg, var(--oel-cyan), var(--oel-green));
  box-shadow: 0 0 18px rgba(49, 201, 135, 0.42);
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 180ms ease, transform 180ms ease;
}

.oel-contour-tabs button:hover,
.oel-contour-tabs button.is-active {
  color: #fff;
  background: linear-gradient(180deg, rgba(13, 48, 69, 0), rgba(13, 48, 69, 0.28));
}

.oel-contour-tabs button.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.oel-contour-tab-icon,
.oel-contour-title-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--oel-cyan-bright);
  border: 1px solid rgba(18, 182, 239, 0.72);
  border-radius: 50%;
}

.oel-contour-tab-icon {
  width: 54px;
  height: 54px;
}

.oel-contour-tabs button.is-active .oel-contour-tab-icon {
  color: var(--oel-green);
  border-color: var(--oel-green);
  box-shadow: 0 0 24px rgba(49, 201, 135, 0.18);
}

.oel-contour-tab-icon svg,
.oel-contour-title-icon svg,
.oel-contour-foundation svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.oel-contour-tabs button > span:last-child {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.oel-contour-tabs small {
  color: var(--oel-cyan-bright);
  font-size: 11px;
  font-weight: 760;
}

.oel-contour-tabs strong {
  font-size: 15px;
  font-weight: 680;
  line-height: 1.3;
}

.oel-contour-workspace {
  position: relative;
  margin-top: 22px;
  overflow: hidden;
  background:
    linear-gradient(rgba(12, 34, 50, 0.94), rgba(6, 24, 38, 0.96)),
    linear-gradient(90deg, rgba(18, 182, 239, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(18, 182, 239, 0.04) 1px, transparent 1px);
  background-size: auto, 36px 36px, 36px 36px;
  border: 1px solid rgba(142, 188, 215, 0.3);
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.16);
}

.oel-contour-head {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(151, 193, 217, 0.18);
}

.oel-contour-title {
  display: flex;
  align-items: center;
  gap: 15px;
}

.oel-contour-title-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  color: var(--oel-green);
  border-color: rgba(49, 201, 135, 0.62);
}

.oel-contour-title h3 {
  margin: 0;
  color: #fff;
  font-size: 21px;
  font-weight: 720;
}

.oel-contour-title div > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 6px;
  color: var(--oel-green);
  font-size: 12px;
}

.oel-contour-title i {
  width: 7px;
  height: 7px;
  background: var(--oel-green);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(49, 201, 135, 0.6);
}

.oel-contour-head > p {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0;
  color: rgba(219, 233, 242, 0.55);
  font-size: 12px;
}

.oel-contour-head > p strong {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 620;
}

.oel-stage-layout {
  padding: 26px 24px 22px;
}

.oel-stage-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(104px, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0 0 18px;
  list-style: none;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(49, 201, 135, 0.5) transparent;
}

.oel-stage-rail::before {
  content: '';
  position: absolute;
  top: 30px;
  right: 6%;
  left: 6%;
  height: 1px;
  background: linear-gradient(90deg, var(--oel-cyan), var(--oel-green));
  opacity: 0.72;
}

.oel-stage-rail::after {
  content: '';
  position: absolute;
  right: 4.8%;
  bottom: 10px;
  left: 4.8%;
  height: 36px;
  border-right: 1px dashed rgba(49, 201, 135, 0.64);
  border-bottom: 1px dashed rgba(49, 201, 135, 0.64);
  border-left: 1px dashed rgba(49, 201, 135, 0.64);
  border-radius: 0 0 16px 16px;
  pointer-events: none;
}

.oel-stage-rail li {
  position: relative;
  z-index: 1;
}

.oel-stage-rail button {
  width: 100%;
  min-width: 102px;
  min-height: 98px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 4px;
  color: rgba(221, 235, 244, 0.64);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.oel-stage-icon {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--oel-cyan-bright);
  background: #081827;
  border: 1px solid rgba(121, 172, 201, 0.46);
  border-radius: 50%;
  transition: color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.oel-stage-icon svg,
.oel-stage-detail-icon svg,
.oel-layer-title svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.oel-stage-rail strong {
  max-width: 126px;
  margin-top: 12px;
  color: inherit;
  font-size: 12px;
  font-weight: 660;
  line-height: 1.25;
  text-align: center;
}

.oel-stage-rail small {
  margin-top: 5px;
  color: rgba(208, 226, 238, 0.4);
  font-size: 9px;
}

.oel-stage-rail button:hover .oel-stage-icon,
.oel-stage-rail button.is-active .oel-stage-icon {
  color: var(--oel-green);
  border-color: var(--oel-green);
  box-shadow: 0 0 0 7px rgba(49, 201, 135, 0.1), 0 0 28px rgba(49, 201, 135, 0.18);
  transform: translateY(-3px);
}

.oel-stage-rail button.is-active {
  color: var(--oel-green);
}

.oel-stage-detail {
  min-height: 96px;
  margin: 10px 0 0;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 16px 20px;
  background: rgba(7, 26, 40, 0.78);
  border: 1px solid rgba(148, 190, 216, 0.2);
  border-radius: 12px;
}

.oel-stage-detail-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--oel-green);
  background: rgba(49, 201, 135, 0.08);
  border: 1px solid rgba(49, 201, 135, 0.26);
  border-radius: 11px;
}

.oel-stage-detail span,
.oel-contour-outcome > span {
  color: rgba(216, 233, 243, 0.56);
  font-size: 10px;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.oel-stage-detail h3 {
  margin: 4px 0 0;
  font-size: 18px;
  font-weight: 650;
}

.oel-stage-detail h3 strong {
  margin-left: 5px;
  color: var(--oel-green);
}

.oel-stage-detail p {
  margin: 6px 0 0;
  color: rgba(219, 233, 242, 0.7);
  font-size: 12px;
  line-height: 1.45;
}

.oel-stage-detail > button,
.oel-case-row > button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  color: var(--oel-cyan-bright);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 750;
  white-space: nowrap;
}

.oel-contour-result {
  display: grid;
  grid-template-columns: minmax(280px, 1.15fr) minmax(340px, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(151, 193, 217, 0.18);
}

.oel-contour-outcome h3 {
  max-width: 520px;
  margin: 8px 0 0;
  color: #fff;
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 680;
  line-height: 1.25;
}

.oel-contour-kpis {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.oel-contour-kpis li {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 8px 11px;
  color: var(--oel-green);
  background: rgba(9, 33, 49, 0.82);
  border: 1px solid rgba(116, 167, 197, 0.23);
  border-radius: 8px;
  font-size: 11px;
  line-height: 1.25;
}

.oel-contour-cta {
  min-width: 204px;
}

.oel-contour-foundation {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 4px 0;
  color: rgba(205, 225, 237, 0.68);
  font-size: 13px;
}

.oel-contour-foundation svg {
  flex: 0 0 auto;
  color: var(--oel-cyan-bright);
}

.oel-roles,
.oel-platform,
.oel-cases {
  scroll-margin-top: 72px;
}

.oel-role-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 60px;
  border-top: 1px solid var(--oel-border);
}

.oel-role-item {
  position: relative;
  min-height: 290px;
  padding: 28px 26px 24px;
  border-right: 1px solid var(--oel-border);
}

.oel-role-item:first-child {
  padding-left: 0;
}

.oel-role-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.oel-role-item::before {
  content: '';
  position: absolute;
  top: -1px;
  right: 26px;
  left: 26px;
  height: 2px;
  background: linear-gradient(90deg, var(--oel-cyan), var(--oel-green));
}

.oel-role-item:first-child::before {
  left: 0;
}

.oel-role-item:last-child::before {
  right: 0;
}

.oel-role-item h3 {
  color: #087caf;
}

.oel-platform {
  color: #fff;
  background: var(--oel-midnight);
}

.oel-platform-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(620px, 1.32fr);
  gap: clamp(56px, 7vw, 104px);
  align-items: center;
}

.oel-platform-copy {
  max-width: 490px;
}

.oel-platform h2 {
  font-size: clamp(38px, 3.5vw, 54px);
}

.oel-layer-stack {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.oel-layer {
  display: grid;
  grid-template-columns: 230px 1fr;
  align-items: center;
  min-height: 98px;
  padding: 18px 24px;
  border: 1px solid rgba(52, 157, 219, 0.46);
  border-radius: 16px;
  transform: perspective(800px) rotateX(1deg);
}

.oel-layer--1 {
  margin: 0 34px;
  background: linear-gradient(90deg, rgba(8, 50, 87, 0.92), rgba(9, 41, 70, 0.76));
}

.oel-layer--2 {
  margin: 0 18px;
  background: linear-gradient(90deg, rgba(6, 67, 76, 0.84), rgba(9, 52, 70, 0.76));
}

.oel-layer--3 {
  background: linear-gradient(90deg, rgba(21, 115, 75, 0.9), rgba(7, 85, 83, 0.82));
  border-color: rgba(49, 201, 135, 0.64);
}

.oel-layer-title {
  display: flex;
  align-items: center;
  gap: 14px;
}

.oel-layer-title svg {
  flex: none;
  color: var(--oel-cyan-bright);
}

.oel-layer--3 .oel-layer-title svg {
  color: var(--oel-green);
}

.oel-layer h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 650;
  line-height: 1.2;
}

.oel-layer ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.oel-layer li {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  color: rgba(239, 247, 251, 0.86);
  border-left: 1px solid rgba(186, 217, 233, 0.2);
  font-size: 13px;
  line-height: 1.25;
  text-align: center;
}

.oel-foundation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  color: rgba(222, 236, 244, 0.74);
  background: rgba(11, 37, 56, 0.8);
  border: 1px solid rgba(151, 191, 214, 0.28);
  border-radius: 12px;
  font-size: 11px;
}

.oel-case-list {
  margin-top: 54px;
  border-top: 1px solid var(--oel-border);
}

.oel-case-row {
  display: grid;
  grid-template-columns: 58px minmax(180px, 0.8fr) minmax(170px, 0.7fr) minmax(220px, 1fr) auto;
  gap: 28px;
  align-items: center;
  min-height: 178px;
  padding: 24px 0;
  border-bottom: 1px solid var(--oel-border);
}

.oel-case-row h3 {
  margin: 0;
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 740;
  letter-spacing: -0.025em;
}

.oel-case-row > div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.oel-case-row strong {
  color: #0b9f58;
  font-size: clamp(25px, 2.4vw, 36px);
  font-weight: 760;
  line-height: 1;
}

.oel-case-row span:not(.oel-case-index) {
  max-width: 230px;
  color: var(--oel-body);
  font-size: 13px;
  line-height: 1.35;
}

.oel-case-row > button {
  color: #087caf;
}

.oel-case-note {
  margin: 20px 0 0;
  color: var(--oel-muted);
  font-size: 12px;
  line-height: 1.55;
}

.oel-pilot {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.6fr);
  gap: clamp(50px, 7vw, 96px);
  align-items: end;
}

.oel-pilot-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin: 54px 0 0;
  padding: 0;
  list-style: none;
}

.oel-pilot-steps::before {
  content: '';
  position: absolute;
  top: 25px;
  right: 5%;
  left: 5%;
  height: 1px;
  background: linear-gradient(90deg, var(--oel-cyan), var(--oel-green));
}

.oel-pilot-steps li {
  position: relative;
  z-index: 1;
}

.oel-pilot-steps li > span {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #087caf;
  background: #fff;
  border: 1px solid #b7d9ea;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 750;
}

.oel-pilot-steps li:last-child > span {
  color: #0b9f58;
  border-color: #a8e2c4;
}

.oel-pilot-steps h3 {
  margin: 20px 0 8px;
  font-size: 17px;
  font-weight: 720;
}

.oel-pilot-steps p {
  margin: 0;
  color: var(--oel-body);
  font-size: 13px;
  line-height: 1.5;
}

.oel-meeting-result {
  padding: 34px;
  background: #f1f7fb;
  border: 1px solid #dbeaf2;
  border-radius: 18px;
}

.oel-meeting-result h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 730;
  line-height: 1.3;
}

.oel-meeting-result ul {
  display: grid;
  gap: 14px;
  margin: 26px 0 30px;
  padding-left: 20px;
}

.oel-meeting-result li {
  color: var(--oel-body);
  font-size: 14px;
  line-height: 1.45;
}

.oel-meeting-result li::marker {
  color: #0b9f58;
}

.oel-meeting-result .oel-button {
  width: 100%;
}

.oel-final {
  min-height: 450px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  gap: 60px;
  align-items: center;
  padding: 92px max(28px, calc((100vw - var(--oel-container)) / 2));
  color: #fff;
  background: var(--oel-midnight);
  border-top: 1px solid rgba(142, 184, 209, 0.16);
}

.oel-final h2 {
  max-width: 980px;
  color: #fff;
  font-size: clamp(39px, 3.7vw, 58px);
}

.oel-final-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin-top: 24px;
}

.oel-final-contact a {
  color: rgba(232, 243, 249, 0.72);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.oel-final-contact a:hover {
  color: #fff;
}

.oel-final-visual {
  width: min(360px, 100%);
  height: auto;
  display: block;
  justify-self: end;
  opacity: 0.9;
  mix-blend-mode: screen;
}

.oel-footer {
  min-height: 205px;
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) minmax(220px, 260px);
  grid-template-rows: auto auto;
  gap: 30px 36px;
  align-items: start;
  padding: 44px max(28px, calc((100vw - var(--oel-container)) / 2));
  color: rgba(255, 255, 255, 0.65);
  background: var(--oel-midnight);
  border-top: 1px solid rgba(148, 189, 214, 0.2);
}

.oel-footer > img {
  width: 160px;
}

.oel-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 14px 28px;
}

.oel-footer > span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
}

.oel-footer small {
  grid-column: 1 / -1;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.42);
  border-top: 1px solid rgba(148, 189, 214, 0.16);
  font-size: 11px;
}

@media (max-width: 1120px) {
  .oel-header {
    grid-template-columns: 160px 1fr;
    gap: 20px;
  }

  .oel-nav {
    display: none;
  }

  .oel-header-actions {
    justify-self: end;
    gap: 10px;
  }

  .oel-hero-inner {
    grid-template-columns: minmax(0, 0.94fr) minmax(440px, 1.06fr);
    gap: 30px;
  }

  .oel-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .oel-control-tower {
    min-height: 500px;
  }

  .oel-loss-item,
  .oel-role-item {
    padding-right: 20px;
    padding-left: 20px;
  }

  .oel-contour-tabs button {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 10px;
    padding-right: 12px;
    padding-left: 12px;
  }

  .oel-contour-tab-icon {
    width: 46px;
    height: 46px;
  }

  .oel-contour-result {
    grid-template-columns: minmax(250px, 1fr) minmax(300px, 1fr);
  }

  .oel-contour-cta {
    grid-column: 2;
    justify-self: start;
  }

  .oel-platform-inner {
    grid-template-columns: 1fr;
  }

  .oel-platform-copy {
    max-width: 820px;
  }

  .oel-pilot {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .oel-meeting-result {
    max-width: 560px;
  }
}

@media (max-width: 900px) {
  .oel-header {
    height: 68px;
    grid-template-columns: 150px 1fr;
  }

  .oel-nav {
    display: none;
  }

  .oel-header-actions {
    justify-self: end;
  }

  .oel-hero-inner {
    grid-template-columns: 1fr;
    padding-top: 62px;
  }

  .oel-hero-copy {
    max-width: 720px;
  }

  .oel-control-tower {
    min-height: 520px;
  }

  .oel-loss-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .oel-loss-item:nth-child(2) {
    border-right: 0;
  }

  .oel-loss-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--oel-border);
  }

  .oel-loss-item:first-child,
  .oel-loss-item:last-child {
    padding-right: 26px;
    padding-left: 26px;
  }

  .oel-contour-tabs {
    grid-template-columns: repeat(5, 190px);
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    scrollbar-color: rgba(49, 201, 135, 0.5) transparent;
  }

  .oel-contour-tabs li {
    scroll-snap-align: start;
  }

  .oel-contour-head {
    align-items: flex-start;
  }

  .oel-contour-head > p {
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
  }

  .oel-stage-rail {
    grid-template-columns: repeat(7, 112px);
    scroll-snap-type: x proximity;
  }

  .oel-stage-rail li {
    scroll-snap-align: start;
  }

  .oel-role-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .oel-role-item {
    border-bottom: 1px solid var(--oel-border);
  }

  .oel-role-item:nth-child(2n) {
    border-right: 0;
  }

  .oel-role-item:last-child {
    grid-column: 1 / -1;
    padding-right: 26px;
    padding-left: 26px;
  }

  .oel-case-row {
    grid-template-columns: 42px minmax(180px, 1fr) minmax(170px, 1fr);
  }

  .oel-case-row > div:nth-of-type(2) {
    grid-column: 2 / 3;
  }

  .oel-case-row > button {
    grid-column: 3;
    justify-self: start;
  }

  .oel-final {
    grid-template-columns: 1fr;
  }

  .oel-final-visual {
    display: none;
  }
}

@media (max-width: 680px) {
  .oel-header {
    padding-right: 18px;
    padding-left: 18px;
  }

  .oel-brand {
    width: 126px;
  }

  .oel-header .oel-button {
    min-height: 40px;
    padding: 0 13px;
    font-size: 12px;
  }

  .oel-language-trigger {
    min-width: 52px;
    min-height: 40px;
    justify-content: center;
    gap: 6px;
    padding: 0 10px;
  }

  .oel-language-trigger > svg:first-child {
    width: 17px;
    height: 17px;
  }

  .oel-language-name {
    display: none;
  }

  .oel-language-trigger > svg:last-child {
    width: 12px;
    height: 12px;
  }

  .oel-language-menu {
    width: min(244px, calc(100vw - 24px));
  }

  .oel-cta-label--desktop {
    display: none;
  }

  .oel-cta-label--mobile {
    display: inline;
  }

  .oel-hero-inner,
  .oel-section,
  .oel-loop-inner,
  .oel-platform-inner {
    width: min(100% - 36px, var(--oel-container));
  }

  .oel-hero-inner {
    min-height: auto;
    padding: 52px 0 42px;
  }

  .oel-hero h1 {
    font-size: clamp(39px, 11.2vw, 50px);
    line-height: 1.02;
  }

  .oel-eyebrow {
    margin-bottom: 18px;
    font-size: 10px;
  }

  .oel-hero-copy > p {
    margin-top: 22px;
    font-size: 16px;
  }

  .oel-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .oel-actions .oel-button {
    width: 100%;
  }

  .oel-proof {
    gap: 18px 14px;
    margin-top: 32px;
  }

  .oel-control-tower {
    min-height: 410px;
    margin: 4px -18px 0;
  }

  .oel-control-tower > img {
    border-radius: 0;
    object-position: 58% 50%;
  }

  .oel-live-card {
    width: 154px;
    padding: 11px 12px;
  }

  .oel-live-card--territory {
    top: 18px;
    left: 18px;
  }

  .oel-live-card--shelf {
    top: 120px;
    right: 18px;
  }

  .oel-live-card--cash {
    right: auto;
    bottom: 22px;
    left: 34px;
  }

  .oel-demo-badge {
    top: 12px;
    right: 18px;
  }

  .oel-section,
  .oel-loop-inner,
  .oel-platform-inner {
    padding: 76px 0;
  }

  .oel-section-head h2,
  .oel-loop h2,
  .oel-platform h2,
  .oel-final h2 {
    font-size: clamp(36px, 10.2vw, 46px);
  }

  .oel-section-head p,
  .oel-loop-copy p,
  .oel-platform-copy p {
    margin-top: 16px;
    font-size: 16px;
  }

  .oel-loss-grid,
  .oel-role-grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .oel-loss-item,
  .oel-loss-item:first-child,
  .oel-loss-item:last-child,
  .oel-role-item,
  .oel-role-item:first-child,
  .oel-role-item:last-child {
    min-height: auto;
    grid-column: auto;
    padding: 26px 0 30px;
    border-right: 0;
    border-bottom: 1px solid var(--oel-border);
  }

  .oel-loss-item h3,
  .oel-role-item h3 {
    margin-top: 22px;
  }

  .oel-loss-item small,
  .oel-role-item small {
    margin-top: 20px;
  }

  .oel-role-item::before {
    right: 0;
    left: 0;
  }

  .oel-stage-layout {
    margin-top: 42px;
  }

  .oel-stage-rail {
    grid-template-columns: repeat(7, 102px);
    margin-right: 0;
    padding-right: 0;
    scroll-snap-type: x proximity;
  }

  .oel-stage-rail li {
    scroll-snap-align: start;
  }

  .oel-stage-detail {
    grid-template-columns: 48px 1fr;
    gap: 14px;
    padding: 18px;
  }

  .oel-stage-detail-icon {
    width: 48px;
    height: 48px;
  }

  .oel-stage-detail > button {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .oel-contour-tabs {
    grid-template-columns: repeat(5, 176px);
    margin-top: 40px;
    overflow-y: hidden;
    scrollbar-width: none;
  }

  .oel-contour-tabs::-webkit-scrollbar,
  .oel-stage-rail::-webkit-scrollbar {
    display: none;
  }

  .oel-stage-rail {
    overflow-y: hidden;
    scrollbar-width: none;
  }

  .oel-contour-tabs button {
    min-height: 98px;
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 12px 10px 18px;
  }

  .oel-contour-tab-icon {
    width: 42px;
    height: 42px;
  }

  .oel-contour-workspace {
    margin-top: 16px;
  }

  .oel-contour-head {
    display: grid;
    gap: 16px;
    padding: 18px;
  }

  .oel-contour-head > p {
    align-items: flex-start;
  }

  .oel-contour-title h3 {
    font-size: 19px;
  }

  .oel-stage-layout {
    margin-top: 0;
    padding: 28px 18px 20px;
  }

  .oel-stage-rail::after {
    display: none;
  }

  .oel-contour-result {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: left;
  }

  .oel-contour-cta {
    width: 100%;
    grid-column: auto;
  }

  .oel-contour-foundation {
    align-items: flex-start;
    margin-top: 22px;
    line-height: 1.45;
  }

  .oel-contour-kpis {
    width: 100%;
  }

  .oel-layer {
    grid-template-columns: 1fr;
    gap: 18px;
    margin: 0;
    padding: 20px;
  }

  .oel-layer ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .oel-layer li {
    min-height: 48px;
    border-top: 1px solid rgba(186, 217, 233, 0.14);
    border-left: 0;
  }

  .oel-foundation {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .oel-case-list {
    margin-top: 40px;
  }

  .oel-case-row {
    grid-template-columns: 34px 1fr;
    gap: 18px;
    padding: 30px 0;
  }

  .oel-case-row h3,
  .oel-case-row > div,
  .oel-case-row > div:nth-of-type(2),
  .oel-case-row > button {
    grid-column: 2;
  }

  .oel-case-row > button {
    justify-self: start;
  }

  .oel-pilot-steps {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .oel-pilot-steps::before {
    top: 20px;
    bottom: 20px;
    left: 25px;
    width: 1px;
    height: auto;
  }

  .oel-pilot-steps li {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 0 18px;
  }

  .oel-pilot-steps h3,
  .oel-pilot-steps p {
    grid-column: 2;
  }

  .oel-pilot-steps h3 {
    margin-top: 4px;
  }

  .oel-meeting-result {
    padding: 28px 22px;
  }

  .oel-final {
    min-height: 520px;
    padding: 72px 18px;
  }

  .oel-footer {
    grid-template-columns: 1fr auto;
    gap: 30px 18px;
    padding: 40px 18px;
  }

  .oel-footer > img {
    width: 138px;
  }

  .oel-footer nav {
    grid-column: 1 / -1;
    grid-row: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    justify-content: start;
  }

  .oel-footer small {
    grid-row: 3;
  }
}

@media (max-width: 480px) {
  .oel-header .oel-button {
    display: none;
  }

  .oel-header-actions {
    gap: 0;
  }
}

@media (max-width: 360px) {
  .oel-header {
    grid-template-columns: minmax(0, 104px) minmax(0, 1fr);
    gap: 8px;
    padding-right: 10px;
    padding-left: 10px;
  }

  .oel-brand {
    width: 104px;
    min-width: 0;
  }

  .oel-header-actions {
    min-width: 0;
  }

  .oel-header .oel-button {
    max-width: 100%;
    min-width: 0;
    padding-right: 10px;
    padding-left: 10px;
    font-size: 11.5px;
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  .oel-page *,
  .oel-page *::before,
  .oel-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* Light product-canvas direction based on the 2026 Smartup visual system. */
.oel-page {
  --oel-midnight: #eef9fc;
  --oel-midnight-2: #e4f5fa;
  --oel-surface: var(--smart-white);
  --oel-ink: #071a25;
  --oel-body: #405865;
  --oel-muted: #6f8793;
  --oel-border: #dcebf1;
  --oel-dark-border: #d2e7ef;
  background: #f8fcfd;
}

.oel-header {
  color: var(--oel-ink);
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: #dcebf1;
  box-shadow: 0 10px 30px rgba(1, 146, 201, 0.07);
}

.oel-nav a {
  color: #3b5360;
}

.oel-nav a:hover {
  color: var(--smart-blue);
}

.oel-language-trigger {
  color: var(--oel-ink);
  background: #f3f9fb;
  border-color: #cfe3eb;
}

.oel-button--ghost {
  color: var(--oel-ink);
  background: var(--smart-white);
  border-color: #abcbd8;
}

.oel-button--ghost:hover {
  color: var(--smart-blue);
  background: #f4fbfd;
  border-color: var(--smart-blue);
}

.oel-hero {
  color: var(--oel-ink);
  background: #eef9fc;
  border-bottom: 1px solid #d9edf3;
}

.oel-hero-inner {
  min-height: 720px;
}

.oel-hero h1 {
  color: var(--oel-ink);
  font-size: clamp(48px, 4.3vw, 66px);
}

.oel-hero h1 span:nth-child(2) {
  width: fit-content;
  margin: 8px 0;
  padding: 0.04em 0.16em 0.09em;
  color: #063226;
  background: #bff1db;
  border-radius: 14px;
}

.oel-hero h1 span:nth-child(3) {
  color: var(--smart-blue);
  font-size: 0.58em;
  letter-spacing: -0.025em;
  line-height: 1.24;
}

.oel-hero-copy > p {
  color: #3d5663;
}

.oel-proof {
  border-top-color: #cfe5ed;
}

.oel-proof strong {
  color: var(--oel-ink);
  font-size: 21px;
}

.oel-proof span {
  color: #607986;
}

.oel-proof-source {
  color: #78909b;
}

.oel-control-tower {
  min-height: 560px;
  overflow: hidden;
  background: var(--smart-white);
  border: 1px solid #d4e8ef;
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(1, 146, 201, 0.12);
}

.oel-control-tower > img {
  z-index: 0;
  object-fit: contain;
  object-position: 50% 50%;
  border-radius: 28px;
  opacity: 1;
  -webkit-mask-image: none;
  mask-image: none;
}

.oel-demo-badge {
  color: #496570;
  background: rgba(255, 255, 255, 0.94);
  border-color: #c9e2eb;
  box-shadow: 0 8px 20px rgba(7, 46, 65, 0.08);
}

.oel-live-card {
  color: var(--oel-ink);
  background: rgba(255, 255, 255, 0.96);
  border-color: #cde4ec;
  box-shadow: 0 16px 34px rgba(4, 70, 97, 0.12);
}

.oel-live-card span {
  color: #6d8590;
}

.oel-live-card small {
  color: #0b9e65;
}

.oel-section {
  background: transparent;
}

.oel-loss-grid,
.oel-role-grid {
  gap: 14px;
  border: 0;
}

.oel-loss-item,
.oel-role-item {
  min-height: 292px;
  padding: 28px;
  background: var(--smart-white);
  border: 1px solid var(--oel-border);
  border-radius: 20px;
  box-shadow: 0 16px 36px rgba(4, 70, 97, 0.06);
}

.oel-loss-item:first-child,
.oel-loss-item:last-child,
.oel-role-item:first-child,
.oel-role-item:last-child {
  padding: 28px;
}

.oel-role-item::before {
  right: 28px;
  left: 28px;
  background: var(--smart-green);
}

.oel-role-item:first-child::before,
.oel-role-item:last-child::before {
  right: 28px;
  left: 28px;
}

.oel-loop {
  color: var(--oel-ink);
  background: #eef9fc;
  border-block: 1px solid #d8ecf3;
}

.oel-loop-copy p,
.oel-platform-copy p {
  color: var(--oel-body);
}

.oel-contour-tabs {
  gap: 10px;
  border-bottom: 0;
}

.oel-contour-tabs button {
  color: #415c69;
  background: var(--smart-white);
  border: 1px solid #d4e7ee;
  border-radius: 16px 16px 0 0;
}

.oel-page .oel-contour-tabs button[role="tab"][aria-selected="false"] {
  color: #526c78 !important;
}

.oel-contour-tabs li:last-child button {
  border-right: 1px solid #d4e7ee;
}

.oel-contour-tabs button::after {
  right: 14px;
  left: 14px;
  height: 3px;
  background: var(--smart-green);
  box-shadow: none;
}

.oel-contour-tabs button:hover,
.oel-contour-tabs button.is-active {
  color: var(--oel-ink);
  background: #e7faf1;
  border-color: #9cdfbf;
}

.oel-contour-tab-icon,
.oel-contour-title-icon {
  color: var(--smart-blue);
  background: #eff9fc;
  border-color: #9ed8ea;
}

.oel-contour-tabs button.is-active .oel-contour-tab-icon {
  color: #0b9e65;
  background: var(--smart-white);
  border-color: var(--smart-green);
  box-shadow: 0 0 0 6px rgba(47, 199, 126, 0.1);
}

.oel-contour-tabs small {
  color: var(--smart-blue);
}

.oel-contour-workspace {
  background: var(--smart-white);
  border-color: #cde3eb;
  border-radius: 20px;
  box-shadow: 0 26px 64px rgba(4, 70, 97, 0.1);
}

.oel-contour-head {
  border-bottom-color: #dcebf1;
}

.oel-contour-title-icon {
  color: #0b9e65;
  border-color: #93ddb9;
}

.oel-contour-title h3,
.oel-contour-outcome h3 {
  color: var(--oel-ink);
}

.oel-contour-title div > span {
  color: #0b9e65;
}

.oel-contour-title i {
  background: var(--smart-green);
  box-shadow: 0 0 0 5px rgba(47, 199, 126, 0.13);
}

.oel-contour-head > p {
  color: #718894;
}

.oel-contour-head > p strong {
  color: #2e4855;
}

.oel-stage-rail::before {
  background: var(--smart-green);
  opacity: 0.46;
}

.oel-stage-rail::after {
  border-color: rgba(47, 199, 126, 0.5);
}

.oel-stage-rail button {
  color: #607984;
}

.oel-stage-rail button.is-active {
  color: #08764a;
}

.oel-stage-icon {
  color: var(--smart-blue);
  background: var(--smart-white);
  border-color: #bcdbe7;
}

.oel-stage-rail small {
  color: #90a3ac;
}

.oel-stage-detail {
  background: #f2f9fb;
  border-color: #d3e7ee;
}

.oel-stage-detail-icon {
  color: #0b9e65;
  background: #e4f8ee;
  border-color: #a5e1c3;
}

.oel-stage-detail span,
.oel-contour-outcome > span {
  color: #68828e;
}

.oel-stage-detail h3 {
  color: var(--oel-ink);
}

.oel-stage-detail h3 strong {
  color: #0b9e65;
}

.oel-stage-detail p {
  color: #4f6975;
}

.oel-stage-detail > button {
  min-height: 44px;
  color: #006b93;
}

.oel-contour-result {
  border-top-color: #dcebf1;
}

.oel-contour-kpis li {
  color: #087caf;
  background: #edf8fc;
  border-color: #cce5ef;
}

.oel-contour-foundation {
  color: #526e7a;
}

.oel-contour-foundation svg {
  color: var(--smart-blue);
}

.oel-platform {
  color: var(--oel-ink);
  background: var(--smart-white);
  border-block: 1px solid #dcebf1;
}

.oel-layer {
  background: var(--smart-white);
  border-color: #b9dfea;
  box-shadow: 0 16px 34px rgba(4, 70, 97, 0.06);
  transform: none;
}

.oel-layer--1,
.oel-layer--2,
.oel-layer--3 {
  background: var(--smart-white);
}

.oel-layer--3 {
  border-color: #8edbb5;
}

.oel-layer-title svg {
  color: var(--smart-blue);
}

.oel-layer--3 .oel-layer-title svg {
  color: #0b9e65;
}

.oel-layer li {
  color: #3e5865;
  border-left-color: #d9e9ef;
}

.oel-foundation {
  color: #4a6571;
  background: #eef8fb;
  border-color: #d2e7ef;
}

.oel-case-list {
  display: grid;
  gap: 14px;
  border-top: 0;
}

.oel-case-row {
  min-height: 160px;
  padding: 24px 28px;
  background: var(--smart-white);
  border: 1px solid var(--oel-border);
  border-radius: 20px;
  box-shadow: 0 14px 32px rgba(4, 70, 97, 0.05);
}

.oel-meeting-result {
  background: #eaf9f2;
  border-color: #bfe8d3;
}

.oel-final {
  color: var(--oel-ink);
  background: #eef9fc;
  border-top-color: #d8ecf3;
}

.oel-final h2 {
  color: var(--oel-ink);
}

.oel-final-contact a {
  color: #486470;
}

.oel-final-contact a:hover {
  color: var(--smart-blue);
}

.oel-final-visual {
  width: min(430px, 100%);
  opacity: 1;
  mix-blend-mode: normal;
  border: 1px solid #d2e7ef;
  border-radius: 24px;
  box-shadow: 0 22px 54px rgba(1, 146, 201, 0.1);
}

.oel-footer {
  background: var(--smart-black);
}

@media (max-width: 900px) {
  .oel-hero-inner {
    min-height: auto;
  }

  .oel-control-tower {
    min-height: 520px;
  }

  .oel-contour-tabs button {
    border-radius: 14px 14px 0 0;
  }
}

@media (max-width: 680px) {
  .oel-hero h1 span:nth-child(2) {
    border-radius: 10px;
  }

  .oel-hero h1 span:nth-child(3) {
    margin-top: 12px;
    font-size: 0.64em;
  }

  .oel-control-tower {
    min-height: 420px;
    margin: 16px 0 0;
    border-radius: 22px;
  }

  .oel-control-tower > img {
    border-radius: 22px;
  }

  .oel-loss-item,
  .oel-loss-item:first-child,
  .oel-loss-item:last-child,
  .oel-role-item,
  .oel-role-item:first-child,
  .oel-role-item:last-child {
    padding: 24px;
    border: 1px solid var(--oel-border);
    border-radius: 18px;
  }

  .oel-case-row {
    padding: 26px 22px;
  }

  .oel-layer li {
    border-top-color: #d9e9ef;
  }
}

@media (max-width: 420px) {
  .oel-header {
    grid-template-columns: minmax(96px, 1fr) auto;
    padding-right: 12px;
    padding-left: 12px;
  }

  .oel-brand {
    width: 108px;
  }

  .oel-header-actions {
    gap: 6px;
  }

  .oel-language-trigger {
    min-width: 46px;
    padding: 0 7px;
  }

  .oel-language-trigger > svg:first-child {
    display: none;
  }

  .oel-header .oel-button {
    padding: 0 10px;
    font-size: 11px;
  }
}

/* ============================================================
   Smartup social design language — web adaptation
   The social system uses a brand-gradient stage, white product
   windows, mint marker accents and large operational KPIs.
   ============================================================ */

.oel-page {
  --oel-ink: #071a25;
  --oel-body: #405865;
  --oel-muted: #718792;
  --oel-border: #d8e9ef;
  --oel-soft-blue: #edf8fb;
  --oel-soft-green: #e8f9f1;
  --oel-marker: #bdf0da;
  --oel-container: 1360px;
  background: #f7fbfc;
}

.oel-header {
  height: 82px;
  grid-template-columns: 170px minmax(0, 1fr) auto;
  padding-inline: max(28px, calc((100vw - var(--oel-container)) / 2));
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(1, 146, 201, 0.14);
  box-shadow: 0 10px 34px rgba(7, 26, 37, 0.06);
}

.oel-brand {
  width: 150px;
}

.oel-nav {
  gap: clamp(22px, 2.8vw, 44px);
}

.oel-nav a {
  color: #314b58;
  font-weight: 600;
}

.oel-nav a:hover {
  color: var(--smart-blue);
}

.oel-header-actions {
  gap: 12px;
}

.oel-language-trigger {
  min-height: 48px;
  padding-inline: 14px;
  color: var(--oel-ink);
  background: #f2f8fa;
  border-color: #d2e4ea;
  border-radius: var(--radius-btn, 12px);
}

.oel-button {
  min-height: 50px;
  padding-inline: 24px;
  border-radius: var(--radius-btn, 12px);
  box-shadow: 0 12px 28px rgba(47, 199, 126, 0.17);
}

.oel-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(47, 199, 126, 0.23);
}

.oel-button--small {
  min-height: 48px;
  padding-inline: 20px;
}

.oel-button--ghost {
  color: var(--oel-ink);
  background: var(--smart-white);
  border-color: rgba(7, 26, 37, 0.2);
  box-shadow: none;
}

.oel-button--ghost:hover {
  color: var(--oel-ink);
  background: #f7fcfd;
  border-color: var(--smart-blue);
  box-shadow: 0 12px 28px rgba(1, 146, 201, 0.13);
}

.oel-hero {
  position: relative;
  color: var(--smart-white);
  background: var(--smart-gradient);
  border-bottom: 0;
}

.oel-hero-inner {
  width: min(var(--oel-container), calc(100% - 56px));
  min-height: 790px;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  grid-template-areas:
    "copy visual"
    "proof proof";
  column-gap: clamp(44px, 5vw, 82px);
  row-gap: 38px;
  align-items: center;
  padding: 76px 0 42px;
}

.oel-hero-copy {
  grid-area: copy;
}

.oel-eyebrow {
  margin-bottom: 20px;
  color: var(--smart-white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.oel-hero h1 {
  max-width: 760px;
  color: var(--smart-white);
  font-size: clamp(56px, 5.15vw, 78px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.oel-hero h1 span:nth-child(2) {
  width: fit-content;
  margin: 10px 0 0;
  padding: 0.02em 0.14em 0.09em;
  color: #063326;
  background: var(--oel-marker);
  border-radius: var(--radius-marker, 24px);
}

.oel-hero h1 span:nth-child(3) {
  max-width: 620px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.43em;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.14;
}

.oel-hero-copy > p {
  max-width: 650px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 500;
  line-height: 1.55;
}

.oel-hero .oel-actions {
  margin-top: 30px;
}

.oel-hero .oel-button--ghost {
  color: var(--smart-white);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

.oel-hero .oel-button--ghost:hover {
  color: var(--oel-ink);
  background: var(--smart-white);
  border-color: var(--smart-white);
}

.oel-control-tower {
  grid-area: visual;
  min-height: 560px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--radius-2xl, 18px);
  box-shadow: 0 34px 90px rgba(4, 53, 71, 0.22);
}

.oel-control-tower > img {
  inset: 16px;
  width: calc(100% - 32px);
  height: calc(100% - 32px);
  object-fit: contain;
  border-radius: var(--radius-xl, 14px);
}

.oel-demo-badge {
  top: 18px;
  right: 18px;
  color: #3f5966;
  background: rgba(255, 255, 255, 0.94);
  border-color: #d7e7ed;
  border-radius: var(--radius-chip, 10px);
  box-shadow: var(--shadow-sm);
}

.oel-live-card {
  width: 190px;
  padding: 14px 16px;
  color: var(--oel-ink);
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(1, 146, 201, 0.22);
  border-radius: var(--radius-lg, 12px);
  box-shadow: 0 18px 38px rgba(7, 60, 79, 0.14);
}

.oel-live-card span {
  color: #667e89;
}

.oel-live-card small {
  color: #08784b;
}

.oel-live-card--territory {
  top: 54px;
  left: 26px;
}

.oel-live-card--shelf {
  top: 154px;
  right: 10px;
}

.oel-live-card--cash {
  right: 54px;
  bottom: 34px;
}

.oel-hero-proof-band {
  grid-area: proof;
  padding: 22px 26px 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius-2xl, 18px);
  backdrop-filter: blur(12px);
}

.oel-hero-proof-band .oel-proof {
  margin: 0;
  padding: 0;
  border: 0;
}

.oel-hero-proof-band .oel-proof li {
  min-height: 64px;
  padding: 0 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.oel-hero-proof-band .oel-proof li:first-child {
  padding-left: 0;
}

.oel-hero-proof-band .oel-proof li:last-child {
  padding-right: 0;
  border-right: 0;
}

.oel-hero-proof-band .oel-proof li::before {
  display: none;
}

.oel-hero-proof-band .oel-proof strong {
  color: var(--smart-white);
  font-size: clamp(26px, 2.6vw, 38px);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.oel-hero-proof-band .oel-proof span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-weight: 600;
}

.oel-hero-proof-band .oel-proof-source {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.62);
  text-align: right;
}

.oel-section {
  padding-block: 112px;
}

.oel-section-head h2,
.oel-loop h2,
.oel-platform h2,
.oel-final h2 {
  color: var(--oel-ink);
  font-size: clamp(42px, 4.35vw, 64px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.oel-section-head p,
.oel-loop-copy p,
.oel-platform-copy p {
  color: var(--oel-body);
  font-weight: 500;
}

.oel-loss-grid,
.oel-role-grid {
  gap: 16px;
  margin-top: 52px;
}

.oel-loss-item,
.oel-role-item {
  min-height: 304px;
  padding: 28px;
  background: var(--smart-white);
  border: 1px solid var(--oel-border);
  border-top: 3px solid var(--smart-blue);
  border-radius: var(--radius-xl, 14px);
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration-base) var(--ease-out), box-shadow var(--duration-base) var(--ease-out);
}

.oel-loss-item:nth-child(even),
.oel-role-item:nth-child(even) {
  border-top-color: var(--smart-green);
}

.oel-loss-item:hover,
.oel-role-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.oel-loss-item h3,
.oel-role-item h3 {
  margin-top: 30px;
  font-size: 24px;
  font-weight: 650;
}

.oel-loss-owner {
  color: var(--smart-blue);
}

.oel-loss-item small,
.oel-role-item small {
  color: #667e89;
  font-weight: 550;
}

.oel-loop {
  color: var(--smart-white);
  background: var(--smart-gradient);
  border-block: 0;
}

.oel-loop h2 {
  color: var(--smart-white);
}

.oel-loop-copy p {
  color: rgba(255, 255, 255, 0.8);
}

.oel-contour-tabs {
  gap: 8px;
  margin-top: 44px;
}

.oel-contour-tabs button {
  min-height: 94px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-xl, 14px) var(--radius-xl, 14px) 0 0;
  backdrop-filter: blur(10px);
}

.oel-page .oel-contour-tabs button[role="tab"][aria-selected="false"] {
  color: rgba(255, 255, 255, 0.82) !important;
}

.oel-contour-tabs li:last-child button {
  border-right-color: rgba(255, 255, 255, 0.3);
}

.oel-contour-tabs button:hover,
.oel-contour-tabs button.is-active {
  color: var(--oel-ink);
  background: var(--smart-white);
  border-color: var(--smart-white);
}

.oel-contour-tabs button::after {
  background: var(--smart-green);
}

.oel-contour-tabs button:not(.is-active) .oel-contour-tab-icon {
  color: var(--smart-white);
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.28);
}

.oel-contour-tabs button:not(.is-active) small {
  color: rgba(255, 255, 255, 0.72);
}

.oel-contour-workspace {
  border: 0;
  border-radius: 0 0 var(--radius-2xl, 18px) var(--radius-2xl, 18px);
  box-shadow: 0 34px 90px rgba(4, 53, 71, 0.22);
}

.oel-contour-head {
  background: #fbfdfd;
}

.oel-stage-detail {
  background: #f0f7f8;
  border-color: #d9e8ed;
  border-radius: var(--radius-xl, 14px);
}

.oel-contour-kpis li {
  color: #075f80;
  background: #eaf7fb;
  border-color: #c9e7f1;
  border-radius: var(--radius-chip, 10px);
}

.oel-contour-foundation {
  color: rgba(255, 255, 255, 0.82);
}

.oel-contour-foundation svg {
  color: var(--smart-white);
}

.oel-roles {
  background: #f7fbfc;
}

.oel-role-item::before {
  display: none;
}

.oel-platform {
  background: var(--smart-white);
}

.oel-platform-inner {
  gap: clamp(48px, 7vw, 104px);
}

.oel-platform h2 {
  font-size: clamp(42px, 3.75vw, 56px);
  line-height: 1.06;
}

.oel-layer {
  min-height: 96px;
  border-color: #cfe5ed;
  border-radius: var(--radius-xl, 14px);
  box-shadow: var(--shadow-sm);
}

.oel-layer--1 {
  border-left: 4px solid var(--smart-blue);
}

.oel-layer--2 {
  border-left: 4px solid #5ebbdc;
}

.oel-layer--3 {
  border-left: 4px solid var(--smart-green);
}

.oel-foundation {
  background: var(--oel-soft-blue);
  border-color: #cfe5ed;
  border-radius: var(--radius-lg, 12px);
}

.oel-cases {
  background: #f7fbfc;
}

.oel-case-list {
  gap: 16px;
}

.oel-case-row {
  min-height: 154px;
  background: var(--smart-white);
  border-radius: var(--radius-xl, 14px);
  box-shadow: var(--shadow-sm);
}

.oel-case-row strong {
  color: #0a9d63;
}

.oel-case-note {
  color: #647c87;
  font-size: 12px;
  line-height: 1.55;
}

.oel-pilot {
  align-items: stretch;
}

.oel-pilot-steps li > span {
  color: var(--smart-blue);
  background: var(--smart-white);
  border-color: #b9deea;
  box-shadow: 0 0 0 7px #eef8fb;
}

.oel-meeting-result {
  color: var(--smart-white);
  background: var(--smart-gradient);
  border: 0;
  border-radius: var(--radius-2xl, 18px);
  box-shadow: var(--shadow-lg);
}

.oel-meeting-result h3,
.oel-meeting-result li {
  color: var(--smart-white);
}

.oel-meeting-result li::marker {
  color: var(--smart-white);
}

.oel-final {
  color: var(--smart-white);
  background: var(--smart-gradient);
  border-top: 0;
}

.oel-final h2 {
  color: var(--smart-white);
}

.oel-final .oel-button--ghost {
  color: var(--smart-white);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.5);
}

.oel-final .oel-button--ghost:hover {
  color: var(--oel-ink);
  background: var(--smart-white);
  border-color: var(--smart-white);
}

.oel-final-contact a {
  color: rgba(255, 255, 255, 0.8);
}

.oel-final-contact a:hover {
  color: var(--smart-white);
}

.oel-final-visual {
  padding: 14px;
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(255, 255, 255, 0.52);
  border-radius: var(--radius-2xl, 18px);
  box-shadow: 0 30px 80px rgba(4, 53, 71, 0.2);
}

@media (max-width: 1120px) {
  .oel-hero-inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
    column-gap: 38px;
  }

  .oel-hero h1 {
    font-size: clamp(52px, 5.8vw, 68px);
  }

  .oel-live-card {
    width: 176px;
  }
}

@media (max-width: 900px) {
  .oel-header {
    height: 74px;
  }

  .oel-hero-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "visual"
      "proof";
    gap: 34px;
    padding-block: 58px 34px;
  }

  .oel-hero-copy {
    max-width: 760px;
  }

  .oel-control-tower {
    min-height: 520px;
  }

  .oel-hero-proof-band .oel-proof li {
    padding-inline: 16px;
  }

  .oel-contour-tabs button {
    border-radius: var(--radius-xl, 14px);
  }

  .oel-contour-workspace {
    border-radius: var(--radius-2xl, 18px);
  }
}

@media (max-width: 680px) {
  .oel-hero-inner {
    width: min(100% - 32px, var(--oel-container));
    padding-top: 44px;
  }

  .oel-hero h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .oel-hero h1 span:nth-child(2) {
    border-radius: 14px;
  }

  .oel-hero h1 span:nth-child(3) {
    font-size: 0.52em;
  }

  .oel-control-tower {
    min-height: 410px;
    margin-top: 0;
  }

  .oel-live-card {
    width: 156px;
    padding: 11px 12px;
  }

  .oel-live-card--territory {
    top: 48px;
    left: 10px;
  }

  .oel-live-card--shelf {
    top: 132px;
    right: 6px;
  }

  .oel-live-card--cash {
    right: 28px;
    bottom: 22px;
  }

  .oel-hero-proof-band {
    padding: 18px;
  }

  .oel-hero-proof-band .oel-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 0;
  }

  .oel-hero-proof-band .oel-proof li,
  .oel-hero-proof-band .oel-proof li:first-child,
  .oel-hero-proof-band .oel-proof li:last-child {
    padding-inline: 14px;
  }

  .oel-hero-proof-band .oel-proof li:nth-child(2) {
    border-right: 0;
  }

  .oel-hero-proof-band .oel-proof-source {
    text-align: left;
  }

  .oel-section {
    padding-block: 78px;
  }

  .oel-loss-item,
  .oel-role-item {
    min-height: 0;
  }

  .oel-meeting-result {
    border-radius: var(--radius-xl, 14px);
  }
}

@media (max-width: 420px) {
  .oel-hero-inner {
    width: min(100% - 24px, var(--oel-container));
  }

  .oel-hero h1 {
    font-size: clamp(38px, 12.5vw, 48px);
  }

  .oel-control-tower {
    min-height: 350px;
  }

  .oel-control-tower > img {
    inset: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }

  .oel-demo-badge {
    top: 10px;
    right: 10px;
  }

  .oel-live-card {
    width: 140px;
    font-size: 10px;
  }

  .oel-live-card strong {
    font-size: 13px;
  }

  .oel-live-card small {
    display: none;
  }
}

/* Landing locale, FAQ and mobile UX hardening — 2026-07 */
.oel-language-option.is-active {
  color: var(--smart-black);
  background: rgba(47, 199, 126, 0.16);
}

.oel-language-option.is-active .oel-language-option-code {
  color: var(--smart-black);
  background: var(--smart-white);
  border-color: var(--smart-green);
}

.oel-language.is-navigating .oel-language-trigger {
  cursor: progress;
  opacity: 0.72;
}

.oel-language-option[aria-disabled="true"] {
  pointer-events: none;
}

.oel-faq {
  scroll-margin-top: 96px;
  background: #f8fcfd;
}

.oel-faq-list {
  margin-top: 48px;
  border-top: 1px solid var(--oel-border);
}

.oel-faq-item {
  border-bottom: 1px solid var(--oel-border);
}

.oel-faq-item summary {
  min-height: 92px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 18px;
  padding: 20px 4px;
  color: var(--oel-ink);
  cursor: pointer;
  list-style: none;
}

.oel-faq-item summary::-webkit-details-marker {
  display: none;
}

.oel-faq-item summary > span {
  color: var(--smart-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.oel-faq-item summary > strong {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  line-height: 1.25;
}

.oel-faq-item summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--smart-black);
  background: rgba(47, 199, 126, 0.24);
  border-radius: 50%;
  font-size: 21px;
  font-weight: 500;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease;
}

.oel-faq-item[open] summary::after {
  background: rgba(1, 146, 201, 0.18);
  transform: rotate(45deg);
}

.oel-faq-item p {
  max-width: 930px;
  margin: -4px 58px 32px 72px;
  color: var(--oel-body);
  font-size: 17px;
  line-height: 1.65;
}

@media (max-width: 680px) {
  .oel-header .oel-button {
    min-height: 44px;
  }

  .oel-language-menu {
    position: fixed;
    z-index: 120;
    top: 84px;
    right: 12px;
    left: 12px;
    width: auto;
    max-height: calc(100svh - 96px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 10px;
    border-radius: 18px;
    box-shadow: 0 24px 70px rgba(4, 50, 70, 0.22);
  }

  .oel-language-option {
    min-height: 52px;
  }

  .oel-faq-list {
    margin-top: 34px;
  }

  .oel-faq-item summary {
    min-height: 80px;
    grid-template-columns: 36px minmax(0, 1fr) 26px;
    gap: 12px;
    padding: 18px 0;
  }

  .oel-faq-item summary > strong {
    font-size: 19px;
  }

  .oel-faq-item summary::after {
    width: 26px;
    height: 26px;
    font-size: 19px;
  }

  .oel-faq-item p {
    margin: -2px 0 26px 48px;
    font-size: 16px;
    line-height: 1.6;
  }
}

@media (max-width: 420px) {
  .oel-language-menu {
    top: 80px;
    right: 8px;
    left: 8px;
  }

  .oel-faq-item summary {
    grid-template-columns: 30px minmax(0, 1fr) 24px;
    gap: 10px;
  }

  .oel-faq-item p {
    margin-left: 40px;
  }
}

/* Tablet header compaction for long regional labels */
@media (max-width: 900px) {
  .oel-header {
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 16px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .oel-header-actions {
    min-width: 0;
  }

  .oel-language-name,
  .oel-cta-label--desktop {
    display: none;
  }

  .oel-cta-label--mobile {
    display: inline;
  }
}
/* Language switcher UX refresh — 2026-07-25 */
.oel-language.is-open {
  z-index: 121;
}

/* Keep the locale sheet interactive when the non-modal cookie banner is visible. */
.oel-header:has(.oel-language.is-open) {
  z-index: 140;
}

.oel-language-trigger {
  min-width: 142px;
  justify-content: flex-start;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.1);
}

.oel-language-short {
  min-width: 30px;
  padding: 5px 6px;
  border-radius: 8px;
  color: var(--smart-white);
  background: rgba(1, 146, 201, 0.34);
  text-align: center;
  line-height: 1;
}

.oel-language-trigger:hover .oel-language-short,
.oel-language-trigger:focus-visible .oel-language-short,
.oel-language.is-open .oel-language-short {
  color: var(--smart-black);
  background: rgba(47, 199, 126, 0.28);
}

.oel-language-trigger > svg:last-child {
  margin-left: auto;
}

.oel-language-backdrop {
  display: none;
}

.oel-language-menu {
  width: min(306px, calc(100vw - 24px));
  gap: 0;
  padding: 10px;
  border-color: #d8e8ed;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
}

.oel-language-menu-header {
  display: grid;
  gap: 4px;
  margin-bottom: 8px;
  padding: 8px 10px 14px;
  border-bottom: 1px solid #e2edf1;
}

.oel-language-menu-header strong {
  color: var(--smart-black);
  font-size: 16px;
  font-weight: 750;
  line-height: 1.25;
}


.oel-language-options {
  display: grid;
  gap: 4px;
}

.oel-language-option {
  min-height: 50px;
  grid-template-columns: 42px minmax(0, 1fr) 20px;
  padding: 6px 10px 6px 7px;
  border: 1px solid transparent;
  border-radius: 13px;
  color: #14252d;
  font-size: 14px;
  font-weight: 680;
}

.oel-language-option:hover,
.oel-language-option:focus-visible {
  color: var(--smart-black);
  border-color: rgba(1, 146, 201, 0.26);
  background: rgba(1, 146, 201, 0.1);
  box-shadow: inset 3px 0 0 var(--smart-blue);
}

.oel-language-option.is-active {
  color: var(--smart-black);
  border-color: rgba(47, 199, 126, 0.42);
  background: rgba(47, 199, 126, 0.15);
  box-shadow: inset 3px 0 0 var(--smart-green);
}

.oel-language-option-code {
  min-height: 34px;
  border-color: #cfe3eb;
  color: #005d80;
  background: #f3fafc;
}

.oel-language-option.is-active .oel-language-option-code {
  border-color: var(--smart-green);
  color: var(--smart-black);
  background: var(--smart-white);
}

@media (max-width: 900px) {
  .oel-language-trigger {
    min-width: 72px;
  }
}

@media (max-width: 680px) {
  .oel-header:has(.oel-language.is-open) {
    backdrop-filter: none;
  }

  .oel-language-backdrop {
    position: fixed;
    z-index: 119;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: rgba(0, 0, 0, 0.46);
    backdrop-filter: blur(3px);
    cursor: default;
  }

  .oel-language-menu {
    position: fixed;
    z-index: 120;
    top: auto;
    right: 12px;
    bottom: calc(20px + env(safe-area-inset-bottom, 0px));
    left: 12px;
    width: auto;
    max-height: calc(100svh - 24px);
    padding: 12px;
    border-radius: 24px;
    overflow-y: auto;
    overscroll-behavior: contain;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.3);
    animation: oel-language-sheet-in 180ms ease-out both;
  }

  .oel-language-menu-header {
    padding: 8px 8px 14px;
  }

  .oel-language-menu-header strong {
    font-size: 18px;
  }


  .oel-language-option {
    min-height: 54px;
    font-size: 15px;
  }
}

@keyframes oel-language-sheet-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .oel-language-menu {
    animation: none;
  }
}
/* Compact header language control */
.oel-header-actions {
  gap: 0;
}

.oel-language-trigger {
  min-width: 78px;
  min-height: 44px;
  justify-content: center;
  gap: 6px;
  padding-inline: 10px;
  border-radius: 999px;
}

.oel-language-short,
.oel-language-trigger:hover .oel-language-short,
.oel-language-trigger:focus-visible .oel-language-short,
.oel-language.is-open .oel-language-short {
  min-width: auto;
  padding: 0;
  color: var(--smart-blue);
  background: transparent;
}

.oel-language-trigger > svg:first-child {
  display: none;
}

.oel-language-trigger > svg:last-child {
  margin-left: 0;
}

@media (max-width: 680px) {
  .oel-language-trigger {
    min-width: 68px;
    padding-inline: 8px;
  }
}

@media (max-width: 420px) {
  .oel-language-trigger {
    width: 52px;
    min-width: 52px;
    gap: 4px;
    padding-inline: 6px;
  }
}

/* Standalone autonomy, dialog and rendering performance */
.oel-page > section[id],
.oel-page > div[id] {
  scroll-margin-top: 96px;
}

.oel-page > section:not(.oel-hero),
.oel-footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 860px;
}

.oel-full-site-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 750;
}

.oel-full-site-link span {
  color: var(--smart-green);
  font-size: 1.05em;
}

.oel-contact-dialog {
  position: fixed;
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 24px;
  border: 0;
  background: transparent;
  overflow: auto;
}

.oel-contact-dialog[open] {
  display: grid;
  place-items: center;
}

.oel-contact-dialog::backdrop {
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(8px);
}

.oel-contact-dialog-card {
  position: relative;
  width: min(560px, 100%);
  padding: clamp(28px, 5vw, 48px);
  color: var(--oel-ink);
  background: var(--smart-white);
  border: 1px solid rgba(1, 146, 201, 0.22);
  border-radius: var(--radius-2xl, 18px);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.28);
}

.oel-contact-dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  border: 1px solid #d5e5eb;
  border-radius: 999px;
  color: var(--oel-ink);
  background: #f5fafb;
  font: inherit;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.oel-contact-dialog-close:hover,
.oel-contact-dialog-close:focus-visible {
  border-color: var(--smart-blue);
  background: #eaf7fb;
}

.oel-contact-dialog-eyebrow {
  display: block;
  margin: 0 52px 16px 0;
  color: var(--smart-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.oel-contact-dialog h2 {
  max-width: 470px;
  margin: 0;
  color: var(--oel-ink);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.oel-contact-dialog p {
  max-width: 470px;
  margin: 18px 0 0;
  color: var(--oel-body);
  font-size: 17px;
  line-height: 1.55;
}

.oel-contact-dialog-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}

.oel-contact-dialog-actions .oel-button {
  justify-content: center;
  text-decoration: none;
}

.oel-contact-dialog-actions .oel-button--ghost {
  color: var(--oel-ink);
  background: var(--smart-white);
  border-color: rgba(7, 26, 37, 0.2);
}

.oel-contact-dialog small {
  display: block;
  margin-top: 18px;
  color: #617986;
  font-size: 13px;
  text-align: center;
}

@media (max-width: 680px) {
  .oel-contact-dialog {
    align-items: end;
    padding: 12px;
  }

  .oel-contact-dialog[open] {
    place-items: end center;
  }

  .oel-contact-dialog-card {
    padding: 30px 22px 24px;
    border-radius: 22px;
  }

  .oel-contact-dialog h2 {
    padding-right: 26px;
    font-size: clamp(30px, 9vw, 40px);
  }

  .oel-contact-dialog-actions {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .oel-page {
    scroll-behavior: auto;
  }
}

/* Contour interaction refinement: one connected desktop workspace, explicit mobile progress. */
.oel-contour-nav-meta,
.oel-stage-rail-meta {
  display: none;
}

.oel-contour-workspace {
  margin-top: 0;
}

/* A scroll container clips active/focus effects; reserve space above the 60px stage icon. */
.oel-stage-rail {
  padding-top: 12px;
}

.oel-stage-rail::before {
  top: 42px;
}

@media (min-width: 1121px) {
  .oel-contour-result {
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
    gap: 14px 24px;
    align-items: start;
  }

  .oel-contour-outcome {
    grid-row: 1 / span 2;
    align-self: center;
  }

  .oel-contour-kpis,
  .oel-contour-cta {
    grid-column: 2;
  }

  .oel-contour-cta {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 900px) {
  .oel-contour-nav-meta,
  .oel-stage-rail-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .oel-contour-nav-meta {
    margin-top: 34px;
    color: rgba(255, 255, 255, 0.78);
  }

  .oel-contour-nav-meta span,
  .oel-stage-rail-meta span {
    font-size: 11px;
    font-weight: 760;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .oel-contour-nav-meta strong,
  .oel-stage-rail-meta strong {
    direction: ltr;
    unicode-bidi: isolate;
    font-size: 12px;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.04em;
  }

  .oel-contour-nav-meta strong {
    color: var(--smart-white);
  }

  .oel-contour-tabs {
    margin-top: 10px;
  }

  .oel-contour-tabs li {
    scroll-snap-align: center;
  }

  .oel-contour-workspace {
    margin-top: 16px;
  }

  .oel-stage-rail-meta {
    margin-bottom: 10px;
    color: #68828e;
  }

  .oel-stage-rail-meta strong {
    color: #087caf;
  }
}

@media (max-width: 680px) {
  .oel-contour-nav-meta {
    margin-top: 28px;
  }

  .oel-contour-tabs {
    margin-top: 8px;
  }

  .oel-contour-result {
    text-align: start;
  }
}
/* Arabic locale: native RTL flow without changing the LTR language layouts. */
html[dir="rtl"] .oel-page,
html[dir="rtl"] .oel-contact-dialog {
  direction: rtl;
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
}

html[dir="rtl"] .oel-nav,
html[dir="rtl"] .oel-header-actions,
html[dir="rtl"] .oel-actions,
html[dir="rtl"] .oel-final-contact,
html[dir="rtl"] .oel-footer nav,
html[dir="rtl"] .oel-full-site-link {
  direction: rtl;
}

html[dir="rtl"] .oel-language-option-name,
html[dir="rtl"] .oel-contour-tabs button,
html[dir="rtl"] .oel-contour-result,
html[dir="rtl"] .oel-live-card,
html[dir="rtl"] .oel-contact-dialog-card {
  text-align: right;
}

html[dir="rtl"] .oel-arrow {
  transform: scaleX(-1);
}

html[dir="rtl"] .oel-stage-detail h3 strong {
  margin-right: 5px;
  margin-left: 0;
}

html[dir="rtl"] .oel-contact-dialog-close {
  right: auto;
  left: 14px;
}

html[dir="rtl"] .oel-contact-dialog-eyebrow {
  margin: 0 0 16px 52px;
}

html[dir="rtl"] .oel-proof strong,
html[dir="rtl"] .oel-number,
html[dir="rtl"] .oel-case-index,
html[dir="rtl"] .oel-case-row > div strong,
html[dir="rtl"] .oel-contour-tabs small,
html[dir="rtl"] .oel-stage-rail small,
html[dir="rtl"] .oel-final-contact,
html[dir="rtl"] .oel-contact-dialog small {
  direction: ltr;
  unicode-bidi: isolate;
}

@media (min-width: 681px) {
  html[dir="rtl"] .oel-language-menu {
    right: auto;
    left: 0;
  }
}

@media (max-width: 680px) {
  html[dir="rtl"] .oel-contact-dialog h2 {
    padding-right: 0;
    padding-left: 26px;
  }
}

/* P0 conversion, consent and mobile navigation */
.oel-menu-toggle,
.oel-menu-backdrop {
  display: none;
}

.oel-menu-toggle {
  position: relative;
  z-index: 113;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  border: 1px solid #cfe2e9;
  border-radius: 999px;
  color: var(--oel-ink);
  background: #f2f8fa;
  cursor: pointer;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.oel-menu-toggle:hover,
.oel-menu-toggle:focus-visible,
.oel-menu-toggle.is-open {
  color: #006f98;
  border-color: var(--smart-blue);
  background: #eaf7fb;
  box-shadow: 0 0 0 4px rgba(1, 146, 201, 0.12);
}

.oel-menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.oel-menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.oel-menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.oel-menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.oel-footer nav button {
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.76);
  background: transparent;
  font: inherit;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}

.oel-footer nav button:hover,
.oel-footer nav button:focus-visible {
  color: var(--smart-white);
}

.oel-footer address {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-style: normal;
  line-height: 1.5;
}

.oel-contact-dialog-card {
  width: min(720px, 100%);
}

.oel-contact-form {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.oel-contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.oel-contact-form label:not(.oel-contact-consent):not(.oel-contact-honeypot) {
  display: grid;
  gap: 7px;
}

.oel-contact-form label > span {
  color: #395563;
  font-size: 13px;
  font-weight: 720;
}

.oel-contact-form input,
.oel-contact-form select,
.oel-contact-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid #c8dce5;
  border-radius: 12px;
  color: var(--oel-ink);
  background: var(--smart-white);
  font: inherit;
  font-size: 16px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.oel-contact-form input:focus,
.oel-contact-form select:focus,
.oel-contact-form textarea:focus {
  border-color: var(--smart-blue);
  box-shadow: 0 0 0 4px rgba(1, 146, 201, 0.13);
}

.oel-contact-form textarea {
  min-height: 96px;
  padding: 14px;
  line-height: 1.45;
  resize: vertical;
}

.oel-contact-field--full {
  grid-column: 1 / -1;
}

.oel-contact-consent {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: #4d6875;
  font-size: 13px;
  line-height: 1.45;
}

.oel-contact-consent input {
  width: 20px;
  min-height: 20px;
  margin: 1px 0 0;
  accent-color: var(--smart-green);
}

.oel-contact-consent a,
.oel-cookie-banner a {
  color: #087caf;
  font-weight: 700;
}

.oel-contact-form > .oel-button {
  width: 100%;
  justify-content: space-between;
}

.oel-contact-form > .oel-button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.oel-contact-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
}

.oel-contact-dialog .oel-contact-form-error {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid #f3b8bc;
  border-radius: 10px;
  color: #922c36;
  background: #fff4f5;
  font-size: 14px;
}

.oel-contact-success {
  display: grid;
  justify-items: start;
  gap: 14px;
}

.oel-contact-success-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 999px;
  color: #087a50;
  background: rgba(47, 199, 126, 0.16);
}

.oel-contact-success-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.oel-cookie-banner {
  position: fixed;
  z-index: 130;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
  padding: 20px;
  border: 1px solid rgba(1, 146, 201, 0.24);
  border-radius: 18px;
  color: var(--oel-ink);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.oel-cookie-banner h2 {
  margin: 0;
  font-size: 20px;
}

.oel-cookie-banner p {
  margin: 6px 0;
  color: #4d6875;
  font-size: 14px;
  line-height: 1.45;
}

.oel-cookie-banner a {
  font-size: 13px;
}

.oel-cookie-actions {
  display: flex;
  gap: 10px;
}

.oel-cookie-actions .oel-button {
  min-height: 44px;
  white-space: nowrap;
}

@media (max-width: 1120px) {
  .oel-menu-toggle {
    display: inline-flex;
  }

  .oel-menu-backdrop {
    position: fixed;
    z-index: 109;
    inset: 76px 0 0;
    display: block;
    width: 100%;
    height: calc(100dvh - 76px);
    padding: 0;
    border: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
  }

  .oel-header.is-menu-open {
    backdrop-filter: none;
  }

  .oel-header .oel-nav {
    position: fixed;
    z-index: 112;
    top: 88px;
    right: max(20px, calc((100vw - var(--oel-container)) / 2));
    display: flex;
    width: min(360px, calc(100vw - 40px));
    max-height: calc(100dvh - 108px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 4px;
    padding: 12px;
    overflow: auto;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    background: #071b27;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .oel-header .oel-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .oel-header .oel-nav a {
    display: flex;
    min-height: 48px;
    align-items: center;
    padding: 0 14px;
    border-radius: 11px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
  }

  .oel-header .oel-nav a:hover,
  .oel-header .oel-nav a:focus-visible {
    color: var(--smart-black);
    background: var(--smart-green);
  }
}

@media (max-width: 680px) {
  .oel-header-actions {
    gap: 6px;
  }

  .oel-contact-form-grid {
    grid-template-columns: 1fr;
  }

  .oel-contact-dialog-card {
    max-height: calc(100dvh - 24px);
    overflow-y: auto;
  }

  .oel-cookie-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
    grid-template-columns: 1fr;
    gap: 16px;
    width: auto;
    padding: 18px;
  }

  .oel-cookie-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .oel-cookie-actions .oel-button {
    width: 100%;
    justify-content: center;
  }

  .oel-footer {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 22px;
  }

  .oel-footer nav,
  .oel-footer address,
  .oel-footer small {
    grid-column: 1;
    grid-row: auto;
  }

  .oel-footer address {
    max-width: 100%;
  }

  .oel-footer nav a,
  .oel-footer nav button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}

html[dir="rtl"] .oel-header .oel-nav {
  right: auto;
  left: max(20px, calc((100vw - var(--oel-container)) / 2));
}

html[dir="rtl"] .oel-contact-consent {
  grid-template-columns: minmax(0, 1fr) 22px;
}

html[dir="rtl"] .oel-contact-consent input {
  grid-column: 2;
  grid-row: 1;
}

html[dir="rtl"] .oel-contact-consent span {
  grid-column: 1;
  grid-row: 1;
}

@media (prefers-reduced-motion: reduce) {
  .oel-menu-toggle span,
  .oel-header .oel-nav {
    transition: none;
  }
}
/* Legal links point to the language-matched documents on the main Smartup website. */
.oel-inline-legal {
  display: inline;
  padding: 0;
  border: 0;
  color: #087caf;
  background: transparent;
  font: inherit;
  font-weight: 700;
  text-align: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.oel-inline-legal:hover,
.oel-inline-legal:focus-visible {
  color: #005f88;
}

/* Brand review 31 Jul 2026: proof, metrics and conversion close */
.oel-hero h1 { text-wrap: balance; }
.oel-hero h1 span:nth-child(2) { max-width: 100%; }
.oel-hero-proof-band .oel-proof-source { max-width: 1180px; margin-inline-start: auto; line-height: 1.5; }

.oel-contour-kpi-label {
  display: block;
  margin: 0 0 8px;
  color: #58727e;
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.oel-metric-term {
  position: relative;
  display: block;
  border-radius: inherit;
  outline: none;
  cursor: help;
}

.oel-metric-term > small[role="tooltip"] {
  position: absolute;
  z-index: 12;
  right: 0;
  bottom: calc(100% + 10px);
  width: min(280px, 72vw);
  padding: 10px 12px;
  border: 1px solid rgba(1, 146, 201, 0.22);
  border-radius: 10px;
  color: var(--oel-ink);
  background: var(--smart-white);
  box-shadow: 0 16px 36px rgba(4, 53, 71, 0.16);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.oel-metric-term:hover > small[role="tooltip"],
.oel-metric-term:focus-visible > small[role="tooltip"] {
  opacity: 1;
  transform: translateY(0);
}

.oel-metric-term:focus-visible { box-shadow: 0 0 0 3px rgba(1, 146, 201, 0.22); }

.oel-client-wall {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.oel-client-wall li {
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 12px;
  border: 1px solid #d4e7ed;
  border-radius: 12px;
  color: #274552;
  background: var(--smart-white);
  box-shadow: var(--shadow-sm);
  font-size: 12px;
  font-weight: 720;
  line-height: 1.3;
  text-align: center;
}

.oel-case-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
  border-top: 0;
}

.oel-case-row {
  min-height: 460px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 22px;
  padding: 30px;
  border: 1px solid #d5e7ed;
}

.oel-case-row h3 {
  min-height: 2.4em;
  font-size: clamp(24px, 2vw, 32px);
}

.oel-case-metrics { display: grid !important; gap: 0 !important; }

.oel-case-metrics > div {
  min-height: 92px;
  display: grid;
  grid-template-columns: minmax(92px, auto) minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid #e2edf1;
}

.oel-case-metrics > div:first-child { border-top: 0; }

.oel-case-row .oel-case-metrics strong {
  color: var(--smart-green);
  font-size: clamp(25px, 2.25vw, 36px);
}

.oel-case-row .oel-case-metrics span {
  max-width: none;
  color: var(--oel-body);
  font-size: 13px;
  line-height: 1.45;
}

.oel-case-row > button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding: 0;
  border: 0;
  color: #087caf;
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 760;
  text-align: start;
  cursor: pointer;
}

.oel-case-row > button:hover,
.oel-case-row > button:focus-visible { color: #005f88; }
.oel-case-note { max-width: 1080px; margin-top: 24px; }

.oel-pilot { grid-template-columns: minmax(0, 1fr); }
.oel-pilot-main { width: 100%; }
.oel-pilot-action { display: flex; justify-content: flex-start; margin-top: 38px; }

.oel-final {
  min-height: 0;
  grid-template-columns: minmax(0, 0.94fr) minmax(480px, 0.72fr);
  gap: clamp(52px, 6vw, 88px);
  align-items: start;
  padding-block: clamp(60px, 5vw, 78px);
}

.oel-final-copy {
  max-width: 720px;
  padding-top: 6px;
}

.oel-final-eyebrow {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin: 0 0 22px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  color: var(--smart-white);
  background: rgba(255, 255, 255, 0.1);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.oel-final h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(44px, 4.35vw, 68px);
  font-weight: 600;
  letter-spacing: -0.052em;
  line-height: 1.02;
  text-wrap: balance;
}

.oel-final-copy > p {
  max-width: 680px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.58;
}

.oel-final-benefits { margin-top: 38px; }

.oel-final-benefits h3 {
  margin: 0 0 16px;
  color: var(--smart-white);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.oel-final-benefits ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.oel-final-benefits li {
  position: relative;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 20px;
  align-items: start;
  gap: 10px;
  min-height: 118px;
  padding: 17px 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 15px;
  color: rgba(255, 255, 255, 0.94);
  background: rgba(255, 255, 255, 0.08);
  font-size: 14px;
  line-height: 1.48;
  backdrop-filter: blur(8px);
}

.oel-final-benefit-index {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.08em;
  line-height: 24px;
}

.oel-final-benefits svg {
  grid-column: 3;
  width: 20px;
  height: 20px;
  padding: 3px;
  border-radius: 50%;
  color: var(--smart-black);
  background: var(--smart-green);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.oel-final-benefits li > span:last-child {
  grid-column: 2;
}

.oel-final-copy > .oel-final-outcome {
  max-width: 720px;
  margin-top: 16px;
  padding: 14px 16px;
  border-inline-start: 3px solid var(--smart-green);
  color: var(--smart-white);
  background: rgba(0, 0, 0, 0.12);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.5;
}

.oel-final-form-card {
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 24px;
  color: var(--oel-ink);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 30px 80px rgba(4, 53, 71, 0.22);
}

.oel-final-form-head {
  padding: 24px clamp(24px, 3vw, 36px) 21px;
  border-bottom: 1px solid #dce8eb;
  background: #f7fbfc;
}

.oel-final-form-head .oel-contact-dialog-eyebrow {
  margin: 0;
  color: #087caf;
}

.oel-final-form-head h3 {
  margin: 14px 0 0;
  color: var(--oel-ink);
  font-size: clamp(25px, 2.3vw, 32px);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.oel-final-form-head p {
  max-width: 440px;
  margin: 12px 0 0;
  color: #536f7b;
  font-size: 14px;
  line-height: 1.5;
}

.oel-final-form-body {
  padding: 0 clamp(24px, 3vw, 36px) 28px;
  background: var(--smart-white);
}

.oel-final-form-card--bitrix {
  padding: 0;
  overflow: hidden;
}

.oel-final-form-card--bitrix .oel-final-form-body {
  padding: 0;
  background: #f7fbfc;
}

.oel-bitrix-inline {
  position: relative;
  min-height: 520px;
  margin: 0;
  background: #f7fbfc;
}

.oel-bitrix-inline--ready {
  min-height: 0;
  background: transparent;
}

.oel-bitrix-inline-host {
  min-height: inherit;
}

.oel-bitrix-inline-loading {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 10px;
  padding: 40px;
  color: #395563;
  text-align: center;
}

.oel-bitrix-inline-loading > span {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(1, 146, 201, 0.18);
  border-top-color: var(--smart-blue);
  border-radius: 50%;
  animation: oel-bitrix-spin 800ms linear infinite;
}

.oel-bitrix-inline-loading strong {
  color: var(--oel-ink);
  font-size: 18px;
}

.oel-bitrix-inline-loading small {
  max-width: 320px;
  color: #617986;
  font-size: 13px;
  line-height: 1.5;
}

.oel-bitrix-inline-host .b24-form-wrapper {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  background: #f7fbfc !important;
  box-shadow: none !important;
}

.oel-bitrix-inline-host .b24-form,
.oel-bitrix-inline-host .b24-form-wrapper {
  border-radius: 0 !important;
}

.oel-bitrix-inline-host .b24-form-padding-side {
  padding-inline: clamp(24px, 3vw, 36px) !important;
}

.oel-bitrix-inline-host .b24-form-header {
  display: none !important;
}

.oel-bitrix-inline-host .b24-form-header-title:empty {
  display: none !important;
}

.oel-bitrix-inline-host .b24-form-header-title {
  max-width: 420px !important;
  margin-inline: auto !important;
  color: var(--oel-ink) !important;
  font-size: clamp(28px, 3vw, 36px) !important;
  font-weight: 700 !important;
  letter-spacing: -0.035em !important;
  line-height: 1.08 !important;
}

.oel-bitrix-inline-host .b24-form-header-description {
  max-width: 420px !important;
  margin-inline: auto !important;
  color: #4d6875 !important;
  font-size: 15px !important;
  line-height: 1.45 !important;
}

.oel-bitrix-inline-host .b24-form-content {
  padding-top: 18px !important;
  padding-bottom: 14px !important;
}

.oel-bitrix-inline-host .b24-form-field {
  margin-bottom: 10px !important;
}

.oel-bitrix-inline-host .b24-form-control {
  min-height: 52px !important;
  border: 1px solid #d8e5e9 !important;
  border-radius: 10px !important;
  color: var(--oel-ink) !important;
  background: var(--smart-white) !important;
  box-shadow: none !important;
  font-family: inherit !important;
  font-size: 15px !important;
  transition: border-color var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out) !important;
}

.oel-bitrix-inline-host textarea.b24-form-control {
  min-height: 94px !important;
}

.oel-bitrix-inline-host .b24-form-control:hover {
  border-color: #b6d2dc !important;
}

.oel-bitrix-inline-host .b24-form-control:focus {
  border-color: var(--smart-blue) !important;
  box-shadow: 0 0 0 3px rgba(1, 146, 201, 0.14) !important;
}

.oel-bitrix-inline-host .b24-form-control-label,
.oel-bitrix-inline-host .b24-form-control-desc {
  color: #5d7480 !important;
  font-family: inherit !important;
}

.oel-bitrix-inline-host .b24-form-control-agreement .b24-form-control-desc,
.oel-bitrix-inline-host .b24-form-sign {
  font-size: 12px !important;
  line-height: 1.45 !important;
}

.oel-bitrix-inline-host .b24-form-control-agreement input {
  accent-color: var(--smart-green);
}

.oel-bitrix-inline-host .b24-form-btn {
  min-height: 54px !important;
  border-color: var(--smart-green) !important;
  border-radius: 10px !important;
  color: #073a2d !important;
  background: var(--smart-green) !important;
  box-shadow: none !important;
  font-family: inherit !important;
  font-size: 16px !important;
  font-weight: 700 !important;
}

.oel-bitrix-inline-host .b24-form-btn:hover,
.oel-bitrix-inline-host .b24-form-btn:focus-visible {
  border-color: var(--smart-blue) !important;
  color: var(--smart-white) !important;
  background: var(--smart-blue) !important;
}

@keyframes oel-bitrix-spin {
  to { transform: rotate(360deg); }
}

.oel-contact-form--inline { margin-top: 24px; }
.oel-contact-form--inline .oel-contact-form-grid { grid-template-columns: 1fr; }

.oel-contact-form-error {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid #f3b8bc;
  border-radius: 10px;
  color: #922c36;
  background: #fff4f5;
  font-size: 14px;
}

.oel-final-response {
  margin: 0;
  padding: 18px clamp(24px, 3vw, 36px) 24px;
  border-top: 1px solid #dce8eb;
  color: #58727e;
  background: var(--smart-white);
  font-size: 13px;
  line-height: 1.55;
}

.oel-final-response a { color: #087caf; font-weight: 760; text-decoration: none; }
.oel-final-response a:hover,
.oel-final-response a:focus-visible { color: #005f88; text-decoration: underline; text-underline-offset: 3px; }
.oel-final .oel-contact-success h3 { margin: 0; font-size: 28px; }
.oel-final .oel-contact-success p { margin: 0; color: #4d6875; line-height: 1.55; }

@media (min-width: 1121px) {
  .oel-contour-kpi-label,
  .oel-contour-kpis,
  .oel-contour-cta { grid-column: 2; }
}

@media (max-width: 1120px) {
  .oel-client-wall { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .oel-case-row { min-height: 430px; padding: 26px; }
  .oel-final { grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.8fr); }
}

@media (max-width: 900px) {
  .oel-client-wall { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .oel-case-list { grid-template-columns: 1fr; }
  .oel-case-row { min-height: 0; }
  .oel-case-row h3 { min-height: 0; }
  .oel-final { grid-template-columns: 1fr; }
  .oel-final-form-card { width: min(680px, 100%); }
}

@media (max-width: 680px) {
  .oel-hero h1 { font-size: clamp(38px, 10.5vw, 52px); }
  html[lang="ar"] .oel-hero h1 {
    font-size: clamp(35px, 9.4vw, 44px);
    line-height: 1.02;
  }
  .oel-hero h1 span:nth-child(2) { padding-inline: 0.1em; }
  .oel-hero-proof-band .oel-proof-source { text-align: start; }
  .oel-client-wall { grid-template-columns: 1fr 1fr; }
  .oel-client-wall li { min-height: 64px; padding: 10px; font-size: 11px; }
  .oel-case-row { padding: 24px 20px; }
  .oel-case-metrics > div { grid-template-columns: minmax(84px, auto) minmax(0, 1fr); }
  .oel-pilot-action .oel-button { width: 100%; justify-content: space-between; }
  .oel-final { gap: 34px; padding: 58px 16px; }
  .oel-final-copy { padding-top: 0; }
  .oel-final-eyebrow { margin-bottom: 18px; }
  .oel-final h2 { font-size: clamp(40px, 11vw, 50px); }
  .oel-final-copy > p { margin-top: 20px; font-size: 17px; }
  .oel-final-benefits { margin-top: 30px; }
  .oel-final-benefits ul { grid-template-columns: 1fr; }
  .oel-final-benefits li { min-height: 0; padding: 15px; }
  .oel-final-copy > .oel-final-outcome { margin-top: 14px; }
  .oel-final-form-card,
  .oel-final-form-card--bitrix { padding: 0; border-radius: 20px; }
  .oel-final-form-head { padding: 24px 20px 20px; }
  .oel-final-form-head h3 { font-size: 26px; }
  .oel-final-form-body { padding: 0 20px 24px; }
  .oel-final-form-card--bitrix .oel-final-form-body { padding: 0; }
  .oel-final-response { padding: 17px 20px 22px; }
  .oel-bitrix-inline { min-height: 520px; }
  .oel-bitrix-inline-loading { padding: 28px 20px; }
  .oel-bitrix-inline-host .b24-form-padding-side { padding-inline: 20px !important; }
  .oel-bitrix-inline-host .b24-form-content { padding-top: 20px !important; }
  .oel-contact-form--inline .oel-contact-form-grid { grid-template-columns: 1fr; }
  .oel-metric-term > small[role="tooltip"] { right: auto; left: 0; }
}

@media (max-width: 360px) {
  .oel-footer nav {
    grid-template-columns: 1fr;
  }
}

/* WCAG review: no visible landing text is smaller than 12px. */
.oel-language-option-code,
.oel-demo-badge,
.oel-live-card,
.oel-live-card span,
.oel-live-card small,
.oel-proof-source,
.oel-loss-owner,
.oel-loss-item small,
.oel-role-item small,
.oel-contour-tabs small,
.oel-stage-rail small,
.oel-stage-detail span,
.oel-contour-outcome > span,
.oel-contour-kpis li,
.oel-foundation,
.oel-footer small,
.oel-eyebrow,
.oel-header .oel-button,
.oel-contour-nav-meta span,
.oel-stage-rail-meta span,
.oel-contour-kpi-label,
.oel-client-wall li {
  font-size: 12px;
}

/* Keep inactive contour tabs readable when their hover/focus surface becomes light. */
.oel-page .oel-contour-tabs button[role="tab"][aria-selected="false"]:hover,
.oel-page .oel-contour-tabs button[role="tab"][aria-selected="false"]:focus-visible {
  color: var(--oel-ink) !important;
  background: #ecfbf4;
  border-color: rgba(47, 199, 126, 0.7);
}

.oel-page .oel-contour-tabs button[role="tab"][aria-selected="false"]:hover .oel-contour-tab-icon,
.oel-page .oel-contour-tabs button[role="tab"][aria-selected="false"]:focus-visible .oel-contour-tab-icon {
  color: #087a50;
  background: var(--smart-white);
  border-color: var(--smart-green);
}

.oel-page .oel-contour-tabs button[role="tab"][aria-selected="false"]:hover small,
.oel-page .oel-contour-tabs button[role="tab"][aria-selected="false"]:focus-visible small {
  color: #00698f !important;
}

html[dir="rtl"] .oel-final-copy,
html[dir="rtl"] .oel-final-form-card,
html[dir="rtl"] .oel-client-wall li,
html[dir="rtl"] .oel-case-row { text-align: right; }

html[dir="rtl"] .oel-final-benefits li { grid-template-columns: 20px minmax(0, 1fr) 28px; }
html[dir="rtl"] .oel-final-benefit-index { grid-column: 3; grid-row: 1; }
html[dir="rtl"] .oel-final-benefits li svg { grid-column: 1; grid-row: 1; }
html[dir="rtl"] .oel-final-benefits li > span:last-child { grid-column: 2; grid-row: 1; }
html[dir="rtl"] .oel-metric-term > small[role="tooltip"] { right: auto; left: 0; }

/* Integration ecosystem: replaces the legacy client-proof cards. */
.oel-integrations {
  display: grid;
  grid-template-columns: minmax(380px, 0.9fr) minmax(560px, 1.1fr);
  gap: clamp(44px, 5vw, 76px);
  align-items: center;
  margin-block: 96px;
  padding: clamp(52px, 6vw, 88px);
  background: #f5f8f9;
  border: 1px solid #e1ebee;
  border-radius: 28px;
  scroll-margin-top: 92px;
}

.oel-integrations-copy {
  max-width: 560px;
}

.oel-integrations-eyebrow {
  width: fit-content;
  margin: 0 0 28px;
  padding: 9px 14px;
  color: #17313c;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #cfdcdf;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.oel-integrations h2 {
  margin: 0;
  color: var(--oel-ink);
  font-size: clamp(40px, 3.7vw, 58px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.02;
  text-wrap: balance;
}

.oel-integrations h2 mark {
  display: inline-block;
  margin-block: 0.06em;
  padding: 0.02em 0.16em 0.06em;
  color: #073a2d;
  background: #b8efd8;
  border-radius: 0.55em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.oel-integrations-intro {
  margin: 28px 0 0;
  color: var(--oel-body);
  font-size: clamp(17px, 1.35vw, 20px);
  font-weight: 500;
  line-height: 1.58;
}

.oel-integrations-note {
  margin: 28px 0 0;
  padding-inline-start: 16px;
  color: #536d78;
  border-inline-start: 3px solid var(--smart-blue);
  font-size: 14px;
  line-height: 1.55;
}

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

.oel-integration-grid li {
  min-width: 0;
  min-height: 132px;
  display: grid;
  place-items: center;
  padding: 24px;
  overflow: hidden;
  background: var(--smart-white);
  border: 1px solid #e5edef;
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(9, 42, 54, 0.07);
  transition: transform var(--duration-base) var(--ease-out), box-shadow var(--duration-base) var(--ease-out), border-color var(--duration-base) var(--ease-out);
}

.oel-integration-grid li:hover {
  border-color: #c6dce3;
  box-shadow: 0 20px 40px rgba(9, 42, 54, 0.1);
  transform: translateY(-3px);
}

.oel-integration-grid img {
  width: auto;
  max-width: min(160px, 100%);
  height: auto;
  max-height: 54px;
  object-fit: contain;
}

.oel-integration-card--icon img {
  max-width: 56px;
  max-height: 56px;
}

.oel-integration-card--wide-canvas img {
  transform: scale(2.75);
}

.oel-integration-count {
  align-content: center;
  justify-items: start !important;
  gap: 8px;
  color: #073a2d;
  background: linear-gradient(135deg, #dff8ef 0%, #c8eff4 100%) !important;
  border-color: #b9e7d5 !important;
}

.oel-integration-count strong {
  color: #073a2d;
  font-size: clamp(36px, 3vw, 48px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.oel-integration-count span {
  max-width: 210px;
  color: #315f55;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
}

html[dir="rtl"] .oel-integrations-copy,
html[dir="rtl"] .oel-integration-count {
  text-align: right;
}

html[dir="rtl"] .oel-integration-count {
  justify-items: end !important;
}

@media (max-width: 1120px) {
  .oel-integrations {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-block: 72px;
  }

  .oel-integrations-copy {
    max-width: 780px;
  }
}

@media (max-width: 760px) {
  .oel-integrations {
    width: min(var(--oel-container), calc(100% - 32px));
    gap: 36px;
    margin-block: 52px;
    padding: 34px 22px;
    border-radius: 22px;
  }

  .oel-integrations-eyebrow {
    margin-bottom: 22px;
  }

  .oel-integrations h2 {
    font-size: clamp(36px, 10vw, 50px);
  }

  .oel-integrations-intro {
    margin-top: 22px;
  }

  .oel-integration-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .oel-integration-grid li {
    min-height: 108px;
    padding: 18px;
    border-radius: 14px;
  }

  .oel-integration-grid img {
    max-width: min(126px, 100%);
    max-height: 44px;
  }

  .oel-integration-count {
    grid-column: 1 / -1;
    min-height: 112px !important;
  }

  .oel-integration-count span {
    max-width: 300px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .oel-integration-grid li {
    transition: none;
  }

  .oel-integration-grid li:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .oel-metric-term > small[role="tooltip"] { transition: none; }
}

/* Hero viewport refinement: keep the complete desktop story inside one screen. */
@media (min-width: 901px) {
  .oel-hero-inner {
    min-height: min(760px, calc(100svh - 82px));
    grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
    column-gap: clamp(36px, 4.5vw, 68px);
    row-gap: 20px;
    padding-block: clamp(34px, 4.6vh, 50px) 24px;
  }

  .oel-eyebrow {
    max-width: 500px;
    margin-bottom: 12px;
    line-height: 1.45;
  }

  .oel-hero h1 {
    max-width: 650px;
    font-size: clamp(48px, 4.15vw, 64px);
    letter-spacing: -0.05em;
    line-height: 0.98;
  }

  .oel-hero h1 span:nth-child(2) {
    margin-top: 10px;
    padding: 0.04em 0.15em 0.1em;
    font-size: 0.72em;
    letter-spacing: -0.04em;
    line-height: 1.03;
  }

  .oel-hero-copy > p {
    max-width: 610px;
    margin-top: 18px;
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.48;
  }

  .oel-hero .oel-actions {
    gap: 10px;
    margin-top: 22px;
  }

  .oel-control-tower {
    min-height: 480px;
  }

  .oel-live-card {
    width: 178px;
    padding: 12px 14px;
  }

  .oel-live-card--territory {
    top: 46px;
    left: 22px;
  }

  .oel-live-card--shelf {
    top: 132px;
    right: 8px;
  }

  .oel-live-card--cash {
    right: 46px;
    bottom: 28px;
  }

  .oel-hero-proof-band {
    padding: 14px 24px 10px;
  }

  .oel-hero-proof-band .oel-proof li {
    min-height: 50px;
    padding-inline: 20px;
  }

  .oel-hero-proof-band .oel-proof strong {
    font-size: clamp(27px, 2.25vw, 34px);
  }

  .oel-hero-proof-band .oel-proof span {
    margin-top: 2px;
  }

  .oel-hero-proof-band .oel-proof-source {
    margin-top: 6px;
    line-height: 1.35;
  }
}

@media (min-width: 901px) and (max-height: 820px) {
  .oel-hero-inner {
    row-gap: 16px;
    padding-block: 26px 18px;
  }

  .oel-hero h1 {
    font-size: clamp(44px, 3.9vw, 56px);
  }

  .oel-hero-copy > p {
    margin-top: 15px;
    font-size: 16px;
    line-height: 1.42;
  }

  .oel-hero .oel-actions {
    margin-top: 18px;
  }

  .oel-control-tower {
    min-height: 420px;
  }

  .oel-hero-proof-band {
    padding-block: 11px 8px;
  }

  .oel-hero-proof-band .oel-proof li {
    min-height: 44px;
  }
}


/* Locale-aware hero compaction for longer regional copy. */
@media (min-width: 901px) {
  .oel-hero .oel-eyebrow {
    margin: 0 0 12px;
    font-size: 12px;
    line-height: 1.45;
  }

  .oel-hero .oel-actions {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    align-items: stretch;
  }

  .oel-hero .oel-actions .oel-button {
    width: 100%;
    min-height: 50px;
    padding: 9px 14px;
    font-size: 14px;
    line-height: 1.2;
  }

  html:is([lang="uz"], [lang="kk"], [lang="tg"], [lang="ky"]) .oel-hero h1 {
    font-size: clamp(42px, 3.55vw, 50px);
  }

  html:is([lang="uz"], [lang="kk"], [lang="tg"], [lang="ky"]) .oel-hero h1 span:nth-child(2) {
    font-size: 0.68em;
  }
}
/* Compact locale popover - 2026-08-01 */
.oel-language-trigger {
  min-width: 68px;
  min-height: 44px;
  justify-content: center;
  gap: 6px;
  padding-inline: 11px;
  border-color: #c9e1e9;
  border-radius: 999px;
  color: #075f7f;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 6px 18px rgba(4, 50, 70, 0.08);
}

.oel-language-short {
  min-width: auto;
  padding: 0;
  color: var(--smart-blue);
  background: transparent;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
}

.oel-language-trigger:hover,
.oel-language-trigger:focus-visible {
  color: #006b93;
  border-color: rgba(1, 146, 201, 0.52);
  background: var(--smart-white);
  box-shadow: 0 0 0 3px rgba(1, 146, 201, 0.1), 0 8px 22px rgba(4, 50, 70, 0.1);
}

.oel-language.is-open .oel-language-trigger {
  color: #08764a;
  border-color: var(--smart-green);
  background: var(--smart-white);
  box-shadow: 0 0 0 3px rgba(47, 199, 126, 0.14), 0 8px 22px rgba(4, 50, 70, 0.1);
}

.oel-language-trigger:hover .oel-language-short,
.oel-language-trigger:focus-visible .oel-language-short,
.oel-language.is-open .oel-language-short {
  color: inherit;
  background: transparent;
}

.oel-language-trigger > svg:first-child {
  display: none;
}

.oel-language-trigger > svg:last-child {
  width: 12px;
  height: 12px;
  margin-left: 0;
}

.oel-language-menu {
  top: calc(100% + 8px);
  width: min(392px, calc(100vw - 24px));
  gap: 0;
  padding: 12px;
  border-color: #d5e7ed;
  border-radius: 18px;
  overflow: hidden auto;
  scrollbar-width: thin;
  box-shadow: 0 20px 56px rgba(4, 50, 70, 0.18), 0 2px 8px rgba(4, 50, 70, 0.06);
  animation: oel-language-popover-in 160ms ease-out both;
  transform-origin: top right;
}

html[dir="rtl"] .oel-language-menu {
  transform-origin: top left;
}

.oel-language-menu-header {
  margin-bottom: 10px;
  padding: 4px 6px 12px;
  border-bottom: 1px solid #e2edf1;
}

.oel-language-menu-header strong {
  color: var(--smart-black);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.3;
}

.oel-language-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.oel-language-option {
  min-height: 48px;
  grid-template-columns: 38px minmax(0, 1fr) 16px;
  gap: 8px;
  padding: 5px 8px 5px 6px;
  border: 1px solid transparent;
  border-radius: 12px;
  color: #14252d;
  font-size: 13px;
  font-weight: 650;
  box-shadow: none;
}

.oel-language-option:hover,
.oel-language-option:focus-visible {
  color: var(--smart-black);
  border-color: rgba(1, 146, 201, 0.3);
  background: rgba(1, 146, 201, 0.08);
  box-shadow: none;
}

.oel-language-option.is-active {
  color: var(--smart-black);
  border-color: rgba(47, 199, 126, 0.52);
  background: rgba(47, 199, 126, 0.12);
  box-shadow: none;
}

.oel-language-option-code {
  min-height: 32px;
  border-color: #cfe3eb;
  color: #005d80;
  background: #f3fafc;
  font-size: 12px;
}

.oel-language-option-name,
html[dir="rtl"] .oel-language-option-name {
  min-width: 0;
  overflow: hidden;
  text-align: start;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.oel-language-option.is-active .oel-language-option-code {
  border-color: var(--smart-green);
  color: var(--smart-black);
  background: var(--smart-white);
}

.oel-language-option > svg {
  width: 15px;
  height: 15px;
  color: #08764a;
}

@media (max-width: 680px) {
  .oel-header:has(.oel-language.is-open) {
    backdrop-filter: none;
  }

  .oel-language-backdrop {
    position: fixed;
    z-index: 119;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: rgba(3, 35, 46, 0.16);
    backdrop-filter: blur(1.5px);
    cursor: default;
  }

  .oel-language-menu {
    position: fixed;
    z-index: 120;
    top: calc(76px + env(safe-area-inset-top, 0px));
    right: 12px;
    bottom: auto;
    left: auto;
    width: min(392px, calc(100vw - 24px));
    max-height: calc(100svh - 88px - env(safe-area-inset-top, 0px));
    padding: 12px;
    border-radius: 18px;
    overflow-y: auto;
    overscroll-behavior: contain;
    box-shadow: 0 24px 64px rgba(4, 50, 70, 0.24);
  }

  html[dir="rtl"] .oel-language-menu {
    right: auto;
    left: 12px;
  }
}

@media (max-width: 420px) {
  .oel-language-trigger {
    width: 58px;
    min-width: 58px;
    min-height: 44px;
    padding-inline: 8px;
  }

  .oel-language-menu,
  html[dir="rtl"] .oel-language-menu {
    top: calc(70px + env(safe-area-inset-top, 0px));
    right: 8px;
    left: 8px;
    width: auto;
    max-height: calc(100svh - 80px - env(safe-area-inset-top, 0px));
  }

  .oel-language-options {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .oel-language-option {
    min-height: 46px;
    font-size: 14px;
  }
}

@keyframes oel-language-popover-in {
  from {
    opacity: 0;
    transform: translateY(-4px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .oel-language-menu {
    animation: none;
  }
}

.oel-play-icon {
  width: 24px;
  height: 24px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.oel-play-icon path {
  fill: currentColor;
  stroke: none;
}

.oel-video-dialog-card {
  width: min(1040px, 100%);
  max-height: calc(100dvh - 48px);
  padding: clamp(22px, 3vw, 34px);
  overflow-y: auto;
}

.oel-video-dialog-card > .oel-contact-dialog-close {
  position: sticky;
  top: 0;
  right: auto;
  z-index: 4;
  margin: -8px -8px -44px auto;
}

html[dir="rtl"] .oel-video-dialog-card > .oel-contact-dialog-close {
  right: auto;
  left: auto;
  margin: -8px auto -44px -8px;
}

.oel-video-dialog h2 {
  max-width: 780px;
  font-size: clamp(30px, 3.5vw, 44px);
}

.oel-video-dialog p {
  max-width: 780px;
  margin-top: 12px;
  font-size: clamp(15px, 1.4vw, 17px);
}

.oel-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid rgba(1, 146, 201, 0.24);
  border-radius: 16px;
  background: #000;
  box-shadow: 0 22px 54px rgba(4, 53, 71, 0.16);
}

.oel-video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.oel-video-dialog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 16px;
}

.oel-video-dialog .oel-video-dialog-footer small {
  max-width: 560px;
  margin: 0;
  color: #617986;
  line-height: 1.45;
  text-align: left;
}

.oel-video-youtube-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  color: #087caf;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.oel-video-youtube-link:hover,
.oel-video-youtube-link:focus-visible {
  color: #05658e;
  text-decoration: underline;
  text-underline-offset: 4px;
}

html[dir="rtl"] .oel-video-dialog .oel-video-dialog-footer small {
  direction: rtl;
  unicode-bidi: normal;
  text-align: right;
}

html[dir="rtl"] .oel-video-youtube-link {
  direction: rtl;
}

@media (max-width: 680px) {
  .oel-video-dialog {
    padding: 8px;
  }

  .oel-video-dialog-card {
    max-height: calc(100dvh - 16px);
    padding: 26px 16px 18px;
    border-radius: 20px;
  }

  .oel-video-dialog h2 {
    padding-right: 44px;
    font-size: clamp(26px, 8vw, 34px);
  }

  html[dir="rtl"] .oel-video-dialog h2 {
    padding-right: 0;
    padding-left: 44px;
  }

  .oel-video-dialog p {
    font-size: 15px;
  }

  .oel-video-frame {
    margin-top: 18px;
    border-radius: 12px;
  }

  .oel-video-dialog-footer {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    margin-top: 14px;
  }

  .oel-video-youtube-link {
    justify-content: center;
    padding: 0 14px;
    border: 1px solid #c8dce5;
    border-radius: 12px;
    background: #f5fafb;
  }
}

/* Readability typography pass — keep supporting copy legible without inflating headings. */
.oel-page {
  --oel-type-caption: 13px;
  --oel-type-meta: 14px;
  --oel-type-supporting: 15px;
  --oel-type-body: 16px;
}

.oel-loss-item p,
.oel-role-item p,
.oel-stage-detail p,
.oel-final-benefits li,
.oel-integrations-note,
.oel-final-copy > .oel-final-outcome,
.oel-final-form-head p {
  font-size: var(--oel-type-body);
  line-height: 1.58;
}

.oel-pilot-steps p,
.oel-layer li,
.oel-case-note,
.oel-contour-foundation,
.oel-final-response,
.oel-final-form-head small,
.oel-footer address,
.oel-footer small,
.oel-video-dialog .oel-video-dialog-footer small {
  font-size: var(--oel-type-supporting);
  line-height: 1.58;
}

.oel-pilot-steps h3 {
  font-size: 19px;
  line-height: 1.35;
}

.oel-loss-owner,
.oel-loss-item small,
.oel-role-item small,
.oel-contour-tabs small,
.oel-stage-rail small,
.oel-stage-detail span,
.oel-contour-outcome > span,
.oel-contour-kpis li,
.oel-contour-kpi-label,
.oel-metric-term,
.oel-foundation,
.oel-live-card,
.oel-live-card span,
.oel-live-card small,
.oel-proof-source,
.oel-client-wall li,
.oel-final-benefit-index,
.oel-integrations-eyebrow,
.oel-final-eyebrow,
.oel-contact-dialog-eyebrow {
  font-size: var(--oel-type-meta);
}

.oel-page .oel-contour-nav-meta span,
.oel-page .oel-contour-nav-meta strong,
.oel-page .oel-stage-rail-meta span,
.oel-page .oel-stage-rail-meta strong {
  font-size: var(--oel-type-meta);
}

.oel-eyebrow,
.oel-demo-badge,
.oel-number,
.oel-hero-proof-band .oel-proof span {
  font-size: var(--oel-type-caption);
}

.oel-page .oel-hero .oel-eyebrow,
.oel-page .oel-contour-title > div > span,
.oel-page .oel-contour-head > p > span,
.oel-page .oel-stage-rail strong,
.oel-page .oel-metric-term > small[role="tooltip"],
.oel-page .oel-faq-item summary > span:first-child {
  font-size: var(--oel-type-caption);
}

.oel-button,
.oel-language-option,
.oel-video-youtube-link {
  font-size: var(--oel-type-supporting);
}

@media (max-width: 680px) {
  .oel-page {
    --oel-type-meta: 13px;
    --oel-type-supporting: 15px;
    --oel-type-body: 16px;
  }

  .oel-final-benefits li {
    padding: 16px;
  }
}

/* Keep translated contour tabs connected to one shared workspace baseline. */
.oel-contour-tabs {
  align-items: stretch;
}

.oel-contour-tabs > li {
  display: flex;
  align-self: stretch;
}

.oel-contour-tabs > li > button {
  height: 100%;
  flex: 1 1 auto;
  align-self: stretch;
}

.oel-skip-link {
  position: fixed;
  z-index: 12000;
  top: 12px;
  left: 16px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border: 2px solid var(--smart-blue);
  border-radius: 12px;
  color: #06202b;
  background: #fff;
  box-shadow: 0 12px 28px rgba(4, 53, 71, 0.2);
  font-size: 15px;
  font-weight: 750;
  text-decoration: none;
  transform: translateY(calc(-100% - 24px));
  transition: transform 140ms ease;
}

.oel-skip-link:focus-visible {
  outline: 3px solid rgba(47, 199, 126, 0.48);
  outline-offset: 3px;
  transform: translateY(0);
}

html[dir="rtl"] .oel-skip-link {
  right: 16px;
  left: auto;
}

#oel-main:focus {
  outline: none;
}

.oel-page #oel-loop,
.oel-page #oel-roles,
.oel-page #oel-platform,
.oel-page #oel-proof,
.oel-page #oel-faq,
.oel-page #oel-contact {
  scroll-margin-top: 96px;
}

.oel-footer nav a,
.oel-footer nav button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

/* Motion system: native, transform-only and progressively enhanced. */
.oel-page {
  --oel-motion-fast: 140ms;
  --oel-motion-base: 220ms;
  --oel-motion-slow: 560ms;
  --oel-motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --oel-motion-ease-standard: cubic-bezier(0.2, 0, 0, 1);
}

.oel-page[data-motion="enhanced"] .oel-reveal {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition:
    opacity var(--oel-motion-slow) var(--oel-motion-ease) var(--oel-reveal-delay, 0ms),
    transform var(--oel-motion-slow) var(--oel-motion-ease) var(--oel-reveal-delay, 0ms);
}

.oel-page[data-motion="enhanced"] .oel-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.oel-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.oel-hero::before {
  position: absolute;
  z-index: 0;
  inset: -24%;
  background:
    radial-gradient(circle at 28% 34%, rgba(255, 255, 255, 0.16), transparent 28%),
    radial-gradient(circle at 76% 58%, rgba(47, 199, 126, 0.16), transparent 32%);
  content: "";
  opacity: 0.58;
  pointer-events: none;
  transform: translate3d(-1.5%, -1%, 0) scale(1.02);
}

.oel-hero-inner {
  position: relative;
  z-index: 1;
}

.oel-page[data-motion="enhanced"] .oel-hero::before {
  animation: oel-hero-ambient 12s var(--oel-motion-ease-standard) infinite alternate;
  will-change: transform;
}

.oel-page[data-motion="enhanced"] .oel-stage-detail,
.oel-page[data-motion="enhanced"] .oel-contour-result {
  animation: oel-panel-enter var(--oel-motion-base) var(--oel-motion-ease) both;
}

.oel-button > svg:last-child:not(:first-child),
.oel-stage-detail > button svg,
.oel-language-trigger svg {
  transition: transform var(--oel-motion-fast) var(--oel-motion-ease-standard);
}

.oel-button:hover > svg:last-child:not(:first-child),
.oel-button:focus-visible > svg:last-child:not(:first-child),
.oel-stage-detail > button:hover svg,
.oel-stage-detail > button:focus-visible svg {
  transform: translateX(3px);
}

html[dir="rtl"] .oel-button:hover > svg:last-child:not(:first-child),
html[dir="rtl"] .oel-button:focus-visible > svg:last-child:not(:first-child),
html[dir="rtl"] .oel-stage-detail > button:hover svg,
html[dir="rtl"] .oel-stage-detail > button:focus-visible svg {
  transform: translateX(-3px);
}

.oel-button:active {
  transform: translateY(0) scale(0.985);
}

@keyframes oel-panel-enter {
  from {
    opacity: 0;
    transform: translate3d(0, 8px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes oel-hero-ambient {
  from { transform: translate3d(-1.5%, -1%, 0) scale(1.02); }
  to { transform: translate3d(1.5%, 1%, 0) scale(1.05); }
}

@media (prefers-reduced-motion: reduce) {
  .oel-page[data-motion] .oel-reveal,
  .oel-page[data-motion] .oel-reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .oel-page .oel-hero::before,
  .oel-page .oel-stage-detail,
  .oel-page .oel-contour-result {
    animation: none;
  }

  .oel-button > svg,
  .oel-stage-detail > button svg,
  .oel-language-trigger svg {
    transition: none;
  }
}
